[llvm] [LoopVectorize] Further improve cost model for early exit loops (PR #126235)
David Sherwood via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 6 01:25:37 PST 2025
================
@@ -10659,8 +10699,8 @@ bool LoopVectorizePass::processLoop(Loop *L) {
bool ForceVectorization =
Hints.getForce() == LoopVectorizeHints::FK_Enabled;
if (!ForceVectorization &&
- !areRuntimeChecksProfitable(Checks, VF, L, PSE, SEL,
- CM.getVScaleForTuning())) {
+ !isOutsideLoopWorkProfitable(Checks, VF, CM, PSE,
----------------
david-arm wrote:
Oh I read this after reading your 'unrelated' comments above, which I found confusing at first. The problem is that so many of the objects required to calculate the early exit cost live in the cost model class so it seemed simpler to pass that in here. Perhaps I'm missing something, but it wasn't clear from your comments above what you wanted me to do here? I thought originally you were suggesting I move the creation of the `VPCostContext` object into `isOutsideLoopWorkProfitable`, but are you suggesting I create the `VPCostContext` class here instead and pass it to `isOutsideLoopWorkProfitable`?
https://github.com/llvm/llvm-project/pull/126235
More information about the llvm-commits
mailing list