51#define DEBUG_TYPE "instsimplify"
95 CmpInst *Cmp = dyn_cast<CmpInst>(V);
99 Value *CLHS = Cmp->getOperand(0), *CRHS = Cmp->getOperand(1);
100 if (CPred == Pred && CLHS ==
LHS && CRHS ==
RHS)
113 unsigned MaxRecurse,
Constant *TrueOrFalse) {
115 if (SimplifiedCmp ==
Cond) {
123 return SimplifiedCmp;
129 unsigned MaxRecurse) {
137 unsigned MaxRecurse) {
147 unsigned MaxRecurse) {
184 if (
I->getParent()->isEntryBlock() && !isa<InvokeInst>(
I) &&
197 auto *
B = dyn_cast<BinaryOperator>(V);
198 if (!
B ||
B->getOpcode() != OpcodeToExpand)
200 Value *B0 =
B->getOperand(0), *B1 =
B->getOperand(1);
211 if ((L == B0 && R == B1) ||
232 unsigned MaxRecurse) {
249 unsigned MaxRecurse) {
352 unsigned MaxRecurse) {
358 if (isa<SelectInst>(
LHS)) {
359 SI = cast<SelectInst>(
LHS);
361 assert(isa<SelectInst>(
RHS) &&
"No select instruction operand!");
362 SI = cast<SelectInst>(
RHS);
389 if (TV == SI->getTrueValue() && FV == SI->getFalseValue())
395 if ((FV && !TV) || (TV && !FV)) {
398 Instruction *Simplified = dyn_cast<Instruction>(FV ? FV : TV);
399 if (Simplified && Simplified->getOpcode() ==
unsigned(Opcode) &&
400 !Simplified->hasPoisonGeneratingFlags()) {
404 Value *UnsimplifiedBranch = FV ? SI->getTrueValue() : SI->getFalseValue();
405 Value *UnsimplifiedLHS = SI ==
LHS ? UnsimplifiedBranch :
LHS;
406 Value *UnsimplifiedRHS = SI ==
LHS ?
RHS : UnsimplifiedBranch;
407 if (Simplified->getOperand(0) == UnsimplifiedLHS &&
408 Simplified->getOperand(1) == UnsimplifiedRHS)
410 if (Simplified->isCommutative() &&
411 Simplified->getOperand(1) == UnsimplifiedLHS &&
412 Simplified->getOperand(0) == UnsimplifiedRHS)
436 if (!isa<SelectInst>(
LHS)) {
440 assert(isa<SelectInst>(
LHS) &&
"Not comparing with a select instruction!");
443 Value *TV = SI->getTrueValue();
444 Value *FV = SI->getFalseValue();
476 unsigned MaxRecurse) {
482 if (isa<PHINode>(
LHS)) {
483 PI = cast<PHINode>(
LHS);
488 assert(isa<PHINode>(
RHS) &&
"No PHI instruction operand!");
489 PI = cast<PHINode>(
RHS);
496 Value *CommonValue =
nullptr;
509 if (!V || (CommonValue && V != CommonValue))
528 if (!isa<PHINode>(
LHS)) {
532 assert(isa<PHINode>(
LHS) &&
"Not comparing with a phi instruction!");
540 Value *CommonValue =
nullptr;
554 if (!V || (CommonValue && V != CommonValue))
565 if (
auto *CLHS = dyn_cast<Constant>(Op0)) {
566 if (
auto *CRHS = dyn_cast<Constant>(Op1)) {
570 case Instruction::FAdd:
571 case Instruction::FSub:
572 case Instruction::FMul:
573 case Instruction::FDiv:
574 case Instruction::FRem:
575 if (Q.
CxtI !=
nullptr)
596 if (isa<PoisonValue>(Op1))
659 return ::simplifyAddInst(Op0, Op1, IsNSW, IsNUW, Query,
RecursionLimit);
672 bool AllowNonInbounds =
false) {
673 assert(V->getType()->isPtrOrPtrVectorTy());
676 V = V->stripAndAccumulateConstantOffsets(
DL,
Offset, AllowNonInbounds);
679 return Offset.sextOrTrunc(
DL.getIndexTypeSizeInBits(V->getType()));
699 if (
auto *VecTy = dyn_cast<VectorType>(
LHS->
getType()))
714 std::optional<bool> Imp =
719 case Instruction::Sub:
720 case Instruction::Xor:
721 case Instruction::URem:
722 case Instruction::SRem:
725 case Instruction::SDiv:
726 case Instruction::UDiv:
727 return ConstantInt::get(Ty, 1);
729 case Instruction::And:
730 case Instruction::Or:
749 if (isa<PoisonValue>(Op0) || isa<PoisonValue>(Op1))
785 Value *
X =
nullptr, *
Y =
nullptr, *Z = Op1;
843 if (
X->getType() ==
Y->getType())
888 return ::simplifySubInst(Op0, Op1, IsNSW, IsNUW, Q,
RecursionLimit);
899 if (isa<PoisonValue>(Op1))
923 return ConstantInt::getNullValue(Op0->
getType());
938 Instruction::Add, Q, MaxRecurse))
943 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
950 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
960 return ::simplifyMulInst(Op0, Op1, IsNSW, IsNUW, Q,
RecursionLimit);
969 Constant *
C = dyn_cast_or_null<Constant>(V);
970 return (
C &&
C->isAllOnesValue());
976 unsigned MaxRecurse,
bool IsSigned) {
993 Type *Ty =
X->getType();
999 Constant *PosDividendC = ConstantInt::get(Ty,
C->abs());
1000 Constant *NegDividendC = ConstantInt::get(Ty, -
C->abs());
1009 if (
C->isMinSignedValue())
1015 Constant *PosDivisorC = ConstantInt::get(Ty,
C->abs());
1016 Constant *NegDivisorC = ConstantInt::get(Ty, -
C->abs());
1036 return isICmpTrue(ICmpInst::ICMP_ULT,
X,
Y, Q, MaxRecurse);
1043 unsigned MaxRecurse) {
1044 bool IsDiv = (Opcode == Instruction::SDiv || Opcode == Instruction::UDiv);
1045 bool IsSigned = (Opcode == Instruction::SDiv || Opcode == Instruction::SRem);
1062 if (isa<PoisonValue>(Op0))
1102 auto *
Mul = cast<OverflowingBinaryOperator>(Op0);
1113 if (
isDivZero(Op0, Op1, Q, MaxRecurse, IsSigned))
1121 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
1127 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
1137 unsigned MaxRecurse) {
1160 (Opcode == Instruction::UDiv
1180 if ((Opcode == Instruction::SRem &&
1182 (Opcode == Instruction::URem &&
1190 if (Opcode == Instruction::SRem
1193 return C.srem(*C0).isZero();
1197 return C.urem(*C0).isZero();
1213 return simplifyDiv(Instruction::SDiv, Op0, Op1, IsExact, Q, MaxRecurse);
1225 return simplifyDiv(Instruction::UDiv, Op0, Op1, IsExact, Q, MaxRecurse);
1236 unsigned MaxRecurse) {
1241 return ConstantInt::getNullValue(Op0->
getType());
1245 return ConstantInt::getNullValue(Op0->
getType());
1247 return simplifyRem(Instruction::SRem, Op0, Op1, Q, MaxRecurse);
1257 unsigned MaxRecurse) {
1258 return simplifyRem(Instruction::URem, Op0, Op1, Q, MaxRecurse);
1267 Constant *
C = dyn_cast<Constant>(Amount);
1277 const APInt *AmountC;
1283 if (isa<ConstantVector>(
C) || isa<ConstantDataVector>(
C)) {
1284 for (
unsigned I = 0,
1285 E = cast<FixedVectorType>(
C->getType())->getNumElements();
1299 unsigned MaxRecurse) {
1304 if (isa<PoisonValue>(Op0))
1325 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1))
1331 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
1349 assert(Opcode == Instruction::Shl &&
"Expected shl for nsw instruction");
1368 Value *Op1,
bool IsExact,
1387 if (Op0Known.
One[0])
1399 simplifyShift(Instruction::Shl, Op0, Op1, IsNSW, Q, MaxRecurse))
1423 if (IsNSW && IsNUW &&
1432 return ::simplifyShlInst(Op0, Op1, IsNSW, IsNUW, Q,
RecursionLimit);
1454 const APInt *ShRAmt, *ShLAmt;
1457 *ShRAmt == *ShLAmt) {
1460 if (ShRAmt->
uge(EffWidthY))
1508 ICmpInst *UnsignedICmp,
bool IsAnd,
1522 if (
match(UnsignedICmp,
1524 ICmpInst::isUnsigned(UnsignedPred)) {
1526 if ((UnsignedPred == ICmpInst::ICMP_UGE ||
1527 UnsignedPred == ICmpInst::ICMP_ULE) &&
1528 EqPred == ICmpInst::ICMP_NE && !IsAnd)
1531 if ((UnsignedPred == ICmpInst::ICMP_ULT ||
1532 UnsignedPred == ICmpInst::ICMP_UGT) &&
1533 EqPred == ICmpInst::ICMP_EQ && IsAnd)
1538 if (EqPred == ICmpInst::ICMP_NE && (UnsignedPred == ICmpInst::ICMP_ULT ||
1539 UnsignedPred == ICmpInst::ICMP_UGT))
1540 return IsAnd ? UnsignedICmp : ZeroICmp;
1544 if (EqPred == ICmpInst::ICMP_EQ && (UnsignedPred == ICmpInst::ICMP_ULE ||
1545 UnsignedPred == ICmpInst::ICMP_UGE))
1546 return IsAnd ? ZeroICmp : UnsignedICmp;
1552 if (
match(UnsignedICmp,
1554 if (UnsignedPred == ICmpInst::ICMP_UGE && IsAnd &&
1556 return UnsignedICmp;
1557 if (UnsignedPred == ICmpInst::ICMP_ULT && !IsAnd &&
1559 return UnsignedICmp;
1564 ICmpInst::isUnsigned(UnsignedPred))
1566 else if (
match(UnsignedICmp,
1568 ICmpInst::isUnsigned(UnsignedPred))
1569 UnsignedPred = ICmpInst::getSwappedPredicate(UnsignedPred);
1575 if (UnsignedPred == ICmpInst::ICMP_UGT && EqPred == ICmpInst::ICMP_EQ &&
1577 return IsAnd ? ZeroICmp : UnsignedICmp;
1581 if (UnsignedPred == ICmpInst::ICMP_ULE && EqPred == ICmpInst::ICMP_NE &&
1583 return IsAnd ? UnsignedICmp : ZeroICmp;
1592 if (UnsignedPred == ICmpInst::ICMP_ULT && EqPred == ICmpInst::ICMP_NE)
1593 return IsAnd ? UnsignedICmp : ZeroICmp;
1597 if (UnsignedPred == ICmpInst::ICMP_UGE && EqPred == ICmpInst::ICMP_EQ)
1598 return IsAnd ? ZeroICmp : UnsignedICmp;
1601 if (UnsignedPred == ICmpInst::ICMP_ULT && EqPred == ICmpInst::ICMP_EQ &&
1606 if (UnsignedPred == ICmpInst::ICMP_UGE && EqPred == ICmpInst::ICMP_NE &&
1622 const APInt *C0, *C1;
1632 if (IsAnd && Range0.intersectWith(Range1).isEmptySet())
1637 if (!IsAnd && Range0.unionWith(Range1).isFullSet())
1645 if (Range0.contains(Range1))
1646 return IsAnd ? Cmp1 : Cmp0;
1647 if (Range1.contains(Range0))
1648 return IsAnd ? Cmp0 : Cmp1;
1657 const APInt *C0, *C1;
1665 auto *AddInst = cast<OverflowingBinaryOperator>(Op0->
getOperand(0));
1666 if (AddInst->getOperand(1) != Op1->
getOperand(1))
1673 const APInt Delta = *C1 - *C0;
1676 if (Pred0 == ICmpInst::ICMP_ULT && Pred1 == ICmpInst::ICMP_SGT)
1678 if (Pred0 == ICmpInst::ICMP_SLT && Pred1 == ICmpInst::ICMP_SGT && IsNSW)
1682 if (Pred0 == ICmpInst::ICMP_ULE && Pred1 == ICmpInst::ICMP_SGT)
1684 if (Pred0 == ICmpInst::ICMP_SLE && Pred1 == ICmpInst::ICMP_SGT && IsNSW)
1690 if (Pred0 == ICmpInst::ICMP_ULT && Pred1 == ICmpInst::ICMP_UGT)
1693 if (Pred0 == ICmpInst::ICMP_ULE && Pred1 == ICmpInst::ICMP_UGT)
1712 if (!IsAnd && Pred0 == ICmpInst::ICMP_EQ && Pred1 == ICmpInst::ICMP_NE)
1715 if (IsAnd && Pred0 == ICmpInst::ICMP_NE && Pred1 == ICmpInst::ICMP_EQ)
1748 const APInt *C0, *C1;
1756 auto *AddInst = cast<BinaryOperator>(Op0->
getOperand(0));
1757 if (AddInst->getOperand(1) != Op1->
getOperand(1))
1764 const APInt Delta = *C1 - *C0;
1767 if (Pred0 == ICmpInst::ICMP_UGE && Pred1 == ICmpInst::ICMP_SLE)
1769 if (Pred0 == ICmpInst::ICMP_SGE && Pred1 == ICmpInst::ICMP_SLE && IsNSW)
1773 if (Pred0 == ICmpInst::ICMP_UGT && Pred1 == ICmpInst::ICMP_SLE)
1775 if (Pred0 == ICmpInst::ICMP_SGT && Pred1 == ICmpInst::ICMP_SLE && IsNSW)
1781 if (Pred0 == ICmpInst::ICMP_UGE && Pred1 == ICmpInst::ICMP_ULE)
1784 if (Pred0 == ICmpInst::ICMP_UGT && Pred1 == ICmpInst::ICMP_ULE)
1816 Value *LHS0 =
LHS->getOperand(0), *LHS1 =
LHS->getOperand(1);
1817 Value *RHS0 =
RHS->getOperand(0), *RHS1 =
RHS->getOperand(1);
1823 if ((PredL == FCmpInst::FCMP_ORD || PredL == FCmpInst::FCMP_UNO) &&
1824 ((FCmpInst::isOrdered(PredR) && IsAnd) ||
1825 (FCmpInst::isUnordered(PredR) && !IsAnd))) {
1830 if ((
match(RHS0, AbsOrSelfLHS0) ||
match(RHS1, AbsOrSelfLHS0)) &&
1832 return FCmpInst::isOrdered(PredL) == FCmpInst::isOrdered(PredR)
1838 if ((PredR == FCmpInst::FCMP_ORD || PredR == FCmpInst::FCMP_UNO) &&
1839 ((FCmpInst::isOrdered(PredL) && IsAnd) ||
1840 (FCmpInst::isUnordered(PredL) && !IsAnd))) {
1845 if ((
match(LHS0, AbsOrSelfRHS0) ||
match(LHS1, AbsOrSelfRHS0)) &&
1847 return FCmpInst::isOrdered(PredL) == FCmpInst::isOrdered(PredR)
1856 Value *Op1,
bool IsAnd) {
1858 auto *Cast0 = dyn_cast<CastInst>(Op0);
1859 auto *Cast1 = dyn_cast<CastInst>(Op1);
1860 if (Cast0 && Cast1 && Cast0->getOpcode() == Cast1->getOpcode() &&
1861 Cast0->getSrcTy() == Cast1->getSrcTy()) {
1862 Op0 = Cast0->getOperand(0);
1863 Op1 = Cast1->getOperand(0);
1867 auto *ICmp0 = dyn_cast<ICmpInst>(Op0);
1868 auto *ICmp1 = dyn_cast<ICmpInst>(Op1);
1873 auto *FCmp0 = dyn_cast<FCmpInst>(Op0);
1874 auto *FCmp1 = dyn_cast<FCmpInst>(Op1);
1885 if (
auto *
C = dyn_cast<Constant>(V))
1894 bool AllowRefinement,
1896 unsigned MaxRecurse);
1900 unsigned MaxRecurse) {
1901 assert((Opcode == Instruction::And || Opcode == Instruction::Or) &&
1916 (Opcode == Instruction::And ? ICmpInst::ICMP_EQ : ICmpInst::ICMP_NE)) {
1917 if (Res == Absorber)
1927 if (Res == Absorber)
1937 nullptr, MaxRecurse))
1938 return Simplify(Res);
1941 nullptr, MaxRecurse))
1942 return Simplify(Res);
1952 assert(BinaryOperator::isBitwiseLogicOp(Opcode) &&
"Expected logic op");
1964 return Opcode == Instruction::And ? ConstantInt::getNullValue(Ty)
1965 : ConstantInt::getAllOnesValue(Ty);
1974 unsigned MaxRecurse) {
2008 const APInt *Shift1, *Shift2;
2013 Shift1->
uge(*Shift2))
2026 unsigned MaxRecurse) {
2031 if (isa<PoisonValue>(Op1))
2066 (~(*Mask)).lshr(*ShAmt).isZero())
2072 (~(*Mask)).shl(*ShAmt).isZero())
2077 const APInt *PowerC;
2086 return ConstantInt::getNullValue(Op1->
getType());
2099 Instruction::Or, Q, MaxRecurse))
2104 Instruction::Xor, Q, MaxRecurse))
2107 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1)) {
2125 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
2149 if (EffWidthY <= ShftCnt) {
2182 if (*Implied ==
true)
2185 if (*Implied ==
false)
2210 assert(
X->getType() ==
Y->getType() &&
"Expected same type for 'or' ops");
2211 Type *Ty =
X->getType();
2215 return ConstantInt::getAllOnesValue(Ty);
2219 return ConstantInt::getAllOnesValue(Ty);
2237 return ConstantInt::getAllOnesValue(Ty);
2261 return ConstantInt::getAllOnesValue(Ty);
2301 unsigned MaxRecurse) {
2306 if (isa<PoisonValue>(Op1))
2340 C->ule(
X->getType()->getScalarSizeInBits())) {
2341 return ConstantInt::getAllOnesValue(
X->getType());
2395 Instruction::And, Q, MaxRecurse))
2398 if (isa<SelectInst>(Op0) || isa<SelectInst>(Op1)) {
2416 const APInt *C1, *C2;
2442 if (isa<PHINode>(Op0) || isa<PHINode>(Op1))
2452 if (std::optional<bool> Implied =
2455 if (*Implied ==
false)
2458 if (*Implied ==
true)
2461 if (std::optional<bool> Implied =
2464 if (*Implied ==
false)
2467 if (*Implied ==
true)
2485 unsigned MaxRecurse) {
2490 if (isa<PoisonValue>(Op1))
2527 if (
Value *R = foldAndOrNot(Op0, Op1))
2529 if (
Value *R = foldAndOrNot(Op1, Op0))
2579 CmpInst *Cmp = dyn_cast<CmpInst>(SI->getCondition());
2582 Value *CmpLHS = Cmp->getOperand(0), *CmpRHS = Cmp->getOperand(1);
2583 if (Pred == Cmp->getPredicate() &&
LHS == CmpLHS &&
RHS == CmpRHS)
2586 LHS == CmpRHS &&
RHS == CmpLHS)
2599 if (
const AllocaInst *AI = dyn_cast<AllocaInst>(V))
2600 return AI->isStaticAlloca();
2601 if (
const GlobalValue *GV = dyn_cast<GlobalValue>(V))
2602 return (GV->hasLocalLinkage() || GV->hasHiddenVisibility() ||
2603 GV->hasProtectedVisibility() || GV->hasGlobalUnnamedAddr()) &&
2604 !GV->isThreadLocal();
2605 if (
const Argument *
A = dyn_cast<Argument>(V))
2606 return A->hasByValAttr();
2639 auto isByValArg = [](
const Value *V) {
2640 const Argument *
A = dyn_cast<Argument>(V);
2641 return A &&
A->hasByValAttr();
2647 return isa<AllocaInst>(V2) || isa<GlobalVariable>(V2) || isByValArg(V2);
2649 return isa<AllocaInst>(V1) || isa<GlobalVariable>(V1) || isByValArg(V1);
2651 return isa<AllocaInst>(V1) &&
2652 (isa<AllocaInst>(V2) || isa<GlobalVariable>(V2));
2721 unsigned IndexSize =
DL.getIndexTypeSizeInBits(
LHS->
getType());
2722 APInt LHSOffset(IndexSize, 0), RHSOffset(IndexSize, 0);
2742 Opts.
EvalMode = ObjectSizeOpts::Mode::Min;
2744 if (
auto *
I = dyn_cast<Instruction>(V))
2745 return I->getFunction();
2746 if (
auto *
A = dyn_cast<Argument>(V))
2747 return A->getParent();
2753 APInt Dist = LHSOffset - RHSOffset;
2781 if ((IsNAC(LHSUObjs) && IsAllocDisjoint(RHSUObjs)) ||
2782 (IsNAC(RHSUObjs) && IsAllocDisjoint(LHSUObjs)))
2802 bool Captured =
false;
2805 if (
auto *ICmp = dyn_cast<ICmpInst>(U->getUser())) {
2809 unsigned OtherIdx = 1 - U->getOperandNo();
2810 auto *LI = dyn_cast<LoadInst>(ICmp->getOperand(OtherIdx));
2811 if (LI && isa<GlobalVariable>(LI->getPointerOperand()))
2819 CustomCaptureTracker Tracker;
2821 if (!Tracker.Captured)
2843 auto ExtractNotLHS = [](
Value *V) ->
Value * {
2905 case ICmpInst::ICMP_UGE:
2909 case ICmpInst::ICMP_SGE:
2920 case ICmpInst::ICMP_ULE:
2924 case ICmpInst::ICMP_SLE:
2944 case ICmpInst::ICMP_ULT:
2946 case ICmpInst::ICMP_UGE:
2948 case ICmpInst::ICMP_EQ:
2949 case ICmpInst::ICMP_ULE:
2953 case ICmpInst::ICMP_NE:
2954 case ICmpInst::ICMP_UGT:
2958 case ICmpInst::ICMP_SLT: {
2966 case ICmpInst::ICMP_SLE: {
2974 case ICmpInst::ICMP_SGE: {
2982 case ICmpInst::ICMP_SGT: {
3035 *MulC != 0 &&
C->urem(*MulC) != 0) ||
3037 *MulC != 0 &&
C->srem(*MulC) != 0)))
3038 return ConstantInt::get(ITy, Pred == ICmpInst::ICMP_NE);
3048 if (!Res.
insert(V).second)
3055 auto *
I = dyn_cast<Instruction>(V);
3068 switch (
I->getOpcode()) {
3069 case Instruction::And:
3073 case Instruction::URem:
3074 case Instruction::UDiv:
3075 case Instruction::LShr:
3078 case Instruction::Call:
3090 if (Pred != ICmpInst::ICMP_UGE && Pred != ICmpInst::ICMP_ULT)
3099 for (
Value *GV : GreaterValues)
3102 Pred == ICmpInst::ICMP_UGE);
3108 unsigned MaxRecurse) {
3114 if (Pred == ICmpInst::ICMP_SLT || Pred == ICmpInst::ICMP_SGE) {
3129 case ICmpInst::ICMP_SGT:
3130 case ICmpInst::ICMP_SGE: {
3136 case ICmpInst::ICMP_EQ:
3137 case ICmpInst::ICMP_UGT:
3138 case ICmpInst::ICMP_UGE:
3140 case ICmpInst::ICMP_SLT:
3141 case ICmpInst::ICMP_SLE: {
3147 case ICmpInst::ICMP_NE:
3148 case ICmpInst::ICMP_ULT:
3149 case ICmpInst::ICMP_ULE:
3171 case ICmpInst::ICMP_EQ:
3172 case ICmpInst::ICMP_UGE:
3173 case ICmpInst::ICMP_UGT:
3175 case ICmpInst::ICMP_NE:
3176 case ICmpInst::ICMP_ULT:
3177 case ICmpInst::ICMP_ULE:
3192 const APInt *C1, *C2;
3199 if (Pred == ICmpInst::ICMP_UGT)
3201 if (Pred == ICmpInst::ICMP_ULE)
3239 const APInt *C1, *C2;
3253 unsigned MaxRecurse) {
3256 if (MaxRecurse && (LBO || RBO)) {
3258 Value *
A =
nullptr, *
B =
nullptr, *
C =
nullptr, *
D =
nullptr;
3260 bool NoLHSWrapProblem =
false, NoRHSWrapProblem =
false;
3261 if (LBO && LBO->
getOpcode() == Instruction::Add) {
3271 if (RBO && RBO->
getOpcode() == Instruction::Add) {
3283 if ((
A ==
RHS ||
B ==
RHS) && NoLHSWrapProblem)
3290 if ((
C ==
LHS ||
D ==
LHS) && NoRHSWrapProblem)
3293 C ==
LHS ?
D :
C, Q, MaxRecurse - 1))
3297 bool CanSimplify = (NoLHSWrapProblem && NoRHSWrapProblem) ||
3299 if (
A &&
C && (
A ==
C ||
A ==
D ||
B ==
C ||
B ==
D) && CanSimplify) {
3306 }
else if (
A ==
D) {
3310 }
else if (
B ==
C) {
3331 ICmpInst::getSwappedPredicate(Pred), RBO,
LHS, Q, MaxRecurse))
3338 if (
C->isStrictlyPositive()) {
3339 if (Pred == ICmpInst::ICMP_SLT || Pred == ICmpInst::ICMP_NE)
3341 if (Pred == ICmpInst::ICMP_SGE || Pred == ICmpInst::ICMP_EQ)
3344 if (
C->isNonNegative()) {
3345 if (Pred == ICmpInst::ICMP_SLE)
3347 if (Pred == ICmpInst::ICMP_SGT)
3370 if (Pred == ICmpInst::ICMP_EQ)
3372 if (Pred == ICmpInst::ICMP_NE)
3381 if (Pred == ICmpInst::ICMP_UGT)
3383 if (Pred == ICmpInst::ICMP_ULE)
3394 case Instruction::Shl: {
3397 if (!NUW || (ICmpInst::isSigned(Pred) && !NSW) ||
3410 case Instruction::And:
3411 case Instruction::Or: {
3412 const APInt *C1, *C2;
3418 Pred = ICmpInst::getSwappedPredicate(Pred);
3421 if (Pred == ICmpInst::ICMP_ULE)
3423 if (Pred == ICmpInst::ICMP_UGT)
3426 if (Pred == ICmpInst::ICMP_SLE)
3428 if (Pred == ICmpInst::ICMP_SGT)
3442 case Instruction::UDiv:
3443 case Instruction::LShr:
3444 if (ICmpInst::isSigned(Pred) || !Q.
IIQ.
isExact(LBO) ||
3451 case Instruction::SDiv:
3459 case Instruction::AShr:
3466 case Instruction::Shl: {
3471 if (!NSW && ICmpInst::isSigned(Pred))
3487 unsigned MaxRecurse) {
3643 Pred = ICmpInst::getSwappedPredicate(Pred);
3649 (
A ==
C ||
A ==
D ||
B ==
C ||
B ==
D)) {
3658 (
A ==
C ||
A ==
D ||
B ==
C ||
B ==
D)) {
3682 CallInst *Assume = cast<CallInst>(AssumeVH);
3695 auto *
II = dyn_cast<IntrinsicInst>(
LHS);
3699 switch (
II->getIntrinsicID()) {
3700 case Intrinsic::uadd_sat:
3704 if (Pred == ICmpInst::ICMP_UGE)
3706 if (Pred == ICmpInst::ICMP_ULT)
3710 case Intrinsic::usub_sat:
3714 if (Pred == ICmpInst::ICMP_ULE)
3716 if (Pred == ICmpInst::ICMP_UGT)
3732 if (
const Argument *
A = dyn_cast<Argument>(V))
3733 return A->getRange();
3734 else if (
const CallBase *CB = dyn_cast<CallBase>(V))
3735 return CB->getRange();
3737 return std::nullopt;
3754 assert(!isa<UndefValue>(
LHS) &&
"Unexpected icmp undef,%X");
3759 if (isa<PoisonValue>(
RHS))
3788 if (LhsCr->icmp(Pred, *RhsCr))
3796 if (isa<CastInst>(
LHS) && (isa<Constant>(
RHS) || isa<CastInst>(
RHS))) {
3804 if (MaxRecurse && isa<PtrToIntInst>(LI) &&
3813 if (RI->getOperand(0)->getType() == SrcTy)
3821 if (isa<ZExtInst>(
LHS)) {
3825 if (MaxRecurse && SrcTy == RI->getOperand(0)->getType())
3829 RI->getOperand(0), Q, MaxRecurse - 1))
3833 else if (
SExtInst *RI = dyn_cast<SExtInst>(
RHS)) {
3834 if (
SrcOp == RI->getOperand(0)) {
3835 if (Pred == ICmpInst::ICMP_ULE || Pred == ICmpInst::ICMP_SGE)
3837 if (Pred == ICmpInst::ICMP_UGT || Pred == ICmpInst::ICMP_SLT)
3851 assert(Trunc &&
"Constant-fold of ImmConstant should not fail");
3854 assert(RExt &&
"Constant-fold of ImmConstant should not fail");
3857 assert(AnyEq &&
"Constant-fold of ImmConstant should not fail");
3864 SrcOp, Trunc, Q, MaxRecurse - 1))
3874 case ICmpInst::ICMP_EQ:
3875 case ICmpInst::ICMP_UGT:
3876 case ICmpInst::ICMP_UGE:
3879 case ICmpInst::ICMP_NE:
3880 case ICmpInst::ICMP_ULT:
3881 case ICmpInst::ICMP_ULE:
3886 case ICmpInst::ICMP_SGT:
3887 case ICmpInst::ICMP_SGE:
3891 case ICmpInst::ICMP_SLT:
3892 case ICmpInst::ICMP_SLE:
3901 if (isa<SExtInst>(
LHS)) {
3905 if (MaxRecurse && SrcTy == RI->getOperand(0)->getType())
3912 else if (
ZExtInst *RI = dyn_cast<ZExtInst>(
RHS)) {
3913 if (
SrcOp == RI->getOperand(0)) {
3914 if (Pred == ICmpInst::ICMP_UGE || Pred == ICmpInst::ICMP_SLE)
3916 if (Pred == ICmpInst::ICMP_ULT || Pred == ICmpInst::ICMP_SGT)
3929 assert(Trunc &&
"Constant-fold of ImmConstant should not fail");
3932 assert(RExt &&
"Constant-fold of ImmConstant should not fail");
3935 assert(AnyEq &&
"Constant-fold of ImmConstant should not fail");
3950 case ICmpInst::ICMP_EQ:
3952 case ICmpInst::ICMP_NE:
3957 case ICmpInst::ICMP_SGT:
3958 case ICmpInst::ICMP_SGE:
3962 case ICmpInst::ICMP_SLT:
3963 case ICmpInst::ICMP_SLE:
3970 case ICmpInst::ICMP_UGT:
3971 case ICmpInst::ICMP_UGE:
3979 case ICmpInst::ICMP_ULT:
3980 case ICmpInst::ICMP_ULE:
4011 ICmpInst::getSwappedPredicate(Pred),
RHS,
LHS))
4017 ICmpInst::getSwappedPredicate(Pred),
RHS,
LHS))
4023 if (std::optional<bool> Res =
4032 if (
auto *CLHS = dyn_cast<PtrToIntOperator>(
LHS))
4033 if (
auto *CRHS = dyn_cast<PtrToIntOperator>(
RHS))
4034 if (CLHS->getPointerOperandType() == CRHS->getPointerOperandType() &&
4038 CRHS->getPointerOperand(), Q))
4043 if (isa<SelectInst>(
LHS) || isa<SelectInst>(
RHS))
4049 if (isa<PHINode>(
LHS) || isa<PHINode>(
RHS))
4065 unsigned MaxRecurse) {
4080 if (Pred == FCmpInst::FCMP_FALSE)
4082 if (Pred == FCmpInst::FCMP_TRUE)
4087 if (isa<PoisonValue>(
LHS) || isa<PoisonValue>(
RHS))
4110 if (Pred == FCmpInst::FCMP_ORD || Pred == FCmpInst::FCMP_UNO) {
4118 return ConstantInt::get(
RetTy, Pred == FCmpInst::FCMP_ORD);
4126 std::optional<KnownFPClass> FullKnownClassLHS;
4130 auto computeLHSClass = [=, &FullKnownClassLHS](
FPClassTest InterestedFlags =
4132 if (FullKnownClassLHS)
4133 return *FullKnownClassLHS;
4146 FullKnownClassLHS = computeLHSClass();
4147 if ((FullKnownClassLHS->KnownFPClasses & ClassTest) ==
fcNone)
4149 if ((FullKnownClassLHS->KnownFPClasses & ~ClassTest) ==
fcNone)
4164 if (
C->isNegative() && !
C->isNegZero()) {
4170 case FCmpInst::FCMP_UGE:
4171 case FCmpInst::FCMP_UGT:
4172 case FCmpInst::FCMP_UNE: {
4180 case FCmpInst::FCMP_OEQ:
4181 case FCmpInst::FCMP_OLE:
4182 case FCmpInst::FCMP_OLT: {
4201 cast<IntrinsicInst>(
LHS)->getIntrinsicID() == Intrinsic::maxnum;
4205 case FCmpInst::FCMP_OEQ:
4206 case FCmpInst::FCMP_UEQ:
4210 case FCmpInst::FCMP_ONE:
4211 case FCmpInst::FCMP_UNE:
4215 case FCmpInst::FCMP_OGE:
4216 case FCmpInst::FCMP_UGE:
4217 case FCmpInst::FCMP_OGT:
4218 case FCmpInst::FCMP_UGT:
4223 return ConstantInt::get(
RetTy, IsMaxNum);
4224 case FCmpInst::FCMP_OLE:
4225 case FCmpInst::FCMP_ULE:
4226 case FCmpInst::FCMP_OLT:
4227 case FCmpInst::FCMP_ULT:
4232 return ConstantInt::get(
RetTy, !IsMaxNum);
4244 case FCmpInst::FCMP_OGE:
4245 case FCmpInst::FCMP_ULT: {
4248 Interested |=
fcNan;
4259 case FCmpInst::FCMP_UGE:
4260 case FCmpInst::FCMP_OLT: {
4277 if (isa<SelectInst>(
LHS) || isa<SelectInst>(
RHS))
4283 if (isa<PHINode>(
LHS) || isa<PHINode>(
RHS))
4296 ArrayRef<std::pair<Value *, Value *>> Ops,
4298 bool AllowRefinement,
4300 unsigned MaxRecurse) {
4302 "If AllowRefinement=false then CanUseUndef=false");
4303 for (
const auto &OpAndRepOp : Ops) {
4305 if (isa<Constant>(OpAndRepOp.first))
4309 if (V == OpAndRepOp.first)
4310 return OpAndRepOp.second;
4316 auto *
I = dyn_cast<Instruction>(V);
4322 if (isa<PHINode>(
I))
4326 if (
match(
I, m_Intrinsic<Intrinsic::is_constant>()))
4330 if (isa<FreezeInst>(
I))
4333 for (
const auto &OpAndRepOp : Ops) {
4336 if (OpAndRepOp.first->getType()->isVectorTy() &&
4343 bool AnyReplaced =
false;
4344 for (
Value *InstOp :
I->operands()) {
4346 InstOp, Ops, Q, AllowRefinement, DropFlags, MaxRecurse)) {
4348 AnyReplaced = InstOp != NewInstOp;
4362 if (!AllowRefinement) {
4367 if (
auto *BO = dyn_cast<BinaryOperator>(
I)) {
4368 unsigned Opcode = BO->getOpcode();
4371 if (!BO->getType()->isFPOrFPVectorTy()) {
4380 if ((Opcode == Instruction::And || Opcode == Instruction::Or) &&
4381 NewOps[0] == NewOps[1]) {
4383 if (
auto *PDI = dyn_cast<PossiblyDisjointInst>(BO)) {
4384 if (PDI->isDisjoint()) {
4396 if ((Opcode == Instruction::Sub || Opcode == Instruction::Xor) &&
4397 NewOps[0] == NewOps[1] &&
4398 any_of(Ops, [=](
const auto &Rep) {
return NewOps[0] == Rep.second; }))
4409 if ((NewOps[0] == Absorber || NewOps[1] == Absorber) &&
4411 [=](
const auto &Rep) {
return impliesPoison(BO, Rep.first); }))
4415 if (isa<GetElementPtrInst>(
I)) {
4431 auto PreventSelfSimplify = [V](
Value *Simplified) {
4432 return Simplified != V ? Simplified :
nullptr;
4435 return PreventSelfSimplify(
4442 for (
Value *NewOp : NewOps) {
4443 if (
Constant *ConstOp = dyn_cast<Constant>(NewOp))
4458 if (!AllowRefinement) {
4461 if (
auto *
II = dyn_cast<IntrinsicInst>(
I);
4462 II &&
II->getIntrinsicID() == Intrinsic::abs) {
4463 if (!ConstOps[0]->isNotMinSignedValue())
4470 if (DropFlags && Res &&
I->hasPoisonGeneratingAnnotations())
4481 bool AllowRefinement,
4483 unsigned MaxRecurse) {
4485 DropFlags, MaxRecurse);
4490 bool AllowRefinement,
4494 if (!AllowRefinement)
4497 return ::simplifyWithOpReplaced(V,
Op, RepOp, Q, AllowRefinement, DropFlags,
4504 const APInt *
Y,
bool TrueWhenUnset) {
4511 return TrueWhenUnset ? FalseVal : TrueVal;
4517 return TrueWhenUnset ? FalseVal : TrueVal;
4519 if (
Y->isPowerOf2()) {
4525 if (TrueWhenUnset && cast<PossiblyDisjointInst>(TrueVal)->isDisjoint())
4527 return TrueWhenUnset ? TrueVal : FalseVal;
4535 if (!TrueWhenUnset && cast<PossiblyDisjointInst>(FalseVal)->isDisjoint())
4537 return TrueWhenUnset ? TrueVal : FalseVal;
4548 if (CmpRHS == TVal || CmpRHS == FVal) {
4550 Pred = ICmpInst::getSwappedPredicate(Pred);
4554 if (CmpLHS == FVal) {
4556 Pred = ICmpInst::getInversePredicate(Pred);
4561 Value *
X = CmpLHS, *
Y = CmpRHS;
4562 bool PeekedThroughSelectShuffle =
false;
4563 auto *Shuf = dyn_cast<ShuffleVectorInst>(FVal);
4564 if (Shuf && Shuf->isSelect()) {
4565 if (Shuf->getOperand(0) ==
Y)
4566 FVal = Shuf->getOperand(1);
4567 else if (Shuf->getOperand(1) ==
Y)
4568 FVal = Shuf->getOperand(0);
4571 PeekedThroughSelectShuffle =
true;
4575 auto *MMI = dyn_cast<MinMaxIntrinsic>(FVal);
4576 if (!MMI || TVal !=
X ||
4594 if (PeekedThroughSelectShuffle)
4622 Res->Pred == ICmpInst::ICMP_EQ);
4630 ArrayRef<std::pair<Value *, Value *>> Replacements,
Value *TrueVal,
4632 Value *SimplifiedFalseVal =
4635 nullptr, MaxRecurse);
4636 if (!SimplifiedFalseVal)
4637 SimplifiedFalseVal = FalseVal;
4639 Value *SimplifiedTrueVal =
4642 nullptr, MaxRecurse);
4643 if (!SimplifiedTrueVal)
4644 SimplifiedTrueVal = TrueVal;
4646 if (SimplifiedFalseVal == SimplifiedTrueVal)
4657 unsigned MaxRecurse) {
4659 Value *CmpLHS, *CmpRHS;
4667 if (Pred == ICmpInst::ICMP_NE) {
4668 Pred = ICmpInst::ICMP_EQ;
4675 if (TrueVal->getType()->isIntOrIntVectorTy()) {
4683 X->getType()->getScalarSizeInBits());
4689 if (Pred == ICmpInst::ICMP_EQ &&
match(CmpRHS,
m_Zero())) {
4703 if (
match(TrueVal, isFsh) && FalseVal ==
X && CmpLHS == ShAmt)
4716 if (
match(FalseVal, isRotate) && TrueVal ==
X && CmpLHS == ShAmt &&
4717 Pred == ICmpInst::ICMP_EQ)
4722 if (
match(TrueVal, m_Intrinsic<Intrinsic::abs>(
m_Specific(CmpLHS))) &&
4734 if (Pred == ICmpInst::ICMP_EQ) {
4738 FalseVal, Q, MaxRecurse))
4743 FalseVal, Q, MaxRecurse))
4753 {{
X, CmpRHS}, {
Y, CmpRHS}}, TrueVal, FalseVal, Q, MaxRecurse))
4762 {{
X, CmpRHS}, {
Y, CmpRHS}}, TrueVal, FalseVal, Q, MaxRecurse))
4774 unsigned MaxRecurse) {
4776 Value *CmpLHS, *CmpRHS;
4781 bool IsEquiv =
I->isEquivalence();
4782 if (
I->isEquivalence(
true)) {
4784 Pred = FCmpInst::getInversePredicate(Pred);
4800 if (CmpLHS ==
F && CmpRHS ==
T)
4803 if (CmpLHS !=
T || CmpRHS !=
F)
4809 if (Pred == FCmpInst::FCMP_OEQ)
4813 if (Pred == FCmpInst::FCMP_UNE)
4824 if (
auto *CondC = dyn_cast<Constant>(
Cond)) {
4825 if (
auto *TrueC = dyn_cast<Constant>(TrueVal))
4826 if (
auto *FalseC = dyn_cast<Constant>(FalseVal))
4831 if (isa<PoisonValue>(CondC))
4836 return isa<Constant>(FalseVal) ? FalseVal : TrueVal;
4848 assert(
Cond->getType()->isIntOrIntVectorTy(1) &&
4849 "Select must have bool or bool vector condition");
4850 assert(TrueVal->getType() == FalseVal->getType() &&
4851 "Select must have same types for true/false ops");
4853 if (
Cond->getType() == TrueVal->getType()) {
4916 if (TrueVal == FalseVal)
4919 if (
Cond == TrueVal) {
4927 if (
Cond == FalseVal) {
4941 if (isa<PoisonValue>(TrueVal) ||
4946 if (isa<PoisonValue>(FalseVal) ||
4952 if (isa<FixedVectorType>(TrueVal->getType()) &&
4956 cast<FixedVectorType>(TrueC->
getType())->getNumElements();
4958 for (
unsigned i = 0; i != NumElts; ++i) {
4962 if (!TEltC || !FEltC)
4969 else if (isa<PoisonValue>(TEltC) ||
4972 else if (isa<PoisonValue>(FEltC) ||
4978 if (NewC.
size() == NumElts)
4994 return *Imp ? TrueVal : FalseVal;
5011 cast<PointerType>(
Ptr->getType()->getScalarType())->getAddressSpace();
5014 if (Indices.
empty())
5024 if (
VectorType *VT = dyn_cast<VectorType>(
Op->getType())) {
5025 GEPTy = VectorType::get(GEPTy, VT->getElementCount());
5032 if (
Ptr->getType() == GEPTy &&
5038 if (isa<PoisonValue>(
Ptr) ||
5039 any_of(Indices, [](
const auto *V) {
return isa<PoisonValue>(V); }))
5046 bool IsScalableVec =
5048 return isa<ScalableVectorType>(V->getType());
5051 if (Indices.
size() == 1) {
5053 if (!IsScalableVec && Ty->
isSized()) {
5058 if (TyAllocSize == 0 &&
Ptr->getType() == GEPTy)
5063 if (Indices[0]->
getType()->getScalarSizeInBits() ==
5065 auto CanSimplify = [GEPTy, &
P,
Ptr]() ->
bool {
5066 return P->getType() == GEPTy &&
5070 if (TyAllocSize == 1 &&
5081 TyAllocSize == 1ULL <<
C && CanSimplify())
5097 [](
Value *
Idx) { return match(Idx, m_Zero()); })) {
5101 APInt BasePtrOffset(IdxWidth, 0);
5102 Value *StrippedBasePtr =
5103 Ptr->stripAndAccumulateInBoundsConstantOffsets(Q.
DL, BasePtrOffset);
5112 !BasePtrOffset.
isZero()) {
5113 auto *CI = ConstantInt::get(GEPTy->
getContext(), BasePtrOffset);
5119 !BasePtrOffset.
isOne()) {
5120 auto *CI = ConstantInt::get(GEPTy->
getContext(), BasePtrOffset - 1);
5127 if (!isa<Constant>(
Ptr) ||
5128 !
all_of(Indices, [](
Value *V) {
return isa<Constant>(V); }))
5150 if (
Constant *CAgg = dyn_cast<Constant>(Agg))
5151 if (
Constant *CVal = dyn_cast<Constant>(Val))
5156 if (isa<PoisonValue>(Val) ||
5162 if (EV->getAggregateOperand()->getType() == Agg->
getType() &&
5163 EV->getIndices() == Idxs) {
5166 if (isa<PoisonValue>(Agg) ||
5169 return EV->getAggregateOperand();
5172 if (Agg == EV->getAggregateOperand())
5182 return ::simplifyInsertValueInst(Agg, Val, Idxs, Q,
RecursionLimit);
5188 auto *VecC = dyn_cast<Constant>(Vec);
5189 auto *ValC = dyn_cast<Constant>(Val);
5190 auto *IdxC = dyn_cast<Constant>(
Idx);
5191 if (VecC && ValC && IdxC)
5195 if (
auto *CI = dyn_cast<ConstantInt>(
Idx)) {
5196 if (isa<FixedVectorType>(Vec->
getType()) &&
5197 CI->uge(cast<FixedVectorType>(Vec->
getType())->getNumElements()))
5207 if (isa<PoisonValue>(Val) ||
5212 if (VecC && ValC && VecC->getSplatValue() == ValC)
5228 if (
auto *CAgg = dyn_cast<Constant>(Agg))
5232 unsigned NumIdxs = Idxs.
size();
5233 for (
auto *IVI = dyn_cast<InsertValueInst>(Agg); IVI !=
nullptr;
5234 IVI = dyn_cast<InsertValueInst>(IVI->getAggregateOperand())) {
5236 unsigned NumInsertValueIdxs = InsertValueIdxs.
size();
5237 unsigned NumCommonIdxs = std::min(NumInsertValueIdxs, NumIdxs);
5238 if (InsertValueIdxs.
slice(0, NumCommonIdxs) ==
5239 Idxs.
slice(0, NumCommonIdxs)) {
5240 if (NumIdxs == NumInsertValueIdxs)
5241 return IVI->getInsertedValueOperand();
5258 auto *VecVTy = cast<VectorType>(Vec->
getType());
5259 if (
auto *CVec = dyn_cast<Constant>(Vec)) {
5260 if (
auto *CIdx = dyn_cast<Constant>(
Idx))
5274 if (
auto *IdxC = dyn_cast<ConstantInt>(
Idx)) {
5276 unsigned MinNumElts = VecVTy->getElementCount().getKnownMinValue();
5277 if (isa<FixedVectorType>(VecVTy) && IdxC->getValue().uge(MinNumElts))
5280 if (IdxC->getValue().ult(MinNumElts))
5290 auto *IE = dyn_cast<InsertElementInst>(Vec);
5291 if (IE && IE->getOperand(2) ==
Idx)
5292 return IE->getOperand(1);
5315 Value *CommonValue =
nullptr;
5316 bool HasPoisonInput =
false;
5317 bool HasUndefInput =
false;
5323 HasPoisonInput =
true;
5328 HasUndefInput =
true;
5331 if (CommonValue &&
Incoming != CommonValue)
5342 if (HasPoisonInput || HasUndefInput) {
5350 if (HasUndefInput &&
5361 if (
auto *
C = dyn_cast<Constant>(
Op))
5364 if (
auto *CI = dyn_cast<CastInst>(
Op)) {
5365 auto *Src = CI->getOperand(0);
5366 Type *SrcTy = Src->getType();
5367 Type *MidTy = CI->getType();
5369 if (Src->getType() == Ty) {
5379 SrcIntPtrTy, MidIntPtrTy,
5380 DstIntPtrTy) == Instruction::BitCast)
5386 if (CastOpc == Instruction::BitCast)
5387 if (
Op->getType() == Ty)
5392 if (CastOpc == Instruction::PtrToInt &&
5410 int MaskVal,
Value *RootVec,
5411 unsigned MaxRecurse) {
5421 int InVecNumElts = cast<FixedVectorType>(Op0->
getType())->getNumElements();
5422 int RootElt = MaskVal;
5423 Value *SourceOp = Op0;
5424 if (MaskVal >= InVecNumElts) {
5425 RootElt = MaskVal - InVecNumElts;
5431 if (
auto *SourceShuf = dyn_cast<ShuffleVectorInst>(SourceOp)) {
5433 DestElt, SourceShuf->getOperand(0), SourceShuf->getOperand(1),
5434 SourceShuf->getMaskValue(RootElt), RootVec, MaxRecurse);
5443 if (RootVec != SourceOp)
5448 if (RootElt != DestElt)
5457 unsigned MaxRecurse) {
5461 auto *InVecTy = cast<VectorType>(Op0->
getType());
5462 unsigned MaskNumElts = Mask.size();
5463 ElementCount InVecEltCount = InVecTy->getElementCount();
5468 Indices.
assign(Mask.begin(), Mask.end());
5473 bool MaskSelects0 =
false, MaskSelects1 =
false;
5475 for (
unsigned i = 0; i != MaskNumElts; ++i) {
5476 if (Indices[i] == -1)
5478 if ((
unsigned)Indices[i] < InVecNumElts)
5479 MaskSelects0 =
true;
5481 MaskSelects1 =
true;
5489 auto *Op0Const = dyn_cast<Constant>(Op0);
5490 auto *Op1Const = dyn_cast<Constant>(Op1);
5495 if (Op0Const && Op1Const)
5501 if (!Scalable && Op0Const && !Op1Const) {
5519 if (
all_of(Indices, [InsertIndex](
int MaskElt) {
5520 return MaskElt == InsertIndex || MaskElt == -1;
5522 assert(isa<UndefValue>(Op1) &&
"Expected undef operand 1 for splat");
5526 for (
unsigned i = 0; i != MaskNumElts; ++i)
5527 if (Indices[i] == -1)
5535 if (
auto *OpShuf = dyn_cast<ShuffleVectorInst>(Op0))
5555 Value *RootVec =
nullptr;
5556 for (
unsigned i = 0; i != MaskNumElts; ++i) {
5578 if (
auto *
C = dyn_cast<Constant>(
Op))
5606 Type *Ty = In->getType();
5607 if (
auto *VecTy = dyn_cast<FixedVectorType>(Ty)) {
5608 unsigned NumElts = VecTy->getNumElements();
5610 for (
unsigned i = 0; i != NumElts; ++i) {
5611 Constant *EltC = In->getAggregateElement(i);
5614 if (EltC && isa<PoisonValue>(EltC))
5616 else if (EltC && EltC->
isNaN())
5617 NewC[i] = ConstantFP::get(
5618 EltC->
getType(), cast<ConstantFP>(EltC)->getValue().makeQuiet());
5632 if (isa<ScalableVectorType>(Ty)) {
5633 auto *
Splat = In->getSplatValue();
5635 "Found a scalable-vector NaN but not a splat");
5641 return ConstantFP::get(Ty, cast<ConstantFP>(In)->getValue().makeQuiet());
5656 for (
Value *V : Ops) {
5664 if (FMF.
noNaNs() && (IsNan || IsUndef))
5666 if (FMF.
noInfs() && (IsInf || IsUndef))
5692 RoundingMode Rounding = RoundingMode::NearestTiesToEven) {
5758 RoundingMode Rounding = RoundingMode::NearestTiesToEven) {
5873 RoundingMode Rounding = RoundingMode::NearestTiesToEven) {
5879 return simplifyFMAFMul(Op0, Op1, FMF, Q, MaxRecurse, ExBehavior, Rounding);
5886 return ::simplifyFAddInst(Op0, Op1, FMF, Q,
RecursionLimit, ExBehavior,
5894 return ::simplifyFSubInst(Op0, Op1, FMF, Q,
RecursionLimit, ExBehavior,
5902 return ::simplifyFMulInst(Op0, Op1, FMF, Q,
RecursionLimit, ExBehavior,
5910 return ::simplifyFMAFMul(Op0, Op1, FMF, Q,
RecursionLimit, ExBehavior,
5918 RoundingMode Rounding = RoundingMode::NearestTiesToEven) {
5943 return ConstantFP::get(Op0->
getType(), 1.0);
5955 return ConstantFP::get(Op0->
getType(), -1.0);
5969 return ::simplifyFDivInst(Op0, Op1, FMF, Q,
RecursionLimit, ExBehavior,
5977 RoundingMode Rounding = RoundingMode::NearestTiesToEven) {
6007 return ::simplifyFRemInst(Op0, Op1, FMF, Q,
RecursionLimit, ExBehavior,
6016 unsigned MaxRecurse) {
6018 case Instruction::FNeg:
6030 unsigned MaxRecurse) {
6032 case Instruction::FNeg:
6053 case Instruction::Add:
6056 case Instruction::Sub:
6059 case Instruction::Mul:
6062 case Instruction::SDiv:
6064 case Instruction::UDiv:
6066 case Instruction::SRem:
6068 case Instruction::URem:
6070 case Instruction::Shl:
6073 case Instruction::LShr:
6075 case Instruction::AShr:
6077 case Instruction::And:
6079 case Instruction::Or:
6081 case Instruction::Xor:
6083 case Instruction::FAdd:
6085 case Instruction::FSub:
6087 case Instruction::FMul:
6089 case Instruction::FDiv:
6091 case Instruction::FRem:
6103 unsigned MaxRecurse) {
6105 case Instruction::FAdd:
6107 case Instruction::FSub:
6109 case Instruction::FMul:
6111 case Instruction::FDiv:
6147 case Intrinsic::fabs:
6148 case Intrinsic::floor:
6149 case Intrinsic::ceil:
6150 case Intrinsic::trunc:
6151 case Intrinsic::rint:
6152 case Intrinsic::nearbyint:
6153 case Intrinsic::round:
6154 case Intrinsic::roundeven:
6155 case Intrinsic::canonicalize:
6156 case Intrinsic::arithmetic_fence:
6168 case Intrinsic::floor:
6169 case Intrinsic::ceil:
6170 case Intrinsic::trunc:
6171 case Intrinsic::rint:
6172 case Intrinsic::nearbyint:
6173 case Intrinsic::round:
6174 case Intrinsic::roundeven:
6188 auto *OffsetConstInt = dyn_cast<ConstantInt>(
Offset);
6189 if (!OffsetConstInt || OffsetConstInt->getBitWidth() > 64)
6193 DL.getIndexTypeSizeInBits(
Ptr->getType()));
6194 if (OffsetInt.
srem(4) != 0)
6202 auto *LoadedCE = dyn_cast<ConstantExpr>(Loaded);
6206 if (LoadedCE->getOpcode() == Instruction::Trunc) {
6207 LoadedCE = dyn_cast<ConstantExpr>(LoadedCE->getOperand(0));
6212 if (LoadedCE->getOpcode() != Instruction::Sub)
6215 auto *LoadedLHS = dyn_cast<ConstantExpr>(LoadedCE->getOperand(0));
6216 if (!LoadedLHS || LoadedLHS->getOpcode() != Instruction::PtrToInt)
6218 auto *LoadedLHSPtr = LoadedLHS->getOperand(0);
6222 APInt LoadedRHSOffset;
6225 PtrSym != LoadedRHSSym || PtrOffset != LoadedRHSOffset)
6228 return LoadedLHSPtr;
6236 if (isa<PoisonValue>(Op0) || isa<PoisonValue>(Op1))
6259 if (
C && (
C->isZero() ||
C->isInfinity()))
6268 if (
C &&
C->isNaN())
6269 return ConstantFP::get(Op0->
getType(),
C->makeQuiet());
6287 if (
auto *
II = dyn_cast<IntrinsicInst>(Op0))
6288 if (
II->getIntrinsicID() == IID)
6297 auto *
II = dyn_cast<IntrinsicInst>(Op0);
6305 case Intrinsic::fabs:
6309 case Intrinsic::bswap:
6314 case Intrinsic::bitreverse:
6319 case Intrinsic::ctpop: {
6323 return ConstantInt::get(Op0->
getType(), 1);
6332 case Intrinsic::exp:
6334 if (Call->hasAllowReassoc() &&
6338 case Intrinsic::exp2:
6340 if (Call->hasAllowReassoc() &&
6344 case Intrinsic::exp10:
6346 if (Call->hasAllowReassoc() &&
6350 case Intrinsic::log:
6352 if (Call->hasAllowReassoc() &&
6356 case Intrinsic::log2:
6358 if (Call->hasAllowReassoc() &&
6364 case Intrinsic::log10:
6367 if (Call->hasAllowReassoc() &&
6373 case Intrinsic::vector_reverse:
6381 case Intrinsic::frexp: {
6405 auto *MM0 = dyn_cast<IntrinsicInst>(Op0);
6410 if (Op1 ==
X || Op1 ==
Y ||
6427 assert((IID == Intrinsic::maxnum || IID == Intrinsic::minnum ||
6428 IID == Intrinsic::maximum || IID == Intrinsic::minimum) &&
6429 "Unsupported intrinsic");
6431 auto *
M0 = dyn_cast<IntrinsicInst>(Op0);
6435 if (!
M0 ||
M0->getIntrinsicID() != IID)
6437 Value *X0 =
M0->getOperand(0);
6438 Value *Y0 =
M0->getOperand(1);
6445 if (X0 == Op1 || Y0 == Op1)
6448 auto *
M1 = dyn_cast<IntrinsicInst>(Op1);
6451 Value *X1 =
M1->getOperand(0);
6452 Value *Y1 =
M1->getOperand(1);
6460 if ((X0 == X1 && Y0 == Y1) || (X0 == Y1 && Y0 == X1))
6471 unsigned BitWidth = ReturnType->getScalarSizeInBits();
6473 case Intrinsic::abs:
6481 case Intrinsic::cttz: {
6487 case Intrinsic::ctlz: {
6495 case Intrinsic::ptrmask: {
6496 if (isa<PoisonValue>(Op0) || isa<PoisonValue>(Op1))
6506 "Invalid mask width");
6523 APInt IrrelevantPtrBits =
6526 Instruction::Or,
C, ConstantInt::get(
C->getType(), IrrelevantPtrBits),
6528 if (
C !=
nullptr &&
C->isAllOnesValue())
6533 case Intrinsic::smax:
6534 case Intrinsic::smin:
6535 case Intrinsic::umax:
6536 case Intrinsic::umin: {
6547 return ConstantInt::get(
6555 return ConstantInt::get(ReturnType, *
C);
6566 auto *MinMax0 = dyn_cast<IntrinsicInst>(Op0);
6567 if (MinMax0 && MinMax0->getIntrinsicID() == IID) {
6569 Value *M00 = MinMax0->getOperand(0), *M01 = MinMax0->getOperand(1);
6570 const APInt *InnerC;
6573 ICmpInst::getNonStrictPredicate(
6593 case Intrinsic::scmp:
6594 case Intrinsic::ucmp: {
6601 IID == Intrinsic::scmp ? ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT;
6603 return ConstantInt::get(ReturnType, 1);
6606 IID == Intrinsic::scmp ? ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT;
6612 case Intrinsic::usub_with_overflow:
6613 case Intrinsic::ssub_with_overflow:
6620 case Intrinsic::uadd_with_overflow:
6621 case Intrinsic::sadd_with_overflow:
6626 cast<StructType>(ReturnType),
6631 case Intrinsic::umul_with_overflow:
6632 case Intrinsic::smul_with_overflow:
6642 case Intrinsic::uadd_sat:
6648 case Intrinsic::sadd_sat:
6663 case Intrinsic::usub_sat:
6668 case Intrinsic::ssub_sat:
6676 case Intrinsic::load_relative:
6677 if (
auto *C0 = dyn_cast<Constant>(Op0))
6678 if (
auto *C1 = dyn_cast<Constant>(Op1))
6681 case Intrinsic::powi:
6682 if (
auto *Power = dyn_cast<ConstantInt>(Op1)) {
6684 if (Power->isZero())
6685 return ConstantFP::get(Op0->
getType(), 1.0);
6691 case Intrinsic::ldexp:
6693 case Intrinsic::copysign:
6703 case Intrinsic::is_fpclass: {
6704 if (isa<PoisonValue>(Op0))
6707 uint64_t Mask = cast<ConstantInt>(Op1)->getZExtValue();
6710 return ConstantInt::get(ReturnType,
true);
6712 return ConstantInt::get(ReturnType,
false);
6717 case Intrinsic::maxnum:
6718 case Intrinsic::minnum:
6719 case Intrinsic::maximum:
6720 case Intrinsic::minimum: {
6726 if (isa<Constant>(Op0))
6733 bool PropagateNaN = IID == Intrinsic::minimum || IID == Intrinsic::maximum;
6734 bool IsMin = IID == Intrinsic::minimum || IID == Intrinsic::minnum;
6741 return PropagateNaN ?
propagateNaN(cast<Constant>(Op1)) : Op0;
6747 (
C->isInfinity() || (Call && Call->hasNoInfs() &&
C->isLargest()))) {
6752 if (
C->isNegative() == IsMin &&
6753 (!PropagateNaN || (Call && Call->hasNoNaNs())))
6754 return ConstantFP::get(ReturnType, *
C);
6760 if (
C->isNegative() != IsMin &&
6761 (PropagateNaN || (Call && Call->hasNoNaNs())))
6774 case Intrinsic::vector_extract: {
6776 unsigned IdxN = cast<ConstantInt>(Op1)->getZExtValue();
6780 IdxN == 0 &&
X->getType() == ReturnType)
6796 assert(Call->arg_size() == Args.size());
6797 unsigned NumOperands = Args.size();
6805 case Intrinsic::vscale: {
6809 return ConstantInt::get(
RetTy,
C->getZExtValue());
6817 if (NumOperands == 1)
6820 if (NumOperands == 2)
6826 case Intrinsic::masked_load:
6827 case Intrinsic::masked_gather: {
6828 Value *MaskArg = Args[2];
6829 Value *PassthruArg = Args[3];
6835 case Intrinsic::fshl:
6836 case Intrinsic::fshr: {
6837 Value *Op0 = Args[0], *Op1 = Args[1], *ShAmtArg = Args[2];
6845 return Args[IID == Intrinsic::fshl ? 0 : 1];
6847 const APInt *ShAmtC;
6852 return Args[IID == Intrinsic::fshl ? 0 : 1];
6857 return ConstantInt::getNullValue(
F->getReturnType());
6861 return ConstantInt::getAllOnesValue(
F->getReturnType());
6865 case Intrinsic::experimental_constrained_fma: {
6866 auto *FPI = cast<ConstrainedFPIntrinsic>(Call);
6868 *FPI->getRoundingMode()))
6872 case Intrinsic::fma:
6873 case Intrinsic::fmuladd: {
6875 RoundingMode::NearestTiesToEven))
6879 case Intrinsic::smul_fix:
6880 case Intrinsic::smul_fix_sat: {
6881 Value *Op0 = Args[0];
6882 Value *Op1 = Args[1];
6883 Value *Op2 = Args[2];
6884 Type *ReturnType =
F->getReturnType();
6889 if (isa<Constant>(Op0))
6903 cast<ConstantInt>(Op2)->getZExtValue());
6909 case Intrinsic::vector_insert: {
6910 Value *Vec = Args[0];
6911 Value *SubVec = Args[1];
6913 Type *ReturnType =
F->getReturnType();
6917 unsigned IdxN = cast<ConstantInt>(
Idx)->getZExtValue();
6922 X->getType() == ReturnType)
6927 case Intrinsic::experimental_constrained_fadd: {
6928 auto *FPI = cast<ConstrainedFPIntrinsic>(Call);
6930 *FPI->getExceptionBehavior(),
6931 *FPI->getRoundingMode());
6933 case Intrinsic::experimental_constrained_fsub: {
6934 auto *FPI = cast<ConstrainedFPIntrinsic>(Call);
6936 *FPI->getExceptionBehavior(),
6937 *FPI->getRoundingMode());
6939 case Intrinsic::experimental_constrained_fmul: {
6940 auto *FPI = cast<ConstrainedFPIntrinsic>(Call);
6942 *FPI->getExceptionBehavior(),
6943 *FPI->getRoundingMode());
6945 case Intrinsic::experimental_constrained_fdiv: {
6946 auto *FPI = cast<ConstrainedFPIntrinsic>(Call);
6948 *FPI->getExceptionBehavior(),
6949 *FPI->getRoundingMode());
6951 case Intrinsic::experimental_constrained_frem: {
6952 auto *FPI = cast<ConstrainedFPIntrinsic>(Call);
6954 *FPI->getExceptionBehavior(),
6955 *FPI->getRoundingMode());
6957 case Intrinsic::experimental_constrained_ldexp:
6959 case Intrinsic::experimental_gc_relocate: {
6965 if (isa<UndefValue>(DerivedPtr) || isa<UndefValue>(BasePtr)) {
6969 if (
auto *PT = dyn_cast<PointerType>(GCR.
getType())) {
6973 if (isa<ConstantPointerNull>(DerivedPtr)) {
6988 auto *
F = dyn_cast<Function>(Callee);
6993 ConstantArgs.
reserve(Args.size());
6994 for (
Value *Arg : Args) {
6997 if (isa<MetadataAsValue>(Arg))
7010 assert(Call->arg_size() == Args.size());
7014 if (Call->isMustTailCall())
7019 if (isa<UndefValue>(Callee) || isa<ConstantPointerNull>(Callee))
7025 auto *
F = dyn_cast<Function>(Callee);
7026 if (
F &&
F->isIntrinsic())
7034 assert(isa<ConstrainedFPIntrinsic>(Call));
7053 return ::simplifyFreezeInst(Op0, Q);
7061 if (
auto *PtrOpC = dyn_cast<Constant>(PtrOp))
7067 if (!GV || !GV->isConstant() || !GV->hasDefinitiveInitializer())
7098 unsigned MaxRecurse) {
7099 assert(
I->getFunction() &&
"instruction should be inserted in a function");
7101 "context instruction should be in the same function");
7105 switch (
I->getOpcode()) {
7110 [](
Value *V) { return cast<Constant>(V); });
7114 case Instruction::FNeg:
7116 case Instruction::FAdd:
7119 case Instruction::Add:
7123 case Instruction::FSub:
7126 case Instruction::Sub:
7130 case Instruction::FMul:
7133 case Instruction::Mul:
7137 case Instruction::SDiv:
7141 case Instruction::UDiv:
7145 case Instruction::FDiv:
7148 case Instruction::SRem:
7150 case Instruction::URem:
7152 case Instruction::FRem:
7155 case Instruction::Shl:
7159 case Instruction::LShr:
7163 case Instruction::AShr:
7167 case Instruction::And:
7169 case Instruction::Or:
7171 case Instruction::Xor:
7173 case Instruction::ICmp:
7175 NewOps[1], Q, MaxRecurse);
7176 case Instruction::FCmp:
7178 NewOps[1],
I->getFastMathFlags(), Q, MaxRecurse);
7179 case Instruction::Select:
7181 case Instruction::GetElementPtr: {
7182 auto *GEPI = cast<GetElementPtrInst>(
I);
7184 ArrayRef(NewOps).slice(1), GEPI->getNoWrapFlags(), Q,
7187 case Instruction::InsertValue: {
7192 case Instruction::InsertElement:
7194 case Instruction::ExtractValue: {
7195 auto *EVI = cast<ExtractValueInst>(
I);
7199 case Instruction::ExtractElement:
7201 case Instruction::ShuffleVector: {
7202 auto *SVI = cast<ShuffleVectorInst>(
I);
7204 SVI->getShuffleMask(), SVI->getType(), Q,
7207 case Instruction::PHI:
7209 case Instruction::Call:
7211 cast<CallInst>(
I), NewOps.
back(),
7212 NewOps.
drop_back(1 + cast<CallInst>(
I)->getNumTotalBundleOperands()), Q);
7213 case Instruction::Freeze:
7215#define HANDLE_CAST_INST(num, opc, clas) case Instruction::opc:
7216#include "llvm/IR/Instruction.def"
7217#undef HANDLE_CAST_INST
7220 case Instruction::Alloca:
7223 case Instruction::Load:
7232 "Number of operands should match the instruction!");
7233 return ::simplifyInstructionWithOperands(
I, NewOps, SQ,
RecursionLimit);
7263 bool Simplified =
false;
7270 for (
User *U :
I->users())
7272 Worklist.
insert(cast<Instruction>(U));
7275 I->replaceAllUsesWith(SimpleV);
7277 if (!
I->isEHPad() && !
I->isTerminator() && !
I->mayHaveSideEffects())
7278 I->eraseFromParent();
7290 if (UnsimplifiedUsers)
7291 UnsimplifiedUsers->insert(
I);
7300 for (
User *U :
I->users())
7301 Worklist.
insert(cast<Instruction>(U));
7304 I->replaceAllUsesWith(SimpleV);
7306 if (!
I->isEHPad() && !
I->isTerminator() && !
I->mayHaveSideEffects())
7307 I->eraseFromParent();
7316 assert(
I != SimpleV &&
"replaceAndRecursivelySimplify(X,X) is not valid!");
7317 assert(SimpleV &&
"Must provide a simplified value.");
7325 auto *DT = DTWP ? &DTWP->getDomTree() :
nullptr;
7327 auto *TLI = TLIWP ? &TLIWP->
getTLI(
F) :
nullptr;
7330 return {
F.getDataLayout(), TLI, DT, AC};
7338template <
class T,
class... TArgs>
7341 auto *DT = AM.template getCachedResult<DominatorTreeAnalysis>(
F);
7342 auto *TLI = AM.template getCachedResult<TargetLibraryAnalysis>(
F);
7343 auto *AC = AM.template getCachedResult<AssumptionAnalysis>(
F);
7344 return {
F.getDataLayout(), TLI, DT, AC};
7358void InstSimplifyFolder::anchor() {}
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static GCRegistry::Add< StatepointGC > D("statepoint-example", "an example strategy for statepoint")
Returns the sub type a function will return at a given Idx Should correspond to the result type of an ExtractValue instruction executed with just that one unsigned Idx
static GCMetadataPrinterRegistry::Add< ErlangGCPrinter > X("erlang", "erlang-compatible garbage collector")
static Value * simplifyFreezeInst(Value *Op0, const SimplifyQuery &Q)
Given operands for a Freeze, see if we can fold the result.
static Value * simplifyCmpSelFalseCase(CmpPredicate Pred, Value *LHS, Value *RHS, Value *Cond, const SimplifyQuery &Q, unsigned MaxRecurse)
Simplify comparison with false branch of select.
static Value * simplifyCmpSelCase(CmpPredicate Pred, Value *LHS, Value *RHS, Value *Cond, const SimplifyQuery &Q, unsigned MaxRecurse, Constant *TrueOrFalse)
Simplify comparison with true or false branch of select: sel = select i1 cond, i32 tv,...
static Value * simplifyLShrInst(Value *Op0, Value *Op1, bool IsExact, const SimplifyQuery &Q, unsigned MaxRecurse)
Given operands for an LShr, see if we can fold the result.
static Value * simplifyUDivInst(Value *Op0, Value *Op1, bool IsExact, const SimplifyQuery &Q, unsigned MaxRecurse)
Given operands for a UDiv, see if we can fold the result.
static Value * simplifyShuffleVectorInst(Value *Op0, Value *Op1, ArrayRef< int > Mask, Type *RetTy, const SimplifyQuery &Q, unsigned MaxRecurse)
static Value * foldMinMaxSharedOp(Intrinsic::ID IID, Value *Op0, Value *Op1)
Given a min/max intrinsic, see if it can be removed based on having an operand that is another min/ma...
static Value * simplifySubInst(Value *Op0, Value *Op1, bool IsNSW, bool IsNUW, const SimplifyQuery &Q, unsigned MaxRecurse)
Given operands for a Sub, see if we can fold the result.
static Value * simplifyFCmpInst(CmpPredicate Pred, Value *LHS, Value *RHS, FastMathFlags FMF, const SimplifyQuery &Q, unsigned MaxRecurse)
Given operands for an FCmpInst, see if we can fold the result.
static Value * expandCommutativeBinOp(Instruction::BinaryOps Opcode, Value *L, Value *R, Instruction::BinaryOps OpcodeToExpand, const SimplifyQuery &Q, unsigned MaxRecurse)
Try to simplify binops of form "A op (B op' C)" or the commuted variant by distributing op over op'.
static Constant * foldOrCommuteConstant(Instruction::BinaryOps Opcode, Value *&Op0, Value *&Op1, const SimplifyQuery &Q)
static bool haveNonOverlappingStorage(const Value *V1, const Value *V2)
Return true if V1 and V2 are each the base of some distict storage region [V, object_size(V)] which d...
static Constant * foldConstant(Instruction::UnaryOps Opcode, Value *&Op, const SimplifyQuery &Q)
static Value * handleOtherCmpSelSimplifications(Value *TCmp, Value *FCmp, Value *Cond, const SimplifyQuery &Q, unsigned MaxRecurse)
We know comparison with both branches of select can be simplified, but they are not equal.
static Value * threadCmpOverPHI(CmpPredicate Pred, Value *LHS, Value *RHS, const SimplifyQuery &Q, unsigned MaxRecurse)
In the case of a comparison with a PHI instruction, try to simplify the comparison by seeing whether ...
static Constant * propagateNaN(Constant *In)
Try to propagate existing NaN values when possible.
static Value * simplifyICmpOfBools(CmpPredicate Pred, Value *LHS, Value *RHS, const SimplifyQuery &Q)
Fold an icmp when its operands have i1 scalar type.
static Value * simplifyICmpWithBinOpOnLHS(CmpPredicate Pred, BinaryOperator *LBO, Value *RHS, const SimplifyQuery &Q, unsigned MaxRecurse)
static Value * simplifyAShrInst(Value *Op0, Value *Op1, bool IsExact, const SimplifyQuery &Q, unsigned MaxRecurse)
Given operands for an AShr, see if we can fold the result.
static Value * simplifyRelativeLoad(Constant *Ptr, Constant *Offset, const DataLayout &DL)
static Value * simplifyDiv(Instruction::BinaryOps Opcode, Value *Op0, Value *Op1, bool IsExact, const SimplifyQuery &Q, unsigned MaxRecurse)
These are simplifications common to SDiv and UDiv.
static Value * simplifyPHINode(PHINode *PN, ArrayRef< Value * > IncomingValues, const SimplifyQuery &Q)
See if we can fold the given phi. If not, returns null.
static Value * simplifyExtractValueInst(Value *Agg, ArrayRef< unsigned > Idxs, const SimplifyQuery &, unsigned)
Given operands for an ExtractValueInst, see if we can fold the result.
static Value * simplifySelectInst(Value *, Value *, Value *, const SimplifyQuery &, unsigned)
Given operands for a SelectInst, see if we can fold the result.
static Value * simplifyAddInst(Value *Op0, Value *Op1, bool IsNSW, bool IsNUW, const SimplifyQuery &Q, unsigned MaxRecurse)
Given operands for an Add, see if we can fold the result.
static Value * simplifyUnOp(unsigned, Value *, const SimplifyQuery &, unsigned)
Given the operand for a UnaryOperator, see if we can fold the result.
static bool isSameCompare(Value *V, CmpPredicate Pred, Value *LHS, Value *RHS)
isSameCompare - Is V equivalent to the comparison "LHS Pred RHS"?
static Value * simplifyAndCommutative(Value *Op0, Value *Op1, const SimplifyQuery &Q, unsigned MaxRecurse)
static Value * simplifyInstructionWithOperands(Instruction *I, ArrayRef< Value * > NewOps, const SimplifyQuery &SQ, unsigned MaxRecurse)
See if we can compute a simplified version of this instruction.
static bool isIdempotent(Intrinsic::ID ID)
static std::optional< ConstantRange > getRange(Value *V, const InstrInfoQuery &IIQ)
Helper method to get range from metadata or attribute.
static Value * simplifyAndOrOfICmpsWithCtpop(ICmpInst *Cmp0, ICmpInst *Cmp1, bool IsAnd)
Try to simplify and/or of icmp with ctpop intrinsic.
static Value * simplifyUnsignedRangeCheck(ICmpInst *ZeroICmp, ICmpInst *UnsignedICmp, bool IsAnd, const SimplifyQuery &Q)
Commuted variants are assumed to be handled by calling this function again with the parameters swappe...
static Value * tryConstantFoldCall(CallBase *Call, Value *Callee, ArrayRef< Value * > Args, const SimplifyQuery &Q)
static Value * simplifyWithOpsReplaced(Value *V, ArrayRef< std::pair< Value *, Value * > > Ops, const SimplifyQuery &Q, bool AllowRefinement, SmallVectorImpl< Instruction * > *DropFlags, unsigned MaxRecurse)
static Value * simplifyICmpInst(CmpPredicate Predicate, Value *LHS, Value *RHS, const SimplifyQuery &Q, unsigned MaxRecurse)
Given operands for an ICmpInst, see if we can fold the result.
static Value * simplifyExtractElementInst(Value *Vec, Value *Idx, const SimplifyQuery &Q, unsigned)
Given operands for an ExtractElementInst, see if we can fold the result.
static Value * simplifyAndOfICmpsWithAdd(ICmpInst *Op0, ICmpInst *Op1, const InstrInfoQuery &IIQ)
static Value * simplifyICmpWithMinMax(CmpPredicate Pred, Value *LHS, Value *RHS, const SimplifyQuery &Q, unsigned MaxRecurse)
simplify integer comparisons where at least one operand of the compare matches an integer min/max idi...
static Value * simplifyCmpSelTrueCase(CmpPredicate Pred, Value *LHS, Value *RHS, Value *Cond, const SimplifyQuery &Q, unsigned MaxRecurse)
Simplify comparison with true branch of select.
static Value * simplifyIntrinsic(CallBase *Call, Value *Callee, ArrayRef< Value * > Args, const SimplifyQuery &Q)
static void getUnsignedMonotonicValues(SmallPtrSetImpl< Value * > &Res, Value *V, MonotonicType Type, unsigned Depth=0)
Get values V_i such that V uge V_i (GreaterEq) or V ule V_i (LowerEq).
static bool isPoisonShift(Value *Amount, const SimplifyQuery &Q)
Returns true if a shift by Amount always yields poison.
static APInt stripAndComputeConstantOffsets(const DataLayout &DL, Value *&V, bool AllowNonInbounds=false)
Compute the base pointer and cumulative constant offsets for V.
static Value * simplifyCmpInst(CmpPredicate, Value *, Value *, const SimplifyQuery &, unsigned)
Given operands for a CmpInst, see if we can fold the result.
static Value * simplifyFMAFMul(Value *Op0, Value *Op1, FastMathFlags FMF, const SimplifyQuery &Q, unsigned MaxRecurse, fp::ExceptionBehavior ExBehavior, RoundingMode Rounding)
static Value * simplifyRightShift(Instruction::BinaryOps Opcode, Value *Op0, Value *Op1, bool IsExact, const SimplifyQuery &Q, unsigned MaxRecurse)
Given operands for an LShr or AShr, see if we can fold the result.
static Value * simplifyICmpWithIntrinsicOnLHS(CmpPredicate Pred, Value *LHS, Value *RHS)
static Value * simplifySDivInst(Value *Op0, Value *Op1, bool IsExact, const SimplifyQuery &Q, unsigned MaxRecurse)
Given operands for an SDiv, see if we can fold the result.
static Value * simplifyByDomEq(unsigned Opcode, Value *Op0, Value *Op1, const SimplifyQuery &Q, unsigned MaxRecurse)
Test if there is a dominating equivalence condition for the two operands.
static Value * simplifyFPUnOp(unsigned, Value *, const FastMathFlags &, const SimplifyQuery &, unsigned)
Given the operand for a UnaryOperator, see if we can fold the result.
static Value * simplifyICmpWithBinOp(CmpPredicate Pred, Value *LHS, Value *RHS, const SimplifyQuery &Q, unsigned MaxRecurse)
TODO: A large part of this logic is duplicated in InstCombine's foldICmpBinOp().
static Value * simplifyFAddInst(Value *Op0, Value *Op1, FastMathFlags FMF, const SimplifyQuery &Q, unsigned MaxRecurse, fp::ExceptionBehavior ExBehavior=fp::ebIgnore, RoundingMode Rounding=RoundingMode::NearestTiesToEven)
Given operands for an FAdd, see if we can fold the result.
static Value * simplifyOrOfICmps(ICmpInst *Op0, ICmpInst *Op1, const SimplifyQuery &Q)
static Value * expandBinOp(Instruction::BinaryOps Opcode, Value *V, Value *OtherOp, Instruction::BinaryOps OpcodeToExpand, const SimplifyQuery &Q, unsigned MaxRecurse)
Try to simplify a binary operator of form "V op OtherOp" where V is "(B0 opex B1)" by distributing 'o...
static Value * simplifyICmpWithZero(CmpPredicate Pred, Value *LHS, Value *RHS, const SimplifyQuery &Q)
Try hard to fold icmp with zero RHS because this is a common case.
static Value * simplifyICmpWithConstant(CmpPredicate Pred, Value *LHS, Value *RHS, const InstrInfoQuery &IIQ)
static Value * simplifySelectWithFCmp(Value *Cond, Value *T, Value *F, const SimplifyQuery &Q, unsigned MaxRecurse)
Try to simplify a select instruction when its condition operand is a floating-point comparison.
static Constant * getFalse(Type *Ty)
For a boolean type or a vector of boolean type, return false or a vector with every element false.
static Value * simplifyDivRem(Instruction::BinaryOps Opcode, Value *Op0, Value *Op1, const SimplifyQuery &Q, unsigned MaxRecurse)
Check for common or similar folds of integer division or integer remainder.
static bool removesFPFraction(Intrinsic::ID ID)
Return true if the intrinsic rounds a floating-point value to an integral floating-point value (not a...
static Value * simplifyFDivInst(Value *Op0, Value *Op1, FastMathFlags FMF, const SimplifyQuery &Q, unsigned, fp::ExceptionBehavior ExBehavior=fp::ebIgnore, RoundingMode Rounding=RoundingMode::NearestTiesToEven)
static Value * simplifyOrOfICmpsWithAdd(ICmpInst *Op0, ICmpInst *Op1, const InstrInfoQuery &IIQ)
static Value * simplifySelectWithEquivalence(ArrayRef< std::pair< Value *, Value * > > Replacements, Value *TrueVal, Value *FalseVal, const SimplifyQuery &Q, unsigned MaxRecurse)
Try to simplify a select instruction when its condition operand is an integer equality or floating-po...
static Value * simplifyMulInst(Value *Op0, Value *Op1, bool IsNSW, bool IsNUW, const SimplifyQuery &Q, unsigned MaxRecurse)
Given operands for a Mul, see if we can fold the result.
static Value * simplifyFNegInst(Value *Op, FastMathFlags FMF, const SimplifyQuery &Q, unsigned MaxRecurse)
Given the operand for an FNeg, see if we can fold the result.
static Value * simplifyOrInst(Value *, Value *, const SimplifyQuery &, unsigned)
Given operands for an Or, see if we can fold the result.
static bool trySimplifyICmpWithAdds(CmpPredicate Pred, Value *LHS, Value *RHS, const InstrInfoQuery &IIQ)
static Value * simplifySelectBitTest(Value *TrueVal, Value *FalseVal, Value *X, const APInt *Y, bool TrueWhenUnset)
Try to simplify a select instruction when its condition operand is an integer comparison where one op...
static Value * simplifyAssociativeBinOp(Instruction::BinaryOps Opcode, Value *LHS, Value *RHS, const SimplifyQuery &Q, unsigned MaxRecurse)
Generic simplifications for associative binary operations.
static Value * simplifyShlInst(Value *Op0, Value *Op1, bool IsNSW, bool IsNUW, const SimplifyQuery &Q, unsigned MaxRecurse)
Given operands for an Shl, see if we can fold the result.
static Value * threadBinOpOverPHI(Instruction::BinaryOps Opcode, Value *LHS, Value *RHS, const SimplifyQuery &Q, unsigned MaxRecurse)
In the case of a binary operation with an operand that is a PHI instruction, try to simplify the bino...
static Value * simplifyCmpSelOfMaxMin(Value *CmpLHS, Value *CmpRHS, CmpPredicate Pred, Value *TVal, Value *FVal)
static Value * simplifyFRemInst(Value *Op0, Value *Op1, FastMathFlags FMF, const SimplifyQuery &Q, unsigned, fp::ExceptionBehavior ExBehavior=fp::ebIgnore, RoundingMode Rounding=RoundingMode::NearestTiesToEven)
static Value * simplifyFSubInst(Value *Op0, Value *Op1, FastMathFlags FMF, const SimplifyQuery &Q, unsigned MaxRecurse, fp::ExceptionBehavior ExBehavior=fp::ebIgnore, RoundingMode Rounding=RoundingMode::NearestTiesToEven)
Given operands for an FSub, see if we can fold the result.
static Value * simplifyXorInst(Value *, Value *, const SimplifyQuery &, unsigned)
Given operands for a Xor, see if we can fold the result.
static Value * simplifyURemInst(Value *Op0, Value *Op1, const SimplifyQuery &Q, unsigned MaxRecurse)
Given operands for a URem, see if we can fold the result.
static Constant * simplifyFPOp(ArrayRef< Value * > Ops, FastMathFlags FMF, const SimplifyQuery &Q, fp::ExceptionBehavior ExBehavior, RoundingMode Rounding)
Perform folds that are common to any floating-point operation.
static Value * threadCmpOverSelect(CmpPredicate Pred, Value *LHS, Value *RHS, const SimplifyQuery &Q, unsigned MaxRecurse)
In the case of a comparison with a select instruction, try to simplify the comparison by seeing wheth...
static bool replaceAndRecursivelySimplifyImpl(Instruction *I, Value *SimpleV, const TargetLibraryInfo *TLI, const DominatorTree *DT, AssumptionCache *AC, SmallSetVector< Instruction *, 8 > *UnsimplifiedUsers=nullptr)
Implementation of recursive simplification through an instruction's uses.
static bool isAllocDisjoint(const Value *V)
Return true if the underlying object (storage) must be disjoint from storage returned by any noalias ...
static Constant * getTrue(Type *Ty)
For a boolean type or a vector of boolean type, return true or a vector with every element true.
static Value * simplifyGEPInst(Type *, Value *, ArrayRef< Value * >, GEPNoWrapFlags, const SimplifyQuery &, unsigned)
Given operands for an GetElementPtrInst, see if we can fold the result.
static bool isDivZero(Value *X, Value *Y, const SimplifyQuery &Q, unsigned MaxRecurse, bool IsSigned)
Return true if we can simplify X / Y to 0.
static Value * simplifyLdexp(Value *Op0, Value *Op1, const SimplifyQuery &Q, bool IsStrict)
static Value * simplifyLogicOfAddSub(Value *Op0, Value *Op1, Instruction::BinaryOps Opcode)
Given a bitwise logic op, check if the operands are add/sub with a common source value and inverted c...
static Value * simplifySelectWithBitTest(Value *CondVal, Value *TrueVal, Value *FalseVal)
An alternative way to test if a bit is set or not.
static Value * simplifyOrLogic(Value *X, Value *Y)
static Type * getCompareTy(Value *Op)
static Value * simplifyCastInst(unsigned, Value *, Type *, const SimplifyQuery &, unsigned)
static Value * simplifyAndOfICmps(ICmpInst *Op0, ICmpInst *Op1, const SimplifyQuery &Q)
static Value * simplifyBinOp(unsigned, Value *, Value *, const SimplifyQuery &, unsigned)
Given operands for a BinaryOperator, see if we can fold the result.
static bool isICmpTrue(CmpPredicate Pred, Value *LHS, Value *RHS, const SimplifyQuery &Q, unsigned MaxRecurse)
Given a predicate and two operands, return true if the comparison is true.
static Value * simplifyInsertValueInst(Value *Agg, Value *Val, ArrayRef< unsigned > Idxs, const SimplifyQuery &Q, unsigned)
Given operands for an InsertValueInst, see if we can fold the result.
static Value * simplifyAndInst(Value *, Value *, const SimplifyQuery &, unsigned)
Given operands for an And, see if we can fold the result.
static Value * foldIdentityShuffles(int DestElt, Value *Op0, Value *Op1, int MaskVal, Value *RootVec, unsigned MaxRecurse)
For the given destination element of a shuffle, peek through shuffles to match a root vector source o...
static Value * simplifyAndOrOfFCmps(const SimplifyQuery &Q, FCmpInst *LHS, FCmpInst *RHS, bool IsAnd)
static Value * extractEquivalentCondition(Value *V, CmpPredicate Pred, Value *LHS, Value *RHS)
Rummage around inside V looking for something equivalent to the comparison "LHS Pred RHS".
static Value * simplifyAndOrOfCmps(const SimplifyQuery &Q, Value *Op0, Value *Op1, bool IsAnd)
static Value * simplifyWithOpReplaced(Value *V, Value *Op, Value *RepOp, const SimplifyQuery &Q, bool AllowRefinement, SmallVectorImpl< Instruction * > *DropFlags, unsigned MaxRecurse)
static Value * threadBinOpOverSelect(Instruction::BinaryOps Opcode, Value *LHS, Value *RHS, const SimplifyQuery &Q, unsigned MaxRecurse)
In the case of a binary operation with a select instruction as an operand, try to simplify the binop ...
static Value * simplifyICmpUsingMonotonicValues(CmpPredicate Pred, Value *LHS, Value *RHS)
static Constant * computePointerDifference(const DataLayout &DL, Value *LHS, Value *RHS)
Compute the constant difference between two pointer values.
static Value * simplifySRemInst(Value *Op0, Value *Op1, const SimplifyQuery &Q, unsigned MaxRecurse)
Given operands for an SRem, see if we can fold the result.
static Value * simplifyFMulInst(Value *Op0, Value *Op1, FastMathFlags FMF, const SimplifyQuery &Q, unsigned MaxRecurse, fp::ExceptionBehavior ExBehavior=fp::ebIgnore, RoundingMode Rounding=RoundingMode::NearestTiesToEven)
Given the operands for an FMul, see if we can fold the result.
static Value * simplifyAndOrOfICmpsWithConstants(ICmpInst *Cmp0, ICmpInst *Cmp1, bool IsAnd)
Test if a pair of compares with a shared operand and 2 constants has an empty set intersection,...
static Value * simplifyAndOrWithICmpEq(unsigned Opcode, Value *Op0, Value *Op1, const SimplifyQuery &Q, unsigned MaxRecurse)
static Value * simplifyICmpWithDominatingAssume(CmpPredicate Predicate, Value *LHS, Value *RHS, const SimplifyQuery &Q)
static Value * simplifyShift(Instruction::BinaryOps Opcode, Value *Op0, Value *Op1, bool IsNSW, const SimplifyQuery &Q, unsigned MaxRecurse)
Given operands for an Shl, LShr or AShr, see if we can fold the result.
static Constant * computePointerICmp(CmpPredicate Pred, Value *LHS, Value *RHS, const SimplifyQuery &Q)
static Value * simplifyRem(Instruction::BinaryOps Opcode, Value *Op0, Value *Op1, const SimplifyQuery &Q, unsigned MaxRecurse)
These are simplifications common to SRem and URem.
static bool valueDominatesPHI(Value *V, PHINode *P, const DominatorTree *DT)
Does the given value dominate the specified phi node?
static Value * simplifySelectWithICmpCond(Value *CondVal, Value *TrueVal, Value *FalseVal, const SimplifyQuery &Q, unsigned MaxRecurse)
Try to simplify a select instruction when its condition operand is an integer comparison.
static Value * foldMinimumMaximumSharedOp(Intrinsic::ID IID, Value *Op0, Value *Op1)
Given a min/max intrinsic, see if it can be removed based on having an operand that is another min/ma...
static Value * simplifyUnaryIntrinsic(Function *F, Value *Op0, const SimplifyQuery &Q, const CallBase *Call)
This header provides classes for managing per-loop analyses.
uint64_t IntrinsicInst * II
static GCMetadataPrinterRegistry::Add< OcamlGCMetadataPrinter > Y("ocaml", "ocaml 3.10-compatible collector")
const SmallVectorImpl< MachineOperand > & Cond
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
This file implements a set that has insertion order iteration characteristics.
This file defines the 'Statistic' class, which is designed to be an easy way to expose various metric...
#define STATISTIC(VARNAME, DESC)
static SymbolRef::Type getType(const Symbol *Sym)
static const uint32_t IV[8]
Class for arbitrary precision integers.
APInt zextOrTrunc(unsigned width) const
Zero extend or truncate to width.
unsigned getActiveBits() const
Compute the number of active bits in the value.
bool isZero() const
Determine if this value is zero, i.e. all bits are clear.
APInt urem(const APInt &RHS) const
Unsigned remainder operation.
void setSignBit()
Set the sign bit to 1.
unsigned getBitWidth() const
Return the number of bits in the APInt.
bool ult(const APInt &RHS) const
Unsigned less than comparison.
bool intersects(const APInt &RHS) const
This operation tests if there are any pairs of corresponding bits between this APInt and RHS that are...
unsigned countr_zero() const
Count the number of trailing zero bits.
bool isNonPositive() const
Determine if this APInt Value is non-positive (<= 0).
APInt sextOrTrunc(unsigned width) const
Sign extend or truncate to width.
bool isStrictlyPositive() const
Determine if this APInt Value is positive.
uint64_t getLimitedValue(uint64_t Limit=UINT64_MAX) const
If this value is smaller than the specified limit, return it, otherwise return the limit value.
bool getBoolValue() const
Convert APInt to a boolean value.
APInt srem(const APInt &RHS) const
Function for signed remainder operation.
bool isMask(unsigned numBits) const
bool isMaxSignedValue() const
Determine if this is the largest signed value.
bool isNonNegative() const
Determine if this APInt Value is non-negative (>= 0)
bool ule(const APInt &RHS) const
Unsigned less or equal comparison.
bool isSubsetOf(const APInt &RHS) const
This operation checks that all bits set in this APInt are also set in RHS.
bool isPowerOf2() const
Check if this APInt's value is a power of two greater than zero.
static APInt getLowBitsSet(unsigned numBits, unsigned loBitsSet)
Constructs an APInt value that has the bottom loBitsSet bits set.
bool isSignBitSet() const
Determine if sign bit of this APInt is set.
bool slt(const APInt &RHS) const
Signed less than comparison.
static APInt getHighBitsSet(unsigned numBits, unsigned hiBitsSet)
Constructs an APInt value that has the top hiBitsSet bits set.
static APInt getZero(unsigned numBits)
Get the '0' value for the specified bit-width.
bool isOne() const
Determine if this is a value of 1.
static APInt getOneBitSet(unsigned numBits, unsigned BitNo)
Return an APInt with exactly one bit set in the result.
bool uge(const APInt &RHS) const
Unsigned greater or equal comparison.
an instruction to allocate memory on the stack
A container for analyses that lazily runs them and caches their results.
This class represents an incoming formal argument to a Function.
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
const T & back() const
back - Get the last element.
size_t size() const
size - Get the array size.
ArrayRef< T > drop_back(size_t N=1) const
Drop the last N elements of the array.
bool empty() const
empty - Check if the array is empty.
ArrayRef< T > slice(size_t N, size_t M) const
slice(n, m) - Chop off the first N elements of the array, and keep M elements in the array.
An immutable pass that tracks lazily created AssumptionCache objects.
AssumptionCache & getAssumptionCache(Function &F)
Get the cached assumptions for a function.
A cache of @llvm.assume calls within a function.
MutableArrayRef< ResultElem > assumptionsFor(const Value *V)
Access the list of assumptions which affect this value.
const Instruction * getTerminator() const LLVM_READONLY
Returns the terminator instruction if the block is well formed or null if the block is not well forme...
BinaryOps getOpcode() const
Base class for all callable instructions (InvokeInst and CallInst) Holds everything related to callin...
This class represents a function call, abstracting a target machine's calling convention.
static unsigned isEliminableCastPair(Instruction::CastOps firstOpcode, Instruction::CastOps secondOpcode, Type *SrcTy, Type *MidTy, Type *DstTy, Type *SrcIntPtrTy, Type *MidIntPtrTy, Type *DstIntPtrTy)
Determine how a pair of casts can be eliminated, if they can be at all.
This class is the base class for the comparison instructions.
static Type * makeCmpResultType(Type *opnd_type)
Create a result type for fcmp/icmp.
Predicate getStrictPredicate() const
For example, SGE -> SGT, SLE -> SLT, ULE -> ULT, UGE -> UGT.
bool isFalseWhenEqual() const
This is just a convenience.
Predicate
This enumeration lists the possible predicates for CmpInst subclasses.
@ ICMP_SLT
signed less than
@ ICMP_SLE
signed less or equal
@ ICMP_UGE
unsigned greater or equal
@ ICMP_UGT
unsigned greater than
@ ICMP_SGT
signed greater than
@ ICMP_ULT
unsigned less than
@ ICMP_SGE
signed greater or equal
@ ICMP_ULE
unsigned less or equal
@ FCMP_UNO
1 0 0 0 True if unordered: isnan(X) | isnan(Y)
Predicate getSwappedPredicate() const
For example, EQ->EQ, SLE->SGE, ULT->UGT, OEQ->OEQ, ULE->UGE, OLT->OGT, etc.
bool isTrueWhenEqual() const
This is just a convenience.
bool isFPPredicate() const
Predicate getInversePredicate() const
For example, EQ -> NE, UGT -> ULE, SLT -> SGE, OEQ -> UNE, UGT -> OLE, OLT -> UGE,...
Predicate getPredicate() const
Return the predicate for this instruction.
static bool isUnordered(Predicate predicate)
Determine if the predicate is an unordered operation.
bool isIntPredicate() const
An abstraction over a floating-point predicate, and a pack of an integer predicate with samesign info...
static Constant * getIntToPtr(Constant *C, Type *Ty, bool OnlyIfReduced=false)
static Constant * getExtractElement(Constant *Vec, Constant *Idx, Type *OnlyIfReducedTy=nullptr)
static Constant * getBinOpAbsorber(unsigned Opcode, Type *Ty, bool AllowLHSConstant=false)
Return the absorbing element for the given binary operation, i.e.
static Constant * getNot(Constant *C)
static Constant * getInsertElement(Constant *Vec, Constant *Elt, Constant *Idx, Type *OnlyIfReducedTy=nullptr)
static Constant * getShuffleVector(Constant *V1, Constant *V2, ArrayRef< int > Mask, Type *OnlyIfReducedTy=nullptr)
static bool isSupportedGetElementPtr(const Type *SrcElemTy)
Whether creating a constant expression for this getelementptr type is supported.
static Constant * getGetElementPtr(Type *Ty, Constant *C, ArrayRef< Constant * > IdxList, GEPNoWrapFlags NW=GEPNoWrapFlags::none(), std::optional< ConstantRange > InRange=std::nullopt, Type *OnlyIfReducedTy=nullptr)
Getelementptr form.
static Constant * getBinOpIdentity(unsigned Opcode, Type *Ty, bool AllowRHSConstant=false, bool NSZ=false)
Return the identity constant for a binary opcode.
static Constant * getZero(Type *Ty, bool Negative=false)
static Constant * getNegativeZero(Type *Ty)
static Constant * getNaN(Type *Ty, bool Negative=false, uint64_t Payload=0)
This is the shared class of boolean and integer constants.
static ConstantInt * getTrue(LLVMContext &Context)
static ConstantInt * getSigned(IntegerType *Ty, int64_t V)
Return a ConstantInt with the specified value for the specified type.
static ConstantInt * getFalse(LLVMContext &Context)
uint64_t getZExtValue() const
Return the constant as a 64-bit unsigned integer value after it has been zero extended as appropriate...
static ConstantInt * getBool(LLVMContext &Context, bool V)
static ConstantPointerNull * get(PointerType *T)
Static factory methods - Return objects of the specified value.
This class represents a range of values.
const APInt * getSingleElement() const
If this set contains a single element, return it, otherwise return null.
bool isFullSet() const
Return true if this set contains all of the elements possible for this data-type.
bool isEmptySet() const
Return true if this set contains no members.
static ConstantRange makeExactICmpRegion(CmpInst::Predicate Pred, const APInt &Other)
Produce the exact range such that all values in the returned range satisfy the given predicate with a...
ConstantRange inverse() const
Return a new range that is the logical not of the current set.
bool contains(const APInt &Val) const
Return true if the specified value is in the set.
static Constant * get(StructType *T, ArrayRef< Constant * > V)
static Constant * getSplat(ElementCount EC, Constant *Elt)
Return a ConstantVector with the specified constant in each element.
static Constant * get(ArrayRef< Constant * > V)
This is an important base class in LLVM.
static Constant * getAllOnesValue(Type *Ty)
bool isAllOnesValue() const
Return true if this is the value that would be returned by getAllOnesValue.
static Constant * getNullValue(Type *Ty)
Constructor to create a '0' constant of arbitrary type.
bool isNaN() const
Return true if this is a floating-point NaN constant or a vector floating-point constant with all NaN...
Constant * getAggregateElement(unsigned Elt) const
For aggregates (struct/array/vector) return the constant that corresponds to the specified element if...
bool isNullValue() const
Return true if this is the value that would be returned by getNullValue.
This class represents an Operation in the Expression.
A parsed version of the target data layout string in and methods for querying it.
unsigned getPointerSizeInBits(unsigned AS=0) const
Layout pointer size, in bits FIXME: The defaults need to be removed once all of the backends/clients ...
IntegerType * getIntPtrType(LLVMContext &C, unsigned AddressSpace=0) const
Returns an integer type with size at least as big as that of a pointer in the given address space.
unsigned getIndexTypeSizeInBits(Type *Ty) const
Layout size of the index used in GEP calculation.
IntegerType * getIndexType(LLVMContext &C, unsigned AddressSpace) const
Returns the type of a GEP index in AddressSpace.
TypeSize getTypeAllocSize(Type *Ty) const
Returns the offset in bytes between successive objects of the specified type, including alignment pad...
unsigned getIndexSizeInBits(unsigned AS) const
Size in bits of index used for address calculation in getelementptr.
TypeSize getTypeSizeInBits(Type *Ty) const
Size examples:
Legacy analysis pass which computes a DominatorTree.
Concrete subclass of DominatorTreeBase that is used to compute a normal dominator tree.
bool dominates(const BasicBlock *BB, const Use &U) const
Return true if the (end of the) basic block BB dominates the use U.
This instruction compares its operands according to the predicate given to the constructor.
Convenience struct for specifying and reasoning about fast-math flags.
bool noSignedZeros() const
bool allowReassoc() const
Flag queries.
Represents calls to the gc.relocate intrinsic.
Value * getBasePtr() const
Value * getDerivedPtr() const
Represents flags for the getelementptr instruction/expression.
static Type * getIndexedType(Type *Ty, ArrayRef< Value * > IdxList)
Returns the result type of a getelementptr with the given source element type and indexes.
This instruction compares its operands according to the predicate given to the constructor.
static bool compare(const APInt &LHS, const APInt &RHS, ICmpInst::Predicate Pred)
Return result of LHS Pred RHS comparison.
Predicate getSignedPredicate() const
For example, EQ->EQ, SLE->SLE, UGT->SGT, etc.
bool isEquality() const
Return true if this predicate is either EQ or NE.
bool isRelational() const
Return true if the predicate is relational (not EQ or NE).
Predicate getUnsignedPredicate() const
For example, EQ->EQ, SLE->ULE, UGT->UGT, etc.
This instruction inserts a struct field of array element value into an aggregate value.
bool hasNoSignedZeros() const LLVM_READONLY
Determine whether the no-signed-zeros flag is set.
bool isAssociative() const LLVM_READONLY
Return true if the instruction is associative:
bool isCommutative() const LLVM_READONLY
Return true if the instruction is commutative:
const Function * getFunction() const
Return the function this instruction belongs to.
An instruction for reading from memory.
bool isVolatile() const
Return true if this is a load from a volatile memory location.
static APInt getSaturationPoint(Intrinsic::ID ID, unsigned numBits)
Min/max intrinsics are monotonic, they operate on a fixed-bitwidth values, so there is a certain thre...
ICmpInst::Predicate getPredicate() const
Returns the comparison predicate underlying the intrinsic.
op_range incoming_values()
BasicBlock * getIncomingBlock(unsigned i) const
Return incoming basic block number i.
Value * getIncomingValue(unsigned i) const
Return incoming value number x.
unsigned getNumIncomingValues() const
Return the number of incoming edges.
Pass interface - Implemented by all 'passes'.
static PoisonValue * get(Type *T)
Static factory methods - Return an 'poison' object of the specified type.
This class represents a cast from a pointer to an integer.
This class represents a sign extension of integer types.
This class represents the LLVM 'select' instruction.
size_type size() const
Determine the number of elements in the SetVector.
bool insert(const value_type &X)
Insert a new element into the SetVector.
static void commuteShuffleMask(MutableArrayRef< int > Mask, unsigned InVecNumElts)
Change values in a shuffle permute mask assuming the two vector operands of length InVecNumElts have ...
A templated base class for SmallPtrSet which provides the typesafe interface that is common across al...
std::pair< iterator, bool > insert(PtrType Ptr)
Inserts Ptr if and only if there is no element in the container equal to Ptr.
bool contains(ConstPtrType Ptr) const
SmallPtrSet - This class implements a set which is optimized for holding SmallSize or less elements.
A SetVector that performs no allocations if smaller than a certain size.
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
void assign(size_type NumElts, ValueParamT Elt)
void reserve(size_type N)
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
TargetLibraryInfo & getTLI(const Function &F)
Provides information about what library functions are available for the current target.
The instances of the Type class are immutable: once they are created, they are never changed.
bool isVectorTy() const
True if this is an instance of VectorType.
bool isIntOrIntVectorTy() const
Return true if this is an integer type or a vector of integer types.
bool isPointerTy() const
True if this is an instance of PointerType.
unsigned getScalarSizeInBits() const LLVM_READONLY
If this is a vector type, return the getPrimitiveSizeInBits value for the element type.
bool isSized(SmallPtrSetImpl< Type * > *Visited=nullptr) const
Return true if it makes sense to take the size of this type.
bool isScalableTy(SmallPtrSetImpl< const Type * > &Visited) const
Return true if this is a type whose size is a known multiple of vscale.
LLVMContext & getContext() const
Return the LLVMContext in which this type was uniqued.
bool isPtrOrPtrVectorTy() const
Return true if this is a pointer type or a vector of pointer types.
static IntegerType * getInt32Ty(LLVMContext &C)
TypeSize getPrimitiveSizeInBits() const LLVM_READONLY
Return the basic size of this type if it is a primitive type.
static UndefValue * get(Type *T)
Static factory methods - Return an 'undef' object of the specified type.
A Use represents the edge between a Value definition and its users.
Value * getOperand(unsigned i) const
LLVM Value Representation.
Type * getType() const
All values are typed, get the type of this value.
const Value * stripAndAccumulateConstantOffsets(const DataLayout &DL, APInt &Offset, bool AllowNonInbounds, bool AllowInvariantGroup=false, function_ref< bool(Value &Value, APInt &Offset)> ExternalAnalysis=nullptr, bool LookThroughIntToPtr=false) const
Accumulate the constant offset this value has compared to a base pointer.
LLVMContext & getContext() const
All values hold a context through their type.
This class represents zero extension of integer types.
constexpr bool isScalable() const
Returns whether the quantity is scaled by a runtime quantity (vscale).
constexpr ScalarTy getKnownMinValue() const
Returns the minimum value this quantity can represent.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
@ C
The default llvm calling convention, compatible with C.
cst_pred_ty< is_all_ones > m_AllOnes()
Match an integer or vector with all bits set.
class_match< PoisonValue > m_Poison()
Match an arbitrary poison constant.
cst_pred_ty< is_lowbit_mask > m_LowBitMask()
Match an integer or vector with only the low bit(s) set.
BinaryOp_match< LHS, RHS, Instruction::And > m_And(const LHS &L, const RHS &R)
PtrAdd_match< PointerOpTy, OffsetOpTy > m_PtrAdd(const PointerOpTy &PointerOp, const OffsetOpTy &OffsetOp)
Matches GEP with i8 source element type.
cst_pred_ty< is_negative > m_Negative()
Match an integer or vector of negative values.
BinaryOp_match< LHS, RHS, Instruction::Add > m_Add(const LHS &L, const RHS &R)
class_match< BinaryOperator > m_BinOp()
Match an arbitrary binary operation and ignore it.
CmpClass_match< LHS, RHS, FCmpInst > m_FCmp(CmpPredicate &Pred, const LHS &L, const RHS &R)
BinaryOp_match< LHS, RHS, Instruction::FMul, true > m_c_FMul(const LHS &L, const RHS &R)
Matches FMul with LHS and RHS in either order.
cst_pred_ty< is_sign_mask > m_SignMask()
Match an integer or vector with only the sign bit(s) set.
BinaryOp_match< LHS, RHS, Instruction::AShr > m_AShr(const LHS &L, const RHS &R)
cstfp_pred_ty< is_inf > m_Inf()
Match a positive or negative infinity FP constant.
m_Intrinsic_Ty< Opnd0 >::Ty m_BitReverse(const Opnd0 &Op0)
BinaryOp_match< LHS, RHS, Instruction::FSub > m_FSub(const LHS &L, const RHS &R)
cst_pred_ty< is_power2 > m_Power2()
Match an integer or vector power-of-2.
BinaryOp_match< cstfp_pred_ty< is_any_zero_fp >, RHS, Instruction::FSub > m_FNegNSZ(const RHS &X)
Match 'fneg X' as 'fsub +-0.0, X'.
BinaryOp_match< LHS, RHS, Instruction::URem > m_URem(const LHS &L, const RHS &R)
class_match< Constant > m_Constant()
Match an arbitrary Constant and ignore it.
BinaryOp_match< LHS, RHS, Instruction::And, true > m_c_And(const LHS &L, const RHS &R)
Matches an And with LHS and RHS in either order.
CastInst_match< OpTy, TruncInst > m_Trunc(const OpTy &Op)
Matches Trunc.
BinaryOp_match< LHS, RHS, Instruction::Xor > m_Xor(const LHS &L, const RHS &R)
specific_intval< false > m_SpecificInt(const APInt &V)
Match a specific integer value or vector with all elements equal to the value.
bool match(Val *V, const Pattern &P)
BinOpPred_match< LHS, RHS, is_idiv_op > m_IDiv(const LHS &L, const RHS &R)
Matches integer division operations.
cstfp_pred_ty< is_any_zero_fp > m_AnyZeroFP()
Match a floating-point negative zero or positive zero.
specificval_ty m_Specific(const Value *V)
Match if we have a specific specified value.
BinOpPred_match< LHS, RHS, is_right_shift_op > m_Shr(const LHS &L, const RHS &R)
Matches logical shift operations.
CmpClass_match< LHS, RHS, ICmpInst, true > m_c_ICmp(CmpPredicate &Pred, const LHS &L, const RHS &R)
Matches an ICmp with a predicate over LHS and RHS in either order.
TwoOps_match< Val_t, Idx_t, Instruction::ExtractElement > m_ExtractElt(const Val_t &Val, const Idx_t &Idx)
Matches ExtractElementInst.
class_match< ConstantInt > m_ConstantInt()
Match an arbitrary ConstantInt and ignore it.
cst_pred_ty< is_one > m_One()
Match an integer 1 or a vector with all elements equal to 1.
ThreeOps_match< Cond, LHS, RHS, Instruction::Select > m_Select(const Cond &C, const LHS &L, const RHS &R)
Matches SelectInst.
cstfp_pred_ty< is_neg_zero_fp > m_NegZeroFP()
Match a floating-point negative zero.
specific_fpval m_SpecificFP(double V)
Match a specific floating point value or vector with all elements equal to the value.
match_combine_and< LTy, RTy > m_CombineAnd(const LTy &L, const RTy &R)
Combine two pattern matchers matching L && R.
MaxMin_match< ICmpInst, LHS, RHS, smin_pred_ty > m_SMin(const LHS &L, const RHS &R)
m_Intrinsic_Ty< Opnd0 >::Ty m_Sqrt(const Opnd0 &Op0)
BinaryOp_match< LHS, RHS, Instruction::Xor, true > m_c_Xor(const LHS &L, const RHS &R)
Matches an Xor with LHS and RHS in either order.
BinaryOp_match< LHS, RHS, Instruction::Mul > m_Mul(const LHS &L, const RHS &R)
deferredval_ty< Value > m_Deferred(Value *const &V)
Like m_Specific(), but works if the specific value to match is determined as part of the same match()...
cst_pred_ty< is_zero_int > m_ZeroInt()
Match an integer 0 or a vector with all elements equal to 0.
apint_match m_APIntAllowPoison(const APInt *&Res)
Match APInt while allowing poison in splat vector constants.
BinaryOp_match< cst_pred_ty< is_zero_int >, ValTy, Instruction::Sub > m_Neg(const ValTy &V)
Matches a 'Neg' as 'sub 0, V'.
match_combine_and< class_match< Constant >, match_unless< constantexpr_match > > m_ImmConstant()
Match an arbitrary immediate Constant and ignore it.
OverflowingBinaryOp_match< LHS, RHS, Instruction::Shl, OverflowingBinaryOperator::NoSignedWrap > m_NSWShl(const LHS &L, const RHS &R)
CastInst_match< OpTy, ZExtInst > m_ZExt(const OpTy &Op)
Matches ZExt.
OverflowingBinaryOp_match< LHS, RHS, Instruction::Shl, OverflowingBinaryOperator::NoUnsignedWrap > m_NUWShl(const LHS &L, const RHS &R)
OverflowingBinaryOp_match< LHS, RHS, Instruction::Mul, OverflowingBinaryOperator::NoUnsignedWrap > m_NUWMul(const LHS &L, const RHS &R)
BinaryOp_match< LHS, RHS, Instruction::UDiv > m_UDiv(const LHS &L, const RHS &R)
MaxMin_match< ICmpInst, LHS, RHS, umax_pred_ty > m_UMax(const LHS &L, const RHS &R)
cst_pred_ty< custom_checkfn< APInt > > m_CheckedInt(function_ref< bool(const APInt &)> CheckFn)
Match an integer or vector where CheckFn(ele) for each element is true.
specific_fpval m_FPOne()
Match a float 1.0 or vector with all elements equal to 1.0.
BinaryOp_match< LHS, RHS, Instruction::Add, true > m_c_Add(const LHS &L, const RHS &R)
Matches a Add with LHS and RHS in either order.
apfloat_match m_APFloatAllowPoison(const APFloat *&Res)
Match APFloat while allowing poison in splat vector constants.
CastInst_match< OpTy, UIToFPInst > m_UIToFP(const OpTy &Op)
m_Intrinsic_Ty< Opnd0, Opnd1, Opnd2 >::Ty m_FShl(const Opnd0 &Op0, const Opnd1 &Op1, const Opnd2 &Op2)
match_combine_or< match_combine_or< MaxMin_match< ICmpInst, LHS, RHS, smax_pred_ty, true >, MaxMin_match< ICmpInst, LHS, RHS, smin_pred_ty, true > >, match_combine_or< MaxMin_match< ICmpInst, LHS, RHS, umax_pred_ty, true >, MaxMin_match< ICmpInst, LHS, RHS, umin_pred_ty, true > > > m_c_MaxOrMin(const LHS &L, const RHS &R)
BinaryOp_match< LHS, RHS, Instruction::SDiv > m_SDiv(const LHS &L, const RHS &R)
OverflowingBinaryOp_match< LHS, RHS, Instruction::Sub, OverflowingBinaryOperator::NoUnsignedWrap > m_NUWSub(const LHS &L, const RHS &R)
MaxMin_match< ICmpInst, LHS, RHS, smax_pred_ty > m_SMax(const LHS &L, const RHS &R)
apint_match m_APInt(const APInt *&Res)
Match a ConstantInt or splatted ConstantVector, binding the specified pointer to the contained APInt.
class_match< Value > m_Value()
Match an arbitrary value and ignore it.
OverflowingBinaryOp_match< LHS, RHS, Instruction::Add, OverflowingBinaryOperator::NoSignedWrap > m_NSWAdd(const LHS &L, const RHS &R)
CastInst_match< OpTy, SIToFPInst > m_SIToFP(const OpTy &Op)
BinaryOp_match< LHS, RHS, Instruction::LShr > m_LShr(const LHS &L, const RHS &R)
CmpClass_match< LHS, RHS, ICmpInst > m_ICmp(CmpPredicate &Pred, const LHS &L, const RHS &R)
Exact_match< T > m_Exact(const T &SubPattern)
FNeg_match< OpTy > m_FNeg(const OpTy &X)
Match 'fneg X' as 'fsub -0.0, X'.
cstfp_pred_ty< is_pos_zero_fp > m_PosZeroFP()
Match a floating-point positive zero.
BinaryOp_match< LHS, RHS, Instruction::FAdd, true > m_c_FAdd(const LHS &L, const RHS &R)
Matches FAdd with LHS and RHS in either order.
LogicalOp_match< LHS, RHS, Instruction::And, true > m_c_LogicalAnd(const LHS &L, const RHS &R)
Matches L && R with LHS and RHS in either order.
BinaryOp_match< LHS, RHS, Instruction::Shl > m_Shl(const LHS &L, const RHS &R)
m_Intrinsic_Ty< Opnd0 >::Ty m_VecReverse(const Opnd0 &Op0)
apfloat_match m_APFloat(const APFloat *&Res)
Match a ConstantFP or splatted ConstantVector, binding the specified pointer to the contained APFloat...
match_combine_or< match_combine_or< MaxMin_match< ICmpInst, LHS, RHS, smax_pred_ty >, MaxMin_match< ICmpInst, LHS, RHS, smin_pred_ty > >, match_combine_or< MaxMin_match< ICmpInst, LHS, RHS, umax_pred_ty >, MaxMin_match< ICmpInst, LHS, RHS, umin_pred_ty > > > m_MaxOrMin(const LHS &L, const RHS &R)
m_Intrinsic_Ty< Opnd0, Opnd1, Opnd2 >::Ty m_FShr(const Opnd0 &Op0, const Opnd1 &Op1, const Opnd2 &Op2)
BinaryOp_match< LHS, RHS, Instruction::SRem > m_SRem(const LHS &L, const RHS &R)
auto m_Undef()
Match an arbitrary undef constant.
cstfp_pred_ty< is_nan > m_NaN()
Match an arbitrary NaN constant.
BinaryOp_match< cst_pred_ty< is_all_ones >, ValTy, Instruction::Xor, true > m_Not(const ValTy &V)
Matches a 'Not' as 'xor V, -1' or 'xor -1, V'.
BinaryOp_match< LHS, RHS, Instruction::Or > m_Or(const LHS &L, const RHS &R)
m_Intrinsic_Ty< Opnd0 >::Ty m_BSwap(const Opnd0 &Op0)
CastInst_match< OpTy, SExtInst > m_SExt(const OpTy &Op)
Matches SExt.
is_zero m_Zero()
Match any null constant or a vector with all elements equal to 0.
BinaryOp_match< LHS, RHS, Instruction::Or, true > m_c_Or(const LHS &L, const RHS &R)
Matches an Or with LHS and RHS in either order.
LogicalOp_match< LHS, RHS, Instruction::Or, true > m_c_LogicalOr(const LHS &L, const RHS &R)
Matches L || R with LHS and RHS in either order.
ThreeOps_match< Val_t, Elt_t, Idx_t, Instruction::InsertElement > m_InsertElt(const Val_t &Val, const Elt_t &Elt, const Idx_t &Idx)
Matches InsertElementInst.
ElementWiseBitCast_match< OpTy > m_ElementWiseBitCast(const OpTy &Op)
m_Intrinsic_Ty< Opnd0 >::Ty m_FAbs(const Opnd0 &Op0)
BinaryOp_match< LHS, RHS, Instruction::Mul, true > m_c_Mul(const LHS &L, const RHS &R)
Matches a Mul with LHS and RHS in either order.
CastOperator_match< OpTy, Instruction::PtrToInt > m_PtrToInt(const OpTy &Op)
Matches PtrToInt.
OverflowingBinaryOp_match< LHS, RHS, Instruction::Mul, OverflowingBinaryOperator::NoSignedWrap > m_NSWMul(const LHS &L, const RHS &R)
BinaryOp_match< LHS, RHS, Instruction::Sub > m_Sub(const LHS &L, const RHS &R)
MaxMin_match< ICmpInst, LHS, RHS, umin_pred_ty > m_UMin(const LHS &L, const RHS &R)
match_combine_or< LTy, RTy > m_CombineOr(const LTy &L, const RTy &R)
Combine two pattern matchers matching L || R.
ExceptionBehavior
Exception behavior used for floating point operations.
@ ebStrict
This corresponds to "fpexcept.strict".
@ ebIgnore
This corresponds to "fpexcept.ignore".
This is an optimization pass for GlobalISel generic memory operations.
Intrinsic::ID getInverseMinMaxIntrinsic(Intrinsic::ID MinMaxID)
Value * simplifyAShrInst(Value *Op0, Value *Op1, bool IsExact, const SimplifyQuery &Q)
Given operands for a AShr, fold the result or return nulll.
unsigned Log2_32_Ceil(uint32_t Value)
Return the ceil log base 2 of the specified value, 32 if the value is zero.
bool all_of(R &&range, UnaryPredicate P)
Provide wrappers to std::all_of which take ranges instead of having to pass begin/end explicitly.
Value * simplifyFMulInst(Value *LHS, Value *RHS, FastMathFlags FMF, const SimplifyQuery &Q, fp::ExceptionBehavior ExBehavior=fp::ebIgnore, RoundingMode Rounding=RoundingMode::NearestTiesToEven)
Given operands for an FMul, fold the result or return null.
Value * simplifyGEPInst(Type *SrcTy, Value *Ptr, ArrayRef< Value * > Indices, GEPNoWrapFlags NW, const SimplifyQuery &Q)
Given operands for a GetElementPtrInst, fold the result or return null.
bool isValidAssumeForContext(const Instruction *I, const Instruction *CxtI, const DominatorTree *DT=nullptr, bool AllowEphemerals=false)
Return true if it is valid to use the assumptions provided by an assume intrinsic,...
bool canCreatePoison(const Operator *Op, bool ConsiderFlagsAndMetadata=true)
Constant * ConstantFoldSelectInstruction(Constant *Cond, Constant *V1, Constant *V2)
Attempt to constant fold a select instruction with the specified operands.
Value * simplifyFreezeInst(Value *Op, const SimplifyQuery &Q)
Given an operand for a Freeze, see if we can fold the result.
Constant * ConstantFoldFPInstOperands(unsigned Opcode, Constant *LHS, Constant *RHS, const DataLayout &DL, const Instruction *I, bool AllowNonDeterministic=true)
Attempt to constant fold a floating point binary operation with the specified operands,...
bool isSignBitCheck(ICmpInst::Predicate Pred, const APInt &RHS, bool &TrueIfSigned)
Given an exploded icmp instruction, return true if the comparison only checks the sign bit.
bool canConstantFoldCallTo(const CallBase *Call, const Function *F)
canConstantFoldCallTo - Return true if its even possible to fold a call to the specified function.
APInt getMinMaxLimit(SelectPatternFlavor SPF, unsigned BitWidth)
Return the minimum or maximum constant value for the specified integer min/max flavor and type.
Value * simplifySDivInst(Value *LHS, Value *RHS, bool IsExact, const SimplifyQuery &Q)
Given operands for an SDiv, fold the result or return null.
Value * simplifyUnOp(unsigned Opcode, Value *Op, const SimplifyQuery &Q)
Given operand for a UnaryOperator, fold the result or return null.
bool isDefaultFPEnvironment(fp::ExceptionBehavior EB, RoundingMode RM)
Returns true if the exception handling behavior and rounding mode match what is used in the default f...
Value * simplifyMulInst(Value *LHS, Value *RHS, bool IsNSW, bool IsNUW, const SimplifyQuery &Q)
Given operands for a Mul, fold the result or return null.
bool IsConstantOffsetFromGlobal(Constant *C, GlobalValue *&GV, APInt &Offset, const DataLayout &DL, DSOLocalEquivalent **DSOEquiv=nullptr)
If this constant is a constant offset from a global, return the global and the constant.
Value * simplifyInstructionWithOperands(Instruction *I, ArrayRef< Value * > NewOps, const SimplifyQuery &Q)
Like simplifyInstruction but the operands of I are replaced with NewOps.
const Value * getUnderlyingObject(const Value *V, unsigned MaxLookup=6)
This method strips off any GEP address adjustments, pointer casts or llvm.threadlocal....
Value * simplifyCall(CallBase *Call, Value *Callee, ArrayRef< Value * > Args, const SimplifyQuery &Q)
Given a callsite, callee, and arguments, fold the result or return null.
Constant * ConstantFoldCompareInstOperands(unsigned Predicate, Constant *LHS, Constant *RHS, const DataLayout &DL, const TargetLibraryInfo *TLI=nullptr, const Instruction *I=nullptr)
Attempt to constant fold a compare instruction (icmp/fcmp) with the specified operands.
bool isKnownToBeAPowerOfTwo(const Value *V, const DataLayout &DL, bool OrZero=false, unsigned Depth=0, AssumptionCache *AC=nullptr, const Instruction *CxtI=nullptr, const DominatorTree *DT=nullptr, bool UseInstrInfo=true)
Return true if the given value is known to have exactly one bit set when defined.
bool canRoundingModeBe(RoundingMode RM, RoundingMode QRM)
Returns true if the rounding mode RM may be QRM at compile time or at run time.
bool isNoAliasCall(const Value *V)
Return true if this pointer is returned by a noalias function.
Value * simplifyFCmpInst(CmpPredicate Predicate, Value *LHS, Value *RHS, FastMathFlags FMF, const SimplifyQuery &Q)
Given operands for an FCmpInst, fold the result or return null.
Value * getSplatValue(const Value *V)
Get splat value if the input is a splat vector or return nullptr.
Constant * ConstantFoldGetElementPtr(Type *Ty, Constant *C, std::optional< ConstantRange > InRange, ArrayRef< Value * > Idxs)
CmpInst::Predicate getMinMaxPred(SelectPatternFlavor SPF, bool Ordered=false)
Return the canonical comparison predicate for the specified minimum/maximum flavor.
Value * simplifyShuffleVectorInst(Value *Op0, Value *Op1, ArrayRef< int > Mask, Type *RetTy, const SimplifyQuery &Q)
Given operands for a ShuffleVectorInst, fold the result or return null.
Constant * ConstantFoldCall(const CallBase *Call, Function *F, ArrayRef< Constant * > Operands, const TargetLibraryInfo *TLI=nullptr, bool AllowNonDeterministic=true)
ConstantFoldCall - Attempt to constant fold a call to the specified function with the specified argum...
Value * simplifyOrInst(Value *LHS, Value *RHS, const SimplifyQuery &Q)
Given operands for an Or, fold the result or return null.
Value * simplifyXorInst(Value *LHS, Value *RHS, const SimplifyQuery &Q)
Given operands for an Xor, fold the result or return null.
ConstantRange getConstantRangeFromMetadata(const MDNode &RangeMD)
Parse out a conservative ConstantRange from !range metadata.
std::optional< DecomposedBitTest > decomposeBitTest(Value *Cond, bool LookThroughTrunc=true, bool AllowNonZeroC=false)
Decompose an icmp into the form ((X & Mask) pred C) if possible.
ConstantRange computeConstantRange(const Value *V, bool ForSigned, bool UseInstrInfo=true, AssumptionCache *AC=nullptr, const Instruction *CtxI=nullptr, const DominatorTree *DT=nullptr, unsigned Depth=0)
Determine the possible constant range of an integer or vector of integer value.
Constant * ConstantFoldExtractValueInstruction(Constant *Agg, ArrayRef< unsigned > Idxs)
Attempt to constant fold an extractvalue instruction with the specified operands and indices.
bool isAllocLikeFn(const Value *V, const TargetLibraryInfo *TLI)
Tests if a value is a call or invoke to a library function that allocates memory (either malloc,...
bool MaskedValueIsZero(const Value *V, const APInt &Mask, const SimplifyQuery &SQ, unsigned Depth=0)
Return true if 'V & Mask' is known to be zero.
Value * simplifyCastInst(unsigned CastOpc, Value *Op, Type *Ty, const SimplifyQuery &Q)
Given operands for a CastInst, fold the result or return null.
Value * simplifyInstruction(Instruction *I, const SimplifyQuery &Q)
See if we can compute a simplified version of this instruction.
unsigned M1(unsigned Val)
Value * simplifySubInst(Value *LHS, Value *RHS, bool IsNSW, bool IsNUW, const SimplifyQuery &Q)
Given operands for a Sub, fold the result or return null.
Value * simplifyAddInst(Value *LHS, Value *RHS, bool IsNSW, bool IsNUW, const SimplifyQuery &Q)
Given operands for an Add, fold the result or return null.
Constant * ConstantFoldConstant(const Constant *C, const DataLayout &DL, const TargetLibraryInfo *TLI=nullptr)
ConstantFoldConstant - Fold the constant using the specified DataLayout.
OutputIt transform(R &&Range, OutputIt d_first, UnaryFunction F)
Wrapper function around std::transform to apply a function to a range and store the result elsewhere.
bool any_of(R &&range, UnaryPredicate P)
Provide wrappers to std::any_of which take ranges instead of having to pass begin/end explicitly.
bool getObjectSize(const Value *Ptr, uint64_t &Size, const DataLayout &DL, const TargetLibraryInfo *TLI, ObjectSizeOpts Opts={})
Compute the size of the object pointed by Ptr.
bool isSplatValue(const Value *V, int Index=-1, unsigned Depth=0)
Return true if each element of the vector value V is poisoned or equal to every other non-poisoned el...
Constant * ConstantFoldLoadFromUniformValue(Constant *C, Type *Ty, const DataLayout &DL)
If C is a uniform value where all bits are the same (either all zero, all ones, all undef or all pois...
SelectPatternFlavor getInverseMinMaxFlavor(SelectPatternFlavor SPF)
Return the inverse minimum/maximum flavor of the specified flavor.
bool replaceAndRecursivelySimplify(Instruction *I, Value *SimpleV, const TargetLibraryInfo *TLI=nullptr, const DominatorTree *DT=nullptr, AssumptionCache *AC=nullptr, SmallSetVector< Instruction *, 8 > *UnsimplifiedUsers=nullptr)
Replace all uses of 'I' with 'SimpleV' and simplify the uses recursively.
Constant * ConstantFoldUnaryOpOperand(unsigned Opcode, Constant *Op, const DataLayout &DL)
Attempt to constant fold a unary operation with the specified operand.
SelectPatternFlavor
Specific patterns of select instructions we can match.
Value * simplifyShlInst(Value *Op0, Value *Op1, bool IsNSW, bool IsNUW, const SimplifyQuery &Q)
Given operands for a Shl, fold the result or return null.
Value * simplifyFNegInst(Value *Op, FastMathFlags FMF, const SimplifyQuery &Q)
Given operand for an FNeg, fold the result or return null.
Value * simplifyFSubInst(Value *LHS, Value *RHS, FastMathFlags FMF, const SimplifyQuery &Q, fp::ExceptionBehavior ExBehavior=fp::ebIgnore, RoundingMode Rounding=RoundingMode::NearestTiesToEven)
Given operands for an FSub, fold the result or return null.
bool canReplacePointersIfEqual(const Value *From, const Value *To, const DataLayout &DL)
Returns true if a pointer value From can be replaced with another pointer value \To if they are deeme...
bool impliesPoison(const Value *ValAssumedPoison, const Value *V)
Return true if V is poison given that ValAssumedPoison is already poison.
Value * simplifyFRemInst(Value *LHS, Value *RHS, FastMathFlags FMF, const SimplifyQuery &Q, fp::ExceptionBehavior ExBehavior=fp::ebIgnore, RoundingMode Rounding=RoundingMode::NearestTiesToEven)
Given operands for an FRem, fold the result or return null.
Value * simplifyFAddInst(Value *LHS, Value *RHS, FastMathFlags FMF, const SimplifyQuery &Q, fp::ExceptionBehavior ExBehavior=fp::ebIgnore, RoundingMode Rounding=RoundingMode::NearestTiesToEven)
Given operands for an FAdd, fold the result or return null.
FPClassTest
Floating-point class tests, supported by 'is_fpclass' intrinsic.
bool PointerMayBeCaptured(const Value *V, bool ReturnCaptures, bool StoreCaptures, unsigned MaxUsesToExplore=0)
PointerMayBeCaptured - Return true if this pointer value may be captured by the enclosing function (w...
Value * simplifyLShrInst(Value *Op0, Value *Op1, bool IsExact, const SimplifyQuery &Q)
Given operands for a LShr, fold the result or return null.
bool NullPointerIsDefined(const Function *F, unsigned AS=0)
Check whether null pointer dereferencing is considered undefined behavior for a given function or an ...
Value * simplifyICmpInst(CmpPredicate Pred, Value *LHS, Value *RHS, const SimplifyQuery &Q)
Given operands for an ICmpInst, fold the result or return null.
ConstantRange getVScaleRange(const Function *F, unsigned BitWidth)
Determine the possible constant range of vscale with the given bit width, based on the vscale_range f...
Constant * ConstantFoldInstOperands(Instruction *I, ArrayRef< Constant * > Ops, const DataLayout &DL, const TargetLibraryInfo *TLI=nullptr, bool AllowNonDeterministic=true)
ConstantFoldInstOperands - Attempt to constant fold an instruction with the specified operands.
Constant * ConstantFoldCastOperand(unsigned Opcode, Constant *C, Type *DestTy, const DataLayout &DL)
Attempt to constant fold a cast with the specified operand.
Value * simplifyAndInst(Value *LHS, Value *RHS, const SimplifyQuery &Q)
Given operands for an And, fold the result or return null.
Value * simplifyExtractValueInst(Value *Agg, ArrayRef< unsigned > Idxs, const SimplifyQuery &Q)
Given operands for an ExtractValueInst, fold the result or return null.
bool isNotCrossLaneOperation(const Instruction *I)
Return true if the instruction doesn't potentially cross vector lanes.
Value * simplifyInsertValueInst(Value *Agg, Value *Val, ArrayRef< unsigned > Idxs, const SimplifyQuery &Q)
Given operands for an InsertValueInst, fold the result or return null.
Constant * ConstantFoldBinaryOpOperands(unsigned Opcode, Constant *LHS, Constant *RHS, const DataLayout &DL)
Attempt to constant fold a binary operation with the specified operands.
Value * simplifyFDivInst(Value *LHS, Value *RHS, FastMathFlags FMF, const SimplifyQuery &Q, fp::ExceptionBehavior ExBehavior=fp::ebIgnore, RoundingMode Rounding=RoundingMode::NearestTiesToEven)
Given operands for an FDiv, fold the result or return null.
bool isKnownNonZero(const Value *V, const SimplifyQuery &Q, unsigned Depth=0)
Return true if the given value is known to be non-zero when defined.
constexpr int PoisonMaskElem
Value * simplifyLoadInst(LoadInst *LI, Value *PtrOp, const SimplifyQuery &Q)
Given a load instruction and its pointer operand, fold the result or return null.
Value * simplifyFMAFMul(Value *LHS, Value *RHS, FastMathFlags FMF, const SimplifyQuery &Q, fp::ExceptionBehavior ExBehavior=fp::ebIgnore, RoundingMode Rounding=RoundingMode::NearestTiesToEven)
Given operands for the multiplication of a FMA, fold the result or return null.
Value * simplifyConstrainedFPCall(CallBase *Call, const SimplifyQuery &Q)
Given a constrained FP intrinsic call, tries to compute its simplified version.
Value * simplifyBinOp(unsigned Opcode, Value *LHS, Value *RHS, const SimplifyQuery &Q)
Given operands for a BinaryOperator, fold the result or return null.
@ Or
Bitwise or logical OR of integers.
Value * findScalarElement(Value *V, unsigned EltNo)
Given a vector and an element number, see if the scalar value is already around as a register,...
void computeKnownBits(const Value *V, KnownBits &Known, const DataLayout &DL, unsigned Depth=0, AssumptionCache *AC=nullptr, const Instruction *CxtI=nullptr, const DominatorTree *DT=nullptr, bool UseInstrInfo=true)
Determine which bits of V are known to be either zero or one and return them in the KnownZero/KnownOn...
bool isKnownNonEqual(const Value *V1, const Value *V2, const SimplifyQuery &SQ, unsigned Depth=0)
Return true if the given values are known to be non-equal when defined.
Value * simplifyUDivInst(Value *LHS, Value *RHS, bool IsExact, const SimplifyQuery &Q)
Given operands for a UDiv, fold the result or return null.
DWARFExpression::Operation Op
Value * simplifyBinaryIntrinsic(Intrinsic::ID IID, Type *ReturnType, Value *Op0, Value *Op1, const SimplifyQuery &Q, const CallBase *Call)
Given operands for a BinaryIntrinsic, fold the result or return null.
RoundingMode
Rounding mode.
bool isGuaranteedNotToBeUndefOrPoison(const Value *V, AssumptionCache *AC=nullptr, const Instruction *CtxI=nullptr, const DominatorTree *DT=nullptr, unsigned Depth=0)
Return true if this function can prove that V does not have undef bits and is never poison.
unsigned M0(unsigned Val)
Value * simplifyInsertElementInst(Value *Vec, Value *Elt, Value *Idx, const SimplifyQuery &Q)
Given operands for an InsertElement, fold the result or return null.
constexpr unsigned BitWidth
SelectPatternResult matchDecomposedSelectPattern(CmpInst *CmpI, Value *TrueVal, Value *FalseVal, Value *&LHS, Value *&RHS, Instruction::CastOps *CastOp=nullptr, unsigned Depth=0)
Determine the pattern that a select with the given compare as its predicate and given values as its t...
Value * simplifyWithOpReplaced(Value *V, Value *Op, Value *RepOp, const SimplifyQuery &Q, bool AllowRefinement, SmallVectorImpl< Instruction * > *DropFlags=nullptr)
See if V simplifies when its operand Op is replaced with RepOp.
bool maskIsAllZeroOrUndef(Value *Mask)
Given a mask vector of i1, Return true if all of the elements of this predicate mask are known to be ...
std::pair< Value *, FPClassTest > fcmpToClassTest(CmpInst::Predicate Pred, const Function &F, Value *LHS, Value *RHS, bool LookThroughSrc=true)
Returns a pair of values, which if passed to llvm.is.fpclass, returns the same result as an fcmp with...
Value * simplifySRemInst(Value *LHS, Value *RHS, const SimplifyQuery &Q)
Given operands for an SRem, fold the result or return null.
void getUnderlyingObjects(const Value *V, SmallVectorImpl< const Value * > &Objects, const LoopInfo *LI=nullptr, unsigned MaxLookup=6)
This method is similar to getUnderlyingObject except that it can look through phi and select instruct...
bool is_contained(R &&Range, const E &Element)
Returns true if Element is found in Range.
std::optional< bool > computeKnownFPSignBit(const Value *V, unsigned Depth, const SimplifyQuery &SQ)
Return false if we can prove that the specified FP value's sign bit is 0.
unsigned ComputeNumSignBits(const Value *Op, const DataLayout &DL, unsigned Depth=0, AssumptionCache *AC=nullptr, const Instruction *CxtI=nullptr, const DominatorTree *DT=nullptr, bool UseInstrInfo=true)
Return the number of times the sign bit of the register is replicated into the other bits.
bool cannotBeNegativeZero(const Value *V, unsigned Depth, const SimplifyQuery &SQ)
Return true if we can prove that the specified FP value is never equal to -0.0.
bool all_equal(std::initializer_list< T > Values)
Returns true if all Values in the initializer lists are equal or the list.
Constant * ConstantFoldInsertValueInstruction(Constant *Agg, Constant *Val, ArrayRef< unsigned > Idxs)
ConstantFoldInsertValueInstruction - Attempt to constant fold an insertvalue instruction with the spe...
Constant * ConstantFoldLoadFromConstPtr(Constant *C, Type *Ty, APInt Offset, const DataLayout &DL)
Return the value that a load from C with offset Offset would produce if it is constant and determinab...
std::optional< bool > isImpliedByDomCondition(const Value *Cond, const Instruction *ContextI, const DataLayout &DL)
Return the boolean condition value in the context of the given instruction if it is known based on do...
Value * simplifyCmpInst(CmpPredicate Predicate, Value *LHS, Value *RHS, const SimplifyQuery &Q)
Given operands for a CmpInst, fold the result or return null.
bool isGuaranteedNotToBePoison(const Value *V, AssumptionCache *AC=nullptr, const Instruction *CtxI=nullptr, const DominatorTree *DT=nullptr, unsigned Depth=0)
Returns true if V cannot be poison, but may be undef.
KnownFPClass computeKnownFPClass(const Value *V, const APInt &DemandedElts, FPClassTest InterestedClasses, unsigned Depth, const SimplifyQuery &SQ)
Determine which floating-point classes are valid for V, and return them in KnownFPClass bit sets.
bool isKnownNegation(const Value *X, const Value *Y, bool NeedNSW=false, bool AllowPoison=true)
Return true if the two given values are negation.
Constant * ConstantFoldIntegerCast(Constant *C, Type *DestTy, bool IsSigned, const DataLayout &DL)
Constant fold a zext, sext or trunc, depending on IsSigned and whether the DestTy is wider or narrowe...
const SimplifyQuery getBestSimplifyQuery(Pass &, Function &)
bool isCheckForZeroAndMulWithOverflow(Value *Op0, Value *Op1, bool IsAnd, Use *&Y)
Match one of the patterns up to the select/logic op: Op0 = icmp ne i4 X, 0 Agg = call { i4,...
bool canIgnoreSNaN(fp::ExceptionBehavior EB, FastMathFlags FMF)
Returns true if the possibility of a signaling NaN can be safely ignored.
Value * simplifyURemInst(Value *LHS, Value *RHS, const SimplifyQuery &Q)
Given operands for a URem, fold the result or return null.
Value * simplifyExtractElementInst(Value *Vec, Value *Idx, const SimplifyQuery &Q)
Given operands for an ExtractElementInst, fold the result or return null.
Value * simplifySelectInst(Value *Cond, Value *TrueVal, Value *FalseVal, const SimplifyQuery &Q)
Given operands for a SelectInst, fold the result or return null.
std::optional< bool > isImpliedCondition(const Value *LHS, const Value *RHS, const DataLayout &DL, bool LHSIsTrue=true, unsigned Depth=0)
Return true if RHS is known to be implied true by LHS.
void swap(llvm::BitVector &LHS, llvm::BitVector &RHS)
Implement std::swap in terms of BitVector swap.
This callback is used in conjunction with PointerMayBeCaptured.
virtual void tooManyUses()=0
tooManyUses - The depth of traversal has breached a limit.
virtual bool captured(const Use *U)=0
captured - Information about the pointer was captured by the user of use U.
Incoming for lane maks phi as machine instruction, incoming register Reg and incoming block Block are...
InstrInfoQuery provides an interface to query additional information for instructions like metadata o...
bool isExact(const BinaryOperator *Op) const
MDNode * getMetadata(const Instruction *I, unsigned KindID) const
bool hasNoSignedWrap(const InstT *Op) const
bool hasNoUnsignedWrap(const InstT *Op) const
bool isNonNegative() const
Returns true if this value is known to be non-negative.
bool isZero() const
Returns true if value is all zero.
unsigned countMinTrailingZeros() const
Returns the minimum number of trailing zero bits.
unsigned countMaxTrailingZeros() const
Returns the maximum number of trailing zero bits possible.
bool hasConflict() const
Returns true if there is conflicting information.
unsigned getBitWidth() const
Get the bit width of this value.
unsigned countMaxActiveBits() const
Returns the maximum number of bits needed to represent all possible unsigned values with these known ...
unsigned countMinLeadingZeros() const
Returns the minimum number of leading zero bits.
APInt getMaxValue() const
Return the maximal unsigned value possible given these KnownBits.
APInt getMinValue() const
Return the minimal unsigned value possible given these KnownBits.
bool isNegative() const
Returns true if this value is known to be negative.
static KnownBits shl(const KnownBits &LHS, const KnownBits &RHS, bool NUW=false, bool NSW=false, bool ShAmtNonZero=false)
Compute known bits for shl(LHS, RHS).
bool isKnownAlwaysNaN() const
Return true if it's known this must always be a nan.
static constexpr FPClassTest OrderedLessThanZeroMask
std::optional< bool > SignBit
std::nullopt if the sign bit is unknown, true if the sign bit is definitely set or false if the sign ...
bool isKnownNeverNaN() const
Return true if it's known this can never be a nan.
bool isKnownNever(FPClassTest Mask) const
Return true if it's known this can never be one of the mask entries.
bool cannotBeOrderedLessThanZero() const
Return true if we can prove that the analyzed floating-point value is either NaN or never less than -...
The adaptor from a function pass to a loop pass computes these analyses and makes them available to t...
Various options to control the behavior of getObjectSize.
bool NullIsUnknownSize
If this is true, null pointers in address space 0 will be treated as though they can't be evaluated.
Mode EvalMode
How we want to evaluate this object's size.
SelectPatternFlavor Flavor
static bool isMinOrMax(SelectPatternFlavor SPF)
When implementing this min/max pattern as fcmp; select, does the fcmp have to be ordered?
bool CanUseUndef
Controls whether simplifications are allowed to constrain the range of possible values for uses of un...
SimplifyQuery getWithInstruction(const Instruction *I) const
bool isUndefValue(Value *V) const
If CanUseUndef is true, returns whether V is undef.
const TargetLibraryInfo * TLI
SimplifyQuery getWithoutUndef() const