/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | APInt.cpp | 731 Result.lshrInPlace(Result.BitWidth - BitWidth); in byteSwap() 757 for (; Val != 0; Val.lshrInPlace(1)) { in reverseBits() 781 A.lshrInPlace(Pow2_A - Pow2_B); in GreatestCommonDivisor() 784 B.lshrInPlace(Pow2_B - Pow2_A); in GreatestCommonDivisor() 800 A.lshrInPlace(A.countr_zero() - Pow2); in GreatestCommonDivisor() 803 B.lshrInPlace(B.countr_zero() - Pow2); in GreatestCommonDivisor() 1069 void APInt::lshrInPlace(const APInt &shiftAmt) { in lshrInPlace() function in APInt 1070 lshrInPlace((unsigned)shiftAmt.getLimitedValue(BitWidth)); in lshrInPlace() 2246 Tmp.lshrInPlace(ShiftAmt); in toString()
|
H A D | KnownBits.cpp | 375 Known.Zero.lshrInPlace(ShiftAmt); in lshr() 376 Known.One.lshrInPlace(ShiftAmt); in lshr()
|
H A D | APFloat.cpp | 4166 significand.lshrInPlace(trailingZeros); in toStringImpl()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | APInt.h | 833 R.lshrInPlace(shiftAmt); in lshr() 838 void lshrInPlace(unsigned ShiftAmt) { in lshrInPlace() function 902 R.lshrInPlace(ShiftAmt); in lshr() 907 void lshrInPlace(const APInt &ShiftAmt);
|
H A D | APSInt.h | 156 lshrInPlace(Amt);
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineSimplifyDemanded.cpp | 774 Known.Zero.lshrInPlace(ShiftAmt); in SimplifyDemandedUseBits() 775 Known.One.lshrInPlace(ShiftAmt); in SimplifyDemandedUseBits()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGExprConstant.cpp | 211 BitsThisChar.lshrInPlace(Shift); in addBits() 276 Bits.lshrInPlace(WantedBits); in addBits()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
H A D | TargetLowering.cpp | 1993 Known.Zero.lshrInPlace(ShAmt); in SimplifyDemandedBits() 1994 Known.One.lshrInPlace(ShAmt); in SimplifyDemandedBits() 2089 Known.Zero.lshrInPlace(ShAmt); in SimplifyDemandedBits() 2090 Known.One.lshrInPlace(ShAmt); in SimplifyDemandedBits() 2163 Known.One.lshrInPlace(IsFSHL ? (BitWidth - Amt) : Amt); in SimplifyDemandedBits() 2164 Known.Zero.lshrInPlace(IsFSHL ? (BitWidth - Amt) : Amt); in SimplifyDemandedBits() 2608 HighBits.lshrInPlace(ShVal); in SimplifyDemandedBits() 5176 NewC.lshrInPlace(ShiftBits); in SimplifySetCC() 6175 Divisor.lshrInPlace(Shift); in BuildExactUDIV() 7801 Divisor.lshrInPlace(TrailingZeros); in expandDIVREMByConstant()
|
H A D | SelectionDAG.cpp | 3637 Known2.One.lshrInPlace(BitWidth - Amt); in computeKnownBits() 3638 Known2.Zero.lshrInPlace(BitWidth - Amt); in computeKnownBits() 3642 Known2.One.lshrInPlace(Amt); in computeKnownBits() 3643 Known2.Zero.lshrInPlace(Amt); in computeKnownBits()
|
H A D | DAGCombiner.cpp | 4432 MulC.lshrInPlace(TZeros); in visitMUL()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86InstCombineIntrinsic.cpp | 1868 Elt.lshrInPlace(Index); in simplifyX86extrq() 2061 Index.lshrInPlace(1); in simplifyX86vpermilvar()
|
H A D | X86ISelLowering.cpp | 37264 Known.Zero.lshrInPlace(ShAmt); in computeKnownBitsForTargetNode() 37265 Known.One.lshrInPlace(ShAmt); in computeKnownBitsForTargetNode() 42119 KnownUndef.lshrInPlace(ShiftAmt); in SimplifyDemandedVectorEltsForTargetNode() 42120 KnownZero.lshrInPlace(ShiftAmt); in SimplifyDemandedVectorEltsForTargetNode() 42797 Known.Zero.lshrInPlace(ShAmt); in SimplifyDemandedBitsForTargetNode() 42798 Known.One.lshrInPlace(ShAmt); in SimplifyDemandedBitsForTargetNode() 42837 Known.Zero.lshrInPlace(ShAmt); in SimplifyDemandedBitsForTargetNode() 42838 Known.One.lshrInPlace(ShAmt); in SimplifyDemandedBitsForTargetNode() 46573 BitMask.lshrInPlace(*ShiftAmt); in checkSignTestSetCCCombine() 48807 Elt.lshrInPlace(ShiftVal); in combineVectorShiftImm()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/ |
H A D | NVPTXAsmPrinter.cpp | 1934 Val.lshrInPlace(8); in bufferAggregateConstant()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
H A D | AArch64ISelDAGToDAG.cpp | 2830 OpUsefulBits.lshrInPlace(OpUsefulBits.getBitWidth() - Imm); in getUsefulBitsFromBitfieldMoveOpd() 2859 Mask.lshrInPlace(ShiftAmt); in getUsefulBitsFromOrWithShiftedReg() 2865 Mask.lshrInPlace(ShiftAmt); in getUsefulBitsFromOrWithShiftedReg() 2919 Mask.lshrInPlace(LSB); in getUsefulBitsFromBFM()
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/ |
H A D | Execution.cpp | 1596 Elt.IntVal.lshrInPlace(ShiftAmt); in executeBitCastInst()
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | MicrosoftMangle.cpp | 1009 for (; Value != 0; Value.lshrInPlace(4)) in mangleBits()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
H A D | AsmPrinter.cpp | 3576 Realigned.lshrInPlace(ExtraBitsSize); in emitGlobalConstantLargeInt()
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | ValueTracking.cpp | 686 RHSKnown.Zero.lshrInPlace(ShAmt); in computeKnownBitsFromCmp() 687 RHSKnown.One.lshrInPlace(ShAmt); in computeKnownBitsFromCmp()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
H A D | CombinerHelper.cpp | 5201 Divisor.lshrInPlace(Shift); in buildUDivUsingMul()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
H A D | SystemZISelLowering.cpp | 7870 SrcDemE.lshrInPlace(NumElts / 2); in getDemandedSrcElements()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/ |
H A D | ARMISelLowering.cpp | 13994 C1Int.lshrInPlace(C2Int); in PerformSHLSimplify()
|