diff options
author | Kazu Hirata <kazu@google.com> | 2024-06-08 08:35:25 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-08 08:35:25 -0700 |
commit | c8708822784e285e151e99eb1d396380ba57100b (patch) | |
tree | 822e4c3269e0dd287abf1bddd9ddc3a55a8e1a47 | |
parent | bca7864ffe9045e896fe0ed087150af37778eb40 (diff) | |
download | llvm-c8708822784e285e151e99eb1d396380ba57100b.zip llvm-c8708822784e285e151e99eb1d396380ba57100b.tar.gz llvm-c8708822784e285e151e99eb1d396380ba57100b.tar.bz2 |
[memprof] Make Version3 officially available (#94837)
-rw-r--r-- | llvm/include/llvm/ProfileData/MemProf.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/include/llvm/ProfileData/MemProf.h b/llvm/include/llvm/ProfileData/MemProf.h index a650149..53ddfd1 100644 --- a/llvm/include/llvm/ProfileData/MemProf.h +++ b/llvm/include/llvm/ProfileData/MemProf.h @@ -28,7 +28,8 @@ enum IndexedVersion : uint64_t { Version1 = 1, // Version 2: Added a call stack table. Version2 = 2, - // Version 3: Under development. + // Version 3: Added a radix tree for call stacks. Switched to linear IDs for + // frames and call stacks. Version3 = 3, }; |