[llvm] [VPlan] Use VPInstruction for VPScalarPHIRecipe. (NFCI) (PR #129767)
via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 7 10:45:25 PST 2025
================
@@ -1074,9 +1074,15 @@ void VPlan::execute(VPTransformState *State) {
Inc->setOperand(0, State->get(IV->getLastUnrolledPartOperand()));
continue;
}
+ if (auto *VPI = dyn_cast<VPInstruction>(&R)) {
+ Value *Phi = State->get(VPI, true);
+ Value *Val = State->get(VPI->getOperand(1), true);
+ cast<PHINode>(Phi)->addIncoming(Val, VectorLatchBB);
+ continue;
+ }
auto *PhiR = cast<VPHeaderPHIRecipe>(&R);
- bool NeedsScalar = isa<VPScalarPHIRecipe>(PhiR) ||
+ bool NeedsScalar =
----------------
ayalz wrote:
```suggestion
// VPInstructions currently model scalar Phis only.
bool NeedsScalar = isa<VPInstruction>(PhiR) ||
```
(w/o it can drop enclosing `()`).
https://github.com/llvm/llvm-project/pull/129767
More information about the llvm-commits
mailing list