Searched refs:BitShift (Results 1 – 6 of 6) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | APInt.cpp | 1001 unsigned BitShift = ShiftAmt % APINT_BITS_PER_WORD; in ashrSlowCase() local 1010 if (BitShift == 0) { in ashrSlowCase() 1015 U.pVal[i] = (U.pVal[i + WordShift] >> BitShift) | in ashrSlowCase() 1016 (U.pVal[i + WordShift + 1] << (APINT_BITS_PER_WORD - BitShift)); in ashrSlowCase() 1019 U.pVal[WordsToMove - 1] = U.pVal[WordShift + WordsToMove - 1] >> BitShift; in ashrSlowCase() 1022 SignExtend64(U.pVal[WordsToMove - 1], APINT_BITS_PER_WORD - BitShift); in ashrSlowCase() 2719 unsigned BitShift = Count % APINT_BITS_PER_WORD; in tcShiftLeft() local 2722 if (BitShift == 0) { in tcShiftLeft() 2726 Dst[Words] = Dst[Words - WordShift] << BitShift; in tcShiftLeft() 2729 Dst[Words - WordShift - 1] >> (APINT_BITS_PER_WORD - BitShift); in tcShiftLeft() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
D | Local.cpp | 2741 unsigned BitShift = in collectBitParts() local 2744 if (BitShift > BitWidth) in collectBitParts() 2756 P.erase(std::prev(P.end(), BitShift), P.end()); in collectBitParts() 2757 P.insert(P.begin(), BitShift, BitPart::Unset); in collectBitParts() 2759 P.erase(P.begin(), std::next(P.begin(), BitShift)); in collectBitParts() 2760 P.insert(P.end(), BitShift, BitPart::Unset); in collectBitParts()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/ |
D | SystemZISelLowering.cpp | 3857 SDValue BitShift = DAG.getNode(ISD::SHL, DL, PtrVT, Addr, in lowerATOMIC_LOAD_OP() local 3859 BitShift = DAG.getNode(ISD::TRUNCATE, DL, WideVT, BitShift); in lowerATOMIC_LOAD_OP() 3864 DAG.getConstant(0, DL, WideVT), BitShift); in lowerATOMIC_LOAD_OP() 3881 SDValue Ops[] = { ChainIn, AlignedAddr, Src2, BitShift, NegBitShift, in lowerATOMIC_LOAD_OP() 3888 SDValue ResultShift = DAG.getNode(ISD::ADD, DL, WideVT, BitShift, in lowerATOMIC_LOAD_OP() 3973 SDValue BitShift = DAG.getNode(ISD::SHL, DL, PtrVT, Addr, in lowerATOMIC_CMP_SWAP() local 3975 BitShift = DAG.getNode(ISD::TRUNCATE, DL, WideVT, BitShift); in lowerATOMIC_CMP_SWAP() 3980 DAG.getConstant(0, DL, WideVT), BitShift); in lowerATOMIC_CMP_SWAP() 3984 SDValue Ops[] = { ChainIn, AlignedAddr, CmpVal, SwapVal, BitShift, in lowerATOMIC_CMP_SWAP() 7045 Register BitShift = IsSubWord ? MI.getOperand(4).getReg() : Register(); in emitAtomicLoadBinary() local [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | ConstantFolding.cpp | 70 unsigned BitShift = DL.getTypeSizeInBits(SrcEltTy); in foldConstVectorToAPInt() local 79 Result <<= BitShift; in foldConstVectorToAPInt() 87 Result <<= BitShift; in foldConstVectorToAPInt()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
D | R600ISelLowering.cpp | 1289 SDValue BitShift = DAG.getNode(ISD::SHL, DL, VT, ByteIndex, in LowerSTORE() local 1293 SDValue Mask = DAG.getNode(ISD::SHL, DL, VT, MaskConstant, BitShift); in LowerSTORE() 1297 SDValue ShiftedValue = DAG.getNode(ISD::SHL, DL, VT, TruncValue, BitShift); in LowerSTORE()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
D | DAGCombiner.cpp | 6477 uint64_t BitShift = ShiftOp->getZExtValue(); in calculateByteProvider() local 6478 if (BitShift % 8 != 0) in calculateByteProvider() 6480 uint64_t ByteShift = BitShift / 8; in calculateByteProvider()
|