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

References

include/llvm/ADT/APInt.h
  972     R.lshrInPlace(shiftAmt);
include/llvm/ADT/APSInt.h
  146       lshrInPlace(Amt);
lib/Analysis/ScalarEvolution.cpp
 1189     Mult.lshrInPlace(TwoFactors);
lib/Analysis/ValueTracking.cpp
  736         RHSKnown.Zero.lshrInPlace(C);
  738         RHSKnown.One.lshrInPlace(C);
  748         RHSKnown.One.lshrInPlace(C);
  750         RHSKnown.Zero.lshrInPlace(C);
lib/CodeGen/AsmPrinter/AsmPrinter.cpp
 2550       Realigned.lshrInPlace(ExtraBitsSize);
lib/CodeGen/SelectionDAG/DAGCombiner.cpp
 7478           Mask.lshrInPlace(c1 - c2);
11307       OpVal.lshrInPlace(DstBitSize);
19491         Bits.lshrInPlace((Split - SubIdx - 1) * NumSubBits);
19493         Bits.lshrInPlace(SubIdx * NumSubBits);
lib/CodeGen/SelectionDAG/SelectionDAG.cpp
 2809       Known.Zero.lshrInPlace(Shift);
 2810       Known.One.lshrInPlace(Shift);
 2847         Known2.One.lshrInPlace(BitWidth - Amt);
 2848         Known2.Zero.lshrInPlace(BitWidth - Amt);
 2852         Known2.One.lshrInPlace(Amt);
 2853         Known2.Zero.lshrInPlace(Amt);
lib/CodeGen/SelectionDAG/TargetLowering.cpp
 1422       Known.Zero.lshrInPlace(ShAmt);
 1423       Known.One.lshrInPlace(ShAmt);
 1465       Known.Zero.lshrInPlace(ShAmt);
 1466       Known.One.lshrInPlace(ShAmt);
 1524       Known.One.lshrInPlace(IsFSHL ? (BitWidth - Amt) : Amt);
 1525       Known.Zero.lshrInPlace(IsFSHL ? (BitWidth - Amt) : Amt);
 1768         HighBits.lshrInPlace(ShVal);
 3680         NewC.lshrInPlace(ShiftBits);
lib/ExecutionEngine/Interpreter/Execution.cpp
 1636           Elt.IntVal.lshrInPlace(ShiftAmt);
lib/IR/ConstantFold.cpp
  226       V.lshrInPlace(ByteStart*8);
  275     ShAmt.lshrInPlace(3);
  298     ShAmt.lshrInPlace(3);
lib/Support/APFloat.cpp
 3491   significand.lshrInPlace(trailingZeros);
lib/Support/APInt.cpp
  692     Result.lshrInPlace(Result.BitWidth - BitWidth);
  716   for (; Val != 0; Val.lshrInPlace(1)) {
  740       A.lshrInPlace(Pow2_A - Pow2_B);
  743       B.lshrInPlace(Pow2_B - Pow2_A);
  759       A.lshrInPlace(A.countTrailingZeros() - Pow2);
  762       B.lshrInPlace(B.countTrailingZeros() - Pow2);
 1010   lshrInPlace((unsigned)shiftAmt.getLimitedValue(BitWidth));
 2241       Tmp.lshrInPlace(ShiftAmt);
lib/Target/AArch64/AArch64ISelDAGToDAG.cpp
 1929     OpUsefulBits.lshrInPlace(OpUsefulBits.getBitWidth() - Imm);
 1958     Mask.lshrInPlace(ShiftAmt);
 1964     Mask.lshrInPlace(ShiftAmt);
 2018       Mask.lshrInPlace(LSB);
lib/Target/NVPTX/NVPTXAsmPrinter.cpp
 1925       Val.lshrInPlace(8);
lib/Target/SystemZ/SystemZISelLowering.cpp
 6209         SrcDemE.lshrInPlace(NumElts / 2);
lib/Target/X86/X86ISelLowering.cpp
10473         Val.lshrInPlace((M % Scale) * ScalarSizeInBits);
10479         Val.lshrInPlace((M % Scale) * ScalarSizeInBits);
31535         Known.Zero.lshrInPlace(ShAmt);
31536         Known.One.lshrInPlace(ShAmt);
34388     KnownUndef.lshrInPlace(ShiftAmt);
34389     KnownZero.lshrInPlace(ShiftAmt);
34800       Known.Zero.lshrInPlace(ShAmt);
34801       Known.One.lshrInPlace(ShAmt);
34842       Known.Zero.lshrInPlace(ShAmt);
34843       Known.One.lshrInPlace(ShAmt);
38611         Elt.lshrInPlace(ShiftVal);
lib/Transforms/InstCombine/InstCombineCalls.cpp
  797       Elt.lshrInPlace(Index);
  995       Index.lshrInPlace(1);
lib/Transforms/InstCombine/InstCombineShifts.cpp
  665         MaskV.lshrInPlace(Op1C->getZExtValue());
lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp
  512       Known.Zero.lshrInPlace(ShiftAmt);
  513       Known.One.lshrInPlace(ShiftAmt);
  561       Known.Zero.lshrInPlace(ShiftAmt);
  562       Known.One.lshrInPlace(ShiftAmt);
tools/clang/lib/CodeGen/CGExprConstant.cpp
  207         BitsThisChar.lshrInPlace(Shift);
  272       Bits.lshrInPlace(WantedBits);
unittests/ADT/APIntTest.cpp
 2351   i256.lshrInPlace(1);
 2356   i256.lshrInPlace(62);
 2361   i256.lshrInPlace(65);
 2366   i256.lshrInPlace(64);
 2371   i256.lshrInPlace(63);