[llvm] [VPlan] Add initial CFG simplification, removing BranchOnCond true. (PR #106748)

David Sherwood via llvm-commits llvm-commits at lists.llvm.org
Wed Apr 2 02:40:35 PDT 2025


================
@@ -7570,10 +7574,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);
----------------
david-arm wrote:

Yeah I agree with @ayalz, this does look like an independent change. Is it worth a separate NFC patch?

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


More information about the llvm-commits mailing list