[llvm] [MemProf] Extend CallSite information to include potential callees. (PR #130441)
Snehasish Kumar via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 12 00:11:18 PDT 2025
================
@@ -521,7 +521,8 @@ Error RawMemProfReader::mapRawProfileToRecords() {
// we insert a new entry for callsite data if we need to.
IndexedMemProfRecord &Record = MemProfData.Records[Id];
for (LocationPtr Loc : Locs)
- Record.CallSiteIds.push_back(MemProfData.addCallStack(*Loc));
+ Record.CallSites.push_back(
+ IndexedCallSiteInfo(MemProfData.addCallStack(*Loc)));
----------------
snehasish wrote:
Done.
https://github.com/llvm/llvm-project/pull/130441
More information about the llvm-commits
mailing list