[llvm] [VPlan] Build initial VPlan 0 using HCFGBuilder for inner loops. (NFC) (PR #124432)
via llvm-commits
llvm-commits at lists.llvm.org
Mon Feb 3 01:01:39 PST 2025
================
@@ -9229,6 +9230,10 @@ LoopVectorizationPlanner::tryToBuildVPlanWithVPRecipes(VFRange &Range) {
PSE, RequiresScalarEpilogueCheck,
CM.foldTailByMasking(), OrigLoop);
+ // Build hierarchical CFG.
+ VPlanHCFGBuilder HCFGBuilder(OrigLoop, LI, *Plan);
+ HCFGBuilder.buildHierarchicalCFG();
----------------
ayalz wrote:
Perhaps `VPlanHCFGBuilder::buildingHierarchicalCFG()` which creates initial VPBB's inside loop region ( via `PlainCFGBuilder::buildPlainCFG()`) should now be combined with `VPlan::createInitialVPlan()` which creates initial VPBB's elsewhere?
Can be done as follow-up.
https://github.com/llvm/llvm-project/pull/124432
More information about the llvm-commits
mailing list