[llvm] [memprof] Dump call site matching information (PR #125130)
Kazu Hirata via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 5 13:08:19 PST 2025
================
@@ -1201,15 +1203,22 @@ readMemprof(Module &M, Function &F, IndexedInstrProfReader *MemProfReader,
// instruction's leaf location in the callsites map and not the allocation
// map.
assert(CallSitesIter != LocHashToCallSites.end());
- for (auto CallStackIdx : CallSitesIter->second) {
+ for (auto &[ProfileCallStack, Idx] : CallSitesIter->second) {
// If we found and thus matched all frames on the call, create and
// attach call stack metadata.
- if (stackFrameIncludesInlinedCallStack(CallStackIdx,
+ if (stackFrameIncludesInlinedCallStack(ProfileCallStack.drop_front(Idx),
InlinedCallStack)) {
NumOfMemProfMatchedCallSites++;
addCallsiteMetadata(I, InlinedCallStack, Ctx);
// Only need to find one with a matching call stack and add a single
// callsite metadata.
+
+ // Dump call site matching information upon request.
+ if (ClPrintMemProfMatchInfo) {
+ uint64_t FullStackId = computeFullStackId(ProfileCallStack);
+ errs() << "MemProf callsite " << FullStackId << " " << Idx << " "
----------------
kazutakahirata wrote:
I've overhauled this to print the entire *inline* call stack.
https://github.com/llvm/llvm-project/pull/125130
More information about the llvm-commits
mailing list