58#include "llvm/IR/IntrinsicsAArch64.h"
59#include "llvm/IR/IntrinsicsAMDGPU.h"
60#include "llvm/IR/IntrinsicsRISCV.h"
61#include "llvm/IR/IntrinsicsX86.h"
98 return DL.getPointerTypeSizeInBits(Ty);
110 CxtI = dyn_cast<Instruction>(V);
124 CxtI = dyn_cast<Instruction>(V1);
128 CxtI = dyn_cast<Instruction>(V2);
136 const APInt &DemandedElts,
138 if (isa<ScalableVectorType>(Shuf->
getType())) {
140 DemandedLHS = DemandedRHS = DemandedElts;
147 DemandedElts, DemandedLHS, DemandedRHS);
159 auto *FVTy = dyn_cast<FixedVectorType>(V->getType());
187 V, DemandedElts,
Depth,
243 "LHS and RHS should have the same type");
245 "LHS and RHS should be integers");
256 return !
I->user_empty() &&
all_of(
I->users(), [](
const User *U) {
257 return match(U, m_ICmp(m_Value(), m_Zero()));
262 return !
I->user_empty() &&
all_of(
I->users(), [](
const User *U) {
263 ICmpInst::Predicate P;
264 return match(U, m_ICmp(P, m_Value(), m_Zero())) && ICmpInst::isEquality(P);
272 bool OrZero,
unsigned Depth,
275 return ::isKnownToBeAPowerOfTwo(
290 if (
auto *CI = dyn_cast<ConstantInt>(V))
291 return CI->getValue().isStrictlyPositive();
314 if (V1 == V2 || V1->
getType() != V2->getType())
316 auto *FVTy = dyn_cast<FixedVectorType>(V1->
getType());
319 return ::isKnownNonEqual(
320 V1, V2, DemandedElts, 0,
328 return Mask.isSubsetOf(Known.
Zero);
336 auto *FVTy = dyn_cast<FixedVectorType>(V->getType());
346 return ::ComputeNumSignBits(
355 return V->getType()->getScalarSizeInBits() - SignBits + 1;
360 const APInt &DemandedElts,
367 if (KnownOut.
isUnknown() && !NSW && !NUW)
392 bool isKnownNegativeOp0 = Known2.
isNegative();
395 (isKnownNonNegativeOp1 && isKnownNonNegativeOp0);
400 (isKnownNegativeOp1 && isKnownNonNegativeOp0 &&
402 (isKnownNegativeOp0 && isKnownNonNegativeOp1 && Known.
isNonZero());
406 bool SelfMultiply = Op0 == Op1;
426 unsigned NumRanges = Ranges.getNumOperands() / 2;
432 for (
unsigned i = 0; i < NumRanges; ++i) {
434 mdconst::extract<ConstantInt>(Ranges.getOperand(2 * i + 0));
436 mdconst::extract<ConstantInt>(Ranges.getOperand(2 * i + 1));
440 unsigned CommonPrefixBits =
444 Known.
One &= UnsignedMax & Mask;
445 Known.
Zero &= ~UnsignedMax & Mask;
460 while (!WorkSet.
empty()) {
462 if (!Visited.
insert(V).second)
467 return EphValues.count(U);
472 if (V ==
I || (isa<Instruction>(V) &&
474 !cast<Instruction>(V)->isTerminator())) {
476 if (
const User *U = dyn_cast<User>(V))
488 return CI->isAssumeLikeIntrinsic();
496 bool AllowEphemerals) {
514 if (!AllowEphemerals && Inv == CxtI)
549 if (Pred == ICmpInst::ICMP_UGT)
553 if (Pred == ICmpInst::ICMP_NE)
564 auto *VC = dyn_cast<ConstantDataVector>(
RHS);
568 for (
unsigned ElemIdx = 0, NElem = VC->getNumElements(); ElemIdx < NElem;
571 Pred, VC->getElementAsAPInt(ElemIdx));
590 "Got assumption for the wrong function!");
593 if (!V->getType()->isPointerTy())
596 *
I,
I->bundle_op_info_begin()[Elem.Index])) {
598 (RK.AttrKind == Attribute::NonNull ||
599 (RK.AttrKind == Attribute::Dereferenceable &&
601 V->getType()->getPointerAddressSpace()))) &&
633 case ICmpInst::ICMP_EQ:
636 case ICmpInst::ICMP_SGE:
637 case ICmpInst::ICMP_SGT:
640 case ICmpInst::ICMP_SLT:
658 case ICmpInst::ICMP_EQ:
668 Known.
Zero |= ~*
C & *Mask;
674 Known.
One |= *
C & ~*Mask;
695 Known.
Zero |= RHSKnown.
Zero << ShAmt;
696 Known.
One |= RHSKnown.
One << ShAmt;
699 case ICmpInst::ICMP_NE: {
715 if (Pred == ICmpInst::ICMP_UGT || Pred == ICmpInst::ICMP_UGE) {
721 (*
C + (Pred == ICmpInst::ICMP_UGT)).countLeadingOnes());
723 if (Pred == ICmpInst::ICMP_ULT || Pred == ICmpInst::ICMP_ULE) {
729 (*
C - (Pred == ICmpInst::ICMP_ULT)).countLeadingZeros());
741 Invert ? Cmp->getInversePredicate() : Cmp->getPredicate();
774 if (
auto *Cmp = dyn_cast<ICmpInst>(
Cond))
819 "Got assumption for the wrong function!");
822 if (!V->getType()->isPointerTy())
825 *
I,
I->bundle_op_info_begin()[Elem.Index])) {
826 if (RK.WasOn == V && RK.AttrKind == Attribute::Alignment &&
838 Value *Arg =
I->getArgOperand(0);
858 ICmpInst *Cmp = dyn_cast<ICmpInst>(Arg);
894 Known = KF(Known2, Known, ShAmtNonZero);
905 Value *
X =
nullptr, *
Y =
nullptr;
907 switch (
I->getOpcode()) {
908 case Instruction::And:
909 KnownOut = KnownLHS & KnownRHS;
919 KnownOut = KnownLHS.
blsi();
921 KnownOut = KnownRHS.
blsi();
924 case Instruction::Or:
925 KnownOut = KnownLHS | KnownRHS;
927 case Instruction::Xor:
928 KnownOut = KnownLHS ^ KnownRHS;
938 const KnownBits &XBits =
I->getOperand(0) ==
X ? KnownLHS : KnownRHS;
939 KnownOut = XBits.
blsmsk();
952 if (!KnownOut.
Zero[0] && !KnownOut.
One[0] &&
973 APInt DemandedEltsLHS, DemandedEltsRHS;
975 DemandedElts, DemandedEltsLHS,
978 const auto ComputeForSingleOpFunc =
980 return KnownBitsFunc(
985 if (DemandedEltsRHS.
isZero())
986 return ComputeForSingleOpFunc(
I->getOperand(0), DemandedEltsLHS);
987 if (DemandedEltsLHS.
isZero())
988 return ComputeForSingleOpFunc(
I->getOperand(1), DemandedEltsRHS);
990 return ComputeForSingleOpFunc(
I->getOperand(0), DemandedEltsLHS)
991 .intersectWith(ComputeForSingleOpFunc(
I->getOperand(1), DemandedEltsRHS));
1000 auto *FVTy = dyn_cast<FixedVectorType>(
I->getType());
1001 APInt DemandedElts =
1009 Attribute Attr =
F->getFnAttribute(Attribute::VScaleRange);
1017 return ConstantRange::getEmpty(
BitWidth);
1062 const APInt &DemandedElts,
1068 switch (
I->getOpcode()) {
1070 case Instruction::Load:
1075 case Instruction::And:
1081 case Instruction::Or:
1087 case Instruction::Xor:
1093 case Instruction::Mul: {
1096 Known, Known2,
Depth, Q);
1099 case Instruction::UDiv: {
1106 case Instruction::SDiv: {
1113 case Instruction::Select: {
1114 auto ComputeForArm = [&](
Value *Arm,
bool Invert) {
1122 ComputeForArm(
I->getOperand(1),
false)
1126 case Instruction::FPTrunc:
1127 case Instruction::FPExt:
1128 case Instruction::FPToUI:
1129 case Instruction::FPToSI:
1130 case Instruction::SIToFP:
1131 case Instruction::UIToFP:
1133 case Instruction::PtrToInt:
1134 case Instruction::IntToPtr:
1137 case Instruction::ZExt:
1138 case Instruction::Trunc: {
1139 Type *SrcTy =
I->getOperand(0)->getType();
1141 unsigned SrcBitWidth;
1149 assert(SrcBitWidth &&
"SrcBitWidth can't be zero");
1152 if (
auto *Inst = dyn_cast<PossiblyNonNegInst>(
I);
1153 Inst && Inst->hasNonNeg() && !Known.
isNegative())
1158 case Instruction::BitCast: {
1159 Type *SrcTy =
I->getOperand(0)->getType();
1163 !
I->getType()->isVectorTy()) {
1171 V->getType()->isFPOrFPVectorTy()) {
1172 Type *FPType = V->getType()->getScalarType();
1185 if (FPClasses &
fcInf)
1197 if (Result.SignBit) {
1198 if (*Result.SignBit)
1208 auto *SrcVecTy = dyn_cast<FixedVectorType>(SrcTy);
1209 if (!SrcVecTy || !SrcVecTy->getElementType()->isIntegerTy() ||
1210 !
I->getType()->isIntOrIntVectorTy() ||
1211 isa<ScalableVectorType>(
I->getType()))
1216 unsigned SubBitWidth = SrcVecTy->getScalarSizeInBits();
1233 unsigned SubScale =
BitWidth / SubBitWidth;
1235 for (
unsigned i = 0; i != NumElts; ++i) {
1236 if (DemandedElts[i])
1237 SubDemandedElts.
setBit(i * SubScale);
1241 for (
unsigned i = 0; i != SubScale; ++i) {
1245 Known.
insertBits(KnownSrc, ShiftElt * SubBitWidth);
1250 case Instruction::SExt: {
1252 unsigned SrcBitWidth =
I->getOperand(0)->getType()->getScalarSizeInBits();
1254 Known = Known.
trunc(SrcBitWidth);
1261 case Instruction::Shl: {
1265 bool ShAmtNonZero) {
1266 return KnownBits::shl(KnownVal, KnownAmt, NUW, NSW, ShAmtNonZero);
1276 case Instruction::LShr: {
1277 bool Exact = Q.
IIQ.
isExact(cast<BinaryOperator>(
I));
1279 bool ShAmtNonZero) {
1290 case Instruction::AShr: {
1291 bool Exact = Q.
IIQ.
isExact(cast<BinaryOperator>(
I));
1293 bool ShAmtNonZero) {
1300 case Instruction::Sub: {
1304 DemandedElts, Known, Known2,
Depth, Q);
1307 case Instruction::Add: {
1311 DemandedElts, Known, Known2,
Depth, Q);
1314 case Instruction::SRem:
1320 case Instruction::URem:
1325 case Instruction::Alloca:
1328 case Instruction::GetElementPtr: {
1337 for (
unsigned i = 1, e =
I->getNumOperands(); i != e; ++i, ++GTI) {
1353 "Access to structure field must be known at compile time");
1358 unsigned Idx = cast<ConstantInt>(
Index)->getZExtValue();
1361 AccConstIndices +=
Offset;
1372 unsigned IndexBitWidth =
Index->getType()->getScalarSizeInBits();
1386 APInt ScalingFactor(IndexBitWidth, TypeSizeInBytes);
1387 IndexConst *= ScalingFactor;
1411 case Instruction::PHI: {
1414 Value *R =
nullptr, *L =
nullptr;
1424 if ((Opcode == Instruction::LShr || Opcode == Instruction::AShr ||
1425 Opcode == Instruction::Shl) &&
1440 case Instruction::Shl:
1444 case Instruction::LShr:
1449 case Instruction::AShr:
1460 if (Opcode == Instruction::Add ||
1461 Opcode == Instruction::Sub ||
1462 Opcode == Instruction::And ||
1463 Opcode == Instruction::Or ||
1464 Opcode == Instruction::Mul) {
1471 unsigned OpNum =
P->getOperand(0) == R ? 0 : 1;
1472 Instruction *RInst =
P->getIncomingBlock(OpNum)->getTerminator();
1473 Instruction *LInst =
P->getIncomingBlock(1 - OpNum)->getTerminator();
1488 auto *OverflowOp = dyn_cast<OverflowingBinaryOperator>(BO);
1499 if (Opcode == Instruction::Add) {
1508 else if (Opcode == Instruction::Sub && BO->
getOperand(0) ==
I) {
1516 else if (Opcode == Instruction::Mul && Known2.
isNonNegative() &&
1526 if (
P->getNumIncomingValues() == 0)
1533 if (isa_and_nonnull<UndefValue>(
P->hasConstantValue()))
1538 for (
unsigned u = 0, e =
P->getNumIncomingValues(); u < e; ++u) {
1539 Value *IncValue =
P->getIncomingValue(u);
1541 if (IncValue ==
P)
continue;
1548 RecQ.
CxtI =
P->getIncomingBlock(u)->getTerminator();
1570 if ((TrueSucc ==
P->getParent()) != (FalseSucc ==
P->getParent())) {
1572 if (FalseSucc ==
P->getParent())
1586 Known2 = KnownUnion;
1600 case Instruction::Call:
1601 case Instruction::Invoke: {
1609 const auto *CB = cast<CallBase>(
I);
1611 if (std::optional<ConstantRange>
Range = CB->getRange())
1614 if (
const Value *RV = CB->getReturnedArgOperand()) {
1615 if (RV->getType() ==
I->getType()) {
1627 switch (
II->getIntrinsicID()) {
1630 case Intrinsic::abs: {
1632 bool IntMinIsPoison =
match(
II->getArgOperand(1),
m_One());
1633 Known = Known2.
abs(IntMinIsPoison);
1636 case Intrinsic::bitreverse:
1641 case Intrinsic::bswap:
1646 case Intrinsic::ctlz: {
1652 PossibleLZ = std::min(PossibleLZ,
BitWidth - 1);
1657 case Intrinsic::cttz: {
1663 PossibleTZ = std::min(PossibleTZ,
BitWidth - 1);
1668 case Intrinsic::ctpop: {
1679 case Intrinsic::fshr:
1680 case Intrinsic::fshl: {
1687 if (
II->getIntrinsicID() == Intrinsic::fshr)
1700 case Intrinsic::uadd_sat:
1705 case Intrinsic::usub_sat:
1710 case Intrinsic::sadd_sat:
1715 case Intrinsic::ssub_sat:
1721 case Intrinsic::vector_reverse:
1727 case Intrinsic::vector_reduce_and:
1728 case Intrinsic::vector_reduce_or:
1729 case Intrinsic::vector_reduce_umax:
1730 case Intrinsic::vector_reduce_umin:
1731 case Intrinsic::vector_reduce_smax:
1732 case Intrinsic::vector_reduce_smin:
1735 case Intrinsic::vector_reduce_xor: {
1740 auto *VecTy = cast<VectorType>(
I->getOperand(0)->getType());
1742 bool EvenCnt = VecTy->getElementCount().isKnownEven();
1746 if (VecTy->isScalableTy() || EvenCnt)
1750 case Intrinsic::umin:
1755 case Intrinsic::umax:
1760 case Intrinsic::smin:
1765 case Intrinsic::smax:
1770 case Intrinsic::ptrmask: {
1773 const Value *Mask =
I->getOperand(1);
1774 Known2 =
KnownBits(Mask->getType()->getScalarSizeInBits());
1780 case Intrinsic::x86_sse2_pmulh_w:
1781 case Intrinsic::x86_avx2_pmulh_w:
1782 case Intrinsic::x86_avx512_pmulh_w_512:
1787 case Intrinsic::x86_sse2_pmulhu_w:
1788 case Intrinsic::x86_avx2_pmulhu_w:
1789 case Intrinsic::x86_avx512_pmulhu_w_512:
1794 case Intrinsic::x86_sse42_crc32_64_64:
1797 case Intrinsic::x86_ssse3_phadd_d_128:
1798 case Intrinsic::x86_ssse3_phadd_w_128:
1799 case Intrinsic::x86_avx2_phadd_d:
1800 case Intrinsic::x86_avx2_phadd_w: {
1802 I, DemandedElts,
Depth, Q,
1808 case Intrinsic::x86_ssse3_phadd_sw_128:
1809 case Intrinsic::x86_avx2_phadd_sw: {
1814 case Intrinsic::x86_ssse3_phsub_d_128:
1815 case Intrinsic::x86_ssse3_phsub_w_128:
1816 case Intrinsic::x86_avx2_phsub_d:
1817 case Intrinsic::x86_avx2_phsub_w: {
1819 I, DemandedElts,
Depth, Q,
1825 case Intrinsic::x86_ssse3_phsub_sw_128:
1826 case Intrinsic::x86_avx2_phsub_sw: {
1831 case Intrinsic::riscv_vsetvli:
1832 case Intrinsic::riscv_vsetvlimax: {
1833 bool HasAVL =
II->getIntrinsicID() == Intrinsic::riscv_vsetvli;
1836 cast<ConstantInt>(
II->getArgOperand(HasAVL))->getZExtValue());
1838 cast<ConstantInt>(
II->getArgOperand(1 + HasAVL))->getZExtValue());
1845 if (
auto *CI = dyn_cast<ConstantInt>(
II->getArgOperand(0)))
1846 MaxVL = std::min(MaxVL, CI->getZExtValue());
1848 unsigned KnownZeroFirstBit =
Log2_32(MaxVL) + 1;
1853 case Intrinsic::vscale: {
1854 if (!
II->getParent() || !
II->getFunction())
1864 case Instruction::ShuffleVector: {
1865 auto *Shuf = dyn_cast<ShuffleVectorInst>(
I);
1873 APInt DemandedLHS, DemandedRHS;
1880 if (!!DemandedLHS) {
1881 const Value *
LHS = Shuf->getOperand(0);
1887 if (!!DemandedRHS) {
1888 const Value *
RHS = Shuf->getOperand(1);
1894 case Instruction::InsertElement: {
1895 if (isa<ScalableVectorType>(
I->getType())) {
1899 const Value *Vec =
I->getOperand(0);
1900 const Value *Elt =
I->getOperand(1);
1901 auto *CIdx = dyn_cast<ConstantInt>(
I->getOperand(2));
1903 APInt DemandedVecElts = DemandedElts;
1904 bool NeedsElt =
true;
1906 if (CIdx && CIdx->getValue().ult(NumElts)) {
1907 DemandedVecElts.
clearBit(CIdx->getZExtValue());
1908 NeedsElt = DemandedElts[CIdx->getZExtValue()];
1920 if (!DemandedVecElts.
isZero()) {
1926 case Instruction::ExtractElement: {
1929 const Value *Vec =
I->getOperand(0);
1931 auto *CIdx = dyn_cast<ConstantInt>(
Idx);
1932 if (isa<ScalableVectorType>(Vec->
getType())) {
1937 unsigned NumElts = cast<FixedVectorType>(Vec->
getType())->getNumElements();
1939 if (CIdx && CIdx->getValue().ult(NumElts))
1944 case Instruction::ExtractValue:
1949 switch (
II->getIntrinsicID()) {
1951 case Intrinsic::uadd_with_overflow:
1952 case Intrinsic::sadd_with_overflow:
1954 true,
II->getArgOperand(0),
II->getArgOperand(1),
false,
1955 false, DemandedElts, Known, Known2,
Depth, Q);
1957 case Intrinsic::usub_with_overflow:
1958 case Intrinsic::ssub_with_overflow:
1960 false,
II->getArgOperand(0),
II->getArgOperand(1),
false,
1961 false, DemandedElts, Known, Known2,
Depth, Q);
1963 case Intrinsic::umul_with_overflow:
1964 case Intrinsic::smul_with_overflow:
1966 DemandedElts, Known, Known2,
Depth, Q);
1972 case Instruction::Freeze:
2016 if (!DemandedElts) {
2022 assert(V &&
"No Value?");
2026 Type *Ty = V->getType();
2030 "Not integer or pointer type!");
2032 if (
auto *FVTy = dyn_cast<FixedVectorType>(Ty)) {
2034 FVTy->getNumElements() == DemandedElts.
getBitWidth() &&
2035 "DemandedElt width should equal the fixed vector number of elements");
2038 "DemandedElt width should be 1 for scalars or scalable vectors");
2044 "V and Known should have same BitWidth");
2047 "V and Known should have same BitWidth");
2058 if (isa<ConstantPointerNull>(V) || isa<ConstantAggregateZero>(V)) {
2065 assert(!isa<ScalableVectorType>(V->getType()));
2069 for (
unsigned i = 0, e = CDV->getNumElements(); i != e; ++i) {
2070 if (!DemandedElts[i])
2072 APInt Elt = CDV->getElementAsAPInt(i);
2081 if (
const auto *CV = dyn_cast<ConstantVector>(V)) {
2082 assert(!isa<ScalableVectorType>(V->getType()));
2086 for (
unsigned i = 0, e = CV->getNumOperands(); i != e; ++i) {
2087 if (!DemandedElts[i])
2090 if (isa<PoisonValue>(Element))
2092 auto *ElementCI = dyn_cast_or_null<ConstantInt>(Element);
2097 const APInt &Elt = ElementCI->getValue();
2110 if (isa<UndefValue>(V))
2115 assert(!isa<ConstantData>(V) &&
"Unhandled constant data!");
2117 if (
const auto *
A = dyn_cast<Argument>(V))
2118 if (std::optional<ConstantRange>
Range =
A->getRange())
2127 if (
const GlobalAlias *GA = dyn_cast<GlobalAlias>(V)) {
2128 if (!GA->isInterposable())
2133 if (
const Operator *
I = dyn_cast<Operator>(V))
2135 else if (
const GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
2136 if (std::optional<ConstantRange> CR = GV->getAbsoluteSymbolRange())
2137 Known = CR->toKnownBits();
2141 if (isa<PointerType>(V->getType())) {
2142 Align Alignment = V->getPointerAlignment(Q.
DL);
2158 Value *Start =
nullptr, *Step =
nullptr;
2164 if (U.get() == Start) {
2180 case Instruction::Mul:
2185 case Instruction::SDiv:
2191 case Instruction::UDiv:
2197 case Instruction::Shl:
2199 case Instruction::AShr:
2203 case Instruction::LShr:
2218 if (isa<Constant>(V))
2222 if (OrZero && V->getType()->getScalarSizeInBits() == 1)
2225 auto *
I = dyn_cast<Instruction>(V);
2232 return F->hasFnAttribute(Attribute::VScaleRange);
2249 switch (
I->getOpcode()) {
2250 case Instruction::ZExt:
2252 case Instruction::Trunc:
2254 case Instruction::Shl:
2258 case Instruction::LShr:
2259 if (OrZero || Q.
IIQ.
isExact(cast<BinaryOperator>(
I)))
2262 case Instruction::UDiv:
2266 case Instruction::Mul:
2270 case Instruction::And:
2281 case Instruction::Add: {
2287 if (
match(
I->getOperand(0),
2291 if (
match(
I->getOperand(1),
2296 unsigned BitWidth = V->getType()->getScalarSizeInBits();
2305 if ((~(LHSBits.
Zero & RHSBits.
Zero)).isPowerOf2())
2318 case Instruction::Select:
2321 case Instruction::PHI: {
2325 auto *PN = cast<PHINode>(
I);
2342 RecQ.CxtI = PN->getIncomingBlock(U)->getTerminator();
2343 return isKnownToBeAPowerOfTwo(U.get(), OrZero, NewDepth, RecQ);
2346 case Instruction::Invoke:
2347 case Instruction::Call: {
2348 if (
auto *
II = dyn_cast<IntrinsicInst>(
I)) {
2349 switch (
II->getIntrinsicID()) {
2350 case Intrinsic::umax:
2351 case Intrinsic::smax:
2352 case Intrinsic::umin:
2353 case Intrinsic::smin:
2358 case Intrinsic::bitreverse:
2359 case Intrinsic::bswap:
2361 case Intrinsic::fshr:
2362 case Intrinsic::fshl:
2364 if (
II->getArgOperand(0) ==
II->getArgOperand(1))
2388 F =
I->getFunction();
2392 if (!
GEP->hasNoUnsignedWrap() &&
2393 !(
GEP->isInBounds() &&
2398 assert(
GEP->getType()->isPointerTy() &&
"We only support plain pointer GEP");
2409 GTI != GTE; ++GTI) {
2411 if (
StructType *STy = GTI.getStructTypeOrNull()) {
2412 ConstantInt *OpC = cast<ConstantInt>(GTI.getOperand());
2416 if (ElementOffset > 0)
2422 if (GTI.getSequentialElementStride(Q.
DL).isZero())
2427 if (
ConstantInt *OpC = dyn_cast<ConstantInt>(GTI.getOperand())) {
2451 assert(!isa<Constant>(V) &&
"Called for constant?");
2456 unsigned NumUsesExplored = 0;
2457 for (
const auto *U : V->users()) {
2465 if (
const auto *CB = dyn_cast<CallBase>(U))
2466 if (
auto *CalledFunc = CB->getCalledFunction())
2467 for (
const Argument &Arg : CalledFunc->args())
2468 if (CB->getArgOperand(Arg.getArgNo()) == V &&
2469 Arg.hasNonNullAttr(
false) &&
2477 V->getType()->getPointerAddressSpace()) &&
2495 NonNullIfTrue =
true;
2497 NonNullIfTrue =
false;
2503 for (
const auto *CmpU : U->users()) {
2505 if (Visited.
insert(CmpU).second)
2508 while (!WorkList.
empty()) {
2517 for (
const auto *CurrU : Curr->users())
2518 if (Visited.
insert(CurrU).second)
2523 if (
const BranchInst *BI = dyn_cast<BranchInst>(Curr)) {
2524 assert(BI->isConditional() &&
"uses a comparison!");
2527 BI->getSuccessor(NonNullIfTrue ? 0 : 1);
2531 }
else if (NonNullIfTrue &&
isGuard(Curr) &&
2532 DT->
dominates(cast<Instruction>(Curr), CtxI)) {
2546 const unsigned NumRanges = Ranges->getNumOperands() / 2;
2548 for (
unsigned i = 0; i < NumRanges; ++i) {
2550 mdconst::extract<ConstantInt>(Ranges->getOperand(2 * i + 0));
2552 mdconst::extract<ConstantInt>(Ranges->getOperand(2 * i + 1));
2564 Value *Start =
nullptr, *Step =
nullptr;
2565 const APInt *StartC, *StepC;
2571 case Instruction::Add:
2577 case Instruction::Mul:
2580 case Instruction::Shl:
2582 case Instruction::AShr:
2583 case Instruction::LShr:
2599 Value *
Y,
bool NSW,
bool NUW) {
2652 if (
auto *
C = dyn_cast<Constant>(
X))
2656 return ::isKnownNonEqual(
X,
Y, DemandedElts,
Depth, Q);
2661 Value *
Y,
bool NSW,
bool NUW) {
2690 auto ShiftOp = [&](
const APInt &Lhs,
const APInt &Rhs) {
2691 switch (
I->getOpcode()) {
2692 case Instruction::Shl:
2693 return Lhs.
shl(Rhs);
2694 case Instruction::LShr:
2695 return Lhs.
lshr(Rhs);
2696 case Instruction::AShr:
2697 return Lhs.
ashr(Rhs);
2703 auto InvShiftOp = [&](
const APInt &Lhs,
const APInt &Rhs) {
2704 switch (
I->getOpcode()) {
2705 case Instruction::Shl:
2706 return Lhs.
lshr(Rhs);
2707 case Instruction::LShr:
2708 case Instruction::AShr:
2709 return Lhs.
shl(Rhs);
2722 if (MaxShift.
uge(NumBits))
2725 if (!ShiftOp(KnownVal.
One, MaxShift).isZero())
2730 if (InvShiftOp(KnownVal.
Zero, NumBits - MaxShift)
2739 const APInt &DemandedElts,
2742 switch (
I->getOpcode()) {
2743 case Instruction::Alloca:
2745 return I->getType()->getPointerAddressSpace() == 0;
2746 case Instruction::GetElementPtr:
2747 if (
I->getType()->isPointerTy())
2750 case Instruction::BitCast: {
2778 Type *FromTy =
I->getOperand(0)->getType();
2783 case Instruction::IntToPtr:
2787 if (!isa<ScalableVectorType>(
I->getType()) &&
2792 case Instruction::PtrToInt:
2795 if (!isa<ScalableVectorType>(
I->getType()) &&
2800 case Instruction::Trunc:
2802 if (
auto *TI = dyn_cast<TruncInst>(
I))
2803 if (TI->hasNoSignedWrap() || TI->hasNoUnsignedWrap())
2807 case Instruction::Sub:
2810 case Instruction::Xor:
2815 case Instruction::Or:
2822 case Instruction::SExt:
2823 case Instruction::ZExt:
2827 case Instruction::Shl: {
2842 case Instruction::LShr:
2843 case Instruction::AShr: {
2858 case Instruction::UDiv:
2859 case Instruction::SDiv: {
2862 if (cast<PossiblyExactOperator>(
I)->isExact())
2874 if (
I->getOpcode() == Instruction::SDiv) {
2876 XKnown = XKnown.
abs(
false);
2877 YKnown = YKnown.
abs(
false);
2883 return XUgeY && *XUgeY;
2885 case Instruction::Add: {
2890 auto *BO = cast<OverflowingBinaryOperator>(
I);
2895 case Instruction::Mul: {
2901 case Instruction::Select: {
2908 auto SelectArmIsNonZero = [&](
bool IsTrueArm) {
2910 Op = IsTrueArm ?
I->getOperand(1) :
I->getOperand(2);
2923 Pred = ICmpInst::getInversePredicate(Pred);
2928 if (SelectArmIsNonZero(
true) &&
2929 SelectArmIsNonZero(
false))
2933 case Instruction::PHI: {
2934 auto *PN = cast<PHINode>(
I);
2944 RecQ.CxtI = PN->getIncomingBlock(U)->getTerminator();
2946 ICmpInst::Predicate Pred;
2948 BasicBlock *TrueSucc, *FalseSucc;
2949 if (match(RecQ.CxtI,
2950 m_Br(m_c_ICmp(Pred, m_Specific(U.get()), m_Value(X)),
2951 m_BasicBlock(TrueSucc), m_BasicBlock(FalseSucc)))) {
2953 if ((TrueSucc == PN->getParent()) != (FalseSucc == PN->getParent())) {
2955 if (FalseSucc == PN->getParent())
2956 Pred = CmpInst::getInversePredicate(Pred);
2957 if (cmpExcludesZero(Pred, X))
2965 case Instruction::InsertElement: {
2966 if (isa<ScalableVectorType>(
I->getType()))
2969 const Value *Vec =
I->getOperand(0);
2970 const Value *Elt =
I->getOperand(1);
2971 auto *CIdx = dyn_cast<ConstantInt>(
I->getOperand(2));
2974 APInt DemandedVecElts = DemandedElts;
2975 bool SkipElt =
false;
2977 if (CIdx && CIdx->getValue().ult(NumElts)) {
2978 DemandedVecElts.
clearBit(CIdx->getZExtValue());
2979 SkipElt = !DemandedElts[CIdx->getZExtValue()];
2985 (DemandedVecElts.
isZero() ||
2988 case Instruction::ExtractElement:
2989 if (
const auto *EEI = dyn_cast<ExtractElementInst>(
I)) {
2990 const Value *Vec = EEI->getVectorOperand();
2991 const Value *
Idx = EEI->getIndexOperand();
2992 auto *CIdx = dyn_cast<ConstantInt>(
Idx);
2993 if (
auto *VecTy = dyn_cast<FixedVectorType>(Vec->
getType())) {
2994 unsigned NumElts = VecTy->getNumElements();
2996 if (CIdx && CIdx->getValue().ult(NumElts))
3002 case Instruction::ShuffleVector: {
3003 auto *Shuf = dyn_cast<ShuffleVectorInst>(
I);
3006 APInt DemandedLHS, DemandedRHS;
3012 return (DemandedRHS.
isZero() ||
3017 case Instruction::Freeze:
3021 case Instruction::Load: {
3022 auto *LI = cast<LoadInst>(
I);
3025 if (
auto *PtrT = dyn_cast<PointerType>(
I->getType())) {
3038 case Instruction::ExtractValue: {
3044 case Instruction::Add:
3049 case Instruction::Sub:
3052 case Instruction::Mul:
3061 case Instruction::Call:
3062 case Instruction::Invoke: {
3063 const auto *Call = cast<CallBase>(
I);
3064 if (
I->getType()->isPointerTy()) {
3065 if (Call->isReturnNonNull())
3072 if (std::optional<ConstantRange>
Range = Call->getRange()) {
3077 if (
const Value *RV = Call->getReturnedArgOperand())
3082 if (
auto *
II = dyn_cast<IntrinsicInst>(
I)) {
3083 switch (
II->getIntrinsicID()) {
3084 case Intrinsic::sshl_sat:
3085 case Intrinsic::ushl_sat:
3086 case Intrinsic::abs:
3087 case Intrinsic::bitreverse:
3088 case Intrinsic::bswap:
3089 case Intrinsic::ctpop:
3093 case Intrinsic::ssub_sat:
3095 II->getArgOperand(0),
II->getArgOperand(1));
3096 case Intrinsic::sadd_sat:
3098 II->getArgOperand(0),
II->getArgOperand(1),
3101 case Intrinsic::vector_reverse:
3105 case Intrinsic::vector_reduce_or:
3106 case Intrinsic::vector_reduce_umax:
3107 case Intrinsic::vector_reduce_umin:
3108 case Intrinsic::vector_reduce_smax:
3109 case Intrinsic::vector_reduce_smin:
3111 case Intrinsic::umax:
3112 case Intrinsic::uadd_sat:
3120 case Intrinsic::smax: {
3123 auto IsNonZero = [&](
Value *
Op, std::optional<bool> &OpNonZero,
3125 if (!OpNonZero.has_value())
3126 OpNonZero = OpKnown.isNonZero() ||
3131 std::optional<bool> Op0NonZero, Op1NonZero;
3135 IsNonZero(
II->getArgOperand(1), Op1NonZero, Op1Known))
3140 IsNonZero(
II->getArgOperand(0), Op0NonZero, Op0Known))
3142 return IsNonZero(
II->getArgOperand(1), Op1NonZero, Op1Known) &&
3143 IsNonZero(
II->getArgOperand(0), Op0NonZero, Op0Known);
3145 case Intrinsic::smin: {
3161 case Intrinsic::umin:
3164 case Intrinsic::cttz:
3167 case Intrinsic::ctlz:
3170 case Intrinsic::fshr:
3171 case Intrinsic::fshl:
3173 if (
II->getArgOperand(0) ==
II->getArgOperand(1))
3176 case Intrinsic::vscale:
3178 case Intrinsic::experimental_get_vector_length:
3192 return Known.
One != 0;
3203 Type *Ty = V->getType();
3208 if (
auto *FVTy = dyn_cast<FixedVectorType>(Ty)) {
3210 FVTy->getNumElements() == DemandedElts.
getBitWidth() &&
3211 "DemandedElt width should equal the fixed vector number of elements");
3214 "DemandedElt width should be 1 for scalars");
3218 if (
auto *
C = dyn_cast<Constant>(V)) {
3219 if (
C->isNullValue())
3221 if (isa<ConstantInt>(
C))
3227 if (
auto *VecTy = dyn_cast<FixedVectorType>(Ty)) {
3228 for (
unsigned i = 0, e = VecTy->getNumElements(); i != e; ++i) {
3229 if (!DemandedElts[i])
3231 Constant *Elt =
C->getAggregateElement(i);
3234 if (!isa<PoisonValue>(Elt) && !isa<ConstantInt>(Elt))
3241 if (
auto *CPA = dyn_cast<ConstantPtrAuth>(V))
3247 if (
const GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
3248 if (!GV->isAbsoluteSymbolRef() && !GV->hasExternalWeakLinkage() &&
3249 GV->getType()->getAddressSpace() == 0)
3254 if (!isa<ConstantExpr>(V))
3258 if (
const auto *
A = dyn_cast<Argument>(V))
3259 if (std::optional<ConstantRange>
Range =
A->getRange()) {
3274 if (
PointerType *PtrTy = dyn_cast<PointerType>(Ty)) {
3277 if (
const Argument *
A = dyn_cast<Argument>(V)) {
3278 if (((
A->hasPassPointeeByValueCopyAttr() &&
3280 A->hasNonNullAttr()))
3285 if (
const auto *
I = dyn_cast<Operator>(V))
3289 if (!isa<Constant>(V) &&
3298 auto *FVTy = dyn_cast<FixedVectorType>(V->getType());
3299 APInt DemandedElts =
3301 return ::isKnownNonZero(V, DemandedElts, Q,
Depth);
3310static std::optional<std::pair<Value*, Value*>>
3314 return std::nullopt;
3323 case Instruction::Or:
3324 if (!cast<PossiblyDisjointInst>(Op1)->isDisjoint() ||
3325 !cast<PossiblyDisjointInst>(Op2)->isDisjoint())
3328 case Instruction::Xor:
3329 case Instruction::Add: {
3337 case Instruction::Sub:
3343 case Instruction::Mul: {
3347 auto *OBO1 = cast<OverflowingBinaryOperator>(Op1);
3348 auto *OBO2 = cast<OverflowingBinaryOperator>(Op2);
3349 if ((!OBO1->hasNoUnsignedWrap() || !OBO2->hasNoUnsignedWrap()) &&
3350 (!OBO1->hasNoSignedWrap() || !OBO2->hasNoSignedWrap()))
3356 !cast<ConstantInt>(Op1->
getOperand(1))->isZero())
3360 case Instruction::Shl: {
3363 auto *OBO1 = cast<OverflowingBinaryOperator>(Op1);
3364 auto *OBO2 = cast<OverflowingBinaryOperator>(Op2);
3365 if ((!OBO1->hasNoUnsignedWrap() || !OBO2->hasNoUnsignedWrap()) &&
3366 (!OBO1->hasNoSignedWrap() || !OBO2->hasNoSignedWrap()))
3373 case Instruction::AShr:
3374 case Instruction::LShr: {
3375 auto *PEO1 = cast<PossiblyExactOperator>(Op1);
3376 auto *PEO2 = cast<PossiblyExactOperator>(Op2);
3377 if (!PEO1->isExact() || !PEO2->isExact())
3384 case Instruction::SExt:
3385 case Instruction::ZExt:
3389 case Instruction::PHI: {
3390 const PHINode *PN1 = cast<PHINode>(Op1);
3391 const PHINode *PN2 = cast<PHINode>(Op2);
3397 Value *Start1 =
nullptr, *Step1 =
nullptr;
3399 Value *Start2 =
nullptr, *Step2 =
nullptr;
3406 cast<Operator>(BO2));
3415 if (Values->first != PN1 || Values->second != PN2)
3418 return std::make_pair(Start1, Start2);
3421 return std::nullopt;
3436 case Instruction::Or:
3437 if (!cast<PossiblyDisjointInst>(V1)->isDisjoint())
3440 case Instruction::Xor:
3441 case Instruction::Add:
3459 if (
auto *OBO = dyn_cast<OverflowingBinaryOperator>(V2)) {
3462 (OBO->hasNoUnsignedWrap() || OBO->hasNoSignedWrap()) &&
3463 !
C->isZero() && !
C->isOne() &&
3474 if (
auto *OBO = dyn_cast<OverflowingBinaryOperator>(V2)) {
3477 (OBO->hasNoUnsignedWrap() || OBO->hasNoSignedWrap()) &&
3491 bool UsedFullRecursion =
false;
3493 if (!VisitedBBs.
insert(IncomBB).second)
3497 const APInt *C1, *C2;
3502 if (UsedFullRecursion)
3506 RecQ.
CxtI = IncomBB->getTerminator();
3509 UsedFullRecursion =
true;
3517 const SelectInst *SI1 = dyn_cast<SelectInst>(V1);
3521 if (
const SelectInst *SI2 = dyn_cast<SelectInst>(V2)) {
3523 const Value *Cond2 = SI2->getCondition();
3526 DemandedElts,
Depth + 1, Q) &&
3528 DemandedElts,
Depth + 1, Q);
3541 if (!
A->getType()->isPointerTy() || !
B->getType()->isPointerTy())
3544 auto *GEPA = dyn_cast<GEPOperator>(
A);
3545 if (!GEPA || GEPA->getNumIndices() != 1 || !isa<Constant>(GEPA->idx_begin()))
3549 auto *PN = dyn_cast<PHINode>(GEPA->getPointerOperand());
3550 if (!PN || PN->getNumIncomingValues() != 2)
3555 Value *Start =
nullptr;
3557 if (PN->getIncomingValue(0) == Step)
3558 Start = PN->getIncomingValue(1);
3559 else if (PN->getIncomingValue(1) == Step)
3560 Start = PN->getIncomingValue(0);
3571 APInt StartOffset(IndexWidth, 0);
3572 Start = Start->stripAndAccumulateInBoundsConstantOffsets(Q.
DL, StartOffset);
3573 APInt StepOffset(IndexWidth, 0);
3579 APInt OffsetB(IndexWidth, 0);
3580 B =
B->stripAndAccumulateInBoundsConstantOffsets(Q.
DL, OffsetB);
3581 return Start ==
B &&
3592 if (V1->
getType() != V2->getType())
3602 auto *O1 = dyn_cast<Operator>(V1);
3603 auto *O2 = dyn_cast<Operator>(V2);
3604 if (O1 && O2 && O1->getOpcode() == O2->getOpcode()) {
3609 if (
const PHINode *PN1 = dyn_cast<PHINode>(V1)) {
3610 const PHINode *PN2 = cast<PHINode>(V2);
3666 "Input should be a Select!");
3676 const Value *LHS2 =
nullptr, *RHS2 =
nullptr;
3688 return CLow->
sle(*CHigh);
3693 const APInt *&CHigh) {
3694 assert((
II->getIntrinsicID() == Intrinsic::smin ||
3695 II->getIntrinsicID() == Intrinsic::smax) &&
"Must be smin/smax");
3698 auto *InnerII = dyn_cast<IntrinsicInst>(
II->getArgOperand(0));
3699 if (!InnerII || InnerII->getIntrinsicID() != InverseID ||
3704 if (
II->getIntrinsicID() == Intrinsic::smin)
3706 return CLow->
sle(*CHigh);
3714 const APInt &DemandedElts,
3716 const auto *CV = dyn_cast<Constant>(V);
3717 if (!CV || !isa<FixedVectorType>(CV->getType()))
3720 unsigned MinSignBits = TyBits;
3721 unsigned NumElts = cast<FixedVectorType>(CV->getType())->getNumElements();
3722 for (
unsigned i = 0; i != NumElts; ++i) {
3723 if (!DemandedElts[i])
3726 auto *Elt = dyn_cast_or_null<ConstantInt>(CV->getAggregateElement(i));
3730 MinSignBits = std::min(MinSignBits, Elt->getValue().getNumSignBits());
3737 const APInt &DemandedElts,
3743 assert(Result > 0 &&
"At least one sign bit needs to be present!");
3755 const APInt &DemandedElts,
3757 Type *Ty = V->getType();
3761 if (
auto *FVTy = dyn_cast<FixedVectorType>(Ty)) {
3763 FVTy->getNumElements() == DemandedElts.
getBitWidth() &&
3764 "DemandedElt width should equal the fixed vector number of elements");
3767 "DemandedElt width should be 1 for scalars");
3781 unsigned FirstAnswer = 1;
3789 if (
auto *U = dyn_cast<Operator>(V)) {
3792 case Instruction::SExt:
3793 Tmp = TyBits - U->getOperand(0)->getType()->getScalarSizeInBits();
3797 case Instruction::SDiv: {
3798 const APInt *Denominator;
3811 return std::min(TyBits, NumBits + Denominator->
logBase2());
3816 case Instruction::SRem: {
3819 const APInt *Denominator;
3840 unsigned ResBits = TyBits - Denominator->
ceilLogBase2();
3841 Tmp = std::max(Tmp, ResBits);
3847 case Instruction::AShr: {
3852 if (ShAmt->
uge(TyBits))
3855 Tmp += ShAmtLimited;
3856 if (Tmp > TyBits) Tmp = TyBits;
3860 case Instruction::Shl: {
3865 if (ShAmt->
uge(TyBits))
3870 ShAmt->
uge(TyBits -
X->getType()->getScalarSizeInBits())) {
3872 Tmp += TyBits -
X->getType()->getScalarSizeInBits();
3876 if (ShAmt->
uge(Tmp))
3883 case Instruction::And:
3884 case Instruction::Or:
3885 case Instruction::Xor:
3890 FirstAnswer = std::min(Tmp, Tmp2);
3897 case Instruction::Select: {
3901 const APInt *CLow, *CHigh;
3909 return std::min(Tmp, Tmp2);
3912 case Instruction::Add:
3916 if (Tmp == 1)
break;
3919 if (
const auto *CRHS = dyn_cast<Constant>(U->getOperand(1)))
3920 if (CRHS->isAllOnesValue()) {
3926 if ((Known.
Zero | 1).isAllOnes())
3938 return std::min(Tmp, Tmp2) - 1;
3940 case Instruction::Sub:
3946 if (
const auto *CLHS = dyn_cast<Constant>(U->getOperand(0)))
3947 if (CLHS->isNullValue()) {
3952 if ((Known.
Zero | 1).isAllOnes())
3969 return std::min(Tmp, Tmp2) - 1;
3971 case Instruction::Mul: {
3974 unsigned SignBitsOp0 =
3976 if (SignBitsOp0 == 1)
3978 unsigned SignBitsOp1 =
3980 if (SignBitsOp1 == 1)
3982 unsigned OutValidBits =
3983 (TyBits - SignBitsOp0 + 1) + (TyBits - SignBitsOp1 + 1);
3984 return OutValidBits > TyBits ? 1 : TyBits - OutValidBits + 1;
3987 case Instruction::PHI: {
3988 const PHINode *PN = cast<PHINode>(U);
3991 if (NumIncomingValues > 4)
break;
3993 if (NumIncomingValues == 0)
break;
3999 for (
unsigned i = 0, e = NumIncomingValues; i != e; ++i) {
4000 if (Tmp == 1)
return Tmp;
4003 DemandedElts,
Depth + 1, RecQ));
4008 case Instruction::Trunc: {
4013 unsigned OperandTyBits = U->getOperand(0)->getType()->getScalarSizeInBits();
4014 if (Tmp > (OperandTyBits - TyBits))
4015 return Tmp - (OperandTyBits - TyBits);
4020 case Instruction::ExtractElement:
4027 case Instruction::ShuffleVector: {
4030 auto *Shuf = dyn_cast<ShuffleVectorInst>(U);
4035 APInt DemandedLHS, DemandedRHS;
4040 Tmp = std::numeric_limits<unsigned>::max();
4041 if (!!DemandedLHS) {
4042 const Value *
LHS = Shuf->getOperand(0);
4049 if (!!DemandedRHS) {
4050 const Value *
RHS = Shuf->getOperand(1);
4052 Tmp = std::min(Tmp, Tmp2);
4058 assert(Tmp <= TyBits &&
"Failed to determine minimum sign bits");
4061 case Instruction::Call: {
4062 if (
const auto *
II = dyn_cast<IntrinsicInst>(U)) {
4063 switch (
II->getIntrinsicID()) {
4066 case Intrinsic::abs:
4074 case Intrinsic::smin:
4075 case Intrinsic::smax: {
4076 const APInt *CLow, *CHigh;
4091 if (
unsigned VecSignBits =
4109 if (
F->isIntrinsic())
4110 return F->getIntrinsicID();
4116 if (
F->hasLocalLinkage() || !TLI || !TLI->
getLibFunc(CB, Func) ||
4126 return Intrinsic::sin;
4130 return Intrinsic::cos;
4134 return Intrinsic::tan;
4138 return Intrinsic::exp;
4142 return Intrinsic::exp2;
4146 return Intrinsic::log;
4148 case LibFunc_log10f:
4149 case LibFunc_log10l:
4150 return Intrinsic::log10;
4154 return Intrinsic::log2;
4158 return Intrinsic::fabs;
4162 return Intrinsic::minnum;
4166 return Intrinsic::maxnum;
4167 case LibFunc_copysign:
4168 case LibFunc_copysignf:
4169 case LibFunc_copysignl:
4170 return Intrinsic::copysign;
4172 case LibFunc_floorf:
4173 case LibFunc_floorl:
4174 return Intrinsic::floor;
4178 return Intrinsic::ceil;
4180 case LibFunc_truncf:
4181 case LibFunc_truncl:
4182 return Intrinsic::trunc;
4186 return Intrinsic::rint;
4187 case LibFunc_nearbyint:
4188 case LibFunc_nearbyintf:
4189 case LibFunc_nearbyintl:
4190 return Intrinsic::nearbyint;
4192 case LibFunc_roundf:
4193 case LibFunc_roundl:
4194 return Intrinsic::round;
4195 case LibFunc_roundeven:
4196 case LibFunc_roundevenf:
4197 case LibFunc_roundevenl:
4198 return Intrinsic::roundeven;
4202 return Intrinsic::pow;
4206 return Intrinsic::sqrt;
4254 switch (Mode.Input) {
4274 if (!Src.isKnownNeverPosZero() && !Src.isKnownNeverNegZero())
4278 if (Src.isKnownNeverSubnormal())
4308 bool &TrueIfSigned) {
4311 TrueIfSigned =
true;
4312 return RHS.isZero();
4314 TrueIfSigned =
true;
4315 return RHS.isAllOnes();
4317 TrueIfSigned =
false;
4318 return RHS.isAllOnes();
4320 TrueIfSigned =
false;
4321 return RHS.isZero();
4324 TrueIfSigned =
true;
4325 return RHS.isMaxSignedValue();
4328 TrueIfSigned =
true;
4329 return RHS.isMinSignedValue();
4332 TrueIfSigned =
false;
4333 return RHS.isMinSignedValue();
4336 TrueIfSigned =
false;
4337 return RHS.isMaxSignedValue();
4348 bool LookThroughSrc) {
4356std::pair<Value *, FPClassTest>
4358 const APFloat *ConstRHS,
bool LookThroughSrc) {
4360 auto [Src, ClassIfTrue, ClassIfFalse] =
4362 if (Src && ClassIfTrue == ~ClassIfFalse)
4363 return {Src, ClassIfTrue};
4374std::tuple<Value *, FPClassTest, FPClassTest>
4388 const bool IsNegativeRHS = (RHSClass &
fcNegative) == RHSClass;
4389 const bool IsPositiveRHS = (RHSClass &
fcPositive) == RHSClass;
4390 const bool IsNaN = (RHSClass & ~fcNan) ==
fcNone;
4410 const bool IsZero = (OrigClass &
fcZero) == OrigClass;
4457 const bool IsDenormalRHS = (OrigClass &
fcSubnormal) == OrigClass;
4459 const bool IsInf = (OrigClass &
fcInf) == OrigClass;
4477 if (IsNegativeRHS) {
4500 if (IsNegativeRHS) {
4501 Mask = ~fcNegInf & ~fcNan;
4505 Mask = ~fcPosInf & ~fcNan;
4514 if (IsNegativeRHS) {
4534 if (IsNegativeRHS) {
4554 if (IsNegativeRHS) {
4569 if (IsNegativeRHS) {
4597 return {Src, Class, ~fcNan};
4601 return {Src, ~fcNan, RHSClass |
fcNan};
4610 "should have been recognized as an exact class test");
4612 if (IsNegativeRHS) {
4622 return {Src, ~fcNan,
fcNan};
4631 return {Src,
fcNan, ~fcNan};
4650 return {Src, ClassesGE, ~ClassesGE | RHSClass};
4653 return {Src, ClassesGE |
fcNan, ~(ClassesGE |
fcNan) | RHSClass};
4656 return {Src, ClassesLE, ~ClassesLE | RHSClass};
4659 return {Src, ClassesLE |
fcNan, ~(ClassesLE |
fcNan) | RHSClass};
4663 }
else if (IsPositiveRHS) {
4679 return {Src, ClassesGE, ~ClassesGE | RHSClass};
4682 return {Src, ClassesGE |
fcNan, ~(ClassesGE |
fcNan) | RHSClass};
4685 return {Src, ClassesLE, ~ClassesLE | RHSClass};
4688 return {Src, ClassesLE |
fcNan, ~(ClassesLE |
fcNan) | RHSClass};
4697std::tuple<Value *, FPClassTest, FPClassTest>
4699 const APFloat &ConstRHS,
bool LookThroughSrc) {
4747std::tuple<Value *, FPClassTest, FPClassTest>
4749 Value *RHS,
bool LookThroughSrc) {
4771 KnownFromContext.
knownNot(~(CondIsTrue ? MaskIfTrue : MaskIfFalse));
4772 }
else if (
match(
Cond, m_Intrinsic<Intrinsic::is_fpclass>(
4775 KnownFromContext.
knownNot(CondIsTrue ? ~Mask : Mask);
4781 if (TrueIfSigned == CondIsTrue)
4793 return KnownFromContext;
4813 return KnownFromContext;
4823 "Got assumption for the wrong function!");
4824 assert(
I->getIntrinsicID() == Intrinsic::assume &&
4825 "must be an assume intrinsic");
4831 Q.
CxtI, KnownFromContext);
4834 return KnownFromContext;
4844 auto *FVTy = dyn_cast<FixedVectorType>(V->getType());
4845 APInt DemandedElts =
4851 const APInt &DemandedElts,
4855 if ((InterestedClasses &
4861 KnownSrc,
Depth + 1, Q);
4876 assert(Known.
isUnknown() &&
"should not be called with known information");
4878 if (!DemandedElts) {
4886 if (
auto *CFP = dyn_cast<ConstantFP>(V)) {
4888 Known.
SignBit = CFP->isNegative();
4892 if (isa<ConstantAggregateZero>(V)) {
4898 if (isa<PoisonValue>(V)) {
4905 auto *VFVTy = dyn_cast<FixedVectorType>(V->getType());
4906 const Constant *CV = dyn_cast<Constant>(V);
4909 bool SignBitAllZero =
true;
4910 bool SignBitAllOne =
true;
4913 unsigned NumElts = VFVTy->getNumElements();
4914 for (
unsigned i = 0; i != NumElts; ++i) {
4915 if (!DemandedElts[i])
4923 if (isa<PoisonValue>(Elt))
4925 auto *CElt = dyn_cast<ConstantFP>(Elt);
4931 const APFloat &
C = CElt->getValueAPF();
4934 SignBitAllZero =
false;
4936 SignBitAllOne =
false;
4938 if (SignBitAllOne != SignBitAllZero)
4939 Known.
SignBit = SignBitAllOne;
4944 if (
const auto *CB = dyn_cast<CallBase>(V))
4945 KnownNotFromFlags |= CB->getRetNoFPClass();
4946 else if (
const auto *Arg = dyn_cast<Argument>(V))
4947 KnownNotFromFlags |= Arg->getNoFPClass();
4951 if (FPOp->hasNoNaNs())
4952 KnownNotFromFlags |=
fcNan;
4953 if (FPOp->hasNoInfs())
4954 KnownNotFromFlags |=
fcInf;
4958 KnownNotFromFlags |= ~AssumedClasses.KnownFPClasses;
4962 InterestedClasses &= ~KnownNotFromFlags;
4967 if (*AssumedClasses.SignBit)
4968 Known.signBitMustBeOne();
4970 Known.signBitMustBeZero();
4981 const unsigned Opc =
Op->getOpcode();
4983 case Instruction::FNeg: {
4985 Known,
Depth + 1, Q);
4989 case Instruction::Select: {
4997 Value *TestedValue =
nullptr;
5001 const Function *
F = cast<Instruction>(
Op)->getFunction();
5003 Value *CmpLHS, *CmpRHS;
5010 bool LookThroughFAbsFNeg = CmpLHS !=
LHS && CmpLHS !=
RHS;
5011 std::tie(TestedValue, MaskIfTrue, MaskIfFalse) =
5014 m_Intrinsic<Intrinsic::is_fpclass>(
5017 MaskIfTrue = TestedMask;
5018 MaskIfFalse = ~TestedMask;
5021 if (TestedValue ==
LHS) {
5023 FilterLHS = MaskIfTrue;
5024 }
else if (TestedValue ==
RHS) {
5026 FilterRHS = MaskIfFalse;
5035 Known2,
Depth + 1, Q);
5041 case Instruction::Call: {
5045 case Intrinsic::fabs: {
5050 InterestedClasses, Known,
Depth + 1, Q);
5056 case Intrinsic::copysign: {
5060 Known,
Depth + 1, Q);
5062 KnownSign,
Depth + 1, Q);
5066 case Intrinsic::fma:
5067 case Intrinsic::fmuladd: {
5071 if (
II->getArgOperand(0) !=
II->getArgOperand(1))
5080 KnownAddend,
Depth + 1, Q);
5086 case Intrinsic::sqrt:
5087 case Intrinsic::experimental_constrained_sqrt: {
5090 if (InterestedClasses &
fcNan)
5094 KnownSrc,
Depth + 1, Q);
5117 case Intrinsic::sin:
5118 case Intrinsic::cos: {
5122 KnownSrc,
Depth + 1, Q);
5128 case Intrinsic::maxnum:
5129 case Intrinsic::minnum:
5130 case Intrinsic::minimum:
5131 case Intrinsic::maximum: {
5134 KnownLHS,
Depth + 1, Q);
5136 KnownRHS,
Depth + 1, Q);
5139 Known = KnownLHS | KnownRHS;
5142 if (NeverNaN && (IID == Intrinsic::minnum || IID == Intrinsic::maxnum))
5145 if (IID == Intrinsic::maxnum) {
5153 }
else if (IID == Intrinsic::maximum) {
5159 }
else if (IID == Intrinsic::minnum) {
5189 II->getType()->getScalarType()->getFltSemantics());
5201 }
else if ((IID == Intrinsic::maximum || IID == Intrinsic::minimum) ||
5206 if ((IID == Intrinsic::maximum || IID == Intrinsic::maxnum) &&
5209 else if ((IID == Intrinsic::minimum || IID == Intrinsic::minnum) &&
5216 case Intrinsic::canonicalize: {
5219 KnownSrc,
Depth + 1, Q);
5243 II->getType()->getScalarType()->getFltSemantics();
5263 case Intrinsic::vector_reduce_fmax:
5264 case Intrinsic::vector_reduce_fmin:
5265 case Intrinsic::vector_reduce_fmaximum:
5266 case Intrinsic::vector_reduce_fminimum: {
5270 InterestedClasses,
Depth + 1, Q);
5277 case Intrinsic::vector_reverse:
5280 II->getFastMathFlags(), InterestedClasses,
Depth + 1, Q);
5282 case Intrinsic::trunc:
5283 case Intrinsic::floor:
5284 case Intrinsic::ceil:
5285 case Intrinsic::rint:
5286 case Intrinsic::nearbyint:
5287 case Intrinsic::round:
5288 case Intrinsic::roundeven: {
5296 KnownSrc,
Depth + 1, Q);
5305 if (IID == Intrinsic::trunc || !V->getType()->isMultiUnitFPType()) {
5320 case Intrinsic::exp:
5321 case Intrinsic::exp2:
5322 case Intrinsic::exp10: {
5329 KnownSrc,
Depth + 1, Q);
5337 case Intrinsic::fptrunc_round: {
5342 case Intrinsic::log:
5343 case Intrinsic::log10:
5344 case Intrinsic::log2:
5345 case Intrinsic::experimental_constrained_log:
5346 case Intrinsic::experimental_constrained_log10:
5347 case Intrinsic::experimental_constrained_log2: {
5363 KnownSrc,
Depth + 1, Q);
5377 case Intrinsic::powi: {
5381 const Value *Exp =
II->getArgOperand(1);
5382 Type *ExpTy = Exp->getType();
5386 ExponentKnownBits,
Depth + 1, Q);
5388 if (ExponentKnownBits.
Zero[0]) {
5403 KnownSrc,
Depth + 1, Q);
5408 case Intrinsic::ldexp: {
5411 KnownSrc,
Depth + 1, Q);
5427 if ((InterestedClasses & ExpInfoMask) ==
fcNone)
5433 II->getType()->getScalarType()->getFltSemantics();
5435 const Value *ExpArg =
II->getArgOperand(1);
5439 const int MantissaBits = Precision - 1;
5445 if (ConstVal && ConstVal->
isZero()) {
5468 case Intrinsic::arithmetic_fence: {
5470 Known,
Depth + 1, Q);
5473 case Intrinsic::experimental_constrained_sitofp:
5474 case Intrinsic::experimental_constrained_uitofp:
5484 if (IID == Intrinsic::experimental_constrained_uitofp)
5495 case Instruction::FAdd:
5496 case Instruction::FSub: {
5499 Op->getOpcode() == Instruction::FAdd &&
5501 bool WantNaN = (InterestedClasses &
fcNan) !=
fcNone;
5504 if (!WantNaN && !WantNegative && !WantNegZero)
5510 if (InterestedClasses &
fcNan)
5511 InterestedSrcs |=
fcInf;
5513 KnownRHS,
Depth + 1, Q);
5517 WantNegZero || Opc == Instruction::FSub) {
5522 KnownLHS,
Depth + 1, Q);
5530 const Function *
F = cast<Instruction>(
Op)->getFunction();
5532 if (
Op->getOpcode() == Instruction::FAdd) {
5560 case Instruction::FMul: {
5562 if (
Op->getOperand(0) ==
Op->getOperand(1))
5595 const Function *
F = cast<Instruction>(
Op)->getFunction();
5607 case Instruction::FDiv:
5608 case Instruction::FRem: {
5609 if (
Op->getOperand(0) ==
Op->getOperand(1)) {
5611 if (
Op->getOpcode() == Instruction::FDiv) {
5622 const bool WantNan = (InterestedClasses &
fcNan) !=
fcNone;
5624 const bool WantPositive =
5626 if (!WantNan && !WantNegative && !WantPositive)
5635 bool KnowSomethingUseful =
5638 if (KnowSomethingUseful || WantPositive) {
5644 InterestedClasses & InterestedLHS, KnownLHS,
5648 const Function *
F = cast<Instruction>(
Op)->getFunction();
5650 if (
Op->getOpcode() == Instruction::FDiv) {
5687 case Instruction::FPExt: {
5690 Known,
Depth + 1, Q);
5693 Op->getType()->getScalarType()->getFltSemantics();
5695 Op->getOperand(0)->getType()->getScalarType()->getFltSemantics();
5711 case Instruction::FPTrunc: {
5716 case Instruction::SIToFP:
5717 case Instruction::UIToFP: {
5726 if (
Op->getOpcode() == Instruction::UIToFP)
5729 if (InterestedClasses &
fcInf) {
5733 int IntSize =
Op->getOperand(0)->getType()->getScalarSizeInBits();
5734 if (
Op->getOpcode() == Instruction::SIToFP)
5739 Type *FPTy =
Op->getType()->getScalarType();
5746 case Instruction::ExtractElement: {
5749 const Value *Vec =
Op->getOperand(0);
5751 auto *CIdx = dyn_cast<ConstantInt>(
Idx);
5753 if (
auto *VecTy = dyn_cast<FixedVectorType>(Vec->
getType())) {
5754 unsigned NumElts = VecTy->getNumElements();
5756 if (CIdx && CIdx->getValue().ult(NumElts))
5764 case Instruction::InsertElement: {
5765 if (isa<ScalableVectorType>(
Op->getType()))
5768 const Value *Vec =
Op->getOperand(0);
5769 const Value *Elt =
Op->getOperand(1);
5770 auto *CIdx = dyn_cast<ConstantInt>(
Op->getOperand(2));
5772 APInt DemandedVecElts = DemandedElts;
5773 bool NeedsElt =
true;
5775 if (CIdx && CIdx->getValue().ult(NumElts)) {
5776 DemandedVecElts.
clearBit(CIdx->getZExtValue());
5777 NeedsElt = DemandedElts[CIdx->getZExtValue()];
5791 if (!DemandedVecElts.
isZero()) {
5800 case Instruction::ShuffleVector: {
5803 APInt DemandedLHS, DemandedRHS;
5804 auto *Shuf = dyn_cast<ShuffleVectorInst>(
Op);
5808 if (!!DemandedLHS) {
5809 const Value *
LHS = Shuf->getOperand(0);
5820 if (!!DemandedRHS) {
5822 const Value *
RHS = Shuf->getOperand(1);
5830 case Instruction::ExtractValue: {
5834 if (isa<StructType>(Src->getType()) && Indices.
size() == 1 &&
5836 if (
const auto *
II = dyn_cast<IntrinsicInst>(Src)) {
5837 switch (
II->getIntrinsicID()) {
5838 case Intrinsic::frexp: {
5843 InterestedClasses, KnownSrc,
Depth + 1, Q);
5845 const Function *
F = cast<Instruction>(
Op)->getFunction();
5878 case Instruction::PHI: {
5881 if (
P->getNumIncomingValues() == 0)
5888 if (
Depth < PhiRecursionLimit) {
5890 if (isa_and_nonnull<UndefValue>(
P->hasConstantValue()))
5895 for (
const Use &U :
P->operands()) {
5896 Value *IncValue = U.get();
5908 P->getIncomingBlock(U)->getTerminator()));
5930 const APInt &DemandedElts,
5937 return KnownClasses;
5952 if (V->getType()->isIntegerTy(8))
5959 if (isa<UndefValue>(V))
5963 if (
DL.getTypeStoreSize(V->getType()).isZero())
5978 if (
C->isNullValue())
5985 if (CFP->getType()->isHalfTy())
5987 else if (CFP->getType()->isFloatTy())
5989 else if (CFP->getType()->isDoubleTy())
5998 if (CI->getBitWidth() % 8 == 0) {
5999 assert(CI->getBitWidth() > 8 &&
"8 bits should be handled above!");
6000 if (!CI->getValue().isSplat(8))
6002 return ConstantInt::get(Ctx, CI->getValue().trunc(8));
6006 if (
auto *CE = dyn_cast<ConstantExpr>(
C)) {
6007 if (CE->getOpcode() == Instruction::IntToPtr) {
6008 if (
auto *PtrTy = dyn_cast<PointerType>(CE->getType())) {
6009 unsigned BitWidth =
DL.getPointerSizeInBits(PtrTy->getAddressSpace());
6022 if (
LHS == UndefInt8)
6024 if (
RHS == UndefInt8)
6030 Value *Val = UndefInt8;
6031 for (
unsigned I = 0, E = CA->getNumElements();
I != E; ++
I)
6037 if (isa<ConstantAggregate>(
C)) {
6038 Value *Val = UndefInt8;
6059 StructType *STy = dyn_cast<StructType>(IndexedType);
6073 while (PrevTo != OrigTo) {
6120 unsigned IdxSkip = Idxs.
size();
6133 std::optional<BasicBlock::iterator> InsertBefore) {
6136 if (idx_range.
empty())
6139 assert((V->getType()->isStructTy() || V->getType()->isArrayTy()) &&
6140 "Not looking at a struct or array?");
6142 "Invalid indices for type?");
6144 if (
Constant *
C = dyn_cast<Constant>(V)) {
6145 C =
C->getAggregateElement(idx_range[0]);
6146 if (!
C)
return nullptr;
6153 const unsigned *req_idx = idx_range.
begin();
6154 for (
const unsigned *i =
I->idx_begin(), *e =
I->idx_end();
6155 i != e; ++i, ++req_idx) {
6156 if (req_idx == idx_range.
end()) {
6186 ArrayRef(req_idx, idx_range.
end()), InsertBefore);
6195 unsigned size =
I->getNumIndices() + idx_range.
size();
6200 Idxs.
append(
I->idx_begin(),
I->idx_end());
6206 &&
"Number of indices added not correct?");
6216 unsigned CharSize) {
6218 if (
GEP->getNumOperands() != 3)
6223 ArrayType *AT = dyn_cast<ArrayType>(
GEP->getSourceElementType());
6229 const ConstantInt *FirstIdx = dyn_cast<ConstantInt>(
GEP->getOperand(1));
6230 if (!FirstIdx || !FirstIdx->
isZero())
6244 assert(V &&
"V should not be null.");
6245 assert((ElementSize % 8) == 0 &&
6246 "ElementSize expected to be a multiple of the size of a byte.");
6247 unsigned ElementSizeInBytes = ElementSize / 8;
6259 APInt Off(
DL.getIndexTypeSizeInBits(V->getType()), 0);
6261 if (GV != V->stripAndAccumulateConstantOffsets(
DL, Off,
6266 uint64_t StartIdx = Off.getLimitedValue();
6273 if ((StartIdx % ElementSizeInBytes) != 0)
6276 Offset += StartIdx / ElementSizeInBytes;
6282 uint64_t SizeInBytes =
DL.getTypeStoreSize(GVTy).getFixedValue();
6285 Slice.
Array =
nullptr;
6296 if (
auto *ArrayInit = dyn_cast<ConstantDataArray>(
Init)) {
6297 Type *InitElTy = ArrayInit->getElementType();
6302 ArrayTy = ArrayInit->getType();
6307 if (ElementSize != 8)
6318 Array = dyn_cast<ConstantDataArray>(
Init);
6319 ArrayTy = dyn_cast<ArrayType>(
Init->getType());
6326 Slice.
Array = Array;
6342 if (Slice.
Array ==
nullptr) {
6365 Str = Str.substr(Slice.
Offset);
6371 Str = Str.substr(0, Str.find(
'\0'));
6384 unsigned CharSize) {
6386 V = V->stripPointerCasts();
6390 if (
const PHINode *PN = dyn_cast<PHINode>(V)) {
6391 if (!PHIs.
insert(PN).second)
6396 for (
Value *IncValue : PN->incoming_values()) {
6398 if (Len == 0)
return 0;
6400 if (Len == ~0ULL)
continue;
6402 if (Len != LenSoFar && LenSoFar != ~0ULL)
6412 if (
const SelectInst *SI = dyn_cast<SelectInst>(V)) {
6414 if (Len1 == 0)
return 0;
6416 if (Len2 == 0)
return 0;
6417 if (Len1 == ~0ULL)
return Len2;
6418 if (Len2 == ~0ULL)
return Len1;
6419 if (Len1 != Len2)
return 0;
6428 if (Slice.
Array ==
nullptr)
6436 unsigned NullIndex = 0;
6437 for (
unsigned E = Slice.
Length; NullIndex < E; ++NullIndex) {
6442 return NullIndex + 1;
6448 if (!V->getType()->isPointerTy())
6455 return Len == ~0ULL ? 1 : Len;
6460 bool MustPreserveNullness) {
6462 "getArgumentAliasingToReturnedPointer only works on nonnull calls");
6463 if (
const Value *RV = Call->getReturnedArgOperand())
6467 Call, MustPreserveNullness))
6468 return Call->getArgOperand(0);
6473 const CallBase *Call,
bool MustPreserveNullness) {
6474 switch (Call->getIntrinsicID()) {
6475 case Intrinsic::launder_invariant_group:
6476 case Intrinsic::strip_invariant_group:
6477 case Intrinsic::aarch64_irg:
6478 case Intrinsic::aarch64_tagp:
6488 case Intrinsic::amdgcn_make_buffer_rsrc:
6490 case Intrinsic::ptrmask:
6491 return !MustPreserveNullness;
6492 case Intrinsic::threadlocal_address:
6495 return !Call->getParent()->getParent()->isPresplitCoroutine();
6512 if (!PrevValue || LI->
getLoopFor(PrevValue->getParent()) != L)
6514 if (!PrevValue || LI->
getLoopFor(PrevValue->getParent()) != L)
6522 if (
auto *Load = dyn_cast<LoadInst>(PrevValue))
6523 if (!L->isLoopInvariant(Load->getPointerOperand()))
6529 if (!V->getType()->isPointerTy())
6531 for (
unsigned Count = 0; MaxLookup == 0 || Count < MaxLookup; ++Count) {
6532 if (
auto *
GEP = dyn_cast<GEPOperator>(V)) {
6533 V =
GEP->getPointerOperand();
6536 Value *NewV = cast<Operator>(V)->getOperand(0);
6540 }
else if (
auto *GA = dyn_cast<GlobalAlias>(V)) {
6541 if (GA->isInterposable())
6543 V = GA->getAliasee();
6545 if (
auto *
PHI = dyn_cast<PHINode>(V)) {
6547 if (
PHI->getNumIncomingValues() == 1) {
6548 V =
PHI->getIncomingValue(0);
6551 }
else if (
auto *Call = dyn_cast<CallBase>(V)) {
6569 assert(V->getType()->isPointerTy() &&
"Unexpected operand type!");
6576 const LoopInfo *LI,
unsigned MaxLookup) {
6584 if (!Visited.
insert(
P).second)
6587 if (
auto *SI = dyn_cast<SelectInst>(
P)) {
6589 Worklist.
push_back(SI->getFalseValue());
6593 if (
auto *PN = dyn_cast<PHINode>(
P)) {
6613 }
while (!Worklist.
empty());
6617 const unsigned MaxVisited = 8;
6622 const Value *Object =
nullptr;
6632 if (!Visited.
insert(
P).second)
6635 if (Visited.
size() == MaxVisited)
6638 if (
auto *SI = dyn_cast<SelectInst>(
P)) {
6640 Worklist.
push_back(SI->getFalseValue());
6644 if (
auto *PN = dyn_cast<PHINode>(
P)) {
6651 else if (Object !=
P)
6653 }
while (!Worklist.
empty());
6662 if (
const Operator *U = dyn_cast<Operator>(V)) {
6665 if (U->getOpcode() == Instruction::PtrToInt)
6666 return U->getOperand(0);
6673 if (U->getOpcode() != Instruction::Add ||
6674 (!isa<ConstantInt>(U->getOperand(1)) &&
6676 !isa<PHINode>(U->getOperand(1))))
6678 V = U->getOperand(0);
6682 assert(V->getType()->isIntegerTy() &&
"Unexpected operand type!");
6699 for (
const Value *V : Objs) {
6700 if (!Visited.
insert(V).second)
6705 if (O->getType()->isPointerTy()) {
6718 }
while (!Working.
empty());
6727 auto AddWork = [&](
Value *V) {
6728 if (Visited.
insert(V).second)
6737 if (
AllocaInst *AI = dyn_cast<AllocaInst>(V)) {
6738 if (Result && Result != AI)
6741 }
else if (
CastInst *CI = dyn_cast<CastInst>(V)) {
6742 AddWork(CI->getOperand(0));
6743 }
else if (
PHINode *PN = dyn_cast<PHINode>(V)) {
6744 for (
Value *IncValue : PN->incoming_values())
6746 }
else if (
auto *SI = dyn_cast<SelectInst>(V)) {
6747 AddWork(SI->getTrueValue());
6748 AddWork(SI->getFalseValue());
6750 if (OffsetZero && !
GEP->hasAllZeroIndices())
6752 AddWork(
GEP->getPointerOperand());
6753 }
else if (
CallBase *CB = dyn_cast<CallBase>(V)) {
6754 Value *Returned = CB->getReturnedArgOperand();
6762 }
while (!Worklist.
empty());
6768 const Value *V,
bool AllowLifetime,
bool AllowDroppable) {
6769 for (
const User *U : V->users()) {
6774 if (AllowLifetime &&
II->isLifetimeStartOrEnd())
6777 if (AllowDroppable &&
II->isDroppable())
6799 bool UseVariableInfo) {
6801 AC, DT, TLI, UseVariableInfo);
6807 bool UseVariableInfo) {
6811 auto hasEqualReturnAndLeadingOperandTypes =
6812 [](
const Instruction *Inst,
unsigned NumLeadingOperands) {
6816 for (
unsigned ItOp = 0; ItOp < NumLeadingOperands; ++ItOp)
6822 hasEqualReturnAndLeadingOperandTypes(Inst, 2));
6824 hasEqualReturnAndLeadingOperandTypes(Inst, 1));
6831 case Instruction::UDiv:
6832 case Instruction::URem: {
6839 case Instruction::SDiv:
6840 case Instruction::SRem: {
6842 const APInt *Numerator, *Denominator;
6846 if (*Denominator == 0)
6858 case Instruction::Load: {
6859 if (!UseVariableInfo)
6862 const LoadInst *LI = dyn_cast<LoadInst>(Inst);
6872 case Instruction::Call: {
6873 auto *CI = dyn_cast<const CallInst>(Inst);
6876 const Function *Callee = CI->getCalledFunction();
6880 return Callee && Callee->isSpeculatable();
6882 case Instruction::VAArg:
6883 case Instruction::Alloca:
6884 case Instruction::Invoke:
6885 case Instruction::CallBr:
6886 case Instruction::PHI:
6887 case Instruction::Store:
6888 case Instruction::Ret:
6889 case Instruction::Br:
6890 case Instruction::IndirectBr:
6891 case Instruction::Switch:
6892 case Instruction::Unreachable:
6893 case Instruction::Fence:
6894 case Instruction::AtomicRMW:
6895 case Instruction::AtomicCmpXchg:
6896 case Instruction::LandingPad:
6897 case Instruction::Resume:
6898 case Instruction::CatchSwitch:
6899 case Instruction::CatchPad:
6900 case Instruction::CatchRet:
6901 case Instruction::CleanupPad:
6902 case Instruction::CleanupRet:
6908 if (
I.mayReadOrWriteMemory())
7021 if (
Add &&
Add->hasNoSignedWrap()) {
7061 bool LHSOrRHSKnownNonNegative =
7063 bool LHSOrRHSKnownNegative =
7065 if (LHSOrRHSKnownNonNegative || LHSOrRHSKnownNegative) {
7068 if ((AddKnown.
isNonNegative() && LHSOrRHSKnownNonNegative) ||
7069 (AddKnown.
isNegative() && LHSOrRHSKnownNegative))
7144 if (
const auto *EVI = dyn_cast<ExtractValueInst>(U)) {
7145 assert(EVI->getNumIndices() == 1 &&
"Obvious from CI's type");
7147 if (EVI->getIndices()[0] == 0)
7150 assert(EVI->getIndices()[0] == 1 &&
"Obvious from CI's type");
7152 for (
const auto *U : EVI->users())
7153 if (
const auto *
B = dyn_cast<BranchInst>(U)) {
7154 assert(
B->isConditional() &&
"How else is it using an i1?");
7165 auto AllUsesGuardedByBranch = [&](
const BranchInst *BI) {
7171 for (
const auto *Result :
Results) {
7174 if (DT.
dominates(NoWrapEdge, Result->getParent()))
7177 for (
const auto &RU : Result->uses())
7185 return llvm::any_of(GuardingBranches, AllUsesGuardedByBranch);
7190 auto *
C = dyn_cast<Constant>(ShiftAmount);
7196 if (
auto *FVTy = dyn_cast<FixedVectorType>(
C->getType())) {
7197 unsigned NumElts = FVTy->getNumElements();
7198 for (
unsigned i = 0; i < NumElts; ++i)
7199 ShiftAmounts.
push_back(
C->getAggregateElement(i));
7200 }
else if (isa<ScalableVectorType>(
C->getType()))
7206 auto *CI = dyn_cast_or_null<ConstantInt>(
C);
7207 return CI && CI->getValue().ult(
C->getType()->getIntegerBitWidth());
7220 return (
unsigned(Kind) &
unsigned(UndefPoisonKind::PoisonOnly)) != 0;
7224 return (
unsigned(Kind) &
unsigned(UndefPoisonKind::UndefOnly)) != 0;
7228 bool ConsiderFlagsAndMetadata) {
7231 Op->hasPoisonGeneratingAnnotations())
7234 unsigned Opcode =
Op->getOpcode();
7238 case Instruction::Shl:
7239 case Instruction::AShr:
7240 case Instruction::LShr:
7242 case Instruction::FPToSI:
7243 case Instruction::FPToUI:
7247 case Instruction::Call:
7248 if (
auto *
II = dyn_cast<IntrinsicInst>(
Op)) {
7249 switch (
II->getIntrinsicID()) {
7251 case Intrinsic::ctlz:
7252 case Intrinsic::cttz:
7253 case Intrinsic::abs:
7254 if (cast<ConstantInt>(
II->getArgOperand(1))->isNullValue())
7257 case Intrinsic::ctpop:
7258 case Intrinsic::bswap:
7259 case Intrinsic::bitreverse:
7260 case Intrinsic::fshl:
7261 case Intrinsic::fshr:
7262 case Intrinsic::smax:
7263 case Intrinsic::smin:
7264 case Intrinsic::umax:
7265 case Intrinsic::umin:
7266 case Intrinsic::ptrmask:
7267 case Intrinsic::fptoui_sat:
7268 case Intrinsic::fptosi_sat:
7269 case Intrinsic::sadd_with_overflow:
7270 case Intrinsic::ssub_with_overflow:
7271 case Intrinsic::smul_with_overflow:
7272 case Intrinsic::uadd_with_overflow:
7273 case Intrinsic::usub_with_overflow:
7274 case Intrinsic::umul_with_overflow:
7275 case Intrinsic::sadd_sat:
7276 case Intrinsic::uadd_sat:
7277 case Intrinsic::ssub_sat:
7278 case Intrinsic::usub_sat:
7280 case Intrinsic::sshl_sat:
7281 case Intrinsic::ushl_sat:
7284 case Intrinsic::fma:
7285 case Intrinsic::fmuladd:
7286 case Intrinsic::sqrt:
7287 case Intrinsic::powi:
7288 case Intrinsic::sin:
7289 case Intrinsic::cos:
7290 case Intrinsic::pow:
7291 case Intrinsic::log:
7292 case Intrinsic::log10:
7293 case Intrinsic::log2:
7294 case Intrinsic::exp:
7295 case Intrinsic::exp2:
7296 case Intrinsic::exp10:
7297 case Intrinsic::fabs:
7298 case Intrinsic::copysign:
7299 case Intrinsic::floor:
7300 case Intrinsic::ceil:
7301 case Intrinsic::trunc:
7302 case Intrinsic::rint:
7303 case Intrinsic::nearbyint:
7304 case Intrinsic::round:
7305 case Intrinsic::roundeven:
7306 case Intrinsic::fptrunc_round:
7307 case Intrinsic::canonicalize:
7308 case Intrinsic::arithmetic_fence:
7309 case Intrinsic::minnum:
7310 case Intrinsic::maxnum:
7311 case Intrinsic::minimum:
7312 case Intrinsic::maximum:
7313 case Intrinsic::is_fpclass:
7314 case Intrinsic::ldexp:
7315 case Intrinsic::frexp:
7317 case Intrinsic::lround:
7318 case Intrinsic::llround:
7319 case Intrinsic::lrint:
7320 case Intrinsic::llrint:
7327 case Instruction::CallBr:
7328 case Instruction::Invoke: {
7329 const auto *CB = cast<CallBase>(
Op);
7330 return !CB->hasRetAttr(Attribute::NoUndef);
7332 case Instruction::InsertElement:
7333 case Instruction::ExtractElement: {
7335 auto *VTy = cast<VectorType>(
Op->getOperand(0)->getType());
7336 unsigned IdxOp =
Op->getOpcode() == Instruction::InsertElement ? 2 : 1;
7337 auto *
Idx = dyn_cast<ConstantInt>(
Op->getOperand(IdxOp));
7340 Idx->getValue().uge(VTy->getElementCount().getKnownMinValue());
7343 case Instruction::ShuffleVector: {
7345 ? cast<ConstantExpr>(
Op)->getShuffleMask()
7346 : cast<ShuffleVectorInst>(
Op)->getShuffleMask();
7349 case Instruction::FNeg:
7350 case Instruction::PHI:
7351 case Instruction::Select:
7352 case Instruction::URem:
7353 case Instruction::SRem:
7354 case Instruction::ExtractValue:
7355 case Instruction::InsertValue:
7356 case Instruction::Freeze:
7357 case Instruction::ICmp:
7358 case Instruction::FCmp:
7359 case Instruction::FAdd:
7360 case Instruction::FSub:
7361 case Instruction::FMul:
7362 case Instruction::FDiv:
7363 case Instruction::FRem:
7365 case Instruction::GetElementPtr:
7370 const auto *CE = dyn_cast<ConstantExpr>(
Op);
7371 if (isa<CastInst>(
Op) || (CE && CE->isCast()))
7382 bool ConsiderFlagsAndMetadata) {
7383 return ::canCreateUndefOrPoison(
Op, UndefPoisonKind::UndefOrPoison,
7384 ConsiderFlagsAndMetadata);
7388 return ::canCreateUndefOrPoison(
Op, UndefPoisonKind::PoisonOnly,
7389 ConsiderFlagsAndMetadata);
7394 if (ValAssumedPoison == V)
7401 if (
const auto *
I = dyn_cast<Instruction>(V)) {
7403 return propagatesPoison(Op) &&
7404 directlyImpliesPoison(ValAssumedPoison, Op, Depth + 1);
7432 const auto *
I = dyn_cast<Instruction>(ValAssumedPoison);
7435 return impliesPoison(Op, V, Depth + 1);
7442 return ::impliesPoison(ValAssumedPoison, V, 0);
7453 if (isa<MetadataAsValue>(V))
7456 if (
const auto *
A = dyn_cast<Argument>(V)) {
7457 if (
A->hasAttribute(Attribute::NoUndef) ||
7458 A->hasAttribute(Attribute::Dereferenceable) ||
7459 A->hasAttribute(Attribute::DereferenceableOrNull))
7463 if (
auto *
C = dyn_cast<Constant>(V)) {
7464 if (isa<PoisonValue>(
C))
7467 if (isa<UndefValue>(
C))
7470 if (isa<ConstantInt>(
C) || isa<GlobalVariable>(
C) || isa<ConstantFP>(V) ||
7471 isa<ConstantPointerNull>(
C) || isa<Function>(
C))
7474 if (
C->getType()->isVectorTy() && !isa<ConstantExpr>(
C)) {
7479 return !
C->containsConstantExpression();
7491 auto *StrippedV = V->stripPointerCastsSameRepresentation();
7492 if (isa<AllocaInst>(StrippedV) || isa<GlobalVariable>(StrippedV) ||
7493 isa<Function>(StrippedV) || isa<ConstantPointerNull>(StrippedV))
7496 auto OpCheck = [&](
const Value *V) {
7500 if (
auto *Opr = dyn_cast<Operator>(V)) {
7503 if (isa<FreezeInst>(V))
7506 if (
const auto *CB = dyn_cast<CallBase>(V)) {
7507 if (CB->hasRetAttr(Attribute::NoUndef) ||
7508 CB->hasRetAttr(Attribute::Dereferenceable) ||
7509 CB->hasRetAttr(Attribute::DereferenceableOrNull))
7513 if (
const auto *PN = dyn_cast<PHINode>(V)) {
7514 unsigned Num = PN->getNumIncomingValues();
7515 bool IsWellDefined =
true;
7516 for (
unsigned i = 0; i < Num; ++i) {
7517 auto *TI = PN->getIncomingBlock(i)->getTerminator();
7519 DT,
Depth + 1, Kind)) {
7520 IsWellDefined =
false;
7528 all_of(Opr->operands(), OpCheck))
7532 if (
auto *
I = dyn_cast<LoadInst>(V))
7533 if (
I->hasMetadata(LLVMContext::MD_noundef) ||
7534 I->hasMetadata(LLVMContext::MD_dereferenceable) ||
7535 I->hasMetadata(LLVMContext::MD_dereferenceable_or_null))
7555 auto *Dominator = DNode->
getIDom();
7560 auto *TI = Dominator->
getBlock()->getTerminator();
7563 if (
auto BI = dyn_cast_or_null<BranchInst>(TI)) {
7564 if (BI->isConditional())
7565 Cond = BI->getCondition();
7566 }
else if (
auto SI = dyn_cast_or_null<SwitchInst>(TI)) {
7567 Cond = SI->getCondition();
7575 auto *Opr = cast<Operator>(
Cond);
7576 if (
any_of(Opr->operands(), [V](
const Use &U) {
7577 return V == U && propagatesPoison(U);
7583 Dominator = Dominator->getIDom();
7596 return ::isGuaranteedNotToBeUndefOrPoison(V, AC, CtxI, DT,
Depth,
7597 UndefPoisonKind::UndefOrPoison);
7603 return ::isGuaranteedNotToBeUndefOrPoison(V, AC, CtxI, DT,
Depth,
7604 UndefPoisonKind::PoisonOnly);
7610 return ::isGuaranteedNotToBeUndefOrPoison(V, AC, CtxI, DT,
Depth,
7611 UndefPoisonKind::UndefOnly);
7634 while (!Worklist.
empty()) {
7643 if (
I != Root && !
any_of(
I->operands(), [&KnownPoison](
const Use &U) {
7644 return KnownPoison.contains(U) && propagatesPoison(U);
7648 if (KnownPoison.
insert(
I).second)
7660 return ::computeOverflowForSignedAdd(
Add->getOperand(0),
Add->getOperand(1),
7668 return ::computeOverflowForSignedAdd(
LHS,
RHS,
nullptr, SQ);
7677 if (isa<ReturnInst>(
I))
7679 if (isa<UnreachableInst>(
I))
7686 if (isa<CatchPadInst>(
I)) {
7700 return !
I->mayThrow() &&
I->willReturn();
7714 unsigned ScanLimit) {
7721 assert(ScanLimit &&
"scan limit must be non-zero");
7723 if (isa<DbgInfoIntrinsic>(
I))
7725 if (--ScanLimit == 0)
7739 if (
I->getParent() != L->getHeader())
return false;
7742 if (&LI ==
I)
return true;
7745 llvm_unreachable(
"Instruction not contained in its own parent basic block.");
7750 switch (
I->getOpcode()) {
7751 case Instruction::Freeze:
7752 case Instruction::PHI:
7753 case Instruction::Invoke:
7755 case Instruction::Select:
7757 case Instruction::Call:
7758 if (
auto *
II = dyn_cast<IntrinsicInst>(
I)) {
7759 switch (
II->getIntrinsicID()) {
7761 case Intrinsic::sadd_with_overflow:
7762 case Intrinsic::ssub_with_overflow:
7763 case Intrinsic::smul_with_overflow:
7764 case Intrinsic::uadd_with_overflow:
7765 case Intrinsic::usub_with_overflow:
7766 case Intrinsic::umul_with_overflow:
7771 case Intrinsic::ctpop:
7772 case Intrinsic::ctlz:
7773 case Intrinsic::cttz:
7774 case Intrinsic::abs:
7775 case Intrinsic::smax:
7776 case Intrinsic::smin:
7777 case Intrinsic::umax:
7778 case Intrinsic::umin:
7779 case Intrinsic::bitreverse:
7780 case Intrinsic::bswap:
7781 case Intrinsic::sadd_sat:
7782 case Intrinsic::ssub_sat:
7783 case Intrinsic::sshl_sat:
7784 case Intrinsic::uadd_sat:
7785 case Intrinsic::usub_sat:
7786 case Intrinsic::ushl_sat:
7791 case Instruction::ICmp:
7792 case Instruction::FCmp:
7793 case Instruction::GetElementPtr:
7796 if (isa<BinaryOperator>(
I) || isa<UnaryOperator>(
I) || isa<CastInst>(
I))
7807template <
typename CallableT>
7809 const CallableT &Handle) {
7810 switch (
I->getOpcode()) {
7811 case Instruction::Store:
7816 case Instruction::Load:
7823 case Instruction::AtomicCmpXchg:
7828 case Instruction::AtomicRMW:
7833 case Instruction::Call:
7834 case Instruction::Invoke: {
7838 for (
unsigned i = 0; i < CB->
arg_size(); ++i)
7841 CB->
paramHasAttr(i, Attribute::DereferenceableOrNull)) &&
7846 case Instruction::Ret:
7847 if (
I->getFunction()->hasRetAttribute(Attribute::NoUndef) &&
7848 Handle(
I->getOperand(0)))
7851 case Instruction::Switch:
7852 if (Handle(cast<SwitchInst>(
I)->getCondition()))
7855 case Instruction::Br: {
7856 auto *BR = cast<BranchInst>(
I);
7857 if (BR->isConditional() && Handle(BR->getCondition()))
7877template <
typename CallableT>
7879 const CallableT &Handle) {
7882 switch (
I->getOpcode()) {
7884 case Instruction::UDiv:
7885 case Instruction::SDiv:
7886 case Instruction::URem:
7887 case Instruction::SRem:
7888 return Handle(
I->getOperand(1));
7905 I, [&](
const Value *V) {
return KnownPoison.
count(V); });
7919 if (
const auto *Inst = dyn_cast<Instruction>(V)) {
7923 }
else if (
const auto *Arg = dyn_cast<Argument>(V)) {
7924 if (Arg->getParent()->isDeclaration())
7927 Begin = BB->
begin();
7934 unsigned ScanLimit = 32;
7943 if (isa<DbgInfoIntrinsic>(
I))
7945 if (--ScanLimit == 0)
7949 return WellDefinedOp == V;
7969 if (isa<DbgInfoIntrinsic>(
I))
7971 if (--ScanLimit == 0)
7979 for (
const Use &
Op :
I.operands()) {
7989 if (
I.getOpcode() == Instruction::Select &&
7990 YieldsPoison.
count(
I.getOperand(1)) &&
7991 YieldsPoison.
count(
I.getOperand(2))) {
7997 if (!BB || !Visited.
insert(BB).second)
8007 return ::programUndefinedIfUndefOrPoison(Inst,
false);
8011 return ::programUndefinedIfUndefOrPoison(Inst,
true);
8018 if (
auto *
C = dyn_cast<ConstantFP>(V))
8021 if (
auto *
C = dyn_cast<ConstantDataVector>(V)) {
8022 if (!
C->getElementType()->isFloatingPointTy())
8024 for (
unsigned I = 0, E =
C->getNumElements();
I < E; ++
I) {
8025 if (
C->getElementAsAPFloat(
I).isNaN())
8031 if (isa<ConstantAggregateZero>(V))
8038 if (
auto *
C = dyn_cast<ConstantFP>(V))
8039 return !
C->isZero();
8041 if (
auto *
C = dyn_cast<ConstantDataVector>(V)) {
8042 if (!
C->getElementType()->isFloatingPointTy())
8044 for (
unsigned I = 0, E =
C->getNumElements();
I < E; ++
I) {
8045 if (
C->getElementAsAPFloat(
I).isZero())
8068 if (CmpRHS == FalseVal) {
8116 if (CmpRHS != TrueVal) {
8155 Value *
A =
nullptr, *
B =
nullptr;
8160 Value *
C =
nullptr, *
D =
nullptr;
8162 if (L.Flavor != R.Flavor)
8214 return {L.Flavor,
SPNB_NA,
false};
8221 return {L.Flavor,
SPNB_NA,
false};
8228 return {L.Flavor,
SPNB_NA,
false};
8235 return {L.Flavor,
SPNB_NA,
false};
8251 return ConstantInt::get(V->getType(), ~(*
C));
8308 if ((CmpLHS == TrueVal &&
match(FalseVal,
m_APInt(C2))) ||
8328 assert(
X &&
Y &&
"Invalid operand");
8330 auto IsNegationOf = [&](
const Value *
X,
const Value *
Y) {
8334 auto *BO = cast<BinaryOperator>(
X);
8335 if (NeedNSW && !BO->hasNoSignedWrap())
8338 auto *Zero = cast<Constant>(BO->getOperand(0));
8339 if (!AllowPoison && !Zero->isNullValue())
8346 if (IsNegationOf(
X,
Y) || IsNegationOf(
Y,
X))
8369 const APInt *RHSC1, *RHSC2;
8376 return CR1.inverse() == CR2;
8385 bool HasMismatchedZeros =
false;
8391 Value *OutputZeroVal =
nullptr;
8393 !cast<Constant>(TrueVal)->containsUndefOrPoisonElement())
8394 OutputZeroVal = TrueVal;
8396 !cast<Constant>(FalseVal)->containsUndefOrPoisonElement())
8397 OutputZeroVal = FalseVal;
8399 if (OutputZeroVal) {
8401 HasMismatchedZeros =
true;
8402 CmpLHS = OutputZeroVal;
8405 HasMismatchedZeros =
true;
8406 CmpRHS = OutputZeroVal;
8423 if (!HasMismatchedZeros)
8434 bool Ordered =
false;
8445 if (LHSSafe && RHSSafe) {
8475 if (TrueVal == CmpRHS && FalseVal == CmpLHS) {
8486 if (TrueVal == CmpLHS && FalseVal == CmpRHS) {
8511 auto MaybeSExtCmpLHS =
8515 if (
match(TrueVal, MaybeSExtCmpLHS)) {
8537 else if (
match(FalseVal, MaybeSExtCmpLHS)) {
8587 auto *Cast1 = dyn_cast<CastInst>(V1);
8591 *CastOp = Cast1->getOpcode();
8592 Type *SrcTy = Cast1->getSrcTy();
8593 if (
auto *Cast2 = dyn_cast<CastInst>(V2)) {
8595 if (*CastOp == Cast2->getOpcode() && SrcTy == Cast2->getSrcTy())
8596 return Cast2->getOperand(0);
8600 auto *
C = dyn_cast<Constant>(V2);
8607 case Instruction::ZExt:
8611 case Instruction::SExt:
8615 case Instruction::Trunc:
8618 CmpConst->
getType() == SrcTy) {
8640 CastedTo = CmpConst;
8642 unsigned ExtOp = CmpI->
isSigned() ? Instruction::SExt : Instruction::ZExt;
8646 case Instruction::FPTrunc:
8649 case Instruction::FPExt:
8652 case Instruction::FPToUI:
8655 case Instruction::FPToSI:
8658 case Instruction::UIToFP:
8661 case Instruction::SIToFP:
8674 if (CastedBack && CastedBack !=
C)
8689 CmpInst *CmpI = dyn_cast<CmpInst>(SI->getCondition());
8692 Value *TrueVal = SI->getTrueValue();
8693 Value *FalseVal = SI->getFalseValue();
8706 if (isa<FPMathOperator>(CmpI))
8714 if (CastOp && CmpLHS->
getType() != TrueVal->getType()) {
8718 if (*CastOp == Instruction::FPToSI || *CastOp == Instruction::FPToUI)
8720 return ::matchSelectPattern(Pred, FMF, CmpLHS, CmpRHS,
8721 cast<CastInst>(TrueVal)->getOperand(0),
C,
8727 if (*CastOp == Instruction::FPToSI || *CastOp == Instruction::FPToUI)
8729 return ::matchSelectPattern(Pred, FMF, CmpLHS, CmpRHS,
8730 C, cast<CastInst>(FalseVal)->getOperand(0),
8734 return ::matchSelectPattern(Pred, FMF, CmpLHS, CmpRHS, TrueVal, FalseVal,
8760 case Intrinsic::smax:
return Intrinsic::smin;
8761 case Intrinsic::smin:
return Intrinsic::smax;
8762 case Intrinsic::umax:
return Intrinsic::umin;
8763 case Intrinsic::umin:
return Intrinsic::umax;
8766 case Intrinsic::maximum:
return Intrinsic::minimum;
8767 case Intrinsic::minimum:
return Intrinsic::maximum;
8768 case Intrinsic::maxnum:
return Intrinsic::minnum;
8769 case Intrinsic::minnum:
return Intrinsic::maxnum;
8784std::pair<Intrinsic::ID, bool>
8789 bool AllCmpSingleUse =
true;
8792 if (
all_of(VL, [&SelectPattern, &AllCmpSingleUse](
Value *
I) {
8798 SelectPattern.
Flavor != CurrentPattern.Flavor)
8800 SelectPattern = CurrentPattern;
8805 switch (SelectPattern.
Flavor) {
8807 return {Intrinsic::smin, AllCmpSingleUse};
8809 return {Intrinsic::umin, AllCmpSingleUse};
8811 return {Intrinsic::smax, AllCmpSingleUse};
8813 return {Intrinsic::umax, AllCmpSingleUse};
8815 return {Intrinsic::maxnum, AllCmpSingleUse};
8817 return {Intrinsic::minnum, AllCmpSingleUse};
8830 if (
P->getNumIncomingValues() != 2)
8833 for (
unsigned i = 0; i != 2; ++i) {
8834 Value *L =
P->getIncomingValue(i);
8835 Value *R =
P->getIncomingValue(!i);
8836 auto *LU = dyn_cast<BinaryOperator>(L);
8839 unsigned Opcode = LU->getOpcode();
8845 case Instruction::LShr:
8846 case Instruction::AShr:
8847 case Instruction::Shl:
8848 case Instruction::Add:
8849 case Instruction::Sub:
8850 case Instruction::And:
8851 case Instruction::Or:
8852 case Instruction::Mul:
8853 case Instruction::FMul: {
8854 Value *LL = LU->getOperand(0);
8855 Value *LR = LU->getOperand(1);
8885 P = dyn_cast<PHINode>(
I->getOperand(0));
8887 P = dyn_cast<PHINode>(
I->getOperand(1));
8908 return !
C->isNegative();
8920 const APInt *CLHS, *CRHS;
8923 return CLHS->
sle(*CRHS);
8961 const APInt *CLHS, *CRHS;
8964 return CLHS->
ule(*CRHS);
8973static std::optional<bool>
8978 return std::nullopt;
8985 return std::nullopt;
8992 return std::nullopt;
8999 return std::nullopt;
9006 return std::nullopt;
9013static std::optional<bool>
9021 return std::nullopt;
9032 if (DomCR.
icmp(RPred, RCR))
9038 return std::nullopt;
9055 LHSIsTrue ?
LHS->getPredicate() :
LHS->getInversePredicate();
9079 const APInt *Unused;
9098 return std::nullopt;
9102 if (L0 == R0 && L1 == R1)
9130 return LPred == RPred;
9135 return std::nullopt;
9142static std::optional<bool>
9147 assert((
LHS->getOpcode() == Instruction::And ||
9148 LHS->getOpcode() == Instruction::Or ||
9149 LHS->getOpcode() == Instruction::Select) &&
9150 "Expected LHS to be 'and', 'or', or 'select'.");
9157 const Value *ALHS, *ARHS;
9162 ALHS, RHSPred, RHSOp0, RHSOp1,
DL, LHSIsTrue,
Depth + 1))
9165 ARHS, RHSPred, RHSOp0, RHSOp1,
DL, LHSIsTrue,
Depth + 1))
9167 return std::nullopt;
9169 return std::nullopt;
9178 return std::nullopt;
9183 return std::nullopt;
9186 "Expected integer type only!");
9190 LHSIsTrue = !LHSIsTrue;
9201 if ((LHSI->getOpcode() == Instruction::And ||
9202 LHSI->getOpcode() == Instruction::Or ||
9203 LHSI->getOpcode() == Instruction::Select))
9207 return std::nullopt;
9212 bool LHSIsTrue,
unsigned Depth) {
9218 bool InvertRHS =
false;
9225 if (
const ICmpInst *RHSCmp = dyn_cast<ICmpInst>(
RHS)) {
9227 LHS, RHSCmp->getPredicate(), RHSCmp->getOperand(0),
9228 RHSCmp->getOperand(1),
DL, LHSIsTrue,
Depth))
9229 return InvertRHS ? !*Implied : *Implied;
9230 return std::nullopt;
9234 return std::nullopt;
9238 const Value *RHS1, *RHS2;
9240 if (std::optional<bool> Imp =
9244 if (std::optional<bool> Imp =
9250 if (std::optional<bool> Imp =
9254 if (std::optional<bool> Imp =
9260 return std::nullopt;
9265static std::pair<Value *, bool>
9267 if (!ContextI || !ContextI->
getParent())
9268 return {
nullptr,
false};
9275 return {
nullptr,
false};
9281 return {
nullptr,
false};
9284 if (TrueBB == FalseBB)
9285 return {
nullptr,
false};
9287 assert((TrueBB == ContextBB || FalseBB == ContextBB) &&
9288 "Predecessor block does not point to successor?");
9291 return {PredCond, TrueBB == ContextBB};
9297 assert(
Cond->getType()->isIntOrIntVectorTy(1) &&
"Condition must be bool");
9301 return std::nullopt;
9313 return std::nullopt;
9318 bool PreferSignedRange) {
9319 unsigned Width =
Lower.getBitWidth();
9322 case Instruction::Add:
9331 if (PreferSignedRange && HasNSW && HasNUW)
9337 }
else if (HasNSW) {
9338 if (
C->isNegative()) {
9351 case Instruction::And:
9362 case Instruction::Or:
9368 case Instruction::AShr:
9374 unsigned ShiftAmount = Width - 1;
9375 if (!
C->isZero() && IIQ.
isExact(&BO))
9376 ShiftAmount =
C->countr_zero();
9377 if (
C->isNegative()) {
9380 Upper =
C->ashr(ShiftAmount) + 1;
9383 Lower =
C->ashr(ShiftAmount);
9389 case Instruction::LShr:
9395 unsigned ShiftAmount = Width - 1;
9396 if (!
C->isZero() && IIQ.
isExact(&BO))
9397 ShiftAmount =
C->countr_zero();
9398 Lower =
C->lshr(ShiftAmount);
9403 case Instruction::Shl:
9410 if (
C->isNegative()) {
9412 unsigned ShiftAmount =
C->countl_one() - 1;
9413 Lower =
C->shl(ShiftAmount);
9417 unsigned ShiftAmount =
C->countl_zero() - 1;
9419 Upper =
C->shl(ShiftAmount) + 1;
9438 case Instruction::SDiv:
9442 if (
C->isAllOnes()) {
9447 }
else if (
C->countl_zero() < Width - 1) {
9458 if (
C->isMinSignedValue()) {
9470 case Instruction::UDiv:
9480 case Instruction::SRem:
9486 if (
C->isNegative()) {
9497 case Instruction::URem:
9512 unsigned Width =
II.getType()->getScalarSizeInBits();
9514 switch (
II.getIntrinsicID()) {
9515 case Intrinsic::ctpop:
9516 case Intrinsic::ctlz:
9517 case Intrinsic::cttz:
9520 APInt(Width, Width + 1));
9521 case Intrinsic::uadd_sat:
9527 case Intrinsic::sadd_sat:
9530 if (
C->isNegative())
9541 case Intrinsic::usub_sat:
9551 case Intrinsic::ssub_sat:
9553 if (
C->isNegative())
9563 if (
C->isNegative())
9574 case Intrinsic::umin:
9575 case Intrinsic::umax:
9576 case Intrinsic::smin:
9577 case Intrinsic::smax:
9582 switch (
II.getIntrinsicID()) {
9583 case Intrinsic::umin:
9585 case Intrinsic::umax:
9587 case Intrinsic::smin:
9590 case Intrinsic::smax:
9597 case Intrinsic::abs:
9606 case Intrinsic::vscale:
9607 if (!
II.getParent() || !
II.getFunction())
9610 case Intrinsic::scmp:
9611 case Intrinsic::ucmp:
9618 return ConstantRange::getFull(Width);
9623 unsigned BitWidth = SI.getType()->getScalarSizeInBits();
9627 return ConstantRange::getFull(
BitWidth);
9650 return ConstantRange::getFull(
BitWidth);
9664 return ConstantRange::getFull(
BitWidth);
9671 unsigned BitWidth =
I->getType()->getScalarSizeInBits();
9672 if (!
I->getOperand(0)->getType()->getScalarType()->isHalfTy())
9674 if (isa<FPToSIInst>(
I) &&
BitWidth >= 17) {
9679 if (isa<FPToUIInst>(
I) &&
BitWidth >= 16) {
9690 assert(V->getType()->isIntOrIntVectorTy() &&
"Expected integer instruction");
9693 return ConstantRange::getFull(V->getType()->getScalarSizeInBits());
9695 if (
auto *
C = dyn_cast<Constant>(V))
9696 return C->toConstantRange();
9698 unsigned BitWidth = V->getType()->getScalarSizeInBits();
9701 if (
auto *BO = dyn_cast<BinaryOperator>(V)) {
9707 }
else if (
auto *
II = dyn_cast<IntrinsicInst>(V))
9709 else if (
auto *SI = dyn_cast<SelectInst>(V)) {
9711 SI->getTrueValue(), ForSigned, UseInstrInfo, AC, CtxI, DT,
Depth + 1);
9713 SI->getFalseValue(), ForSigned, UseInstrInfo, AC, CtxI, DT,
Depth + 1);
9716 }
else if (isa<FPToUIInst>(V) || isa<FPToSIInst>(V)) {
9722 }
else if (
const auto *
A = dyn_cast<Argument>(V))
9723 if (std::optional<ConstantRange>
Range =
A->getRange())
9726 if (
auto *
I = dyn_cast<Instruction>(V)) {
9730 if (
const auto *CB = dyn_cast<CallBase>(V))
9731 if (std::optional<ConstantRange>
Range = CB->getRange())
9742 "Got assumption for the wrong function!");
9743 assert(
I->getIntrinsicID() == Intrinsic::assume &&
9744 "must be an assume intrinsic");
9748 Value *Arg =
I->getArgOperand(0);
9749 ICmpInst *Cmp = dyn_cast<ICmpInst>(Arg);
9751 if (!Cmp || Cmp->getOperand(0) != V)
9756 UseInstrInfo, AC,
I, DT,
Depth + 1);
9769 if (isa<Argument>(V) || isa<GlobalValue>(V)) {
9771 }
else if (
auto *
I = dyn_cast<Instruction>(V)) {
9777 if (isa<Instruction>(
Op) || isa<Argument>(
Op))
9785 auto AddAffected = [&InsertAffected](
Value *V) {
9800 while (!Worklist.
empty()) {
9802 if (!Visited.
insert(V).second)
9825 AddCmpOperands(
A,
B);
9875 AddCmpOperands(
A,
B);
9885 }
else if (
match(V, m_Intrinsic<Intrinsic::is_fpclass>(
m_Value(
A),
amdgpu AMDGPU Register Bank Select
This file declares a class to represent arbitrary precision floating point values and provide a varie...
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...
BlockVerifier::State From
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static GCRegistry::Add< StatepointGC > D("statepoint-example", "an example strategy for statepoint")
This file contains the declarations for the subclasses of Constant, which represent the different fla...
Returns the sub type a function will return at a given Idx Should correspond to the result type of an ExtractValue instruction executed with just that one unsigned Idx
std::optional< std::vector< StOtherPiece > > Other
static GCMetadataPrinterRegistry::Add< ErlangGCPrinter > X("erlang", "erlang-compatible garbage collector")
static MaybeAlign getAlign(Value *Ptr)
static const unsigned MaxDepth
static bool hasNoUnsignedWrap(BinaryOperator &I)
mir Rename Register Operands
Module.h This file contains the declarations for the Module class.
ConstantRange Range(APInt(BitWidth, Low), APInt(BitWidth, High))
uint64_t IntrinsicInst * II
static GCMetadataPrinterRegistry::Add< OcamlGCMetadataPrinter > Y("ocaml", "ocaml 3.10-compatible collector")
const SmallVectorImpl< MachineOperand > & Cond
static bool mayHaveSideEffects(MachineInstr &MI)
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
This file defines the make_scope_exit function, which executes user-defined cleanup logic at scope ex...
This file defines the SmallPtrSet class.
This file defines the SmallSet class.
This file defines the SmallVector class.
static std::optional< unsigned > getOpcode(ArrayRef< VPValue * > Values)
Returns the opcode of Values or ~0 if they do not all agree.
static SmallVector< VPValue *, 4 > getOperands(ArrayRef< VPValue * > Values, unsigned OperandIndex)
static bool getShuffleDemandedElts(const ShuffleVectorInst *Shuf, const APInt &DemandedElts, APInt &DemandedLHS, APInt &DemandedRHS)
static std::optional< bool > isImpliedCondICmps(const ICmpInst *LHS, CmpInst::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 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 isKnownNonZeroFromOperator(const Operator *I, const APInt &DemandedElts, unsigned Depth, const SimplifyQuery &Q)
static bool isTruePredicate(CmpInst::Predicate Pred, const Value *LHS, const Value *RHS)
Return true if "icmp Pred LHS RHS" is always true.
static bool isNonZeroMul(const APInt &DemandedElts, unsigned Depth, const SimplifyQuery &Q, unsigned BitWidth, Value *X, Value *Y, bool NSW, bool NUW)
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 isNonZeroShift(const Operator *I, const APInt &DemandedElts, unsigned Depth, const SimplifyQuery &Q, const KnownBits &KnownVal)
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 bool outputDenormalIsIEEEOrPosZero(const Function &F, const Type *Ty)
static bool inputDenormalIsIEEE(const Function &F, const Type *Ty)
Return true if it's possible to assume IEEE treatment of input denormals in F for Val.
static OverflowResult mapOverflowResult(ConstantRange::OverflowResult OR)
Convert ConstantRange OverflowResult into ValueTracking OverflowResult.
static bool isNonEqualPHIs(const PHINode *PN1, const PHINode *PN2, const APInt &DemandedElts, unsigned Depth, const SimplifyQuery &Q)
static bool isNonEqualShl(const Value *V1, const Value *V2, const APInt &DemandedElts, unsigned Depth, const SimplifyQuery &Q)
Return true if V2 == V1 << C, where V1 is known non-zero, C is not 0 and the shift is nuw or nsw.
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 std::tuple< Value *, FPClassTest, FPClassTest > exactClass(Value *V, FPClassTest M)
Return the return value for fcmpImpliesClass for a compare that produces an exact class test.
static bool haveNoCommonBitsSetSpecialCases(const Value *LHS, const Value *RHS, const SimplifyQuery &SQ)
static std::optional< bool > isImpliedCondAndOr(const Instruction *LHS, CmpInst::Predicate RHSPred, const Value *RHSOp0, const Value *RHSOp1, const DataLayout &DL, bool LHSIsTrue, unsigned Depth)
Return true if LHS implies RHS is true.
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 bool isKnownNonEqual(const Value *V1, const Value *V2, const APInt &DemandedElts, unsigned Depth, const SimplifyQuery &Q)
Return true if it is known that V1 != V2.
static bool isKnownNonZero(const Value *V, const APInt &DemandedElts, const SimplifyQuery &Q, unsigned Depth)
Return true if the given value is known to be non-zero when defined.
static bool isNonEqualSelect(const Value *V1, const Value *V2, const APInt &DemandedElts, unsigned Depth, const SimplifyQuery &Q)
static unsigned ComputeNumSignBits(const Value *V, const APInt &DemandedElts, unsigned Depth, const SimplifyQuery &Q)
static bool includesPoison(UndefPoisonKind Kind)
static bool isNonEqualMul(const Value *V1, const Value *V2, const APInt &DemandedElts, unsigned Depth, const SimplifyQuery &Q)
Return true if V2 == V1 * C, where V1 is known non-zero, C is not 0/1 and the multiplication is nuw o...
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 bool includesUndef(UndefPoisonKind Kind)
static bool isPowerOfTwoRecurrence(const PHINode *PN, bool OrZero, unsigned Depth, SimplifyQuery &Q)
Try to detect a recurrence that the value of the induction variable is always a power of two (or zero...
static bool isModifyingBinopOfNonZero(const Value *V1, const Value *V2, const APInt &DemandedElts, unsigned Depth, const SimplifyQuery &Q)
Return true if V1 == (binop V2, X), where X is known non-zero.
static ConstantRange getRangeForSelectPattern(const SelectInst &SI, const InstrInfoQuery &IIQ)
static SelectPatternResult matchSelectPattern(CmpInst::Predicate Pred, FastMathFlags FMF, Value *CmpLHS, Value *CmpRHS, Value *TrueVal, Value *FalseVal, Value *&LHS, Value *&RHS, 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 bool onlyUsedByLifetimeMarkersOrDroppableInstsHelper(const Value *V, bool AllowLifetime, bool AllowDroppable)
static bool isSignedMinMaxClamp(const Value *Select, const Value *&In, const APInt *&CLow, const APInt *&CHigh)
static void computeKnownBitsAddSub(bool Add, const Value *Op0, const Value *Op1, bool NSW, bool NUW, const APInt &DemandedElts, KnownBits &KnownOut, KnownBits &Known2, unsigned Depth, const SimplifyQuery &Q)
static void computeKnownBitsFromOperator(const Operator *I, const APInt &DemandedElts, KnownBits &Known, unsigned Depth, const SimplifyQuery &Q)
static bool directlyImpliesPoison(const Value *ValAssumedPoison, const Value *V, 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 ? min(a,b) : min(b,c) ==> min(min(a,b),min(b,c))
static void computeKnownFPClassFromCond(const Value *V, Value *Cond, bool CondIsTrue, const Instruction *CxtI, KnownFPClass &KnownFromContext)
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 std::optional< bool > isImpliedCondCommonOperandWithCR(CmpInst::Predicate LPred, const ConstantRange &LCR, CmpInst::Predicate RPred, const ConstantRange &RCR)
Return true if "icmp LPred X, LCR" implies "icmp RPred X, RCR" is true.
static void computeKnownFPClassForFPTrunc(const Operator *Op, const APInt &DemandedElts, FPClassTest InterestedClasses, KnownFPClass &Known, unsigned Depth, const SimplifyQuery &Q)
static bool handleGuaranteedWellDefinedOps(const Instruction *I, const CallableT &Handle)
Enumerates all operands of I that are guaranteed to not be undef or poison.
static void computeKnownBits(const Value *V, const APInt &DemandedElts, KnownBits &Known, unsigned Depth, const SimplifyQuery &Q)
Determine which bits of V are known to be either zero or one and return them in the Known bit set.
static KnownFPClass computeKnownFPClassFromContext(const Value *V, const SimplifyQuery &Q)
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 void computeKnownBitsFromCond(const Value *V, Value *Cond, KnownBits &Known, unsigned Depth, const SimplifyQuery &SQ, bool Invert)
static void computeKnownBitsFromICmpCond(const Value *V, ICmpInst *Cmp, KnownBits &Known, const SimplifyQuery &SQ, bool Invert)
static ConstantRange getRangeForIntrinsic(const IntrinsicInst &II)
static KnownBits computeKnownBitsForHorizontalOperation(const Operator *I, const APInt &DemandedElts, unsigned Depth, const SimplifyQuery &Q, const function_ref< KnownBits(const KnownBits &, const KnownBits &)> KnownBitsFunc)
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) ? (l) : ((v) > (h) ? (h) : (v)))
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 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 bool isGEPKnownNonNull(const GEPOperator *GEP, unsigned Depth, const SimplifyQuery &Q)
Test whether a GEP's result is known to be non-null.
static bool handleGuaranteedNonPoisonOps(const Instruction *I, const CallableT &Handle)
Enumerates all operands of I that are guaranteed to not be poison.
static bool isNonZeroSub(const APInt &DemandedElts, unsigned Depth, const SimplifyQuery &Q, unsigned BitWidth, Value *X, Value *Y)
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 void computeKnownBitsFromShiftOperator(const Operator *I, const APInt &DemandedElts, KnownBits &Known, KnownBits &Known2, unsigned Depth, const SimplifyQuery &Q, 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 cmpExcludesZero(CmpInst::Predicate Pred, const Value *RHS)
static bool inputDenormalIsIEEEOrPosZero(const Function &F, const Type *Ty)
static KnownBits getKnownBitsFromAndXorOr(const Operator *I, const APInt &DemandedElts, const KnownBits &KnownLHS, const KnownBits &KnownRHS, unsigned Depth, const SimplifyQuery &Q)
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 Pred ALHS ARHS" is true.
static unsigned ComputeNumSignBitsImpl(const Value *V, const APInt &DemandedElts, unsigned Depth, const SimplifyQuery &Q)
Return the number of times the sign bit of the register is replicated into the other bits.
static bool isNonZeroAdd(const APInt &DemandedElts, unsigned Depth, const SimplifyQuery &Q, unsigned BitWidth, Value *X, Value *Y, bool NSW, bool NUW)
static const Instruction * safeCxtI(const Value *V, const Instruction *CxtI)
static bool isKnownToBeAPowerOfTwo(const Value *V, bool OrZero, unsigned Depth, const SimplifyQuery &Q)
Return true if the given value is known to have exactly one bit set when defined.
static bool isKnownNonNaN(const Value *V, FastMathFlags FMF)
static void computeKnownBitsMul(const Value *Op0, const Value *Op1, bool NSW, const APInt &DemandedElts, KnownBits &Known, KnownBits &Known2, unsigned Depth, const SimplifyQuery &Q)
static std::optional< bool > isImpliedCondMatchingOperands(CmpInst::Predicate LPred, CmpInst::Predicate RPred)
Return true if "icmp1 LPred X, Y" implies "icmp2 RPred X, Y" is true.
static Value * BuildSubAggregate(Value *From, Value *To, Type *IndexedType, SmallVectorImpl< unsigned > &Idxs, unsigned IdxSkip, BasicBlock::iterator InsertBefore)
void computeKnownFPClass(const Value *V, const APInt &DemandedElts, FPClassTest InterestedClasses, KnownFPClass &Known, unsigned Depth, const SimplifyQuery &Q)
APInt bitcastToAPInt() const
static APFloat getLargest(const fltSemantics &Sem, bool Negative=false)
Returns the largest finite number in the given semantics.
static APFloat getInf(const fltSemantics &Sem, bool Negative=false)
Factory for Positive and Negative Infinity.
FPClassTest classify() const
Return the FPClassTest which will return true for the value.
bool isSmallestNormalized() const
Class for arbitrary precision integers.
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.
void setBitsFrom(unsigned loBit)
Set the top bits starting from loBit.
APInt zextOrTrunc(unsigned width) const
Zero extend or truncate to width.
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.
APInt urem(const APInt &RHS) const
Unsigned remainder operation.
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...
APInt sdiv(const APInt &RHS) const
Signed division function for APInt.
void clearAllBits()
Set every bit to 0.
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.
static APInt getSignedMinValue(unsigned numBits)
Gets minimum signed value of APInt for a specific bit width.
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.
void setAllBits()
Set every bit to 1.
bool getBoolValue() const
Convert APInt to a boolean value.
bool isMaxSignedValue() const
Determine if this is the largest signed value.
bool ule(const APInt &RHS) const
Unsigned less or equal comparison.
APInt shl(unsigned shiftAmt) const
Left-shift function.
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.
void lshrInPlace(unsigned ShiftAmt)
Logical right-shift this APInt by ShiftAmt in place.
APInt lshr(unsigned shiftAmt) const
Logical right-shift function.
bool uge(const APInt &RHS) const
Unsigned greater or equal comparison.
void clearSignBit()
Set the sign bit to 0.
an instruction to allocate memory on the stack
This class represents an incoming formal argument to a Function.
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
size_t size() const
size - Get the array size.
bool empty() const
empty - Check if the array is empty.
ArrayRef< T > slice(size_t N, size_t M) const
slice(n, m) - Chop off the first N elements of the array, and keep M elements in the array.
Class to represent array types.
Type * getElementType() const
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.
std::optional< unsigned > getVScaleRangeMax() const
Returns the maximum value for the vscale_range attribute or std::nullopt when unknown.
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.
bool isSingleEdge() const
Check if this is the only edge between Start and End.
LLVM Basic Block Representation.
iterator begin()
Instruction iterator methods.
InstListType::const_iterator const_iterator
const Instruction * getFirstNonPHI() const
Returns a pointer to the first instruction in this block that is not a PHINode instruction.
const BasicBlock * getSinglePredecessor() const
Return the predecessor of this block if it has a single predecessor block.
const BasicBlock * getSingleSuccessor() const
Return the successor of this block if it has a single successor.
const Function * getParent() const
Return the enclosing method, or null if none.
InstListType::iterator iterator
Instruction iterators...
const Instruction * getTerminator() const LLVM_READONLY
Returns the terminator instruction if the block is well formed or null if the block is not well forme...
Instruction::BinaryOps getBinaryOp() const
Returns the binary operation underlying the intrinsic.
BinaryOps getOpcode() const
Conditional or Unconditional Branch instruction.
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...
bool paramHasAttr(unsigned ArgNo, Attribute::AttrKind Kind) const
Determine whether the argument or parameter has the given attribute.
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
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.
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_ONE
0 1 1 0 True if ordered and operands are unequal
@ 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
@ FCMP_UNE
1 1 1 0 True if unordered or not 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 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.
bool isFPPredicate() const
Predicate getInversePredicate() const
For example, EQ -> NE, UGT -> ULE, SLT -> SGE, OEQ -> UNE, UGT -> OLE, OLT -> UGE,...
Predicate getPredicate() const
Return the predicate for this instruction.
static bool isUnordered(Predicate predicate)
Determine if the predicate is an unordered operation.
static bool isImpliedTrueByMatchingCmp(Predicate Pred1, Predicate Pred2)
Determine if Pred1 implies Pred2 is true when two compares have matching operands.
bool isIntPredicate() const
static bool isOrdered(Predicate predicate)
Determine if the predicate is an ordered operation.
static bool isImpliedFalseByMatchingCmp(Predicate Pred1, Predicate Pred2)
Determine if Pred1 implies Pred2 is false when two compares have matching operands.
An array constant whose element type is a simple 1/2/4/8-byte integer 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.
uint64_t getElementAsInteger(unsigned i) const
If this is a sequential container of integers (of any size), return the specified element in the low ...
A vector constant whose element type is a simple 1/2/4/8-byte integer or float/double,...
static Constant * getBitCast(Constant *C, Type *Ty, bool OnlyIfReduced=false)
static Constant * getTrunc(Constant *C, Type *Ty, bool OnlyIfReduced=false)
ConstantFP - Floating Point Values [float, double].
This is the shared class of boolean and integer constants.
static ConstantInt * getTrue(LLVMContext &Context)
bool isZero() const
This is just a convenience method to make client code smaller for a common code.
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...
const APInt * getSingleElement() const
If this set contains a single element, return it, otherwise return null.
static ConstantRange fromKnownBits(const KnownBits &Known, bool IsSigned)
Initialize a range based on a known bits constraint.
OverflowResult unsignedSubMayOverflow(const ConstantRange &Other) const
Return whether unsigned sub of the two ranges always/never overflows.
bool isAllNegative() const
Return true if all values in this range are negative.
OverflowResult unsignedAddMayOverflow(const ConstantRange &Other) const
Return whether unsigned add of the two ranges always/never overflows.
KnownBits toKnownBits() const
Return known bits for values in this range.
APInt getUnsignedMin() const
Return the smallest unsigned value contained in the ConstantRange.
bool icmp(CmpInst::Predicate Pred, const ConstantRange &Other) const
Does the predicate Pred hold between ranges this and Other? NOTE: false does not mean that inverse pr...
APInt getSignedMin() const
Return the smallest signed value contained in the ConstantRange.
OverflowResult unsignedMulMayOverflow(const ConstantRange &Other) const
Return whether unsigned mul of the two ranges always/never overflows.
bool isAllNonNegative() const
Return true if all values in this range are non-negative.
static 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...
ConstantRange unionWith(const ConstantRange &CR, PreferredRangeType Type=Smallest) const
Return the range that results from the union of this range with another range.
static ConstantRange makeExactICmpRegion(CmpInst::Predicate Pred, const APInt &Other)
Produce the exact range such that all values in the returned range satisfy the given predicate with a...
bool contains(const APInt &Val) const
Return true if the specified value is in the set.
OverflowResult signedAddMayOverflow(const ConstantRange &Other) const
Return whether signed add of the two ranges always/never overflows.
APInt getUnsignedMax() const
Return the largest unsigned value contained in the ConstantRange.
ConstantRange intersectWith(const ConstantRange &CR, PreferredRangeType Type=Smallest) const
Return the range that results from the intersection of this range with another range.
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.
OverflowResult signedSubMayOverflow(const ConstantRange &Other) const
Return whether signed sub of the two ranges always/never overflows.
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.
Constant * getSplatValue(bool AllowPoison=false) const
If all elements of the vector constant have the same value, return that value.
static Constant * getNullValue(Type *Ty)
Constructor to create a '0' constant of arbitrary type.
Constant * getAggregateElement(unsigned Elt) const
For aggregates (struct/array/vector) return the constant that corresponds to the specified element if...
bool isZeroValue() const
Return true if the value is negative zero or null value.
bool isNullValue() const
Return true if this is the value that would be returned by getNullValue.
This class represents an Operation in the Expression.
A parsed version of the target data layout string in and methods for querying it.
bool isLittleEndian() const
Layout endianness...
const StructLayout * getStructLayout(StructType *Ty) const
Returns a StructLayout object, indicating the alignment of the struct, its size, and the offsets of i...
unsigned getIndexTypeSizeInBits(Type *Ty) const
Layout size of the index used in GEP calculation.
unsigned getPointerTypeSizeInBits(Type *) const
Layout pointer size, in bits, based on the type.
TypeSize getTypeSizeInBits(Type *Ty) const
Size examples:
ArrayRef< BranchInst * > 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.
bool dominates(const BasicBlock *BB, const Use &U) const
Return true if the (end of the) basic block BB dominates the use U.
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)
const BasicBlock & getEntryBlock() const
DenormalMode getDenormalMode(const fltSemantics &FPType) const
Returns the denormal handling type for the default rounding mode of the function.
an instruction for type-safe pointer arithmetic to access elements of arrays and structs
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.
bool isEquality() const
Return true if this predicate is either EQ or NE.
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)
bool hasNoUnsignedWrap() const LLVM_READONLY
Determine whether the no unsigned wrap flag is set.
bool hasNoSignedWrap() const LLVM_READONLY
Determine whether the no signed wrap flag is set.
InstListType::iterator eraseFromParent()
This method unlinks 'this' from the containing basic block and deletes it.
bool isExact() const LLVM_READONLY
Determine whether the exact flag is set.
const Function * getFunction() const
Return the function this instruction belongs to.
bool comesBefore(const Instruction *Other) const
Given an instruction Other in the same basic block as this instruction, return true if this instructi...
FastMathFlags getFastMathFlags() const LLVM_READONLY
Convenience function for getting all the fast-math flags, which must be an operator which supports th...
unsigned getOpcode() const
Returns a member of one of the enums like Instruction::Add.
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.
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 PoisonValue * get(Type *T)
Static factory methods - Return an 'poison' object of the specified type.
A udiv or sdiv instruction, which can be marked as "exact", indicating that no bits are destroyed.
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 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.
SmallPtrSet - This class implements a set which is optimized for holding SmallSize or less elements.
SmallSet - This maintains a set of unique values, optimizing for the case when the set is small (less...
size_type count(const T &V) const
count - Return 1 if the element is in the set, 0 otherwise.
std::pair< const_iterator, bool > insert(const T &V)
insert - Insert an element into the set if it isn't already there.
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.
StringRef - Represent a constant reference to a string, i.e.
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.
bool getLibFunc(StringRef funcName, LibFunc &F) const
Searches for a particular function name.
The instances of the Type class are immutable: once they are created, they are never changed.
unsigned getIntegerBitWidth() const
const fltSemantics & getFltSemantics() const
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.
uint64_t getArrayNumElements() const
static IntegerType * getIntNTy(LLVMContext &C, unsigned N)
unsigned getScalarSizeInBits() const LLVM_READONLY
If this is a vector type, return the getPrimitiveSizeInBits value for the element type.
bool isSized(SmallPtrSetImpl< Type * > *Visited=nullptr) const
Return true if it makes sense to take the size of this type.
static IntegerType * getInt16Ty(LLVMContext &C)
static IntegerType * getInt8Ty(LLVMContext &C)
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.
static IntegerType * getInt32Ty(LLVMContext &C)
static IntegerType * getInt64Ty(LLVMContext &C)
bool isIntegerTy() const
True if this is an instance of IntegerType.
Type * getScalarType() const
If this is a vector type, return the element type, otherwise return 'this'.
static UndefValue * get(Type *T)
Static factory methods - Return an 'undef' object of the specified type.
A Use represents the edge between a Value definition and its users.
User * getUser() const
Returns the User that contains this Use.
unsigned getOperandNo() const
Return the operand # of this use in its User.
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()
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.
@ C
The default llvm calling convention, compatible with C.
cst_pred_ty< is_all_ones > m_AllOnes()
Match an integer or vector with all bits set.
BinaryOp_match< LHS, RHS, Instruction::And > m_And(const LHS &L, const RHS &R)
MaxMin_match< FCmpInst, LHS, RHS, ufmin_pred_ty > m_UnordFMin(const LHS &L, const RHS &R)
Match an 'unordered' floating point minimum function.
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)
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)
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.
class_match< Constant > m_Constant()
Match an arbitrary Constant and ignore it.
BinaryOp_match< LHS, RHS, Instruction::And, true > m_c_And(const LHS &L, const RHS &R)
Matches an And with LHS and RHS in either order.
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)
bool match(Val *V, const Pattern &P)
BinOpPred_match< LHS, RHS, is_idiv_op > m_IDiv(const LHS &L, const RHS &R)
Matches integer division operations.
cstfp_pred_ty< is_any_zero_fp > m_AnyZeroFP()
Match a floating-point negative zero or positive zero.
specificval_ty m_Specific(const Value *V)
Match if we have a specific specified value.
BinOpPred_match< LHS, RHS, is_right_shift_op > m_Shr(const LHS &L, const RHS &R)
Matches logical shift operations.
OverflowingBinaryOp_match< LHS, RHS, Instruction::Add, OverflowingBinaryOperator::NoUnsignedWrap, true > m_c_NUWAdd(const LHS &L, const RHS &R)
cst_pred_ty< is_nonnegative > m_NonNegative()
Match an integer or vector of non-negative values.
class_match< ConstantInt > m_ConstantInt()
Match an arbitrary ConstantInt and ignore it.
cst_pred_ty< is_one > m_One()
Match an integer 1 or a vector with all elements equal to 1.
ThreeOps_match< Cond, LHS, RHS, Instruction::Select > m_Select(const Cond &C, const LHS &L, const RHS &R)
Matches SelectInst.
ExtractValue_match< Ind, Val_t > m_ExtractValue(const Val_t &V)
Match a single index ExtractValue instruction.
MaxMin_match< ICmpInst, LHS, RHS, smin_pred_ty > m_SMin(const LHS &L, const RHS &R)
CmpClass_match< LHS, RHS, FCmpInst, FCmpInst::Predicate > m_FCmp(FCmpInst::Predicate &Pred, const LHS &L, const RHS &R)
bind_ty< WithOverflowInst > m_WithOverflowInst(WithOverflowInst *&I)
Match a with overflow intrinsic, capturing it if we match.
BinaryOp_match< LHS, RHS, Instruction::Xor, true > m_c_Xor(const LHS &L, const RHS &R)
Matches an Xor with LHS and RHS in either order.
BinaryOp_match< LHS, RHS, Instruction::Mul > m_Mul(const LHS &L, const RHS &R)
deferredval_ty< Value > m_Deferred(Value *const &V)
Like m_Specific(), but works if the specific value to match is determined as part of the same match()...
cst_pred_ty< is_zero_int > m_ZeroInt()
Match an integer 0 or a vector with all elements equal to 0.
CmpClass_match< LHS, RHS, ICmpInst, ICmpInst::Predicate > m_ICmp(ICmpInst::Predicate &Pred, const LHS &L, const RHS &R)
OneUse_match< T > m_OneUse(const T &SubPattern)
MaxMin_match< ICmpInst, LHS, RHS, smin_pred_ty, true > m_c_SMin(const LHS &L, const RHS &R)
Matches an SMin with LHS and RHS in either order.
auto m_LogicalOr()
Matches L || R where L and R are arbitrary values.
BinaryOp_match< cst_pred_ty< is_zero_int >, ValTy, Instruction::Sub > m_Neg(const ValTy &V)
Matches a 'Neg' as 'sub 0, V'.
match_combine_and< class_match< Constant >, match_unless< constantexpr_match > > m_ImmConstant()
Match an arbitrary immediate Constant and ignore it.
MaxMin_match< ICmpInst, LHS, RHS, umax_pred_ty, true > m_c_UMax(const LHS &L, const RHS &R)
Matches a UMax with LHS and RHS in either order.
CastInst_match< OpTy, ZExtInst > m_ZExt(const OpTy &Op)
Matches ZExt.
BinaryOp_match< LHS, RHS, Instruction::UDiv > m_UDiv(const LHS &L, const RHS &R)
MaxMin_match< ICmpInst, LHS, RHS, umax_pred_ty > m_UMax(const LHS &L, const RHS &R)
brc_match< Cond_t, bind_ty< BasicBlock >, bind_ty< BasicBlock > > m_Br(const Cond_t &C, BasicBlock *&T, BasicBlock *&F)
CmpClass_match< LHS, RHS, ICmpInst, ICmpInst::Predicate, true > m_c_ICmp(ICmpInst::Predicate &Pred, const LHS &L, const RHS &R)
Matches an ICmp with a predicate over LHS and RHS in either order.
MaxMin_match< ICmpInst, LHS, RHS, umin_pred_ty, true > m_c_UMin(const LHS &L, const RHS &R)
Matches a UMin with LHS and RHS in either order.
BinaryOp_match< LHS, RHS, Instruction::Add, true > m_c_Add(const LHS &L, const RHS &R)
Matches a Add with LHS and RHS in either order.
apfloat_match m_APFloatAllowPoison(const APFloat *&Res)
Match APFloat while allowing poison in splat vector constants.
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".
SpecificCmpClass_match< LHS, RHS, ICmpInst, ICmpInst::Predicate > m_SpecificICmp(ICmpInst::Predicate MatchPred, const LHS &L, const RHS &R)
MaxMin_match< ICmpInst, LHS, RHS, smax_pred_ty, true > m_c_SMax(const LHS &L, const RHS &R)
Matches an SMax with LHS and RHS in either order.
MaxMin_match< FCmpInst, LHS, RHS, ufmax_pred_ty > m_UnordFMax(const LHS &L, const RHS &R)
Match an 'unordered' floating point maximum function.
VScaleVal_match m_VScale()
OverflowingBinaryOp_match< LHS, RHS, Instruction::Sub, OverflowingBinaryOperator::NoUnsignedWrap > m_NUWSub(const LHS &L, const RHS &R)
MaxMin_match< ICmpInst, LHS, RHS, smax_pred_ty > m_SMax(const LHS &L, const RHS &R)
apint_match m_APInt(const APInt *&Res)
Match a ConstantInt or splatted ConstantVector, binding the specified pointer to the contained APInt.
MaxMin_match< FCmpInst, LHS, RHS, ofmax_pred_ty > m_OrdFMax(const LHS &L, const RHS &R)
Match an 'ordered' floating point maximum function.
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".
class_match< Value > m_Value()
Match an arbitrary value and ignore it.
AnyBinaryOp_match< LHS, RHS, true > m_c_BinOp(const LHS &L, const RHS &R)
Matches a BinaryOperator with LHS and RHS in either order.
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)
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.
apfloat_match m_APFloat(const APFloat *&Res)
Match a ConstantFP or splatted ConstantVector, binding the specified pointer to the contained APFloat...
auto m_LogicalAnd()
Matches L && R where L and R are arbitrary values.
MaxMin_match< FCmpInst, LHS, RHS, ofmin_pred_ty > m_OrdFMin(const LHS &L, const RHS &R)
Match an 'ordered' floating point minimum function.
class_match< BasicBlock > m_BasicBlock()
Match an arbitrary basic block value and ignore it.
BinaryOp_match< LHS, RHS, Instruction::SRem > m_SRem(const LHS &L, const RHS &R)
cst_pred_ty< is_nonpositive > m_NonPositive()
Match an integer or vector of non-positive values.
BinaryOp_match< cst_pred_ty< is_all_ones >, ValTy, Instruction::Xor, true > m_Not(const ValTy &V)
Matches a 'Not' as 'xor V, -1' or 'xor -1, V'.
BinaryOp_match< LHS, RHS, Instruction::Or > m_Or(const LHS &L, const RHS &R)
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".
BinOpPred_match< LHS, RHS, is_bitwiselogic_op > m_BitwiseLogic(const LHS &L, const RHS &R)
Matches bitwise logic operations.
ElementWiseBitCast_match< OpTy > m_ElementWiseBitCast(const OpTy &Op)
m_Intrinsic_Ty< Opnd0 >::Ty m_FAbs(const Opnd0 &Op0)
CastOperator_match< OpTy, Instruction::PtrToInt > m_PtrToInt(const OpTy &Op)
Matches PtrToInt.
BinaryOp_match< LHS, RHS, Instruction::Sub > m_Sub(const LHS &L, const RHS &R)
MaxMin_match< ICmpInst, LHS, RHS, umin_pred_ty > m_UMin(const LHS &L, const RHS &R)
match_combine_or< LTy, RTy > m_CombineOr(const LTy &L, const RTy &R)
Combine two pattern matchers matching L || R.
static unsigned decodeVSEW(unsigned VSEW)
unsigned getSEWLMULRatio(unsigned SEW, RISCVII::VLMUL VLMul)
static constexpr unsigned RVVBitsPerBlock
initializer< Ty > init(const Ty &Val)
This is an optimization pass for GlobalISel generic memory operations.
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.
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...
Intrinsic::ID getInverseMinMaxIntrinsic(Intrinsic::ID MinMaxID)
@ 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.
bool all_of(R &&range, UnaryPredicate P)
Provide wrappers to std::all_of which take ranges instead of having to pass begin/end explicitly.
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.
bool canCreatePoison(const Operator *Op, bool ConsiderFlagsAndMetadata=true)
bool MaskedValueIsZero(const Value *V, const APInt &Mask, const SimplifyQuery &DL, unsigned Depth=0)
Return true if 'V & Mask' is known to be zero.
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...
detail::scope_exit< std::decay_t< Callable > > make_scope_exit(Callable &&F)
bool isOnlyUsedInZeroEqualityComparison(const Instruction *CxtI)
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.
const Value * getArgumentAliasingToReturnedPointer(const CallBase *Call, bool MustPreserveNullness)
This function returns call pointer argument that is considered the same by aliasing rules.
bool isAssumeLikeIntrinsic(const Instruction *I)
Return true if it is an intrinsic that cannot be speculated but also cannot trap.
AllocaInst * findAllocaForValue(Value *V, bool OffsetZero=false)
Returns unique alloca where the value comes from, or nullptr.
APInt getMinMaxLimit(SelectPatternFlavor SPF, unsigned BitWidth)
Return the minimum or maximum constant value for the specified integer min/max flavor and type.
void getGuaranteedNonPoisonOps(const Instruction *I, SmallVectorImpl< const Value * > &Ops)
Insert operands of I into Ops such that I will trigger undefined behavior if I is executed and that o...
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.
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.
bool isDereferenceableAndAlignedPointer(const Value *V, Type *Ty, Align Alignment, const DataLayout &DL, const Instruction *CtxI=nullptr, AssumptionCache *AC=nullptr, const DominatorTree *DT=nullptr, const TargetLibraryInfo *TLI=nullptr)
Returns true if V is always a dereferenceable pointer with alignment greater or equal than requested.
bool onlyUsedByLifetimeMarkersOrDroppableInsts(const Value *V)
Return true if the only users of this pointer are lifetime markers or droppable instructions.
Constant * ReadByteArrayFromGlobal(const GlobalVariable *GV, uint64_t Offset)
bool getUnderlyingObjectsForCodeGen(const Value *V, SmallVectorImpl< Value * > &Objects)
This is a wrapper around getUnderlyingObjects and adds support for basic ptrtoint+arithmetic+inttoptr...
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.
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.
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.
const Value * getUnderlyingObject(const Value *V, unsigned MaxLookup=6)
This method strips off any GEP address adjustments, pointer casts or llvm.threadlocal....
bool isKnownToBeAPowerOfTwo(const Value *V, const DataLayout &DL, bool OrZero=false, unsigned Depth=0, AssumptionCache *AC=nullptr, const Instruction *CxtI=nullptr, const DominatorTree *DT=nullptr, bool UseInstrInfo=true)
Return true if the given value is known to have exactly one bit set when defined.
bool mustSuppressSpeculation(const LoadInst &LI)
Return true if speculation of the given load must be suppressed to avoid ordering or interfering with...
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)
CmpInst::Predicate getMinMaxPred(SelectPatternFlavor SPF, bool Ordered=false)
Return the canonical comparison predicate for the specified minimum/maximum flavor.
void computeKnownBitsFromContext(const Value *V, KnownBits &Known, unsigned Depth, const SimplifyQuery &Q)
Merge bits known from context-dependent facts into Known.
unsigned Log2_64(uint64_t Value)
Return the floor log base 2 of the specified value, -1 if the value is zero.
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.
ConstantRange getConstantRangeFromMetadata(const MDNode &RangeMD)
Parse out a conservative ConstantRange from !range metadata.
ConstantRange computeConstantRange(const Value *V, bool ForSigned, bool UseInstrInfo=true, AssumptionCache *AC=nullptr, const Instruction *CtxI=nullptr, const DominatorTree *DT=nullptr, unsigned Depth=0)
Determine the possible constant range of an integer or vector of integer value.
const Value * getPointerOperand(const Value *V)
A helper function that returns the pointer operand of a load, store or GEP instruction.
int countr_zero(T Val)
Count number of 0's from the least significant bit to the most stopping at the first 1.
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...
RetainedKnowledge getKnowledgeValidInContext(const Value *V, ArrayRef< Attribute::AttrKind > AttrKinds, const Instruction *CtxI, const DominatorTree *DT=nullptr, AssumptionCache *AC=nullptr)
Return a valid Knowledge associated to the Value V if its Attribute kind is in AttrKinds and the know...
RetainedKnowledge getKnowledgeFromBundle(AssumeInst &Assume, const CallBase::BundleOpInfo &BOI)
This extracts the Knowledge from an element of an operand bundle.
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,...
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)
This returns the same result as isSafeToSpeculativelyExecute if Opcode is the actual opcode of Inst.
bool any_of(R &&range, UnaryPredicate P)
Provide wrappers to std::any_of which take ranges instead of having to pass begin/end explicitly.
KnownBits analyzeKnownBitsFromAndXorOr(const Operator *I, const KnownBits &KnownLHS, const KnownBits &KnownRHS, unsigned Depth, const SimplifyQuery &SQ)
Using KnownBits LHS/RHS produce the known bits for logic op (and/xor/or).
OverflowResult computeOverflowForUnsignedMul(const Value *LHS, const Value *RHS, const SimplifyQuery &SQ, bool IsNSW=false)
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.
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.
SelectPatternFlavor getInverseMinMaxFlavor(SelectPatternFlavor SPF)
Return the inverse minimum/maximum flavor of the specified flavor.
constexpr unsigned MaxAnalysisRecursionDepth
void getGuaranteedWellDefinedOps(const Instruction *I, SmallVectorImpl< const Value * > &Ops)
Insert operands of I into Ops such that I will trigger undefined behavior if I is executed and that o...
OverflowResult computeOverflowForSignedSub(const Value *LHS, const Value *RHS, const SimplifyQuery &SQ)
std::tuple< Value *, FPClassTest, FPClassTest > fcmpImpliesClass(CmpInst::Predicate Pred, const Function &F, Value *LHS, Value *RHS, bool LookThroughSrc=true)
Compute the possible floating-point classes that LHS could be based on fcmp \Pred LHS,...
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.
bool isIntrinsicReturningPointerAliasingArgumentWithoutCapturing(const CallBase *Call, bool MustPreserveNullness)
{launder,strip}.invariant.group returns pointer that aliases its argument, and it only captures point...
void adjustKnownBitsForSelectArm(KnownBits &Known, Value *Cond, Value *Arm, bool Invert, unsigned Depth, const SimplifyQuery &Q)
Adjust Known for the given select Arm to include information from the select Cond.
bool impliesPoison(const Value *ValAssumedPoison, const Value *V)
Return true if V is poison given that ValAssumedPoison is already poison.
void getHorizDemandedEltsForFirstOperand(unsigned VectorBitWidth, const APInt &DemandedElts, APInt &DemandedLHS, APInt &DemandedRHS)
Compute the demanded elements mask of horizontal binary operations.
FPClassTest
Floating-point class tests, supported by 'is_fpclass' intrinsic.
bool programUndefinedIfPoison(const Instruction *Inst)
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...
bool NullPointerIsDefined(const Function *F, unsigned AS=0)
Check whether null pointer dereferencing is considered undefined behavior for a given function or an ...
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...
bool isSafeToSpeculativelyExecute(const Instruction *I, const Instruction *CtxI=nullptr, AssumptionCache *AC=nullptr, const DominatorTree *DT=nullptr, const TargetLibraryInfo *TLI=nullptr, bool UseVariableInfo=true)
Return true if the instruction does not have any effects besides calculating the result and does not ...
FPClassTest inverse_fabs(FPClassTest Mask)
Return the test mask which returns true after fabs is applied to the value.
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'.
OverflowResult computeOverflowForSignedMul(const Value *LHS, const Value *RHS, const SimplifyQuery &SQ)
ConstantRange getVScaleRange(const Function *F, unsigned BitWidth)
Determine the possible constant range of vscale with the given bit width, based on the vscale_range f...
Constant * ConstantFoldCastOperand(unsigned Opcode, Constant *C, Type *DestTy, const DataLayout &DL)
Attempt to constant fold a cast with the specified operand.
bool canCreateUndefOrPoison(const Operator *Op, bool ConsiderFlagsAndMetadata=true)
canCreateUndefOrPoison returns true if Op can create undef or poison from non-undef & non-poison oper...
EHPersonality classifyEHPersonality(const Value *Pers)
See if the given exception handling personality function is one that we understand.
bool isKnownInversion(const Value *X, const Value *Y)
Return true iff:
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
bool onlyUsedByLifetimeMarkers(const Value *V)
Return true if the only users of this pointer are lifetime markers.
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.
const Value * getUnderlyingObjectAggressive(const Value *V)
Like getUnderlyingObject(), but will try harder to find a single underlying object.
OverflowResult computeOverflowForSignedAdd(const WithCache< const Value * > &LHS, const WithCache< const Value * > &RHS, const SimplifyQuery &SQ)
bool propagatesPoison(const Use &PoisonOp)
Return true if PoisonOp's user yields poison or raises UB if its operand PoisonOp is poison.
bool isKnownNegative(const Value *V, const SimplifyQuery &DL, unsigned Depth=0)
Returns true if the given value is known be negative (i.e.
bool isKnownNonEqual(const Value *V1, const Value *V2, const DataLayout &DL, AssumptionCache *AC=nullptr, const Instruction *CxtI=nullptr, const DominatorTree *DT=nullptr, bool UseInstrInfo=true)
Return true if the given values are known to be non-equal when defined.
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.
void computeKnownBits(const Value *V, KnownBits &Known, const DataLayout &DL, unsigned Depth=0, AssumptionCache *AC=nullptr, const Instruction *CxtI=nullptr, const DominatorTree *DT=nullptr, bool UseInstrInfo=true)
Determine which bits of V are known to be either zero or one and return them in the KnownZero/KnownOn...
DWARFExpression::Operation Op
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.
constexpr unsigned BitWidth
SelectPatternResult matchDecomposedSelectPattern(CmpInst *CmpI, Value *TrueVal, Value *FalseVal, Value *&LHS, Value *&RHS, Instruction::CastOps *CastOp=nullptr, unsigned Depth=0)
Determine the pattern that a select with the given compare as its predicate and given values as its t...
OverflowResult computeOverflowForUnsignedSub(const Value *LHS, const Value *RHS, const SimplifyQuery &SQ)
bool isGuaranteedToTransferExecutionToSuccessor(const Instruction *I)
Return true if this function can prove that the instruction I will always transfer execution to one o...
gep_type_iterator gep_type_begin(const User *GEP)
std::pair< Value *, FPClassTest > fcmpToClassTest(CmpInst::Predicate Pred, const Function &F, Value *LHS, Value *RHS, bool LookThroughSrc=true)
Returns a pair of values, which if passed to llvm.is.fpclass, returns the same result as an fcmp with...
Value * 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...
void getUnderlyingObjects(const Value *V, SmallVectorImpl< const Value * > &Objects, const LoopInfo *LI=nullptr, unsigned MaxLookup=6)
This method is similar to getUnderlyingObject except that it can look through phi and select instruct...
bool is_contained(R &&Range, const E &Element)
Returns true if Element is found in Range.
unsigned ComputeNumSignBits(const Value *Op, const DataLayout &DL, unsigned Depth=0, AssumptionCache *AC=nullptr, const Instruction *CxtI=nullptr, const DominatorTree *DT=nullptr, bool UseInstrInfo=true)
Return the number of times the sign bit of the register is replicated into the other bits.
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.
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...
bool isGEPBasedOnPointerToString(const GEPOperator *GEP, unsigned CharSize=8)
Returns true if the GEP is based on a pointer to a string (array of.
bool isGuaranteedNotToBePoison(const Value *V, AssumptionCache *AC=nullptr, const Instruction *CtxI=nullptr, const DominatorTree *DT=nullptr, unsigned Depth=0)
Returns true if V cannot be poison, but may be undef.
KnownFPClass computeKnownFPClass(const Value *V, const APInt &DemandedElts, FPClassTest InterestedClasses, unsigned Depth, const SimplifyQuery &SQ)
Determine which floating-point classes are valid for V, and return them in KnownFPClass bit sets.
void computeKnownBitsFromRangeMetadata(const MDNode &Ranges, KnownBits &Known)
Compute known bits from the range metadata.
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...
bool isKnownNegation(const Value *X, const Value *Y, bool NeedNSW=false, bool AllowPoison=true)
Return true if the two given values are negation.
bool isKnownPositive(const Value *V, const SimplifyQuery &SQ, unsigned Depth=0)
Returns true if the given value is known be positive (i.e.
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...
bool isKnownNonNegative(const Value *V, const SimplifyQuery &SQ, unsigned Depth=0)
Returns true if the give value is known to be non-negative.
unsigned ComputeMaxSignificantBits(const Value *Op, const DataLayout &DL, unsigned Depth=0, AssumptionCache *AC=nullptr, const Instruction *CxtI=nullptr, const DominatorTree *DT=nullptr)
Get the upper bound on bit size for this Value Op as a signed integer.
bool mayHaveNonDefUseDependency(const Instruction &I)
Returns true if the result or effects of the given instructions I depend values not reachable through...
bool isIdentifiedObject(const Value *V)
Return true if this pointer refers to a distinct and identifiable object.
std::optional< bool > isImpliedCondition(const Value *LHS, const Value *RHS, const DataLayout &DL, bool LHSIsTrue=true, unsigned Depth=0)
Return true if RHS is known to be implied true by LHS.
void 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.
static unsigned int semanticsPrecision(const fltSemantics &)
static bool isRepresentableAsNormalIn(const fltSemantics &Src, const fltSemantics &Dst)
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.
uint64_t Length
Length of the slice.
uint64_t Offset
Slice starts at this Offset.
const ConstantDataArray * Array
ConstantDataArray pointer.
Represent subnormal handling kind for floating point instruction inputs and outputs.
DenormalModeKind Input
Denormal treatment kind for floating point instruction inputs in the default floating-point environme...
constexpr bool outputsAreZero() const
Return true if output denormals should be flushed to 0.
@ PreserveSign
The sign of a flushed-to-zero number is preserved in the sign of 0.
@ PositiveZero
Denormals are flushed to positive zero.
@ Dynamic
Denormals have unknown treatment.
@ IEEE
IEEE-754 denormal numbers preserved.
static constexpr DenormalMode getPositiveZero()
constexpr bool inputsAreZero() const
Return true if input denormals must be implicitly treated as 0.
DenormalModeKind Output
Denormal flushing mode for floating point instruction results in the default floating point environme...
static constexpr DenormalMode getIEEE()
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 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 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 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.
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 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 KnownBits ashr(const KnownBits &LHS, const KnownBits &RHS, bool ShAmtNonZero=false, bool Exact=false)
Compute known bits for ashr(LHS, RHS).
static KnownBits ssub_sat(const KnownBits &LHS, const KnownBits &RHS)
Compute knownbits resulting from llvm.ssub.sat(LHS, RHS)
static 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.
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...
void makeNegative()
Make this value negative.
KnownBits trunc(unsigned BitWidth) const
Return known bits for a truncation of the value we're tracking.
bool hasConflict() const
Returns true if there is conflicting information.
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.
unsigned getBitWidth() const
Get the bit width of this value.
static KnownBits umax(const KnownBits &LHS, const KnownBits &RHS)
Compute known bits for umax(LHS, RHS).
bool isConstant() const
Returns true if we know the value of all bits.
void resetAll()
Resets the known state of all bits.
KnownBits unionWith(const KnownBits &RHS) const
Returns KnownBits information that is known to be true for either this or RHS or both.
static 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.
KnownBits intersectWith(const KnownBits &RHS) const
Returns KnownBits information that is known to be true for both this and RHS.
KnownBits sext(unsigned BitWidth) const
Return known bits for a sign extension of the value we're tracking.
unsigned countMinTrailingOnes() const
Returns the minimum number of trailing one bits.
static KnownBits add(const KnownBits &LHS, const KnownBits &RHS, bool NSW=false, bool NUW=false)
Compute knownbits resulting from addition of LHS and RHS.
KnownBits zextOrTrunc(unsigned BitWidth) const
Return known bits for a zero extension or truncation of the value we're tracking.
unsigned countMinLeadingZeros() const
Returns the minimum number of leading zero bits.
APInt getMaxValue() const
Return the maximal unsigned value possible given these KnownBits.
static KnownBits smin(const KnownBits &LHS, const KnownBits &RHS)
Compute known bits for smin(LHS, RHS).
static KnownBits mulhs(const KnownBits &LHS, const KnownBits &RHS)
Compute known bits from sign-extended multiply-hi.
static KnownBits srem(const KnownBits &LHS, const KnownBits &RHS)
Compute known bits for srem(LHS, RHS).
static KnownBits udiv(const KnownBits &LHS, const KnownBits &RHS, bool Exact=false)
Compute known bits for udiv(LHS, RHS).
static KnownBits computeForAddSub(bool Add, bool NSW, bool NUW, const KnownBits &LHS, const KnownBits &RHS)
Compute known bits resulting from adding LHS and RHS.
static 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.
void insertBits(const KnownBits &SubBits, unsigned BitPosition)
Insert the bits from a smaller known bits starting at bitPosition.
static KnownBits uadd_sat(const KnownBits &LHS, const KnownBits &RHS)
Compute knownbits resulting from llvm.uadd.sat(LHS, RHS)
static 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...
KnownBits abs(bool IntMinIsPoison=false) const
Compute known bits for the absolute value.
static std::optional< bool > uge(const KnownBits &LHS, const KnownBits &RHS)
Determine if these known bits always give the same ICMP_UGE result.
static KnownBits shl(const KnownBits &LHS, const KnownBits &RHS, bool NUW=false, bool NSW=false, bool ShAmtNonZero=false)
Compute known bits for shl(LHS, RHS).
static KnownBits umin(const KnownBits &LHS, const KnownBits &RHS)
Compute known bits for umin(LHS, RHS).
KnownBits sextOrTrunc(unsigned BitWidth) const
Return known bits for a sign extension or truncation of the value we're tracking.
const APInt & getConstant() const
Returns the value when all bits have a known value.
FPClassTest KnownFPClasses
Floating-point classes the value could be one of.
bool isKnownNeverInfinity() const
Return true if it's known this can never be an infinity.
bool cannotBeOrderedGreaterThanZero() const
Return true if we can prove that the analyzed floating-point value is either NaN or never greater tha...
static constexpr FPClassTest OrderedGreaterThanZeroMask
static constexpr FPClassTest OrderedLessThanZeroMask
void knownNot(FPClassTest RuleOut)
bool isKnownNeverZero() const
Return true if it's known this can never be a zero.
void copysign(const KnownFPClass &Sign)
bool isKnownNeverSubnormal() const
Return true if it's known this can never be a subnormal.
bool isKnownNeverLogicalNegZero(const Function &F, Type *Ty) const
Return true if it's know this can never be interpreted as a negative zero.
bool isKnownNeverLogicalPosZero(const Function &F, Type *Ty) const
Return true if it's know this can never be interpreted as a positive zero.
void propagateCanonicalizingSrc(const KnownFPClass &Src, const Function &F, Type *Ty)
Report known classes if Src is evaluated through a potentially canonicalizing operation.
void propagateDenormal(const KnownFPClass &Src, const Function &F, Type *Ty)
Propagate knowledge from a source value that could be a denormal or zero.
bool isKnownNeverNegInfinity() const
Return true if it's known this can never be -infinity.
bool isKnownNeverNegSubnormal() const
Return true if it's known this can never be a negative subnormal.
bool isKnownNeverPosZero() const
Return true if it's known this can never be a literal positive zero.
std::optional< bool > SignBit
std::nullopt if the sign bit is unknown, true if the sign bit is definitely set or false if the sign ...
bool isKnownNeverNaN() const
Return true if it's known this can never be a nan.
bool isKnownNever(FPClassTest Mask) const
Return true if it's known this can never be one of the mask entries.
bool isKnownNeverNegZero() const
Return true if it's known this can never be a negative zero.
bool isKnownNeverLogicalZero(const Function &F, Type *Ty) const
Return true if it's know this can never be interpreted as a zero.
void propagateNaN(const KnownFPClass &Src, bool PreserveSign=false)
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.
bool isKnownNeverPosInfinity() const
Return true if it's known this can never be +infinity.
bool isKnownNeverPosSubnormal() const
Return true if it's known this can never be a positive subnormal.
Represent one information held inside an operand bundle of an llvm.assume.
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