Skip to content

Commit b9898e7

Browse files
committed
Revert "Reapply [InstCombine] Switch foldOpIntoPhi() to use InstSimplify"
This reverts commit e94619b.
1 parent 2253b06 commit b9898e7

File tree

8 files changed

+145
-76
lines changed

8 files changed

+145
-76
lines changed

llvm/lib/Transforms/InstCombine/InstructionCombining.cpp

Lines changed: 115 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -1155,6 +1155,22 @@ Instruction *InstCombinerImpl::FoldOpIntoSelect(Instruction &Op, SelectInst *SI,
11551155
return SelectInst::Create(SI->getCondition(), NewTV, NewFV, "", nullptr, SI);
11561156
}
11571157

1158+
static Value *foldOperationIntoPhiValue(BinaryOperator *I, Value *InV,
1159+
InstCombiner::BuilderTy &Builder) {
1160+
bool ConstIsRHS = isa<Constant>(I->getOperand(1));
1161+
Constant *C = cast<Constant>(I->getOperand(ConstIsRHS));
1162+
1163+
Value *Op0 = InV, *Op1 = C;
1164+
if (!ConstIsRHS)
1165+
std::swap(Op0, Op1);
1166+
1167+
Value *RI = Builder.CreateBinOp(I->getOpcode(), Op0, Op1, "phi.bo");
1168+
auto *FPInst = dyn_cast<Instruction>(RI);
1169+
if (FPInst && isa<FPMathOperator>(FPInst))
1170+
FPInst->copyFastMathFlags(I);
1171+
return RI;
1172+
}
1173+
11581174
Instruction *InstCombinerImpl::foldOpIntoPhi(Instruction &I, PHINode *PN) {
11591175
unsigned NumPHIValues = PN->getNumIncomingValues();
11601176
if (NumPHIValues == 0)
@@ -1173,68 +1189,48 @@ Instruction *InstCombinerImpl::foldOpIntoPhi(Instruction &I, PHINode *PN) {
11731189
// Otherwise, we can replace *all* users with the new PHI we form.
11741190
}
11751191

1176-
// Check to see whether the instruction can be folded into each phi operand.
1177-
// If there is one operand that does not fold, remember the BB it is in.
1178-
// If there is more than one or if *it* is a PHI, bail out.
1179-
SmallVector<Value *> NewPhiValues;
1180-
BasicBlock *NonSimplifiedBB = nullptr;
1181-
Value *NonSimplifiedInVal = nullptr;
1192+
// Check to see if all of the operands of the PHI are simple constants
1193+
// (constantint/constantfp/undef). If there is one non-constant value,
1194+
// remember the BB it is in. If there is more than one or if *it* is a PHI,
1195+
// bail out. We don't do arbitrary constant expressions here because moving
1196+
// their computation can be expensive without a cost model.
1197+
BasicBlock *NonConstBB = nullptr;
11821198
for (unsigned i = 0; i != NumPHIValues; ++i) {
11831199
Value *InVal = PN->getIncomingValue(i);
1184-
BasicBlock *InBB = PN->getIncomingBlock(i);
1185-
1186-
// NB: It is a precondition of this transform that the operands be
1187-
// phi translatable! This is usually trivially satisfied by limiting it
1188-
// to constant ops, and for selects we do a more sophisticated check.
1189-
SmallVector<Value *> Ops;
1190-
for (Value *Op : I.operands()) {
1191-
if (Op == PN)
1192-
Ops.push_back(InVal);
1193-
else
1194-
Ops.push_back(Op->DoPHITranslation(PN->getParent(), InBB));
1195-
}
1196-
1197-
// Don't consider the simplification successful if we get back a constant
1198-
// expression. That's just an instruction in hiding.
1199-
// Also reject the case where we simplify back to the phi node. We wouldn't
1200-
// be able to remove it in that case.
1201-
Value *NewVal = simplifyInstructionWithOperands(&I, Ops, SQ);
1202-
if (NewVal && NewVal != PN && !match(NewVal, m_ConstantExpr())) {
1203-
NewPhiValues.push_back(NewVal);
1200+
// For non-freeze, require constant operand
1201+
// For freeze, require non-undef, non-poison operand
1202+
if (!isa<FreezeInst>(I) && match(InVal, m_ImmConstant()))
1203+
continue;
1204+
if (isa<FreezeInst>(I) && isGuaranteedNotToBeUndefOrPoison(InVal))
12041205
continue;
1205-
}
12061206

12071207
if (isa<PHINode>(InVal)) return nullptr; // Itself a phi.
1208-
if (NonSimplifiedBB) return nullptr; // More than one non-simplified value.
1208+
if (NonConstBB) return nullptr; // More than one non-const value.
12091209

1210-
NonSimplifiedBB = InBB;
1211-
NonSimplifiedInVal = InVal;
1212-
NewPhiValues.push_back(nullptr);
1210+
NonConstBB = PN->getIncomingBlock(i);
12131211

12141212
// If the InVal is an invoke at the end of the pred block, then we can't
12151213
// insert a computation after it without breaking the edge.
12161214
if (isa<InvokeInst>(InVal))
1217-
if (cast<Instruction>(InVal)->getParent() == NonSimplifiedBB)
1215+
if (cast<Instruction>(InVal)->getParent() == NonConstBB)
12181216
return nullptr;
12191217

12201218
// If the incoming non-constant value is reachable from the phis block,
12211219
// we'll push the operation across a loop backedge. This could result in
12221220
// an infinite combine loop, and is generally non-profitable (especially
12231221
// if the operation was originally outside the loop).
1224-
if (isPotentiallyReachable(PN->getParent(), NonSimplifiedBB, nullptr, &DT,
1225-
LI))
1222+
if (isPotentiallyReachable(PN->getParent(), NonConstBB, nullptr, &DT, LI))
12261223
return nullptr;
12271224
}
12281225

1229-
// If there is exactly one non-simplified value, we can insert a copy of the
1226+
// If there is exactly one non-constant value, we can insert a copy of the
12301227
// operation in that block. However, if this is a critical edge, we would be
12311228
// inserting the computation on some other paths (e.g. inside a loop). Only
12321229
// do this if the pred block is unconditionally branching into the phi block.
12331230
// Also, make sure that the pred block is not dead code.
1234-
if (NonSimplifiedBB != nullptr) {
1235-
BranchInst *BI = dyn_cast<BranchInst>(NonSimplifiedBB->getTerminator());
1236-
if (!BI || !BI->isUnconditional() ||
1237-
!DT.isReachableFromEntry(NonSimplifiedBB))
1231+
if (NonConstBB != nullptr) {
1232+
BranchInst *BI = dyn_cast<BranchInst>(NonConstBB->getTerminator());
1233+
if (!BI || !BI->isUnconditional() || !DT.isReachableFromEntry(NonConstBB))
12381234
return nullptr;
12391235
}
12401236

@@ -1245,23 +1241,88 @@ Instruction *InstCombinerImpl::foldOpIntoPhi(Instruction &I, PHINode *PN) {
12451241

12461242
// If we are going to have to insert a new computation, do so right before the
12471243
// predecessor's terminator.
1248-
Instruction *Clone = nullptr;
1249-
if (NonSimplifiedBB) {
1250-
Clone = I.clone();
1251-
for (Use &U : Clone->operands()) {
1252-
if (U == PN)
1253-
U = NonSimplifiedInVal;
1244+
if (NonConstBB)
1245+
Builder.SetInsertPoint(NonConstBB->getTerminator());
1246+
1247+
// Next, add all of the operands to the PHI.
1248+
if (SelectInst *SI = dyn_cast<SelectInst>(&I)) {
1249+
// We only currently try to fold the condition of a select when it is a phi,
1250+
// not the true/false values.
1251+
Value *TrueV = SI->getTrueValue();
1252+
Value *FalseV = SI->getFalseValue();
1253+
BasicBlock *PhiTransBB = PN->getParent();
1254+
for (unsigned i = 0; i != NumPHIValues; ++i) {
1255+
BasicBlock *ThisBB = PN->getIncomingBlock(i);
1256+
Value *TrueVInPred = TrueV->DoPHITranslation(PhiTransBB, ThisBB);
1257+
Value *FalseVInPred = FalseV->DoPHITranslation(PhiTransBB, ThisBB);
1258+
Value *InV = nullptr;
1259+
// Beware of ConstantExpr: it may eventually evaluate to getNullValue,
1260+
// even if currently isNullValue gives false.
1261+
Constant *InC = dyn_cast<Constant>(PN->getIncomingValue(i));
1262+
// For vector constants, we cannot use isNullValue to fold into
1263+
// FalseVInPred versus TrueVInPred. When we have individual nonzero
1264+
// elements in the vector, we will incorrectly fold InC to
1265+
// `TrueVInPred`.
1266+
if (InC && isa<ConstantInt>(InC))
1267+
InV = InC->isNullValue() ? FalseVInPred : TrueVInPred;
1268+
else {
1269+
// Generate the select in the same block as PN's current incoming block.
1270+
// Note: ThisBB need not be the NonConstBB because vector constants
1271+
// which are constants by definition are handled here.
1272+
// FIXME: This can lead to an increase in IR generation because we might
1273+
// generate selects for vector constant phi operand, that could not be
1274+
// folded to TrueVInPred or FalseVInPred as done for ConstantInt. For
1275+
// non-vector phis, this transformation was always profitable because
1276+
// the select would be generated exactly once in the NonConstBB.
1277+
Builder.SetInsertPoint(ThisBB->getTerminator());
1278+
InV = Builder.CreateSelect(PN->getIncomingValue(i), TrueVInPred,
1279+
FalseVInPred, "phi.sel");
1280+
}
1281+
NewPN->addIncoming(InV, ThisBB);
1282+
}
1283+
} else if (CmpInst *CI = dyn_cast<CmpInst>(&I)) {
1284+
Constant *C = cast<Constant>(I.getOperand(1));
1285+
for (unsigned i = 0; i != NumPHIValues; ++i) {
1286+
Value *InV = nullptr;
1287+
if (auto *InC = dyn_cast<Constant>(PN->getIncomingValue(i)))
1288+
InV = ConstantExpr::getCompare(CI->getPredicate(), InC, C);
12541289
else
1255-
U = U->DoPHITranslation(PN->getParent(), NonSimplifiedBB);
1290+
InV = Builder.CreateCmp(CI->getPredicate(), PN->getIncomingValue(i),
1291+
C, "phi.cmp");
1292+
NewPN->addIncoming(InV, PN->getIncomingBlock(i));
1293+
}
1294+
} else if (auto *BO = dyn_cast<BinaryOperator>(&I)) {
1295+
for (unsigned i = 0; i != NumPHIValues; ++i) {
1296+
Value *InV = foldOperationIntoPhiValue(BO, PN->getIncomingValue(i),
1297+
Builder);
1298+
NewPN->addIncoming(InV, PN->getIncomingBlock(i));
1299+
}
1300+
} else if (isa<FreezeInst>(&I)) {
1301+
for (unsigned i = 0; i != NumPHIValues; ++i) {
1302+
Value *InV;
1303+
if (NonConstBB == PN->getIncomingBlock(i))
1304+
InV = Builder.CreateFreeze(PN->getIncomingValue(i), "phi.fr");
1305+
else
1306+
InV = PN->getIncomingValue(i);
1307+
NewPN->addIncoming(InV, PN->getIncomingBlock(i));
1308+
}
1309+
} else if (auto *EV = dyn_cast<ExtractValueInst>(&I)) {
1310+
for (unsigned i = 0; i != NumPHIValues; ++i)
1311+
NewPN->addIncoming(Builder.CreateExtractValue(PN->getIncomingValue(i),
1312+
EV->getIndices(), "phi.ev"),
1313+
PN->getIncomingBlock(i));
1314+
} else {
1315+
CastInst *CI = cast<CastInst>(&I);
1316+
Type *RetTy = CI->getType();
1317+
for (unsigned i = 0; i != NumPHIValues; ++i) {
1318+
Value *InV;
1319+
if (Constant *InC = dyn_cast<Constant>(PN->getIncomingValue(i)))
1320+
InV = ConstantExpr::getCast(CI->getOpcode(), InC, RetTy);
1321+
else
1322+
InV = Builder.CreateCast(CI->getOpcode(), PN->getIncomingValue(i),
1323+
I.getType(), "phi.cast");
1324+
NewPN->addIncoming(InV, PN->getIncomingBlock(i));
12561325
}
1257-
InsertNewInstBefore(Clone, *NonSimplifiedBB->getTerminator());
1258-
}
1259-
1260-
for (unsigned i = 0; i != NumPHIValues; ++i) {
1261-
if (NewPhiValues[i])
1262-
NewPN->addIncoming(NewPhiValues[i], PN->getIncomingBlock(i));
1263-
else
1264-
NewPN->addIncoming(Clone, PN->getIncomingBlock(i));
12651326
}
12661327

12671328
for (User *U : make_early_inc_range(PN->users())) {

llvm/test/Transforms/InstCombine/intptr1.ll

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,18 +57,19 @@ define void @test1_neg(ptr %a, ptr readnone %a_end, ptr %b.i64) {
5757
; CHECK-NEXT: br i1 [[CMP1]], label [[FOR_BODY_PREHEADER:%.*]], label [[FOR_END:%.*]]
5858
; CHECK: for.body.preheader:
5959
; CHECK-NEXT: [[B:%.*]] = load i64, ptr [[B_I64:%.*]], align 8
60-
; CHECK-NEXT: [[TMP0:%.*]] = inttoptr i64 [[B]] to ptr
6160
; CHECK-NEXT: br label [[FOR_BODY:%.*]]
6261
; CHECK: for.body:
6362
; CHECK-NEXT: [[A_ADDR_03:%.*]] = phi ptr [ [[INCDEC_PTR:%.*]], [[BB:%.*]] ], [ [[A]], [[FOR_BODY_PREHEADER]] ]
64-
; CHECK-NEXT: [[B_ADDR_02:%.*]] = phi ptr [ [[ADD:%.*]], [[BB]] ], [ [[TMP0]], [[FOR_BODY_PREHEADER]] ]
65-
; CHECK-NEXT: [[PTRCMP:%.*]] = icmp ult ptr [[B_ADDR_02]], [[A_END]]
63+
; CHECK-NEXT: [[B_ADDR_02:%.*]] = phi i64 [ [[ADD_INT:%.*]], [[BB]] ], [ [[B]], [[FOR_BODY_PREHEADER]] ]
64+
; CHECK-NEXT: [[TMP:%.*]] = inttoptr i64 [[B_ADDR_02]] to ptr
65+
; CHECK-NEXT: [[PTRCMP:%.*]] = icmp ult ptr [[TMP]], [[A_END]]
6666
; CHECK-NEXT: br i1 [[PTRCMP]], label [[FOR_END]], label [[BB]]
6767
; CHECK: bb:
6868
; CHECK-NEXT: [[I1:%.*]] = load float, ptr [[A]], align 4
6969
; CHECK-NEXT: [[MUL_I:%.*]] = fmul float [[I1]], 4.200000e+01
7070
; CHECK-NEXT: store float [[MUL_I]], ptr [[A_ADDR_03]], align 4
71-
; CHECK-NEXT: [[ADD]] = getelementptr inbounds float, ptr [[A]], i64 1
71+
; CHECK-NEXT: [[ADD:%.*]] = getelementptr inbounds float, ptr [[A]], i64 1
72+
; CHECK-NEXT: [[ADD_INT]] = ptrtoint ptr [[ADD]] to i64
7273
; CHECK-NEXT: [[INCDEC_PTR]] = getelementptr inbounds float, ptr [[A_ADDR_03]], i64 1
7374
; CHECK-NEXT: [[CMP:%.*]] = icmp ult ptr [[INCDEC_PTR]], [[A_END]]
7475
; CHECK-NEXT: br i1 [[CMP]], label [[FOR_BODY]], label [[FOR_END]]

llvm/test/Transforms/InstCombine/intptr4.ll

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,18 @@ define void @test(ptr %a, ptr readnone %a_end, i64 %b, ptr %bf) unnamed_addr {
88
; CHECK-NEXT: [[B_FLOAT:%.*]] = inttoptr i64 [[B:%.*]] to ptr
99
; CHECK-NEXT: br i1 [[CMP1]], label [[BB1:%.*]], label [[BB2:%.*]]
1010
; CHECK: bb1:
11-
; CHECK-NEXT: [[TMP0:%.*]] = inttoptr i64 [[B]] to ptr
1211
; CHECK-NEXT: br label [[FOR_BODY_PREHEADER:%.*]]
1312
; CHECK: bb2:
13+
; CHECK-NEXT: [[BFI:%.*]] = ptrtoint ptr [[BF:%.*]] to i64
1414
; CHECK-NEXT: br label [[FOR_BODY_PREHEADER]]
1515
; CHECK: for.body.preheader:
16-
; CHECK-NEXT: [[B_PHI:%.*]] = phi ptr [ [[TMP0]], [[BB1]] ], [ [[BF:%.*]], [[BB2]] ]
16+
; CHECK-NEXT: [[B_PHI:%.*]] = phi i64 [ [[B]], [[BB1]] ], [ [[BFI]], [[BB2]] ]
17+
; CHECK-NEXT: [[B_PHI_PTR:%.*]] = inttoptr i64 [[B_PHI]] to ptr
1718
; CHECK-NEXT: br label [[FOR_BODY:%.*]]
1819
; CHECK: for.body:
1920
; CHECK-NEXT: [[A_ADDR_03:%.*]] = phi ptr [ [[INCDEC_PTR:%.*]], [[FOR_BODY]] ], [ [[A]], [[FOR_BODY_PREHEADER]] ]
2021
; CHECK-NEXT: [[B_ADDR_FLOAT:%.*]] = phi ptr [ [[B_ADDR_FLOAT_INC:%.*]], [[FOR_BODY]] ], [ [[B_FLOAT]], [[FOR_BODY_PREHEADER]] ]
21-
; CHECK-NEXT: [[B_ADDR_I64_PTR:%.*]] = phi ptr [ [[B_ADDR_FLOAT_INC]], [[FOR_BODY]] ], [ [[B_PHI]], [[FOR_BODY_PREHEADER]] ]
22+
; CHECK-NEXT: [[B_ADDR_I64_PTR:%.*]] = phi ptr [ [[B_ADDR_FLOAT_INC]], [[FOR_BODY]] ], [ [[B_PHI_PTR]], [[FOR_BODY_PREHEADER]] ]
2223
; CHECK-NEXT: [[L:%.*]] = load float, ptr [[B_ADDR_FLOAT]], align 4
2324
; CHECK-NEXT: [[MUL_I:%.*]] = fmul float [[L]], 4.200000e+01
2425
; CHECK-NEXT: store float [[MUL_I]], ptr [[A_ADDR_03]], align 4

llvm/test/Transforms/InstCombine/intptr5.ll

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,20 @@ define void @test(ptr %a, ptr readnone %a_end, i64 %b, ptr %bf) unnamed_addr {
88
; CHECK-NEXT: [[B_FLOAT:%.*]] = inttoptr i64 [[B:%.*]] to ptr
99
; CHECK-NEXT: br i1 [[CMP1]], label [[BB1:%.*]], label [[BB2:%.*]]
1010
; CHECK: bb1:
11-
; CHECK-NEXT: [[TMP0:%.*]] = inttoptr i64 [[B]] to ptr
1211
; CHECK-NEXT: br label [[FOR_BODY_PREHEADER:%.*]]
1312
; CHECK: bb2:
13+
; CHECK-NEXT: [[BFI:%.*]] = ptrtoint ptr [[BF:%.*]] to i64
1414
; CHECK-NEXT: br label [[FOR_BODY_PREHEADER]]
1515
; CHECK: for.body.preheader:
16-
; CHECK-NEXT: [[B_PHI:%.*]] = phi ptr [ [[TMP0]], [[BB1]] ], [ [[BF:%.*]], [[BB2]] ]
16+
; CHECK-NEXT: [[B_PHI:%.*]] = phi i64 [ [[B]], [[BB1]] ], [ [[BFI]], [[BB2]] ]
17+
; CHECK-NEXT: [[B_PHI_PTR:%.*]] = inttoptr i64 [[B_PHI]] to ptr
1718
; CHECK-NEXT: switch i64 [[B]], label [[FOR_BODY:%.*]] [
1819
; CHECK-NEXT: i64 1, label [[FOR_BODY]]
1920
; CHECK-NEXT: ]
2021
; CHECK: for.body:
2122
; CHECK-NEXT: [[A_ADDR_03:%.*]] = phi ptr [ [[INCDEC_PTR:%.*]], [[FOR_BODY]] ], [ [[A]], [[FOR_BODY_PREHEADER]] ], [ [[A]], [[FOR_BODY_PREHEADER]] ]
2223
; CHECK-NEXT: [[B_ADDR_FLOAT:%.*]] = phi ptr [ [[B_ADDR_FLOAT_INC:%.*]], [[FOR_BODY]] ], [ [[B_FLOAT]], [[FOR_BODY_PREHEADER]] ], [ [[B_FLOAT]], [[FOR_BODY_PREHEADER]] ]
23-
; CHECK-NEXT: [[B_ADDR_I64_PTR:%.*]] = phi ptr [ [[B_ADDR_FLOAT_INC]], [[FOR_BODY]] ], [ [[B_PHI]], [[FOR_BODY_PREHEADER]] ], [ [[B_PHI]], [[FOR_BODY_PREHEADER]] ]
24+
; CHECK-NEXT: [[B_ADDR_I64_PTR:%.*]] = phi ptr [ [[B_ADDR_FLOAT_INC]], [[FOR_BODY]] ], [ [[B_PHI_PTR]], [[FOR_BODY_PREHEADER]] ], [ [[B_PHI_PTR]], [[FOR_BODY_PREHEADER]] ]
2425
; CHECK-NEXT: [[L:%.*]] = load float, ptr [[B_ADDR_FLOAT]], align 4
2526
; CHECK-NEXT: [[MUL_I:%.*]] = fmul float [[L]], 4.200000e+01
2627
; CHECK-NEXT: store float [[MUL_I]], ptr [[A_ADDR_03]], align 4

llvm/test/Transforms/InstCombine/intptr7.ll

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,16 +51,17 @@ define void @no_matching_phi(i64 %a, ptr %b, i1 %cond) {
5151
; CHECK-NEXT: [[ADDB:%.*]] = getelementptr inbounds float, ptr [[B:%.*]], i64 2
5252
; CHECK-NEXT: br i1 [[COND:%.*]], label [[B:%.*]], label [[A:%.*]]
5353
; CHECK: A:
54-
; CHECK-NEXT: [[TMP0:%.*]] = inttoptr i64 [[ADD_INT]] to ptr
5554
; CHECK-NEXT: br label [[C:%.*]]
5655
; CHECK: B:
56+
; CHECK-NEXT: [[ADDB_INT:%.*]] = ptrtoint ptr [[ADDB]] to i64
5757
; CHECK-NEXT: [[ADD:%.*]] = inttoptr i64 [[ADD_INT]] to ptr
5858
; CHECK-NEXT: store float 1.000000e+01, ptr [[ADD]], align 4
5959
; CHECK-NEXT: br label [[C]]
6060
; CHECK: C:
6161
; CHECK-NEXT: [[A_ADDR_03:%.*]] = phi ptr [ [[ADDB]], [[A]] ], [ [[ADD]], [[B]] ]
62-
; CHECK-NEXT: [[B_ADDR_02:%.*]] = phi ptr [ [[TMP0]], [[A]] ], [ [[ADDB]], [[B]] ]
63-
; CHECK-NEXT: [[I1:%.*]] = load float, ptr [[B_ADDR_02]], align 4
62+
; CHECK-NEXT: [[B_ADDR_02:%.*]] = phi i64 [ [[ADD_INT]], [[A]] ], [ [[ADDB_INT]], [[B]] ]
63+
; CHECK-NEXT: [[I0:%.*]] = inttoptr i64 [[B_ADDR_02]] to ptr
64+
; CHECK-NEXT: [[I1:%.*]] = load float, ptr [[I0]], align 4
6465
; CHECK-NEXT: [[MUL_I:%.*]] = fmul float [[I1]], 4.200000e+01
6566
; CHECK-NEXT: store float [[MUL_I]], ptr [[A_ADDR_03]], align 4
6667
; CHECK-NEXT: ret void

llvm/test/Transforms/InstCombine/phi-select-constant.ll

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,15 +77,17 @@ final:
7777
define <2 x i8> @vec3(i1 %cond1, i1 %cond2, <2 x i1> %x, <2 x i8> %y, <2 x i8> %z) {
7878
; CHECK-LABEL: @vec3(
7979
; CHECK-NEXT: entry:
80+
; CHECK-NEXT: [[PHI_SEL1:%.*]] = shufflevector <2 x i8> [[Z:%.*]], <2 x i8> [[Y:%.*]], <2 x i32> <i32 0, i32 3>
8081
; CHECK-NEXT: br i1 [[COND1:%.*]], label [[IF1:%.*]], label [[ELSE:%.*]]
8182
; CHECK: if1:
83+
; CHECK-NEXT: [[PHI_SEL2:%.*]] = shufflevector <2 x i8> [[Y]], <2 x i8> [[Z]], <2 x i32> <i32 0, i32 3>
8284
; CHECK-NEXT: br i1 [[COND2:%.*]], label [[IF2:%.*]], label [[ELSE]]
8385
; CHECK: if2:
86+
; CHECK-NEXT: [[PHI_SEL:%.*]] = select <2 x i1> [[X:%.*]], <2 x i8> [[Y]], <2 x i8> [[Z]]
8487
; CHECK-NEXT: br label [[ELSE]]
8588
; CHECK: else:
86-
; CHECK-NEXT: [[PHI:%.*]] = phi <2 x i1> [ [[X:%.*]], [[IF2]] ], [ <i1 false, i1 true>, [[ENTRY:%.*]] ], [ <i1 true, i1 false>, [[IF1]] ]
87-
; CHECK-NEXT: [[SEL:%.*]] = select <2 x i1> [[PHI]], <2 x i8> [[Y:%.*]], <2 x i8> [[Z:%.*]]
88-
; CHECK-NEXT: ret <2 x i8> [[SEL]]
89+
; CHECK-NEXT: [[PHI:%.*]] = phi <2 x i8> [ [[PHI_SEL]], [[IF2]] ], [ [[PHI_SEL1]], [[ENTRY:%.*]] ], [ [[PHI_SEL2]], [[IF1]] ]
90+
; CHECK-NEXT: ret <2 x i8> [[PHI]]
8991
;
9092
entry:
9193
br i1 %cond1, label %if1, label %else

llvm/test/Transforms/InstCombine/phi.ll

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -697,10 +697,10 @@ ret:
697697
define i32 @test23(i32 %A, i1 %pb, ptr %P) {
698698
; CHECK-LABEL: @test23(
699699
; CHECK-NEXT: BB0:
700-
; CHECK-NEXT: [[TMP0:%.*]] = add i32 [[A:%.*]], 19
700+
; CHECK-NEXT: [[PHI_BO:%.*]] = add i32 [[A:%.*]], 19
701701
; CHECK-NEXT: br label [[LOOP:%.*]]
702702
; CHECK: Loop:
703-
; CHECK-NEXT: [[B:%.*]] = phi i32 [ [[TMP0]], [[BB0:%.*]] ], [ 61, [[LOOP]] ]
703+
; CHECK-NEXT: [[B:%.*]] = phi i32 [ [[PHI_BO]], [[BB0:%.*]] ], [ 61, [[LOOP]] ]
704704
; CHECK-NEXT: store i32 [[B]], ptr [[P:%.*]], align 4
705705
; CHECK-NEXT: br i1 [[PB:%.*]], label [[LOOP]], label [[EXIT:%.*]]
706706
; CHECK: Exit:
@@ -1280,12 +1280,14 @@ define i1 @pr57488_icmp_of_phi(ptr %ptr.base, i64 %len) {
12801280
; CHECK-NEXT: [[LEN_ZERO:%.*]] = icmp eq i64 [[LEN]], 0
12811281
; CHECK-NEXT: br i1 [[LEN_ZERO]], label [[EXIT:%.*]], label [[LOOP:%.*]]
12821282
; CHECK: loop:
1283-
; CHECK-NEXT: [[ACCUM:%.*]] = phi i1 [ [[AND:%.*]], [[LOOP]] ], [ true, [[START:%.*]] ]
1283+
; CHECK-NEXT: [[ACCUM:%.*]] = phi i8 [ [[ACCUM_NEXT:%.*]], [[LOOP]] ], [ 1, [[START:%.*]] ]
12841284
; CHECK-NEXT: [[PTR:%.*]] = phi ptr [ [[PTR_NEXT:%.*]], [[LOOP]] ], [ [[PTR_BASE]], [[START]] ]
12851285
; CHECK-NEXT: [[PTR_NEXT]] = getelementptr inbounds i64, ptr [[PTR]], i64 1
1286+
; CHECK-NEXT: [[ACCUM_BOOL:%.*]] = icmp ne i8 [[ACCUM]], 0
12861287
; CHECK-NEXT: [[VAL:%.*]] = load i64, ptr [[PTR]], align 8
12871288
; CHECK-NEXT: [[VAL_ZERO:%.*]] = icmp eq i64 [[VAL]], 0
1288-
; CHECK-NEXT: [[AND]] = and i1 [[ACCUM]], [[VAL_ZERO]]
1289+
; CHECK-NEXT: [[AND:%.*]] = and i1 [[ACCUM_BOOL]], [[VAL_ZERO]]
1290+
; CHECK-NEXT: [[ACCUM_NEXT]] = zext i1 [[AND]] to i8
12891291
; CHECK-NEXT: [[EXIT_COND:%.*]] = icmp eq ptr [[PTR_NEXT]], [[END]]
12901292
; CHECK-NEXT: br i1 [[EXIT_COND]], label [[EXIT]], label [[LOOP]]
12911293
; CHECK: exit:

llvm/test/Transforms/InstCombine/recurrence.ll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
define i64 @test_or(i64 %a) {
55
; CHECK-LABEL: @test_or(
66
; CHECK-NEXT: entry:
7-
; CHECK-NEXT: [[TMP0:%.*]] = or i64 [[A:%.*]], 15
87
; CHECK-NEXT: br label [[LOOP:%.*]]
98
; CHECK: loop:
9+
; CHECK-NEXT: [[TMP0:%.*]] = or i64 [[A:%.*]], 15
1010
; CHECK-NEXT: tail call void @use(i64 [[TMP0]])
1111
; CHECK-NEXT: br label [[LOOP]]
1212
;
@@ -84,9 +84,9 @@ loop: ; preds = %loop, %entry
8484
define i64 @test_and(i64 %a) {
8585
; CHECK-LABEL: @test_and(
8686
; CHECK-NEXT: entry:
87-
; CHECK-NEXT: [[TMP0:%.*]] = and i64 [[A:%.*]], 15
8887
; CHECK-NEXT: br label [[LOOP:%.*]]
8988
; CHECK: loop:
89+
; CHECK-NEXT: [[TMP0:%.*]] = and i64 [[A:%.*]], 15
9090
; CHECK-NEXT: tail call void @use(i64 [[TMP0]])
9191
; CHECK-NEXT: br label [[LOOP]]
9292
;

0 commit comments

Comments
 (0)