[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:32 PDT 2025


================
@@ -170,11 +170,11 @@ static IndexedMemProfRecord deserializeV2(const MemProfSchema &Schema,
   // Read the callsite information.
   const uint64_t NumCtxs =
       endian::readNext<uint64_t, llvm::endianness::little>(Ptr);
-  Record.CallSiteIds.reserve(NumCtxs);
+  Record.CallSites.reserve(NumCtxs);
   for (uint64_t J = 0; J < NumCtxs; J++) {
     CallStackId CSId =
         endian::readNext<CallStackId, llvm::endianness::little>(Ptr);
-    Record.CallSiteIds.push_back(CSId);
+    Record.CallSites.push_back(IndexedCallSiteInfo(CSId));
----------------
snehasish wrote:

Done.

https://github.com/llvm/llvm-project/pull/130441


More information about the llvm-commits mailing list