59#include "llvm/IR/IntrinsicsAArch64.h"
60#include "llvm/IR/IntrinsicsAMDGPU.h"
61#include "llvm/IR/IntrinsicsRISCV.h"
62#include "llvm/IR/IntrinsicsX86.h"
98template <
typename InstTy>
105 if (
unsigned BitWidth = Ty->getScalarSizeInBits())
108 return DL.getPointerTypeSizeInBits(Ty);
128 const APInt &DemandedElts,
132 DemandedLHS = DemandedRHS = DemandedElts;
139 DemandedElts, DemandedLHS, DemandedRHS);
160 bool UseInstrInfo,
unsigned Depth) {
233 R->uge(
LHS->getType()->getScalarSizeInBits()))
247 assert(LHS->getType() == RHS->getType() &&
248 "LHS and RHS should have the same type");
249 assert(LHS->getType()->isIntOrIntVectorTy() &&
250 "LHS and RHS should be integers");
281 return !
I->user_empty() &&
286 return !
I->user_empty() &&
all_of(
I->users(), [](
const User *U) {
288 return match(U, m_ICmp(P, m_Value(), m_Zero())) && ICmpInst::isEquality(P);
297 return ::isKnownToBeAPowerOfTwo(
313 return CI->getValue().isStrictlyPositive();
318 return Known.isNonNegative() &&
342 return ::isKnownNonEqual(
V1, V2, DemandedElts, Q,
Depth);
349 return Mask.isSubsetOf(
Known.Zero);
356 unsigned Depth = 0) {
367 return ::ComputeNumSignBits(
377 return V->getType()->getScalarSizeInBits() - SignBits + 1;
400 const APInt &DemandedElts,
406 const unsigned BitWidth = Ty->getScalarSizeInBits();
409 if (Ty->isVectorTy())
414 const Value *
A =
nullptr, *
B =
nullptr, *
C =
nullptr, *
D =
nullptr;
417 const auto MatchSubBC = [&]() {
434 const auto MatchASubBC = [&]() {
442 const auto MatchCD = [&]() {
459 if (!Match(Op0, Op1) && !Match(Op1, Op0))
462 const auto ComputeKnownBitsOrOne = [&](
const Value *V) {
470 const KnownBits KnownA = ComputeKnownBitsOrOne(
A);
474 const KnownBits KnownD = ComputeKnownBitsOrOne(
D);
491 if (SubBC->
getOpcode() == Instruction::Xor &&
509 const unsigned MinimumNumberOfLeadingZeros = UpperBound.
countl_zero();
515 const APInt &DemandedElts,
522 if (KnownOut.
isUnknown() && !NSW && !NUW)
540 bool NUW,
const APInt &DemandedElts,
554 bool isKnownNonNegativeOp1 =
Known.isNonNegative();
556 bool isKnownNegativeOp1 =
Known.isNegative();
557 bool isKnownNegativeOp0 = Known2.
isNegative();
560 (isKnownNonNegativeOp1 && isKnownNonNegativeOp0);
572 (isKnownNegativeOp1 && isKnownNonNegativeOp0 &&
574 (isKnownNegativeOp0 && isKnownNonNegativeOp1 &&
Known.isNonZero());
578 bool SelfMultiply = Op0 == Op1;
587 unsigned OutValidBits = 2 * (TyBits - SignBits + 1);
589 if (OutValidBits < TyBits) {
590 APInt KnownZeroMask =
592 Known.Zero |= KnownZeroMask;
602 Known.makeNonNegative();
604 Known.makeNegative();
610 unsigned NumRanges = Ranges.getNumOperands() / 2;
613 Known.setAllConflict();
615 for (
unsigned i = 0; i < NumRanges; ++i) {
624 "Known bit width must match range bit width!");
627 unsigned CommonPrefixBits =
628 (
Range.getUnsignedMax() ^
Range.getUnsignedMin()).countl_zero();
631 Known.One &= UnsignedMax & Mask;
632 Known.Zero &= ~UnsignedMax & Mask;
654 bool ReachesI =
false;
655 while (!WorkList.
empty()) {
663 if (UI->mayHaveSideEffects() || UI->isTerminator())
665 if (Visited.
insert(UI).second)
675 return CI->isAssumeLikeIntrinsic();
683 bool AllowEphemerals) {
701 if (!AllowEphemerals && Inv == CxtI)
733 unsigned NumChecked = 0;
734 auto hasNoFreeInRange = [&NumChecked](
auto Range) {
740 if (!CB->hasFnAttr(Attribute::NoFree))
742 }
else if (
I.maySynchronize())
749 const BasicBlock *AssumeBB = Assume->getParent();
751 if (CtxBB == AssumeBB) {
753 if (Assume != CtxI && !Assume->comesBefore(CtxI))
755 return hasNoFreeInRange(
make_range(Assume->getIterator(), CtxIter));
761 if (CurBB == AssumeBB)
762 return hasNoFreeInRange(
770 CurBB == CtxBB ? CtxIter : CurBB->
end())))
802 for (
unsigned ElemIdx = 0, NElem = VC->getNumElements(); ElemIdx < NElem;
805 Pred, VC->getElementAsAPInt(ElemIdx));
814 const PHINode **PhiOut =
nullptr) {
818 CtxIOut =
PHI->getIncomingBlock(*U)->getTerminator();
834 IncPhi && IncPhi->getNumIncomingValues() == 2) {
835 for (
int Idx = 0; Idx < 2; ++Idx) {
836 if (IncPhi->getIncomingValue(Idx) ==
PHI) {
837 ValOut = IncPhi->getIncomingValue(1 - Idx);
840 CtxIOut = IncPhi->getIncomingBlock(1 - Idx)->getTerminator();
859 "Got assumption for the wrong function!");
863 I->getOperandBundleAt(Elem.Index)) &&
889 if (
RHS->getType()->isPointerTy()) {
899 Known.makeNonNegative();
902 Known.makeNegative();
931 Known.Zero |= ~*
C & *Mask;
976 Known.One.setHighBits(
984 Known.Zero.setHighBits(
996 Invert ? Cmp->getInversePredicate() : Cmp->getPredicate();
1002 KnownBits DstKnown(
LHS->getType()->getScalarSizeInBits());
1016 bool Invert,
unsigned Depth) {
1080 if (
Known.hasConflict())
1098 "Got assumption for the wrong function!");
1101 if (
auto OBU =
I->getOperandBundleAt(Elem.Index);
1117 Value *Arg =
I->getArgOperand(0);
1133 if (Trunc && Trunc->getOperand(0) == V &&
1135 if (Trunc->hasNoUnsignedWrap()) {
1139 Known.One.setBit(0);
1159 if (
Known.hasConflict())
1180 Known.isNonZero() ||
1181 (
Known.getMaxValue().ult(
Known.getBitWidth()) &&
1194 Value *
X =
nullptr, *
Y =
nullptr;
1196 switch (
I->getOpcode()) {
1197 case Instruction::And:
1198 KnownOut = KnownLHS & KnownRHS;
1208 KnownOut = KnownLHS.
blsi();
1210 KnownOut = KnownRHS.
blsi();
1213 case Instruction::Or:
1214 KnownOut = KnownLHS | KnownRHS;
1216 case Instruction::Xor:
1217 KnownOut = KnownLHS ^ KnownRHS;
1227 const KnownBits &XBits =
I->getOperand(0) ==
X ? KnownLHS : KnownRHS;
1228 KnownOut = XBits.
blsmsk();
1241 if (!KnownOut.
Zero[0] && !KnownOut.
One[0] &&
1262 APInt DemandedEltsLHS, DemandedEltsRHS;
1264 DemandedElts, DemandedEltsLHS,
1267 const auto ComputeForSingleOpFunc =
1269 return KnownBitsFunc(
1274 if (DemandedEltsRHS.
isZero())
1275 return ComputeForSingleOpFunc(
I->getOperand(0), DemandedEltsLHS);
1276 if (DemandedEltsLHS.
isZero())
1277 return ComputeForSingleOpFunc(
I->getOperand(1), DemandedEltsRHS);
1279 return ComputeForSingleOpFunc(
I->getOperand(0), DemandedEltsLHS)
1280 .intersectWith(ComputeForSingleOpFunc(
I->getOperand(1), DemandedEltsRHS));
1290 APInt DemandedElts =
1298 Attribute Attr =
F->getFnAttribute(Attribute::VScaleRange);
1306 return ConstantRange::getEmpty(
BitWidth);
1324 if (!MD || MD->getNumOperands() != 1)
1344 if (
F->getFnAttribute(Attribute::VScaleRange).isValid()) {
1353 Value *Arm,
bool Invert,
1356 if (
Known.isConstant())
1383 Known = std::move(CondRes);
1392 "Input should be a Select!");
1402 const Value *LHS2 =
nullptr, *RHS2 =
nullptr;
1414 return CLow->
sle(*CHigh);
1419 const APInt *&CHigh) {
1420 assert((
II->getIntrinsicID() == Intrinsic::smin ||
1421 II->getIntrinsicID() == Intrinsic::smax) &&
1422 "Must be smin/smax");
1426 if (!InnerII || InnerII->getIntrinsicID() != InverseID ||
1431 if (
II->getIntrinsicID() == Intrinsic::smin)
1433 return CLow->
sle(*CHigh);
1438 const APInt *CLow, *CHigh;
1452 unsigned OpNum =
P->getOperand(0) == Start ? 0 : 1;
1454 RecQ.
CxtI =
P->getIncomingBlock(OpNum)->getTerminator();
1457 RecQ.
CxtI =
P->getIncomingBlock(1 - OpNum)->getTerminator();
1462 const APInt &DemandedElts,
1469 switch (
I->getOpcode()) {
1471 case Instruction::Load:
1476 case Instruction::And:
1482 case Instruction::Or:
1488 case Instruction::Xor:
1494 case Instruction::Mul: {
1501 case Instruction::UDiv: {
1508 case Instruction::SDiv: {
1515 case Instruction::Select: {
1516 auto ComputeForArm = [&](
Value *Arm,
bool Invert) {
1524 ComputeForArm(
I->getOperand(1),
false)
1525 .intersectWith(ComputeForArm(
I->getOperand(2),
true));
1528 case Instruction::FPToSI: {
1538 Known.makeNonNegative();
1541 case Instruction::FPTrunc:
1542 case Instruction::FPExt:
1543 case Instruction::FPToUI:
1544 case Instruction::SIToFP:
1545 case Instruction::UIToFP:
1547 case Instruction::PtrToInt:
1548 case Instruction::PtrToAddr:
1549 case Instruction::IntToPtr:
1552 case Instruction::ZExt:
1553 case Instruction::Trunc: {
1554 Type *SrcTy =
I->getOperand(0)->getType();
1556 unsigned SrcBitWidth;
1564 assert(SrcBitWidth &&
"SrcBitWidth can't be zero");
1568 Inst && Inst->hasNonNeg() && !
Known.isNegative())
1569 Known.makeNonNegative();
1573 case Instruction::BitCast: {
1574 Type *SrcTy =
I->getOperand(0)->getType();
1575 if (SrcTy->isIntOrPtrTy() &&
1578 !
I->getType()->isVectorTy()) {
1586 V->getType()->isFPOrFPVectorTy()) {
1587 Type *FPType = V->getType()->getScalarType();
1591 Known = Result.toKnownBits(FPType->getFltSemantics());
1598 if (!SrcVecTy || !SrcVecTy->getElementType()->isIntegerTy() ||
1599 !
I->getType()->isIntOrIntVectorTy() ||
1607 unsigned SubBitWidth = SrcVecTy->getScalarSizeInBits();
1623 unsigned SubScale =
BitWidth / SubBitWidth;
1625 for (
unsigned i = 0; i != NumElts; ++i) {
1626 if (DemandedElts[i])
1627 SubDemandedElts.
setBit(i * SubScale);
1631 for (
unsigned i = 0; i != SubScale; ++i) {
1634 unsigned ShiftElt = IsLE ? i : SubScale - 1 - i;
1635 Known.insertBits(KnownSrc, ShiftElt * SubBitWidth);
1641 unsigned SubScale = SubBitWidth /
BitWidth;
1643 APInt SubDemandedElts =
1648 Known.setAllConflict();
1649 for (
unsigned i = 0; i != NumElts; ++i) {
1650 if (DemandedElts[i]) {
1651 unsigned Shifts = IsLE ? i : NumElts - 1 - i;
1654 if (
Known.isUnknown())
1661 case Instruction::SExt: {
1663 unsigned SrcBitWidth =
I->getOperand(0)->getType()->getScalarSizeInBits();
1672 case Instruction::Shl: {
1676 bool ShAmtNonZero) {
1677 return KnownBits::shl(KnownVal, KnownAmt, NUW, NSW, ShAmtNonZero);
1684 Known.Zero.setLowBits(
C->countr_zero());
1697 Known.Zero.setBitsFrom(
Y + 1);
1701 case Instruction::LShr: {
1704 bool ShAmtNonZero) {
1712 Known.Zero.setHighBits(
C->countl_zero());
1715 case Instruction::AShr: {
1718 bool ShAmtNonZero) {
1725 case Instruction::Sub: {
1732 case Instruction::Add: {
1739 case Instruction::SRem:
1745 case Instruction::URem:
1750 case Instruction::Alloca:
1753 case Instruction::GetElementPtr: {
1760 APInt AccConstIndices(IndexWidth, 0);
1762 auto AddIndexToKnown = [&](
KnownBits IndexBits) {
1771 "Index width can't be larger than pointer width");
1777 for (
unsigned i = 1, e =
I->getNumOperands(); i != e; ++i, ++GTI) {
1779 if (
Known.isUnknown())
1782 Value *Index =
I->getOperand(i);
1793 "Access to structure field must be known at compile time");
1801 AccConstIndices +=
Offset;
1818 CI->getValue().
sextOrTrunc(IndexWidth) * StrideInBytes;
1838 if (!
Known.isUnknown() && !AccConstIndices.
isZero())
1842 case Instruction::PHI: {
1845 Value *Start =
nullptr, *Step =
nullptr;
1859 case Instruction::LShr:
1860 case Instruction::AShr:
1861 case Instruction::Shl:
1862 case Instruction::UDiv:
1869 case Instruction::URem: {
1882 case Instruction::Shl:
1886 case Instruction::LShr:
1887 case Instruction::UDiv:
1888 case Instruction::URem:
1893 case Instruction::AShr:
1905 case Instruction::Add:
1906 case Instruction::Sub:
1907 case Instruction::And:
1908 case Instruction::Or:
1909 case Instruction::Mul: {
1914 KnownStart, KnownStep, Q,
Depth);
1933 case Instruction::Add: {
1935 Known.makeNonNegative();
1937 Known.makeNegative();
1943 case Instruction::Sub: {
1947 Known.makeNonNegative();
1949 Known.makeNegative();
1954 case Instruction::Mul:
1956 Known.makeNonNegative();
1977 if (IntrinsicID == Intrinsic::umin || IntrinsicID == Intrinsic::umax) {
1980 P, Start, Step, DemandedElts, KnownStart, KnownStep, Q,
Depth);
1982 if (IntrinsicID == Intrinsic::umin) {
1997 if (
P->getNumIncomingValues() == 0)
2007 Known.setAllConflict();
2008 for (
const Use &U :
P->operands()) {
2043 if ((TrueSucc == CxtPhi->
getParent()) !=
2060 Known2 = KnownUnion;
2068 if (
Known.isUnknown())
2074 case Instruction::Call:
2075 case Instruction::Invoke: {
2085 if (std::optional<ConstantRange>
Range = CB->getRange())
2088 if (
const Value *RV = CB->getReturnedArgOperand()) {
2089 if (RV->getType() ==
I->getType()) {
2096 if (
Known.hasConflict())
2101 switch (
II->getIntrinsicID()) {
2104 case Intrinsic::abs: {
2106 bool IntMinIsPoison =
match(
II->getArgOperand(1),
m_One());
2110 case Intrinsic::bitreverse:
2114 case Intrinsic::bswap:
2118 case Intrinsic::ctlz: {
2124 PossibleLZ = std::min(PossibleLZ,
BitWidth - 1);
2126 Known.Zero.setBitsFrom(LowBits);
2129 case Intrinsic::cttz: {
2135 PossibleTZ = std::min(PossibleTZ,
BitWidth - 1);
2137 Known.Zero.setBitsFrom(LowBits);
2140 case Intrinsic::ctpop: {
2146 Known.Zero.setBitsFrom(LowBits);
2151 case Intrinsic::fshr:
2152 case Intrinsic::fshl: {
2160 Known =
II->getIntrinsicID() == Intrinsic::fshl
2165 case Intrinsic::clmul:
2170 case Intrinsic::pext:
2175 case Intrinsic::pdep:
2180 case Intrinsic::smulh:
2185 case Intrinsic::umulh:
2190 case Intrinsic::uadd_sat:
2195 case Intrinsic::usub_sat:
2200 case Intrinsic::sadd_sat:
2205 case Intrinsic::ssub_sat:
2211 case Intrinsic::vector_reverse:
2217 case Intrinsic::vector_reduce_and:
2218 case Intrinsic::vector_reduce_or:
2219 case Intrinsic::vector_reduce_umax:
2220 case Intrinsic::vector_reduce_umin:
2221 case Intrinsic::vector_reduce_smax:
2222 case Intrinsic::vector_reduce_smin:
2225 case Intrinsic::vector_reduce_xor: {
2232 bool EvenCnt = VecTy->getElementCount().isKnownEven();
2236 if (VecTy->isScalableTy() || EvenCnt)
2237 Known.One.clearAllBits();
2240 case Intrinsic::vector_reduce_add: {
2245 Known =
Known.reduceAdd(VecTy->getNumElements());
2248 case Intrinsic::umin:
2253 case Intrinsic::umax:
2258 case Intrinsic::smin:
2264 case Intrinsic::smax:
2270 case Intrinsic::ptrmask: {
2273 const Value *Mask =
I->getOperand(1);
2274 Known2 =
KnownBits(Mask->getType()->getScalarSizeInBits());
2280 case Intrinsic::x86_sse2_pmulh_w:
2281 case Intrinsic::x86_avx2_pmulh_w:
2282 case Intrinsic::x86_avx512_pmulh_w_512:
2287 case Intrinsic::x86_sse2_pmulhu_w:
2288 case Intrinsic::x86_avx2_pmulhu_w:
2289 case Intrinsic::x86_avx512_pmulhu_w_512:
2294 case Intrinsic::x86_sse42_crc32_64_64:
2295 Known.Zero.setBitsFrom(32);
2297 case Intrinsic::x86_ssse3_phadd_d_128:
2298 case Intrinsic::x86_ssse3_phadd_w_128:
2299 case Intrinsic::x86_avx2_phadd_d:
2300 case Intrinsic::x86_avx2_phadd_w: {
2302 I, DemandedElts, Q,
Depth,
2308 case Intrinsic::x86_ssse3_phadd_sw_128:
2309 case Intrinsic::x86_avx2_phadd_sw: {
2314 case Intrinsic::x86_ssse3_phsub_d_128:
2315 case Intrinsic::x86_ssse3_phsub_w_128:
2316 case Intrinsic::x86_avx2_phsub_d:
2317 case Intrinsic::x86_avx2_phsub_w: {
2319 I, DemandedElts, Q,
Depth,
2325 case Intrinsic::x86_ssse3_phsub_sw_128:
2326 case Intrinsic::x86_avx2_phsub_sw: {
2331 case Intrinsic::riscv_vsetvli:
2332 case Intrinsic::riscv_vsetvlimax: {
2333 bool HasAVL =
II->getIntrinsicID() == Intrinsic::riscv_vsetvli;
2346 MaxVL = std::min(MaxVL, CI->getZExtValue());
2348 unsigned KnownZeroFirstBit =
Log2_32(MaxVL) + 1;
2350 Known.Zero.setBitsFrom(KnownZeroFirstBit);
2353 case Intrinsic::amdgcn_mbcnt_hi:
2354 case Intrinsic::amdgcn_mbcnt_lo: {
2357 Known.Zero.setBitsFrom(
2358 II->getIntrinsicID() == Intrinsic::amdgcn_mbcnt_lo ? 6 : 5);
2363 case Intrinsic::vscale: {
2364 if (!
II->getParent() || !
II->getFunction())
2370 case Intrinsic::stepvector: {
2372 unsigned MinNumElts = VecTy->getElementCount().getKnownMinValue();
2376 bool Overflow =
false;
2378 if (VecTy->isScalableTy()) {
2379 if (!
II->getParent() || !
II->getFunction())
2383 .
umul_ov(MaxNumElts, Overflow);
2398 case Instruction::ShuffleVector: {
2412 APInt DemandedLHS, DemandedRHS;
2417 Known.setAllConflict();
2418 if (!!DemandedLHS) {
2419 const Value *
LHS = Shuf->getOperand(0);
2422 if (
Known.isUnknown())
2425 if (!!DemandedRHS) {
2426 const Value *
RHS = Shuf->getOperand(1);
2432 case Instruction::InsertElement: {
2437 const Value *Vec =
I->getOperand(0);
2438 const Value *Elt =
I->getOperand(1);
2441 APInt DemandedVecElts = DemandedElts;
2442 bool NeedsElt =
true;
2444 if (CIdx && CIdx->getValue().ult(NumElts)) {
2445 DemandedVecElts.
clearBit(CIdx->getZExtValue());
2446 NeedsElt = DemandedElts[CIdx->getZExtValue()];
2449 Known.setAllConflict();
2453 if (
Known.isUnknown())
2457 if (!DemandedVecElts.
isZero()) {
2463 case Instruction::ExtractElement: {
2466 const Value *Vec =
I->getOperand(0);
2467 const Value *Idx =
I->getOperand(1);
2476 if (CIdx && CIdx->getValue().ult(NumElts))
2481 case Instruction::ExtractValue:
2486 switch (
II->getIntrinsicID()) {
2488 case Intrinsic::uadd_with_overflow:
2489 case Intrinsic::sadd_with_overflow:
2491 true,
II->getArgOperand(0),
II->getArgOperand(1),
false,
2492 false, DemandedElts,
Known, Known2, Q,
Depth);
2494 case Intrinsic::usub_with_overflow:
2495 case Intrinsic::ssub_with_overflow:
2497 false,
II->getArgOperand(0),
II->getArgOperand(1),
false,
2498 false, DemandedElts,
Known, Known2, Q,
Depth);
2500 case Intrinsic::umul_with_overflow:
2501 case Intrinsic::smul_with_overflow:
2503 false, DemandedElts,
Known, Known2, Q,
Depth);
2509 case Instruction::Freeze:
2553 if (!DemandedElts) {
2559 assert(V &&
"No Value?");
2563 Type *Ty = V->getType();
2566 assert((Ty->isIntOrIntVectorTy(
BitWidth) || Ty->isPtrOrPtrVectorTy()) &&
2567 "Not integer or pointer type!");
2571 FVTy->getNumElements() == DemandedElts.
getBitWidth() &&
2572 "DemandedElt width should equal the fixed vector number of elements");
2575 "DemandedElt width should be 1 for scalars or scalable vectors");
2581 "V and Known should have same BitWidth");
2584 "V and Known should have same BitWidth");
2605 Known.setAllConflict();
2606 for (
unsigned i = 0, e = CDV->getNumElements(); i != e; ++i) {
2607 if (!DemandedElts[i])
2609 APInt Elt = CDV->getElementAsAPInt(i);
2613 if (
Known.hasConflict())
2622 Known.setAllConflict();
2623 for (
unsigned i = 0, e = CV->getNumOperands(); i != e; ++i) {
2624 if (!DemandedElts[i])
2634 const APInt &Elt = ElementCI->getValue();
2638 if (
Known.hasConflict())
2655 if (std::optional<ConstantRange>
Range =
A->getRange())
2665 if (!GA->isInterposable())
2673 if (std::optional<ConstantRange> CR = GV->getAbsoluteSymbolRange())
2674 Known = CR->toKnownBits();
2679 Align Alignment = V->getPointerAlignment(Q.
DL);
2695 Value *Start =
nullptr, *Step =
nullptr;
2701 if (U.get() == Start) {
2717 case Instruction::Mul:
2722 case Instruction::SDiv:
2728 case Instruction::UDiv:
2734 case Instruction::Shl:
2736 case Instruction::AShr:
2740 case Instruction::LShr:
2777 if (OrZero && V->getType()->getScalarSizeInBits() == 1)
2819 return F->hasFnAttribute(Attribute::VScaleRange);
2836 switch (
I->getOpcode()) {
2837 case Instruction::ZExt:
2839 case Instruction::Trunc:
2841 case Instruction::Shl:
2845 case Instruction::LShr:
2849 case Instruction::UDiv:
2853 case Instruction::Mul:
2857 case Instruction::And:
2868 case Instruction::Add: {
2874 if (
match(
I->getOperand(0),
2878 if (
match(
I->getOperand(1),
2883 unsigned BitWidth = V->getType()->getScalarSizeInBits();
2892 if ((~(LHSBits.
Zero & RHSBits.
Zero)).isPowerOf2())
2905 case Instruction::Select:
2908 case Instruction::PHI: {
2929 RecQ.CxtI = PN->getIncomingBlock(U)->getTerminator();
2930 return isKnownToBeAPowerOfTwo(U.get(), OrZero, RecQ, NewDepth);
2933 case Instruction::Invoke:
2934 case Instruction::Call: {
2936 switch (
II->getIntrinsicID()) {
2937 case Intrinsic::umax:
2938 case Intrinsic::smax:
2939 case Intrinsic::umin:
2940 case Intrinsic::smin:
2945 case Intrinsic::bitreverse:
2946 case Intrinsic::bswap:
2948 case Intrinsic::fshr:
2949 case Intrinsic::fshl:
2951 if (
II->getArgOperand(0) ==
II->getArgOperand(1))
2954 case Intrinsic::riscv_vsetvlimax:
2958 case Intrinsic::read_register:
2959 case Intrinsic::read_volatile_register: {
2963 if (!M || !M->getTargetTriple().isRISCV())
2988 F =
I->getFunction();
2992 if (!
GEP->hasNoUnsignedWrap() &&
2993 !(
GEP->isInBounds() &&
2998 assert(
GEP->getType()->isPointerTy() &&
"We only support plain pointer GEP");
3009 GTI != GTE; ++GTI) {
3011 if (
StructType *STy = GTI.getStructTypeOrNull()) {
3016 if (ElementOffset > 0)
3022 if (GTI.getSequentialElementStride(Q.
DL).isZero())
3056 unsigned NumUsesExplored = 0;
3057 for (
auto &U : V->uses()) {
3066 if (V->getType()->isPointerTy()) {
3068 if (CB->isArgOperand(&U) &&
3069 CB->paramHasNonNullAttr(CB->getArgOperandNo(&U),
3097 NonNullIfTrue =
true;
3099 NonNullIfTrue =
false;
3105 for (
const auto *CmpU : UI->
users()) {
3107 if (Visited.
insert(CmpU).second)
3110 while (!WorkList.
empty()) {
3119 for (
const auto *CurrU : Curr->users())
3120 if (Visited.
insert(CurrU).second)
3127 BI->getSuccessor(NonNullIfTrue ? 0 : 1);
3131 }
else if (NonNullIfTrue &&
isGuard(Curr) &&
3146 const unsigned NumRanges = Ranges->getNumOperands() / 2;
3148 for (
unsigned i = 0; i < NumRanges; ++i) {
3164 Value *Start =
nullptr, *Step =
nullptr;
3165 const APInt *StartC, *StepC;
3171 case Instruction::Add:
3177 case Instruction::Mul:
3180 case Instruction::Shl:
3182 case Instruction::AShr:
3183 case Instruction::LShr:
3185 case Instruction::Or:
3201 bool NUW,
unsigned Depth) {
3258 return ::isKnownNonEqual(
X,
Y, DemandedElts, Q,
Depth);
3263 bool NUW,
unsigned Depth) {
3292 auto ShiftOp = [&](
const APInt &Lhs,
const APInt &Rhs) {
3293 switch (
I->getOpcode()) {
3294 case Instruction::Shl:
3295 return Lhs.
shl(Rhs);
3296 case Instruction::LShr:
3297 return Lhs.
lshr(Rhs);
3298 case Instruction::AShr:
3299 return Lhs.
ashr(Rhs);
3305 auto InvShiftOp = [&](
const APInt &Lhs,
const APInt &Rhs) {
3306 switch (
I->getOpcode()) {
3307 case Instruction::Shl:
3308 return Lhs.
lshr(Rhs);
3309 case Instruction::LShr:
3310 case Instruction::AShr:
3311 return Lhs.
shl(Rhs);
3324 if (MaxShift.
uge(NumBits))
3327 if (!ShiftOp(KnownVal.
One, MaxShift).isZero())
3332 if (InvShiftOp(KnownVal.
Zero, NumBits - MaxShift)
3341 const APInt &DemandedElts,
3344 switch (
I->getOpcode()) {
3345 case Instruction::Alloca:
3347 return I->getType()->getPointerAddressSpace() == 0;
3348 case Instruction::GetElementPtr:
3349 if (
I->getType()->isPointerTy())
3352 case Instruction::BitCast: {
3380 Type *FromTy =
I->getOperand(0)->getType();
3385 case Instruction::IntToPtr:
3394 case Instruction::PtrToAddr:
3398 case Instruction::PtrToInt:
3402 I->getType()->getScalarSizeInBits())
3405 case Instruction::Trunc:
3408 if (TI->hasNoSignedWrap() || TI->hasNoUnsignedWrap())
3414 case Instruction::Xor:
3415 case Instruction::Sub:
3417 I->getOperand(1),
Depth);
3418 case Instruction::Or:
3429 case Instruction::SExt:
3430 case Instruction::ZExt:
3434 case Instruction::Shl: {
3449 case Instruction::LShr:
3450 case Instruction::AShr: {
3460 if (
Known.isNegative())
3480 case Instruction::UDiv:
3481 case Instruction::SDiv: {
3496 if (
I->getOpcode() == Instruction::SDiv) {
3498 XKnown = XKnown.
abs(
false);
3499 YKnown = YKnown.
abs(
false);
3505 return XUgeY && *XUgeY;
3507 case Instruction::Add: {
3517 case Instruction::Mul: {
3523 case Instruction::Select: {
3530 auto SelectArmIsNonZero = [&](
bool IsTrueArm) {
3532 Op = IsTrueArm ?
I->getOperand(1) :
I->getOperand(2);
3550 if (SelectArmIsNonZero(
true) &&
3551 SelectArmIsNonZero(
false))
3555 case Instruction::PHI: {
3566 RecQ.CxtI = PN->getIncomingBlock(U)->getTerminator();
3570 BasicBlock *TrueSucc, *FalseSucc;
3571 if (match(RecQ.CxtI,
3572 m_Br(m_c_ICmp(Pred, m_Specific(U.get()), m_Value(X)),
3573 m_BasicBlock(TrueSucc), m_BasicBlock(FalseSucc)))) {
3575 if ((TrueSucc == PN->getParent()) != (FalseSucc == PN->getParent())) {
3577 if (FalseSucc == PN->getParent())
3578 Pred = CmpInst::getInversePredicate(Pred);
3579 if (cmpExcludesZero(Pred, X))
3587 case Instruction::InsertElement: {
3591 const Value *Vec =
I->getOperand(0);
3592 const Value *Elt =
I->getOperand(1);
3596 APInt DemandedVecElts = DemandedElts;
3597 bool SkipElt =
false;
3599 if (CIdx && CIdx->getValue().ult(NumElts)) {
3600 DemandedVecElts.
clearBit(CIdx->getZExtValue());
3601 SkipElt = !DemandedElts[CIdx->getZExtValue()];
3607 (DemandedVecElts.
isZero() ||
3610 case Instruction::ExtractElement:
3612 const Value *Vec = EEI->getVectorOperand();
3613 const Value *Idx = EEI->getIndexOperand();
3616 unsigned NumElts = VecTy->getNumElements();
3618 if (CIdx && CIdx->getValue().ult(NumElts))
3624 case Instruction::ShuffleVector: {
3628 APInt DemandedLHS, DemandedRHS;
3634 return (DemandedRHS.
isZero() ||
3639 case Instruction::Freeze:
3643 case Instruction::Load: {
3660 case Instruction::ExtractValue: {
3666 case Instruction::Add:
3671 case Instruction::Sub:
3674 case Instruction::Mul:
3677 false,
false,
Depth);
3683 case Instruction::Call:
3684 case Instruction::Invoke: {
3686 if (
I->getType()->isPointerTy()) {
3687 if (
Call->isReturnNonNull())
3695 if (std::optional<ConstantRange>
Range =
Call->getRange()) {
3696 const APInt ZeroValue(
Range->getBitWidth(), 0);
3697 if (!
Range->contains(ZeroValue))
3700 if (
const Value *RV =
Call->getReturnedArgOperand())
3706 switch (
II->getIntrinsicID()) {
3707 case Intrinsic::sshl_sat:
3708 case Intrinsic::ushl_sat:
3709 case Intrinsic::abs:
3710 case Intrinsic::bitreverse:
3711 case Intrinsic::bswap:
3712 case Intrinsic::ctpop:
3716 case Intrinsic::ssub_sat:
3724 case Intrinsic::sadd_sat:
3726 II->getArgOperand(1),
3727 true,
false,
Depth);
3729 case Intrinsic::vector_reverse:
3733 case Intrinsic::vector_reduce_or:
3734 case Intrinsic::vector_reduce_umax:
3735 case Intrinsic::vector_reduce_umin:
3736 case Intrinsic::vector_reduce_smax:
3737 case Intrinsic::vector_reduce_smin:
3739 case Intrinsic::umax:
3740 case Intrinsic::uadd_sat:
3748 case Intrinsic::smax: {
3751 auto IsNonZero = [&](
Value *
Op, std::optional<bool> &OpNonZero,
3753 if (!OpNonZero.has_value())
3754 OpNonZero = OpKnown.isNonZero() ||
3759 std::optional<bool> Op0NonZero, Op1NonZero;
3763 IsNonZero(
II->getArgOperand(1), Op1NonZero, Op1Known))
3768 IsNonZero(
II->getArgOperand(0), Op0NonZero, Op0Known))
3770 return IsNonZero(
II->getArgOperand(1), Op1NonZero, Op1Known) &&
3771 IsNonZero(
II->getArgOperand(0), Op0NonZero, Op0Known);
3773 case Intrinsic::smin: {
3789 case Intrinsic::umin:
3792 case Intrinsic::cttz:
3795 case Intrinsic::ctlz:
3798 case Intrinsic::fshr:
3799 case Intrinsic::fshl:
3801 if (
II->getArgOperand(0) ==
II->getArgOperand(1))
3804 case Intrinsic::vscale:
3806 case Intrinsic::experimental_get_vector_length:
3820 return Known.One != 0;
3831 Type *Ty = V->getType();
3838 FVTy->getNumElements() == DemandedElts.
getBitWidth() &&
3839 "DemandedElt width should equal the fixed vector number of elements");
3842 "DemandedElt width should be 1 for scalars");
3847 if (
C->isNullValue())
3856 for (
unsigned i = 0, e = VecTy->getNumElements(); i != e; ++i) {
3857 if (!DemandedElts[i])
3859 Constant *Elt =
C->getAggregateElement(i);
3876 if (!GV->isAbsoluteSymbolRef() && !GV->hasExternalWeakLinkage() &&
3877 GV->getType()->getAddressSpace() == 0)
3887 if (std::optional<ConstantRange>
Range =
A->getRange()) {
3888 const APInt ZeroValue(
Range->getBitWidth(), 0);
3889 if (!
Range->contains(ZeroValue))
3906 if (((
A->hasPassPointeeByValueCopyAttr() &&
3908 A->hasNonNullAttr()))
3930 APInt DemandedElts =
3932 return ::isKnownNonZero(V, DemandedElts, Q,
Depth);
3941static std::optional<std::pair<Value*, Value*>>
3945 return std::nullopt;
3947 auto getOperands = [&](
unsigned OpNum) ->
auto {
3954 case Instruction::Or:
3959 case Instruction::Xor:
3960 case Instruction::Add: {
3968 case Instruction::Sub:
3970 return getOperands(1);
3972 return getOperands(0);
3974 case Instruction::Mul: {
3980 if ((!OBO1->hasNoUnsignedWrap() || !OBO2->hasNoUnsignedWrap()) &&
3981 (!OBO1->hasNoSignedWrap() || !OBO2->hasNoSignedWrap()))
3988 return getOperands(0);
3991 case Instruction::Shl: {
3996 if ((!OBO1->hasNoUnsignedWrap() || !OBO2->hasNoUnsignedWrap()) &&
3997 (!OBO1->hasNoSignedWrap() || !OBO2->hasNoSignedWrap()))
4001 return getOperands(0);
4004 case Instruction::AShr:
4005 case Instruction::LShr: {
4008 if (!PEO1->isExact() || !PEO2->isExact())
4012 return getOperands(0);
4015 case Instruction::SExt:
4016 case Instruction::ZExt:
4018 return getOperands(0);
4020 case Instruction::PHI: {
4028 Value *Start1 =
nullptr, *Step1 =
nullptr;
4030 Value *Start2 =
nullptr, *Step2 =
nullptr;
4049 return std::make_pair(Start1, Start2);
4052 return std::nullopt;
4059 const APInt &DemandedElts,
4067 case Instruction::Or:
4071 case Instruction::Xor:
4072 case Instruction::Add:
4093 (OBO->hasNoUnsignedWrap() || OBO->hasNoSignedWrap()) &&
4094 !
C->isZero() && !
C->isOne() &&
4108 (OBO->hasNoUnsignedWrap() || OBO->hasNoSignedWrap()) &&
4122 bool UsedFullRecursion =
false;
4124 if (!VisitedBBs.
insert(IncomBB).second)
4128 const APInt *C1, *C2;
4133 if (UsedFullRecursion)
4137 RecQ.
CxtI = IncomBB->getTerminator();
4140 UsedFullRecursion =
true;
4154 const Value *Cond2 = SI2->getCondition();
4157 DemandedElts, Q,
Depth + 1) &&
4159 DemandedElts, Q,
Depth + 1);
4172 if (!
A->getType()->isPointerTy() || !
B->getType()->isPointerTy())
4176 if (!GEPA || GEPA->getNumIndices() != 1 || !
isa<Constant>(GEPA->idx_begin()))
4181 if (!PN || PN->getNumIncomingValues() != 2)
4186 Value *Start =
nullptr;
4188 if (PN->getIncomingValue(0) == Step)
4189 Start = PN->getIncomingValue(1);
4190 else if (PN->getIncomingValue(1) == Step)
4191 Start = PN->getIncomingValue(0);
4202 APInt StartOffset(IndexWidth, 0);
4203 Start = Start->stripAndAccumulateInBoundsConstantOffsets(Q.
DL, StartOffset);
4204 APInt StepOffset(IndexWidth, 0);
4210 APInt OffsetB(IndexWidth, 0);
4211 B =
B->stripAndAccumulateInBoundsConstantOffsets(Q.
DL, OffsetB);
4212 return Start ==
B &&
4224 auto IsKnownNonEqualFromDominatingCondition = [&](
const Value *V) {
4245 if (IsKnownNonEqualFromDominatingCondition(
V1) ||
4246 IsKnownNonEqualFromDominatingCondition(V2))
4260 "Got assumption for the wrong function!");
4261 assert(
I->getIntrinsicID() == Intrinsic::assume &&
4262 "must be an assume intrinsic");
4285 std::optional<bool> Implied =
4287 return Implied && *Implied;
4308 if (
O1 &&
O2 &&
O1->getOpcode() ==
O2->getOpcode()) {
4334 if (
V1->getType()->isIntOrIntVectorTy()) {
4375 const APInt &DemandedElts,
4381 unsigned MinSignBits = TyBits;
4383 for (
unsigned i = 0; i != NumElts; ++i) {
4384 if (!DemandedElts[i])
4391 MinSignBits = std::min(MinSignBits, Elt->getValue().getNumSignBits());
4398 const APInt &DemandedElts,
4404 assert(Result > 0 &&
"At least one sign bit needs to be present!");
4416 const APInt &DemandedElts,
4418 Type *Ty = V->getType();
4424 FVTy->getNumElements() == DemandedElts.
getBitWidth() &&
4425 "DemandedElt width should equal the fixed vector number of elements");
4428 "DemandedElt width should be 1 for scalars");
4442 unsigned FirstAnswer = 1;
4453 case Instruction::BitCast: {
4454 Value *Src = U->getOperand(0);
4455 Type *SrcTy = Src->getType();
4459 if (!SrcTy->isIntOrIntVectorTy())
4465 if ((SrcBits % TyBits) != 0)
4478 case Instruction::SExt:
4479 Tmp = TyBits - U->getOperand(0)->getType()->getScalarSizeInBits();
4483 case Instruction::SDiv: {
4484 const APInt *Denominator;
4497 return std::min(TyBits, NumBits + Denominator->
logBase2());
4502 case Instruction::SRem: {
4505 const APInt *Denominator;
4526 unsigned ResBits = TyBits - Denominator->
ceilLogBase2();
4527 Tmp = std::max(Tmp, ResBits);
4533 case Instruction::AShr: {
4538 if (ShAmt->
uge(TyBits))
4541 Tmp += ShAmtLimited;
4542 if (Tmp > TyBits) Tmp = TyBits;
4546 case Instruction::Shl: {
4551 if (ShAmt->
uge(TyBits))
4556 ShAmt->
uge(TyBits -
X->getType()->getScalarSizeInBits())) {
4558 Tmp += TyBits -
X->getType()->getScalarSizeInBits();
4562 if (ShAmt->
uge(Tmp))
4569 case Instruction::And:
4570 case Instruction::Or:
4571 case Instruction::Xor:
4576 FirstAnswer = std::min(Tmp, Tmp2);
4583 case Instruction::Select: {
4587 const APInt *CLow, *CHigh;
4595 return std::min(Tmp, Tmp2);
4598 case Instruction::Add:
4602 if (Tmp == 1)
break;
4606 if (CRHS->isAllOnesValue()) {
4612 if ((
Known.Zero | 1).isAllOnes())
4617 if (
Known.isNonNegative())
4624 return std::min(Tmp, Tmp2) - 1;
4626 case Instruction::Sub:
4633 if (CLHS->isNullValue()) {
4638 if ((
Known.Zero | 1).isAllOnes())
4644 if (
Known.isNonNegative())
4655 return std::min(Tmp, Tmp2) - 1;
4657 case Instruction::Mul: {
4660 unsigned SignBitsOp0 =
4662 if (SignBitsOp0 == 1)
4664 unsigned SignBitsOp1 =
4666 if (SignBitsOp1 == 1)
4668 unsigned OutValidBits =
4669 (TyBits - SignBitsOp0 + 1) + (TyBits - SignBitsOp1 + 1);
4670 return OutValidBits > TyBits ? 1 : TyBits - OutValidBits + 1;
4673 case Instruction::PHI: {
4677 if (NumIncomingValues > 4)
break;
4679 if (NumIncomingValues == 0)
break;
4685 for (
unsigned i = 0, e = NumIncomingValues; i != e; ++i) {
4686 if (Tmp == 1)
return Tmp;
4689 DemandedElts, RecQ,
Depth + 1));
4694 case Instruction::Trunc: {
4699 unsigned OperandTyBits = U->getOperand(0)->getType()->getScalarSizeInBits();
4700 if (Tmp > (OperandTyBits - TyBits))
4701 return Tmp - (OperandTyBits - TyBits);
4706 case Instruction::ExtractElement:
4713 case Instruction::ShuffleVector: {
4721 APInt DemandedLHS, DemandedRHS;
4726 Tmp = std::numeric_limits<unsigned>::max();
4727 if (!!DemandedLHS) {
4728 const Value *
LHS = Shuf->getOperand(0);
4735 if (!!DemandedRHS) {
4736 const Value *
RHS = Shuf->getOperand(1);
4738 Tmp = std::min(Tmp, Tmp2);
4744 assert(Tmp <= TyBits &&
"Failed to determine minimum sign bits");
4747 case Instruction::Call: {
4749 switch (
II->getIntrinsicID()) {
4752 case Intrinsic::abs:
4760 case Intrinsic::smin:
4761 case Intrinsic::smax: {
4762 const APInt *CLow, *CHigh;
4777 if (
unsigned VecSignBits =
4786 return std::max(FirstAnswer,
Known.countMinSignBits());
4795 if (
F->isIntrinsic())
4796 return F->getIntrinsicID();
4805 if (Func == NotLibFunc)
4814 return Intrinsic::sin;
4818 return Intrinsic::cos;
4822 return Intrinsic::tan;
4826 return Intrinsic::asin;
4830 return Intrinsic::acos;
4834 return Intrinsic::atan;
4836 case LibFunc_atan2f:
4837 case LibFunc_atan2l:
4838 return Intrinsic::atan2;
4842 return Intrinsic::sinh;
4846 return Intrinsic::cosh;
4850 return Intrinsic::tanh;
4854 return Intrinsic::exp;
4858 return Intrinsic::exp2;
4860 case LibFunc_exp10f:
4861 case LibFunc_exp10l:
4862 return Intrinsic::exp10;
4866 return Intrinsic::log;
4868 case LibFunc_log10f:
4869 case LibFunc_log10l:
4870 return Intrinsic::log10;
4874 return Intrinsic::log2;
4878 return Intrinsic::fabs;
4882 return Intrinsic::minnum;
4886 return Intrinsic::maxnum;
4887 case LibFunc_copysign:
4888 case LibFunc_copysignf:
4889 case LibFunc_copysignl:
4890 return Intrinsic::copysign;
4892 case LibFunc_floorf:
4893 case LibFunc_floorl:
4894 return Intrinsic::floor;
4898 return Intrinsic::ceil;
4900 case LibFunc_truncf:
4901 case LibFunc_truncl:
4902 return Intrinsic::trunc;
4906 return Intrinsic::rint;
4907 case LibFunc_nearbyint:
4908 case LibFunc_nearbyintf:
4909 case LibFunc_nearbyintl:
4910 return Intrinsic::nearbyint;
4912 case LibFunc_roundf:
4913 case LibFunc_roundl:
4914 return Intrinsic::round;
4915 case LibFunc_roundeven:
4916 case LibFunc_roundevenf:
4917 case LibFunc_roundevenl:
4918 return Intrinsic::roundeven;
4922 return Intrinsic::pow;
4926 return Intrinsic::sqrt;
4936 bool &TrueIfSigned) {
4939 TrueIfSigned =
true;
4940 return RHS.isZero();
4942 TrueIfSigned =
true;
4943 return RHS.isAllOnes();
4945 TrueIfSigned =
false;
4946 return RHS.isAllOnes();
4948 TrueIfSigned =
false;
4949 return RHS.isZero();
4952 TrueIfSigned =
true;
4953 return RHS.isMaxSignedValue();
4956 TrueIfSigned =
true;
4957 return RHS.isMinSignedValue();
4960 TrueIfSigned =
false;
4961 return RHS.isMinSignedValue();
4964 TrueIfSigned =
false;
4965 return RHS.isMaxSignedValue();
4975 unsigned Depth = 0) {
5001 KnownFromContext.
knownNot(~(CondIsTrue ? MaskIfTrue : MaskIfFalse));
5005 KnownFromContext.
knownNot(CondIsTrue ? ~Mask : Mask);
5011 if (TrueIfSigned == CondIsTrue)
5023static std::tuple<int, int, int>
5037 if (!
match(BI->getCondition(),
5052 bool KnownStrictlyLess =
5057 BI->getSuccessor(IsLessEqual ? 0 : 1));
5060 int Exp =
ilogb(*LimitC) + 1;
5071 MaxExpNonZero = std::min(MaxExpNonZero, Exp);
5072 MaxExp = std::min(MaxExp, std::max(Exp, 0));
5088 return KnownFromContext;
5108 return KnownFromContext;
5118 "Got assumption for the wrong function!");
5119 assert(
I->getIntrinsicID() == Intrinsic::assume &&
5120 "must be an assume intrinsic");
5126 true, Q.
CxtI, KnownFromContext);
5129 return KnownFromContext;
5133 Value *Arm,
bool Invert,
5139 !Invert, SQ.
CxtI, KnownSrc,
5157 APInt DemandedElts =
5163 const APInt &DemandedElts,
5168 if ((InterestedClasses &
5174 KnownSrc, Q,
Depth + 1);
5180 case Intrinsic::minimum:
5182 case Intrinsic::maximum:
5184 case Intrinsic::minimumnum:
5186 case Intrinsic::maximumnum:
5188 case Intrinsic::minnum:
5190 case Intrinsic::maxnum:
5205 const Value *SubFloorX;
5217 assert(
Known.isUnknown() &&
"should not be called with known information");
5219 if (!DemandedElts) {
5234 Known.setSignBit(
false);
5240 Known.setSignBit(
false);
5249 bool SignBitAllZero =
true;
5250 bool SignBitAllOne =
true;
5253 unsigned NumElts = VFVTy->getNumElements();
5254 for (
unsigned i = 0; i != NumElts; ++i) {
5255 if (!DemandedElts[i])
5271 const APFloat &
C = CElt->getValueAPF();
5272 Known.setKnownFPClasses(
Known.getKnownFPClasses() |
C.classify());
5274 SignBitAllZero =
false;
5276 SignBitAllOne =
false;
5278 if (SignBitAllOne != SignBitAllZero)
5279 Known.setSignBit(SignBitAllOne);
5285 for (
size_t I = 0,
E = CDS->getNumElements();
I !=
E; ++
I)
5286 Known |= CDS->getElementAsAPFloat(
I).classify();
5293 for (
const Use &
Op : CA->operands()) {
5300 Known |= CFP->getValueAPF().classify();
5308 KnownNotFromFlags |= CB->getRetNoFPClass();
5310 KnownNotFromFlags |= Arg->getNoFPClass();
5314 if (FPOp->hasNoNaNs())
5315 KnownNotFromFlags |=
fcNan;
5316 if (FPOp->hasNoInfs())
5317 KnownNotFromFlags |=
fcInf;
5321 KnownNotFromFlags |= ~AssumedClasses.getKnownFPClasses();
5325 InterestedClasses &= ~KnownNotFromFlags;
5328 Known.knownNot(KnownNotFromFlags);
5331 Known.signBitMustBeOne();
5333 Known.signBitMustBeZero();
5344 const unsigned Opc =
Op->getOpcode();
5346 case Instruction::FNeg: {
5352 case Instruction::Select: {
5353 auto ComputeForArm = [&](
Value *Arm,
bool Invert) {
5363 ComputeForArm(
Op->getOperand(1),
false)
5364 .intersectWith(ComputeForArm(
Op->getOperand(2),
true));
5367 case Instruction::Load: {
5368 const MDNode *NoFPClass =
5378 case Instruction::Call: {
5382 case Intrinsic::fabs: {
5393 case Intrinsic::copysign: {
5399 KnownSign, Q,
Depth + 1);
5400 Known.copysign(KnownSign);
5403 case Intrinsic::fma:
5404 case Intrinsic::fmuladd: {
5409 if (
II->getArgOperand(0) ==
II->getArgOperand(1)) {
5412 InterestedClasses, KnownAddend, Q,
Depth + 1);
5414 InterestedClasses, KnownSrc, Q,
Depth + 1);
5418 II->getType()->getScalarType()->getFltSemantics();
5422 if (KnownNotFromFlags &
fcNan) {
5427 if (KnownNotFromFlags &
fcInf) {
5437 for (
int I = 0;
I != 3; ++
I) {
5439 InterestedClasses, KnownSrc[
I], Q,
Depth + 1);
5440 if (KnownSrc[
I].isUnknown())
5443 if (KnownNotFromFlags &
fcNan)
5445 if (KnownNotFromFlags &
fcInf)
5451 II->getType()->getScalarType()->getFltSemantics();
5457 case Intrinsic::sqrt:
5458 case Intrinsic::experimental_constrained_sqrt: {
5461 if (InterestedClasses &
fcNan)
5465 KnownSrc, Q,
Depth + 1);
5473 II->getType()->getScalarType()->getFltSemantics();
5483 case Intrinsic::sin: {
5486 KnownSrc, Q,
Depth + 1);
5490 case Intrinsic::cos: {
5493 KnownSrc, Q,
Depth + 1);
5497 case Intrinsic::tan: {
5500 KnownSrc, Q,
Depth + 1);
5504 case Intrinsic::sinh: {
5507 KnownSrc, Q,
Depth + 1);
5511 case Intrinsic::cosh: {
5514 KnownSrc, Q,
Depth + 1);
5518 case Intrinsic::tanh: {
5521 KnownSrc, Q,
Depth + 1);
5525 case Intrinsic::asin: {
5528 KnownSrc, Q,
Depth + 1);
5532 case Intrinsic::acos: {
5535 KnownSrc, Q,
Depth + 1);
5539 case Intrinsic::atan: {
5542 KnownSrc, Q,
Depth + 1);
5546 case Intrinsic::atan2: {
5564 KnownY, Q,
Depth + 1);
5566 KnownX, Q,
Depth + 1);
5570 F ?
F->getDenormalMode(
5571 II->getType()->getScalarType()->getFltSemantics())
5576 case Intrinsic::maxnum:
5577 case Intrinsic::minnum:
5578 case Intrinsic::minimum:
5579 case Intrinsic::maximum:
5580 case Intrinsic::minimumnum:
5581 case Intrinsic::maximumnum: {
5584 KnownLHS, Q,
Depth + 1);
5586 KnownRHS, Q,
Depth + 1);
5591 F ?
F->getDenormalMode(
5592 II->getType()->getScalarType()->getFltSemantics())
5599 case Intrinsic::canonicalize: {
5602 KnownSrc, Q,
Depth + 1);
5606 F ?
F->getDenormalMode(
5607 II->getType()->getScalarType()->getFltSemantics())
5612 case Intrinsic::vector_reduce_fmax:
5613 case Intrinsic::vector_reduce_fmin:
5614 case Intrinsic::vector_reduce_fmaximum:
5615 case Intrinsic::vector_reduce_fminimum:
5616 case Intrinsic::vector_reduce_fmaximumnum:
5617 case Intrinsic::vector_reduce_fminimumnum: {
5621 InterestedClasses, Q,
Depth + 1);
5623 if (!
Known.isKnownNeverNaN())
5624 Known.setSignBit(std::nullopt);
5628 case Intrinsic::vector_reverse:
5631 II->getFastMathFlags(), InterestedClasses, Q,
Depth + 1);
5633 case Intrinsic::trunc:
5634 case Intrinsic::floor:
5635 case Intrinsic::ceil:
5636 case Intrinsic::rint:
5637 case Intrinsic::nearbyint:
5638 case Intrinsic::round:
5639 case Intrinsic::roundeven: {
5647 KnownSrc, Q,
Depth + 1);
5650 KnownSrc, IID == Intrinsic::trunc,
5651 V->getType()->getScalarType()->isMultiUnitFPType());
5654 case Intrinsic::exp:
5655 case Intrinsic::exp2:
5656 case Intrinsic::exp10:
5657 case Intrinsic::amdgcn_exp2: {
5660 KnownSrc, Q,
Depth + 1);
5664 Type *EltTy =
II->getType()->getScalarType();
5665 if (IID == Intrinsic::amdgcn_exp2 && EltTy->
isFloatTy())
5670 case Intrinsic::fptrunc_round: {
5675 case Intrinsic::log:
5676 case Intrinsic::log10:
5677 case Intrinsic::log2:
5678 case Intrinsic::experimental_constrained_log:
5679 case Intrinsic::experimental_constrained_log10:
5680 case Intrinsic::experimental_constrained_log2:
5681 case Intrinsic::amdgcn_log: {
5705 if (InterestedSrcs !=
fcNone)
5707 KnownSrc, Q,
Depth + 1);
5710 F ?
F->getDenormalMode(
5711 II->getType()->getScalarType()->getFltSemantics())
5716 case Intrinsic::pow: {
5717 const bool WantNaN = (InterestedClasses &
fcNan) !=
fcNone;
5719 if (!WantNaN && !WantNegative)
5729 InterestedRHS |=
fcNan;
5740 KnownLHS, Q,
Depth + 1);
5749 KnownRHS, Q,
Depth + 1);
5753 case Intrinsic::powi: {
5758 const Value *Exp =
II->getArgOperand(1);
5759 unsigned BitWidth = Exp->getType()->getIntegerBitWidth();
5764 if (InterestedClasses &
fcNan)
5765 InterestedSrcs |=
fcNan;
5766 if (!ExponentKnownBits.
isZero()) {
5767 if (InterestedClasses &
fcInf)
5774 if (InterestedSrcs !=
fcNone)
5776 KnownSrc, Q,
Depth + 1);
5781 case Intrinsic::ldexp: {
5784 KnownSrc, Q,
Depth + 1);
5788 const Value *ExpArg =
II->getArgOperand(1);
5792 : ConstantRange::getFull(
5796 II->getType()->getScalarType()->getFltSemantics();
5806 case Intrinsic::arithmetic_fence: {
5811 case Intrinsic::experimental_constrained_sitofp:
5812 case Intrinsic::experimental_constrained_uitofp:
5822 if (IID == Intrinsic::experimental_constrained_uitofp)
5823 Known.signBitMustBeZero();
5828 case Intrinsic::amdgcn_fract: {
5831 if (InterestedClasses &
fcNan) {
5834 InterestedClasses, KnownSrc, Q,
Depth + 1);
5844 case Intrinsic::amdgcn_rcp: {
5847 KnownSrc, Q,
Depth + 1);
5849 Known.propagateNonNaN(KnownSrc);
5851 Type *EltTy =
II->getType()->getScalarType();
5874 case Intrinsic::amdgcn_rsq: {
5880 KnownSrc, Q,
Depth + 1);
5892 Type *EltTy =
II->getType()->getScalarType();
5912 case Intrinsic::amdgcn_trig_preop: {
5917 case Intrinsic::convert_from_arbitrary_fp: {
5927 II->getType()->getScalarType()->getFltSemantics();
5962 case Instruction::FAdd:
5963 case Instruction::FSub: {
5966 Op->getOpcode() == Instruction::FAdd &&
5968 bool WantNaN = (InterestedClasses &
fcNan) !=
fcNone;
5971 if (!WantNaN && !WantNegative && !WantNegZero)
5977 if (InterestedClasses &
fcNan)
5978 InterestedSrcs |=
fcInf;
5980 KnownRHS, Q,
Depth + 1);
5983 bool Self =
Op->getOperand(0) ==
Op->getOperand(1) &&
5987 KnownLHS = KnownRHS;
5991 WantNegZero ||
Opc == Instruction::FSub) {
5996 Op->getType()->getScalarType()->getFltSemantics();
6000 if (Self &&
Opc == Instruction::FAdd) {
6008 KnownLHS, Q,
Depth + 1);
6019 case Instruction::FMul: {
6022 F ?
F->getDenormalMode(
6023 Op->getType()->getScalarType()->getFltSemantics())
6066 case Instruction::FDiv: {
6067 const bool WantNan = (InterestedClasses &
fcNan) !=
fcNone;
6071 Op->getType()->getScalarType()->getFltSemantics();
6075 if (
Op->getOperand(0) ==
Op->getOperand(1) &&
6094 if (!WantNan && !WantNegative && !WantPositive)
6101 bool KnowSomethingUseful =
6106 if (KnowSomethingUseful)
6113 case Instruction::FRem: {
6114 const bool WantNan = (InterestedClasses &
fcNan) !=
fcNone;
6120 F ?
F->getDenormalMode(
6121 Op->getType()->getScalarType()->getFltSemantics())
6124 if (
Op->getOperand(0) ==
Op->getOperand(1) &&
6143 if (!WantNan && !WantNegative && !WantPositive)
6155 if (KnowSomethingUseful || WantPositive)
6163 case Instruction::FPExt: {
6166 KnownSrc, Q,
Depth + 1);
6169 Op->getType()->getScalarType()->getFltSemantics();
6171 Op->getOperand(0)->getType()->getScalarType()->getFltSemantics();
6176 case Instruction::FPTrunc: {
6181 case Instruction::SIToFP:
6182 case Instruction::UIToFP: {
6193 if (
Op->getOpcode() == Instruction::UIToFP)
6194 Known.signBitMustBeZero();
6207 if (
Op->getOpcode() == Instruction::SIToFP) {
6212 Known.signBitMustBeZero();
6214 Known.signBitMustBeOne();
6219 if (InterestedClasses &
fcInf) {
6224 if (
Op->getOpcode() == Instruction::UIToFP)
6226 else if (
Op->getOpcode() == Instruction::SIToFP)
6231 Type *FPTy =
Op->getType()->getScalarType();
6238 case Instruction::ExtractElement: {
6241 const Value *Vec =
Op->getOperand(0);
6243 APInt DemandedVecElts;
6245 unsigned NumElts = VecTy->getNumElements();
6248 if (CIdx && CIdx->getValue().ult(NumElts))
6251 DemandedVecElts =
APInt(1, 1);
6257 case Instruction::InsertElement: {
6261 const Value *Vec =
Op->getOperand(0);
6262 const Value *Elt =
Op->getOperand(1);
6265 APInt DemandedVecElts = DemandedElts;
6266 bool NeedsElt =
true;
6268 if (CIdx && CIdx->getValue().ult(NumElts)) {
6269 DemandedVecElts.
clearBit(CIdx->getZExtValue());
6270 NeedsElt = DemandedElts[CIdx->getZExtValue()];
6277 if (
Known.isUnknown())
6284 if (!DemandedVecElts.
isZero()) {
6293 case Instruction::ShuffleVector: {
6302 APInt DemandedLHS, DemandedRHS;
6307 if (!!DemandedLHS) {
6308 const Value *
LHS = Shuf->getOperand(0);
6313 if (
Known.isUnknown())
6319 if (!!DemandedRHS) {
6321 const Value *
RHS = Shuf->getOperand(1);
6329 case Instruction::ExtractValue: {
6336 switch (
II->getIntrinsicID()) {
6337 case Intrinsic::frexp: {
6342 InterestedClasses, KnownSrc, Q,
Depth + 1);
6346 Op->getType()->getScalarType()->getFltSemantics();
6363 case Instruction::PHI: {
6366 if (
P->getNumIncomingValues() == 0)
6373 if (
Depth < PhiRecursionLimit) {
6380 for (
const Use &U :
P->operands()) {
6411 if (
P->getNumIncomingValues() != 2 ||
Known.cannotBeOrderedLessThanZero())
6413 for (
unsigned I = 0;
I < 2;
I++) {
6414 Value *RecurValue =
P->getIncomingValue(1 -
I);
6422 switch (
II->getIntrinsicID()) {
6423 case Intrinsic::fma:
6424 case Intrinsic::fmuladd: {
6438 case Instruction::BitCast: {
6441 !Src->getType()->isIntOrIntVectorTy())
6444 const Type *Ty =
Op->getType();
6446 Value *CastLHS, *CastRHS;
6458 Known = KnownLHS | KnownRHS;
6477 const APInt &DemandedElts,
6484 return KnownClasses;
6510 InterestedClasses &=
~fcNan;
6512 InterestedClasses &=
~fcInf;
6518 Result.setKnownFPClasses(Result.getKnownFPClasses() & ~
fcNan);
6520 Result.setKnownFPClasses(Result.getKnownFPClasses() & ~
fcInf);
6529 APInt DemandedElts =
6538 return Known.isKnownNeverNegZero();
6545 return Known.cannotBeOrderedLessThanZero();
6551 return Known.isKnownNeverInfinity();
6558 return Known.isKnownNeverNaN() &&
Known.isKnownNeverInfinity();
6567 return Known.isKnownNeverNaN();
6577 return Known.getSignBit();
6583 if (FPOp->hasNoSignedZeros())
6587 switch (
User->getOpcode()) {
6588 case Instruction::FPToSI:
6589 case Instruction::FPToUI:
6591 case Instruction::FCmp:
6594 case Instruction::Call:
6596 switch (
II->getIntrinsicID()) {
6597 case Intrinsic::fabs:
6599 case Intrinsic::copysign:
6600 return U.getOperandNo() == 0;
6601 case Intrinsic::is_fpclass: {
6621 if (FPOp->hasNoNaNs())
6625 switch (
User->getOpcode()) {
6626 case Instruction::FPToSI:
6627 case Instruction::FPToUI:
6630 case Instruction::FAdd:
6631 case Instruction::FSub:
6632 case Instruction::FMul:
6633 case Instruction::FDiv:
6634 case Instruction::FRem:
6635 case Instruction::FPTrunc:
6636 case Instruction::FPExt:
6637 case Instruction::FCmp:
6640 case Instruction::FNeg:
6641 case Instruction::Select:
6642 case Instruction::PHI:
6644 case Instruction::Ret:
6645 return User->getFunction()->getAttributes().getRetNoFPClass() &
6647 case Instruction::Call:
6648 case Instruction::Invoke: {
6650 switch (
II->getIntrinsicID()) {
6651 case Intrinsic::fabs:
6653 case Intrinsic::copysign:
6654 return U.getOperandNo() == 0;
6656 case Intrinsic::maxnum:
6657 case Intrinsic::minnum:
6658 case Intrinsic::maximum:
6659 case Intrinsic::minimum:
6660 case Intrinsic::maximumnum:
6661 case Intrinsic::minimumnum:
6662 case Intrinsic::canonicalize:
6663 case Intrinsic::fma:
6664 case Intrinsic::fmuladd:
6665 case Intrinsic::sqrt:
6666 case Intrinsic::pow:
6667 case Intrinsic::powi:
6668 case Intrinsic::fptoui_sat:
6669 case Intrinsic::fptosi_sat:
6670 case Intrinsic::is_fpclass:
6700 switch (
I->getOpcode()) {
6701 case Instruction::SIToFP:
6702 case Instruction::UIToFP:
6710 case Instruction::Call: {
6713 case Intrinsic::trunc:
6714 case Intrinsic::floor:
6715 case Intrinsic::ceil:
6716 case Intrinsic::rint:
6717 case Intrinsic::nearbyint:
6718 case Intrinsic::round:
6719 case Intrinsic::roundeven:
6737 if (V->getType()->isIntegerTy(8))
6748 if (
DL.getTypeStoreSize(V->getType()).isZero())
6763 if (
C->isNullValue())
6772 ConstantInt::get(Ctx, CFP->getValue().bitcastToAPInt()),
DL);
6780 if (CI->getBitWidth() % 8 == 0) {
6781 if (!CI->getValue().isSplat(8))
6783 return ConstantInt::get(Ctx, CI->getValue().trunc(8));
6788 if (CE->getOpcode() == Instruction::IntToPtr) {
6790 unsigned BitWidth =
DL.getPointerSizeInBits(PtrTy->getAddressSpace());
6803 if (LHS == UndefInt8)
6805 if (RHS == UndefInt8)
6811 Value *Val = UndefInt8;
6812 for (uint64_t
I = 0, E = CA->getNumElements();
I != E; ++
I)
6819 Value *Val = UndefInt8;
6854 while (PrevTo != OrigTo) {
6901 unsigned IdxSkip = Idxs.
size();
6914 std::optional<BasicBlock::iterator> InsertBefore) {
6917 if (idx_range.
empty())
6920 assert((V->getType()->isStructTy() || V->getType()->isArrayTy()) &&
6921 "Not looking at a struct or array?");
6923 "Invalid indices for type?");
6926 C =
C->getAggregateElement(idx_range[0]);
6927 if (!
C)
return nullptr;
6934 const unsigned *req_idx = idx_range.
begin();
6935 for (
const unsigned *i =
I->idx_begin(), *e =
I->idx_end();
6936 i != e; ++i, ++req_idx) {
6937 if (req_idx == idx_range.
end()) {
6967 ArrayRef(req_idx, idx_range.
end()), InsertBefore);
6976 unsigned size =
I->getNumIndices() + idx_range.
size();
6981 Idxs.
append(
I->idx_begin(),
I->idx_end());
6987 &&
"Number of indices added not correct?");
7003 unsigned ElementSize, uint64_t
Offset) {
7004 assert(V &&
"V should not be null.");
7005 assert((ElementSize % 8) == 0 &&
7006 "ElementSize expected to be a multiple of the size of a byte.");
7007 unsigned ElementSizeInBytes = ElementSize / 8;
7019 APInt Off(
DL.getIndexTypeSizeInBits(V->getType()), 0);
7026 uint64_t StartIdx = Off.getLimitedValue();
7033 if ((StartIdx % ElementSizeInBytes) != 0)
7036 Offset += StartIdx / ElementSizeInBytes;
7042 uint64_t SizeInBytes =
DL.getTypeStoreSize(GVTy).getFixedValue();
7043 uint64_t
Length = SizeInBytes / ElementSizeInBytes;
7045 Slice.Array =
nullptr;
7057 Type *InitElTy = ArrayInit->getElementType();
7062 ArrayTy = ArrayInit->getType();
7067 if (ElementSize != 8)
7086 Slice.Array = Array;
7088 Slice.Length = NumElts -
Offset;
7102 if (Slice.Array ==
nullptr) {
7113 if (Slice.Length == 1) {
7125 Str = Str.
substr(Slice.Offset);
7131 Str = Str.substr(0, Str.find(
'\0'));
7144 unsigned CharSize) {
7146 V = V->stripPointerCasts();
7151 if (!PHIs.
insert(PN).second)
7156 for (
Value *IncValue : PN->incoming_values()) {
7158 if (Len == 0)
return 0;
7160 if (Len == ~0ULL)
continue;
7162 if (Len != LenSoFar && LenSoFar != ~0ULL)
7174 if (Len1 == 0)
return 0;
7176 if (Len2 == 0)
return 0;
7177 if (Len1 == ~0ULL)
return Len2;
7178 if (Len2 == ~0ULL)
return Len1;
7179 if (Len1 != Len2)
return 0;
7188 if (Slice.Array ==
nullptr)
7196 unsigned NullIndex = 0;
7197 for (
unsigned E = Slice.Length; NullIndex <
E; ++NullIndex) {
7198 if (Slice.Array->getElementAsInteger(Slice.Offset + NullIndex) == 0)
7202 return NullIndex + 1;
7208 if (!V->getType()->isPointerTy())
7215 return Len == ~0ULL ? 1 : Len;
7220 bool MustPreserveOffset,
7221 bool MustPreserveProvenance) {
7223 "getArgumentAliasingToReturnedPointer only works on nonnull calls");
7224 if (
const Value *RV =
Call->getReturnedArgOperand())
7228 Call, MustPreserveOffset, MustPreserveProvenance))
7229 return Call->getArgOperand(0);
7235 bool MustPreserveProvenance) {
7236 switch (
Call->getIntrinsicID()) {
7237 case Intrinsic::launder_invariant_group:
7238 case Intrinsic::aarch64_irg:
7239 case Intrinsic::aarch64_tagp:
7249 case Intrinsic::amdgcn_make_buffer_rsrc:
7250 return !MustPreserveProvenance;
7251 case Intrinsic::ptrmask:
7252 return !MustPreserveOffset;
7253 case Intrinsic::threadlocal_address:
7256 return !
Call->getParent()->getParent()->isPresplitCoroutine();
7273 if (!PrevValue || LI->
getLoopFor(PrevValue->getParent()) != L)
7275 if (!PrevValue || LI->
getLoopFor(PrevValue->getParent()) != L)
7284 if (!L->isLoopInvariant(
Load->getPointerOperand()))
7290 bool MustPreserveProvenance) {
7291 for (
unsigned Count = 0; MaxLookup == 0 ||
Count < MaxLookup; ++
Count) {
7293 const Value *PtrOp =
GEP->getPointerOperand();
7304 if (GA->isInterposable())
7306 V = GA->getAliasee();
7310 if (
PHI->getNumIncomingValues() == 1) {
7311 V =
PHI->getIncomingValue(0);
7325 Call,
false, MustPreserveProvenance)) {
7333 assert(V->getType()->isPointerTy() &&
"Unexpected operand type!");
7340 const LoopInfo *LI,
unsigned MaxLookup) {
7348 if (!Visited.
insert(
P).second)
7377 }
while (!Worklist.
empty());
7381 bool MustPreserveProvenance) {
7382 const unsigned MaxVisited = 8;
7387 const Value *Object =
nullptr;
7391 const Value *FirstObject =
7397 MustPreserveProvenance);
7400 if (!Visited.
insert(
P).second)
7403 if (Visited.
size() == MaxVisited)
7419 else if (Object !=
P)
7421 }
while (!Worklist.
empty());
7423 return Object ? Object : FirstObject;
7433 if (U->getOpcode() == Instruction::PtrToInt)
7434 return U->getOperand(0);
7441 if (U->getOpcode() != Instruction::Add ||
7446 V = U->getOperand(0);
7450 assert(V->getType()->isIntegerTy() &&
"Unexpected operand type!");
7461 bool AllObjectsIdentified =
true;
7468 for (
const Value *V : Objs) {
7469 if (!Visited.
insert(V).second)
7474 if (O->getType()->isPointerTy()) {
7482 }
while (!Working.
empty());
7483 return AllObjectsIdentified;
7491 auto AddWork = [&](
Value *V) {
7492 if (Visited.
insert(V).second)
7502 if (Result && Result != AI)
7506 AddWork(CI->getOperand(0));
7508 for (
Value *IncValue : PN->incoming_values())
7511 AddWork(
SI->getTrueValue());
7512 AddWork(
SI->getFalseValue());
7514 if (OffsetZero && !
GEP->hasAllZeroIndices())
7516 AddWork(
GEP->getPointerOperand());
7518 Value *Returned = CB->getReturnedArgOperand();
7526 }
while (!Worklist.
empty());
7532 const Value *V,
bool AllowLifetime,
bool AllowDroppable) {
7538 if (AllowLifetime &&
II->isLifetimeStartOrEnd())
7541 if (AllowDroppable &&
II->isDroppable())
7562 return (!Shuffle || Shuffle->isSelect()) &&
7569 bool IgnoreUBImplyingAttrs) {
7571 AC, DT, TLI, UseVariableInfo,
7572 IgnoreUBImplyingAttrs);
7578 bool UseVariableInfo,
bool IgnoreUBImplyingAttrs) {
7582 auto hasEqualReturnAndLeadingOperandTypes =
7583 [](
const Instruction *Inst,
unsigned NumLeadingOperands) {
7587 for (
unsigned ItOp = 0; ItOp < NumLeadingOperands; ++ItOp)
7593 hasEqualReturnAndLeadingOperandTypes(Inst, 2));
7595 hasEqualReturnAndLeadingOperandTypes(Inst, 1));
7602 case Instruction::UDiv:
7603 case Instruction::URem: {
7610 case Instruction::SDiv:
7611 case Instruction::SRem: {
7613 const APInt *Numerator, *Denominator;
7617 if (*Denominator == 0)
7629 case Instruction::Load: {
7630 if (!UseVariableInfo)
7643 case Instruction::Call: {
7647 const Function *Callee = CI->getCalledFunction();
7651 if (!Callee || !Callee->isSpeculatable())
7655 return IgnoreUBImplyingAttrs || !CI->hasUBImplyingAttrs();
7657 case Instruction::VAArg:
7658 case Instruction::Alloca:
7659 case Instruction::Invoke:
7660 case Instruction::CallBr:
7661 case Instruction::PHI:
7662 case Instruction::Store:
7663 case Instruction::Ret:
7664 case Instruction::UncondBr:
7665 case Instruction::CondBr:
7666 case Instruction::IndirectBr:
7667 case Instruction::Switch:
7668 case Instruction::Unreachable:
7669 case Instruction::Fence:
7670 case Instruction::AtomicRMW:
7671 case Instruction::AtomicCmpXchg:
7672 case Instruction::LandingPad:
7673 case Instruction::Resume:
7674 case Instruction::CatchSwitch:
7675 case Instruction::CatchPad:
7676 case Instruction::CatchRet:
7677 case Instruction::CleanupPad:
7678 case Instruction::CleanupRet:
7684 if (
I.mayReadOrWriteMemory())
7752 unsigned BitWidth = LHS->getType()->getScalarSizeInBits();
7797 if (
Add &&
Add->hasNoSignedWrap()) {
7836 bool LHSOrRHSKnownNonNegative =
7838 bool LHSOrRHSKnownNegative =
7840 if (LHSOrRHSKnownNonNegative || LHSOrRHSKnownNegative) {
7843 if ((AddKnown.
isNonNegative() && LHSOrRHSKnownNonNegative) ||
7844 (AddKnown.
isNegative() && LHSOrRHSKnownNegative))
7919 assert(EVI->getNumIndices() == 1 &&
"Obvious from CI's type");
7921 if (EVI->getIndices()[0] == 0)
7924 assert(EVI->getIndices()[0] == 1 &&
"Obvious from CI's type");
7926 for (
const auto *U : EVI->users())
7937 auto AllUsesGuardedByBranch = [&](
const CondBrInst *BI) {
7941 for (
const auto *Result :
Results) {
7944 if (DT.
dominates(NoWrapEdge, Result->getParent()))
7947 for (
const auto &RU : Result->uses())
7955 return llvm::any_of(GuardingBranches, AllUsesGuardedByBranch);
7967 unsigned NumElts = FVTy->getNumElements();
7968 for (
unsigned i = 0; i < NumElts; ++i)
7969 ShiftAmounts.
push_back(
C->getAggregateElement(i));
7977 return CI && CI->getValue().ult(
C->getType()->getIntegerBitWidth());
7984 bool ConsiderFlagsAndMetadata) {
7987 Op->hasPoisonGeneratingAnnotations())
7990 unsigned Opcode =
Op->getOpcode();
7994 case Instruction::Shl:
7995 case Instruction::AShr:
7996 case Instruction::LShr:
7998 case Instruction::FPToSI:
7999 case Instruction::FPToUI:
8003 case Instruction::Call:
8005 switch (
II->getIntrinsicID()) {
8007 case Intrinsic::ctlz:
8008 case Intrinsic::cttz:
8009 case Intrinsic::abs:
8012 case Intrinsic::sshl_sat:
8013 case Intrinsic::ushl_sat:
8021 case Instruction::CallBr:
8022 case Instruction::Invoke: {
8024 return !CB->hasRetAttr(Attribute::NoUndef) &&
8025 !CB->hasFnAttr(Attribute::NoCreateUndefOrPoison);
8027 case Instruction::InsertElement:
8028 case Instruction::ExtractElement: {
8031 unsigned IdxOp =
Op->getOpcode() == Instruction::InsertElement ? 2 : 1;
8035 Idx->getValue().uge(VTy->getElementCount().getKnownMinValue());
8038 case Instruction::ShuffleVector: {
8044 case Instruction::FNeg:
8045 case Instruction::PHI:
8046 case Instruction::Select:
8047 case Instruction::ExtractValue:
8048 case Instruction::InsertValue:
8049 case Instruction::Freeze:
8050 case Instruction::ICmp:
8051 case Instruction::FCmp:
8052 case Instruction::GetElementPtr:
8054 case Instruction::AddrSpaceCast:
8069 bool ConsiderFlagsAndMetadata) {
8071 ConsiderFlagsAndMetadata);
8076 ConsiderFlagsAndMetadata);
8081 if (ValAssumedPoison == V)
8084 const unsigned MaxDepth = 2;
8085 if (
Depth >= MaxDepth)
8090 return propagatesPoison(Op) &&
8091 directlyImpliesPoison(ValAssumedPoison, Op, Depth + 1);
8115 const unsigned MaxDepth = 2;
8116 if (
Depth >= MaxDepth)
8122 return impliesPoison(Op, V, Depth + 1);
8129 return ::impliesPoison(ValAssumedPoison, V, 0);
8144 if (
A->hasAttribute(Attribute::NoUndef) ||
8145 A->hasAttribute(Attribute::Dereferenceable) ||
8146 A->hasAttribute(Attribute::DereferenceableOrNull))
8161 if (
C->getType()->isVectorTy()) {
8164 if (
Constant *SplatC =
C->getSplatValue())
8172 return !
C->containsConstantExpression();
8185 auto *StrippedV = V->stripPointerCastsSameRepresentation();
8190 auto OpCheck = [&](
const Value *V) {
8201 if (CB->hasRetAttr(Attribute::NoUndef) ||
8202 CB->hasRetAttr(Attribute::Dereferenceable) ||
8203 CB->hasRetAttr(Attribute::DereferenceableOrNull))
8210 unsigned Num = PN->getNumIncomingValues();
8211 bool IsWellDefined =
true;
8212 for (
unsigned i = 0; i < Num; ++i) {
8213 if (PN == PN->getIncomingValue(i))
8215 auto *TI = PN->getIncomingBlock(i)->getTerminator();
8217 DT,
Depth + 1, Kind)) {
8218 IsWellDefined =
false;
8229 }
else if (
all_of(Opr->operands(), OpCheck))
8235 if (
I->hasMetadata(LLVMContext::MD_noundef) ||
8236 I->hasMetadata(LLVMContext::MD_dereferenceable) ||
8237 I->hasMetadata(LLVMContext::MD_dereferenceable_or_null))
8257 auto *Dominator = DNode->
getIDom();
8262 auto *TI = Dominator->getBlock()->getTerminatorOrNull();
8266 Cond = BI->getCondition();
8268 Cond =
SI->getCondition();
8277 if (
any_of(Opr->operands(), [V](
const Use &U) {
8278 return V == U && propagatesPoison(U);
8284 Dominator = Dominator->getIDom();
8297 return ::isGuaranteedNotToBeUndefOrPoison(V, AC, CtxI, DT,
Depth,
8304 return ::isGuaranteedNotToBeUndefOrPoison(V, AC, CtxI, DT,
Depth,
8311 return ::isGuaranteedNotToBeUndefOrPoison(V, AC, CtxI, DT,
Depth,
8335 while (!Worklist.
empty()) {
8344 if (
I != Root && !
any_of(
I->operands(), [&KnownPoison](
const Use &U) {
8345 return KnownPoison.contains(U) && propagatesPoison(U);
8349 if (KnownPoison.
insert(
I).second)
8361 return ::computeOverflowForSignedAdd(
Add->getOperand(0),
Add->getOperand(1),
8369 return ::computeOverflowForSignedAdd(LHS, RHS,
nullptr, SQ);
8401 return !
I->mayThrow() &&
I->willReturn();
8415 unsigned ScanLimit) {
8422 assert(ScanLimit &&
"scan limit must be non-zero");
8424 if (--ScanLimit == 0)
8438 if (
I->getParent() != L->getHeader())
return false;
8441 if (&LI ==
I)
return true;
8444 llvm_unreachable(
"Instruction not contained in its own parent basic block.");
8450 case Intrinsic::sadd_with_overflow:
8451 case Intrinsic::ssub_with_overflow:
8452 case Intrinsic::smul_with_overflow:
8453 case Intrinsic::uadd_with_overflow:
8454 case Intrinsic::usub_with_overflow:
8455 case Intrinsic::umul_with_overflow:
8460 case Intrinsic::ctpop:
8461 case Intrinsic::ctlz:
8462 case Intrinsic::cttz:
8463 case Intrinsic::abs:
8464 case Intrinsic::smax:
8465 case Intrinsic::smin:
8466 case Intrinsic::umax:
8467 case Intrinsic::umin:
8468 case Intrinsic::scmp:
8469 case Intrinsic::is_fpclass:
8470 case Intrinsic::ptrmask:
8471 case Intrinsic::ucmp:
8472 case Intrinsic::bitreverse:
8473 case Intrinsic::bswap:
8474 case Intrinsic::sadd_sat:
8475 case Intrinsic::ssub_sat:
8476 case Intrinsic::sshl_sat:
8477 case Intrinsic::uadd_sat:
8478 case Intrinsic::usub_sat:
8479 case Intrinsic::ushl_sat:
8480 case Intrinsic::smul_fix:
8481 case Intrinsic::smul_fix_sat:
8482 case Intrinsic::umul_fix:
8483 case Intrinsic::umul_fix_sat:
8484 case Intrinsic::pow:
8485 case Intrinsic::powi:
8486 case Intrinsic::sin:
8487 case Intrinsic::sinh:
8488 case Intrinsic::cos:
8489 case Intrinsic::cosh:
8490 case Intrinsic::sincos:
8491 case Intrinsic::sincospi:
8492 case Intrinsic::tan:
8493 case Intrinsic::tanh:
8494 case Intrinsic::asin:
8495 case Intrinsic::acos:
8496 case Intrinsic::atan:
8497 case Intrinsic::atan2:
8498 case Intrinsic::canonicalize:
8499 case Intrinsic::sqrt:
8500 case Intrinsic::exp:
8501 case Intrinsic::exp2:
8502 case Intrinsic::exp10:
8503 case Intrinsic::log:
8504 case Intrinsic::log2:
8505 case Intrinsic::log10:
8506 case Intrinsic::modf:
8507 case Intrinsic::floor:
8508 case Intrinsic::ceil:
8509 case Intrinsic::trunc:
8510 case Intrinsic::rint:
8511 case Intrinsic::nearbyint:
8512 case Intrinsic::round:
8513 case Intrinsic::roundeven:
8514 case Intrinsic::lrint:
8515 case Intrinsic::llrint:
8516 case Intrinsic::fshl:
8517 case Intrinsic::fshr:
8518 case Intrinsic::frexp:
8519 case Intrinsic::get_active_lane_mask:
8528 switch (
I->getOpcode()) {
8529 case Instruction::Freeze:
8530 case Instruction::PHI:
8531 case Instruction::Invoke:
8533 case Instruction::Select:
8535 case Instruction::Call:
8539 case Instruction::ICmp:
8540 case Instruction::FCmp:
8541 case Instruction::GetElementPtr:
8555template <
typename CallableT>
8557 const CallableT &Handle) {
8558 switch (
I->getOpcode()) {
8559 case Instruction::Store:
8564 case Instruction::Load:
8571 case Instruction::AtomicCmpXchg:
8576 case Instruction::AtomicRMW:
8581 case Instruction::Call:
8582 case Instruction::Invoke: {
8586 for (
unsigned i = 0; i < CB->
arg_size(); ++i)
8589 CB->
paramHasAttr(i, Attribute::DereferenceableOrNull)) &&
8594 case Instruction::Ret:
8595 if (
I->getFunction()->hasRetAttribute(Attribute::NoUndef) &&
8596 Handle(
I->getOperand(0)))
8599 case Instruction::Switch:
8603 case Instruction::CondBr:
8615template <
typename CallableT>
8617 const CallableT &Handle) {
8620 switch (
I->getOpcode()) {
8622 case Instruction::UDiv:
8623 case Instruction::SDiv:
8624 case Instruction::URem:
8625 case Instruction::SRem:
8626 return Handle(
I->getOperand(1));
8635 I, [&](
const Value *V) {
return KnownPoison.
count(V); });
8654 if (Arg->getParent()->isDeclaration())
8657 Begin = BB->
begin();
8664 unsigned ScanLimit = 32;
8673 if (--ScanLimit == 0)
8677 return WellDefinedOp == V;
8697 if (--ScanLimit == 0)
8705 for (
const Use &
Op :
I.operands()) {
8715 if (
I.getOpcode() == Instruction::Select &&
8716 YieldsPoison.
count(
I.getOperand(1)) &&
8717 YieldsPoison.
count(
I.getOperand(2))) {
8723 if (!BB || !Visited.
insert(BB).second)
8733 return ::programUndefinedIfUndefOrPoison(Inst,
false);
8737 return ::programUndefinedIfUndefOrPoison(Inst,
true);
8748 if (!
C->getElementType()->isFloatingPointTy())
8750 for (
unsigned I = 0,
E =
C->getNumElements();
I <
E; ++
I) {
8751 if (
C->getElementAsAPFloat(
I).isNaN())
8765 return !
C->isZero();
8768 if (!
C->getElementType()->isFloatingPointTy())
8770 for (
unsigned I = 0,
E =
C->getNumElements();
I <
E; ++
I) {
8771 if (
C->getElementAsAPFloat(
I).isZero())
8794 if (CmpRHS == FalseVal) {
8844 if (CmpRHS != TrueVal) {
8883 Value *
A =
nullptr, *
B =
nullptr;
8888 Value *
C =
nullptr, *
D =
nullptr;
8890 if (L.Flavor != R.Flavor)
8942 return {L.Flavor,
SPNB_NA,
false};
8949 return {L.Flavor,
SPNB_NA,
false};
8956 return {L.Flavor,
SPNB_NA,
false};
8963 return {L.Flavor,
SPNB_NA,
false};
8979 return ConstantInt::get(V->getType(), ~(*
C));
9036 if ((CmpLHS == TrueVal &&
match(FalseVal,
m_APInt(C2))) ||
9056 assert(
X &&
Y &&
"Invalid operand");
9058 auto IsNegationOf = [&](
const Value *
X,
const Value *
Y) {
9063 if (NeedNSW && !BO->hasNoSignedWrap())
9067 if (!AllowPoison && !Zero->isNullValue())
9074 if (IsNegationOf(
X,
Y) || IsNegationOf(
Y,
X))
9101 const APInt *RHSC1, *RHSC2;
9112 return CR1.inverse() == CR2;
9146std::optional<std::pair<CmpPredicate, Constant *>>
9149 "Only for relational integer predicates.");
9151 return std::nullopt;
9157 bool WillIncrement =
9162 auto ConstantIsOk = [Pred, WillIncrement, IsSigned](
ConstantInt *
C) {
9163 if (WillIncrement ?
C->isMaxValue(IsSigned) :
C->isMinValue(IsSigned))
9166 if (!Pred.hasSameSign())
9171 return WillIncrement ? !
C->isMaxValue(!IsSigned)
9172 : !
C->isMinValue(!IsSigned);
9175 Constant *SafeReplacementConstant =
nullptr;
9178 if (!ConstantIsOk(CI))
9179 return std::nullopt;
9181 unsigned NumElts = FVTy->getNumElements();
9182 for (
unsigned i = 0; i != NumElts; ++i) {
9183 Constant *Elt =
C->getAggregateElement(i);
9185 return std::nullopt;
9193 if (!CI || !ConstantIsOk(CI))
9194 return std::nullopt;
9196 if (!SafeReplacementConstant)
9197 SafeReplacementConstant = CI;
9201 Value *SplatC =
C->getSplatValue();
9204 if (!CI || !ConstantIsOk(CI))
9205 return std::nullopt;
9208 return std::nullopt;
9215 if (
C->containsUndefOrPoisonElement()) {
9216 assert(SafeReplacementConstant &&
"Replacement constant not set");
9221 Pred.hasSameSign());
9224 Constant *OneOrNegOne = ConstantInt::get(
Type, WillIncrement ? 1 : -1,
true);
9227 return std::make_pair(NewPred, NewC);
9241 Value *OutputZeroVal =
nullptr;
9244 OutputZeroVal = TrueVal;
9247 OutputZeroVal = FalseVal;
9249 if (OutputZeroVal) {
9251 CmpLHS = OutputZeroVal;
9253 CmpRHS = OutputZeroVal;
9272 bool Ordered =
false;
9283 if (LHSSafe && RHSSafe) {
9314 if (TrueVal == CmpRHS && FalseVal == CmpLHS) {
9325 if (TrueVal == CmpLHS && FalseVal == CmpRHS)
9334 auto MaybeSExtOrMulCmpLHS =
9339 if (
match(TrueVal, MaybeSExtOrMulCmpLHS)) {
9360 }
else if (
match(FalseVal, MaybeSExtOrMulCmpLHS)) {
9400 case Instruction::ZExt:
9404 case Instruction::SExt:
9408 case Instruction::Trunc:
9411 CmpConst->
getType() == SrcTy) {
9433 CastedTo = CmpConst;
9435 unsigned ExtOp = CmpI->
isSigned() ? Instruction::SExt : Instruction::ZExt;
9439 case Instruction::FPTrunc:
9442 case Instruction::FPExt:
9445 case Instruction::FPToUI:
9448 case Instruction::FPToSI:
9451 case Instruction::UIToFP:
9454 case Instruction::SIToFP:
9467 if (CastedBack && CastedBack !=
C)
9495 *CastOp = Cast1->getOpcode();
9496 Type *SrcTy = Cast1->getSrcTy();
9499 if (*CastOp == Cast2->getOpcode() && SrcTy == Cast2->getSrcTy())
9500 return Cast2->getOperand(0);
9508 Value *CastedTo =
nullptr;
9509 if (*CastOp == Instruction::Trunc) {
9523 "V2 and Cast1 should be the same type.");
9542 Value *TrueVal =
SI->getTrueValue();
9543 Value *FalseVal =
SI->getFalseValue();
9546 SI->getFastMathFlagsOrNone(),
9564 if (CastOp && CmpLHS->
getType() != TrueVal->getType()) {
9568 if (*CastOp == Instruction::FPToSI || *CastOp == Instruction::FPToUI)
9570 return ::matchSelectPattern(Pred, FMF, CmpLHS, CmpRHS,
9577 if (*CastOp == Instruction::FPToSI || *CastOp == Instruction::FPToUI)
9579 return ::matchSelectPattern(Pred, FMF, CmpLHS, CmpRHS,
9584 return ::matchSelectPattern(Pred, FMF, CmpLHS, CmpRHS, TrueVal, FalseVal,
9603 return Intrinsic::umin;
9605 return Intrinsic::umax;
9607 return Intrinsic::smin;
9609 return Intrinsic::smax;
9625 case Intrinsic::smax:
return Intrinsic::smin;
9626 case Intrinsic::smin:
return Intrinsic::smax;
9627 case Intrinsic::umax:
return Intrinsic::umin;
9628 case Intrinsic::umin:
return Intrinsic::umax;
9631 case Intrinsic::maximum:
return Intrinsic::minimum;
9632 case Intrinsic::minimum:
return Intrinsic::maximum;
9633 case Intrinsic::maxnum:
return Intrinsic::minnum;
9634 case Intrinsic::minnum:
return Intrinsic::maxnum;
9635 case Intrinsic::maximumnum:
9636 return Intrinsic::minimumnum;
9637 case Intrinsic::minimumnum:
9638 return Intrinsic::maximumnum;
9653std::pair<Intrinsic::ID, bool>
9658 bool AllCmpSingleUse =
true;
9661 if (
all_of(VL, [&SelectPattern, &AllCmpSingleUse](
Value *
I) {
9667 SelectPattern.
Flavor != CurrentPattern.Flavor)
9669 SelectPattern = CurrentPattern;
9674 switch (SelectPattern.
Flavor) {
9676 return {Intrinsic::smin, AllCmpSingleUse};
9678 return {Intrinsic::umin, AllCmpSingleUse};
9680 return {Intrinsic::smax, AllCmpSingleUse};
9682 return {Intrinsic::umax, AllCmpSingleUse};
9684 return {Intrinsic::maxnum, AllCmpSingleUse};
9686 return {Intrinsic::minnum, AllCmpSingleUse};
9694template <
typename InstTy>
9704 for (
unsigned I = 0;
I != 2; ++
I) {
9709 if (
LHS != PN &&
RHS != PN)
9721template <
typename InstTy>
9728 for (
unsigned I = 0;
I != 2; ++
I) {
9735 if (Op0 != PN && Op1 != PN && Op2 != PN)
9743 }
else if (Op1 == PN) {
9777 if (
I->arg_size() != 2 ||
I->getType() !=
I->getArgOperand(0)->getType() ||
9778 I->getType() !=
I->getArgOperand(1)->getType())
9793 if (
I->arg_size() != 3 ||
I->getType() !=
I->getArgOperand(0)->getType() ||
9794 I->getType() !=
I->getArgOperand(1)->getType() ||
9795 I->getType() !=
I->getArgOperand(2)->getType())
9825 return !
C->isNegative();
9837 const APInt *CLHS, *CRHS;
9840 return CLHS->
sle(*CRHS);
9878 const APInt *CLHS, *CRHS;
9881 return CLHS->
ule(*CRHS);
9890static std::optional<bool>
9895 return std::nullopt;
9902 return std::nullopt;
9909 return std::nullopt;
9916 return std::nullopt;
9923 return std::nullopt;
9930static std::optional<bool>
9936 if (CR.
icmp(Pred, RCR))
9943 return std::nullopt;
9956 return std::nullopt;
9962static std::optional<bool>
9993 const APInt *Unused;
10012 return std::nullopt;
10016 if (L0 == R0 && L1 == R1)
10049 ((
A == R0 &&
B == R1) || (
A == R1 &&
B == R0) ||
10069 const APInt *LC, *RC, *MaskC;
10081 return std::nullopt;
10087static std::optional<bool>
10117 if (L0 == R0 && L1 == R1) {
10118 if ((LPred & RPred) == LPred)
10120 if ((LPred & ~RPred) == LPred)
10128 if (std::optional<ConstantFPRange> DomCR =
10130 if (std::optional<ConstantFPRange> ImpliedCR =
10132 if (ImpliedCR->contains(*DomCR))
10135 if (std::optional<ConstantFPRange> ImpliedCR =
10138 if (ImpliedCR->contains(*DomCR))
10144 return std::nullopt;
10151static std::optional<bool>
10156 assert((
LHS->getOpcode() == Instruction::And ||
10157 LHS->getOpcode() == Instruction::Or ||
10158 LHS->getOpcode() == Instruction::Select) &&
10159 "Expected LHS to be 'and', 'or', or 'select'.");
10166 const Value *ALHS, *ARHS;
10171 ALHS, RHSPred, RHSOp0, RHSOp1,
DL, LHSIsTrue,
Depth + 1))
10172 return Implication;
10174 ARHS, RHSPred, RHSOp0, RHSOp1,
DL, LHSIsTrue,
Depth + 1))
10175 return Implication;
10176 return std::nullopt;
10178 return std::nullopt;
10187 return std::nullopt;
10192 return std::nullopt;
10194 assert(LHS->getType()->isIntOrIntVectorTy(1) &&
10195 "Expected integer type only!");
10199 LHSIsTrue = !LHSIsTrue;
10204 Value *LHSOp0, *LHSOp1;
10207 RHSOp1,
DL, LHSIsTrue);
10210 "Expected floating point type only!");
10213 LHSCmp->getOperand(1), RHSPred, RHSOp0, RHSOp1,
10221 if ((LHSI->getOpcode() == Instruction::And ||
10222 LHSI->getOpcode() == Instruction::Or ||
10223 LHSI->getOpcode() == Instruction::Select))
10227 return std::nullopt;
10232 bool LHSIsTrue,
unsigned Depth) {
10238 bool InvertRHS =
false;
10246 Value *RHSOp0, *RHSOp1;
10250 return InvertRHS ? !*Implied : *Implied;
10251 return std::nullopt;
10255 LHS, RHSCmp->getPredicate(), RHSCmp->getOperand(0),
10256 RHSCmp->getOperand(1),
DL, LHSIsTrue,
Depth))
10257 return InvertRHS ? !*Implied : *Implied;
10258 return std::nullopt;
10262 return std::nullopt;
10266 const Value *RHS1, *RHS2;
10268 if (std::optional<bool> Imp =
10272 if (std::optional<bool> Imp =
10278 if (std::optional<bool> Imp =
10282 if (std::optional<bool> Imp =
10288 return std::nullopt;
10293static std::pair<Value *, bool>
10295 if (!ContextI || !ContextI->
getParent())
10296 return {
nullptr,
false};
10303 return {
nullptr,
false};
10309 return {
nullptr,
false};
10312 if (TrueBB == FalseBB)
10313 return {
nullptr,
false};
10315 assert((TrueBB == ContextBB || FalseBB == ContextBB) &&
10316 "Predecessor block does not point to successor?");
10319 return {PredCond, TrueBB == ContextBB};
10325 assert(
Cond->getType()->isIntOrIntVectorTy(1) &&
"Condition must be bool");
10327 if (PredCond.first)
10329 return std::nullopt;
10338 if (PredCond.first)
10341 return std::nullopt;
10346 bool PreferSignedRange) {
10347 unsigned Width =
Lower.getBitWidth();
10350 case Instruction::Sub:
10360 if (PreferSignedRange && HasNSW && HasNUW)
10366 }
else if (HasNSW) {
10367 if (
C->isNegative()) {
10380 case Instruction::Add:
10389 if (PreferSignedRange && HasNSW && HasNUW)
10395 }
else if (HasNSW) {
10396 if (
C->isNegative()) {
10409 case Instruction::And:
10420 case Instruction::Or:
10426 case Instruction::AShr:
10432 unsigned ShiftAmount = Width - 1;
10433 if (!
C->isZero() && IIQ.
isExact(&BO))
10434 ShiftAmount =
C->countr_zero();
10435 if (
C->isNegative()) {
10438 Upper =
C->ashr(ShiftAmount) + 1;
10441 Lower =
C->ashr(ShiftAmount);
10447 case Instruction::LShr:
10453 unsigned ShiftAmount = Width - 1;
10454 if (!
C->isZero() && IIQ.
isExact(&BO))
10455 ShiftAmount =
C->countr_zero();
10456 Lower =
C->lshr(ShiftAmount);
10461 case Instruction::Shl:
10468 if (
C->isNegative()) {
10470 unsigned ShiftAmount =
C->countl_one() - 1;
10471 Lower =
C->shl(ShiftAmount);
10475 unsigned ShiftAmount =
C->countl_zero() - 1;
10477 Upper =
C->shl(ShiftAmount) + 1;
10496 case Instruction::SDiv:
10500 if (
C->isAllOnes()) {
10503 Lower = IntMin + 1;
10504 Upper = IntMax + 1;
10505 }
else if (
C->countl_zero() < Width - 1) {
10516 if (
C->isMinSignedValue()) {
10528 case Instruction::UDiv:
10538 case Instruction::SRem:
10544 if (
C->isNegative()) {
10555 case Instruction::URem:
10570 bool UseInstrInfo) {
10571 unsigned Width =
II.getType()->getScalarSizeInBits();
10573 switch (
II.getIntrinsicID()) {
10574 case Intrinsic::ctlz:
10575 case Intrinsic::cttz: {
10577 if (!UseInstrInfo || !
match(
II.getArgOperand(1),
m_One()))
10582 case Intrinsic::ctpop:
10585 APInt(Width, Width) + 1);
10586 case Intrinsic::uadd_sat:
10592 case Intrinsic::sadd_sat:
10595 if (
C->isNegative())
10606 case Intrinsic::usub_sat:
10616 case Intrinsic::ssub_sat:
10618 if (
C->isNegative())
10628 if (
C->isNegative())
10639 case Intrinsic::umin:
10640 case Intrinsic::umax:
10641 case Intrinsic::smin:
10642 case Intrinsic::smax:
10647 switch (
II.getIntrinsicID()) {
10648 case Intrinsic::umin:
10650 case Intrinsic::umax:
10652 case Intrinsic::smin:
10655 case Intrinsic::smax:
10662 case Intrinsic::abs:
10671 case Intrinsic::vscale:
10672 if (!
II.getParent() || !
II.getFunction())
10675 case Intrinsic::read_register:
10676 case Intrinsic::read_volatile_register: {
10678 if (!M || !M->getTargetTriple().isRISCV())
10688 return ConstantRange::getFull(Width);
10693 unsigned BitWidth =
SI.getType()->getScalarSizeInBits();
10697 return ConstantRange::getFull(
BitWidth);
10720 return ConstantRange::getFull(
BitWidth);
10722 switch (R.Flavor) {
10734 return ConstantRange::getFull(
BitWidth);
10741 unsigned BitWidth =
I->getType()->getScalarSizeInBits();
10742 if (!
I->getOperand(0)->getType()->getScalarType()->isHalfTy())
10758 assert(V->getType()->isIntOrIntVectorTy() &&
"Expected integer instruction");
10761 return ConstantRange::getFull(V->getType()->getScalarSizeInBits());
10764 return C->toConstantRange();
10766 unsigned BitWidth = V->getType()->getScalarSizeInBits();
10794 if (std::optional<ConstantRange>
Range =
A->getRange())
10803 if (std::optional<ConstantRange>
Range = CB->getRange())
10826 auto [AdjustedMin, AdjustedMax, AdjustedMaxNonZero] =
10829 DenormalMode Mode =
I->getFunction()->getDenormalMode(FltSem);
10832 MinExp = std::max(AdjustedMin, MinExp);
10833 MaxExp = std::min(NeverLogicalZero ? AdjustedMaxNonZero : AdjustedMax,
10852 "Got assumption for the wrong function!");
10853 assert(
I->getIntrinsicID() == Intrinsic::assume &&
10854 "must be an assume intrinsic");
10858 Value *Arg =
I->getArgOperand(0);
10861 if (!Cmp || Cmp->getOperand(0) != V)
10889 InsertAffected(
Op);
10896 auto AddAffected = [&InsertAffected](
Value *V) {
10900 auto AddCmpOperands = [&AddAffected, IsAssume](
Value *LHS,
Value *RHS) {
10911 while (!Worklist.
empty()) {
10913 if (!Visited.
insert(V).second)
10959 AddCmpOperands(
A,
B);
10993 auto AddNuwSquareOperand = [&AddAffected](
Value *
Op) {
10994 Value *SquareOp =
nullptr;
10996 AddAffected(SquareOp);
10998 AddNuwSquareOperand(
A);
10999 AddNuwSquareOperand(
B);
11004 AddCmpOperands(
A,
B);
11032 if (BO->getOpcode() == Instruction::Add ||
11033 BO->getOpcode() == Instruction::Or) {
11035 const APInt *C1, *C2;
11054 unsigned MaxCount,
bool AllowUndefOrPoison) {
11057 auto Push = [&](
const Value *V) ->
bool {
11063 if (Constants.contains(
C))
11065 if (Constants.size() == MaxCount)
11067 Constants.insert(
C);
11072 if (Visited.
insert(Inst).second)
11080 while (!Worklist.
empty()) {
11083 case Instruction::Select:
11089 case Instruction::PHI:
11092 if (IncomingValue == CurInst)
11094 if (!Push(IncomingValue))
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
AMDGPU Register Bank Select
This file implements a class to represent arbitrary precision integral constant values and operations...
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
Function Alias Analysis Results
This file contains the simple types necessary to represent the attributes associated with functions a...
static const Function * getParent(const Value *V)
static GCRegistry::Add< ShadowStackGC > C("shadow-stack", "Very portable GC for uncooperative code generators")
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static GCRegistry::Add< StatepointGC > D("statepoint-example", "an example strategy for statepoint")
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
This file contains the declarations for the subclasses of Constant, which represent the different fla...
Utilities for dealing with flags related to floating point properties and mode controls.
static Value * getCondition(Instruction *I)
static MaybeAlign getAlign(Value *Ptr)
Module.h This file contains the declarations for the Module class.
static bool hasNoUnsignedWrap(BinaryOperator &I)
ConstantRange Range(APInt(BitWidth, Low), APInt(BitWidth, High))
uint64_t IntrinsicInst * II
PowerPC Reduce CR logical Operation
const SmallVectorImpl< MachineOperand > & Cond
static cl::opt< RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode > Mode("regalloc-enable-advisor", cl::Hidden, cl::init(RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode::Default), cl::desc("Enable regalloc advisor mode"), cl::values(clEnumValN(RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode::Default, "default", "Default"), clEnumValN(RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode::Release, "release", "precompiled"), clEnumValN(RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode::Development, "development", "for training")))
std::pair< BasicBlock *, BasicBlock * > Edge
This file defines the scope_exit class, which executes user-defined cleanup logic at scope exit.
This file defines the SmallPtrSet class.
This file defines the SmallVector class.
static TableGen::Emitter::Opt Y("gen-skeleton-entry", EmitSkeleton, "Generate example skeleton entry")
This file contains the UndefPoisonKind enum and helper functions.
static void computeKnownFPClassFromCond(const Value *V, Value *Cond, bool CondIsTrue, const Instruction *CxtI, KnownFPClass &KnownFromContext, unsigned Depth=0)
static bool isPowerOfTwoRecurrence(const PHINode *PN, bool OrZero, SimplifyQuery &Q, unsigned Depth)
Try to detect a recurrence that the value of the induction variable is always a power of two (or zero...
static cl::opt< unsigned > DomConditionsMaxUses("dom-conditions-max-uses", cl::Hidden, cl::init(20))
static unsigned computeNumSignBitsVectorConstant(const Value *V, const APInt &DemandedElts, unsigned TyBits)
For vector constants, loop over the elements and find the constant with the minimum number of sign bi...
static bool isTruePredicate(CmpInst::Predicate Pred, const Value *LHS, const Value *RHS)
Return true if "icmp Pred LHS RHS" is always true.
static bool isModifyingBinopOfNonZero(const Value *V1, const Value *V2, const APInt &DemandedElts, const SimplifyQuery &Q, unsigned Depth)
Return true if V1 == (binop V2, X), where X is known non-zero.
static bool isGEPKnownNonNull(const GEPOperator *GEP, const SimplifyQuery &Q, unsigned Depth)
Test whether a GEP's result is known to be non-null.
static bool isNonEqualShl(const Value *V1, const Value *V2, const APInt &DemandedElts, const SimplifyQuery &Q, unsigned Depth)
Return true if V2 == V1 << C, where V1 is known non-zero, C is not 0 and the shift is nuw or nsw.
static bool isKnownNonNullFromDominatingCondition(const Value *V, const Instruction *CtxI, const DominatorTree *DT)
static const Value * getUnderlyingObjectFromInt(const Value *V)
This is the function that does the work of looking through basic ptrtoint+arithmetic+inttoptr sequenc...
static bool isNonZeroMul(const APInt &DemandedElts, const SimplifyQuery &Q, unsigned BitWidth, Value *X, Value *Y, bool NSW, bool NUW, unsigned Depth)
static bool rangeMetadataExcludesValue(const MDNode *Ranges, const APInt &Value)
Does the 'Range' metadata (which must be a valid MD_range operand list) ensure that the value it's at...
static KnownBits getKnownBitsFromAndXorOr(const Operator *I, const APInt &DemandedElts, const KnownBits &KnownLHS, const KnownBits &KnownRHS, const SimplifyQuery &Q, unsigned Depth)
static void breakSelfRecursivePHI(const Use *U, const PHINode *PHI, Value *&ValOut, Instruction *&CtxIOut, const PHINode **PhiOut=nullptr)
static bool isNonZeroSub(const APInt &DemandedElts, const SimplifyQuery &Q, unsigned BitWidth, Value *X, Value *Y, unsigned Depth)
static OverflowResult mapOverflowResult(ConstantRange::OverflowResult OR)
Convert ConstantRange OverflowResult into ValueTracking OverflowResult.
static void addValueAffectedByCondition(Value *V, function_ref< void(Value *)> InsertAffected)
static unsigned getBitWidth(Type *Ty, const DataLayout &DL)
Returns the bitwidth of the given scalar or pointer type.
static void setLimitsForBinOp(const BinaryOperator &BO, APInt &Lower, APInt &Upper, const InstrInfoQuery &IIQ, bool PreferSignedRange)
static Value * lookThroughCast(CmpInst *CmpI, Value *V1, Value *V2, Instruction::CastOps *CastOp)
Helps to match a select pattern in case of a type mismatch.
static std::pair< Value *, bool > getDomPredecessorCondition(const Instruction *ContextI)
static constexpr unsigned MaxInstrsToCheckForFree
Maximum number of instructions to check between assume and context instruction.
static bool isNonZeroShift(const Operator *I, const APInt &DemandedElts, const SimplifyQuery &Q, const KnownBits &KnownVal, unsigned Depth)
static std::optional< bool > isImpliedCondFCmps(FCmpInst::Predicate LPred, const Value *L0, const Value *L1, FCmpInst::Predicate RPred, const Value *R0, const Value *R1, const DataLayout &DL, bool LHSIsTrue)
Return true if LHS implies RHS (expanded to its components as "R0 RPred R1") is true.
static ConstantRange getRISCVVLENBRange(const IntrinsicInst &II, unsigned Width)
Return the value range of a RISC-V vlenb CSR read.
static bool isKnownNonEqualFromContext(const Value *V1, const Value *V2, const SimplifyQuery &Q, unsigned Depth)
static SelectPatternResult matchFastFloatClamp(CmpInst::Predicate Pred, Value *CmpLHS, Value *CmpRHS, Value *TrueVal, Value *FalseVal, Value *&LHS, Value *&RHS)
Match clamp pattern for float types without care about NaNs or signed zeros.
static std::optional< bool > isImpliedCondICmps(CmpPredicate LPred, const Value *L0, const Value *L1, CmpPredicate RPred, const Value *R0, const Value *R1, const DataLayout &DL, bool LHSIsTrue)
Return true if LHS implies RHS (expanded to its components as "R0 RPred R1") is true.
static std::optional< bool > isImpliedCondCommonOperandWithCR(CmpPredicate LPred, const ConstantRange &LCR, CmpPredicate RPred, const ConstantRange &RCR)
Return true if "icmp LPred X, LCR" implies "icmp RPred X, RCR" is true.
static ConstantRange getRangeForSelectPattern(const SelectInst &SI, const InstrInfoQuery &IIQ)
static void computeKnownBitsFromOperator(const Operator *I, const APInt &DemandedElts, KnownBits &Known, const SimplifyQuery &Q, unsigned Depth)
static uint64_t GetStringLengthH(const Value *V, SmallPtrSetImpl< const PHINode * > &PHIs, unsigned CharSize)
If we can compute the length of the string pointed to by the specified pointer, return 'len+1'.
static void computeKnownBitsFromShiftOperator(const Operator *I, const APInt &DemandedElts, KnownBits &Known, KnownBits &Known2, const SimplifyQuery &Q, unsigned Depth, function_ref< KnownBits(const KnownBits &, const KnownBits &, bool)> KF)
Compute known bits from a shift operator, including those with a non-constant shift amount.
static bool onlyUsedByLifetimeMarkersOrDroppableInstsHelper(const Value *V, bool AllowLifetime, bool AllowDroppable)
static std::optional< bool > isImpliedCondAndOr(const Instruction *LHS, CmpPredicate RHSPred, const Value *RHSOp0, const Value *RHSOp1, const DataLayout &DL, bool LHSIsTrue, unsigned Depth)
Return true if LHS implies RHS is true.
static std::tuple< int, int, int > computeKnownExponentRangeFromContext(const Value *V, const SimplifyQuery &Q)
Compute the minimum and maximum values (inclusive) for the exponent of V, assuming it is not nan.
static bool isSignedMinMaxClamp(const Value *Select, const Value *&In, const APInt *&CLow, const APInt *&CHigh)
static bool isNonZeroAdd(const APInt &DemandedElts, const SimplifyQuery &Q, unsigned BitWidth, Value *X, Value *Y, bool NSW, bool NUW, unsigned Depth)
static bool directlyImpliesPoison(const Value *ValAssumedPoison, const Value *V, unsigned Depth)
static bool isNonEqualSelect(const Value *V1, const Value *V2, const APInt &DemandedElts, const SimplifyQuery &Q, unsigned Depth)
static bool matchTwoInputRecurrence(const PHINode *PN, InstTy *&Inst, Value *&Init, Value *&OtherOp)
static bool isNonEqualPHIs(const PHINode *PN1, const PHINode *PN2, const APInt &DemandedElts, const SimplifyQuery &Q, unsigned Depth)
static void computeKnownBitsFromCmp(const Value *V, CmpInst::Predicate Pred, Value *LHS, Value *RHS, KnownBits &Known, const SimplifyQuery &Q)
static SelectPatternResult matchMinMaxOfMinMax(CmpInst::Predicate Pred, Value *CmpLHS, Value *CmpRHS, Value *TVal, Value *FVal, unsigned Depth)
Recognize variations of: a < c ?
static void unionWithMinMaxIntrinsicClamp(const IntrinsicInst *II, KnownBits &Known)
static void setLimitForFPToI(const Instruction *I, APInt &Lower, APInt &Upper)
static bool isSameUnderlyingObjectInLoop(const PHINode *PN, const LoopInfo *LI)
PN defines a loop-variant pointer to an object.
static bool isNonEqualPointersWithRecursiveGEP(const Value *A, const Value *B, const SimplifyQuery &Q)
static bool isSignedMinMaxIntrinsicClamp(const IntrinsicInst *II, const APInt *&CLow, const APInt *&CHigh)
static Value * lookThroughCastConst(CmpInst *CmpI, Type *SrcTy, Constant *C, Instruction::CastOps *CastOp)
static bool handleGuaranteedWellDefinedOps(const Instruction *I, const CallableT &Handle)
Enumerates all operands of I that are guaranteed to not be undef or poison.
static bool isAbsoluteValueULEOne(const Value *V)
static void computeKnownBitsFromLerpPattern(const Value *Op0, const Value *Op1, const APInt &DemandedElts, KnownBits &KnownOut, const SimplifyQuery &Q, unsigned Depth)
Try to detect the lerp pattern: a * (b - c) + c * d where a >= 0, b >= 0, c >= 0, d >= 0,...
static KnownFPClass computeKnownFPClassFromContext(const Value *V, const SimplifyQuery &Q)
static void computeKnownBitsAddSub(bool Add, const Value *Op0, const Value *Op1, bool NSW, bool NUW, const APInt &DemandedElts, KnownBits &KnownOut, KnownBits &Known2, const SimplifyQuery &Q, unsigned Depth)
static Value * getNotValue(Value *V)
If the input value is the result of a 'not' op, constant integer, or vector splat of a constant integ...
static constexpr KnownFPClass::MinMaxKind getMinMaxKind(Intrinsic::ID IID)
static bool isReadVLENB(const IntrinsicInst &II)
Return true if II reads a register named "vlenb".
static unsigned ComputeNumSignBitsImpl(const Value *V, const APInt &DemandedElts, const SimplifyQuery &Q, unsigned Depth)
Return the number of times the sign bit of the register is replicated into the other bits.
static void computeKnownBitsFromICmpCond(const Value *V, ICmpInst *Cmp, KnownBits &Known, const SimplifyQuery &SQ, bool Invert)
static bool isKnownNonZeroFromOperator(const Operator *I, const APInt &DemandedElts, const SimplifyQuery &Q, unsigned Depth)
static bool matchOpWithOpEqZero(Value *Op0, Value *Op1)
static bool isNonZeroRecurrence(const PHINode *PN)
Try to detect a recurrence that monotonically increases/decreases from a non-zero starting value.
static SelectPatternResult matchClamp(CmpInst::Predicate Pred, Value *CmpLHS, Value *CmpRHS, Value *TrueVal, Value *FalseVal)
Recognize variations of: CLAMP(v,l,h) ==> ((v) < (l) ?
static bool shiftAmountKnownInRange(const Value *ShiftAmount)
Shifts return poison if shiftwidth is larger than the bitwidth.
static bool isEphemeralValueOf(const Instruction *I, const Value *E)
static void computeKnownBitsForRecurrenceOperands(const PHINode *P, Value *Start, Value *Step, const APInt &DemandedElts, KnownBits &KnownStart, KnownBits &KnownStep, const SimplifyQuery &Q, unsigned Depth)
static SelectPatternResult matchMinMax(CmpInst::Predicate Pred, Value *CmpLHS, Value *CmpRHS, Value *TrueVal, Value *FalseVal, Value *&LHS, Value *&RHS, unsigned Depth)
Match non-obvious integer minimum and maximum sequences.
static KnownBits computeKnownBitsForHorizontalOperation(const Operator *I, const APInt &DemandedElts, const SimplifyQuery &Q, unsigned Depth, const function_ref< KnownBits(const KnownBits &, const KnownBits &)> KnownBitsFunc)
static bool handleGuaranteedNonPoisonOps(const Instruction *I, const CallableT &Handle)
Enumerates all operands of I that are guaranteed to not be poison.
static std::optional< std::pair< Value *, Value * > > getInvertibleOperands(const Operator *Op1, const Operator *Op2)
If the pair of operators are the same invertible function, return the the operands of the function co...
static bool cmpExcludesZero(CmpInst::Predicate Pred, const Value *RHS)
static void computeKnownBitsFromCond(const Value *V, Value *Cond, KnownBits &Known, const SimplifyQuery &SQ, bool Invert, unsigned Depth)
static NoCommonBitsSetResult haveNoCommonBitsSetSpecialCases(const Value *LHS, const Value *RHS, const SimplifyQuery &SQ)
static bool isKnownNonZeroFromAssume(const Value *V, const SimplifyQuery &Q)
static std::optional< bool > isImpliedCondOperands(CmpInst::Predicate Pred, const Value *ALHS, const Value *ARHS, const Value *BLHS, const Value *BRHS)
Return true if "icmp Pred BLHS BRHS" is true whenever "icmp PredALHS ARHS" is true.
static const Instruction * safeCxtI(const Value *V, const Instruction *CxtI)
static bool isNonEqualMul(const Value *V1, const Value *V2, const APInt &DemandedElts, const SimplifyQuery &Q, unsigned Depth)
Return true if V2 == V1 * C, where V1 is known non-zero, C is not 0/1 and the multiplication is nuw o...
static bool isImpliedToBeAPowerOfTwoFromCond(const Value *V, bool OrZero, const Value *Cond, bool CondIsTrue)
Return true if we can infer that V is known to be a power of 2 from dominating condition Cond (e....
static void computeKnownBitsMul(const Value *Op0, const Value *Op1, bool NSW, bool NUW, const APInt &DemandedElts, KnownBits &Known, KnownBits &Known2, const SimplifyQuery &Q, unsigned Depth)
static bool matchThreeInputRecurrence(const PHINode *PN, InstTy *&Inst, Value *&Init, Value *&OtherOp0, Value *&OtherOp1)
static bool isKnownNonNaN(const Value *V, FastMathFlags FMF)
static bool isNonEqualURem(const Value *X, const Value *Rem, const SimplifyQuery &Q)
static ConstantRange getRangeForIntrinsic(const IntrinsicInst &II, bool UseInstrInfo)
static void computeKnownFPClassForFPTrunc(const Operator *Op, const APInt &DemandedElts, FPClassTest InterestedClasses, KnownFPClass &Known, const SimplifyQuery &Q, unsigned Depth)
static Value * BuildSubAggregate(Value *From, Value *To, Type *IndexedType, SmallVectorImpl< unsigned > &Idxs, unsigned IdxSkip, BasicBlock::iterator InsertBefore)
static LLVM_ABI bool semanticsHasInf(const fltSemantics &)
static LLVM_ABI ExponentType semanticsMinExponent(const fltSemantics &)
static LLVM_ABI bool semanticsHasSignedRepr(const fltSemantics &)
static LLVM_ABI ExponentType semanticsMaxExponent(const fltSemantics &)
static LLVM_ABI unsigned int semanticsPrecision(const fltSemantics &)
static LLVM_ABI bool semanticsHasNaN(const fltSemantics &)
static LLVM_ABI bool semanticsHasZero(const fltSemantics &)
static LLVM_ABI bool isRepresentableAsNormalIn(const fltSemantics &Src, const fltSemantics &Dst)
static LLVM_ABI bool isIEEELikeFP(const fltSemantics &)
static LLVM_ABI const fltSemantics * getArbitraryFPSemantics(StringRef Format)
Returns the fltSemantics for a given arbitrary FP format string, or nullptr if invalid.
LLVM_READONLY int getExactLog2Abs() const
static APFloat getLargest(const fltSemantics &Sem, bool Negative=false)
Returns the largest finite number in the given semantics.
Class for arbitrary precision integers.
LLVM_ABI APInt umul_ov(const APInt &RHS, bool &Overflow) const
LLVM_ABI APInt udiv(const APInt &RHS) const
Unsigned division operation.
static APInt getAllOnes(unsigned numBits)
Return an APInt of a specified width with all bits set.
void clearBit(unsigned BitPosition)
Set a given bit to 0.
bool isMinSignedValue() const
Determine if this is the smallest signed value.
uint64_t getZExtValue() const
Get zero extended value.
void setHighBits(unsigned hiBits)
Set the top hiBits bits.
unsigned popcount() const
Count the number of bits set.
static APInt getMaxValue(unsigned numBits)
Gets maximum unsigned value of APInt for specific bit width.
void setBit(unsigned BitPosition)
Set the given bit to 1 whose position is given as "bitPosition".
unsigned ceilLogBase2() const
bool sgt(const APInt &RHS) const
Signed greater than comparison.
bool isAllOnes() const
Determine if all bits are set. This is true for zero-width values.
bool ugt(const APInt &RHS) const
Unsigned greater than comparison.
bool isZero() const
Determine if this value is zero, i.e. all bits are clear.
unsigned getBitWidth() const
Return the number of bits in the APInt.
bool ult(const APInt &RHS) const
Unsigned less than comparison.
static APInt getSignedMaxValue(unsigned numBits)
Gets maximum signed value of APInt for a specific bit width.
static APInt getMinValue(unsigned numBits)
Gets minimum unsigned value of APInt for a specific bit width.
bool isNegative() const
Determine sign of this APInt.
bool intersects(const APInt &RHS) const
This operation tests if there are any pairs of corresponding bits between this APInt and RHS that are...
LLVM_ABI APInt sdiv(const APInt &RHS) const
Signed division function for APInt.
LLVM_ABI APInt reverseBits() const
bool sle(const APInt &RHS) const
Signed less or equal comparison.
unsigned getNumSignBits() const
Computes the number of leading bits of this APInt that are equal to its sign bit.
unsigned countl_zero() const
The APInt version of std::countl_zero.
static APInt getSignedMinValue(unsigned numBits)
Gets minimum signed value of APInt for a specific bit width.
LLVM_ABI APInt sextOrTrunc(unsigned width) const
Sign extend or truncate to width.
bool isStrictlyPositive() const
Determine if this APInt Value is positive.
unsigned logBase2() const
APInt ashr(unsigned ShiftAmt) const
Arithmetic right-shift function.
bool getBoolValue() const
Convert APInt to a boolean value.
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.
APInt shl(unsigned shiftAmt) const
Left-shift function.
bool isSubsetOf(const APInt &RHS) const
This operation checks that all bits set in this APInt are also set in RHS.
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.
void setLowBits(unsigned loBits)
Set the bottom loBits bits.
bool sge(const APInt &RHS) const
Signed greater or equal comparison.
static APInt getBitsSetFrom(unsigned numBits, unsigned loBit)
Constructs an APInt value that has a contiguous range of bits set.
static APInt getOneBitSet(unsigned numBits, unsigned BitNo)
Return an APInt with exactly one bit set in the result.
APInt lshr(unsigned shiftAmt) const
Logical right-shift function.
bool uge(const APInt &RHS) const
Unsigned greater or equal comparison.
an instruction to allocate memory on the stack
This class represents an incoming formal argument to a Function.
Represent a constant reference to an array (0 or more elements consecutively in memory),...
size_t size() const
Get the array size.
bool empty() const
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.
Class to represent array types.
This represents the llvm.assume intrinsic.
A cache of @llvm.assume calls within a function.
MutableArrayRef< ResultElem > assumptionsFor(const Value *V)
Access the list of assumptions which affect this value.
Functions, function parameters, and return types can have attributes to indicate how they should be t...
LLVM_ABI std::optional< unsigned > getVScaleRangeMax() const
Returns the maximum value for the vscale_range attribute or std::nullopt when unknown.
LLVM_ABI unsigned getVScaleRangeMin() const
Returns the minimum value for the vscale_range attribute.
bool isValid() const
Return true if the attribute is any kind of attribute.
LLVM Basic Block Representation.
iterator begin()
Instruction iterator methods.
const Function * getParent() const
Return the enclosing method, or null if none.
LLVM_ABI InstListType::const_iterator getFirstNonPHIIt() const
Returns an iterator to the first instruction in this block that is not a PHINode instruction.
InstListType::const_iterator const_iterator
LLVM_ABI const BasicBlock * getSinglePredecessor() const
Return the predecessor of this block if it has a single predecessor block.
LLVM_ABI const BasicBlock * getSingleSuccessor() const
Return the successor of this block if it has a single successor.
InstListType::iterator iterator
Instruction iterators...
const Instruction * getTerminator() const LLVM_READONLY
Returns the terminator instruction; assumes that the block is well-formed.
LLVM_ABI Instruction::BinaryOps getBinaryOp() const
Returns the binary operation underlying the intrinsic.
BinaryOps getOpcode() const
Base class for all callable instructions (InvokeInst and CallInst) Holds everything related to callin...
Function * getCalledFunction() const
Returns the function called, or null if this is an indirect function invocation or the function signa...
LLVM_ABI bool paramHasAttr(unsigned ArgNo, Attribute::AttrKind Kind) const
Determine whether the argument or parameter has the given attribute.
LLVM_ABI bool isIndirectCall() const
Return true if the callsite is an indirect call.
bool onlyReadsMemory(unsigned OpNo) const
Value * getCalledOperand() const
Value * getArgOperand(unsigned i) const
LLVM_ABI Intrinsic::ID getIntrinsicID() const
Returns the intrinsic ID of the intrinsic called or Intrinsic::not_intrinsic if the called function i...
unsigned arg_size() const
This class represents a function call, abstracting a target machine's calling convention.
This is the base class for all instructions that perform data casts.
This class is the base class for the comparison instructions.
static LLVM_ABI Predicate getFlippedStrictnessPredicate(Predicate pred)
This is a static version that you can use without an instruction available.
Predicate
This enumeration lists the possible predicates for CmpInst subclasses.
@ FCMP_OEQ
0 0 0 1 True if ordered and equal
@ FCMP_TRUE
1 1 1 1 Always true (always folded)
@ ICMP_SLT
signed less than
@ ICMP_SLE
signed less or equal
@ FCMP_OLT
0 1 0 0 True if ordered and less than
@ FCMP_ULE
1 1 0 1 True if unordered, less than, or equal
@ FCMP_OGT
0 0 1 0 True if ordered and greater than
@ FCMP_OGE
0 0 1 1 True if ordered and greater than or equal
@ ICMP_UGE
unsigned greater or equal
@ ICMP_UGT
unsigned greater than
@ ICMP_SGT
signed greater than
@ FCMP_ULT
1 1 0 0 True if unordered or less than
@ FCMP_UEQ
1 0 0 1 True if unordered or equal
@ ICMP_ULT
unsigned less than
@ FCMP_UGT
1 0 1 0 True if unordered or greater than
@ FCMP_OLE
0 1 0 1 True if ordered and less than or equal
@ FCMP_ORD
0 1 1 1 True if ordered (no nans)
@ ICMP_SGE
signed greater or equal
@ ICMP_ULE
unsigned less or equal
@ FCMP_UGE
1 0 1 1 True if unordered, greater than, or equal
@ FCMP_FALSE
0 0 0 0 Always false (always folded)
@ FCMP_UNO
1 0 0 0 True if unordered: isnan(X) | isnan(Y)
static LLVM_ABI bool isEquality(Predicate pred)
Determine if this is an equals/not equals predicate.
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.
static bool isFPPredicate(Predicate P)
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 isIntPredicate(Predicate P)
static LLVM_ABI bool isOrdered(Predicate predicate)
Determine if the predicate is an ordered operation.
An abstraction over a floating-point predicate, and a pack of an integer predicate with samesign info...
static LLVM_ABI std::optional< CmpPredicate > getMatching(CmpPredicate A, CmpPredicate B)
Compares two CmpPredicates taking samesign into account and returns the canonicalized CmpPredicate if...
LLVM_ABI CmpInst::Predicate getPreferredSignedPredicate() const
Attempts to return a signed CmpInst::Predicate from the CmpPredicate.
CmpInst::Predicate dropSameSign() const
Drops samesign information.
bool hasSameSign() const
Query samesign information, for optimizations.
Conditional Branch instruction.
An array constant whose element type is a simple 1/2/4/8-byte integer, bytes or float/double,...
ConstantDataSequential - A vector or array constant whose element type is a simple 1/2/4/8-byte integ...
StringRef getAsString() const
If this array is isString(), then this method returns the array as a StringRef.
A vector constant whose element type is a simple 1/2/4/8-byte integer or float/double,...
static LLVM_ABI Constant * getAdd(Constant *C1, Constant *C2, bool HasNUW=false, bool HasNSW=false)
static LLVM_ABI Constant * getTrunc(Constant *C, Type *Ty, bool OnlyIfReduced=false)
static LLVM_ABI std::optional< ConstantFPRange > makeExactFCmpRegion(FCmpInst::Predicate Pred, const APFloat &Other)
Produce the exact range such that all values in the returned range satisfy the given predicate with a...
ConstantFP - Floating Point Values [float, double].
This is the shared class of boolean and integer constants.
static LLVM_ABI ConstantInt * getTrue(LLVMContext &Context)
uint64_t getZExtValue() const
Return the constant as a 64-bit unsigned integer value after it has been zero extended as appropriate...
This class represents a range of values.
PreferredRangeType
If represented precisely, the result of some range operations may consist of multiple disjoint ranges...
static LLVM_ABI ConstantRange fromKnownBits(const KnownBits &Known, bool IsSigned)
Initialize a range based on a known bits constraint.
LLVM_ABI OverflowResult unsignedSubMayOverflow(const ConstantRange &Other) const
Return whether unsigned sub of the two ranges always/never overflows.
LLVM_ABI bool isAllNegative() const
Return true if all values in this range are negative.
LLVM_ABI OverflowResult unsignedAddMayOverflow(const ConstantRange &Other) const
Return whether unsigned add of the two ranges always/never overflows.
LLVM_ABI KnownBits toKnownBits() const
Return known bits for values in this range.
LLVM_ABI bool icmp(CmpInst::Predicate Pred, const ConstantRange &Other) const
Does the predicate Pred hold between ranges this and Other?
LLVM_ABI APInt getSignedMin() const
Return the smallest signed value contained in the ConstantRange.
LLVM_ABI OverflowResult unsignedMulMayOverflow(const ConstantRange &Other) const
Return whether unsigned mul of the two ranges always/never overflows.
LLVM_ABI ConstantRange truncate(uint32_t BitWidth, unsigned NoWrapKind=0) const
Return a new range in the specified integer type, which must be strictly smaller than the current typ...
LLVM_ABI bool isAllNonNegative() const
Return true if all values in this range are non-negative.
static LLVM_ABI ConstantRange makeAllowedICmpRegion(CmpInst::Predicate Pred, const ConstantRange &Other)
Produce the smallest range such that all values that may satisfy the given predicate with any value c...
LLVM_ABI ConstantRange multiply(const ConstantRange &Other, unsigned NoWrapKind=0) const
Return a new range representing the possible values resulting from a multiplication of a value in thi...
LLVM_ABI ConstantRange unionWith(const ConstantRange &CR, PreferredRangeType Type=Smallest) const
Return the range that results from the union of this range with another range.
static LLVM_ABI 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...
LLVM_ABI ConstantRange binaryAnd(const ConstantRange &Other) const
Return a new range representing the possible values resulting from a binary-and of a value in this ra...
LLVM_ABI bool contains(const APInt &Val) const
Return true if the specified value is in the set.
LLVM_ABI OverflowResult signedAddMayOverflow(const ConstantRange &Other) const
Return whether signed add of the two ranges always/never overflows.
LLVM_ABI APInt getUnsignedMax() const
Return the largest unsigned value contained in the ConstantRange.
LLVM_ABI ConstantRange intersectWith(const ConstantRange &CR, PreferredRangeType Type=Smallest) const
Return the range that results from the intersection of this range with another range.
LLVM_ABI APInt getSignedMax() const
Return the largest signed value contained in the ConstantRange.
OverflowResult
Represents whether an operation on the given constant range is known to always or never overflow.
@ NeverOverflows
Never overflows.
@ AlwaysOverflowsHigh
Always overflows in the direction of signed/unsigned max value.
@ AlwaysOverflowsLow
Always overflows in the direction of signed/unsigned min value.
@ MayOverflow
May or may not overflow.
static ConstantRange getNonEmpty(APInt Lower, APInt Upper)
Create non-empty constant range with the given bounds.
uint32_t getBitWidth() const
Get the bit width of this ConstantRange.
LLVM_ABI OverflowResult signedSubMayOverflow(const ConstantRange &Other) const
Return whether signed sub of the two ranges always/never overflows.
LLVM_ABI ConstantRange sub(const ConstantRange &Other) const
Return a new range representing the possible values resulting from a subtraction of a value in this r...
This is an important base class in LLVM.
static LLVM_ABI Constant * replaceUndefsWith(Constant *C, Constant *Replacement)
Try to replace undefined constant C or undefined elements in C with Replacement.
LLVM_ABI Constant * getSplatValue(bool AllowPoison=false) const
If all elements of the vector constant have the same value, return that value.
bool isNullValue() const
Return true if this is the value that would be returned by getNullValue.
static LLVM_ABI Constant * getNullValue(Type *Ty)
Constructor to create a '0' constant of arbitrary type.
LLVM_ABI Constant * getAggregateElement(unsigned Elt) const
For aggregates (struct/array/vector) return the constant that corresponds to the specified element if...
A parsed version of the target data layout string in and methods for querying it.
bool isLittleEndian() const
Layout endianness...
unsigned getAddressSizeInBits(unsigned AS) const
The size in bits of an address in for the given AS.
LLVM_ABI const StructLayout * getStructLayout(StructType *Ty) const
Returns a StructLayout object, indicating the alignment of the struct, its size, and the offsets of i...
LLVM_ABI unsigned getIndexTypeSizeInBits(Type *Ty) const
The size in bits of the index used in GEP calculation for this type.
LLVM_ABI unsigned getPointerTypeSizeInBits(Type *) const
The pointer representation size in bits for this type.
TypeSize getTypeSizeInBits(Type *Ty) const
Size examples:
ArrayRef< CondBrInst * > conditionsFor(const Value *V) const
Access the list of branches which affect this value.
DomTreeNodeBase * getIDom() const
DomTreeNodeBase< NodeT > * getNode(const NodeT *BB) const
getNode - return the (Post)DominatorTree node for the specified basic block.
Concrete subclass of DominatorTreeBase that is used to compute a normal dominator tree.
LLVM_ABI 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.
Utility class for floating point operations which can have information about relaxed accuracy require...
Convenience struct for specifying and reasoning about fast-math flags.
bool noSignedZeros() const
void setNoSignedZeros(bool B=true)
void setNoNaNs(bool B=true)
const BasicBlock & getEntryBlock() const
an instruction for type-safe pointer arithmetic to access elements of arrays and structs
PointerType * getType() const
Global values are always pointers.
LLVM_ABI const DataLayout & getDataLayout() const
Get the data layout of the module this global belongs to.
Type * getValueType() const
const Constant * getInitializer() const
getInitializer - Return the initializer for this global variable.
bool isConstant() const
If the value is a global constant, its value is immutable throughout the runtime execution of the pro...
bool hasDefinitiveInitializer() const
hasDefinitiveInitializer - Whether the global variable has an initializer, and any other instances of...
This instruction compares its operands according to the predicate given to the constructor.
CmpPredicate getSwappedCmpPredicate() const
CmpPredicate getInverseCmpPredicate() const
Predicate getFlippedSignednessPredicate() const
For example, SLT->ULT, ULT->SLT, SLE->ULE, ULE->SLE, EQ->EQ.
static bool isEquality(Predicate P)
Return true if this predicate is either EQ or NE.
static LLVM_ABI std::optional< bool > isImpliedByMatchingCmp(CmpPredicate Pred1, CmpPredicate Pred2)
Determine if Pred1 implies Pred2 is true, false, or if nothing can be inferred about the implication,...
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.
Value * getAggregateOperand()
static InsertValueInst * Create(Value *Agg, Value *Val, ArrayRef< unsigned > Idxs, const Twine &NameStr="", InsertPosition InsertBefore=nullptr)
LLVM_ABI bool hasNoNaNs() const LLVM_READONLY
Determine whether the no-NaNs flag is set.
LLVM_ABI bool hasNoUnsignedWrap() const LLVM_READONLY
Determine whether the no unsigned wrap flag is set.
LLVM_ABI bool hasNoSignedWrap() const LLVM_READONLY
Determine whether the no signed wrap flag is set.
LLVM_ABI InstListType::iterator eraseFromParent()
This method unlinks 'this' from the containing basic block and deletes it.
LLVM_ABI bool isExact() const LLVM_READONLY
Determine whether the exact flag is set.
LLVM_ABI const Function * getFunction() const
Return the function this instruction belongs to.
LLVM_ABI bool comesBefore(const Instruction *Other) const
Given an instruction Other in the same basic block as this instruction, return true if this instructi...
iterator_range< user_iterator > users()
unsigned getOpcode() const
Returns a member of one of the enums like Instruction::Add.
LLVM_ABI const DataLayout & getDataLayout() const
Get the data layout of the module this instruction belongs to.
A wrapper class for inspecting calls to intrinsic functions.
This is an important class for using LLVM in a threaded context.
An instruction for reading from memory.
Value * getPointerOperand()
Align getAlign() const
Return the alignment of the access that is being performed.
bool isLoopHeader(const BlockT *BB) const
LoopT * getLoopFor(const BlockT *BB) const
Return the inner most loop that BB lives in.
Represents a single loop in the control flow graph.
const MDOperand & getOperand(unsigned I) const
A Module instance is used to store all the information related to an LLVM module.
This is a utility class that provides an abstraction for the common functionality between Instruction...
unsigned getOpcode() const
Return the opcode for this Instruction or ConstantExpr.
Utility class for integer operators which may exhibit overflow - Add, Sub, Mul, and Shl.
iterator_range< const_block_iterator > blocks() const
Value * getIncomingValueForBlock(const BasicBlock *BB) const
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.
static LLVM_ABI PoisonValue * get(Type *T)
Static factory methods - Return an 'poison' object of the specified type.
A udiv, sdiv, lshr, or ashr instruction, which can be marked as "exact", indicating that no bits are ...
bool isExact() const
Test whether this division is known to be exact, with zero remainder.
This class represents the LLVM 'select' instruction.
const Value * getFalseValue() const
const Value * getCondition() const
const Value * getTrueValue() const
This instruction constructs a fixed permutation of two input vectors.
VectorType * getType() const
Overload to return most specific vector type.
static LLVM_ABI void getShuffleMask(const Constant *Mask, SmallVectorImpl< int > &Result)
Convert the input shuffle mask operand to a vector of integers.
A templated base class for SmallPtrSet which provides the typesafe interface that is common across al...
size_type count(ConstPtrType Ptr) const
count - Return 1 if the specified pointer is in the set, 0 otherwise.
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.
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
void reserve(size_type N)
void append(ItTy in_start, ItTy in_end)
Add the specified range to the end of the SmallVector.
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Represent a constant reference to a string, i.e.
constexpr StringRef substr(size_t Start, size_t N=npos) const
Return a reference to the substring from [Start, Start + N).
Used to lazily calculate structure layout information for a target machine, based on the DataLayout s...
TypeSize getElementOffset(unsigned Idx) const
Class to represent struct types.
unsigned getNumElements() const
Random access to the elements.
Type * getElementType(unsigned N) const
Provides information about what library functions are available for the current target.
LibFunc getLibFunc(StringRef funcName) const
Searches for a particular function name.
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.
bool isFloatTy() const
Return true if this is 'float', a 32-bit IEEE fp type.
LLVM_ABI unsigned getPointerAddressSpace() const
Get the address space of this pointer or pointer vector type.
LLVM_ABI uint64_t getArrayNumElements() const
bool isSized() const
Return true if it makes sense to take the size of this type.
static LLVM_ABI IntegerType * getInt8Ty(LLVMContext &C)
Type * getScalarType() const
If this is a vector type, return the element type, otherwise return 'this'.
LLVM_ABI TypeSize getPrimitiveSizeInBits() const LLVM_READONLY
Return the basic size of this type if it is a primitive type.
bool isHalfTy() const
Return true if this is 'half', a 16-bit IEEE fp type.
LLVM_ABI unsigned getScalarSizeInBits() const LLVM_READONLY
If this is a vector type, return the getPrimitiveSizeInBits value for the element type.
bool isDoubleTy() const
Return true if this is 'double', a 64-bit IEEE fp type.
bool isPtrOrPtrVectorTy() const
Return true if this is a pointer type or a vector of pointer types.
bool isIntOrPtrTy() const
Return true if this is an integer type or a pointer type.
bool isIntegerTy() const
True if this is an instance of IntegerType.
static LLVM_ABI IntegerType * getIntNTy(LLVMContext &C, unsigned N)
bool isFPOrFPVectorTy() const
Return true if this is a FP type or a vector of FP.
LLVM_ABI const fltSemantics & getFltSemantics() const
static LLVM_ABI 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.
LLVM_ABI unsigned getOperandNo() const
Return the operand # of this use in its User.
User * getUser() const
Returns the User that contains this Use.
Value * getOperand(unsigned i) const
unsigned getNumOperands() const
LLVM Value Representation.
Type * getType() const
All values are typed, get the type of this value.
const Value * stripAndAccumulateInBoundsConstantOffsets(const DataLayout &DL, APInt &Offset) const
This is a wrapper around stripAndAccumulateConstantOffsets with the in-bounds requirement set to fals...
iterator_range< user_iterator > users()
LLVM_ABI 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.
const KnownBits & getKnownBits(const SimplifyQuery &Q) const
PointerType getValue() const
Represents an op.with.overflow intrinsic.
constexpr ScalarTy getFixedValue() const
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.
An efficient, type-erasing, non-owning reference to a callable.
StructType * getStructTypeOrNull() const
TypeSize getSequentialElementStride(const DataLayout &DL) const
Type * getIndexedType() const
const ParentTy * getParent() const
self_iterator getIterator()
A range adaptor for a pair of iterators.
This provides a very simple, boring adaptor for a begin and end iterator into a range type.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
LLVM_ABI APInt ScaleBitMask(const APInt &A, unsigned NewBitWidth, bool MatchAllBits=false)
Splat/Merge neighboring bits to widen/narrow the bitmask represented by.
const APInt & umax(const APInt &A, const APInt &B)
Determine the larger of two APInts considered to be unsigned.
SpecificConstantMatch m_ZeroInt()
Convenience matchers for specific integer values.
BinaryOp_match< SpecificConstantMatch, SrcTy, TargetOpcode::G_SUB > m_Neg(const SrcTy &&Src)
Matches a register negated by a G_SUB.
AllOnesConstantMatch m_AllOnes()
BinaryOp_match< SrcTy, SpecificConstantMatch, TargetOpcode::G_XOR, true > m_Not(const SrcTy &&Src)
Matches a register not-ed by a G_XOR.
OneUse_match< SubPat > m_OneUse(const SubPat &SP)
match_combine_or< Ty... > m_CombineOr(const Ty &...Ps)
Combine pattern matchers matching any of Ps patterns.
cst_pred_ty< is_lowbit_mask > m_LowBitMask()
Match an integer or vector with only the low bit(s) set.
match_bind< PHINode > m_Phi(PHINode *&PN)
Match a PHI node, capturing it if we match.
BinaryOp_match< LHS, RHS, Instruction::And > m_And(const LHS &L, const RHS &R)
PtrToIntSameSize_match< OpTy > m_PtrToIntSameSize(const DataLayout &DL, const OpTy &Op)
BinaryOp_match< LHS, RHS, Instruction::Add > m_Add(const LHS &L, const RHS &R)
CmpClass_match< LHS, RHS, FCmpInst > m_FCmp(CmpPredicate &Pred, const LHS &L, const RHS &R)
auto m_c_UMax(const LHS &L, const RHS &R)
Matches a UMax 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.
OverflowingBinaryOp_match< LHS, RHS, Instruction::Add, OverflowingBinaryOperator::NoUnsignedWrap > m_NUWAdd(const LHS &L, const RHS &R)
auto m_PtrToIntOrAddr(const OpTy &Op)
Matches PtrToInt or PtrToAddr.
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< LHS, RHS, Instruction::URem > m_URem(const LHS &L, const RHS &R)
auto m_LogicalOp()
Matches either L && R or L || R where L and R are arbitrary values.
ap_match< APInt > m_APInt(const APInt *&Res)
Match a ConstantInt or splatted ConstantVector, binding the specified pointer to the contained APInt.
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.
cst_pred_ty< is_power2_or_zero > m_Power2OrZero()
Match an integer or vector of 0 or power-of-2 values.
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)
OverflowingBinaryOp_match< LHS, RHS, Instruction::Sub, OverflowingBinaryOperator::NoSignedWrap > m_NSWSub(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.
match_bind< Instruction > m_Instruction(Instruction *&I)
Match an instruction, capturing it if we match.
auto m_UMin(const Opnd0 &Op0, const Opnd1 &Op1)
match_deferred< 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()...
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.
ap_match< APFloat > m_APFloat(const APFloat *&Res)
Match a ConstantFP or splatted ConstantVector, binding the specified pointer to the contained APFloat...
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.
auto match_fn(const Pattern &P)
A match functor that can be used as a UnaryPredicate in functional algorithms like all_of.
OverflowingBinaryOp_match< LHS, RHS, Instruction::Add, OverflowingBinaryOperator::NoUnsignedWrap, true > m_c_NUWAdd(const LHS &L, const RHS &R)
cstfp_pred_ty< is_finite > m_Finite()
Match a finite FP constant, i.e.
cst_pred_ty< is_nonnegative > m_NonNegative()
Match an integer or vector of non-negative values.
auto m_SMax(const Opnd0 &Op0, const Opnd1 &Op1)
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.
auto m_UMax(const Opnd0 &Op0, const Opnd1 &Op1)
auto m_BasicBlock()
Match an arbitrary basic block value and ignore it.
ExtractValue_match< Ind, Val_t > m_ExtractValue(const Val_t &V)
Match a single index ExtractValue instruction.
ICmpLike_match< LHS, RHS > m_ICmpLike(CmpPredicate &Pred, const LHS &L, const RHS &R)
auto m_Value()
Match an arbitrary value and ignore it.
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.
auto m_Ctpop(const Opnd0 &Op0)
BinaryOp_match< LHS, RHS, Instruction::Mul > m_Mul(const LHS &L, const RHS &R)
auto m_Constant()
Match an arbitrary Constant and ignore it.
auto m_LogicalOr()
Matches L || R where L and R are arbitrary values.
cst_pred_ty< is_strictlypositive > m_StrictlyPositive()
Match an integer or vector of strictly positive values.
auto m_VScale()
Matches a call to llvm.vscale().
OverflowingBinaryOp_match< LHS, RHS, Instruction::Shl, OverflowingBinaryOperator::NoSignedWrap > m_NSWShl(const LHS &L, const RHS &R)
match_bind< WithOverflowInst > m_WithOverflowInst(WithOverflowInst *&I)
Match a with overflow intrinsic, capturing it if we match.
SpecificCmpClass_match< LHS, RHS, ICmpInst > m_SpecificICmp(CmpPredicate MatchPred, const LHS &L, const RHS &R)
CastInst_match< OpTy, ZExtInst > m_ZExt(const OpTy &Op)
Matches ZExt.
auto m_Ctlz(const Opnd0 &Op0, const Opnd1 &Op1)
match_combine_or< FMaxMin_match< LHS, RHS, ofmin_pred_ty >, FMaxMin_match< LHS, RHS, ufmin_pred_ty > > m_OrdOrUnordFMin(const LHS &L, const RHS &R)
Match an 'ordered' or 'unordered' floating point minimum function.
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)
match_immconstant_ty m_ImmConstant()
Match an arbitrary immediate Constant and ignore it.
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.
match_combine_or< BinaryOp_match< LHS, RHS, Instruction::Add >, DisjointOr_match< LHS, RHS > > m_AddLike(const LHS &L, const RHS &R)
Match either "add" or "or disjoint".
CastOperator_match< OpTy, Instruction::BitCast > m_BitCast(const OpTy &Op)
Matches BitCast.
auto m_Intrinsic(const Ts &...Ops)
Match intrinsic calls like this: m_Intrinsic<Intrinsic::fabs>(m_Value(X))
auto m_c_MaxOrMin(const LHS &L, const RHS &R)
cstfp_pred_ty< custom_checkfn< APFloat > > m_CheckedFp(function_ref< bool(const APFloat &)> CheckFn)
Match a float or vector where CheckFn(ele) for each element is true.
auto m_FMinNum(const Opnd0 &Op0, const Opnd1 &Op1)
OverflowingBinaryOp_match< LHS, RHS, Instruction::Sub, OverflowingBinaryOperator::NoUnsignedWrap > m_NUWSub(const LHS &L, const RHS &R)
auto m_SMin(const Opnd0 &Op0, const Opnd1 &Op1)
auto m_FAbs(const Opnd0 &Op0)
match_combine_or< OverflowingBinaryOp_match< LHS, RHS, Instruction::Add, OverflowingBinaryOperator::NoSignedWrap >, DisjointOr_match< LHS, RHS > > m_NSWAddLike(const LHS &L, const RHS &R)
Match either "add nsw" or "or disjoint".
AnyBinaryOp_match< LHS, RHS, true > m_c_BinOp(const LHS &L, const RHS &R)
Matches a BinaryOperator with LHS and RHS in either order.
match_combine_or< FMaxMin_match< LHS, RHS, ofmax_pred_ty >, FMaxMin_match< LHS, RHS, ufmax_pred_ty > > m_OrdOrUnordFMax(const LHS &L, const RHS &R)
Match an 'ordered' or 'unordered' floating point maximum function.
OverflowingBinaryOp_match< LHS, RHS, Instruction::Add, OverflowingBinaryOperator::NoSignedWrap > m_NSWAdd(const LHS &L, const RHS &R)
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)
match_combine_or< CastInst_match< OpTy, ZExtInst >, CastInst_match< OpTy, SExtInst > > m_ZExtOrSExt(const OpTy &Op)
FNeg_match< OpTy > m_FNeg(const OpTy &X)
Match 'fneg X' as 'fsub -0.0, X'.
BinOpPred_match< LHS, RHS, is_shift_op > m_Shift(const LHS &L, const RHS &R)
Matches shift operations.
BinaryOp_match< LHS, RHS, Instruction::Shl > m_Shl(const LHS &L, const RHS &R)
BinOpPred_match< LHS, RHS, is_irem_op > m_IRem(const LHS &L, const RHS &R)
Matches integer remainder operations.
auto m_LogicalAnd()
Matches L && R where L and R are arbitrary values.
brc_match< Cond_t, match_bind< BasicBlock >, match_bind< BasicBlock > > m_Br(const Cond_t &C, BasicBlock *&T, BasicBlock *&F)
auto m_c_UMin(const LHS &L, const RHS &R)
Matches a UMin with LHS and RHS in either order.
auto m_c_SMax(const LHS &L, const RHS &R)
Matches an SMax with LHS and RHS in either order.
BinaryOp_match< LHS, RHS, Instruction::SRem > m_SRem(const LHS &L, const RHS &R)
auto m_FMaxNum(const Opnd0 &Op0, const Opnd1 &Op1)
cst_pred_ty< is_nonpositive > m_NonPositive()
Match an integer or vector of non-positive values.
BinaryOp_match< LHS, RHS, Instruction::Or > m_Or(const LHS &L, const RHS &R)
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.
match_combine_or< OverflowingBinaryOp_match< LHS, RHS, Instruction::Add, OverflowingBinaryOperator::NoUnsignedWrap >, DisjointOr_match< LHS, RHS > > m_NUWAddLike(const LHS &L, const RHS &R)
Match either "add nuw" or "or disjoint".
auto m_c_SMin(const LHS &L, const RHS &R)
Matches an SMin with LHS and RHS in either order.
ElementWiseBitCast_match< OpTy > m_ElementWiseBitCast(const OpTy &Op)
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)
auto m_ConstantInt()
Match an arbitrary ConstantInt and ignore it.
static unsigned decodeVSEW(unsigned VSEW)
LLVM_ABI unsigned getSEWLMULRatio(unsigned SEW, VLMUL VLMul)
static constexpr unsigned RVVBitsPerBlock
static constexpr unsigned RVVBytesPerBlock
initializer< Ty > init(const Ty &Val)
std::enable_if_t< detail::IsValidPointer< X, Y >::value, X * > extract(Y &&MD)
Extract a Value from Metadata.
This is an optimization pass for GlobalISel generic memory operations.
LLVM_ABI bool haveNoCommonBitsSet(const WithCache< const Value * > &LHSCache, const WithCache< const Value * > &RHSCache, const SimplifyQuery &SQ)
Return true if LHS and RHS have no common bits set.
LLVM_ABI bool mustExecuteUBIfPoisonOnPathTo(Instruction *Root, Instruction *OnPathTo, DominatorTree *DT)
Return true if undefined behavior would provable be executed on the path to OnPathTo if Root produced...
LLVM_ABI Intrinsic::ID getInverseMinMaxIntrinsic(Intrinsic::ID MinMaxID)
LLVM_ABI bool willNotFreeBetween(const Instruction *Assume, const Instruction *CtxI)
Returns true, if no instruction between Assume and CtxI may free (including through synchronization).
@ NeverOverflows
Never overflows.
@ AlwaysOverflowsHigh
Always overflows in the direction of signed/unsigned max value.
@ AlwaysOverflowsLow
Always overflows in the direction of signed/unsigned min value.
@ MayOverflow
May or may not overflow.
LLVM_ABI KnownFPClass computeKnownFPClass(const Value *V, const APInt &DemandedElts, FPClassTest InterestedClasses, const SimplifyQuery &SQ, unsigned Depth=0)
Determine which floating-point classes are valid for V, and return them in KnownFPClass bit sets.
bool all_of(R &&range, UnaryPredicate P)
Provide wrappers to std::all_of which take ranges instead of having to pass begin/end explicitly.
LLVM_ABI 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,...
auto size(R &&Range, std::enable_if_t< std::is_base_of< std::random_access_iterator_tag, typename std::iterator_traits< decltype(Range.begin())>::iterator_category >::value, void > *=nullptr)
Get the size of a range.
LLVM_ABI bool canCreatePoison(const Operator *Op, bool ConsiderFlagsAndMetadata=true)
LLVM_ABI bool mustTriggerUB(const Instruction *I, const SmallPtrSetImpl< const Value * > &KnownPoison)
Return true if the given instruction must trigger undefined behavior when I is executed with any oper...
LLVM_ABI bool isKnownNeverInfinity(const Value *V, const SimplifyQuery &SQ, unsigned Depth=0)
Return true if the floating-point scalar value is not an infinity or if the floating-point vector val...
LLVM_ABI void computeKnownBitsFromContext(const Value *V, KnownBits &Known, const SimplifyQuery &Q, unsigned Depth=0)
Merge bits known from context-dependent facts into Known.
RelativeUniformCounterPtr Values
BundleAttr getBundleAttrFromOBU(OperandBundleUse OBU)
LLVM_ABI bool isOnlyUsedInZeroEqualityComparison(const Instruction *CxtI)
LLVM_ABI 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.
@ Known
Known to have no common set bits.
@ Unknown
Not known to have no common set bits.
@ OnlyIfUndefIgnored
Known to have no common set bits only if undef values are ignored.
LLVM_ABI bool isAssumeLikeIntrinsic(const Instruction *I)
Return true if it is an intrinsic that cannot be speculated but also cannot trap.
LLVM_ABI AllocaInst * findAllocaForValue(Value *V, bool OffsetZero=false)
Returns unique alloca where the value comes from, or nullptr.
LLVM_ABI APInt getMinMaxLimit(SelectPatternFlavor SPF, unsigned BitWidth)
Return the minimum or maximum constant value for the specified integer min/max flavor and type.
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
LLVM_ABI bool isOnlyUsedInZeroComparison(const Instruction *CxtI)
const Value * getLoadStorePointerOperand(const Value *V)
A helper function that returns the pointer operand of a load or store instruction.
@ Load
The value being inserted comes from a load (InsertElement only).
LLVM_ABI bool getConstantStringInfo(const Value *V, StringRef &Str, bool TrimAtNul=true)
This function computes the length of a null-terminated C string pointed to by V.
LLVM_ABI bool onlyUsedByLifetimeMarkersOrDroppableInsts(const Value *V)
Return true if the only users of this pointer are lifetime markers or droppable instructions.
LLVM_ABI Constant * ReadByteArrayFromGlobal(const GlobalVariable *GV, uint64_t Offset)
LLVM_ABI Value * stripNullTest(Value *V)
Returns the inner value X if the expression has the form f(X) where f(X) == 0 if and only if X == 0,...
LLVM_ABI const Value * getArgumentAliasingToReturnedPointer(const CallBase *Call, bool MustPreserveOffset, bool MustPreserveProvenance=false)
This function returns call pointer argument that is considered the same by aliasing rules.
LLVM_ABI bool getUnderlyingObjectsForCodeGen(const Value *V, SmallVectorImpl< Value * > &Objects)
This is a wrapper around getUnderlyingObjects and adds support for basic ptrtoint+arithmetic+inttoptr...
LLVM_ABI std::pair< Intrinsic::ID, bool > canConvertToMinOrMaxIntrinsic(ArrayRef< Value * > VL)
Check if the values in VL are select instructions that can be converted to a min or max (vector) intr...
iterator_range< T > make_range(T x, T y)
Convenience function for iterating over sub-ranges.
LLVM_ABI bool getConstantDataArrayInfo(const Value *V, ConstantDataArraySlice &Slice, unsigned ElementSize, uint64_t Offset=0)
Returns true if the value V is a pointer into a ConstantDataArray.
int bit_width(T Value)
Returns the number of bits needed to represent Value if Value is nonzero.
LLVM_ABI bool isGuaranteedToExecuteForEveryIteration(const Instruction *I, const Loop *L)
Return true if this function can prove that the instruction I is executed for every iteration of the ...
void append_range(Container &C, Range &&R)
Wrapper function to append range R to container C.
constexpr bool isUIntN(unsigned N, uint64_t x)
Checks if an unsigned integer fits into the given (dynamic) bit width.
LLVM_ABI bool assumeBundleImpliesNonNull(const Value *Val, const Function *Context, OperandBundleUse OBU)
LLVM_ABI bool mustSuppressSpeculation(const LoadInst &LI)
Return true if speculation of the given load must be suppressed to avoid ordering or interfering with...
@ O1
Optimize quickly without destroying debuggability.
@ O2
Optimize for fast execution as much as possible without triggering significant incremental compile ti...
constexpr bool isPowerOf2_64(uint64_t Value)
Return true if the argument is a power of two > 0 (64 bit edition.)
gep_type_iterator gep_type_end(const User *GEP)
int ilogb(const APFloat &Arg)
Returns the exponent of the internal representation of the APFloat.
LLVM_ABI bool isSafeToSpeculativelyExecute(const Instruction *I, const Instruction *CtxI=nullptr, AssumptionCache *AC=nullptr, const DominatorTree *DT=nullptr, const TargetLibraryInfo *TLI=nullptr, bool UseVariableInfo=true, bool IgnoreUBImplyingAttrs=true)
Return true if the instruction does not have any effects besides calculating the result and does not ...
LLVM_ABI Value * getSplatValue(const Value *V)
Get splat value if the input is a splat vector or return nullptr.
LLVM_ABI CmpInst::Predicate getMinMaxPred(SelectPatternFlavor SPF, bool Ordered=false)
Return the canonical comparison predicate for the specified minimum/maximum flavor.
bool isa_and_nonnull(const Y &Val)
LLVM_ABI bool canIgnoreSignBitOfZero(const Use &U)
Return true if the sign bit of the FP value can be ignored by the user when the value is zero.
LLVM_ABI bool isGuaranteedNotToBeUndef(const Value *V, AssumptionCache *AC=nullptr, const Instruction *CtxI=nullptr, const DominatorTree *DT=nullptr, unsigned Depth=0)
Returns true if V cannot be undef, but may be poison.
LLVM_ABI ConstantRange getConstantRangeFromMetadata(const MDNode &RangeMD)
Parse out a conservative ConstantRange from !range metadata.
std::tuple< Value *, FPClassTest, FPClassTest > fcmpImpliesClass(CmpInst::Predicate Pred, const Function &F, Value *LHS, FPClassTest RHSClass, bool LookThroughSrc=true)
const Value * getPointerOperand(const Value *V)
A helper function that returns the pointer operand of a load, store or GEP instruction.
LLVM_ABI bool MaskedValueIsZero(const Value *V, const APInt &Mask, const SimplifyQuery &SQ, unsigned Depth=0)
Return true if 'V & Mask' is known to be zero.
int countr_zero(T Val)
Count number of 0's from the least significant bit to the most stopping at the first 1.
LLVM_ABI bool isOverflowIntrinsicNoWrap(const WithOverflowInst *WO, const DominatorTree &DT)
Returns true if the arithmetic part of the WO 's result is used only along the paths control dependen...
LLVM_ABI bool matchSimpleRecurrence(const PHINode *P, BinaryOperator *&BO, Value *&Start, Value *&Step)
Attempt to match a simple first order recurrence cycle of the form: iv = phi Ty [Start,...
auto dyn_cast_or_null(const Y &Val)
bool any_of(R &&range, UnaryPredicate P)
Provide wrappers to std::any_of which take ranges instead of having to pass begin/end explicitly.
LLVM_ABI OverflowResult computeOverflowForUnsignedMul(const Value *LHS, const Value *RHS, const SimplifyQuery &SQ, bool IsNSW=false)
LLVM_ABI bool getShuffleDemandedElts(int SrcWidth, ArrayRef< int > Mask, const APInt &DemandedElts, APInt &DemandedLHS, APInt &DemandedRHS, bool AllowUndefElts=false)
Transform a shuffle mask's output demanded element mask into demanded element masks for the 2 operand...
unsigned Log2_32(uint32_t Value)
Return the floor log base 2 of the specified value, -1 if the value is zero.
LLVM_ABI bool isGuard(const User *U)
Returns true iff U has semantics of a guard expressed in a form of call of llvm.experimental....
int countl_zero(T Val)
Count number of 0's from the most significant bit to the least stopping at the first 1.
LLVM_ABI SelectPatternFlavor getInverseMinMaxFlavor(SelectPatternFlavor SPF)
Return the inverse minimum/maximum flavor of the specified flavor.
constexpr unsigned MaxAnalysisRecursionDepth
LLVM_ABI void adjustKnownBitsForSelectArm(KnownBits &Known, Value *Cond, Value *Arm, bool Invert, const SimplifyQuery &Q, unsigned Depth=0)
Adjust Known for the given select Arm to include information from the select Cond.
LLVM_ABI bool isKnownNegative(const Value *V, const SimplifyQuery &SQ, unsigned Depth=0)
Returns true if the given value is known be negative (i.e.
LLVM_ABI NoCommonBitsSetResult getNoCommonBitsSetResult(const WithCache< const Value * > &LHSCache, const WithCache< const Value * > &RHSCache, const SimplifyQuery &SQ)
Return how strongly LHS and RHS are known to have no common set bits.
LLVM_ABI OverflowResult computeOverflowForSignedSub(const Value *LHS, const Value *RHS, const SimplifyQuery &SQ)
SelectPatternFlavor
Specific patterns of select instructions we can match.
@ SPF_ABS
Floating point maxnum.
@ SPF_NABS
Absolute value.
@ SPF_FMAXNUM
Floating point minnum.
@ SPF_UMIN
Signed minimum.
@ SPF_UMAX
Signed maximum.
@ SPF_SMAX
Unsigned minimum.
@ SPF_FMINNUM
Unsigned maximum.
constexpr bool isPowerOf2_32(uint32_t Value)
Return true if the argument is a power of two > 0.
LLVM_ABI bool impliesPoison(const Value *ValAssumedPoison, const Value *V)
Return true if V is poison given that ValAssumedPoison is already poison.
LLVM_ABI void getHorizDemandedEltsForFirstOperand(unsigned VectorBitWidth, const APInt &DemandedElts, APInt &DemandedLHS, APInt &DemandedRHS)
Compute the demanded elements mask of horizontal binary operations.
LLVM_ABI SelectPatternResult getSelectPattern(CmpInst::Predicate Pred, SelectPatternNaNBehavior NaNBehavior=SPNB_NA, bool Ordered=false)
Determine the pattern for predicate X Pred Y ? X : Y.
FPClassTest
Floating-point class tests, supported by 'is_fpclass' intrinsic.
LLVM_ABI void computeKnownBits(const Value *V, KnownBits &Known, const DataLayout &DL, AssumptionCache *AC=nullptr, const Instruction *CxtI=nullptr, const DominatorTree *DT=nullptr, bool UseInstrInfo=true, unsigned Depth=0)
Determine which bits of V are known to be either zero or one and return them in the KnownZero/KnownOn...
LLVM_ABI bool programUndefinedIfPoison(const Instruction *Inst)
LLVM_ABI SelectPatternResult matchSelectPattern(Value *V, Value *&LHS, Value *&RHS, Instruction::CastOps *CastOp=nullptr, unsigned Depth=0)
Pattern match integer [SU]MIN, [SU]MAX and ABS idioms, returning the kind and providing the out param...
LLVM_ABI bool matchSimpleBinaryIntrinsicRecurrence(const IntrinsicInst *I, PHINode *&P, Value *&Init, Value *&OtherOp)
Attempt to match a simple value-accumulating recurrence of the form: llvm.intrinsic....
LLVM_ABI bool NullPointerIsDefined(const Function *F, unsigned AS=0)
Check whether null pointer dereferencing is considered undefined behavior for a given function or an ...
LLVM_ABI bool cannotBeNegativeZero(const Value *V, const SimplifyQuery &SQ, unsigned Depth=0)
Return true if we can prove that the specified FP value is never equal to -0.0.
LLVM_ABI bool programUndefinedIfUndefOrPoison(const Instruction *Inst)
Return true if this function can prove that if Inst is executed and yields a poison value or undef bi...
LLVM_ABI void adjustKnownFPClassForSelectArm(KnownFPClass &Known, Value *Cond, Value *Arm, bool Invert, const SimplifyQuery &Q, unsigned Depth=0)
Adjust Known for the given select Arm to include information from the select Cond.
generic_gep_type_iterator<> gep_type_iterator
LLVM_ABI bool collectPossibleValues(const Value *V, SmallPtrSetImpl< const Constant * > &Constants, unsigned MaxCount, bool AllowUndefOrPoison=true)
Enumerates all possible immediate values of V and inserts them into the set Constants.
constexpr unsigned MaxLookupSearchDepth
The max limit of the search depth in DecomposeGEPExpression() and getUnderlyingObject().
LLVM_ABI uint64_t GetStringLength(const Value *V, unsigned CharSize=8)
If we can compute the length of the string pointed to by the specified pointer, return 'len+1'.
LLVM_ABI OverflowResult computeOverflowForSignedMul(const Value *LHS, const Value *RHS, const SimplifyQuery &SQ)
LLVM_ABI 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...
LLVM_ABI Constant * ConstantFoldCastOperand(unsigned Opcode, Constant *C, Type *DestTy, const DataLayout &DL)
Attempt to constant fold a cast with the specified operand.
LLVM_ABI bool canCreateUndefOrPoison(const Operator *Op, bool ConsiderFlagsAndMetadata=true)
canCreateUndefOrPoison returns true if Op can create undef or poison from non-undef & non-poison oper...
LLVM_ABI bool matchSimpleTernaryIntrinsicRecurrence(const IntrinsicInst *I, PHINode *&P, Value *&Init, Value *&OtherOp0, Value *&OtherOp1)
Attempt to match a simple value-accumulating recurrence of the form: llvm.intrinsic....
LLVM_ABI EHPersonality classifyEHPersonality(const Value *Pers)
See if the given exception handling personality function is one that we understand.
LLVM_ABI const Value * getUnderlyingObjectAggressive(const Value *V, bool MustPreserveProvenance=false)
Like getUnderlyingObject(), but will try harder to find a single underlying object.
LLVM_ABI const Value * getUnderlyingObject(const Value *V, unsigned MaxLookup=MaxLookupSearchDepth, bool MustPreserveProvenance=false)
This method strips off any GEP address adjustments, pointer casts or llvm.threadlocal....
LLVM_ABI bool isKnownInversion(const Value *X, const Value *Y)
Return true iff:
bool isa(const From &Val)
isa<X> - Return true if the parameter to the template is an instance of one of the template type argu...
LLVM_ABI bool intrinsicPropagatesPoison(Intrinsic::ID IID)
Return whether this intrinsic propagates poison for all operands.
LLVM_ABI bool isNotCrossLaneOperation(const Instruction *I)
Return true if the instruction doesn't potentially cross vector lanes.
bool includesPoison(UndefPoisonKind Kind)
Returns true if Kind includes the Poison bit.
LLVM_ABI 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
LLVM_ABI RetainedKnowledge getKnowledgeValidInContext(const Value *V, ArrayRef< Attribute::AttrKind > AttrKinds, AssumptionCache &AC, const Instruction *CtxI, const DominatorTree *DT=nullptr)
Return a valid Knowledge associated to the Value V if its Attribute kind is in AttrKinds and the know...
LLVM_ABI bool isSafeToSpeculativelyExecuteWithOpcode(unsigned Opcode, const Instruction *Inst, const Instruction *CtxI=nullptr, AssumptionCache *AC=nullptr, const DominatorTree *DT=nullptr, const TargetLibraryInfo *TLI=nullptr, bool UseVariableInfo=true, bool IgnoreUBImplyingAttrs=true)
This returns the same result as isSafeToSpeculativelyExecute if Opcode is the actual opcode of Inst.
LLVM_ABI bool onlyUsedByLifetimeMarkers(const Value *V)
Return true if the only users of this pointer are lifetime markers.
LLVM_ABI Intrinsic::ID getIntrinsicForCallSite(const CallBase &CB, const TargetLibraryInfo *TLI)
Map a call instruction to an intrinsic ID.
@ First
Helpers to iterate all locations in the MemoryEffectsBase class.
LLVM_ABI Intrinsic::ID getMinMaxIntrinsic(SelectPatternFlavor SPF)
Convert given SPF to equivalent min/max intrinsic.
LLVM_ABI SelectPatternResult matchDecomposedSelectPattern(CmpInst *CmpI, Value *TrueVal, Value *FalseVal, Value *&LHS, Value *&RHS, FastMathFlags FMF=FastMathFlags(), 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...
bool includesUndef(UndefPoisonKind Kind)
Returns true if Kind includes the Undef bit.
LLVM_ABI OverflowResult computeOverflowForSignedAdd(const WithCache< const Value * > &LHS, const WithCache< const Value * > &RHS, const SimplifyQuery &SQ)
LLVM_ABI bool propagatesPoison(const Use &PoisonOp)
Return true if PoisonOp's user yields poison or raises UB if its operand PoisonOp is poison.
RelativeUniformCounterPtr ValuesPtrExpr VTableAddr Count
LLVM_ABI ConstantRange computeConstantRangeIncludingKnownBits(const WithCache< const Value * > &V, bool ForSigned, const SimplifyQuery &SQ)
Combine constant ranges from computeConstantRange() and computeKnownBits().
SelectPatternNaNBehavior
Behavior when a floating point min/max is given one NaN and one non-NaN as input.
@ SPNB_RETURNS_NAN
NaN behavior not applicable.
@ SPNB_RETURNS_OTHER
Given one NaN input, returns the NaN.
@ SPNB_RETURNS_ANY
Given one NaN input, returns the non-NaN.
LLVM_ABI bool isIntrinsicReturningPointerAliasingArgumentWithoutCapturing(const CallBase *Call, bool MustPreserveOffset, bool MustPreserveProvenance=false)
launder.invariant.group and similar intrinsics return a pointer that aliases their argument,...
LLVM_ABI 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.
DWARFExpression::Operation Op
LLVM_ABI bool isDereferenceableAndAlignedPointer(const Value *V, Type *Ty, Align Alignment, const SimplifyQuery &Q, bool IgnoreFree=false)
Returns true if V is always a dereferenceable pointer with alignment greater or equal than requested.
LLVM_ABI 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.
ArrayRef(const T &OneElt) -> ArrayRef< T >
LLVM_ABI unsigned ComputeNumSignBits(const Value *Op, const DataLayout &DL, AssumptionCache *AC=nullptr, const Instruction *CxtI=nullptr, const DominatorTree *DT=nullptr, bool UseInstrInfo=true, unsigned Depth=0)
Return the number of times the sign bit of the register is replicated into the other bits.
constexpr unsigned BitWidth
LLVM_ABI KnownBits analyzeKnownBitsFromAndXorOr(const Operator *I, const KnownBits &KnownLHS, const KnownBits &KnownRHS, const SimplifyQuery &SQ, unsigned Depth=0)
Using KnownBits LHS/RHS produce the known bits for logic op (and/xor/or).
LLVM_ABI OverflowResult computeOverflowForUnsignedSub(const Value *LHS, const Value *RHS, const SimplifyQuery &SQ)
LLVM_ABI bool isGuaranteedToTransferExecutionToSuccessor(const Instruction *I)
Return true if this function can prove that the instruction I will always transfer execution to one o...
LLVM_ABI bool isKnownNeverInfOrNaN(const Value *V, const SimplifyQuery &SQ, unsigned Depth=0)
Return true if the floating-point value can never contain a NaN or infinity.
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
LLVM_ABI bool isKnownNeverNaN(const Value *V, const SimplifyQuery &SQ, unsigned Depth=0)
Return true if the floating-point scalar value is not a NaN or if the floating-point vector value has...
gep_type_iterator gep_type_begin(const User *GEP)
UndefPoisonKind
Enumeration to track whether we are interested in Undef, Poison, or both.
LLVM_ABI Value * isBytewiseValue(Value *V, const DataLayout &DL)
If the specified value can be set by repeating the same byte in memory, return the i8 value that it i...
LLVM_ABI std::optional< std::pair< CmpPredicate, Constant * > > getFlippedStrictnessPredicateAndConstant(CmpPredicate Pred, Constant *C)
Convert an integer comparison with a constant RHS into an equivalent form with the strictness flipped...
LLVM_ABI unsigned ComputeMaxSignificantBits(const Value *Op, const DataLayout &DL, AssumptionCache *AC=nullptr, const Instruction *CxtI=nullptr, const DominatorTree *DT=nullptr, unsigned Depth=0)
Get the upper bound on bit size for this Value Op as a signed integer.
bool is_contained(R &&Range, const E &Element)
Returns true if Element is found in Range.
LLVM_ABI bool isKnownIntegral(const Value *V, const SimplifyQuery &SQ, FastMathFlags FMF)
Return true if the floating-point value V is known to be an integer value.
LLVM_ABI AssumeAlignInfo getAssumeAlignInfo(OperandBundleUse)
LLVM_ABI OverflowResult computeOverflowForUnsignedAdd(const WithCache< const Value * > &LHS, const WithCache< const Value * > &RHS, const SimplifyQuery &SQ)
unsigned Log2(Align A)
Returns the log2 of the alignment.
LLVM_ABI bool isKnownToBeAPowerOfTwo(const Value *V, const DataLayout &DL, bool OrZero=false, AssumptionCache *AC=nullptr, const Instruction *CxtI=nullptr, const DominatorTree *DT=nullptr, bool UseInstrInfo=true, unsigned Depth=0)
Return true if the given value is known to have exactly one bit set when defined.
LLVM_ABI 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...
LLVM_ABI 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.
LLVM_ABI void computeKnownBitsFromRangeMetadata(const MDNode &Ranges, KnownBits &Known)
Compute known bits from the range metadata.
LLVM_ABI Value * FindInsertedValue(Value *V, ArrayRef< unsigned > idx_range, std::optional< BasicBlock::iterator > InsertBefore=std::nullopt)
Given an aggregate and an sequence of indices, see if the scalar value indexed is already around as a...
LLVM_ABI bool isKnownNegation(const Value *X, const Value *Y, bool NeedNSW=false, bool AllowPoison=true)
Return true if the two given values are negation.
LLVM_ABI bool isKnownPositive(const Value *V, const SimplifyQuery &SQ, unsigned Depth=0)
Returns true if the given value is known be positive (i.e.
LLVM_ABI 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...
LLVM_ABI bool isKnownNonNegative(const Value *V, const SimplifyQuery &SQ, unsigned Depth=0)
Returns true if the give value is known to be non-negative.
LLVM_ABI bool cannotBeOrderedLessThanZero(const Value *V, const SimplifyQuery &SQ, unsigned Depth=0)
Return true if we can prove that the specified FP value is either NaN or never less than -0....
LLVM_ABI void getUnderlyingObjects(const Value *V, SmallVectorImpl< const Value * > &Objects, const LoopInfo *LI=nullptr, unsigned MaxLookup=MaxLookupSearchDepth)
This method is similar to getUnderlyingObject except that it can look through phi and select instruct...
LLVM_ABI bool mayHaveNonDefUseDependency(const Instruction &I)
Returns true if the result or effects of the given instructions I depend values not reachable through...
LLVM_ABI bool isTriviallyVectorizable(Intrinsic::ID ID)
Identify if the intrinsic is trivially vectorizable.
LLVM_ABI bool isIdentifiedObject(const Value *V)
Return true if this pointer refers to a distinct and identifiable object.
LLVM_ABI 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.
LLVM_ABI std::optional< bool > computeKnownFPSignBit(const Value *V, const SimplifyQuery &SQ, unsigned Depth=0)
Return false if we can prove that the specified FP value's sign bit is 0.
LLVM_ABI bool canIgnoreSignBitOfNaN(const Use &U)
Return true if the sign bit of the FP value can be ignored by the user when the value is NaN.
LLVM_ABI ConstantRange computeConstantRange(const Value *V, bool ForSigned, const SimplifyQuery &SQ, unsigned Depth=0)
Determine the possible constant range of an integer or vector of integer value.
LLVM_ABI void findValuesAffectedByCondition(Value *Cond, bool IsAssume, function_ref< void(Value *)> InsertAffected)
Call InsertAffected on all Values whose known bits / value may be affected by the condition Cond.
void swap(llvm::BitVector &LHS, llvm::BitVector &RHS)
Implement std::swap in terms of BitVector swap.
This struct is a compact representation of a valid (non-zero power of two) alignment.
SmallPtrSet< Value *, 4 > AffectedValues
Represents offset+length into a ConstantDataArray.
const ConstantDataArray * Array
ConstantDataArray pointer.
Represent subnormal handling kind for floating point instruction inputs and outputs.
static constexpr DenormalMode getDynamic()
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 hasNoSignedZeros(const InstT *Op) const
bool hasNoSignedWrap(const InstT *Op) const
bool hasNoUnsignedWrap(const InstT *Op) const
static KnownBits makeConstant(const APInt &C)
Create known bits from a known constant.
static LLVM_ABI KnownBits sadd_sat(const KnownBits &LHS, const KnownBits &RHS)
Compute knownbits resulting from llvm.sadd.sat(LHS, RHS)
KnownBits anyextOrTrunc(unsigned BitWidth) const
Return known bits for an "any" extension or truncation of the value we're tracking.
static LLVM_ABI KnownBits mulhu(const KnownBits &LHS, const KnownBits &RHS)
Compute known bits from zero-extended multiply-hi.
unsigned countMinSignBits() const
Returns the number of times the sign bit is replicated into the other bits.
static LLVM_ABI KnownBits smax(const KnownBits &LHS, const KnownBits &RHS)
Compute known bits for smax(LHS, RHS).
bool isNonNegative() const
Returns true if this value is known to be non-negative.
bool isZero() const
Returns true if value is all zero.
LLVM_ABI KnownBits blsi() const
Compute known bits for X & -X, which has only the lowest bit set of X set.
void makeNonNegative()
Make this value non-negative.
static LLVM_ABI KnownBits usub_sat(const KnownBits &LHS, const KnownBits &RHS)
Compute knownbits resulting from llvm.usub.sat(LHS, RHS)
unsigned countMinLeadingOnes() const
Returns the minimum number of leading one bits.
unsigned countMinTrailingZeros() const
Returns the minimum number of trailing zero bits.
static LLVM_ABI KnownBits ashr(const KnownBits &LHS, const KnownBits &RHS, bool ShAmtNonZero=false, bool Exact=false)
Compute known bits for ashr(LHS, RHS).
static LLVM_ABI KnownBits ssub_sat(const KnownBits &LHS, const KnownBits &RHS)
Compute knownbits resulting from llvm.ssub.sat(LHS, RHS)
static LLVM_ABI KnownBits urem(const KnownBits &LHS, const KnownBits &RHS)
Compute known bits for urem(LHS, RHS).
bool isUnknown() const
Returns true if we don't know any bits.
unsigned countMaxTrailingZeros() const
Returns the maximum number of trailing zero bits possible.
LLVM_ABI KnownBits blsmsk() const
Compute known bits for X ^ (X - 1), which has all bits up to and including the lowest set bit of X se...
KnownBits byteSwap() const
bool hasConflict() const
Returns true if there is conflicting information.
static LLVM_ABI KnownBits fshl(const KnownBits &LHS, const KnownBits &RHS, const APInt &Amt)
Compute known bits for fshl(LHS, RHS, Amt).
unsigned countMaxPopulation() const
Returns the maximum number of bits that could be one.
void setAllZero()
Make all bits known to be zero and discard any previous information.
KnownBits reverseBits() const
unsigned getBitWidth() const
Get the bit width of this value.
static LLVM_ABI KnownBits umax(const KnownBits &LHS, const KnownBits &RHS)
Compute known bits for umax(LHS, RHS).
KnownBits zext(unsigned BitWidth) const
Return known bits for a zero extension of the value we're tracking.
bool isConstant() const
Returns true if we know the value of all bits.
static KnownBits add(const KnownBits &LHS, const KnownBits &RHS, bool NSW=false, bool NUW=false, bool SelfAdd=false)
Compute knownbits resulting from addition of LHS and RHS.
KnownBits unionWith(const KnownBits &RHS) const
Returns KnownBits information that is known to be true for either this or RHS or both.
static LLVM_ABI KnownBits lshr(const KnownBits &LHS, const KnownBits &RHS, bool ShAmtNonZero=false, bool Exact=false)
Compute known bits for lshr(LHS, RHS).
bool isNonZero() const
Returns true if this value is known to be non-zero.
bool isEven() const
Return if the value is known even (the low bit is 0).
KnownBits extractBits(unsigned NumBits, unsigned BitPosition) const
Return a subset of the known bits from [bitPosition,bitPosition+numBits).
static LLVM_ABI KnownBits pdep(const KnownBits &Val, const KnownBits &Mask)
Compute known bits for pdep(Val, Mask).
KnownBits intersectWith(const KnownBits &RHS) const
Returns KnownBits information that is known to be true for both this and RHS.
unsigned countMinTrailingOnes() const
Returns the minimum number of trailing one bits.
unsigned countMinLeadingZeros() const
Returns the minimum number of leading zero bits.
APInt getMaxValue() const
Return the maximal unsigned value possible given these KnownBits.
static LLVM_ABI KnownBits fshr(const KnownBits &LHS, const KnownBits &RHS, const APInt &Amt)
Compute known bits for fshr(LHS, RHS, Amt).
static LLVM_ABI KnownBits smin(const KnownBits &LHS, const KnownBits &RHS)
Compute known bits for smin(LHS, RHS).
static LLVM_ABI KnownBits mulhs(const KnownBits &LHS, const KnownBits &RHS)
Compute known bits from sign-extended multiply-hi.
static LLVM_ABI KnownBits srem(const KnownBits &LHS, const KnownBits &RHS)
Compute known bits for srem(LHS, RHS).
static LLVM_ABI KnownBits udiv(const KnownBits &LHS, const KnownBits &RHS, bool Exact=false)
Compute known bits for udiv(LHS, RHS).
APInt getMinValue() const
Return the minimal unsigned value possible given these KnownBits.
static LLVM_ABI KnownBits computeForAddSub(bool Add, bool NSW, bool NUW, const KnownBits &LHS, const KnownBits &RHS)
Compute known bits resulting from adding LHS and RHS.
static LLVM_ABI KnownBits sdiv(const KnownBits &LHS, const KnownBits &RHS, bool Exact=false)
Compute known bits for sdiv(LHS, RHS).
static bool haveNoCommonBitsSet(const KnownBits &LHS, const KnownBits &RHS)
Return true if LHS and RHS have no common bits set.
bool isNegative() const
Returns true if this value is known to be negative.
static KnownBits sub(const KnownBits &LHS, const KnownBits &RHS, bool NSW=false, bool NUW=false)
Compute knownbits resulting from subtraction of LHS and RHS.
unsigned countMaxLeadingZeros() const
Returns the maximum number of leading zero bits possible.
void setAllOnes()
Make all bits known to be one and discard any previous information.
static LLVM_ABI KnownBits uadd_sat(const KnownBits &LHS, const KnownBits &RHS)
Compute knownbits resulting from llvm.uadd.sat(LHS, RHS)
static LLVM_ABI KnownBits mul(const KnownBits &LHS, const KnownBits &RHS, bool NoUndefSelfMultiply=false)
Compute known bits resulting from multiplying LHS and RHS.
KnownBits anyext(unsigned BitWidth) const
Return known bits for an "any" extension of the value we're tracking, where we don't know anything ab...
static LLVM_ABI KnownBits clmul(const KnownBits &LHS, const KnownBits &RHS)
Compute known bits for clmul(LHS, RHS).
LLVM_ABI KnownBits abs(bool IntMinIsPoison=false) const
Compute known bits for the absolute value.
static LLVM_ABI std::optional< bool > sgt(const KnownBits &LHS, const KnownBits &RHS)
Determine if these known bits always give the same ICMP_SGT result.
static LLVM_ABI std::optional< bool > uge(const KnownBits &LHS, const KnownBits &RHS)
Determine if these known bits always give the same ICMP_UGE result.
static LLVM_ABI KnownBits shl(const KnownBits &LHS, const KnownBits &RHS, bool NUW=false, bool NSW=false, bool ShAmtNonZero=false)
Compute known bits for shl(LHS, RHS).
static LLVM_ABI KnownBits umin(const KnownBits &LHS, const KnownBits &RHS)
Compute known bits for umin(LHS, RHS).
static LLVM_ABI KnownBits pext(const KnownBits &Val, const KnownBits &Mask)
Compute known bits for pext(Val, Mask).
KnownBits sextOrTrunc(unsigned BitWidth) const
Return known bits for a sign extension or truncation of the value we're tracking.
bool isKnownNeverInfOrNaN() const
Return true if it's known this can never be an infinity or nan.
static LLVM_ABI KnownFPClass sin(const KnownFPClass &Src)
Report known values for sin.
static LLVM_ABI KnownFPClass frem(const KnownFPClass &LHS, const KnownFPClass &RHS, DenormalMode Mode=DenormalMode::getDynamic())
Report known values for frem.
static LLVM_ABI KnownFPClass fdiv_self(const KnownFPClass &Src, DenormalMode Mode=DenormalMode::getDynamic())
Report known values for fdiv x, x.
static constexpr FPClassTest OrderedLessThanZeroMask
void knownNot(FPClassTest RuleOut)
static LLVM_ABI KnownFPClass fmul(const KnownFPClass &LHS, const KnownFPClass &RHS, DenormalMode Mode=DenormalMode::getDynamic())
Report known values for fmul.
static LLVM_ABI KnownFPClass fadd_self(const KnownFPClass &Src, DenormalMode Mode=DenormalMode::getDynamic())
Report known values for fadd x, x.
static KnownFPClass square(const KnownFPClass &Src, DenormalMode Mode=DenormalMode::getDynamic())
static LLVM_ABI KnownFPClass fsub(const KnownFPClass &LHS, const KnownFPClass &RHS, DenormalMode Mode=DenormalMode::getDynamic())
Report known values for fsub.
bool isKnownNeverSubnormal() const
Return true if it's known this can never be a subnormal.
KnownFPClass unionWith(const KnownFPClass &RHS) const
static LLVM_ABI KnownFPClass canonicalize(const KnownFPClass &Src, DenormalMode DenormMode=DenormalMode::getDynamic())
Apply the canonicalize intrinsic to this value.
LLVM_ABI bool isKnownNeverLogicalZero(DenormalMode Mode) const
Return true if it's known this can never be interpreted as a zero.
static LLVM_ABI KnownFPClass log(const KnownFPClass &Src, DenormalMode Mode=DenormalMode::getDynamic())
Propagate known class for log/log2/log10.
static LLVM_ABI KnownFPClass atan2(const KnownFPClass &LHS, const KnownFPClass &RHS, DenormalMode Mode=DenormalMode::getDynamic())
Report known values for atan2.
static LLVM_ABI KnownFPClass atan(const KnownFPClass &Src)
Report known values for atan.
static LLVM_ABI KnownFPClass fdiv(const KnownFPClass &LHS, const KnownFPClass &RHS, DenormalMode Mode=DenormalMode::getDynamic())
Report known values for fdiv.
static LLVM_ABI KnownFPClass roundToIntegral(const KnownFPClass &Src, bool IsTrunc, bool IsMultiUnitFPType)
Propagate known class for rounding intrinsics (trunc, floor, ceil, rint, nearbyint,...
static LLVM_ABI KnownFPClass cos(const KnownFPClass &Src)
Report known values for cos.
static LLVM_ABI KnownFPClass cosh(const KnownFPClass &Src)
Report known values for cosh.
static LLVM_ABI KnownFPClass minMaxLike(const KnownFPClass &LHS, const KnownFPClass &RHS, MinMaxKind Kind, DenormalMode DenormMode=DenormalMode::getDynamic())
static LLVM_ABI KnownFPClass exp(const KnownFPClass &Src)
Report known values for exp, exp2 and exp10.
static LLVM_ABI KnownFPClass frexp_mant(const KnownFPClass &Src, DenormalMode Mode=DenormalMode::getDynamic())
Propagate known class for mantissa component of frexp.
static LLVM_ABI KnownFPClass asin(const KnownFPClass &Src)
Report known values for asin.
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.
std::optional< bool > getSignBit() const
std::nullopt if the sign bit is unknown, true if the sign bit is definitely set or false if the sign ...
static LLVM_ABI KnownFPClass fpext(const KnownFPClass &KnownSrc, const fltSemantics &DstTy, const fltSemantics &SrcTy)
Propagate known class for fpext.
FPClassTest getKnownFPClasses() const
Floating-point classes the value could be one of.
static LLVM_ABI KnownFPClass fma(const KnownFPClass &LHS, const KnownFPClass &RHS, const KnownFPClass &Addend, DenormalMode Mode=DenormalMode::getDynamic())
Report known values for fma.
static LLVM_ABI KnownFPClass tan(const KnownFPClass &Src)
Report known values for tan.
static LLVM_ABI KnownFPClass fptrunc(const KnownFPClass &KnownSrc)
Propagate known class for fptrunc.
bool cannotBeOrderedLessThanZero() const
Return true if we can prove that the analyzed floating-point value is either NaN or never less than -...
void signBitMustBeOne()
Assume the sign bit is one.
void signBitMustBeZero()
Assume the sign bit is zero.
static LLVM_ABI KnownFPClass sqrt(const KnownFPClass &Src, DenormalMode Mode=DenormalMode::getDynamic())
Propagate known class for sqrt.
LLVM_ABI bool isKnownNeverLogicalPosZero(DenormalMode Mode) const
Return true if it's known this can never be interpreted as a positive zero.
bool isKnownNeverPosInfinity() const
Return true if it's known this can never be +infinity.
static LLVM_ABI KnownFPClass fadd(const KnownFPClass &LHS, const KnownFPClass &RHS, DenormalMode Mode=DenormalMode::getDynamic())
Report known values for fadd.
LLVM_ABI bool isKnownNeverLogicalNegZero(DenormalMode Mode) const
Return true if it's known this can never be interpreted as a negative zero.
static LLVM_ABI KnownFPClass bitcast(const fltSemantics &FltSemantics, const KnownBits &Bits)
Report known values for a bitcast into a float with provided semantics.
static LLVM_ABI KnownFPClass fma_square(const KnownFPClass &Squared, const KnownFPClass &Addend, DenormalMode Mode=DenormalMode::getDynamic())
Report known values for fma squared, squared, addend.
static LLVM_ABI KnownFPClass acos(const KnownFPClass &Src)
Report known values for acos.
static LLVM_ABI KnownFPClass frem_self(const KnownFPClass &Src, DenormalMode Mode=DenormalMode::getDynamic())
Report known values for frem x, x.
static LLVM_ABI KnownFPClass powi(const KnownFPClass &Src, const KnownBits &N)
Propagate known class for powi.
static LLVM_ABI KnownFPClass pow(const KnownFPClass &LHS, const KnownFPClass &RHS)
Propagate known class for pow.
static LLVM_ABI KnownFPClass ldexp(const KnownFPClass &Src, const APInt &ConstantRangeMin, const APInt &ConstantRangeMax, const fltSemantics &Flt, DenormalMode Mode=DenormalMode::getDynamic())
Propagate known class for ldexp, assuming the exponent is known to be within [ConstantRangeMin,...
static LLVM_ABI KnownFPClass sinh(const KnownFPClass &Src)
Report known values for sinh.
static LLVM_ABI KnownFPClass tanh(const KnownFPClass &Src)
Report known values for tanh.
SelectPatternFlavor Flavor
static bool isMinOrMax(SelectPatternFlavor SPF)
When implementing this min/max pattern as fcmp; select, does the fcmp have to be ordered?
SimplifyQuery getWithoutCondContext() const
SimplifyQuery getWithInstruction(const Instruction *I) const
const DomConditionCache * DC
fltNanEncoding nanEncoding