Home
last modified time | relevance | path

Searched refs:lshrInPlace (Results 1 – 21 of 21) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DAPInt.cpp762 Result.lshrInPlace(Result.BitWidth - BitWidth); in byteSwap()
788 for (; Val != 0; Val.lshrInPlace(1)) { in reverseBits()
812 A.lshrInPlace(Pow2_A - Pow2_B); in GreatestCommonDivisor()
815 B.lshrInPlace(Pow2_B - Pow2_A); in GreatestCommonDivisor()
831 A.lshrInPlace(A.countr_zero() - Pow2); in GreatestCommonDivisor()
834 B.lshrInPlace(B.countr_zero() - Pow2); in GreatestCommonDivisor()
1099 void APInt::lshrInPlace(const APInt &shiftAmt) { in lshrInPlace() function in APInt
1100 lshrInPlace((unsigned)shiftAmt.getLimitedValue(BitWidth)); in lshrInPlace()
2276 Tmp.lshrInPlace(ShiftAmt); in toString()
H A DKnownBits.cpp375 Known.Zero.lshrInPlace(ShiftAmt); in lshr()
376 Known.One.lshrInPlace(ShiftAmt); in lshr()
H A DAPFloat.cpp4340 significand.lshrInPlace(trailingZeros); in toStringImpl()
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPInt.h853 R.lshrInPlace(shiftAmt); in lshr()
858 void lshrInPlace(unsigned ShiftAmt) { in lshrInPlace() function
922 R.lshrInPlace(ShiftAmt); in lshr()
927 LLVM_ABI void lshrInPlace(const APInt &ShiftAmt);
H A DAPSInt.h157 lshrInPlace(Amt);
/freebsd/contrib/llvm-project/clang/lib/CodeGen/Targets/
H A DSPIR.cpp397 Value.lshrInPlace(32); in getInlineSpirvConstant()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineSimplifyDemanded.cpp798 Known.Zero.lshrInPlace(ShiftAmt); in SimplifyDemandedUseBits()
799 Known.One.lshrInPlace(ShiftAmt); in SimplifyDemandedUseBits()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprConstant.cpp218 BitsThisChar.lshrInPlace(Shift); in addBits()
283 Bits.lshrInPlace(WantedBits); in addBits()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp2046 Known.Zero.lshrInPlace(ShAmt); in SimplifyDemandedBits()
2047 Known.One.lshrInPlace(ShAmt); in SimplifyDemandedBits()
2157 Known.Zero.lshrInPlace(ShAmt); in SimplifyDemandedBits()
2158 Known.One.lshrInPlace(ShAmt); in SimplifyDemandedBits()
2231 Known.One.lshrInPlace(IsFSHL ? (BitWidth - Amt) : Amt); in SimplifyDemandedBits()
2232 Known.Zero.lshrInPlace(IsFSHL ? (BitWidth - Amt) : Amt); in SimplifyDemandedBits()
2676 HighBits.lshrInPlace(ShVal); in SimplifyDemandedBits()
5390 NewC.lshrInPlace(ShiftBits); in SimplifySetCC()
6393 Divisor.lshrInPlace(Shift); in BuildExactUDIV()
8020 Divisor.lshrInPlace(TrailingZeros); in expandDIVREMByConstant()
H A DSelectionDAG.cpp3880 Known2.One.lshrInPlace(BitWidth - Amt); in computeKnownBits()
3881 Known2.Zero.lshrInPlace(BitWidth - Amt); in computeKnownBits()
3885 Known2.One.lshrInPlace(Amt); in computeKnownBits()
3886 Known2.Zero.lshrInPlace(Amt); in computeKnownBits()
H A DDAGCombiner.cpp4762 MulC.lshrInPlace(TZeros); in visitMUL()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InstCombineIntrinsic.cpp1864 Elt.lshrInPlace(Index); in simplifyX86extrq()
2053 Index.lshrInPlace(1); in simplifyX86vpermilvar()
H A DX86ISelLowering.cpp38674 Known.Zero.lshrInPlace(ShAmt); in computeKnownBitsForTargetNode()
38675 Known.One.lshrInPlace(ShAmt); in computeKnownBitsForTargetNode()
43727 KnownUndef.lshrInPlace(ShiftAmt); in SimplifyDemandedVectorEltsForTargetNode()
43728 KnownZero.lshrInPlace(ShiftAmt); in SimplifyDemandedVectorEltsForTargetNode()
44537 Known.Zero.lshrInPlace(ShAmt); in SimplifyDemandedBitsForTargetNode()
44538 Known.One.lshrInPlace(ShAmt); in SimplifyDemandedBitsForTargetNode()
44586 Known.Zero.lshrInPlace(ShAmt); in SimplifyDemandedBitsForTargetNode()
44587 Known.One.lshrInPlace(ShAmt); in SimplifyDemandedBitsForTargetNode()
48325 BitMask.lshrInPlace(*ShiftAmt); in checkSignTestSetCCCombine()
50562 Elt.lshrInPlace(ShiftVal); in combineVectorShiftImm()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelDAGToDAG.cpp2932 OpUsefulBits.lshrInPlace(OpUsefulBits.getBitWidth() - Imm); in getUsefulBitsFromBitfieldMoveOpd()
2961 Mask.lshrInPlace(ShiftAmt); in getUsefulBitsFromOrWithShiftedReg()
2967 Mask.lshrInPlace(ShiftAmt); in getUsefulBitsFromOrWithShiftedReg()
3021 Mask.lshrInPlace(LSB); in getUsefulBitsFromBFM()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp1596 Elt.IntVal.lshrInPlace(ShiftAmt); in executeBitCastInst()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DMicrosoftMangle.cpp1047 for (; Value != 0; Value.lshrInPlace(4)) in mangleBits()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp3927 Realigned.lshrInPlace(ExtraBitsSize); in emitGlobalConstantLargeInt()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DValueTracking.cpp731 RHSKnown.Zero.lshrInPlace(ShAmt); in computeKnownBitsFromCmp()
732 RHSKnown.One.lshrInPlace(ShAmt); in computeKnownBitsFromCmp()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DCombinerHelper.cpp5335 Divisor.lshrInPlace(Shift); in buildUDivorURemUsingMul()
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.cpp9194 SrcDemE.lshrInPlace(NumElts / 2); in getDemandedSrcElements()
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp14071 C1Int.lshrInPlace(C2Int); in PerformSHLSimplify()