Searched refs:FromSz (Results 1 – 2 of 2) sorted by relevance
28986 unsigned FromSz = LdVT.getVectorElementType().getSizeInBits(); in combineMaskedLoad() local28988 assert (isPowerOf2_32(NumElems * FromSz * ToSz) && in combineMaskedLoad()28991 unsigned SizeRatio = ToSz / FromSz; in combineMaskedLoad()28992 assert(SizeRatio * NumElems * FromSz == VT.getSizeInBits()); in combineMaskedLoad()29091 unsigned FromSz = VT.getVectorElementType().getSizeInBits(); in combineMaskedStore() local29104 assert (isPowerOf2_32(NumElems * FromSz * ToSz) && in combineMaskedStore()29108 assert (((NumElems * FromSz) % ToSz) == 0 && in combineMaskedStore()29111 unsigned SizeRatio = FromSz / ToSz; in combineMaskedStore()29221 unsigned FromSz = VT.getVectorElementType().getSizeInBits(); in combineStore() local29232 if (!isPowerOf2_32(NumElems * FromSz * ToSz)) return SDValue(); in combineStore()[all …]
13655 unsigned FromSz = VT.getVectorElementType().getSizeInBits(); in PerformSTORECombine() local13659 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()