reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Analysis/ValueTracking.cpp
 1051     if (RHSMaxLeadingZeros != BitWidth)
 1052       LeadZ = std::min(BitWidth, LeadZ + BitWidth - RHSMaxLeadingZeros - 1);
 1052       LeadZ = std::min(BitWidth, LeadZ + BitWidth - RHSMaxLeadingZeros - 1);
 1144     Known = Known.zextOrTrunc(BitWidth, true /* ExtendedBitsAreKnownZero */);
 1166     Known = Known.sext(BitWidth);
 1304     KnownBits LocalKnown(BitWidth);
 1443         Known2 = KnownBits(BitWidth);
 1489           PossibleLZ = std::min(PossibleLZ, BitWidth - 1);
 1500           PossibleTZ = std::min(PossibleTZ, BitWidth - 1);
 1523         uint64_t ShiftAmt = SA->urem(BitWidth);
 1525           ShiftAmt = BitWidth - ShiftAmt;
 1532             Known2.Zero.shl(ShiftAmt) | Known3.Zero.lshr(BitWidth - ShiftAmt);
 1534             Known2.One.shl(ShiftAmt) | Known3.One.lshr(BitWidth - ShiftAmt);