[llvm] [LoopVectorize] Add the cost of VPInstruction::AnyOf to vplan (PR #125058)
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 4 11:40:15 PST 2025
================
@@ -7539,6 +7539,9 @@ VectorizationFactor LoopVectorizationPlanner::computeBestVF() {
CM.CostKind);
precomputeCosts(BestPlan, BestFactor.Width, CostCtx);
assert((BestFactor.Width == LegacyVF.Width ||
+ (BestPlan.getVectorLoopRegion() &&
+ BestPlan.getVectorLoopRegion()->getSingleSuccessor() !=
+ BestPlan.getMiddleBlock()) ||
----------------
fhahn wrote:
Might be good to pull this out together with an explanation.
Perhaps something like.
```suggestion
// True if the BestPlan has been built from a loop with uncountable early exit. The legacy cost model doesn't properly model costs for such loops.
bool PlanForEarlyExitLoop = BestPlan.getVectorLoopRegion() &&
BestPlan.getVectorLoopRegion()->getSingleSuccessor() !=
BestPlan.getMiddleBlock();
assert((BestFactor.Width == LegacyVF.Width || PlanForEarlyExitLoop
||
```
https://github.com/llvm/llvm-project/pull/125058
More information about the llvm-commits
mailing list