MLIR  19.0.0git
Transforms.h
Go to the documentation of this file.
1 //===- Transforms.h - EmitC transformations as patterns --------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 
9 #ifndef MLIR_DIALECT_EMITC_TRANSFORMS_TRANSFORMS_H
10 #define MLIR_DIALECT_EMITC_TRANSFORMS_TRANSFORMS_H
11 
13 #include "mlir/IR/PatternMatch.h"
14 
15 namespace mlir {
16 namespace emitc {
17 
18 //===----------------------------------------------------------------------===//
19 // Expression transforms
20 //===----------------------------------------------------------------------===//
21 
22 ExpressionOp createExpression(Operation *op, OpBuilder &builder);
23 
24 //===----------------------------------------------------------------------===//
25 // Populate functions
26 //===----------------------------------------------------------------------===//
27 
28 /// Populates `patterns` with expression-related patterns.
29 void populateExpressionPatterns(RewritePatternSet &patterns);
30 
31 } // namespace emitc
32 } // namespace mlir
33 
34 #endif // MLIR_DIALECT_EMITC_TRANSFORMS_TRANSFORMS_H
void populateExpressionPatterns(RewritePatternSet &patterns)
Populates patterns with expression-related patterns.
Definition: Transforms.cpp:110
ExpressionOp createExpression(Operation *op, OpBuilder &builder)
Definition: Transforms.cpp:18
Include the generated interface declarations.