diff options
author | Teresa Johnson <tejohnson@google.com> | 2024-11-22 16:18:30 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-22 16:18:30 -0800 |
commit | 776476c282bca71d5b856e80e0a88fbd6f3ccdd2 (patch) | |
tree | 665481d026c51079ff061b42a0eec2390fd06f24 /llvm/lib/Bitcode/Reader/BitcodeAnalyzer.cpp | |
parent | aa5dc539e91824cbc224214e69d62d46db21af6e (diff) | |
download | llvm-776476c282bca71d5b856e80e0a88fbd6f3ccdd2.zip llvm-776476c282bca71d5b856e80e0a88fbd6f3ccdd2.tar.gz llvm-776476c282bca71d5b856e80e0a88fbd6f3ccdd2.tar.bz2 |
Reapply "[MemProf] Use radix tree for alloc contexts in bitcode summaries" (#117395) (#117404)
This reverts commit fdb050a5024320ec29d2edf3f2bc686c3a84abaa, and
restores ccb4702038900d82d1041ff610788740f5cef723, with a fix for build
bot failures.
Specifically, add ProfileData to the dependences of the BitWriter
library, which was causing shared library builds of LLVM to fail.
Reproduced the failure with a shared library build and confirmed this
change fixes that build failure.
Diffstat (limited to 'llvm/lib/Bitcode/Reader/BitcodeAnalyzer.cpp')
-rw-r--r-- | llvm/lib/Bitcode/Reader/BitcodeAnalyzer.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Bitcode/Reader/BitcodeAnalyzer.cpp b/llvm/lib/Bitcode/Reader/BitcodeAnalyzer.cpp index 8f79ccd..032c0de 100644 --- a/llvm/lib/Bitcode/Reader/BitcodeAnalyzer.cpp +++ b/llvm/lib/Bitcode/Reader/BitcodeAnalyzer.cpp @@ -329,6 +329,7 @@ GetCodeName(unsigned CodeID, unsigned BlockID, STRINGIFY_CODE(FS, COMBINED_ALLOC_INFO) STRINGIFY_CODE(FS, STACK_IDS) STRINGIFY_CODE(FS, ALLOC_CONTEXT_IDS) + STRINGIFY_CODE(FS, CONTEXT_RADIX_TREE_ARRAY) } case bitc::METADATA_ATTACHMENT_ID: switch (CodeID) { |