[llvm] [CodeGen] Avoid repeated hash lookups (NFC) (PR #128631)
Kazu Hirata via llvm-commits
llvm-commits at lists.llvm.org
Mon Feb 24 21:37:49 PST 2025
https://github.com/kazutakahirata created https://github.com/llvm/llvm-project/pull/128631
None
>From 2c1ddf1d6115b6a7b88a245cfcb303c8a9309417 Mon Sep 17 00:00:00 2001
From: Kazu Hirata <kazu at google.com>
Date: Mon, 24 Feb 2025 01:04:51 -0800
Subject: [PATCH] [CodeGen] Avoid repeated hash lookups (NFC)
---
llvm/lib/CodeGen/SelectOptimize.cpp | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
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