Home | History | Annotate | Download | only in InstCombine

Lines Matching refs:LShr

652       APInt DemandedMaskIn(DemandedMask.lshr(ShiftAmt));
672 case Instruction::LShr:
689 KnownZero = APIntOps::lshr(KnownZero, ShiftAmt);
690 KnownOne = APIntOps::lshr(KnownOne, ShiftAmt);
736 KnownZero = APIntOps::lshr(KnownZero, ShiftAmt);
737 KnownOne = APIntOps::lshr(KnownOne, ShiftAmt);
742 SignBit = APIntOps::lshr(SignBit, ShiftAmt);
912 bool isLshr = (Shr->getOpcode() == Instruction::LShr);
913 BitMask1 = isLshr ? (BitMask1.lshr(ShrAmt) << ShlAmt) :
919 BitMask2 = isLshr ? BitMask2.lshr(ShrAmt - ShlAmt):