forked from OSchip/llvm-project
[VPlan] Make IV operand explicit for VPWidenCanonicalIVRecipe (NFC).
This makes the def-use relationship between VPCanonicalIVPHIRecipe and VPWidenCanonicalIVRecipe explicit. Needed for D117140.
This commit is contained in:
parent
a5507d2e25
commit
3f2fb767e3
|
@ -8436,7 +8436,7 @@ VPValue *VPRecipeBuilder::createBlockInMask(BasicBlock *BB, VPlanPtr &Plan) {
|
|||
if (Legal->getPrimaryInduction())
|
||||
IV = Plan->getOrAddVPValue(Legal->getPrimaryInduction());
|
||||
else {
|
||||
auto *IVRecipe = new VPWidenCanonicalIVRecipe();
|
||||
auto *IVRecipe = new VPWidenCanonicalIVRecipe(Plan->getCanonicalIV());
|
||||
HeaderVPBB->insert(IVRecipe, NewInsertionPoint);
|
||||
IV = IVRecipe;
|
||||
}
|
||||
|
|
|
@ -1381,7 +1381,7 @@ void VPCanonicalIVPHIRecipe::print(raw_ostream &O, const Twine &Indent,
|
|||
#endif
|
||||
|
||||
void VPWidenCanonicalIVRecipe::execute(VPTransformState &State) {
|
||||
Value *CanonicalIV = State.get(getParent()->getPlan()->getCanonicalIV(), 0);
|
||||
Value *CanonicalIV = State.get(getOperand(0), 0);
|
||||
Type *STy = CanonicalIV->getType();
|
||||
IRBuilder<> Builder(State.CFG.PrevBB->getTerminator());
|
||||
ElementCount VF = State.VF;
|
||||
|
@ -1404,7 +1404,8 @@ void VPWidenCanonicalIVRecipe::print(raw_ostream &O, const Twine &Indent,
|
|||
VPSlotTracker &SlotTracker) const {
|
||||
O << Indent << "EMIT ";
|
||||
printAsOperand(O, SlotTracker);
|
||||
O << " = WIDEN-CANONICAL-INDUCTION";
|
||||
O << " = WIDEN-CANONICAL-INDUCTION ";
|
||||
printOperands(O, SlotTracker);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
|
@ -1665,8 +1665,8 @@ public:
|
|||
/// A Recipe for widening the canonical induction variable of the vector loop.
|
||||
class VPWidenCanonicalIVRecipe : public VPRecipeBase, public VPValue {
|
||||
public:
|
||||
VPWidenCanonicalIVRecipe()
|
||||
: VPRecipeBase(VPWidenCanonicalIVSC, {}),
|
||||
VPWidenCanonicalIVRecipe(VPCanonicalIVPHIRecipe *CanonicalIV)
|
||||
: VPRecipeBase(VPWidenCanonicalIVSC, {CanonicalIV}),
|
||||
VPValue(VPValue::VPVWidenCanonicalIVSC, nullptr, this) {}
|
||||
|
||||
~VPWidenCanonicalIVRecipe() override = default;
|
||||
|
|
|
@ -245,7 +245,7 @@ define void @uniform_gep(i64 %k, i16* noalias %A, i16* noalias %B) {
|
|||
; CHECK-NEXT: loop:
|
||||
; CHECK-NEXT: EMIT vp<[[CAN_IV:%.+]]> = CANONICAL-INDUCTION
|
||||
; CHECK-NEXT: WIDEN-INDUCTION %iv = phi 21, %iv.next
|
||||
; CHECK-NEXT: EMIT vp<[[WIDE_CAN_IV:%.+]]> = WIDEN-CANONICAL-INDUCTION
|
||||
; CHECK-NEXT: EMIT vp<[[WIDE_CAN_IV:%.+]]> = WIDEN-CANONICAL-INDUCTION vp<[[CAN_IV]]>
|
||||
; CHECK-NEXT: EMIT vp<[[MASK:%.+]]> = icmp ule vp<[[WIDE_CAN_IV]]> vp<[[BTC]]>
|
||||
; CHECK-NEXT: CLONE ir<%gep.A.uniform> = getelementptr ir<%A>, ir<0>
|
||||
; CHECK-NEXT: Successor(s): pred.load
|
||||
|
|
Loading…
Reference in New Issue