Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/lib/Target/X86/
DX86ISelLowering.cpp13656 unsigned ToSz = StVT.getVectorElementType().getSizeInBits(); in PerformSTORECombine() local
13659 if (!isPowerOf2_32(NumElems * FromSz * ToSz)) return SDValue(); in PerformSTORECombine()
13662 if (0 != (NumElems * FromSz) % ToSz) return SDValue(); in PerformSTORECombine()
13664 unsigned SizeRatio = FromSz / ToSz; in PerformSTORECombine()
13666 assert(SizeRatio * NumElems * ToSz == VT.getSizeInBits()); in PerformSTORECombine()
13692 if (TLI.isTypeLegal(Tp) && StoreType.getSizeInBits() < NumElems * ToSz) in PerformSTORECombine()
13707 for (unsigned i = 0; i < (ToSz*NumElems)/StoreType.getSizeInBits() ; i++) { in PerformSTORECombine()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/
DX86ISelLowering.cpp35831 unsigned ToSz = VT.getScalarSizeInBits(); in combineMaskedLoad() local
35834 assert (isPowerOf2_32(NumElems * FromSz * ToSz) && in combineMaskedLoad()
35837 unsigned SizeRatio = ToSz / FromSz; in combineMaskedLoad()
35965 unsigned ToSz = StVT.getScalarSizeInBits(); in combineMaskedStore() local
35977 assert (isPowerOf2_32(NumElems * FromSz * ToSz) && in combineMaskedStore()
35981 assert (((NumElems * FromSz) % ToSz) == 0 && in combineMaskedStore()
35984 unsigned SizeRatio = FromSz / ToSz; in combineMaskedStore()
35985 assert(SizeRatio * NumElems * ToSz == VT.getSizeInBits()); in combineMaskedStore()
36161 unsigned ToSz = StVT.getScalarSizeInBits(); in combineStore() local
36171 if (!isPowerOf2_32(NumElems * FromSz * ToSz)) return SDValue(); in combineStore()
[all …]