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);
408 bool NSW,
bool ShAmtNonZero) {
409 unsigned BitWidth = LHS.getBitWidth();
410 auto ShiftByConst = [&](
const KnownBits &LHS,
unsigned ShiftAmt) {
412 bool ShiftedOutZero, ShiftedOutOne;
413 Known.
Zero = LHS.Zero.
ushl_ov(ShiftAmt, ShiftedOutZero);
415 Known.
One = LHS.One.
ushl_ov(ShiftAmt, ShiftedOutOne);
419 if (NUW && ShiftAmt != 0)
421 ShiftedOutZero =
true;
425 else if (ShiftedOutOne)
433 unsigned MinShiftAmount = RHS.getMinValue().getLimitedValue(
BitWidth);
434 if (MinShiftAmount == 0 && ShAmtNonZero)
436 if (LHS.isUnknown()) {
438 if (NUW && NSW && MinShiftAmount != 0)
447 MaxShiftAmount = std::min(MaxShiftAmount, LHS.countMaxLeadingZeros() - 1);
449 MaxShiftAmount = std::min(MaxShiftAmount, LHS.countMaxLeadingZeros());
451 MaxShiftAmount = std::min(
453 std::max(LHS.countMaxLeadingZeros(), LHS.countMaxLeadingOnes()) - 1);
456 if (MinShiftAmount == 0 && MaxShiftAmount ==
BitWidth - 1 &&
462 if (LHS.isNonNegative())
464 if (LHS.isNegative())
471 unsigned ShiftAmtZeroMask = RHS.Zero.zextOrTrunc(32).getZExtValue();
472 unsigned ShiftAmtOneMask = RHS.One.zextOrTrunc(32).getZExtValue();
474 for (
unsigned ShiftAmt = MinShiftAmount; ShiftAmt <= MaxShiftAmount;
477 if ((ShiftAmtZeroMask & ShiftAmt) != 0 ||
478 (ShiftAmtOneMask | ShiftAmt) != ShiftAmt)
492 bool ShAmtNonZero,
bool Exact) {
493 unsigned BitWidth = LHS.getBitWidth();
494 auto ShiftByConst = [&](
const KnownBits &LHS,
unsigned ShiftAmt) {
495 KnownBits Known = LHS;
504 unsigned MinShiftAmount = RHS.getMinValue().getLimitedValue(
BitWidth);
505 if (MinShiftAmount == 0 && ShAmtNonZero)
507 if (LHS.isUnknown()) {
518 unsigned FirstOne = LHS.countMaxTrailingZeros();
519 if (FirstOne < MinShiftAmount) {
524 MaxShiftAmount = std::min(MaxShiftAmount, FirstOne);
527 unsigned ShiftAmtZeroMask = RHS.Zero.zextOrTrunc(32).getZExtValue();
528 unsigned ShiftAmtOneMask = RHS.One.zextOrTrunc(32).getZExtValue();
530 for (
unsigned ShiftAmt = MinShiftAmount; ShiftAmt <= MaxShiftAmount;
533 if ((ShiftAmtZeroMask & ShiftAmt) != 0 ||
534 (ShiftAmtOneMask | ShiftAmt) != ShiftAmt)
548 bool ShAmtNonZero,
bool Exact) {
549 unsigned BitWidth = LHS.getBitWidth();
550 auto ShiftByConst = [&](
const KnownBits &LHS,
unsigned ShiftAmt) {
551 KnownBits Known = LHS;
559 unsigned MinShiftAmount = RHS.getMinValue().getLimitedValue(
BitWidth);
560 if (MinShiftAmount == 0 && ShAmtNonZero)
562 if (LHS.isUnknown()) {
577 unsigned FirstOne = LHS.countMaxTrailingZeros();
578 if (FirstOne < MinShiftAmount) {
583 MaxShiftAmount = std::min(MaxShiftAmount, FirstOne);
586 unsigned ShiftAmtZeroMask = RHS.Zero.zextOrTrunc(32).getZExtValue();
587 unsigned ShiftAmtOneMask = RHS.One.zextOrTrunc(32).getZExtValue();
589 for (
unsigned ShiftAmt = MinShiftAmount; ShiftAmt <= MaxShiftAmount;
592 if ((ShiftAmtZeroMask & ShiftAmt) != 0 ||
593 (ShiftAmtOneMask | ShiftAmt) != ShiftAmt)
612 auto ClMulOr = [](
const APInt &LHS,
const APInt &RHS) {
613 unsigned BW = LHS.getBitWidth();
614 assert(BW == RHS.getBitWidth() &&
"Operand mismatch");
617 seq(std::min(RHS.getActiveBits(), BW - LHS.countr_zero())))
625 APInt Known = ~(ClMulOr(~LHS.Zero & ~LHS.One, ~RHS.Zero) |
626 ClMulOr(~LHS.Zero, ~RHS.Zero & ~RHS.One));
633std::optional<bool>
KnownBits::eq(
const KnownBits &LHS,
const KnownBits &RHS) {
634 if (LHS.isConstant() && RHS.isConstant())
635 return std::optional<bool>(LHS.getConstant() == RHS.getConstant());
636 if (LHS.One.intersects(RHS.Zero) || RHS.One.intersects(LHS.Zero))
637 return std::optional<bool>(
false);
641std::optional<bool>
KnownBits::ne(
const KnownBits &LHS,
const KnownBits &RHS) {
642 if (std::optional<bool> KnownEQ =
eq(LHS, RHS))
643 return std::optional<bool>(!*KnownEQ);
649 if (LHS.getMaxValue().ule(RHS.getMinValue()))
650 return std::optional<bool>(
false);
652 if (LHS.getMinValue().ugt(RHS.getMaxValue()))
653 return std::optional<bool>(
true);
658 if (std::optional<bool> IsUGT =
ugt(RHS, LHS))
659 return std::optional<bool>(!*IsUGT);
664 return ugt(RHS, LHS);
668 return uge(RHS, LHS);
673 if (LHS.getSignedMaxValue().sle(RHS.getSignedMinValue()))
674 return std::optional<bool>(
false);
676 if (LHS.getSignedMinValue().sgt(RHS.getSignedMaxValue()))
677 return std::optional<bool>(
true);
682 if (std::optional<bool> KnownSGT =
sgt(RHS, LHS))
683 return std::optional<bool>(!*KnownSGT);
688 return sgt(RHS, LHS);
692 return sge(RHS, LHS);
705 KnownBits Tmp = *
this;
714 false, IntMinIsPoison,
false,
744 if (IntMinIsPoison || (!
One.isZero() && !
One.isMinSignedValue())) {
782 LeadingZeros = LeadingZeros > LostBits ? LeadingZeros - LostBits : 0;
783 Result.Zero.setHighBits(LeadingZeros);
786 LeadingOnes = LeadingOnes > LostBits ? LeadingOnes - LostBits : 0;
787 Result.One.setHighBits(LeadingOnes);
800 std::optional<bool> Overflow;
805 bool MayNegClamp =
true;
806 bool MayPosClamp =
true;
809 if (
Add && ((
LHS.isNegative() &&
RHS.isNonNegative()) ||
810 (
LHS.isNonNegative() &&
RHS.isNegative())))
812 else if (!
Add && (((
LHS.isNegative() &&
RHS.isNegative()) ||
813 (
LHS.isNonNegative() &&
RHS.isNonNegative()))))
830 false, UnsignedLHS, UnsignedRHS);
836 if (
LHS.isNonNegative() &&
RHS.isNonNegative())
842 if (
LHS.isNegative() &&
RHS.isNegative())
846 if (
LHS.isNegative() ||
RHS.isNegative())
848 if (
LHS.isNonNegative() ||
RHS.isNonNegative())
855 if (
LHS.isNegative() &&
RHS.isNonNegative())
861 if (
LHS.isNonNegative() &&
RHS.isNegative())
865 if (
LHS.isNegative() ||
RHS.isNonNegative())
867 if (
LHS.isNonNegative() ||
RHS.isNegative())
872 if (!MayNegClamp && !MayPosClamp)
877 (void)
LHS.getMaxValue().uadd_ov(
RHS.getMaxValue(), Of);
881 (void)
LHS.getMinValue().uadd_ov(
RHS.getMinValue(), Of);
888 (void)
LHS.getMinValue().usub_ov(
RHS.getMaxValue(), Of);
892 (void)
LHS.getMaxValue().usub_ov(
RHS.getMinValue(), Of);
913 "We somehow know overflow without knowing input sign");
974 return flipSignBit(
avgFloorU(flipSignBit(LHS), flipSignBit(RHS)));
982 return flipSignBit(
avgCeilU(flipSignBit(LHS), flipSignBit(RHS)));
990 bool NoUndefSelfMultiply) {
991 unsigned BitWidth = LHS.getBitWidth();
993 assert((!NoUndefSelfMultiply || LHS == RHS) &&
994 "Self multiplication knownbits mismatch");
1007 APInt UMaxResult = UMaxLHS.
umul_ov(UMaxRHS, HasOverflow);
1008 unsigned LeadZ = HasOverflow ? 0 : UMaxResult.
countl_zero();
1055 unsigned TrailBitsKnownLHS = (LHS.Zero | LHS.One).
countr_one();
1056 unsigned TrailBitsKnownRHS = (RHS.Zero | RHS.One).
countr_one();
1057 unsigned TrailZeroLHS = LHS.countMinTrailingZeros();
1058 unsigned TrailZeroRHS = RHS.countMinTrailingZeros();
1059 unsigned TrailZ = TrailZeroLHS + TrailZeroRHS;
1062 unsigned SmallestOperand = std::min(TrailBitsKnownLHS - TrailZeroLHS,
1063 TrailBitsKnownRHS - TrailZeroRHS);
1064 unsigned ResultBitsKnown = std::min(SmallestOperand + TrailZ,
BitWidth);
1067 APInt BottomKnown = LHS.One * RHS.One;
1071 Res.
Zero |= (~BottomKnown).getLoBits(ResultBitsKnown);
1074 if (NoUndefSelfMultiply) {
1076 unsigned TwoTZP1 = 2 * TrailZeroLHS + 1;
1082 if (TrailZeroLHS <
BitWidth && LHS.One[TrailZeroLHS]) {
1083 unsigned TwoTZP2 = TwoTZP1 + 1;
1093 unsigned BitWidth = LHS.getBitWidth();
1095 KnownBits WideLHS = LHS.sext(2 *
BitWidth);
1096 KnownBits WideRHS = RHS.sext(2 *
BitWidth);
1101 unsigned BitWidth = LHS.getBitWidth();
1103 KnownBits WideLHS = LHS.zext(2 *
BitWidth);
1104 KnownBits WideRHS = RHS.zext(2 *
BitWidth);
1121 (int)
LHS.countMinTrailingZeros() - (int)
RHS.countMaxTrailingZeros();
1123 (int)
LHS.countMaxTrailingZeros() - (int)
RHS.countMinTrailingZeros();
1127 if (MinTZ == MaxTZ) {
1131 }
else if (MaxTZ < 0) {
1147 if (LHS.isNonNegative() && RHS.isNonNegative())
1148 return udiv(LHS, RHS, Exact);
1150 unsigned BitWidth = LHS.getBitWidth();
1153 if (LHS.isZero() || RHS.isZero()) {
1160 std::optional<APInt> Res;
1161 if (LHS.isNegative() && RHS.isNegative()) {
1170 }
else if (LHS.isNegative() && RHS.isNonNegative()) {
1172 if (Exact || (-LHS.getSignedMaxValue()).uge(RHS.getSignedMaxValue())) {
1175 Res = Denom.
isZero() ? Num : Num.
sdiv(Denom);
1177 }
else if (LHS.isStrictlyPositive() && RHS.isNegative()) {
1179 if (Exact || LHS.getSignedMinValue().uge(-RHS.getSignedMinValue())) {
1182 Res = Num.
sdiv(Denom);
1187 if (Res->isNonNegative()) {
1188 unsigned LeadZ = Res->countLeadingZeros();
1191 unsigned LeadO = Res->countLeadingOnes();
1202 unsigned BitWidth = LHS.getBitWidth();
1205 if (LHS.isZero() || RHS.isZero()) {
1228 unsigned BitWidth = LHS.getBitWidth();
1229 if (!RHS.isZero() && RHS.Zero[0]) {
1231 unsigned RHSZeros = RHS.countMinTrailingZeros();
1233 APInt OnesMask = LHS.One & Mask;
1234 APInt ZerosMask = LHS.Zero & Mask;
1241 KnownBits Known = remGetLowBits(LHS, RHS);
1242 if (RHS.isConstant() && RHS.getConstant().isPowerOf2()) {
1244 APInt HighBits = ~(RHS.getConstant() - 1);
1245 Known.
Zero |= std::move(HighBits);
1252 std::max(LHS.countMinLeadingZeros(), RHS.countMinLeadingZeros());
1258 KnownBits Known = remGetLowBits(LHS, RHS);
1259 if (RHS.isConstant() && RHS.getConstant().isPowerOf2()) {
1261 APInt LowBits = RHS.getConstant() - 1;
1264 if (LHS.isNonNegative() || LowBits.
isSubsetOf(LHS.Zero))
1265 Known.
Zero |= ~LowBits;
1269 if (LHS.isNegative() && LowBits.
intersects(LHS.One))
1270 Known.
One |= ~LowBits;
1277 if (LHS.isNegative() && Known.
isNonZero())
1279 std::max(LHS.countMinLeadingOnes(), RHS.countMinSignBits()));
1280 else if (LHS.isNonNegative())
1282 std::max(LHS.countMinLeadingZeros(), RHS.countMinSignBits()));
1307 Zero = std::move(Z);
1347#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.
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 clmul(const APInt &LHS, const APInt &RHS)
Perform a carry-less multiply, also known as XOR multiplication, and return low-bits.
@ 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 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 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.