Home | History | Annotate | Download | only in InstCombine

Lines Matching refs:NewBits

457     APInt NewBits(APInt::getHighBitsSet(BitWidth, BitWidth - SrcBitWidth));
460 if ((NewBits & DemandedMask) != 0)
477 // If the input sign bit is known zero, or if the NewBits are not demanded
479 if (KnownZero[SrcBitWidth-1] || (NewBits & ~DemandedMask) == NewBits) {
484 KnownOne |= NewBits;