Searched refs:LowBits (Results 1 – 6 of 6) sorted by relevance
447 unsigned LowBits = (*RelocPos + ResultPtr) & 65535; in relocate() local449 *RelocPos = LowBits | HighBits; // Slam into low 16-bits in relocate()456 unsigned LowBits = (*RelocPos + ResultPtr) & 0xFFFC; in relocate() local458 *RelocPos = LowBits | HighBits; // Slam into low 14-bits. in relocate()
696 APInt LowBits = RA - 1; in SimplifyDemandedUseBits() local697 APInt Mask2 = LowBits | APInt::getSignBit(BitWidth); in SimplifyDemandedUseBits()703 KnownZero = LHSKnownZero & LowBits; in SimplifyDemandedUseBits()704 KnownOne = LHSKnownOne & LowBits; in SimplifyDemandedUseBits()708 if (LHSKnownZero[BitWidth-1] || ((LHSKnownZero & LowBits) == LowBits)) in SimplifyDemandedUseBits()709 KnownZero |= ~LowBits; in SimplifyDemandedUseBits()713 if (LHSKnownOne[BitWidth-1] && ((LHSKnownOne & LowBits) != 0)) in SimplifyDemandedUseBits()714 KnownOne |= ~LowBits; in SimplifyDemandedUseBits()
130 unsigned LowBits = TypeWidth - CI->getZExtValue(); in CanEvaluateShifted() local132 APInt::getLowBitsSet(TypeWidth, NumBits) << LowBits)) in CanEvaluateShifted()154 unsigned LowBits = CI->getZExtValue() - NumBits; in CanEvaluateShifted() local156 APInt::getLowBitsSet(TypeWidth, NumBits) << LowBits)) in CanEvaluateShifted()
471 APInt LowBits = RA - 1; in ComputeMaskedBits() local472 APInt Mask2 = LowBits | APInt::getSignBit(BitWidth); in ComputeMaskedBits()477 KnownZero = KnownZero2 & LowBits; in ComputeMaskedBits()478 KnownOne = KnownOne2 & LowBits; in ComputeMaskedBits()482 if (KnownZero2[BitWidth-1] || ((KnownZero2 & LowBits) == LowBits)) in ComputeMaskedBits()483 KnownZero |= ~LowBits; in ComputeMaskedBits()487 if (KnownOne2[BitWidth-1] && ((KnownOne2 & LowBits) != 0)) in ComputeMaskedBits()488 KnownOne |= ~LowBits; in ComputeMaskedBits()514 APInt LowBits = (RA - 1); in ComputeMaskedBits() local515 APInt Mask2 = LowBits & Mask; in ComputeMaskedBits()[all …]
1832 unsigned LowBits = Log2_32(BitWidth)+1; in ComputeMaskedBits() local1833 KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - LowBits); in ComputeMaskedBits()1991 APInt LowBits = RA - 1; in ComputeMaskedBits() local1992 APInt Mask2 = LowBits | APInt::getSignBit(BitWidth); in ComputeMaskedBits()1996 KnownZero = KnownZero2 & LowBits; in ComputeMaskedBits()1997 KnownOne = KnownOne2 & LowBits; in ComputeMaskedBits()2001 if (KnownZero2[BitWidth-1] || ((KnownZero2 & LowBits) == LowBits)) in ComputeMaskedBits()2002 KnownZero |= ~LowBits; in ComputeMaskedBits()2006 if (KnownOne2[BitWidth-1] && ((KnownOne2 & LowBits) != 0)) in ComputeMaskedBits()2007 KnownOne |= ~LowBits; in ComputeMaskedBits()[all …]
3397 unsigned LowBits = OpSizeInBits - (unsigned)N1C->getZExtValue(); in visitSRA() local3398 EVT ExtVT = EVT::getIntegerVT(*DAG.getContext(), LowBits); in visitSRA()