[llvm] [VPlan] Add initial CFG simplification, removing BranchOnCond true. (PR #106748)
via llvm-commits
llvm-commits at lists.llvm.org
Sun Mar 23 04:01:34 PDT 2025
================
@@ -7567,10 +7568,10 @@ VectorizationFactor LoopVectorizationPlanner::computeBestVF() {
// Set PlanForEarlyExitLoop to true if the BestPlan has been built from a
// loop with an uncountable early exit. The legacy cost model doesn't
// properly model costs for such loops.
+ auto ExitBlocks = BestPlan.getExitBlocks();
bool PlanForEarlyExitLoop =
- BestPlan.getVectorLoopRegion() &&
- BestPlan.getVectorLoopRegion()->getSingleSuccessor() !=
- BestPlan.getMiddleBlock();
+ ExitBlocks.size() > 1 ||
+ (ExitBlocks.size() == 1 && ExitBlocks[0]->getNumPredecessors() > 1);
----------------
ayalz wrote:
```suggestion
ExitBlocks[0]->getNumPredecessors() > 1;
```
asserting that ExitBlocks.size() >= 1?
Is this change independent?
https://github.com/llvm/llvm-project/pull/106748
More information about the llvm-commits
mailing list