Home | History | Annotate | Download | only in InstCombine

Lines Matching refs:lshr

610       APInt DemandedMaskIn(DemandedMask.lshr(ShiftAmt));
630 case Instruction::LShr:
647 KnownZero = APIntOps::lshr(KnownZero, ShiftAmt);
648 KnownOne = APIntOps::lshr(KnownOne, ShiftAmt);
694 KnownZero = APIntOps::lshr(KnownZero, ShiftAmt);
695 KnownOne = APIntOps::lshr(KnownOne, ShiftAmt);
700 SignBit = APIntOps::lshr(SignBit, ShiftAmt);
869 bool isLshr = (Shr->getOpcode() == Instruction::LShr);
870 BitMask1 = isLshr ? (BitMask1.lshr(ShrAmt) << ShlAmt) :
876 BitMask2 = isLshr ? BitMask2.lshr(ShrAmt - ShlAmt):