27 LogicalResult matchAndRewrite(tosa::VariableOp op,
29 auto newVariable = rewriter.
create<mlir::ml_program::GlobalOp>(
30 op.getLoc(), op.getName(), op.getType(),
true,
31 op.getInitialValueAttr(),
nullptr);
32 newVariable.setPrivate();
33 rewriter.replaceOp(op, newVariable);
38 class VariableWriteOpConverter
43 LogicalResult matchAndRewrite(tosa::VariableWriteOp op,
45 auto globalSymbolRef =
47 auto newVariableWrite = rewriter.create<ml_program::GlobalStoreOp>(
48 op.getLoc(), globalSymbolRef, op.getValue());
49 rewriter.replaceOp(op, newVariableWrite);
54 class VariableReadOpConverter :
public OpRewritePattern<tosa::VariableReadOp> {
58 LogicalResult matchAndRewrite(tosa::VariableReadOp op,
60 auto globalSymbolRef =
62 auto newVariableRead = rewriter.create<ml_program::GlobalLoadOp>(
63 op.getLoc(), op.getType(), globalSymbolRef);
64 rewriter.replaceOp(op, newVariableRead);
74 patterns->
add<VariableOpConverter, VariableWriteOpConverter,
75 VariableReadOpConverter>(patterns->
getContext());
A special type of RewriterBase that coordinates the application of a rewrite pattern on the current I...
MLIRContext * getContext() const
RewritePatternSet & add(ConstructorArg &&arg, ConstructorArgs &&...args)
Add an instance of each of the pattern types 'Ts' to the pattern list with the given arguments.
static std::unique_ptr< T > create(Args &&...args)
This method provides a convenient interface for creating and initializing derived rewrite patterns of...
void populateTosaToMLProgramConversionPatterns(RewritePatternSet *patterns)
Include the generated interface declarations.
auto get(MLIRContext *context, Ts &&...params)
Helper method that injects context only if needed, this helps unify some of the attribute constructio...
OpRewritePattern is a wrapper around RewritePattern that allows for matching and rewriting against an...