[llvm] 6313550 - [IPO] Avoid repeated hash lookups (NFC) (#131720)
via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 18 12:25:44 PDT 2025
Author: Kazu Hirata
Date: 2025-03-18T12:25:41-07:00
New Revision: 6313550aced5a611213ac2a551e3a900e8740506
URL: https://github.com/llvm/llvm-project/commit/6313550aced5a611213ac2a551e3a900e8740506
DIFF: https://github.com/llvm/llvm-project/commit/6313550aced5a611213ac2a551e3a900e8740506.diff
LOG: [IPO] Avoid repeated hash lookups (NFC) (#131720)
Added:
Modified:
llvm/lib/Transforms/IPO/ArgumentPromotion.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Transforms/IPO/ArgumentPromotion.cpp b/llvm/lib/Transforms/IPO/ArgumentPromotion.cpp
index 2a3df722d29c5..80a0df7d64205 100644
--- a/llvm/lib/Transforms/IPO/ArgumentPromotion.cpp
+++ b/llvm/lib/Transforms/IPO/ArgumentPromotion.cpp
@@ -236,13 +236,13 @@ doPromotion(Function *F, FunctionAnalysisManager &FAM,
ArgNo = 0;
for (Function::arg_iterator I = F->arg_begin(), E = F->arg_end(); I != E;
++I, ++AI, ++ArgNo) {
- if (!ArgsToPromote.count(&*I)) {
+ auto ArgIt = ArgsToPromote.find(&*I);
+ if (ArgIt == ArgsToPromote.end()) {
Args.push_back(*AI); // Unmodified argument
ArgAttrVec.push_back(CallPAL.getParamAttrs(ArgNo));
} else if (!I->use_empty()) {
Value *V = *AI;
- const auto &ArgParts = ArgsToPromote.find(&*I)->second;
- for (const auto &Pair : ArgParts) {
+ for (const auto &Pair : ArgIt->second) {
LoadInst *LI = IRB.CreateAlignedLoad(
Pair.second.Ty,
createByteGEP(IRB, DL, V, Pair.second.Ty, Pair.first),
@@ -266,7 +266,7 @@ doPromotion(Function *F, FunctionAnalysisManager &FAM,
ArgAttrVec.push_back(AttributeSet());
}
} else {
- assert(ArgsToPromote.count(&*I) && I->use_empty());
+ assert(I->use_empty());
DeadArgs.emplace_back(AI->get());
}
}
More information about the llvm-commits
mailing list