[llvm] [Vectorize] Avoid repeated hash lookups (NFC) (PR #132661)

Florian Hahn via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 25 01:44:22 PDT 2025


================
@@ -5815,12 +5815,13 @@ LoopVectorizationCostModel::getReductionPatternCost(Instruction *I,
 
   // Test if the found instruction is a reduction, and if not return an invalid
   // cost specifying the parent to use the original cost modelling.
-  if (!InLoopReductionImmediateChains.count(RetI))
+  auto RetIIt = InLoopReductionImmediateChains.find(RetI);
+  if (RetIIt == InLoopReductionImmediateChains.end())
     return std::nullopt;
 
   // Find the reduction this chain is a part of and calculate the basic cost of
   // the reduction on its own.
-  Instruction *LastChain = InLoopReductionImmediateChains.at(RetI);
+  Instruction *LastChain = RetIIt->second;
----------------
fhahn wrote:

```suggestion
```

https://github.com/llvm/llvm-project/pull/132661


More information about the llvm-commits mailing list