Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/
DX86ISelLowering.cpp34194 unsigned DstBitsPerElt = VT.getScalarSizeInBits(); in combineVectorPack() local
34195 unsigned SrcBitsPerElt = 2 * DstBitsPerElt; in combineVectorPack()
34215 SmallVector<APInt, 32> Bits(NumDstElts, APInt::getNullValue(DstBitsPerElt)); in combineVectorPack()
34232 if (Val.isSignedIntN(DstBitsPerElt)) in combineVectorPack()
34233 Val = Val.trunc(DstBitsPerElt); in combineVectorPack()
34235 Val = APInt::getSignedMinValue(DstBitsPerElt); in combineVectorPack()
34237 Val = APInt::getSignedMaxValue(DstBitsPerElt); in combineVectorPack()
34242 if (Val.isIntN(DstBitsPerElt)) in combineVectorPack()
34243 Val = Val.trunc(DstBitsPerElt); in combineVectorPack()
34245 Val = APInt::getNullValue(DstBitsPerElt); in combineVectorPack()
[all …]