[llvm] [VPlan] Construct immutable VPIRBBs for exit blocks at construction(NFC) (PR #128374)

Florian Hahn via llvm-commits llvm-commits at lists.llvm.org
Tue Feb 25 03:58:15 PST 2025


================
@@ -984,6 +989,12 @@ void VPlan::prepareToExecute(Value *TripCountV, Value *VectorTripCountV,
   }
 }
 
+VPIRBasicBlock *VPlan::getExitBlock(BasicBlock *IRBB) const {
+  return *find_if(getExitBlocks(), [IRBB](const VPIRBasicBlock *VPIRBB) {
+    return VPIRBB->getIRBasicBlock() == IRBB;
+  });
----------------
fhahn wrote:

Left as vector for now, as getExitBlock should not be needed soonish and be replaced by connecting the blocks during initial VPlan construction.


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


More information about the llvm-commits mailing list