[llvm] 34cebaf - [Instrumentation] Avoid repeated hash lookups (NFC) (#128128)
via llvm-commits
llvm-commits at lists.llvm.org
Fri Feb 21 11:08:16 PST 2025
Author: Kazu Hirata
Date: 2025-02-21T11:08:12-08:00
New Revision: 34cebaf73ad6ca8f493866fd125d38e2dbbfc40d
URL: https://github.com/llvm/llvm-project/commit/34cebaf73ad6ca8f493866fd125d38e2dbbfc40d
DIFF: https://github.com/llvm/llvm-project/commit/34cebaf73ad6ca8f493866fd125d38e2dbbfc40d.diff
LOG: [Instrumentation] Avoid repeated hash lookups (NFC) (#128128)
Added:
Modified:
llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp
Removed:
################################################################################
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;
}
More information about the llvm-commits
mailing list