-
Notifications
You must be signed in to change notification settings - Fork 15.3k
[VPlan] Remove ILV::sinkScalarOperands. #136023
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -540,10 +540,6 @@ class InnerLoopVectorizer { | |
| protected: | ||
| friend class LoopVectorizationPlanner; | ||
|
|
||
| /// Iteratively sink the scalarized operands of a predicated instruction into | ||
| /// the block that was created for it. | ||
| void sinkScalarOperands(Instruction *PredInst); | ||
|
|
||
| /// Returns (and creates if needed) the trip count of the widened loop. | ||
| Value *getOrCreateVectorTripCount(BasicBlock *InsertBlock); | ||
|
|
||
|
|
@@ -628,9 +624,6 @@ class InnerLoopVectorizer { | |
| /// A list of all bypass blocks. The first block is the entry of the loop. | ||
| SmallVector<BasicBlock *, 4> LoopBypassBlocks; | ||
|
|
||
| /// Store instructions that were predicated. | ||
| SmallVector<Instruction *, 4> PredicatedInstructions; | ||
|
|
||
| /// Trip count of the original loop. | ||
| Value *TripCount = nullptr; | ||
|
|
||
|
|
@@ -2384,15 +2377,12 @@ void InnerLoopVectorizer::scalarizeInstruction(const Instruction *Instr, | |
|
|
||
| // End if-block. | ||
| VPRegionBlock *Parent = RepRecipe->getParent()->getParent(); | ||
|
||
| bool IfPredicateInstr = Parent ? Parent->isReplicator() : false; | ||
| assert( | ||
| (Parent || !RepRecipe->getParent()->getPlan()->getVectorLoopRegion() || | ||
| all_of(RepRecipe->operands(), | ||
| [](VPValue *Op) { return Op->isDefinedOutsideLoopRegions(); })) && | ||
| "Expected a recipe is either within a region or all of its operands " | ||
| "are defined outside the vectorized region."); | ||
| if (IfPredicateInstr) | ||
| PredicatedInstructions.push_back(Cloned); | ||
| } | ||
|
|
||
| Value * | ||
|
|
@@ -2866,9 +2856,6 @@ void InnerLoopVectorizer::fixVectorizedLoop(VPTransformState &State) { | |
| if (!State.Plan->getVectorLoopRegion()) | ||
| return; | ||
|
|
||
| for (Instruction *PI : PredicatedInstructions) | ||
| sinkScalarOperands(&*PI); | ||
|
|
||
| VPRegionBlock *VectorRegion = State.Plan->getVectorLoopRegion(); | ||
| VPBasicBlock *HeaderVPBB = VectorRegion->getEntryBasicBlock(); | ||
| BasicBlock *HeaderBB = State.CFG.VPBB2IRBB[HeaderVPBB]; | ||
|
|
@@ -2894,82 +2881,6 @@ void InnerLoopVectorizer::fixVectorizedLoop(VPTransformState &State) { | |
| VF.getKnownMinValue() * UF); | ||
| } | ||
|
|
||
| void InnerLoopVectorizer::sinkScalarOperands(Instruction *PredInst) { | ||
| // The basic block and loop containing the predicated instruction. | ||
| auto *PredBB = PredInst->getParent(); | ||
| auto *VectorLoop = LI->getLoopFor(PredBB); | ||
|
|
||
| // Initialize a worklist with the operands of the predicated instruction. | ||
| SetVector<Value *> Worklist(PredInst->op_begin(), PredInst->op_end()); | ||
|
|
||
| // Holds instructions that we need to analyze again. An instruction may be | ||
| // reanalyzed if we don't yet know if we can sink it or not. | ||
| SmallVector<Instruction *, 8> InstsToReanalyze; | ||
|
|
||
| // Returns true if a given use occurs in the predicated block. Phi nodes use | ||
| // their operands in their corresponding predecessor blocks. | ||
| auto IsBlockOfUsePredicated = [&](Use &U) -> bool { | ||
| auto *I = cast<Instruction>(U.getUser()); | ||
| BasicBlock *BB = I->getParent(); | ||
| if (auto *Phi = dyn_cast<PHINode>(I)) | ||
| BB = Phi->getIncomingBlock( | ||
| PHINode::getIncomingValueNumForOperand(U.getOperandNo())); | ||
| return BB == PredBB; | ||
| }; | ||
|
|
||
| // Iteratively sink the scalarized operands of the predicated instruction | ||
| // into the block we created for it. When an instruction is sunk, it's | ||
| // operands are then added to the worklist. The algorithm ends after one pass | ||
| // through the worklist doesn't sink a single instruction. | ||
| bool Changed; | ||
| do { | ||
| // Add the instructions that need to be reanalyzed to the worklist, and | ||
| // reset the changed indicator. | ||
| Worklist.insert_range(InstsToReanalyze); | ||
| InstsToReanalyze.clear(); | ||
| Changed = false; | ||
|
|
||
| while (!Worklist.empty()) { | ||
| auto *I = dyn_cast<Instruction>(Worklist.pop_back_val()); | ||
|
|
||
| // We can't sink an instruction if it is a phi node, is not in the loop, | ||
| // may have side effects or may read from memory. | ||
| // TODO: Could do more granular checking to allow sinking | ||
| // a load past non-store instructions. | ||
| if (!I || isa<PHINode>(I) || !VectorLoop->contains(I) || | ||
| I->mayHaveSideEffects() || I->mayReadFromMemory()) | ||
| continue; | ||
|
|
||
| // If the instruction is already in PredBB, check if we can sink its | ||
| // operands. In that case, VPlan's sinkScalarOperands() succeeded in | ||
| // sinking the scalar instruction I, hence it appears in PredBB; but it | ||
| // may have failed to sink I's operands (recursively), which we try | ||
| // (again) here. | ||
| if (I->getParent() == PredBB) { | ||
| Worklist.insert_range(I->operands()); | ||
| continue; | ||
| } | ||
|
|
||
| // It's legal to sink the instruction if all its uses occur in the | ||
| // predicated block. Otherwise, there's nothing to do yet, and we may | ||
| // need to reanalyze the instruction. | ||
| if (!llvm::all_of(I->uses(), IsBlockOfUsePredicated)) { | ||
| InstsToReanalyze.push_back(I); | ||
| continue; | ||
| } | ||
|
|
||
| // Move the instruction to the beginning of the predicated block, and add | ||
| // it's operands to the worklist. | ||
| I->moveBefore(PredBB->getFirstInsertionPt()); | ||
| Worklist.insert_range(I->operands()); | ||
|
|
||
| // The sinking may have enabled other instructions to be sunk, so we will | ||
| // need to iterate. | ||
| Changed = true; | ||
| } | ||
| } while (Changed); | ||
| } | ||
|
|
||
| void InnerLoopVectorizer::fixNonInductionPHIs(VPTransformState &State) { | ||
| auto Iter = vp_depth_first_deep(Plan.getEntry()); | ||
| for (VPBasicBlock *VPBB : VPBlockUtils::blocksOnly<VPBasicBlock>(Iter)) { | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -996,28 +996,31 @@ define void @test_widen_exp_v2(ptr noalias %p2, ptr noalias %p, i64 %n) #5 { | |
| ; TFA_INTERLEAVE-NEXT: [[ACTIVE_LANE_MASK_ENTRY1:%.*]] = icmp ult i64 1, [[TMP0]] | ||
| ; TFA_INTERLEAVE-NEXT: br label %[[VECTOR_BODY:.*]] | ||
| ; TFA_INTERLEAVE: [[VECTOR_BODY]]: | ||
| ; TFA_INTERLEAVE-NEXT: [[INDEX:%.*]] = phi i64 [ 0, %[[ENTRY]] ], [ [[TMP27:%.*]], %[[PRED_STORE_CONTINUE5:.*]] ] | ||
| ; TFA_INTERLEAVE-NEXT: [[ACTIVE_LANE_MASK:%.*]] = phi i1 [ [[ACTIVE_LANE_MASK_ENTRY]], %[[ENTRY]] ], [ [[ACTIVE_LANE_MASK_NEXT:%.*]], %[[PRED_STORE_CONTINUE5]] ] | ||
| ; TFA_INTERLEAVE-NEXT: [[ACTIVE_LANE_MASK2:%.*]] = phi i1 [ [[ACTIVE_LANE_MASK_ENTRY1]], %[[ENTRY]] ], [ [[ACTIVE_LANE_MASK_NEXT6:%.*]], %[[PRED_STORE_CONTINUE5]] ] | ||
| ; TFA_INTERLEAVE-NEXT: [[INDEX:%.*]] = phi i64 [ 0, %[[ENTRY]] ], [ [[TMP27:%.*]], %[[TMP19:.*]] ] | ||
| ; TFA_INTERLEAVE-NEXT: [[ACTIVE_LANE_MASK:%.*]] = phi i1 [ [[ACTIVE_LANE_MASK_ENTRY]], %[[ENTRY]] ], [ [[ACTIVE_LANE_MASK_NEXT:%.*]], %[[TMP19]] ] | ||
| ; TFA_INTERLEAVE-NEXT: [[ACTIVE_LANE_MASK2:%.*]] = phi i1 [ [[ACTIVE_LANE_MASK_ENTRY1]], %[[ENTRY]] ], [ [[ACTIVE_LANE_MASK_NEXT6:%.*]], %[[TMP19]] ] | ||
|
||
| ; TFA_INTERLEAVE-NEXT: [[TMP4:%.*]] = load double, ptr [[P2]], align 8 | ||
| ; TFA_INTERLEAVE-NEXT: br i1 [[ACTIVE_LANE_MASK]], label %[[PRED_STORE_IF:.*]], label %[[PRED_STORE_CONTINUE:.*]] | ||
| ; TFA_INTERLEAVE: [[PRED_STORE_IF]]: | ||
| ; TFA_INTERLEAVE-NEXT: [[TMP5:%.*]] = tail call double @llvm.exp.f64(double [[TMP4]]) #[[ATTR7:[0-9]+]] | ||
| ; TFA_INTERLEAVE-NEXT: [[TMP6:%.*]] = fcmp ogt double [[TMP5]], 0.000000e+00 | ||
| ; TFA_INTERLEAVE-NEXT: [[TMP7:%.*]] = xor i1 [[TMP6]], true | ||
| ; TFA_INTERLEAVE-NEXT: [[TMP24:%.*]] = select i1 [[TMP7]], double 1.000000e+00, double 0.000000e+00 | ||
| ; TFA_INTERLEAVE-NEXT: store double [[TMP24]], ptr [[P]], align 8 | ||
| ; TFA_INTERLEAVE-NEXT: br label %[[PRED_STORE_CONTINUE]] | ||
| ; TFA_INTERLEAVE: [[PRED_STORE_CONTINUE]]: | ||
| ; TFA_INTERLEAVE-NEXT: br i1 [[ACTIVE_LANE_MASK2]], label %[[PRED_STORE_IF4:.*]], label %[[PRED_STORE_CONTINUE5]] | ||
| ; TFA_INTERLEAVE: [[PRED_STORE_IF4]]: | ||
| ; TFA_INTERLEAVE-NEXT: [[TMP8:%.*]] = tail call double @llvm.exp.f64(double [[TMP4]]) #[[ATTR7]] | ||
| ; TFA_INTERLEAVE-NEXT: [[TMP6:%.*]] = fcmp ogt double [[TMP5]], 0.000000e+00 | ||
| ; TFA_INTERLEAVE-NEXT: [[TMP9:%.*]] = fcmp ogt double [[TMP8]], 0.000000e+00 | ||
| ; TFA_INTERLEAVE-NEXT: [[TMP10:%.*]] = xor i1 [[TMP9]], true | ||
| ; TFA_INTERLEAVE-NEXT: [[TMP18:%.*]] = xor i1 [[TMP6]], true | ||
| ; TFA_INTERLEAVE-NEXT: [[TMP20:%.*]] = xor i1 [[TMP9]], true | ||
|
Comment on lines
+1007
to
+1008
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Independent: these NOTs can be eliminated by flipping the earlier fcmp's or later selects.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yep, unfortunately the change to do so as surfaced a legacy/VPlan-cost model divergence I still need to investigate. |
||
| ; TFA_INTERLEAVE-NEXT: [[TMP10:%.*]] = select i1 [[ACTIVE_LANE_MASK]], i1 [[TMP18]], i1 false | ||
| ; TFA_INTERLEAVE-NEXT: [[TMP21:%.*]] = select i1 [[ACTIVE_LANE_MASK2]], i1 [[TMP20]], i1 false | ||
| ; TFA_INTERLEAVE-NEXT: [[TMP26:%.*]] = select i1 [[TMP10]], double 1.000000e+00, double 0.000000e+00 | ||
| ; TFA_INTERLEAVE-NEXT: store double [[TMP26]], ptr [[P]], align 8 | ||
| ; TFA_INTERLEAVE-NEXT: br label %[[PRED_STORE_CONTINUE5]] | ||
| ; TFA_INTERLEAVE: [[PRED_STORE_CONTINUE5]]: | ||
| ; TFA_INTERLEAVE-NEXT: [[PREDPHI3:%.*]] = select i1 [[TMP21]], double 1.000000e+00, double 0.000000e+00 | ||
| ; TFA_INTERLEAVE-NEXT: [[SPEC_SELECT:%.*]] = select i1 [[ACTIVE_LANE_MASK2]], double [[PREDPHI3]], double [[TMP26]] | ||
| ; TFA_INTERLEAVE-NEXT: [[TMP13:%.*]] = xor i1 [[ACTIVE_LANE_MASK]], true | ||
| ; TFA_INTERLEAVE-NEXT: [[TMP14:%.*]] = xor i1 [[ACTIVE_LANE_MASK2]], true | ||
| ; TFA_INTERLEAVE-NEXT: [[TMP15:%.*]] = xor i1 [[TMP13]], true | ||
| ; TFA_INTERLEAVE-NEXT: [[TMP16:%.*]] = xor i1 [[TMP14]], true | ||
| ; TFA_INTERLEAVE-NEXT: [[TMP17:%.*]] = or i1 [[TMP15]], [[TMP16]] | ||
| ; TFA_INTERLEAVE-NEXT: br i1 [[TMP17]], label %[[BB18:.*]], label %[[TMP19]] | ||
| ; TFA_INTERLEAVE: [[BB18]]: | ||
| ; TFA_INTERLEAVE-NEXT: store double [[SPEC_SELECT]], ptr [[P]], align 8 | ||
| ; TFA_INTERLEAVE-NEXT: br label %[[TMP19]] | ||
| ; TFA_INTERLEAVE: [[TMP19]]: | ||
|
||
| ; TFA_INTERLEAVE-NEXT: [[TMP27]] = add i64 [[INDEX]], 2 | ||
| ; TFA_INTERLEAVE-NEXT: [[TMP11:%.*]] = add i64 [[INDEX]], 1 | ||
| ; TFA_INTERLEAVE-NEXT: [[ACTIVE_LANE_MASK_NEXT]] = icmp ult i64 [[INDEX]], [[TMP3]] | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -8,13 +8,13 @@ define ptr @test(ptr noalias %src, ptr noalias %dst) { | |
| ; CHECK-NEXT: [[VEC_IND:%.*]] = phi <2 x i64> [ <i64 0, i64 1>, %vector.ph ], [ [[VEC_IND_NEXT:%.*]], [[PRED_LOAD_CONTINUE2]] ] | ||
| ; CHECK-NEXT: [[TMP0:%.*]] = add i64 [[INDEX]], 0 | ||
| ; CHECK-NEXT: [[TMP1:%.*]] = add i64 [[INDEX]], 1 | ||
| ; CHECK-NEXT: [[TMP2:%.*]] = getelementptr inbounds i32, ptr [[SRC:%.*]], i64 [[TMP1]] | ||
| ; CHECK-NEXT: [[TMP6:%.*]] = getelementptr inbounds i32, ptr [[SRC:%.*]], i64 [[TMP0]] | ||
| ; CHECK-NEXT: [[TMP2:%.*]] = getelementptr inbounds i32, ptr [[SRC]], i64 [[TMP1]] | ||
|
Comment on lines
+11
to
+12
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Here and below are cases of GEP sinkings. |
||
| ; CHECK-NEXT: [[TMP3:%.*]] = icmp eq <2 x i64> [[VEC_IND]], zeroinitializer | ||
| ; CHECK-NEXT: [[TMP4:%.*]] = xor <2 x i1> [[TMP3]], splat (i1 true) | ||
| ; CHECK-NEXT: [[TMP5:%.*]] = extractelement <2 x i1> [[TMP4]], i32 0 | ||
| ; CHECK-NEXT: br i1 [[TMP5]], label [[PRED_LOAD_IF:%.*]], label [[PRED_LOAD_CONTINUE:%.*]] | ||
| ; CHECK: pred.load.if: | ||
| ; CHECK-NEXT: [[TMP6:%.*]] = getelementptr inbounds i32, ptr [[SRC]], i64 [[TMP0]] | ||
| ; CHECK-NEXT: [[TMP7:%.*]] = load i32, ptr [[TMP6]], align 4 | ||
| ; CHECK-NEXT: [[TMP8:%.*]] = insertelement <2 x i32> poison, i32 [[TMP7]], i32 0 | ||
| ; CHECK-NEXT: br label [[PRED_LOAD_CONTINUE]] | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Potential follow-up: could scalarizeInstruction() now move from ILV to VPReplicateRecipe::execute(), with some handling of AC/AssumeInst's?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yep, that was the main motivation for removing it :)