Lines Matching refs:loadOp
32 LogicalResult matchAndRewrite(OpTy loadOp,
36 void replaceOp(OpTy loadOp, SubViewOp subViewOp,
57 void LoadOpOfSubViewFolder<LoadOp>::replaceOp(LoadOp loadOp, in replaceOp() argument
61 rewriter.replaceOpWithNewOp<LoadOp>(loadOp, subViewOp.source(), in replaceOp()
67 vector::TransferReadOp loadOp, SubViewOp subViewOp, in replaceOp() argument
70 loadOp, loadOp.getVectorType(), subViewOp.source(), sourceIndices, in replaceOp()
71 loadOp.permutation_map(), loadOp.padding(), loadOp.maskedAttr()); in replaceOp()
142 LoadOpOfSubViewFolder<OpTy>::matchAndRewrite(OpTy loadOp, in matchAndRewrite() argument
144 auto subViewOp = loadOp.memref().template getDefiningOp<SubViewOp>(); in matchAndRewrite()
149 if (failed(resolveSourceIndices(loadOp.getLoc(), rewriter, subViewOp, in matchAndRewrite()
150 loadOp.indices(), sourceIndices))) in matchAndRewrite()
153 replaceOp(loadOp, subViewOp, sourceIndices, rewriter); in matchAndRewrite()