[llvm] [LoopVectorize] Further improve cost model for early exit loops (PR #126235)

Florian Hahn via llvm-commits llvm-commits at lists.llvm.org
Wed Feb 26 02:47:38 PST 2025


================
@@ -10132,7 +10159,7 @@ static bool areRuntimeChecksProfitable(GeneratedRTChecks &Checks,
   // the computations are performed on doubles, not integers and the result
   // is rounded up, hence we get an upper estimate of the TC.
   unsigned IntVF = getEstimatedRuntimeVF(VF.Width, VScale);
-  uint64_t RtC = *CheckCost.getValue();
+  uint64_t RtC = *TotalCost.getValue();
----------------
fhahn wrote:

The reference to `RtC` in the comment above needs updating as well

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


More information about the llvm-commits mailing list