[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:40 PST 2025
================
@@ -10564,12 +10591,17 @@ bool LoopVectorizePass::processLoop(Loop *L) {
if (VF.Width.isVector() || SelectedIC > 1)
Checks.create(L, *LVL.getLAI(), PSE.getPredicate(), VF.Width, SelectedIC);
+ InstructionCost EarlyExitCost = InstructionCost::getInvalid();
+ if (VF.Width.isVector() && LVL.hasUncountableEarlyExit())
----------------
fhahn wrote:
Do we need to check if VF is a vector? At the moment, we won't generate interleaved VPlans with early exits, but even when we do, it should probably calculate the correct cost after the VPlan has been unrolled explicitly?
https://github.com/llvm/llvm-project/pull/126235
More information about the llvm-commits
mailing list