26 Zero.setBitVal(SignBitPosition, Val.
One[SignBitPosition]);
27 One.setBitVal(SignBitPosition, Val.
Zero[SignBitPosition]);
32 bool CarryZero,
bool CarryOne) {
34 APInt PossibleSumZero =
LHS.getMaxValue() +
RHS.getMaxValue() + !CarryZero;
35 APInt PossibleSumOne =
LHS.getMinValue() +
RHS.getMinValue() + CarryOne;
38 APInt CarryKnownZero = ~(PossibleSumZero ^
LHS.Zero ^
RHS.Zero);
39 APInt CarryKnownOne = PossibleSumOne ^
LHS.One ^
RHS.One;
44 APInt CarryKnownUnion = std::move(CarryKnownZero) | CarryKnownOne;
45 APInt Known = std::move(LHSKnownUnion) & RHSKnownUnion & CarryKnownUnion;
50 KnownOut.
One = std::move(PossibleSumOne) & Known;
55 const KnownBits &LHS,
const KnownBits &RHS,
const KnownBits &Carry) {
57 return ::computeForAddCarry(
63 const KnownBits &RHS) {
64 unsigned BitWidth = LHS.getBitWidth();
68 if (LHS.isUnknown() && RHS.isUnknown())
71 if (!LHS.isUnknown() && !RHS.isUnknown()) {
78 KnownBits NotRHS = RHS;
148 const KnownBits &Borrow) {
154 return ::computeForAddCarry(LHS, RHS,
168 if (InputMin.
sge(MinInRange) && InputMax.
sle(MaxInRange)) {
172 else if (InputMax.
slt(MinInRange)) {
176 else if (InputMin.
sgt(MaxInRange)) {
208 if (InputMax.
sle(MaxInRange)) {
210 Known.
Zero = InputZeroLower & MinSatKB.
Zero;
211 Known.
One = InputOneLower & MinSatKB.
One;
212 }
else if (InputMin.
sge(MinInRange)) {
214 Known.
Zero = InputZeroLower & MaxSatKB.
Zero;
215 Known.
One = InputOneLower & MaxSatKB.
One;
218 Known.
Zero = InputZeroLower & MinSatKB.
Zero & MaxSatKB.
Zero;
219 Known.
One = InputOneLower & MinSatKB.
One & MaxSatKB.
One;
246 if (InputMax.
ule(MaxInRange)) {
269 if (InputMax.
ule(MaxInRange)) {
271 }
else if (InputMin.
ugt(MaxInRange)) {
283 "Illegal sext-in-register");
288 unsigned ExtBits =
BitWidth - SrcBitWidth;
290 Result.One =
One << ExtBits;
291 Result.Zero =
Zero << ExtBits;
292 Result.One.ashrInPlace(ExtBits);
293 Result.Zero.ashrInPlace(ExtBits);
304 APInt MaskedVal(Val);
314 if (LHS.getMinValue().uge(RHS.getMaxValue()))
316 if (RHS.getMinValue().uge(LHS.getMaxValue()))
322 KnownBits L = LHS.makeGE(RHS.getMinValue());
323 KnownBits R = RHS.makeGE(LHS.getMinValue());
324 return L.intersectWith(R);
329 auto Flip = [](
const KnownBits &Val) {
return KnownBits(Val.
One, Val.
Zero); };
330 return Flip(
umax(Flip(LHS), Flip(RHS)));
334 return flipSignBit(
umax(flipSignBit(LHS), flipSignBit(RHS)));
339 auto Flip = [](
const KnownBits &Val) {
343 Zero.setBitVal(SignBitPosition, Val.
Zero[SignBitPosition]);
344 One.setBitVal(SignBitPosition, Val.
One[SignBitPosition]);
347 return Flip(
umax(Flip(LHS), Flip(RHS)));
353 if (LHS.getMinValue().uge(RHS.getMaxValue()))
356 if (RHS.getMinValue().uge(LHS.getMaxValue()))
372 if (LHS.getSignedMinValue().sge(RHS.getSignedMaxValue()))
375 if (RHS.getSignedMinValue().sge(LHS.getSignedMaxValue()))
385 unsigned SignBitPosition = LHS.getBitWidth() - 1;
386 for (
auto Arg : {&LHS, &RHS}) {
387 bool Tmp = Arg->Zero[SignBitPosition];
388 Arg->Zero.setBitVal(SignBitPosition, Arg->One[SignBitPosition]);
389 Arg->One.setBitVal(SignBitPosition, Tmp);
411 bool NSW,
bool ShAmtNonZero) {
412 unsigned BitWidth = LHS.getBitWidth();
413 auto ShiftByConst = [&](
const KnownBits &LHS,
unsigned ShiftAmt) {
415 bool ShiftedOutZero, ShiftedOutOne;
416 Known.
Zero = LHS.Zero.
ushl_ov(ShiftAmt, ShiftedOutZero);
418 Known.
One = LHS.One.
ushl_ov(ShiftAmt, ShiftedOutOne);
422 if (NUW && ShiftAmt != 0)
424 ShiftedOutZero =
true;
428 else if (ShiftedOutOne)
436 unsigned MinShiftAmount = RHS.getMinValue().getLimitedValue(
BitWidth);
437 if (MinShiftAmount == 0 && ShAmtNonZero)
439 if (LHS.isUnknown()) {
441 if (NUW && NSW && MinShiftAmount != 0)
450 MaxShiftAmount = std::min(MaxShiftAmount, LHS.countMaxLeadingZeros() - 1);
452 MaxShiftAmount = std::min(MaxShiftAmount, LHS.countMaxLeadingZeros());
454 MaxShiftAmount = std::min(
456 std::max(LHS.countMaxLeadingZeros(), LHS.countMaxLeadingOnes()) - 1);
459 if (MinShiftAmount == 0 && MaxShiftAmount ==
BitWidth - 1 &&
465 if (LHS.isNonNegative())
467 if (LHS.isNegative())
474 unsigned ShiftAmtZeroMask = RHS.Zero.zextOrTrunc(32).getZExtValue();
475 unsigned ShiftAmtOneMask = RHS.One.zextOrTrunc(32).getZExtValue();
477 for (
unsigned ShiftAmt = MinShiftAmount; ShiftAmt <= MaxShiftAmount;
480 if ((ShiftAmtZeroMask & ShiftAmt) != 0 ||
481 (ShiftAmtOneMask | ShiftAmt) != ShiftAmt)
495 bool ShAmtNonZero,
bool Exact) {
496 unsigned BitWidth = LHS.getBitWidth();
497 auto ShiftByConst = [&](
const KnownBits &LHS,
unsigned ShiftAmt) {
498 KnownBits Known = LHS;
507 unsigned MinShiftAmount = RHS.getMinValue().getLimitedValue(
BitWidth);
508 if (MinShiftAmount == 0 && ShAmtNonZero)
510 if (LHS.isUnknown()) {
521 unsigned FirstOne = LHS.countMaxTrailingZeros();
522 if (FirstOne < MinShiftAmount) {
527 MaxShiftAmount = std::min(MaxShiftAmount, FirstOne);
530 unsigned ShiftAmtZeroMask = RHS.Zero.zextOrTrunc(32).getZExtValue();
531 unsigned ShiftAmtOneMask = RHS.One.zextOrTrunc(32).getZExtValue();
533 for (
unsigned ShiftAmt = MinShiftAmount; ShiftAmt <= MaxShiftAmount;
536 if ((ShiftAmtZeroMask & ShiftAmt) != 0 ||
537 (ShiftAmtOneMask | ShiftAmt) != ShiftAmt)
551 bool ShAmtNonZero,
bool Exact) {
552 unsigned BitWidth = LHS.getBitWidth();
553 auto ShiftByConst = [&](
const KnownBits &LHS,
unsigned ShiftAmt) {
554 KnownBits Known = LHS;
562 unsigned MinShiftAmount = RHS.getMinValue().getLimitedValue(
BitWidth);
563 if (MinShiftAmount == 0 && ShAmtNonZero)
565 if (LHS.isUnknown()) {
580 unsigned FirstOne = LHS.countMaxTrailingZeros();
581 if (FirstOne < MinShiftAmount) {
586 MaxShiftAmount = std::min(MaxShiftAmount, FirstOne);
589 unsigned ShiftAmtZeroMask = RHS.Zero.zextOrTrunc(32).getZExtValue();
590 unsigned ShiftAmtOneMask = RHS.One.zextOrTrunc(32).getZExtValue();
592 for (
unsigned ShiftAmt = MinShiftAmount; ShiftAmt <= MaxShiftAmount;
595 if ((ShiftAmtZeroMask & ShiftAmt) != 0 ||
596 (ShiftAmtOneMask | ShiftAmt) != ShiftAmt)
627 auto ClMulOr = [](
const APInt &LHS,
const APInt &RHS) {
628 unsigned BW = LHS.getBitWidth();
629 assert(BW == RHS.getBitWidth() &&
"Operand mismatch");
632 seq(std::min(RHS.getActiveBits(), BW - LHS.countr_zero())))
640 APInt Known = ~(ClMulOr(~LHS.Zero & ~LHS.One, ~RHS.Zero) |
641 ClMulOr(~LHS.Zero, ~RHS.Zero & ~RHS.One));
648std::optional<bool>
KnownBits::eq(
const KnownBits &LHS,
const KnownBits &RHS) {
649 if (LHS.isConstant() && RHS.isConstant())
651 if (LHS.One.intersects(RHS.Zero) || RHS.One.intersects(LHS.Zero))
656std::optional<bool>
KnownBits::ne(
const KnownBits &LHS,
const KnownBits &RHS) {
657 if (std::optional<bool> KnownEQ =
eq(LHS, RHS))
664 if (LHS.getMaxValue().ule(RHS.getMinValue()))
667 if (LHS.getMinValue().ugt(RHS.getMaxValue()))
673 if (std::optional<bool> IsUGT =
ugt(RHS, LHS))
679 return ugt(RHS, LHS);
683 return uge(RHS, LHS);
688 if (LHS.getSignedMaxValue().sle(RHS.getSignedMinValue()))
691 if (LHS.getSignedMinValue().sgt(RHS.getSignedMaxValue()))
697 if (std::optional<bool> KnownSGT =
sgt(RHS, LHS))
703 return sgt(RHS, LHS);
707 return sge(RHS, LHS);
720 KnownBits Tmp = *
this;
729 false, IntMinIsPoison,
false,
759 if (IntMinIsPoison || (!
One.isZero() && !
One.isMinSignedValue())) {
797 LeadingZeros = LeadingZeros > LostBits ? LeadingZeros - LostBits : 0;
798 Result.Zero.setHighBits(LeadingZeros);
801 LeadingOnes = LeadingOnes > LostBits ? LeadingOnes - LostBits : 0;
802 Result.One.setHighBits(LeadingOnes);
815 std::optional<bool> Overflow;
820 bool MayNegClamp =
true;
821 bool MayPosClamp =
true;
824 if (
Add && ((
LHS.isNegative() &&
RHS.isNonNegative()) ||
825 (
LHS.isNonNegative() &&
RHS.isNegative())))
827 else if (!
Add && (((
LHS.isNegative() &&
RHS.isNegative()) ||
828 (
LHS.isNonNegative() &&
RHS.isNonNegative()))))
845 false, UnsignedLHS, UnsignedRHS);
851 if (
LHS.isNonNegative() &&
RHS.isNonNegative())
857 if (
LHS.isNegative() &&
RHS.isNegative())
861 if (
LHS.isNegative() ||
RHS.isNegative())
863 if (
LHS.isNonNegative() ||
RHS.isNonNegative())
870 if (
LHS.isNegative() &&
RHS.isNonNegative())
876 if (
LHS.isNonNegative() &&
RHS.isNegative())
880 if (
LHS.isNegative() ||
RHS.isNonNegative())
882 if (
LHS.isNonNegative() ||
RHS.isNegative())
887 if (!MayNegClamp && !MayPosClamp)
892 (void)
LHS.getMaxValue().uadd_ov(
RHS.getMaxValue(), Of);
896 (void)
LHS.getMinValue().uadd_ov(
RHS.getMinValue(), Of);
903 (void)
LHS.getMinValue().usub_ov(
RHS.getMaxValue(), Of);
907 (void)
LHS.getMaxValue().usub_ov(
RHS.getMinValue(), Of);
928 "We somehow know overflow without knowing input sign");
989 return flipSignBit(
avgFloorU(flipSignBit(LHS), flipSignBit(RHS)));
997 return flipSignBit(
avgCeilU(flipSignBit(LHS), flipSignBit(RHS)));
1005 bool NoUndefSelfMultiply) {
1006 unsigned BitWidth = LHS.getBitWidth();
1008 assert((!NoUndefSelfMultiply || LHS == RHS) &&
1009 "Self multiplication knownbits mismatch");
1022 APInt UMaxResult = UMaxLHS.
umul_ov(UMaxRHS, HasOverflow);
1023 unsigned LeadZ = HasOverflow ? 0 : UMaxResult.
countl_zero();
1070 unsigned TrailBitsKnownLHS = (LHS.Zero | LHS.One).
countr_one();
1071 unsigned TrailBitsKnownRHS = (RHS.Zero | RHS.One).
countr_one();
1072 unsigned TrailZeroLHS = LHS.countMinTrailingZeros();
1073 unsigned TrailZeroRHS = RHS.countMinTrailingZeros();
1074 unsigned TrailZ = TrailZeroLHS + TrailZeroRHS;
1077 unsigned SmallestOperand = std::min(TrailBitsKnownLHS - TrailZeroLHS,
1078 TrailBitsKnownRHS - TrailZeroRHS);
1079 unsigned ResultBitsKnown = std::min(SmallestOperand + TrailZ,
BitWidth);
1082 APInt BottomKnown = LHS.One * RHS.One;
1086 Res.
Zero |= (~BottomKnown).getLoBits(ResultBitsKnown);
1089 if (NoUndefSelfMultiply) {
1091 unsigned TwoTZP1 = 2 * TrailZeroLHS + 1;
1097 if (TrailZeroLHS <
BitWidth && LHS.One[TrailZeroLHS]) {
1098 unsigned TwoTZP2 = TwoTZP1 + 1;
1108 unsigned BitWidth = LHS.getBitWidth();
1110 KnownBits WideLHS = LHS.sext(2 *
BitWidth);
1111 KnownBits WideRHS = RHS.sext(2 *
BitWidth);
1116 unsigned BitWidth = LHS.getBitWidth();
1118 KnownBits WideLHS = LHS.zext(2 *
BitWidth);
1119 KnownBits WideRHS = RHS.zext(2 *
BitWidth);
1136 (int)
LHS.countMinTrailingZeros() - (int)
RHS.countMaxTrailingZeros();
1138 (int)
LHS.countMaxTrailingZeros() - (int)
RHS.countMinTrailingZeros();
1142 if (MinTZ == MaxTZ) {
1146 }
else if (MaxTZ < 0) {
1162 if (LHS.isNonNegative() && RHS.isNonNegative())
1163 return udiv(LHS, RHS, Exact);
1165 unsigned BitWidth = LHS.getBitWidth();
1168 if (LHS.isZero() || RHS.isZero()) {
1175 std::optional<APInt> Res;
1176 if (LHS.isNegative() && RHS.isNegative()) {
1185 }
else if (LHS.isNegative() && RHS.isNonNegative()) {
1187 if (Exact || (-LHS.getSignedMaxValue()).uge(RHS.getSignedMaxValue())) {
1190 Res = Denom.
isZero() ? Num : Num.
sdiv(Denom);
1192 }
else if (LHS.isStrictlyPositive() && RHS.isNegative()) {
1194 if (Exact || LHS.getSignedMinValue().uge(-RHS.getSignedMinValue())) {
1197 Res = Num.
sdiv(Denom);
1202 if (Res->isNonNegative()) {
1203 unsigned LeadZ = Res->countLeadingZeros();
1206 unsigned LeadO = Res->countLeadingOnes();
1217 unsigned BitWidth = LHS.getBitWidth();
1220 if (LHS.isZero() || RHS.isZero()) {
1243 unsigned BitWidth = LHS.getBitWidth();
1244 if (!RHS.isZero() && RHS.Zero[0]) {
1246 unsigned RHSZeros = RHS.countMinTrailingZeros();
1248 APInt OnesMask = LHS.One & Mask;
1249 APInt ZerosMask = LHS.Zero & Mask;
1256 KnownBits Known = remGetLowBits(LHS, RHS);
1257 if (RHS.isConstant() && RHS.getConstant().isPowerOf2()) {
1259 APInt HighBits = ~(RHS.getConstant() - 1);
1260 Known.
Zero |= std::move(HighBits);
1267 std::max(LHS.countMinLeadingZeros(), RHS.countMinLeadingZeros());
1273 KnownBits Known = remGetLowBits(LHS, RHS);
1274 if (RHS.isConstant() && RHS.getConstant().isPowerOf2()) {
1276 APInt LowBits = RHS.getConstant() - 1;
1279 if (LHS.isNonNegative() || LowBits.
isSubsetOf(LHS.Zero))
1280 Known.
Zero |= ~LowBits;
1284 if (LHS.isNegative() && LowBits.
intersects(LHS.One))
1285 Known.
One |= ~LowBits;
1292 if (LHS.isNegative() && Known.
isNonZero())
1294 std::max(LHS.countMinLeadingOnes(), RHS.countMinSignBits()));
1295 else if (LHS.isNonNegative())
1297 std::max(LHS.countMinLeadingZeros(), RHS.countMinSignBits()));
1322 Zero = std::move(Z);
1362#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
#define LLVM_DUMP_METHOD
Mark debug helper function definitions like dump() that should not be stripped from debug builds.
static KnownBits avgComputeU(KnownBits LHS, KnownBits RHS, bool IsCeil)
static KnownBits computeForSatAddSub(bool Add, bool Signed, const KnownBits &LHS, const KnownBits &RHS)
static KnownBits divComputeLowBit(KnownBits Known, const KnownBits &LHS, const KnownBits &RHS, bool Exact)
static KnownBits computeForAddCarry(const KnownBits &LHS, const KnownBits &RHS, bool CarryZero, bool CarryOne)
static unsigned getMaxShiftAmount(const APInt &MaxValue, unsigned BitWidth)
Provides some synthesis utilities to produce sequences of values.
Class for arbitrary precision integers.
LLVM_ABI APInt umul_ov(const APInt &RHS, bool &Overflow) const
LLVM_ABI APInt usub_sat(const APInt &RHS) const
LLVM_ABI APInt udiv(const APInt &RHS) const
Unsigned division operation.
static APInt getAllOnes(unsigned numBits)
Return an APInt of a specified width with all bits set.
LLVM_ABI APInt getLoBits(unsigned numBits) const
Compute an APInt containing numBits lowbits from this APInt.
void clearBit(unsigned BitPosition)
Set a given bit to 0.
LLVM_ABI APInt zext(unsigned width) const
Zero extend to a new width.
bool isMinSignedValue() const
Determine if this is the smallest signed value.
void setHighBits(unsigned hiBits)
Set the top hiBits bits.
void setBitsFrom(unsigned loBit)
Set the top bits starting from loBit.
LLVM_ABI uint64_t extractBitsAsZExtValue(unsigned numBits, unsigned bitPosition) const
LLVM_ABI APInt trunc(unsigned width) const
Truncate to new 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".
LLVM_ABI APInt sadd_sat(const APInt &RHS) 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.
void setSignBit()
Set the sign bit to 1.
unsigned getBitWidth() const
Return the number of bits in the APInt.
static APInt getSignedMaxValue(unsigned numBits)
Gets maximum signed value of APInt for a specific bit width.
static APInt getMinValue(unsigned numBits)
Gets minimum unsigned value of APInt for a specific bit width.
bool isNegative() const
Determine sign of this APInt.
bool intersects(const APInt &RHS) const
This operation tests if there are any pairs of corresponding bits between this APInt and RHS that are...
LLVM_ABI APInt sdiv(const APInt &RHS) const
Signed division function for APInt.
void clearAllBits()
Set every bit to 0.
void ashrInPlace(unsigned ShiftAmt)
Arithmetic right-shift this APInt by ShiftAmt in place.
bool sle(const APInt &RHS) const
Signed less or equal comparison.
unsigned countl_zero() const
The APInt version of std::countl_zero.
static APInt getSignedMinValue(unsigned numBits)
Gets minimum signed value of APInt for a specific bit width.
LLVM_ABI APInt ushl_ov(const APInt &Amt, bool &Overflow) const
unsigned countLeadingZeros() const
unsigned countl_one() const
Count the number of leading one bits.
void clearLowBits(unsigned loBits)
Set bottom loBits bits to 0.
uint64_t getLimitedValue(uint64_t Limit=UINT64_MAX) const
If this value is smaller than the specified limit, return it, otherwise return the limit value.
LLVM_ABI APInt uadd_sat(const APInt &RHS) const
bool getBoolValue() const
Convert APInt to a boolean value.
bool isNonNegative() const
Determine if this APInt Value is non-negative (>= 0)
bool ule(const APInt &RHS) const
Unsigned less or equal comparison.
LLVM_ABI APInt sext(unsigned width) const
Sign extend to a new width.
void setBits(unsigned loBit, unsigned hiBit)
Set the bits from loBit (inclusive) to hiBit (exclusive) to 1.
bool isSubsetOf(const APInt &RHS) const
This operation checks that all bits set in this APInt are also set in RHS.
static APInt getLowBitsSet(unsigned numBits, unsigned loBitsSet)
Constructs an APInt value that has the bottom loBitsSet bits set.
bool slt(const APInt &RHS) const
Signed less than comparison.
void setLowBits(unsigned loBits)
Set the bottom loBits bits.
bool sge(const APInt &RHS) const
Signed greater or equal comparison.
void clearSignBit()
Set the sign bit to 0.
LLVM_ABI APInt ssub_sat(const APInt &RHS) const
This class implements an extremely fast bulk output stream that can only output to a stream.
LLVM_ABI APInt fshr(const APInt &Hi, const APInt &Lo, const APInt &Shift)
Perform a funnel shift right.
LLVM_ABI APInt clmul(const APInt &LHS, const APInt &RHS)
Perform a carry-less multiply, also known as XOR multiplication, and return low-bits.
LLVM_ABI APInt fshl(const APInt &Hi, const APInt &Lo, const APInt &Shift)
Perform a funnel shift left.
@ C
The default llvm calling convention, compatible with C.
This is an optimization pass for GlobalISel generic memory operations.
unsigned Log2_32_Ceil(uint32_t Value)
Return the ceil log base 2 of the specified value, 32 if the value is zero.
int countr_one(T Value)
Count the number of ones from the least significant bit to the first zero bit.
unsigned Log2_32(uint32_t Value)
Return the floor log base 2 of the specified value, -1 if the value is zero.
constexpr bool isPowerOf2_32(uint32_t Value)
Return true if the argument is a power of two > 0.
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
int countl_one(T Value)
Count the number of ones from the most significant bit to the first zero bit.
constexpr unsigned BitWidth
OutputIt move(R &&Range, OutputIt Out)
Provide wrappers to std::move which take ranges instead of having to pass begin/end explicitly.
auto seq(T Begin, T End)
Iterate over an integral type from Begin up to - but not including - End.
Implement std::hash so that hash_code can be used in STL containers.
void swap(llvm::BitVector &LHS, llvm::BitVector &RHS)
Implement std::swap in terms of BitVector swap.
static KnownBits makeConstant(const APInt &C)
Create known bits from a known constant.
static LLVM_ABI KnownBits sadd_sat(const KnownBits &LHS, const KnownBits &RHS)
Compute knownbits resulting from llvm.sadd.sat(LHS, RHS)
static LLVM_ABI std::optional< bool > eq(const KnownBits &LHS, const KnownBits &RHS)
Determine if these known bits always give the same ICMP_EQ result.
LLVM_ABI KnownBits sextInReg(unsigned SrcBitWidth) const
Return known bits for a in-register sign extension of the value we're tracking.
static LLVM_ABI KnownBits mulhu(const KnownBits &LHS, const KnownBits &RHS)
Compute known bits from zero-extended multiply-hi.
static LLVM_ABI KnownBits smax(const KnownBits &LHS, const KnownBits &RHS)
Compute known bits for smax(LHS, RHS).
bool isNonNegative() const
Returns true if this value is known to be non-negative.
LLVM_ABI KnownBits blsi() const
Compute known bits for X & -X, which has only the lowest bit set of X set.
void makeNonNegative()
Make this value non-negative.
static LLVM_ABI KnownBits usub_sat(const KnownBits &LHS, const KnownBits &RHS)
Compute knownbits resulting from llvm.usub.sat(LHS, RHS)
unsigned countMinLeadingOnes() const
Returns the minimum number of leading one bits.
LLVM_ABI KnownBits reduceAdd(unsigned NumElts) const
Compute known bits for horizontal add for a vector with NumElts elements, where each element has the ...
unsigned countMinTrailingZeros() const
Returns the minimum number of trailing zero bits.
static LLVM_ABI KnownBits ashr(const KnownBits &LHS, const KnownBits &RHS, bool ShAmtNonZero=false, bool Exact=false)
Compute known bits for ashr(LHS, RHS).
static LLVM_ABI KnownBits ssub_sat(const KnownBits &LHS, const KnownBits &RHS)
Compute knownbits resulting from llvm.ssub.sat(LHS, RHS)
static LLVM_ABI KnownBits urem(const KnownBits &LHS, const KnownBits &RHS)
Compute known bits for urem(LHS, RHS).
bool isUnknown() const
Returns true if we don't know any bits.
unsigned countMaxTrailingZeros() const
Returns the maximum number of trailing zero bits possible.
static LLVM_ABI std::optional< bool > ne(const KnownBits &LHS, const KnownBits &RHS)
Determine if these known bits always give the same ICMP_NE result.
LLVM_ABI KnownBits makeGE(const APInt &Val) const
Return KnownBits based on this, but updated given that the underlying value is known to be greater th...
APInt getSignedMaxValue() const
Return the maximal signed value possible given these KnownBits.
LLVM_ABI KnownBits blsmsk() const
Compute known bits for X ^ (X - 1), which has all bits up to and including the lowest set bit of X se...
void makeNegative()
Make this value negative.
void setAllConflict()
Make all bits known to be both zero and one.
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.
static LLVM_ABI KnownBits fshl(const KnownBits &LHS, const KnownBits &RHS, const APInt &Amt)
Compute known bits for fshl(LHS, RHS, Amt).
static LLVM_ABI std::optional< bool > sge(const KnownBits &LHS, const KnownBits &RHS)
Determine if these known bits always give the same ICMP_SGE result.
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.
LLVM_ABI KnownBits & operator|=(const KnownBits &RHS)
Update known bits based on ORing with RHS.
LLVM_ABI void print(raw_ostream &OS) const
unsigned getBitWidth() const
Get the bit width of this value.
static LLVM_ABI KnownBits umax(const KnownBits &LHS, const KnownBits &RHS)
Compute known bits for umax(LHS, RHS).
bool isConstant() const
Returns true if we know the value of all bits.
void resetAll()
Resets the known state of all bits.
LLVM_DUMP_METHOD void dump() const
static LLVM_ABI KnownBits lshr(const KnownBits &LHS, const KnownBits &RHS, bool ShAmtNonZero=false, bool Exact=false)
Compute known bits for lshr(LHS, RHS).
bool isNonZero() const
Returns true if this value is known to be non-zero.
static LLVM_ABI KnownBits abdu(const KnownBits &LHS, const KnownBits &RHS)
Compute known bits for abdu(LHS, RHS).
KnownBits extractBits(unsigned NumBits, unsigned BitPosition) const
Return a subset of the known bits from [bitPosition,bitPosition+numBits).
static LLVM_ABI KnownBits avgFloorU(const KnownBits &LHS, const KnownBits &RHS)
Compute knownbits resulting from APIntOps::avgFloorU.
KnownBits intersectWith(const KnownBits &RHS) const
Returns KnownBits information that is known to be true for both this and RHS.
static LLVM_ABI KnownBits computeForSubBorrow(const KnownBits &LHS, KnownBits RHS, const KnownBits &Borrow)
Compute known bits results from subtracting RHS from LHS with 1-bit Borrow.
unsigned countMinLeadingZeros() const
Returns the minimum number of leading zero bits.
APInt getMaxValue() const
Return the maximal unsigned value possible given these KnownBits.
static LLVM_ABI KnownBits fshr(const KnownBits &LHS, const KnownBits &RHS, const APInt &Amt)
Compute known bits for fshr(LHS, RHS, Amt).
static LLVM_ABI KnownBits abds(KnownBits LHS, KnownBits RHS)
Compute known bits for abds(LHS, RHS).
static LLVM_ABI KnownBits smin(const KnownBits &LHS, const KnownBits &RHS)
Compute known bits for smin(LHS, RHS).
LLVM_ABI KnownBits & operator&=(const KnownBits &RHS)
Update known bits based on ANDing with RHS.
static LLVM_ABI KnownBits mulhs(const KnownBits &LHS, const KnownBits &RHS)
Compute known bits from sign-extended multiply-hi.
static LLVM_ABI KnownBits srem(const KnownBits &LHS, const KnownBits &RHS)
Compute known bits for srem(LHS, RHS).
static LLVM_ABI std::optional< bool > ugt(const KnownBits &LHS, const KnownBits &RHS)
Determine if these known bits always give the same ICMP_UGT result.
static LLVM_ABI KnownBits udiv(const KnownBits &LHS, const KnownBits &RHS, bool Exact=false)
Compute known bits for udiv(LHS, RHS).
static LLVM_ABI std::optional< bool > slt(const KnownBits &LHS, const KnownBits &RHS)
Determine if these known bits always give the same ICMP_SLT result.
APInt getMinValue() const
Return the minimal unsigned value possible given these KnownBits.
static LLVM_ABI KnownBits computeForAddSub(bool Add, bool NSW, bool NUW, const KnownBits &LHS, const KnownBits &RHS)
Compute known bits resulting from adding LHS and RHS.
static LLVM_ABI KnownBits sdiv(const KnownBits &LHS, const KnownBits &RHS, bool Exact=false)
Compute known bits for sdiv(LHS, RHS).
static LLVM_ABI std::optional< bool > ult(const KnownBits &LHS, const KnownBits &RHS)
Determine if these known bits always give the same ICMP_ULT result.
static LLVM_ABI KnownBits avgFloorS(const KnownBits &LHS, const KnownBits &RHS)
Compute knownbits resulting from APIntOps::avgFloorS.
static LLVM_ABI std::optional< bool > ule(const KnownBits &LHS, const KnownBits &RHS)
Determine if these known bits always give the same ICMP_ULE result.
bool isNegative() const
Returns true if this value is known to be negative.
LLVM_ABI KnownBits truncSSat(unsigned BitWidth) const
Truncate with signed saturation (signed input -> signed output)
static LLVM_ABI KnownBits computeForAddCarry(const KnownBits &LHS, const KnownBits &RHS, const KnownBits &Carry)
Compute known bits resulting from adding LHS, RHS and a 1-bit Carry.
void setAllOnes()
Make all bits known to be one and discard any previous information.
static LLVM_ABI KnownBits avgCeilU(const KnownBits &LHS, const KnownBits &RHS)
Compute knownbits resulting from APIntOps::avgCeilU.
static LLVM_ABI KnownBits uadd_sat(const KnownBits &LHS, const KnownBits &RHS)
Compute knownbits resulting from llvm.uadd.sat(LHS, RHS)
static LLVM_ABI KnownBits mul(const KnownBits &LHS, const KnownBits &RHS, bool NoUndefSelfMultiply=false)
Compute known bits resulting from multiplying LHS and RHS.
static LLVM_ABI KnownBits clmul(const KnownBits &LHS, const KnownBits &RHS)
Compute known bits for clmul(LHS, RHS).
LLVM_ABI KnownBits abs(bool IntMinIsPoison=false) const
Compute known bits for the absolute value.
static LLVM_ABI std::optional< bool > sle(const KnownBits &LHS, const KnownBits &RHS)
Determine if these known bits always give the same ICMP_SLE result.
static LLVM_ABI std::optional< bool > sgt(const KnownBits &LHS, const KnownBits &RHS)
Determine if these known bits always give the same ICMP_SGT result.
unsigned countMinPopulation() const
Returns the number of bits known to be one.
LLVM_ABI KnownBits truncUSat(unsigned BitWidth) const
Truncate with unsigned saturation (unsigned input -> unsigned output)
static LLVM_ABI std::optional< bool > uge(const KnownBits &LHS, const KnownBits &RHS)
Determine if these known bits always give the same ICMP_UGE result.
APInt getSignedMinValue() const
Return the minimal signed value possible given these KnownBits.
LLVM_ABI KnownBits & operator^=(const KnownBits &RHS)
Update known bits based on XORing with RHS.
static LLVM_ABI KnownBits shl(const KnownBits &LHS, const KnownBits &RHS, bool NUW=false, bool NSW=false, bool ShAmtNonZero=false)
Compute known bits for shl(LHS, RHS).
static LLVM_ABI KnownBits umin(const KnownBits &LHS, const KnownBits &RHS)
Compute known bits for umin(LHS, RHS).
LLVM_ABI KnownBits truncSSatU(unsigned BitWidth) const
Truncate with signed saturation to unsigned (signed input -> unsigned output)
static LLVM_ABI KnownBits avgCeilS(const KnownBits &LHS, const KnownBits &RHS)
Compute knownbits resulting from APIntOps::avgCeilS.
const APInt & getConstant() const
Returns the value when all bits have a known value.