-
Notifications
You must be signed in to change notification settings - Fork 14.1k
[VPlan] Update VPInst::onlyFirstLaneUsed to check users. #80269
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 all commits
f4dabdf
fb69579
76eb104
6dc9a80
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 |
---|---|---|
|
@@ -515,6 +515,26 @@ void VPInstruction::execute(VPTransformState &State) { | |
State.set(this, GeneratedValue, Part); | ||
} | ||
} | ||
bool VPInstruction::onlyFirstLaneUsed(const VPValue *Op) const { | ||
assert(is_contained(operands(), Op) && "Op must be an operand of the recipe"); | ||
if (Instruction::isBinaryOp(getOpcode())) | ||
return vputils::onlyFirstLaneUsed(this); | ||
|
||
switch (getOpcode()) { | ||
default: | ||
return false; | ||
case Instruction::ICmp: | ||
// TODO: Cover additional opcodes. | ||
return vputils::onlyFirstLaneUsed(this); | ||
case VPInstruction::ActiveLaneMask: | ||
case VPInstruction::CalculateTripCountMinusVF: | ||
case VPInstruction::CanonicalIVIncrementForPart: | ||
case VPInstruction::BranchOnCount: | ||
// TODO: Cover additional operands. | ||
return getOperand(0) == Op; | ||
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. This maintains current functionality, but leaves room for further improvement - to cover additional operands (of ActiveLaneMask, BranchOnCount) and opcodes (Not, Select, BranchOnCond) - worth a TODO. 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. Done, thanks! |
||
}; | ||
llvm_unreachable("switch should return"); | ||
} | ||
|
||
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) | ||
void VPInstruction::dump() const { | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -67,7 +67,7 @@ define void @pr45679(ptr %A) optsize { | |
; CHECK-NEXT: store i32 13, ptr [[ARRAYIDX]], align 1 | ||
; CHECK-NEXT: [[RIVPLUS1]] = add nuw nsw i32 [[RIV]], 1 | ||
; CHECK-NEXT: [[COND:%.*]] = icmp eq i32 [[RIVPLUS1]], 14 | ||
; CHECK-NEXT: br i1 [[COND]], label [[EXIT]], label [[LOOP]], !llvm.loop [[LOOP2:![0-9]+]] | ||
; CHECK-NEXT: br i1 [[COND]], label [[EXIT]], label [[LOOP]], !llvm.loop [[LOOP3:![0-9]+]] | ||
; CHECK: exit: | ||
; CHECK-NEXT: ret void | ||
; | ||
|
@@ -129,7 +129,7 @@ define void @pr45679(ptr %A) optsize { | |
; VF2UF2-NEXT: store i32 13, ptr [[ARRAYIDX]], align 1 | ||
; VF2UF2-NEXT: [[RIVPLUS1]] = add nuw nsw i32 [[RIV]], 1 | ||
; VF2UF2-NEXT: [[COND:%.*]] = icmp eq i32 [[RIVPLUS1]], 14 | ||
; VF2UF2-NEXT: br i1 [[COND]], label [[EXIT]], label [[LOOP]], !llvm.loop [[LOOP2:![0-9]+]] | ||
; VF2UF2-NEXT: br i1 [[COND]], label [[EXIT]], label [[LOOP]], !llvm.loop [[LOOP3:![0-9]+]] | ||
; VF2UF2: exit: | ||
; VF2UF2-NEXT: ret void | ||
; | ||
|
@@ -139,46 +139,42 @@ define void @pr45679(ptr %A) optsize { | |
; VF1UF4: vector.ph: | ||
; VF1UF4-NEXT: br label [[VECTOR_BODY:%.*]] | ||
; VF1UF4: vector.body: | ||
; VF1UF4-NEXT: [[INDEX:%.*]] = phi i32 [ 0, [[VECTOR_PH]] ], [ [[INDEX_NEXT:%.*]], [[PRED_STORE_CONTINUE12:%.*]] ] | ||
; VF1UF4-NEXT: [[VEC_IV:%.*]] = add i32 [[INDEX]], 0 | ||
; VF1UF4-NEXT: [[VEC_IV4:%.*]] = add i32 [[INDEX]], 1 | ||
; VF1UF4-NEXT: [[VEC_IV5:%.*]] = add i32 [[INDEX]], 2 | ||
; VF1UF4-NEXT: [[VEC_IV6:%.*]] = add i32 [[INDEX]], 3 | ||
; VF1UF4-NEXT: [[TMP0:%.*]] = icmp ule i32 [[VEC_IV]], 13 | ||
; VF1UF4-NEXT: [[TMP1:%.*]] = icmp ule i32 [[VEC_IV4]], 13 | ||
; VF1UF4-NEXT: [[TMP2:%.*]] = icmp ule i32 [[VEC_IV5]], 13 | ||
; VF1UF4-NEXT: [[TMP3:%.*]] = icmp ule i32 [[VEC_IV6]], 13 | ||
; VF1UF4-NEXT: br i1 [[TMP0]], label [[PRED_STORE_IF:%.*]], label [[PRED_STORE_CONTINUE:%.*]] | ||
; VF1UF4-NEXT: [[INDEX:%.*]] = phi i32 [ 0, [[VECTOR_PH]] ], [ [[INDEX_NEXT:%.*]], [[PRED_STORE_CONTINUE6:%.*]] ] | ||
; VF1UF4-NEXT: [[TMP0:%.*]] = add i32 [[INDEX]], 0 | ||
; VF1UF4-NEXT: [[TMP1:%.*]] = add i32 [[INDEX]], 1 | ||
; VF1UF4-NEXT: [[TMP2:%.*]] = add i32 [[INDEX]], 2 | ||
; VF1UF4-NEXT: [[TMP3:%.*]] = add i32 [[INDEX]], 3 | ||
; VF1UF4-NEXT: [[TMP4:%.*]] = icmp ule i32 [[TMP0]], 13 | ||
; VF1UF4-NEXT: [[TMP5:%.*]] = icmp ule i32 [[TMP1]], 13 | ||
; VF1UF4-NEXT: [[TMP6:%.*]] = icmp ule i32 [[TMP2]], 13 | ||
; VF1UF4-NEXT: [[TMP7:%.*]] = icmp ule i32 [[TMP3]], 13 | ||
; VF1UF4-NEXT: br i1 [[TMP4]], label [[PRED_STORE_IF:%.*]], label [[PRED_STORE_CONTINUE:%.*]] | ||
; VF1UF4: pred.store.if: | ||
; VF1UF4-NEXT: [[INDUCTION:%.*]] = add i32 [[INDEX]], 0 | ||
; VF1UF4-NEXT: [[TMP4:%.*]] = getelementptr inbounds i32, ptr [[A:%.*]], i32 [[INDUCTION]] | ||
; VF1UF4-NEXT: store i32 13, ptr [[TMP4]], align 1 | ||
; VF1UF4-NEXT: [[TMP8:%.*]] = getelementptr inbounds i32, ptr [[A:%.*]], i32 [[TMP0]] | ||
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. Noting: this is cse'ing TMP0 (as with TMP1,2,3 below), compared to currently re-computing it. In this case, should be dropped being a zero-add. |
||
; VF1UF4-NEXT: store i32 13, ptr [[TMP8]], align 1 | ||
; VF1UF4-NEXT: br label [[PRED_STORE_CONTINUE]] | ||
; VF1UF4: pred.store.continue: | ||
; VF1UF4-NEXT: br i1 [[TMP1]], label [[PRED_STORE_IF7:%.*]], label [[PRED_STORE_CONTINUE8:%.*]] | ||
; VF1UF4: pred.store.if4: | ||
; VF1UF4-NEXT: [[INDUCTION1:%.*]] = add i32 [[INDEX]], 1 | ||
; VF1UF4-NEXT: [[TMP5:%.*]] = getelementptr inbounds i32, ptr [[A]], i32 [[INDUCTION1]] | ||
; VF1UF4-NEXT: store i32 13, ptr [[TMP5]], align 1 | ||
; VF1UF4-NEXT: br label [[PRED_STORE_CONTINUE8]] | ||
; VF1UF4: pred.store.continue5: | ||
; VF1UF4-NEXT: br i1 [[TMP2]], label [[PRED_STORE_IF9:%.*]], label [[PRED_STORE_CONTINUE10:%.*]] | ||
; VF1UF4: pred.store.if6: | ||
; VF1UF4-NEXT: [[INDUCTION2:%.*]] = add i32 [[INDEX]], 2 | ||
; VF1UF4-NEXT: [[TMP6:%.*]] = getelementptr inbounds i32, ptr [[A]], i32 [[INDUCTION2]] | ||
; VF1UF4-NEXT: store i32 13, ptr [[TMP6]], align 1 | ||
; VF1UF4-NEXT: br label [[PRED_STORE_CONTINUE10]] | ||
; VF1UF4: pred.store.continue7: | ||
; VF1UF4-NEXT: br i1 [[TMP3]], label [[PRED_STORE_IF11:%.*]], label [[PRED_STORE_CONTINUE12]] | ||
; VF1UF4: pred.store.if8: | ||
; VF1UF4-NEXT: [[INDUCTION3:%.*]] = add i32 [[INDEX]], 3 | ||
; VF1UF4-NEXT: [[TMP7:%.*]] = getelementptr inbounds i32, ptr [[A]], i32 [[INDUCTION3]] | ||
; VF1UF4-NEXT: store i32 13, ptr [[TMP7]], align 1 | ||
; VF1UF4-NEXT: br label [[PRED_STORE_CONTINUE12]] | ||
; VF1UF4: pred.store.continue9: | ||
; VF1UF4-NEXT: br i1 [[TMP5]], label [[PRED_STORE_IF1:%.*]], label [[PRED_STORE_CONTINUE2:%.*]] | ||
; VF1UF4: pred.store.if1: | ||
; VF1UF4-NEXT: [[TMP9:%.*]] = getelementptr inbounds i32, ptr [[A]], i32 [[TMP1]] | ||
; VF1UF4-NEXT: store i32 13, ptr [[TMP9]], align 1 | ||
; VF1UF4-NEXT: br label [[PRED_STORE_CONTINUE2]] | ||
; VF1UF4: pred.store.continue2: | ||
; VF1UF4-NEXT: br i1 [[TMP6]], label [[PRED_STORE_IF3:%.*]], label [[PRED_STORE_CONTINUE4:%.*]] | ||
; VF1UF4: pred.store.if3: | ||
; VF1UF4-NEXT: [[TMP10:%.*]] = getelementptr inbounds i32, ptr [[A]], i32 [[TMP2]] | ||
; VF1UF4-NEXT: store i32 13, ptr [[TMP10]], align 1 | ||
; VF1UF4-NEXT: br label [[PRED_STORE_CONTINUE4]] | ||
; VF1UF4: pred.store.continue4: | ||
; VF1UF4-NEXT: br i1 [[TMP7]], label [[PRED_STORE_IF5:%.*]], label [[PRED_STORE_CONTINUE6]] | ||
; VF1UF4: pred.store.if5: | ||
; VF1UF4-NEXT: [[TMP11:%.*]] = getelementptr inbounds i32, ptr [[A]], i32 [[TMP3]] | ||
; VF1UF4-NEXT: store i32 13, ptr [[TMP11]], align 1 | ||
; VF1UF4-NEXT: br label [[PRED_STORE_CONTINUE6]] | ||
; VF1UF4: pred.store.continue6: | ||
; VF1UF4-NEXT: [[INDEX_NEXT]] = add i32 [[INDEX]], 4 | ||
; VF1UF4-NEXT: [[TMP8:%.*]] = icmp eq i32 [[INDEX_NEXT]], 16 | ||
; VF1UF4-NEXT: br i1 [[TMP8]], label [[MIDDLE_BLOCK:%.*]], label [[VECTOR_BODY]], !llvm.loop [[LOOP0:![0-9]+]] | ||
; VF1UF4-NEXT: [[TMP12:%.*]] = icmp eq i32 [[INDEX_NEXT]], 16 | ||
; VF1UF4-NEXT: br i1 [[TMP12]], label [[MIDDLE_BLOCK:%.*]], label [[VECTOR_BODY]], !llvm.loop [[LOOP0:![0-9]+]] | ||
; VF1UF4: middle.block: | ||
; VF1UF4-NEXT: br i1 true, label [[EXIT:%.*]], label [[SCALAR_PH]] | ||
; VF1UF4: scalar.ph: | ||
|
@@ -190,7 +186,7 @@ define void @pr45679(ptr %A) optsize { | |
; VF1UF4-NEXT: store i32 13, ptr [[ARRAYIDX]], align 1 | ||
; VF1UF4-NEXT: [[RIVPLUS1]] = add nuw nsw i32 [[RIV]], 1 | ||
; VF1UF4-NEXT: [[COND:%.*]] = icmp eq i32 [[RIVPLUS1]], 14 | ||
; VF1UF4-NEXT: br i1 [[COND]], label [[EXIT]], label [[LOOP]], !llvm.loop [[LOOP2:![0-9]+]] | ||
; VF1UF4-NEXT: br i1 [[COND]], label [[EXIT]], label [[LOOP]], !llvm.loop [[LOOP3:![0-9]+]] | ||
; VF1UF4: exit: | ||
; VF1UF4-NEXT: ret void | ||
; | ||
|
@@ -356,54 +352,50 @@ define void @load_variant(ptr noalias %a, ptr noalias %b) { | |
; VF1UF4: vector.ph: | ||
; VF1UF4-NEXT: br label [[VECTOR_BODY:%.*]] | ||
; VF1UF4: vector.body: | ||
; VF1UF4-NEXT: [[INDEX:%.*]] = phi i64 [ 0, [[VECTOR_PH]] ], [ [[INDEX_NEXT:%.*]], [[PRED_STORE_CONTINUE12:%.*]] ] | ||
; VF1UF4-NEXT: [[VEC_IV:%.*]] = add i64 [[INDEX]], 0 | ||
; VF1UF4-NEXT: [[VEC_IV4:%.*]] = add i64 [[INDEX]], 1 | ||
; VF1UF4-NEXT: [[VEC_IV5:%.*]] = add i64 [[INDEX]], 2 | ||
; VF1UF4-NEXT: [[VEC_IV6:%.*]] = add i64 [[INDEX]], 3 | ||
; VF1UF4-NEXT: [[TMP0:%.*]] = icmp ule i64 [[VEC_IV]], 13 | ||
; VF1UF4-NEXT: [[TMP1:%.*]] = icmp ule i64 [[VEC_IV4]], 13 | ||
; VF1UF4-NEXT: [[TMP2:%.*]] = icmp ule i64 [[VEC_IV5]], 13 | ||
; VF1UF4-NEXT: [[TMP3:%.*]] = icmp ule i64 [[VEC_IV6]], 13 | ||
; VF1UF4-NEXT: br i1 [[TMP0]], label [[PRED_STORE_IF:%.*]], label [[PRED_STORE_CONTINUE:%.*]] | ||
; VF1UF4-NEXT: [[INDEX:%.*]] = phi i64 [ 0, [[VECTOR_PH]] ], [ [[INDEX_NEXT:%.*]], [[PRED_STORE_CONTINUE6:%.*]] ] | ||
; VF1UF4-NEXT: [[TMP0:%.*]] = add i64 [[INDEX]], 0 | ||
; VF1UF4-NEXT: [[TMP1:%.*]] = add i64 [[INDEX]], 1 | ||
; VF1UF4-NEXT: [[TMP2:%.*]] = add i64 [[INDEX]], 2 | ||
; VF1UF4-NEXT: [[TMP3:%.*]] = add i64 [[INDEX]], 3 | ||
; VF1UF4-NEXT: [[TMP4:%.*]] = icmp ule i64 [[TMP0]], 13 | ||
; VF1UF4-NEXT: [[TMP5:%.*]] = icmp ule i64 [[TMP1]], 13 | ||
; VF1UF4-NEXT: [[TMP6:%.*]] = icmp ule i64 [[TMP2]], 13 | ||
; VF1UF4-NEXT: [[TMP7:%.*]] = icmp ule i64 [[TMP3]], 13 | ||
; VF1UF4-NEXT: br i1 [[TMP4]], label [[PRED_STORE_IF:%.*]], label [[PRED_STORE_CONTINUE:%.*]] | ||
; VF1UF4: pred.store.if: | ||
; VF1UF4-NEXT: [[INDUCTION:%.*]] = add i64 [[INDEX]], 0 | ||
; VF1UF4-NEXT: [[TMP4:%.*]] = getelementptr inbounds i64, ptr [[A:%.*]], i64 [[INDUCTION]] | ||
; VF1UF4-NEXT: [[TMP5:%.*]] = load i64, ptr [[TMP4]], align 8 | ||
; VF1UF4-NEXT: store i64 [[TMP5]], ptr [[B:%.*]], align 8 | ||
; VF1UF4-NEXT: [[TMP8:%.*]] = getelementptr inbounds i64, ptr [[A:%.*]], i64 [[TMP0]] | ||
; VF1UF4-NEXT: [[TMP9:%.*]] = load i64, ptr [[TMP8]], align 8 | ||
; VF1UF4-NEXT: store i64 [[TMP9]], ptr [[B:%.*]], align 8 | ||
; VF1UF4-NEXT: br label [[PRED_STORE_CONTINUE]] | ||
; VF1UF4: pred.store.continue: | ||
; VF1UF4-NEXT: [[TMP6:%.*]] = phi i64 [ poison, [[VECTOR_BODY]] ], [ [[TMP5]], [[PRED_STORE_IF]] ] | ||
; VF1UF4-NEXT: br i1 [[TMP1]], label [[PRED_STORE_IF7:%.*]], label [[PRED_STORE_CONTINUE8:%.*]] | ||
; VF1UF4: pred.store.if4: | ||
; VF1UF4-NEXT: [[INDUCTION1:%.*]] = add i64 [[INDEX]], 1 | ||
; VF1UF4-NEXT: [[TMP7:%.*]] = getelementptr inbounds i64, ptr [[A]], i64 [[INDUCTION1]] | ||
; VF1UF4-NEXT: [[TMP8:%.*]] = load i64, ptr [[TMP7]], align 8 | ||
; VF1UF4-NEXT: store i64 [[TMP8]], ptr [[B]], align 8 | ||
; VF1UF4-NEXT: br label [[PRED_STORE_CONTINUE8]] | ||
; VF1UF4: pred.store.continue5: | ||
; VF1UF4-NEXT: [[TMP9:%.*]] = phi i64 [ poison, [[PRED_STORE_CONTINUE]] ], [ [[TMP8]], [[PRED_STORE_IF7]] ] | ||
; VF1UF4-NEXT: br i1 [[TMP2]], label [[PRED_STORE_IF9:%.*]], label [[PRED_STORE_CONTINUE10:%.*]] | ||
; VF1UF4: pred.store.if6: | ||
; VF1UF4-NEXT: [[INDUCTION2:%.*]] = add i64 [[INDEX]], 2 | ||
; VF1UF4-NEXT: [[TMP10:%.*]] = getelementptr inbounds i64, ptr [[A]], i64 [[INDUCTION2]] | ||
; VF1UF4-NEXT: [[TMP11:%.*]] = load i64, ptr [[TMP10]], align 8 | ||
; VF1UF4-NEXT: store i64 [[TMP11]], ptr [[B]], align 8 | ||
; VF1UF4-NEXT: br label [[PRED_STORE_CONTINUE10]] | ||
; VF1UF4: pred.store.continue7: | ||
; VF1UF4-NEXT: [[TMP12:%.*]] = phi i64 [ poison, [[PRED_STORE_CONTINUE8]] ], [ [[TMP11]], [[PRED_STORE_IF9]] ] | ||
; VF1UF4-NEXT: br i1 [[TMP3]], label [[PRED_STORE_IF11:%.*]], label [[PRED_STORE_CONTINUE12]] | ||
; VF1UF4: pred.store.if8: | ||
; VF1UF4-NEXT: [[INDUCTION3:%.*]] = add i64 [[INDEX]], 3 | ||
; VF1UF4-NEXT: [[TMP13:%.*]] = getelementptr inbounds i64, ptr [[A]], i64 [[INDUCTION3]] | ||
; VF1UF4-NEXT: [[TMP14:%.*]] = load i64, ptr [[TMP13]], align 8 | ||
; VF1UF4-NEXT: store i64 [[TMP14]], ptr [[B]], align 8 | ||
; VF1UF4-NEXT: br label [[PRED_STORE_CONTINUE12]] | ||
; VF1UF4: pred.store.continue9: | ||
; VF1UF4-NEXT: [[TMP15:%.*]] = phi i64 [ poison, [[PRED_STORE_CONTINUE10]] ], [ [[TMP14]], [[PRED_STORE_IF11]] ] | ||
; VF1UF4-NEXT: [[TMP10:%.*]] = phi i64 [ poison, [[VECTOR_BODY]] ], [ [[TMP9]], [[PRED_STORE_IF]] ] | ||
; VF1UF4-NEXT: br i1 [[TMP5]], label [[PRED_STORE_IF1:%.*]], label [[PRED_STORE_CONTINUE2:%.*]] | ||
; VF1UF4: pred.store.if1: | ||
; VF1UF4-NEXT: [[TMP11:%.*]] = getelementptr inbounds i64, ptr [[A]], i64 [[TMP1]] | ||
; VF1UF4-NEXT: [[TMP12:%.*]] = load i64, ptr [[TMP11]], align 8 | ||
; VF1UF4-NEXT: store i64 [[TMP12]], ptr [[B]], align 8 | ||
; VF1UF4-NEXT: br label [[PRED_STORE_CONTINUE2]] | ||
; VF1UF4: pred.store.continue2: | ||
; VF1UF4-NEXT: [[TMP13:%.*]] = phi i64 [ poison, [[PRED_STORE_CONTINUE]] ], [ [[TMP12]], [[PRED_STORE_IF1]] ] | ||
; VF1UF4-NEXT: br i1 [[TMP6]], label [[PRED_STORE_IF3:%.*]], label [[PRED_STORE_CONTINUE4:%.*]] | ||
; VF1UF4: pred.store.if3: | ||
; VF1UF4-NEXT: [[TMP14:%.*]] = getelementptr inbounds i64, ptr [[A]], i64 [[TMP2]] | ||
; VF1UF4-NEXT: [[TMP15:%.*]] = load i64, ptr [[TMP14]], align 8 | ||
; VF1UF4-NEXT: store i64 [[TMP15]], ptr [[B]], align 8 | ||
; VF1UF4-NEXT: br label [[PRED_STORE_CONTINUE4]] | ||
; VF1UF4: pred.store.continue4: | ||
; VF1UF4-NEXT: [[TMP16:%.*]] = phi i64 [ poison, [[PRED_STORE_CONTINUE2]] ], [ [[TMP15]], [[PRED_STORE_IF3]] ] | ||
; VF1UF4-NEXT: br i1 [[TMP7]], label [[PRED_STORE_IF5:%.*]], label [[PRED_STORE_CONTINUE6]] | ||
; VF1UF4: pred.store.if5: | ||
; VF1UF4-NEXT: [[TMP17:%.*]] = getelementptr inbounds i64, ptr [[A]], i64 [[TMP3]] | ||
; VF1UF4-NEXT: [[TMP18:%.*]] = load i64, ptr [[TMP17]], align 8 | ||
; VF1UF4-NEXT: store i64 [[TMP18]], ptr [[B]], align 8 | ||
; VF1UF4-NEXT: br label [[PRED_STORE_CONTINUE6]] | ||
; VF1UF4: pred.store.continue6: | ||
; VF1UF4-NEXT: [[TMP19:%.*]] = phi i64 [ poison, [[PRED_STORE_CONTINUE4]] ], [ [[TMP18]], [[PRED_STORE_IF5]] ] | ||
; VF1UF4-NEXT: [[INDEX_NEXT]] = add i64 [[INDEX]], 4 | ||
; VF1UF4-NEXT: [[TMP16:%.*]] = icmp eq i64 [[INDEX_NEXT]], 16 | ||
; VF1UF4-NEXT: br i1 [[TMP16]], label [[MIDDLE_BLOCK:%.*]], label [[VECTOR_BODY]], !llvm.loop [[LOOP3:![0-9]+]] | ||
; VF1UF4-NEXT: [[TMP20:%.*]] = icmp eq i64 [[INDEX_NEXT]], 16 | ||
; VF1UF4-NEXT: br i1 [[TMP20]], label [[MIDDLE_BLOCK:%.*]], label [[VECTOR_BODY]], !llvm.loop [[LOOP4:![0-9]+]] | ||
; VF1UF4: middle.block: | ||
; VF1UF4-NEXT: br i1 true, label [[FOR_END:%.*]], label [[SCALAR_PH]] | ||
; VF1UF4: scalar.ph: | ||
|
@@ -416,7 +408,7 @@ define void @load_variant(ptr noalias %a, ptr noalias %b) { | |
; VF1UF4-NEXT: store i64 [[V]], ptr [[B]], align 8 | ||
; VF1UF4-NEXT: [[IV_NEXT]] = add nuw nsw i64 [[IV]], 1 | ||
; VF1UF4-NEXT: [[EXITCOND_NOT:%.*]] = icmp eq i64 [[IV_NEXT]], 14 | ||
; VF1UF4-NEXT: br i1 [[EXITCOND_NOT]], label [[FOR_END]], label [[FOR_BODY]], !llvm.loop [[LOOP4:![0-9]+]] | ||
; VF1UF4-NEXT: br i1 [[EXITCOND_NOT]], label [[FOR_END]], label [[FOR_BODY]], !llvm.loop [[LOOP5:![0-9]+]] | ||
; VF1UF4: for.end: | ||
; VF1UF4-NEXT: ret void | ||
; | ||
|
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.
nit: leave the documentation line here in .h even when the implementation moves to .cpp?
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.
Added back, thanks!