Searched refs:SrcEltBits (Results 1 – 3 of 3) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
D | LegalizeVectorOps.cpp | 779 unsigned SrcEltBits = SrcEltVT.getSizeInBits(); in ExpandLoad() local 781 APInt::getLowBitsSet(WideBits, SrcEltBits), dl, WideVT); in ExpandLoad() 790 BitOffset += SrcEltBits; in ExpandLoad() 796 SrcEltBits - BitOffset, dl, in ExpandLoad() 816 DAG.getConstant(WideBits - SrcEltBits, dl, in ExpandLoad()
|
D | TargetLowering.cpp | 6047 unsigned SrcEltBits = SrcVT.getScalarSizeInBits(); in expandFP_TO_SINT() local 6054 SDValue SignMask = DAG.getConstant(APInt::getSignMask(SrcEltBits), dl, IntVT); in expandFP_TO_SINT() 6055 SDValue SignLowBit = DAG.getConstant(SrcEltBits - 1, dl, IntVT); in expandFP_TO_SINT()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
D | X86ISelLowering.cpp | 6148 auto CastBitData = [&](APInt &UndefSrcElts, ArrayRef<APInt> SrcEltBits) { in getTargetConstantBitsFromNode() argument 6150 unsigned SrcEltSizeInBits = SrcEltBits[0].getBitWidth(); in getTargetConstantBitsFromNode() 6162 EltBits.assign(SrcEltBits.begin(), SrcEltBits.end()); in getTargetConstantBitsFromNode() 6174 MaskBits.insertBits(SrcEltBits[i], BitOffset); in getTargetConstantBitsFromNode() 6226 SmallVector<APInt, 64> SrcEltBits(NumElts, APInt(EltSizeInBits, 0)); in getTargetConstantBitsFromNode() local 6227 return CastBitData(UndefSrcElts, SrcEltBits); in getTargetConstantBitsFromNode() 6233 SmallVector<APInt, 64> SrcEltBits(1, Cst->getAPIntValue()); in getTargetConstantBitsFromNode() local 6234 return CastBitData(UndefSrcElts, SrcEltBits); in getTargetConstantBitsFromNode() 6239 SmallVector<APInt, 64> SrcEltBits(1, RawBits); in getTargetConstantBitsFromNode() local 6240 return CastBitData(UndefSrcElts, SrcEltBits); in getTargetConstantBitsFromNode() [all …]
|