[llvm] 9388e42 - [CodeGen] Avoid repeated hash lookups (NFC) (#128631)
via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 25 09:02:23 PST 2025
Author: Kazu Hirata
Date: 2025-02-25T09:02:19-08:00
New Revision: 9388e42a3c67a4399bbc3a427077ea95bac31323
URL: https://github.com/llvm/llvm-project/commit/9388e42a3c67a4399bbc3a427077ea95bac31323
DIFF: https://github.com/llvm/llvm-project/commit/9388e42a3c67a4399bbc3a427077ea95bac31323.diff
LOG: [CodeGen] Avoid repeated hash lookups (NFC) (#128631)
Added:
Modified:
llvm/lib/CodeGen/SelectOptimize.cpp
Removed:
################################################################################
diff --git a/llvm/lib/CodeGen/SelectOptimize.cpp b/llvm/lib/CodeGen/SelectOptimize.cpp
index 9c8dcacc912f5..b35f765c76489 100644
--- a/llvm/lib/CodeGen/SelectOptimize.cpp
+++ b/llvm/lib/CodeGen/SelectOptimize.cpp
@@ -978,8 +978,9 @@ void SelectOptimizeImpl::findProfitableSIGroupsInnerLoops(
// cost of the most expensive instruction of the group.
Scaled64 SelectCost = Scaled64::getZero(), BranchCost = Scaled64::getZero();
for (SelectLike &SI : ASI.Selects) {
- SelectCost = std::max(SelectCost, InstCostMap[SI.getI()].PredCost);
- BranchCost = std::max(BranchCost, InstCostMap[SI.getI()].NonPredCost);
+ const auto &ICM = InstCostMap[SI.getI()];
+ SelectCost = std::max(SelectCost, ICM.PredCost);
+ BranchCost = std::max(BranchCost, ICM.NonPredCost);
}
if (BranchCost < SelectCost) {
OptimizationRemark OR(DEBUG_TYPE, "SelectOpti",
@@ -1327,8 +1328,8 @@ bool SelectOptimizeImpl::computeLoopCosts(
// BranchCost = PredictedPathCost + MispredictCost
// PredictedPathCost = TrueOpCost * TrueProb + FalseOpCost * FalseProb
// MispredictCost = max(MispredictPenalty, CondCost) * MispredictRate
- if (SImap.contains(&I)) {
- auto SI = SImap.at(&I);
+ if (auto It = SImap.find(&I); It != SImap.end()) {
+ auto SI = It->second;
const auto *SG = SGmap.at(&I);
Scaled64 TrueOpCost = SI.getOpCostOnBranch(true, InstCostMap, TTI);
Scaled64 FalseOpCost = SI.getOpCostOnBranch(false, InstCostMap, TTI);
More information about the llvm-commits
mailing list