Lines Matching defs:StoreVal
1214 /// Stores a sub-matrix \p StoreVal into the \p R x \p C matrix starting at \p
1216 void storeMatrix(const MatrixTy &StoreVal, Value *MatrixPtr,
1223 auto *TileTy = FixedVectorType::get(EltTy, StoreVal.getNumRows() *
1224 StoreVal.getNumColumns());
1226 storeMatrix(TileTy, StoreVal, TileStart, MAlign,
1230 /// Store matrix \p StoreVal starting at \p Ptr and using \p Stride between
1232 MatrixTy storeMatrix(Type *Ty, MatrixTy StoreVal, Value *Ptr,
1237 for (auto Vec : enumerate(StoreVal.vectors())) {
1242 Stride, StoreVal.getStride(), VType->getElementType(), Builder);
1249 return MatrixTy().addNumStores(getNumOps(StoreVal.getVectorTy()) *
1250 StoreVal.getNumVectors());
1257 auto StoreVal = getMatrix(Matrix, Shape, Builder);
1259 storeMatrix(Matrix->getType(), StoreVal, Ptr, A, Stride,