/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/ |
D | APInt.cpp | 636 Result.lshrInPlace(Result.BitWidth - BitWidth); in byteSwap() 660 for (; Val != 0; Val.lshrInPlace(1)) { in reverseBits() 684 A.lshrInPlace(Pow2_A - Pow2_B); in GreatestCommonDivisor() 687 B.lshrInPlace(Pow2_B - Pow2_A); in GreatestCommonDivisor() 703 A.lshrInPlace(A.countTrailingZeros() - Pow2); in GreatestCommonDivisor() 706 B.lshrInPlace(B.countTrailingZeros() - Pow2); in GreatestCommonDivisor() 961 void APInt::lshrInPlace(const APInt &shiftAmt) { in lshrInPlace() function in APInt 962 lshrInPlace((unsigned)shiftAmt.getLimitedValue(BitWidth)); in lshrInPlace() 2112 Tmp.lshrInPlace(ShiftAmt); in toString()
|
D | APFloat.cpp | 3453 significand.lshrInPlace(trailingZeros); in toString()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/ |
D | APInt.h | 972 R.lshrInPlace(shiftAmt); in lshr() 977 void lshrInPlace(unsigned ShiftAmt) { in lshrInPlace() function 1021 R.lshrInPlace(ShiftAmt); in lshr() 1026 void lshrInPlace(const APInt &ShiftAmt);
|
D | APSInt.h | 129 lshrInPlace(Amt);
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/InstCombine/ |
D | InstCombineSimplifyDemanded.cpp | 492 Known.Zero.lshrInPlace(ShiftAmt); in SimplifyDemandedUseBits() 493 Known.One.lshrInPlace(ShiftAmt); in SimplifyDemandedUseBits() 541 Known.Zero.lshrInPlace(ShiftAmt); in SimplifyDemandedUseBits() 542 Known.One.lshrInPlace(ShiftAmt); in SimplifyDemandedUseBits()
|
D | InstCombineShifts.cpp | 410 MaskV.lshrInPlace(Op1C->getZExtValue()); in FoldShiftByConstant()
|
D | InstCombineCalls.cpp | 846 Elt.lshrInPlace(Index); in simplifyX86extrq() 1044 Index.lshrInPlace(1); in simplifyX86vpermilvar()
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/ADT/ |
D | APIntTest.cpp | 2126 i256.lshrInPlace(1); in TEST() 2131 i256.lshrInPlace(62); in TEST() 2136 i256.lshrInPlace(65); in TEST() 2141 i256.lshrInPlace(64); in TEST() 2146 i256.lshrInPlace(63); in TEST()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/ |
D | TargetLowering.cpp | 916 Known.Zero.lshrInPlace(ShAmt); in SimplifyDemandedBits() 917 Known.One.lshrInPlace(ShAmt); in SimplifyDemandedBits() 954 Known.Zero.lshrInPlace(ShAmt); in SimplifyDemandedBits() 955 Known.One.lshrInPlace(ShAmt); in SimplifyDemandedBits() 1148 HighBits.lshrInPlace(ShAmt->getZExtValue()); in SimplifyDemandedBits() 2525 NewC.lshrInPlace(ShiftBits); in SimplifySetCC()
|
D | SelectionDAG.cpp | 2575 Known.Zero.lshrInPlace(Shift); in computeKnownBits() 2576 Known.One.lshrInPlace(Shift); in computeKnownBits()
|
D | DAGCombiner.cpp | 6470 Mask.lshrInPlace(c1 - c2); in visitSHL() 10099 OpVal.lshrInPlace(DstBitSize); in ConstantFoldBITCASTofBUILD_VECTOR() 17491 Bits.lshrInPlace((Split - SubIdx - 1) * NumSubBits); in XformToShuffleWithZero() 17493 Bits.lshrInPlace(SubIdx * NumSubBits); in XformToShuffleWithZero()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AArch64/ |
D | AArch64ISelDAGToDAG.cpp | 1881 OpUsefulBits.lshrInPlace(OpUsefulBits.getBitWidth() - Imm); in getUsefulBitsFromBitfieldMoveOpd() 1910 Mask.lshrInPlace(ShiftAmt); in getUsefulBitsFromOrWithShiftedReg() 1916 Mask.lshrInPlace(ShiftAmt); in getUsefulBitsFromOrWithShiftedReg() 1970 Mask.lshrInPlace(LSB); in getUsefulBitsFromBFM()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/ |
D | ValueTracking.cpp | 725 RHSKnown.Zero.lshrInPlace(C); in computeKnownBitsFromAssume() 727 RHSKnown.One.lshrInPlace(C); in computeKnownBitsFromAssume() 739 RHSKnown.One.lshrInPlace(C); in computeKnownBitsFromAssume() 741 RHSKnown.Zero.lshrInPlace(C); in computeKnownBitsFromAssume()
|
D | ScalarEvolution.cpp | 1159 Mult.lshrInPlace(TwoFactors); in BinomialCoefficient()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/NVPTX/ |
D | NVPTXAsmPrinter.cpp | 1927 Val.lshrInPlace(8); in bufferAggregateConstant()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/ |
D | ConstantFold.cpp | 226 V.lshrInPlace(ByteStart*8); in ExtractConstantBytes()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/AsmPrinter/ |
D | AsmPrinter.cpp | 2427 Realigned.lshrInPlace(ExtraBitsSize); in emitGlobalConstantLargeInt()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/Interpreter/ |
D | Execution.cpp | 1583 Elt.IntVal.lshrInPlace(ShiftAmt); in executeBitCastInst()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/SystemZ/ |
D | SystemZISelLowering.cpp | 5715 SrcDemE.lshrInPlace(NumElts / 2); in getDemandedSrcElements()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/ |
D | X86ISelLowering.cpp | 9191 Val.lshrInPlace((M % Scale) * ScalarSizeInBits); in computeZeroableShuffleElements() 9197 Val.lshrInPlace((M % Scale) * ScalarSizeInBits); in computeZeroableShuffleElements() 28914 Known.Zero.lshrInPlace(ShAmt); in computeKnownBitsForTargetNode() 28915 Known.One.lshrInPlace(ShAmt); in computeKnownBitsForTargetNode() 34338 Elt.lshrInPlace(ShiftImm); in combineVectorShiftImm()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/ |
D | ARMISelLowering.cpp | 10487 C1Int.lshrInPlace(C2Int); in PerformSHLSimplify()
|