[llvm] fc278e4 - [Scalar] Avoid repeated hash lookups (NFC) (#131961)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 19 07:14:32 PDT 2025
Author: Kazu Hirata
Date: 2025-03-19T07:14:28-07:00
New Revision: fc278e406ec0204437e26f087a5a71d74727924e
URL: https://github.com/llvm/llvm-project/commit/fc278e406ec0204437e26f087a5a71d74727924e
DIFF: https://github.com/llvm/llvm-project/commit/fc278e406ec0204437e26f087a5a71d74727924e.diff
LOG: [Scalar] Avoid repeated hash lookups (NFC) (#131961)
Added:
Modified:
llvm/lib/Transforms/Scalar/RewriteStatepointsForGC.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Transforms/Scalar/RewriteStatepointsForGC.cpp b/llvm/lib/Transforms/Scalar/RewriteStatepointsForGC.cpp
index c7b55c2fb4f45..68c079373e556 100644
--- a/llvm/lib/Transforms/Scalar/RewriteStatepointsForGC.cpp
+++ b/llvm/lib/Transforms/Scalar/RewriteStatepointsForGC.cpp
@@ -1138,13 +1138,12 @@ static Value *findBasePointer(Value *I, DefiningValueMapTy &Cache,
auto getBaseForInput = [&](Value *Input, Instruction *InsertPt) {
Value *BDV = findBaseOrBDV(Input, Cache, KnownBases);
Value *Base = nullptr;
- if (!States.count(BDV)) {
+ if (auto It = States.find(BDV); It == States.end()) {
assert(areBothVectorOrScalar(BDV, Input));
Base = BDV;
} else {
// Either conflict or base.
- assert(States.count(BDV));
- Base = States[BDV].getBaseValue();
+ Base = It->second.getBaseValue();
}
assert(Base && "Can't be null");
// The cast is needed since base traversal may strip away bitcasts
More information about the llvm-commits
mailing list