forked from llvm/llvm-project
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MLIR: Add ReplaceOpAction into DialectConversion and PatternMatch
- Loading branch information
1 parent
45c7a6b
commit af9dcbd
Showing
3 changed files
with
54 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#ifndef MLIR_IR_PATTERNMATCHACTION_H | ||
#define MLIR_IR_PATTERNMATCHACTION_H | ||
|
||
#include "mlir/IR/Action.h" | ||
|
||
namespace mlir { | ||
struct ReplaceOpAction : public tracing::ActionImpl<ReplaceOpAction> { | ||
using Base = tracing::ActionImpl<ReplaceOpAction>; | ||
ReplaceOpAction(ArrayRef<IRUnit> irUnits, ValueRange replacement); | ||
static constexpr StringLiteral tag = "op-replacement"; | ||
void print(raw_ostream &os) const override; | ||
|
||
Operation *getOp() const; | ||
|
||
public: | ||
ValueRange replacement; | ||
}; | ||
} | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters