[llvm] [VPlan] Add new VPIRPhi overlay for VPIRInsts wrapping phi nodes (NFC). (PR #129387)
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 26 04:51:59 PDT 2025
================
@@ -1028,6 +1013,40 @@ void VPIRInstruction::extractLastLaneOfOperand(VPBuilder &Builder) {
void VPIRInstruction::print(raw_ostream &O, const Twine &Indent,
VPSlotTracker &SlotTracker) const {
O << Indent << "IR " << I;
+}
+#endif
+
+void VPIRPhi::execute(VPTransformState &State) {
----------------
fhahn wrote:
There are still cases we create VPIRPhi without operands, e.g. if the entry block contains existing lcssa phis, which do not need updating
https://github.com/llvm/llvm-project/pull/129387
More information about the llvm-commits
mailing list