Home
last modified time | relevance | path

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

/external/llvm/lib/Target/X86/
DX86ISelLowering.cpp28985 unsigned ToSz = VT.getVectorElementType().getSizeInBits(); in combineMaskedLoad() local
28988 assert (isPowerOf2_32(NumElems * FromSz * ToSz) && in combineMaskedLoad()
28991 unsigned SizeRatio = ToSz / FromSz; in combineMaskedLoad()
29092 unsigned ToSz = StVT.getVectorElementType().getSizeInBits(); in combineMaskedStore() local
29104 assert (isPowerOf2_32(NumElems * FromSz * ToSz) && in combineMaskedStore()
29108 assert (((NumElems * FromSz) % ToSz) == 0 && in combineMaskedStore()
29111 unsigned SizeRatio = FromSz / ToSz; in combineMaskedStore()
29112 assert(SizeRatio * NumElems * ToSz == VT.getSizeInBits()); in combineMaskedStore()
29222 unsigned ToSz = StVT.getVectorElementType().getSizeInBits(); in combineStore() local
29232 if (!isPowerOf2_32(NumElems * FromSz * ToSz)) return SDValue(); in combineStore()
[all …]
/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()