[PATCH] D135658: demangle OptFunction trace names
Trass3r via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Oct 11 08:47:28 PDT 2022
Trass3r updated this revision to Diff 466828.
Trass3r added a comment.
explicit lambda capture and format
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D135658/new/
https://reviews.llvm.org/D135658
Files:
llvm/lib/IR/CMakeLists.txt
llvm/lib/IR/LegacyPassManager.cpp
Index: llvm/lib/IR/LegacyPassManager.cpp
===================================================================
--- llvm/lib/IR/LegacyPassManager.cpp
+++ llvm/lib/IR/LegacyPassManager.cpp
@@ -12,6 +12,7 @@
#include "llvm/IR/LegacyPassManager.h"
#include "llvm/ADT/MapVector.h"
+#include "llvm/Demangle/Demangle.h"
#include "llvm/IR/DiagnosticInfo.h"
#include "llvm/IR/IRPrintingPasses.h"
#include "llvm/IR/LLVMContext.h"
@@ -1408,7 +1409,8 @@
FunctionSize = F.getInstructionCount();
}
- llvm::TimeTraceScope FunctionScope("OptFunction", F.getName());
+ llvm::TimeTraceScope FunctionScope(
+ "OptFunction", [&F]() { return demangle(F.getName().str()); });
for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
FunctionPass *FP = getContainedPass(Index);
Index: llvm/lib/IR/CMakeLists.txt
===================================================================
--- llvm/lib/IR/CMakeLists.txt
+++ llvm/lib/IR/CMakeLists.txt
@@ -77,6 +77,7 @@
LINK_COMPONENTS
BinaryFormat
+ Demangle
Remarks
Support
)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D135658.466828.patch
Type: text/x-patch
Size: 1057 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20221011/f233e6f4/attachment-0001.bin>
More information about the llvm-commits
mailing list