[llvm] [MemProf] Print full context hash when reporting hinted bytes (PR #114465)
Teresa Johnson via llvm-commits
llvm-commits at lists.llvm.org
Thu Nov 7 11:33:29 PST 2024
================
@@ -317,9 +317,15 @@ enum GlobalValueSummarySymtabCodes {
// Summary of combined index allocation memprof metadata.
// [nummib, numver,
// nummib x (alloc type, numstackids, numstackids x stackidindex),
- // numver x version, [nummib x total size]?]
+ // numver x version]
FS_COMBINED_ALLOC_INFO = 29,
+ // List of all stack ids referenced by index in the callsite and alloc infos.
+ // [n x stack id]
FS_STACK_IDS = 30,
+ // List of all (full stack id, total size) pairs optionally referenced by
+ // index from the alloc info records.
+ // [n x (full stack id, total size)]
+ FS_CONTEXT_SIZE_INFOS = 31,
----------------
teresajohnson wrote:
done
https://github.com/llvm/llvm-project/pull/114465
More information about the llvm-commits
mailing list