[llvm] [Instrumentation] Avoid repeated hash lookups (NFC) (PR #128128)
via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 20 21:09:06 PST 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-compiler-rt-sanitizer
Author: Kazu Hirata (kazutakahirata)
<details>
<summary>Changes</summary>
---
Full diff: https://github.com/llvm/llvm-project/pull/128128.diff
1 Files Affected:
- (modified) llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp (+4-4)
``````````diff
diff --git a/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp b/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp
index bbe7040121649..8d8d56035a48f 100644
--- a/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp
+++ b/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp
@@ -1362,10 +1362,10 @@ void AddressSanitizer::instrumentMemIntrinsic(MemIntrinsic *MI,
/// Check if we want (and can) handle this alloca.
bool AddressSanitizer::isInterestingAlloca(const AllocaInst &AI) {
- auto PreviouslySeenAllocaInfo = ProcessedAllocas.find(&AI);
+ auto [It, Inserted] = ProcessedAllocas.try_emplace(&AI);
- if (PreviouslySeenAllocaInfo != ProcessedAllocas.end())
- return PreviouslySeenAllocaInfo->getSecond();
+ if (!Inserted)
+ return It->getSecond();
bool IsInteresting =
(AI.getAllocatedType()->isSized() &&
@@ -1382,7 +1382,7 @@ bool AddressSanitizer::isInterestingAlloca(const AllocaInst &AI) {
// safe allocas are not interesting
!(SSGI && SSGI->isSafe(AI)));
- ProcessedAllocas[&AI] = IsInteresting;
+ It->second = IsInteresting;
return IsInteresting;
}
``````````
</details>
https://github.com/llvm/llvm-project/pull/128128
More information about the llvm-commits
mailing list