diff options
author | Kazu Hirata <kazu@google.com> | 2024-07-15 09:19:15 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-15 09:19:15 -0700 |
commit | a78b19d8ea513a2e88fa431b549b65406384a12d (patch) | |
tree | fb036f247edc2f3dc918c59f3e7e780669ccceb3 /clang/lib/CodeGen/CodeGenModule.cpp | |
parent | 106621b601d7dc7c4929fba293f7e5ffe6b92c58 (diff) | |
download | llvm-a78b19d8ea513a2e88fa431b549b65406384a12d.zip llvm-a78b19d8ea513a2e88fa431b549b65406384a12d.tar.gz llvm-a78b19d8ea513a2e88fa431b549b65406384a12d.tar.bz2 |
[IR] Use SmallSet with more inline elements in dropUnknownNonDebugMetadata (NFC) (#98853)
SmallSet here often ends up allocating memory via std::set inside
SmallSet because KnownIDs.size() goes up to 17 on an x86 host. This
patch switches to SmallSet<unsigned, 32> to avoid memory
allocations.
The increased inline elements here save 0.57% of heap allocations during
the compilation of X86ISelLowering.cpp.ii, a preprocessed version of
X86ISelLowering.cpp.
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.cpp')
0 files changed, 0 insertions, 0 deletions