[llvm] [MemProf] Extend CallSite information to include potential callees. (PR #130441)

Kazu Hirata via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 11 12:01:01 PDT 2025


================
@@ -455,14 +477,37 @@ struct IndexedMemProfRecord {
   static GlobalValue::GUID getGUID(const StringRef FunctionName);
 };
 
+// Holds call site information with frame contents inline.
+struct CallSiteInfo {
+  // The frames in the call stack
+  std::vector<Frame> Frames;
+
+  // The GUIDs of the callees at this call site
+  std::vector<GlobalValue::GUID> CalleeGuids;
----------------
kazutakahirata wrote:

If you go with `SmallVector<...>` in `IndexedCallSiteInfo`, you need to update this one to keep the move semantics working.

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


More information about the llvm-commits mailing list