[llvm] [VPlan] Add initial CFG simplification, removing BranchOnCond true. (PR #106748)
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Thu Apr 3 04:55:35 PDT 2025
================
@@ -1682,6 +1682,52 @@ void VPlanTransforms::truncateToMinimalBitwidths(
"some entries in MinBWs haven't been processed");
}
+/// Remove BranchOnCond recipes with true conditions together with removing
+/// dead edges to their successors.
+static void simplifyBranchOnCondTrue(VPlan &Plan) {
+ using namespace llvm::VPlanPatternMatch;
+ for (VPBasicBlock *VPBB : VPBlockUtils::blocksOnly<VPBasicBlock>(
+ vp_depth_first_shallow(Plan.getEntry()))) {
+ if (VPBB->getNumSuccessors() != 2 ||
+ !match(&VPBB->back(), m_BranchOnCond(m_True())))
+ continue;
+
+ VPBasicBlock *RemovedSucc = cast<VPBasicBlock>(VPBB->getSuccessors()[1]);
+ const auto &Preds = RemovedSucc->getPredecessors();
+ assert(count(Preds, VPBB) == 1 &&
+ "There must be a single edge between VPBB and its successor");
+ unsigned DeadIdx = std::distance(Preds.begin(), find(Preds, VPBB));
+
+ // Values coming from VPBB into ResumePhi recipes of RemoveSucc are removed
+ // from these recipes.
+ for (VPRecipeBase &R : make_early_inc_range(*RemovedSucc)) {
+ assert((!isa<VPIRInstruction>(&R) ||
+ !isa<PHINode>(cast<VPIRInstruction>(&R)->getInstruction())) &&
+ !isa<VPHeaderPHIRecipe>(&R) &&
+ "Cannot update VPIRInstructions wrapping phis or header phis yet");
+ auto *VPI = dyn_cast<VPInstruction>(&R);
+ if (!VPI || VPI->getOpcode() != VPInstruction::ResumePhi)
+ break;
+ VPBuilder B(VPI);
+ SmallVector<VPValue *> NewOperands;
+ // Create new operand list, with the dead incoming value filtered out.
----------------
fhahn wrote:
We could, the question is how to best limit this to some recipes, as I think it only makes sense for phi-like recipes (or maybe just ResumePhi). Could do as follow-up?
https://github.com/llvm/llvm-project/pull/106748
More information about the llvm-commits
mailing list