| //===- TestPatterns.cpp - Test dialect pattern driver ---------------------===// |
| // |
| // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| // See https://llvm.org/LICENSE.txt for license information. |
| // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
| // |
| //===----------------------------------------------------------------------===// |
| |
| #include "TestDialect.h" |
| #include "TestOps.h" |
| #include "TestTypes.h" |
| #include "mlir/Dialect/Arith/IR/Arith.h" |
| #include "mlir/Dialect/CommonFolders.h" |
| #include "mlir/Dialect/Func/IR/FuncOps.h" |
| #include "mlir/Dialect/Func/Transforms/FuncConversions.h" |
| #include "mlir/Dialect/SCF/Transforms/Patterns.h" |
| #include "mlir/Dialect/Tensor/IR/Tensor.h" |
| #include "mlir/IR/BuiltinAttributes.h" |
| #include "mlir/IR/Matchers.h" |
| #include "mlir/IR/Visitors.h" |
| #include "mlir/Pass/Pass.h" |
| #include "mlir/Transforms/DialectConversion.h" |
| #include "mlir/Transforms/FoldUtils.h" |
| #include "mlir/Transforms/GreedyPatternRewriteDriver.h" |
| #include "mlir/Transforms/WalkPatternRewriteDriver.h" |
| #include "llvm/ADT/ScopeExit.h" |
| #include <cstdint> |
| |
| using namespace mlir; |
| using namespace test; |
| |
| // Native function for testing NativeCodeCall |
| static Value chooseOperand(Value input1, Value input2, BoolAttr choice) { |
| return choice.getValue() ? input1 : input2; |
| } |
| |
| static void createOpI(PatternRewriter &rewriter, Location loc, Value input) { |
| OpI::create(rewriter, loc, input); |
| } |
| |
| static void handleNoResultOp(PatternRewriter &rewriter, |
| OpSymbolBindingNoResult op) { |
| // Turn the no result op to a one-result op. |
| OpSymbolBindingB::create(rewriter, op.getLoc(), op.getOperand().getType(), |
| op.getOperand()); |
| } |
| |
| static bool getFirstI32Result(Operation *op, Value &value) { |
| if (!Type(op->getResult(0).getType()).isSignlessInteger(32)) |
| return false; |
| value = op->getResult(0); |
| return true; |
| } |
| |
| static Value bindNativeCodeCallResult(Value value) { return value; } |
| |
| static SmallVector<Value, 2> bindMultipleNativeCodeCallResult(Value input1, |
| Value input2) { |
| return SmallVector<Value, 2>({input2, input1}); |
| } |
| |
| // Test that natives calls are only called once during rewrites. |
| // OpM_Test will return Pi, increased by 1 for each subsequent calls. |
| // This let us check the number of times OpM_Test was called by inspecting |
| // the returned value in the MLIR output. |
| static int64_t opMIncreasingValue = 314159265; |
| static Attribute opMTest(PatternRewriter &rewriter, Value val) { |
| int64_t i = opMIncreasingValue++; |
| return rewriter.getIntegerAttr(rewriter.getIntegerType(32), i); |
| } |
| |
| namespace { |
| #include "TestPatterns.inc" |
| } // namespace |
| |
| //===----------------------------------------------------------------------===// |
| // Test Reduce Pattern Interface |
| //===----------------------------------------------------------------------===// |
| |
| void test::populateTestReductionPatterns(RewritePatternSet &patterns) { |
| populateWithGenerated(patterns); |
| } |
| |
| //===----------------------------------------------------------------------===// |
| // Canonicalizer Driver. |
| //===----------------------------------------------------------------------===// |
| |
| namespace { |
| struct FoldingPattern : public RewritePattern { |
| public: |
| FoldingPattern(MLIRContext *context) |
| : RewritePattern(TestOpInPlaceFoldAnchor::getOperationName(), |
| /*benefit=*/1, context) {} |
| |
| LogicalResult matchAndRewrite(Operation *op, |
| PatternRewriter &rewriter) const override { |
| // Exercise createOrFold API for a single-result operation that is folded |
| // upon construction. The operation being created has an in-place folder, |
| // and it should be still present in the output. Furthermore, the folder |
| // should not crash when attempting to recover the (unchanged) operation |
| // result. |
| Value result = rewriter.createOrFold<TestOpInPlaceFold>( |
| op->getLoc(), rewriter.getIntegerType(32), op->getOperand(0)); |
| assert(result); |
| rewriter.replaceOp(op, result); |
| return success(); |
| } |
| }; |
| |
| /// This pattern creates a foldable operation at the entry point of the block. |
| /// This tests the situation where the operation folder will need to replace an |
| /// operation with a previously created constant that does not initially |
| /// dominate the operation to replace. |
| struct FolderInsertBeforePreviouslyFoldedConstantPattern |
| : public OpRewritePattern<TestCastOp> { |
| public: |
| using OpRewritePattern<TestCastOp>::OpRewritePattern; |
| |
| LogicalResult matchAndRewrite(TestCastOp op, |
| PatternRewriter &rewriter) const override { |
| if (!op->hasAttr("test_fold_before_previously_folded_op")) |
| return failure(); |
| rewriter.setInsertionPointToStart(op->getBlock()); |
| |
| auto constOp = arith::ConstantOp::create(rewriter, op.getLoc(), |
| rewriter.getBoolAttr(true)); |
| rewriter.replaceOpWithNewOp<TestCastOp>(op, rewriter.getI32Type(), |
| Value(constOp)); |
| return success(); |
| } |
| }; |
| |
| /// This pattern matches test.op_commutative2 with the first operand being |
| /// another test.op_commutative2 with a constant on the right side and fold it |
| /// away by propagating it as its result. This is intend to check that patterns |
| /// are applied after the commutative property moves constant to the right. |
| struct FolderCommutativeOp2WithConstant |
| : public OpRewritePattern<TestCommutative2Op> { |
| public: |
| using OpRewritePattern<TestCommutative2Op>::OpRewritePattern; |
| |
| LogicalResult matchAndRewrite(TestCommutative2Op op, |
| PatternRewriter &rewriter) const override { |
| auto operand = op->getOperand(0).getDefiningOp<TestCommutative2Op>(); |
| if (!operand) |
| return failure(); |
| Attribute constInput; |
| if (!matchPattern(operand->getOperand(1), m_Constant(&constInput))) |
| return failure(); |
| rewriter.replaceOp(op, operand->getOperand(1)); |
| return success(); |
| } |
| }; |
| |
| /// This pattern matches test.any_attr_of_i32_str ops. In case of an integer |
| /// attribute with value smaller than MaxVal, it increments the value by 1. |
| template <int MaxVal> |
| struct IncrementIntAttribute : public OpRewritePattern<AnyAttrOfOp> { |
| using OpRewritePattern<AnyAttrOfOp>::OpRewritePattern; |
| |
| LogicalResult matchAndRewrite(AnyAttrOfOp op, |
| PatternRewriter &rewriter) const override { |
| auto intAttr = dyn_cast<IntegerAttr>(op.getAttr()); |
| if (!intAttr) |
| return failure(); |
| int64_t val = intAttr.getInt(); |
| if (val >= MaxVal) |
| return failure(); |
| rewriter.modifyOpInPlace( |
| op, [&]() { op.setAttrAttr(rewriter.getI32IntegerAttr(val + 1)); }); |
| return success(); |
| } |
| }; |
| |
| /// This patterns adds an "eligible" attribute to "foo.maybe_eligible_op". |
| struct MakeOpEligible : public RewritePattern { |
| MakeOpEligible(MLIRContext *context) |
| : RewritePattern("foo.maybe_eligible_op", /*benefit=*/1, context) {} |
| |
| LogicalResult matchAndRewrite(Operation *op, |
| PatternRewriter &rewriter) const override { |
| if (op->hasAttr("eligible")) |
| return failure(); |
| rewriter.modifyOpInPlace( |
| op, [&]() { op->setAttr("eligible", rewriter.getUnitAttr()); }); |
| return success(); |
| } |
| }; |
| |
| /// This pattern hoists eligible ops out of a "test.one_region_op". |
| struct HoistEligibleOps : public OpRewritePattern<test::OneRegionOp> { |
| using OpRewritePattern<test::OneRegionOp>::OpRewritePattern; |
| |
| LogicalResult matchAndRewrite(test::OneRegionOp op, |
| PatternRewriter &rewriter) const override { |
| Operation *terminator = op.getRegion().front().getTerminator(); |
| Operation *toBeHoisted = terminator->getOperands()[0].getDefiningOp(); |
| if (toBeHoisted->getParentOp() != op) |
| return failure(); |
| if (!toBeHoisted->hasAttr("eligible")) |
| return failure(); |
| rewriter.moveOpBefore(toBeHoisted, op); |
| return success(); |
| } |
| }; |
| |
| struct FoldSignOpF32ToSI32 : public OpRewritePattern<test::SignOp> { |
| using OpRewritePattern<test::SignOp>::OpRewritePattern; |
| |
| LogicalResult matchAndRewrite(test::SignOp op, |
| PatternRewriter &rewriter) const override { |
| if (op->getNumOperands() != 1 || op->getNumResults() != 1) |
| return failure(); |
| |
| TypedAttr operandAttr; |
| matchPattern(op->getOperand(0), m_Constant(&operandAttr)); |
| if (!operandAttr) |
| return failure(); |
| |
| TypedAttr res = cast_or_null<TypedAttr>( |
| constFoldUnaryOp<FloatAttr, FloatAttr::ValueType, void, IntegerAttr>( |
| operandAttr, op.getType(), [](APFloat operand) -> APSInt { |
| static const APFloat zero(0.0f); |
| int operandSign = 0; |
| if (operand != zero) |
| operandSign = (operand < zero) ? -1 : +1; |
| return APSInt(APInt(32, operandSign), false); |
| })); |
| if (!res) |
| return failure(); |
| |
| rewriter.replaceOpWithNewOp<arith::ConstantOp>(op, res); |
| return success(); |
| } |
| }; |
| |
| struct FoldLessThanOpF32ToI1 : public OpRewritePattern<test::LessThanOp> { |
| using OpRewritePattern<test::LessThanOp>::OpRewritePattern; |
| |
| LogicalResult matchAndRewrite(test::LessThanOp op, |
| PatternRewriter &rewriter) const override { |
| if (op->getNumOperands() != 2 || op->getNumResults() != 1) |
| return failure(); |
| |
| TypedAttr lhsAttr; |
| TypedAttr rhsAttr; |
| matchPattern(op->getOperand(0), m_Constant(&lhsAttr)); |
| matchPattern(op->getOperand(1), m_Constant(&rhsAttr)); |
| |
| if (!lhsAttr || !rhsAttr) |
| return failure(); |
| |
| Attribute operandAttrs[2] = {lhsAttr, rhsAttr}; |
| TypedAttr res = cast_or_null<TypedAttr>( |
| constFoldBinaryOp<FloatAttr, FloatAttr::ValueType, void, IntegerAttr>( |
| operandAttrs, op.getType(), [](APFloat lhs, APFloat rhs) -> APInt { |
| return APInt(1, lhs < rhs); |
| })); |
| if (!res) |
| return failure(); |
| |
| rewriter.replaceOpWithNewOp<arith::ConstantOp>(op, res); |
| return success(); |
| } |
| }; |
| |
| /// This pattern moves "test.move_before_parent_op" before the parent op. |
| struct MoveBeforeParentOp : public RewritePattern { |
| MoveBeforeParentOp(MLIRContext *context) |
| : RewritePattern("test.move_before_parent_op", /*benefit=*/1, context) {} |
| |
| LogicalResult matchAndRewrite(Operation *op, |
| PatternRewriter &rewriter) const override { |
| // Do not hoist past functions. |
| if (isa<FunctionOpInterface>(op->getParentOp())) |
| return failure(); |
| rewriter.moveOpBefore(op, op->getParentOp()); |
| return success(); |
| } |
| }; |
| |
| /// This pattern moves "test.move_after_parent_op" after the parent op. |
| struct MoveAfterParentOp : public RewritePattern { |
| MoveAfterParentOp(MLIRContext *context) |
| : RewritePattern("test.move_after_parent_op", /*benefit=*/1, context) {} |
| |
| LogicalResult matchAndRewrite(Operation *op, |
| PatternRewriter &rewriter) const override { |
| // Do not hoist past functions. |
| if (isa<FunctionOpInterface>(op->getParentOp())) |
| return failure(); |
| |
| int64_t moveForwardBy = 0; |
| if (auto advanceBy = op->getAttrOfType<IntegerAttr>("advance")) |
| moveForwardBy = advanceBy.getInt(); |
| |
| Operation *moveAfter = op->getParentOp(); |
| for (int64_t i = 0; i < moveForwardBy; ++i) |
| moveAfter = moveAfter->getNextNode(); |
| |
| rewriter.moveOpAfter(op, moveAfter); |
| return success(); |
| } |
| }; |
| |
| /// This pattern inlines blocks that are nested in |
| /// "test.inline_blocks_into_parent" into the parent block. |
| struct InlineBlocksIntoParent : public RewritePattern { |
| InlineBlocksIntoParent(MLIRContext *context) |
| : RewritePattern("test.inline_blocks_into_parent", /*benefit=*/1, |
| context) {} |
| |
| LogicalResult matchAndRewrite(Operation *op, |
| PatternRewriter &rewriter) const override { |
| bool changed = false; |
| for (Region &r : op->getRegions()) { |
| while (!r.empty()) { |
| rewriter.inlineBlockBefore(&r.front(), op); |
| changed = true; |
| } |
| } |
| return success(changed); |
| } |
| }; |
| |
| /// This pattern splits blocks at "test.split_block_here" and replaces the op |
| /// with a new op (to prevent an infinite loop of block splitting). |
| struct SplitBlockHere : public RewritePattern { |
| SplitBlockHere(MLIRContext *context) |
| : RewritePattern("test.split_block_here", /*benefit=*/1, context) {} |
| |
| LogicalResult matchAndRewrite(Operation *op, |
| PatternRewriter &rewriter) const override { |
| rewriter.splitBlock(op->getBlock(), op->getIterator()); |
| Operation *newOp = rewriter.create( |
| op->getLoc(), |
| OperationName("test.new_op", op->getContext()).getIdentifier(), |
| op->getOperands(), op->getResultTypes()); |
| rewriter.replaceOp(op, newOp); |
| return success(); |
| } |
| }; |
| |
| /// This pattern clones "test.clone_me" ops. |
| struct CloneOp : public RewritePattern { |
| CloneOp(MLIRContext *context) |
| : RewritePattern("test.clone_me", /*benefit=*/1, context) {} |
| |
| LogicalResult matchAndRewrite(Operation *op, |
| PatternRewriter &rewriter) const override { |
| // Do not clone already cloned ops to avoid going into an infinite loop. |
| if (op->hasAttr("was_cloned")) |
| return failure(); |
| Operation *cloned = rewriter.clone(*op); |
| cloned->setAttr("was_cloned", rewriter.getUnitAttr()); |
| return success(); |
| } |
| }; |
| |
| /// This pattern clones regions of "test.clone_region_before" ops before the |
| /// parent block. |
| struct CloneRegionBeforeOp : public RewritePattern { |
| CloneRegionBeforeOp(MLIRContext *context) |
| : RewritePattern("test.clone_region_before", /*benefit=*/1, context) {} |
| |
| LogicalResult matchAndRewrite(Operation *op, |
| PatternRewriter &rewriter) const override { |
| // Do not clone already cloned ops to avoid going into an infinite loop. |
| if (op->hasAttr("was_cloned")) |
| return failure(); |
| for (Region &r : op->getRegions()) |
| rewriter.cloneRegionBefore(r, op->getBlock()); |
| op->setAttr("was_cloned", rewriter.getUnitAttr()); |
| return success(); |
| } |
| }; |
| |
| /// Replace an operation may introduce the re-visiting of its users. |
| class ReplaceWithNewOp : public RewritePattern { |
| public: |
| ReplaceWithNewOp(MLIRContext *context) |
| : RewritePattern("test.replace_with_new_op", /*benefit=*/1, context) {} |
| |
| LogicalResult matchAndRewrite(Operation *op, |
| PatternRewriter &rewriter) const override { |
| Operation *newOp; |
| if (op->hasAttr("create_erase_op")) { |
| newOp = rewriter.create( |
| op->getLoc(), |
| OperationName("test.erase_op", op->getContext()).getIdentifier(), |
| ValueRange(), TypeRange()); |
| } else { |
| newOp = rewriter.create( |
| op->getLoc(), |
| OperationName("test.new_op", op->getContext()).getIdentifier(), |
| op->getOperands(), op->getResultTypes()); |
| } |
| // "replaceOp" could be used instead of "replaceAllOpUsesWith"+"eraseOp". |
| // A "notifyOperationReplaced" callback is triggered in either case. |
| rewriter.replaceAllOpUsesWith(op, newOp->getResults()); |
| rewriter.eraseOp(op); |
| return success(); |
| } |
| }; |
| |
| /// Erases the first child block of the matched "test.erase_first_block" |
| /// operation. |
| class EraseFirstBlock : public RewritePattern { |
| public: |
| EraseFirstBlock(MLIRContext *context) |
| : RewritePattern("test.erase_first_block", /*benefit=*/1, context) {} |
| |
| LogicalResult matchAndRewrite(Operation *op, |
| PatternRewriter &rewriter) const override { |
| for (Region &r : op->getRegions()) { |
| for (Block &b : r.getBlocks()) { |
| rewriter.eraseBlock(&b); |
| return success(); |
| } |
| } |
| |
| return failure(); |
| } |
| }; |
| |
| struct TestGreedyPatternDriver |
| : public PassWrapper<TestGreedyPatternDriver, OperationPass<>> { |
| MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(TestGreedyPatternDriver) |
| |
| TestGreedyPatternDriver() = default; |
| TestGreedyPatternDriver(const TestGreedyPatternDriver &other) |
| : PassWrapper(other) {} |
| |
| StringRef getArgument() const final { return "test-greedy-patterns"; } |
| StringRef getDescription() const final { return "Run test dialect patterns"; } |
| void runOnOperation() override { |
| mlir::RewritePatternSet patterns(&getContext()); |
| populateWithGenerated(patterns); |
| |
| // Verify named pattern is generated with expected name. |
| patterns.add<FoldingPattern, TestNamedPatternRule, |
| FolderInsertBeforePreviouslyFoldedConstantPattern, |
| FolderCommutativeOp2WithConstant, HoistEligibleOps, |
| MakeOpEligible>(&getContext()); |
| |
| // Additional patterns for testing the GreedyPatternRewriteDriver. |
| patterns.insert<IncrementIntAttribute<3>>(&getContext()); |
| |
| GreedyRewriteConfig config; |
| config.setUseTopDownTraversal(useTopDownTraversal) |
| .setMaxIterations(this->maxIterations) |
| .enableFolding(this->fold) |
| .enableConstantCSE(this->cseConstants); |
| (void)applyPatternsGreedily(getOperation(), std::move(patterns), config); |
| } |
| |
| Option<bool> useTopDownTraversal{ |
| *this, "top-down", |
| llvm::cl::desc("Seed the worklist in general top-down order"), |
| llvm::cl::init(GreedyRewriteConfig().getUseTopDownTraversal())}; |
| Option<int> maxIterations{ |
| *this, "max-iterations", |
| llvm::cl::desc("Max. iterations in the GreedyRewriteConfig"), |
| llvm::cl::init(GreedyRewriteConfig().getMaxIterations())}; |
| Option<bool> fold{*this, "fold", llvm::cl::desc("Whether to fold"), |
| llvm::cl::init(GreedyRewriteConfig().isFoldingEnabled())}; |
| Option<bool> cseConstants{ |
| *this, "cse-constants", llvm::cl::desc("Whether to CSE constants"), |
| llvm::cl::init(GreedyRewriteConfig().isConstantCSEEnabled())}; |
| }; |
| |
| struct DumpNotifications : public RewriterBase::Listener { |
| void notifyBlockInserted(Block *block, Region *previous, |
| Region::iterator previousIt) override { |
| llvm::outs() << "notifyBlockInserted"; |
| if (block->getParentOp()) { |
| llvm::outs() << " into " << block->getParentOp()->getName() << ": "; |
| } else { |
| llvm::outs() << " into unknown op: "; |
| } |
| if (previous == nullptr) { |
| llvm::outs() << "was unlinked\n"; |
| } else { |
| llvm::outs() << "was linked\n"; |
| } |
| } |
| void notifyOperationInserted(Operation *op, |
| OpBuilder::InsertPoint previous) override { |
| llvm::outs() << "notifyOperationInserted: " << op->getName(); |
| if (!previous.isSet()) { |
| llvm::outs() << ", was unlinked\n"; |
| } else { |
| if (!previous.getPoint().getNodePtr()) { |
| llvm::outs() << ", was linked, exact position unknown\n"; |
| } else if (previous.getPoint() == previous.getBlock()->end()) { |
| llvm::outs() << ", was last in block\n"; |
| } else { |
| llvm::outs() << ", previous = " << previous.getPoint()->getName() |
| << "\n"; |
| } |
| } |
| } |
| void notifyBlockErased(Block *block) override { |
| llvm::outs() << "notifyBlockErased\n"; |
| } |
| void notifyOperationErased(Operation *op) override { |
| llvm::outs() << "notifyOperationErased: " << op->getName() << "\n"; |
| } |
| void notifyOperationModified(Operation *op) override { |
| llvm::outs() << "notifyOperationModified: " << op->getName() << "\n"; |
| } |
| void notifyOperationReplaced(Operation *op, ValueRange values) override { |
| llvm::outs() << "notifyOperationReplaced: " << op->getName() << "\n"; |
| } |
| }; |
| |
| struct TestStrictPatternDriver |
| : public PassWrapper<TestStrictPatternDriver, OperationPass<func::FuncOp>> { |
| public: |
| MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(TestStrictPatternDriver) |
| |
| TestStrictPatternDriver() = default; |
| TestStrictPatternDriver(const TestStrictPatternDriver &other) |
| : PassWrapper(other) { |
| strictMode = other.strictMode; |
| } |
| |
| StringRef getArgument() const final { return "test-strict-pattern-driver"; } |
| StringRef getDescription() const final { |
| return "Test strict mode of pattern driver"; |
| } |
| |
| void runOnOperation() override { |
| MLIRContext *ctx = &getContext(); |
| mlir::RewritePatternSet patterns(ctx); |
| patterns.add< |
| // clang-format off |
| ChangeBlockOp, |
| CloneOp, |
| CloneRegionBeforeOp, |
| EraseOp, |
| ImplicitChangeOp, |
| InlineBlocksIntoParent, |
| InsertSameOp, |
| MoveBeforeParentOp, |
| ReplaceWithNewOp, |
| SplitBlockHere |
| // clang-format on |
| >(ctx); |
| SmallVector<Operation *> ops; |
| getOperation()->walk([&](Operation *op) { |
| StringRef opName = op->getName().getStringRef(); |
| if (opName == "test.insert_same_op" || opName == "test.change_block_op" || |
| opName == "test.replace_with_new_op" || opName == "test.erase_op" || |
| opName == "test.move_before_parent_op" || |
| opName == "test.inline_blocks_into_parent" || |
| opName == "test.split_block_here" || opName == "test.clone_me" || |
| opName == "test.clone_region_before") { |
| ops.push_back(op); |
| } |
| }); |
| |
| DumpNotifications dumpNotifications; |
| GreedyRewriteConfig config; |
| config.setListener(&dumpNotifications); |
| if (strictMode == "AnyOp") { |
| config.setStrictness(GreedyRewriteStrictness::AnyOp); |
| } else if (strictMode == "ExistingAndNewOps") { |
| config.setStrictness(GreedyRewriteStrictness::ExistingAndNewOps); |
| } else if (strictMode == "ExistingOps") { |
| config.setStrictness(GreedyRewriteStrictness::ExistingOps); |
| } else { |
| llvm_unreachable("invalid strictness option"); |
| } |
| |
| // Check if these transformations introduce visiting of operations that |
| // are not in the `ops` set (The new created ops are valid). An invalid |
| // operation will trigger the assertion while processing. |
| bool changed = false; |
| bool allErased = false; |
| (void)applyOpPatternsGreedily(ArrayRef(ops), std::move(patterns), config, |
| &changed, &allErased); |
| Builder b(ctx); |
| getOperation()->setAttr("pattern_driver_changed", b.getBoolAttr(changed)); |
| getOperation()->setAttr("pattern_driver_all_erased", |
| b.getBoolAttr(allErased)); |
| } |
| |
| Option<std::string> strictMode{ |
| *this, "strictness", |
| llvm::cl::desc("Can be {AnyOp, ExistingAndNewOps, ExistingOps}"), |
| llvm::cl::init("AnyOp")}; |
| |
| private: |
| // New inserted operation is valid for further transformation. |
| class InsertSameOp : public RewritePattern { |
| public: |
| InsertSameOp(MLIRContext *context) |
| : RewritePattern("test.insert_same_op", /*benefit=*/1, context) {} |
| |
| LogicalResult matchAndRewrite(Operation *op, |
| PatternRewriter &rewriter) const override { |
| if (op->hasAttr("skip")) |
| return failure(); |
| |
| Operation *newOp = |
| rewriter.create(op->getLoc(), op->getName().getIdentifier(), |
| op->getOperands(), op->getResultTypes()); |
| rewriter.modifyOpInPlace( |
| op, [&]() { op->setAttr("skip", rewriter.getBoolAttr(true)); }); |
| newOp->setAttr("skip", rewriter.getBoolAttr(true)); |
| |
| return success(); |
| } |
| }; |
| |
| // Remove an operation may introduce the re-visiting of its operands. |
| class EraseOp : public RewritePattern { |
| public: |
| EraseOp(MLIRContext *context) |
| : RewritePattern("test.erase_op", /*benefit=*/1, context) {} |
| LogicalResult matchAndRewrite(Operation *op, |
| PatternRewriter &rewriter) const override { |
| rewriter.eraseOp(op); |
| return success(); |
| } |
| }; |
| |
| // The following two patterns test RewriterBase::replaceAllUsesWith. |
| // |
| // That function replaces all usages of a Block (or a Value) with another one |
| // *and tracks these changes in the rewriter.* The GreedyPatternRewriteDriver |
| // with GreedyRewriteStrictness::AnyOp uses that tracking to construct its |
| // worklist: when an op is modified, it is added to the worklist. The two |
| // patterns below make the tracking observable: ChangeBlockOp replaces all |
| // usages of a block and that pattern is applied because the corresponding ops |
| // are put on the initial worklist (see above). ImplicitChangeOp does an |
| // unrelated change but ops of the corresponding type are *not* on the initial |
| // worklist, so the effect of the second pattern is only visible if the |
| // tracking and subsequent adding to the worklist actually works. |
| |
| // Replace all usages of the first successor with the second successor. |
| class ChangeBlockOp : public RewritePattern { |
| public: |
| ChangeBlockOp(MLIRContext *context) |
| : RewritePattern("test.change_block_op", /*benefit=*/1, context) {} |
| LogicalResult matchAndRewrite(Operation *op, |
| PatternRewriter &rewriter) const override { |
| if (op->getNumSuccessors() < 2) |
| return failure(); |
| Block *firstSuccessor = op->getSuccessor(0); |
| Block *secondSuccessor = op->getSuccessor(1); |
| if (firstSuccessor == secondSuccessor) |
| return failure(); |
| // This is the function being tested: |
| rewriter.replaceAllUsesWith(firstSuccessor, secondSuccessor); |
| // Using the following line instead would make the test fail: |
| // firstSuccessor->replaceAllUsesWith(secondSuccessor); |
| return success(); |
| } |
| }; |
| |
| // Changes the successor to the parent block. |
| class ImplicitChangeOp : public RewritePattern { |
| public: |
| ImplicitChangeOp(MLIRContext *context) |
| : RewritePattern("test.implicit_change_op", /*benefit=*/1, context) {} |
| LogicalResult matchAndRewrite(Operation *op, |
| PatternRewriter &rewriter) const override { |
| if (op->getNumSuccessors() < 1 || op->getSuccessor(0) == op->getBlock()) |
| return failure(); |
| rewriter.modifyOpInPlace(op, |
| [&]() { op->setSuccessor(op->getBlock(), 0); }); |
| return success(); |
| } |
| }; |
| }; |
| |
| struct TestWalkPatternDriver final |
| : PassWrapper<TestWalkPatternDriver, OperationPass<>> { |
| MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(TestWalkPatternDriver) |
| |
| TestWalkPatternDriver() = default; |
| TestWalkPatternDriver(const TestWalkPatternDriver &other) |
| : PassWrapper(other) {} |
| |
| StringRef getArgument() const override { |
| return "test-walk-pattern-rewrite-driver"; |
| } |
| StringRef getDescription() const override { |
| return "Run test walk pattern rewrite driver"; |
| } |
| void runOnOperation() override { |
| mlir::RewritePatternSet patterns(&getContext()); |
| |
| // Patterns for testing the WalkPatternRewriteDriver. |
| patterns.add<IncrementIntAttribute<3>, MoveBeforeParentOp, |
| MoveAfterParentOp, CloneOp, ReplaceWithNewOp, EraseFirstBlock>( |
| &getContext()); |
| |
| DumpNotifications dumpListener; |
| walkAndApplyPatterns(getOperation(), std::move(patterns), |
| dumpNotifications ? &dumpListener : nullptr); |
| } |
| |
| Option<bool> dumpNotifications{ |
| *this, "dump-notifications", |
| llvm::cl::desc("Print rewrite listener notifications"), |
| llvm::cl::init(false)}; |
| }; |
| |
| } // namespace |
| |
| //===----------------------------------------------------------------------===// |
| // ReturnType Driver. |
| //===----------------------------------------------------------------------===// |
| |
| namespace { |
| // Generate ops for each instance where the type can be successfully inferred. |
| template <typename OpTy> |
| static void invokeCreateWithInferredReturnType(Operation *op) { |
| auto *context = op->getContext(); |
| auto fop = op->getParentOfType<func::FuncOp>(); |
| auto location = UnknownLoc::get(context); |
| OpBuilder b(op); |
| b.setInsertionPointAfter(op); |
| |
| // Use permutations of 2 args as operands. |
| assert(fop.getNumArguments() >= 2); |
| for (int i = 0, e = fop.getNumArguments(); i < e; ++i) { |
| for (int j = 0; j < e; ++j) { |
| std::array<Value, 2> values = {{fop.getArgument(i), fop.getArgument(j)}}; |
| SmallVector<Type, 2> inferredReturnTypes; |
| if (succeeded(OpTy::inferReturnTypes( |
| context, std::nullopt, values, op->getDiscardableAttrDictionary(), |
| op->getPropertiesStorage(), op->getRegions(), |
| inferredReturnTypes))) { |
| OperationState state(location, OpTy::getOperationName()); |
| // TODO: Expand to regions. |
| OpTy::build(b, state, values, op->getAttrs()); |
| (void)b.create(state); |
| } |
| } |
| } |
| } |
| |
| static void reifyReturnShape(Operation *op) { |
| OpBuilder b(op); |
| |
| // Use permutations of 2 args as operands. |
| auto shapedOp = cast<OpWithShapedTypeInferTypeInterfaceOp>(op); |
| SmallVector<Value, 2> shapes; |
| if (failed(shapedOp.reifyReturnTypeShapes(b, op->getOperands(), shapes)) || |
| !llvm::hasSingleElement(shapes)) |
| return; |
| for (const auto &it : llvm::enumerate(shapes)) { |
| op->emitRemark() << "value " << it.index() << ": " |
| << it.value().getDefiningOp(); |
| } |
| } |
| |
| struct TestReturnTypeDriver |
| : public PassWrapper<TestReturnTypeDriver, OperationPass<func::FuncOp>> { |
| MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(TestReturnTypeDriver) |
| |
| void getDependentDialects(DialectRegistry ®istry) const override { |
| registry.insert<tensor::TensorDialect>(); |
| } |
| StringRef getArgument() const final { return "test-return-type"; } |
| StringRef getDescription() const final { return "Run return type functions"; } |
| |
| void runOnOperation() override { |
| if (getOperation().getName() == "testCreateFunctions") { |
| std::vector<Operation *> ops; |
| // Collect ops to avoid triggering on inserted ops. |
| for (auto &op : getOperation().getBody().front()) |
| ops.push_back(&op); |
| // Generate test patterns for each, but skip terminator. |
| for (auto *op : llvm::ArrayRef(ops).drop_back()) { |
| // Test create method of each of the Op classes below. The resultant |
| // output would be in reverse order underneath `op` from which |
| // the attributes and regions are used. |
| invokeCreateWithInferredReturnType<OpWithInferTypeInterfaceOp>(op); |
| invokeCreateWithInferredReturnType<OpWithInferTypeAdaptorInterfaceOp>( |
| op); |
| invokeCreateWithInferredReturnType< |
| OpWithShapedTypeInferTypeInterfaceOp>(op); |
| }; |
| return; |
| } |
| if (getOperation().getName() == "testReifyFunctions") { |
| std::vector<Operation *> ops; |
| // Collect ops to avoid triggering on inserted ops. |
| for (auto &op : getOperation().getBody().front()) |
| if (isa<OpWithShapedTypeInferTypeInterfaceOp>(op)) |
| ops.push_back(&op); |
| // Generate test patterns for each, but skip terminator. |
| for (auto *op : ops) |
| reifyReturnShape(op); |
| } |
| } |
| }; |
| } // namespace |
| |
| namespace { |
| struct TestDerivedAttributeDriver |
| : public PassWrapper<TestDerivedAttributeDriver, |
| OperationPass<func::FuncOp>> { |
| MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(TestDerivedAttributeDriver) |
| |
| StringRef getArgument() const final { return "test-derived-attr"; } |
| StringRef getDescription() const final { |
| return "Run test derived attributes"; |
| } |
| void runOnOperation() override; |
| }; |
| } // namespace |
| |
| void TestDerivedAttributeDriver::runOnOperation() { |
| getOperation().walk([](DerivedAttributeOpInterface dOp) { |
| auto dAttr = dOp.materializeDerivedAttributes(); |
| if (!dAttr) |
| return; |
| for (auto d : dAttr) |
| dOp.emitRemark() << d.getName().getValue() << " = " << d.getValue(); |
| }); |
| } |
| |
| //===----------------------------------------------------------------------===// |
| // Legalization Driver. |
| //===----------------------------------------------------------------------===// |
| |
| namespace { |
| //===----------------------------------------------------------------------===// |
| // Region-Block Rewrite Testing |
| //===----------------------------------------------------------------------===// |
| |
| /// This pattern applies a signature conversion to a block inside a detached |
| /// region. |
| struct TestDetachedSignatureConversion : public ConversionPattern { |
| TestDetachedSignatureConversion(MLIRContext *ctx) |
| : ConversionPattern("test.detached_signature_conversion", /*benefit=*/1, |
| ctx) {} |
| |
| LogicalResult |
| matchAndRewrite(Operation *op, ArrayRef<Value> operands, |
| ConversionPatternRewriter &rewriter) const final { |
| if (op->getNumRegions() != 1) |
| return failure(); |
| OperationState state(op->getLoc(), "test.legal_op", operands, |
| op->getResultTypes(), {}, BlockRange()); |
| Region *newRegion = state.addRegion(); |
| rewriter.inlineRegionBefore(op->getRegion(0), *newRegion, |
| newRegion->begin()); |
| TypeConverter::SignatureConversion result(newRegion->getNumArguments()); |
| for (unsigned i = 0, e = newRegion->getNumArguments(); i < e; ++i) |
| result.addInputs(i, rewriter.getF64Type()); |
| rewriter.applySignatureConversion(&newRegion->front(), result); |
| Operation *newOp = rewriter.create(state); |
| rewriter.replaceOp(op, newOp->getResults()); |
| return success(); |
| } |
| }; |
| |
| /// This pattern is a simple pattern that inlines the first region of a given |
| /// operation into the parent region. |
| struct TestRegionRewriteBlockMovement : public ConversionPattern { |
| TestRegionRewriteBlockMovement(MLIRContext *ctx) |
| : ConversionPattern("test.region", 1, ctx) {} |
| |
| LogicalResult |
| matchAndRewrite(Operation *op, ArrayRef<Value> operands, |
| ConversionPatternRewriter &rewriter) const final { |
| // Inline this region into the parent region. |
| auto &parentRegion = *op->getParentRegion(); |
| auto &opRegion = op->getRegion(0); |
| if (op->getDiscardableAttr("legalizer.should_clone")) |
| rewriter.cloneRegionBefore(opRegion, parentRegion, parentRegion.end()); |
| else |
| rewriter.inlineRegionBefore(opRegion, parentRegion, parentRegion.end()); |
| |
| if (op->getDiscardableAttr("legalizer.erase_old_blocks")) { |
| while (!opRegion.empty()) |
| rewriter.eraseBlock(&opRegion.front()); |
| } |
| |
| // Drop this operation. |
| rewriter.eraseOp(op); |
| return success(); |
| } |
| }; |
| /// This pattern is a simple pattern that generates a region containing an |
| /// illegal operation. |
| struct TestRegionRewriteUndo : public RewritePattern { |
| TestRegionRewriteUndo(MLIRContext *ctx) |
| : RewritePattern("test.region_builder", 1, ctx) {} |
| |
| LogicalResult matchAndRewrite(Operation *op, |
| PatternRewriter &rewriter) const final { |
| // Create the region operation with an entry block containing arguments. |
| OperationState newRegion(op->getLoc(), "test.region"); |
| newRegion.addRegion(); |
| auto *regionOp = rewriter.create(newRegion); |
| auto *entryBlock = rewriter.createBlock(®ionOp->getRegion(0)); |
| entryBlock->addArgument(rewriter.getIntegerType(64), |
| rewriter.getUnknownLoc()); |
| |
| // Add an explicitly illegal operation to ensure the conversion fails. |
| ILLegalOpF::create(rewriter, op->getLoc(), rewriter.getIntegerType(32)); |
| TestValidOp::create(rewriter, op->getLoc(), ArrayRef<Value>()); |
| |
| // Drop this operation. |
| rewriter.eraseOp(op); |
| return success(); |
| } |
| }; |
| /// A simple pattern that creates a block at the end of the parent region of the |
| /// matched operation. |
| struct TestCreateBlock : public RewritePattern { |
| TestCreateBlock(MLIRContext *ctx) |
| : RewritePattern("test.create_block", /*benefit=*/1, ctx) {} |
| |
| LogicalResult matchAndRewrite(Operation *op, |
| PatternRewriter &rewriter) const final { |
| Region ®ion = *op->getParentRegion(); |
| Type i32Type = rewriter.getIntegerType(32); |
| Location loc = op->getLoc(); |
| rewriter.createBlock(®ion, region.end(), {i32Type, i32Type}, {loc, loc}); |
| TerminatorOp::create(rewriter, loc); |
| rewriter.eraseOp(op); |
| return success(); |
| } |
| }; |
| |
| /// A simple pattern that creates a block containing an invalid operation in |
| /// order to trigger the block creation undo mechanism. |
| struct TestCreateIllegalBlock : public RewritePattern { |
| TestCreateIllegalBlock(MLIRContext *ctx) |
| : RewritePattern("test.create_illegal_block", /*benefit=*/1, ctx) {} |
| |
| LogicalResult matchAndRewrite(Operation *op, |
| PatternRewriter &rewriter) const final { |
| Region ®ion = *op->getParentRegion(); |
| Type i32Type = rewriter.getIntegerType(32); |
| Location loc = op->getLoc(); |
| rewriter.createBlock(®ion, region.end(), {i32Type, i32Type}, {loc, loc}); |
| // Create an illegal op to ensure the conversion fails. |
| ILLegalOpF::create(rewriter, loc, i32Type); |
| TerminatorOp::create(rewriter, loc); |
| rewriter.eraseOp(op); |
| return success(); |
| } |
| }; |
| |
| /// A simple pattern that tests the "replaceAllUsesWith" API. |
| struct TestValueReplace : public ConversionPattern { |
| TestValueReplace(MLIRContext *ctx, const TypeConverter &converter) |
| : ConversionPattern(converter, "test.value_replace", /*benefit=*/1, ctx) { |
| } |
| |
| LogicalResult |
| matchAndRewrite(Operation *op, ArrayRef<ValueRange> operands, |
| ConversionPatternRewriter &rewriter) const final { |
| // Replace the first operand with 2x the second operand. |
| Value from = op->getOperand(0); |
| Value repl = op->getOperand(1); |
| rewriter.replaceAllUsesWith(from, {repl, repl}); |
| rewriter.modifyOpInPlace(op, [&] { |
| // If the "trigger_rollback" attribute is set, keep the op illegal, so |
| // that a rollback is triggered. |
| if (!op->hasAttr("trigger_rollback")) |
| op->setAttr("is_legal", rewriter.getUnitAttr()); |
| }); |
| return success(); |
| } |
| }; |
| |
| /// This pattern hoists ops out of a "test.hoist_me" and then fails conversion. |
| /// This is to test the rollback logic. |
| struct TestUndoMoveOpBefore : public ConversionPattern { |
| TestUndoMoveOpBefore(MLIRContext *ctx) |
| : ConversionPattern("test.hoist_me", /*benefit=*/1, ctx) {} |
| |
| LogicalResult |
| matchAndRewrite(Operation *op, ArrayRef<Value> operands, |
| ConversionPatternRewriter &rewriter) const override { |
| rewriter.moveOpBefore(op, op->getParentOp()); |
| // Replace with an illegal op to ensure the conversion fails. |
| rewriter.replaceOpWithNewOp<ILLegalOpF>(op, rewriter.getF32Type()); |
| return success(); |
| } |
| }; |
| |
| /// A rewrite pattern that tests the undo mechanism when erasing a block. |
| struct TestUndoBlockErase : public ConversionPattern { |
| TestUndoBlockErase(MLIRContext *ctx) |
| : ConversionPattern("test.undo_block_erase", /*benefit=*/1, ctx) {} |
| |
| LogicalResult |
| matchAndRewrite(Operation *op, ArrayRef<Value> operands, |
| ConversionPatternRewriter &rewriter) const final { |
| Block *secondBlock = &*std::next(op->getRegion(0).begin()); |
| rewriter.setInsertionPointToStart(secondBlock); |
| ILLegalOpF::create(rewriter, op->getLoc(), rewriter.getF32Type()); |
| rewriter.eraseBlock(secondBlock); |
| rewriter.modifyOpInPlace(op, [] {}); |
| return success(); |
| } |
| }; |
| |
| /// A pattern that modifies a property in-place, but keeps the op illegal. |
| struct TestUndoPropertiesModification : public ConversionPattern { |
| TestUndoPropertiesModification(MLIRContext *ctx) |
| : ConversionPattern("test.with_properties", /*benefit=*/1, ctx) {} |
| LogicalResult |
| matchAndRewrite(Operation *op, ArrayRef<Value> operands, |
| ConversionPatternRewriter &rewriter) const final { |
| if (!op->hasAttr("modify_inplace")) |
| return failure(); |
| rewriter.modifyOpInPlace( |
| op, [&]() { cast<TestOpWithProperties>(op).getProperties().setA(42); }); |
| return success(); |
| } |
| }; |
| |
| //===----------------------------------------------------------------------===// |
| // Type-Conversion Rewrite Testing |
| //===----------------------------------------------------------------------===// |
| |
| /// This patterns erases a region operation that has had a type conversion. |
| struct TestDropOpSignatureConversion : public ConversionPattern { |
| TestDropOpSignatureConversion(MLIRContext *ctx, |
| const TypeConverter &converter) |
| : ConversionPattern(converter, "test.drop_region_op", 1, ctx) {} |
| LogicalResult |
| matchAndRewrite(Operation *op, ArrayRef<Value> operands, |
| ConversionPatternRewriter &rewriter) const override { |
| Region ®ion = op->getRegion(0); |
| Block *entry = ®ion.front(); |
| |
| // Convert the original entry arguments. |
| const TypeConverter &converter = *getTypeConverter(); |
| TypeConverter::SignatureConversion result(entry->getNumArguments()); |
| if (failed(converter.convertSignatureArgs(entry->getArgumentTypes(), |
| result)) || |
| failed(rewriter.convertRegionTypes(®ion, converter, &result))) |
| return failure(); |
| |
| // Convert the region signature and just drop the operation. |
| rewriter.eraseOp(op); |
| return success(); |
| } |
| }; |
| /// This pattern simply updates the operands of the given operation. |
| struct TestPassthroughInvalidOp : public ConversionPattern { |
| TestPassthroughInvalidOp(MLIRContext *ctx, const TypeConverter &converter) |
| : ConversionPattern(converter, "test.invalid", 1, ctx) {} |
| LogicalResult |
| matchAndRewrite(Operation *op, ArrayRef<ValueRange> operands, |
| ConversionPatternRewriter &rewriter) const final { |
| SmallVector<Value> flattened; |
| for (auto it : llvm::enumerate(operands)) { |
| ValueRange range = it.value(); |
| if (range.size() == 1) { |
| flattened.push_back(range.front()); |
| continue; |
| } |
| |
| // This is a 1:N replacement. Insert a test.cast op. (That's what the |
| // argument materialization used to do.) |
| flattened.push_back( |
| TestCastOp::create(rewriter, op->getLoc(), |
| op->getOperand(it.index()).getType(), range) |
| .getResult()); |
| } |
| rewriter.replaceOpWithNewOp<TestValidOp>(op, TypeRange(), flattened, |
| ArrayRef<NamedAttribute>()); |
| return success(); |
| } |
| }; |
| /// Replace with valid op, but simply drop the operands. This is used in a |
| /// regression where we used to generate circular unrealized_conversion_cast |
| /// ops. |
| struct TestDropAndReplaceInvalidOp : public ConversionPattern { |
| TestDropAndReplaceInvalidOp(MLIRContext *ctx, const TypeConverter &converter) |
| : ConversionPattern(converter, |
| "test.drop_operands_and_replace_with_valid", 1, ctx) { |
| } |
| LogicalResult |
| matchAndRewrite(Operation *op, ArrayRef<Value> operands, |
| ConversionPatternRewriter &rewriter) const final { |
| rewriter.replaceOpWithNewOp<TestValidOp>(op, TypeRange(), ValueRange(), |
| ArrayRef<NamedAttribute>()); |
| return success(); |
| } |
| }; |
| /// This pattern handles the case of a split return value. |
| struct TestSplitReturnType : public ConversionPattern { |
| TestSplitReturnType(MLIRContext *ctx) |
| : ConversionPattern("test.return", 1, ctx) {} |
| LogicalResult |
| matchAndRewrite(Operation *op, ArrayRef<ValueRange> operands, |
| ConversionPatternRewriter &rewriter) const final { |
| // Check for a return of F32. |
| if (op->getNumOperands() != 1 || !op->getOperand(0).getType().isF32()) |
| return failure(); |
| rewriter.replaceOpWithNewOp<TestReturnOp>(op, operands[0]); |
| return success(); |
| } |
| }; |
| |
| //===----------------------------------------------------------------------===// |
| // Multi-Level Type-Conversion Rewrite Testing |
| struct TestChangeProducerTypeI32ToF32 : public ConversionPattern { |
| TestChangeProducerTypeI32ToF32(MLIRContext *ctx) |
| : ConversionPattern("test.type_producer", 1, ctx) {} |
| LogicalResult |
| matchAndRewrite(Operation *op, ArrayRef<Value> operands, |
| ConversionPatternRewriter &rewriter) const final { |
| // If the type is I32, change the type to F32. |
| if (!Type(*op->result_type_begin()).isSignlessInteger(32)) |
| return failure(); |
| rewriter.replaceOpWithNewOp<TestTypeProducerOp>(op, rewriter.getF32Type()); |
| return success(); |
| } |
| }; |
| struct TestChangeProducerTypeF32ToF64 : public ConversionPattern { |
| TestChangeProducerTypeF32ToF64(MLIRContext *ctx) |
| : ConversionPattern("test.type_producer", 1, ctx) {} |
| LogicalResult |
| matchAndRewrite(Operation *op, ArrayRef<Value> operands, |
| ConversionPatternRewriter &rewriter) const final { |
| // If the type is F32, change the type to F64. |
| if (!Type(*op->result_type_begin()).isF32()) |
| return rewriter.notifyMatchFailure(op, "expected single f32 operand"); |
| rewriter.replaceOpWithNewOp<TestTypeProducerOp>(op, rewriter.getF64Type()); |
| return success(); |
| } |
| }; |
| struct TestChangeProducerTypeF32ToInvalid : public ConversionPattern { |
| TestChangeProducerTypeF32ToInvalid(MLIRContext *ctx) |
| : ConversionPattern("test.type_producer", 10, ctx) {} |
| LogicalResult |
| matchAndRewrite(Operation *op, ArrayRef<Value> operands, |
| ConversionPatternRewriter &rewriter) const final { |
| // Always convert to B16, even though it is not a legal type. This tests |
| // that values are unmapped correctly. |
| rewriter.replaceOpWithNewOp<TestTypeProducerOp>(op, rewriter.getBF16Type()); |
| return success(); |
| } |
| }; |
| struct TestUpdateConsumerType : public ConversionPattern { |
| TestUpdateConsumerType(MLIRContext *ctx) |
| : ConversionPattern("test.type_consumer", 1, ctx) {} |
| LogicalResult |
| matchAndRewrite(Operation *op, ArrayRef<Value> operands, |
| ConversionPatternRewriter &rewriter) const final { |
| // Verify that the incoming operand has been successfully remapped to F64. |
| if (!operands[0].getType().isF64()) |
| return failure(); |
| rewriter.replaceOpWithNewOp<TestTypeConsumerOp>(op, operands[0]); |
| return success(); |
| } |
| }; |
| |
| //===----------------------------------------------------------------------===// |
| // Non-Root Replacement Rewrite Testing |
| /// This pattern generates an invalid operation, but replaces it before the |
| /// pattern is finished. This checks that we don't need to legalize the |
| /// temporary op. |
| struct TestNonRootReplacement : public RewritePattern { |
| TestNonRootReplacement(MLIRContext *ctx) |
| : RewritePattern("test.replace_non_root", 1, ctx) {} |
| |
| LogicalResult matchAndRewrite(Operation *op, |
| PatternRewriter &rewriter) const final { |
| auto resultType = *op->result_type_begin(); |
| auto illegalOp = ILLegalOpF::create(rewriter, op->getLoc(), resultType); |
| auto legalOp = LegalOpB::create(rewriter, op->getLoc(), resultType); |
| |
| rewriter.replaceOp(op, illegalOp); |
| rewriter.replaceOp(illegalOp, legalOp); |
| return success(); |
| } |
| }; |
| |
| //===----------------------------------------------------------------------===// |
| // Recursive Rewrite Testing |
| /// This pattern is applied to the same operation multiple times, but has a |
| /// bounded recursion. |
| struct TestBoundedRecursiveRewrite |
| : public OpRewritePattern<TestRecursiveRewriteOp> { |
| using OpRewritePattern<TestRecursiveRewriteOp>::OpRewritePattern; |
| |
| void initialize() { |
| // The conversion target handles bounding the recursion of this pattern. |
| setHasBoundedRewriteRecursion(); |
| } |
| |
| LogicalResult matchAndRewrite(TestRecursiveRewriteOp op, |
| PatternRewriter &rewriter) const final { |
| // Decrement the depth of the op in-place. |
| rewriter.modifyOpInPlace(op, [&] { |
| op->setAttr("depth", rewriter.getI64IntegerAttr(op.getDepth() - 1)); |
| }); |
| return success(); |
| } |
| }; |
| |
| struct TestNestedOpCreationUndoRewrite |
| : public OpRewritePattern<IllegalOpWithRegionAnchor> { |
| using OpRewritePattern<IllegalOpWithRegionAnchor>::OpRewritePattern; |
| |
| LogicalResult matchAndRewrite(IllegalOpWithRegionAnchor op, |
| PatternRewriter &rewriter) const final { |
| // rewriter.replaceOpWithNewOp<IllegalOpWithRegion>(op); |
| rewriter.replaceOpWithNewOp<IllegalOpWithRegion>(op); |
| return success(); |
| }; |
| }; |
| |
| // This pattern matches `test.blackhole` and delete this op and its producer. |
| struct TestReplaceEraseOp : public OpRewritePattern<BlackHoleOp> { |
| using OpRewritePattern<BlackHoleOp>::OpRewritePattern; |
| |
| LogicalResult matchAndRewrite(BlackHoleOp op, |
| PatternRewriter &rewriter) const final { |
| Operation *producer = op.getOperand().getDefiningOp(); |
| // Always erase the user before the producer, the framework should handle |
| // this correctly. |
| rewriter.eraseOp(op); |
| rewriter.eraseOp(producer); |
| return success(); |
| }; |
| }; |
| |
| // This pattern replaces explicitly illegal op with explicitly legal op, |
| // but in addition creates unregistered operation. |
| struct TestCreateUnregisteredOp : public OpRewritePattern<ILLegalOpG> { |
| using OpRewritePattern<ILLegalOpG>::OpRewritePattern; |
| |
| LogicalResult matchAndRewrite(ILLegalOpG op, |
| PatternRewriter &rewriter) const final { |
| IntegerAttr attr = rewriter.getI32IntegerAttr(0); |
| Value val = arith::ConstantOp::create(rewriter, op->getLoc(), attr); |
| rewriter.replaceOpWithNewOp<LegalOpC>(op, val); |
| return success(); |
| }; |
| }; |
| |
| class TestEraseOp : public ConversionPattern { |
| public: |
| TestEraseOp(MLIRContext *ctx) : ConversionPattern("test.erase_op", 1, ctx) {} |
| LogicalResult |
| matchAndRewrite(Operation *op, ArrayRef<Value> operands, |
| ConversionPatternRewriter &rewriter) const final { |
| // Erase op without replacements. |
| rewriter.eraseOp(op); |
| return success(); |
| } |
| }; |
| |
| /// Pattern that replaces test.replace_with_valid_producer with |
| /// test.valid_producer and the specified type. |
| class TestReplaceWithValidProducer : public ConversionPattern { |
| public: |
| TestReplaceWithValidProducer(MLIRContext *ctx) |
| : ConversionPattern("test.replace_with_valid_producer", 1, ctx) {} |
| LogicalResult |
| matchAndRewrite(Operation *op, ArrayRef<Value> operands, |
| ConversionPatternRewriter &rewriter) const final { |
| auto attr = op->getAttrOfType<TypeAttr>("type"); |
| if (!attr) |
| return failure(); |
| rewriter.replaceOpWithNewOp<TestValidProducerOp>(op, attr.getValue()); |
| return success(); |
| } |
| }; |
| |
| /// Pattern that replaces test.replace_with_valid_consumer with |
| /// test.valid_consumer. Can be used with and without a type converter. |
| class TestReplaceWithValidConsumer : public ConversionPattern { |
| public: |
| TestReplaceWithValidConsumer(MLIRContext *ctx, const TypeConverter &converter) |
| : ConversionPattern(converter, "test.replace_with_valid_consumer", 1, |
| ctx) {} |
| TestReplaceWithValidConsumer(MLIRContext *ctx) |
| : ConversionPattern("test.replace_with_valid_consumer", 1, ctx) {} |
| |
| LogicalResult |
| matchAndRewrite(Operation *op, ArrayRef<Value> operands, |
| ConversionPatternRewriter &rewriter) const final { |
| // with_converter present: pattern must have been initialized with a type |
| // converter. |
| // with_converter absent: pattern must have been initialized without a type |
| // converter. |
| if (op->hasAttr("with_converter") != static_cast<bool>(getTypeConverter())) |
| return failure(); |
| rewriter.replaceOpWithNewOp<TestValidConsumerOp>(op, operands[0]); |
| return success(); |
| } |
| }; |
| |
| /// This pattern matches a test.convert_block_args op. It either: |
| /// a) Duplicates all block arguments, |
| /// b) or: drops all block arguments and replaces each with 2x the first |
| /// operand. |
| class TestConvertBlockArgs : public OpConversionPattern<ConvertBlockArgsOp> { |
| using OpConversionPattern<ConvertBlockArgsOp>::OpConversionPattern; |
| |
| LogicalResult |
| matchAndRewrite(ConvertBlockArgsOp op, OpAdaptor adaptor, |
| ConversionPatternRewriter &rewriter) const override { |
| if (op.getIsLegal()) |
| return failure(); |
| Block *body = &op.getBody().front(); |
| TypeConverter::SignatureConversion result(body->getNumArguments()); |
| for (auto it : llvm::enumerate(body->getArgumentTypes())) { |
| if (op.getReplaceWithOperand()) { |
| result.remapInput(it.index(), {adaptor.getVal(), adaptor.getVal()}); |
| } else if (op.getDuplicate()) { |
| result.addInputs(it.index(), {it.value(), it.value()}); |
| } else { |
| // No action specified. Pattern does not apply. |
| return failure(); |
| } |
| } |
| rewriter.startOpModification(op); |
| rewriter.applySignatureConversion(body, result, getTypeConverter()); |
| op.setIsLegal(true); |
| rewriter.finalizeOpModification(op); |
| return success(); |
| } |
| }; |
| |
| /// This pattern replaces test.repetitive_1_to_n_consumer ops with a test.valid |
| /// op. The pattern supports 1:N replacements and forwards the replacement |
| /// values of the single operand as test.valid operands. |
| class TestRepetitive1ToNConsumer : public ConversionPattern { |
| public: |
| TestRepetitive1ToNConsumer(MLIRContext *ctx) |
| : ConversionPattern("test.repetitive_1_to_n_consumer", 1, ctx) {} |
| LogicalResult |
| matchAndRewrite(Operation *op, ArrayRef<ValueRange> operands, |
| ConversionPatternRewriter &rewriter) const final { |
| // A single operand is expected. |
| if (op->getNumOperands() != 1) |
| return failure(); |
| rewriter.replaceOpWithNewOp<TestValidOp>(op, operands.front()); |
| return success(); |
| } |
| }; |
| |
| /// A pattern that tests two back-to-back 1 -> 2 op replacements. |
| class TestMultiple1ToNReplacement : public ConversionPattern { |
| public: |
| TestMultiple1ToNReplacement(MLIRContext *ctx, const TypeConverter &converter) |
| : ConversionPattern(converter, "test.multiple_1_to_n_replacement", 1, |
| ctx) {} |
| LogicalResult |
| matchAndRewrite(Operation *op, ArrayRef<ValueRange> operands, |
| ConversionPatternRewriter &rewriter) const final { |
| // Helper function that replaces the given op with a new op of the given |
| // name and doubles each result (1 -> 2 replacement of each result). |
| auto replaceWithDoubleResults = [&](Operation *op, StringRef name) { |
| rewriter.setInsertionPointAfter(op); |
| SmallVector<Type> types; |
| for (Type t : op->getResultTypes()) { |
| types.push_back(t); |
| types.push_back(t); |
| } |
| OperationState state(op->getLoc(), name, |
| /*operands=*/{}, types, op->getAttrs()); |
| auto *newOp = rewriter.create(state); |
| SmallVector<ValueRange> repls; |
| for (size_t i = 0, e = op->getNumResults(); i < e; ++i) |
| repls.push_back(newOp->getResults().slice(2 * i, 2)); |
| rewriter.replaceOpWithMultiple(op, repls); |
| return newOp; |
| }; |
| |
| // Replace test.multiple_1_to_n_replacement with test.step_1. |
| Operation *repl1 = replaceWithDoubleResults(op, "test.step_1"); |
| // Now replace test.step_1 with test.legal_op. |
| replaceWithDoubleResults(repl1, "test.legal_op"); |
| return success(); |
| } |
| }; |
| |
| /// Pattern that erases 'test.type_consumers' iff the input operand is the |
| /// result of a 1:1 type conversion. |
| /// Used to test correct skipping of 1:1 patterns in the 1:N case. |
| class TestTypeConsumerOpPattern |
| : public OpConversionPattern<TestTypeConsumerOp> { |
| public: |
| TestTypeConsumerOpPattern(MLIRContext *ctx, const TypeConverter &converter) |
| : OpConversionPattern<TestTypeConsumerOp>(converter, ctx) {} |
| |
| LogicalResult |
| matchAndRewrite(TestTypeConsumerOp op, OpAdaptor operands, |
| ConversionPatternRewriter &rewriter) const final { |
| rewriter.eraseOp(op); |
| return success(); |
| } |
| }; |
| |
| /// Test unambiguous overload resolution of replaceOpWithMultiple. This |
| /// function is just to trigger compiler errors. It is never executed. |
| [[maybe_unused]] void testReplaceOpWithMultipleOverloads( |
| ConversionPatternRewriter &rewriter, Operation *op, ArrayRef<ValueRange> r1, |
| SmallVector<ValueRange> r2, ArrayRef<SmallVector<Value>> r3, |
| SmallVector<SmallVector<Value>> r4, ArrayRef<ArrayRef<Value>> r5, |
| SmallVector<ArrayRef<Value>> r6, SmallVector<SmallVector<Value>> &&r7, |
| Value v, ValueRange vr, ArrayRef<Value> ar) { |
| rewriter.replaceOpWithMultiple(op, r1); |
| rewriter.replaceOpWithMultiple(op, r2); |
| rewriter.replaceOpWithMultiple(op, r3); |
| rewriter.replaceOpWithMultiple(op, r4); |
| rewriter.replaceOpWithMultiple(op, r5); |
| rewriter.replaceOpWithMultiple(op, r6); |
| rewriter.replaceOpWithMultiple(op, std::move(r7)); |
| rewriter.replaceOpWithMultiple(op, {vr}); |
| rewriter.replaceOpWithMultiple(op, {ar}); |
| rewriter.replaceOpWithMultiple(op, {{v}}); |
| rewriter.replaceOpWithMultiple(op, {{v, v}}); |
| rewriter.replaceOpWithMultiple(op, {{v, v}, vr}); |
| rewriter.replaceOpWithMultiple(op, {{v, v}, ar}); |
| rewriter.replaceOpWithMultiple(op, {ar, {v, v}, vr}); |
| } |
| } // namespace |
| |
| namespace { |
| struct TestTypeConverter : public TypeConverter { |
| using TypeConverter::TypeConverter; |
| TestTypeConverter() { |
| addConversion(convertType); |
| addSourceMaterialization(materializeCast); |
| addTargetMaterialization(materializeCast); |
| } |
| |
| static LogicalResult convertType(Type t, SmallVectorImpl<Type> &results) { |
| // Drop I16 types. |
| if (t.isSignlessInteger(16)) |
| return success(); |
| |
| // Convert I64 to F64. |
| if (t.isSignlessInteger(64)) { |
| results.push_back(Float64Type::get(t.getContext())); |
| return success(); |
| } |
| |
| // Convert I42 to I43. |
| if (t.isInteger(42)) { |
| results.push_back(IntegerType::get(t.getContext(), 43)); |
| return success(); |
| } |
| |
| // Split F32 into F16,F16. |
| if (t.isF32()) { |
| results.assign(2, Float16Type::get(t.getContext())); |
| return success(); |
| } |
| |
| // Drop I24 types. |
| if (t.isInteger(24)) { |
| return success(); |
| } |
| |
| // Otherwise, convert the type directly. |
| results.push_back(t); |
| return success(); |
| } |
| |
| /// Hook for materializing a conversion. This is necessary because we generate |
| /// 1->N type mappings. |
| static Value materializeCast(OpBuilder &builder, Type resultType, |
| ValueRange inputs, Location loc) { |
| return TestCastOp::create(builder, loc, resultType, inputs).getResult(); |
| } |
| }; |
| |
| struct TestLegalizePatternDriver |
| : public PassWrapper<TestLegalizePatternDriver, OperationPass<>> { |
| MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(TestLegalizePatternDriver) |
| |
| TestLegalizePatternDriver() = default; |
| TestLegalizePatternDriver(const TestLegalizePatternDriver &other) |
| : PassWrapper(other) {} |
| |
| StringRef getArgument() const final { return "test-legalize-patterns"; } |
| StringRef getDescription() const final { |
| return "Run test dialect legalization patterns"; |
| } |
| /// The mode of conversion to use with the driver. |
| enum class ConversionMode { Analysis, Full, Partial }; |
| |
| void getDependentDialects(DialectRegistry ®istry) const override { |
| registry.insert<func::FuncDialect, test::TestDialect>(); |
| } |
| |
| void runOnOperation() override { |
| TestTypeConverter converter; |
| mlir::RewritePatternSet patterns(&getContext()); |
| populateWithGenerated(patterns); |
| patterns.add< |
| TestRegionRewriteBlockMovement, TestDetachedSignatureConversion, |
| TestRegionRewriteUndo, TestCreateBlock, TestCreateIllegalBlock, |
| TestUndoBlockErase, TestSplitReturnType, TestChangeProducerTypeI32ToF32, |
| TestChangeProducerTypeF32ToF64, TestChangeProducerTypeF32ToInvalid, |
| TestUpdateConsumerType, TestNonRootReplacement, |
| TestBoundedRecursiveRewrite, TestNestedOpCreationUndoRewrite, |
| TestReplaceEraseOp, TestCreateUnregisteredOp, TestUndoMoveOpBefore, |
| TestUndoPropertiesModification, TestEraseOp, |
| TestReplaceWithValidProducer, TestReplaceWithValidConsumer, |
| TestRepetitive1ToNConsumer>(&getContext()); |
| patterns.add<TestDropOpSignatureConversion, TestDropAndReplaceInvalidOp, |
| TestPassthroughInvalidOp, TestMultiple1ToNReplacement, |
| TestValueReplace, TestReplaceWithValidConsumer, |
| TestTypeConsumerOpPattern>(&getContext(), converter); |
| patterns.add<TestConvertBlockArgs>(converter, &getContext()); |
| mlir::populateAnyFunctionOpInterfaceTypeConversionPattern(patterns, |
| converter); |
| mlir::populateCallOpTypeConversionPattern(patterns, converter); |
| |
| // Define the conversion target used for the test. |
| ConversionTarget target(getContext()); |
| target.addLegalOp<ModuleOp>(); |
| target.addLegalOp<LegalOpA, LegalOpB, LegalOpC, TestCastOp, TestValidOp, |
| TerminatorOp, TestOpConstant, OneRegionOp, |
| TestValidProducerOp, TestValidConsumerOp>(); |
| target.addLegalOp(OperationName("test.legal_op", &getContext())); |
| target |
| .addIllegalOp<ILLegalOpF, TestRegionBuilderOp, TestOpWithRegionFold>(); |
| target.addDynamicallyLegalOp<TestReturnOp>([](TestReturnOp op) { |
| // Don't allow F32 operands. |
| return llvm::none_of(op.getOperandTypes(), |
| [](Type type) { return type.isF32(); }); |
| }); |
| target.addDynamicallyLegalOp<func::FuncOp>([&](func::FuncOp op) { |
| return converter.isSignatureLegal(op.getFunctionType()) && |
| converter.isLegal(&op.getBody()); |
| }); |
| target.addDynamicallyLegalOp<func::CallOp>( |
| [&](func::CallOp op) { return converter.isLegal(op); }); |
| target.addDynamicallyLegalOp( |
| OperationName("test.value_replace", &getContext()), |
| [](Operation *op) { return op->hasAttr("is_legal"); }); |
| |
| // TestCreateUnregisteredOp creates `arith.constant` operation, |
| // which was not added to target intentionally to test |
| // correct error code from conversion driver. |
| target.addDynamicallyLegalOp<ILLegalOpG>([](ILLegalOpG) { return false; }); |
| |
| // Expect the type_producer/type_consumer operations to only operate on f64. |
| target.addDynamicallyLegalOp<TestTypeProducerOp>( |
| [](TestTypeProducerOp op) { return op.getType().isF64(); }); |
| target.addDynamicallyLegalOp<TestTypeConsumerOp>([](TestTypeConsumerOp op) { |
| return op.getOperand().getType().isF64(); |
| }); |
| |
| // Check support for marking certain operations as recursively legal. |
| target.markOpRecursivelyLegal<func::FuncOp, ModuleOp>([](Operation *op) { |
| return static_cast<bool>( |
| op->getAttrOfType<UnitAttr>("test.recursively_legal")); |
| }); |
| |
| // Mark the bound recursion operation as dynamically legal. |
| target.addDynamicallyLegalOp<TestRecursiveRewriteOp>( |
| [](TestRecursiveRewriteOp op) { return op.getDepth() == 0; }); |
| |
| // Create a dynamically legal rule that can only be legalized by folding it. |
| target.addDynamicallyLegalOp<TestOpInPlaceSelfFold>( |
| [](TestOpInPlaceSelfFold op) { return op.getFolded(); }); |
| |
| target.addDynamicallyLegalOp<ConvertBlockArgsOp>( |
| [](ConvertBlockArgsOp op) { return op.getIsLegal(); }); |
| |
| // Set up configuration. |
| ConversionConfig config; |
| config.allowPatternRollback = allowPatternRollback; |
| config.foldingMode = foldingMode; |
| config.buildMaterializations = buildMaterializations; |
| config.attachDebugMaterializationKind = attachDebugMaterializationKind; |
| DumpNotifications dumpNotifications; |
| config.listener = &dumpNotifications; |
| |
| // Handle a partial conversion. |
| if (mode == ConversionMode::Partial) { |
| DenseSet<Operation *> unlegalizedOps; |
| config.unlegalizedOps = &unlegalizedOps; |
| if (failed(applyPartialConversion(getOperation(), target, |
| std::move(patterns), config))) { |
| getOperation()->emitRemark() << "applyPartialConversion failed"; |
| } |
| // Emit remarks for each legalizable operation. |
| for (auto *op : unlegalizedOps) |
| op->emitRemark() << "op '" << op->getName() << "' is not legalizable"; |
| return; |
| } |
| |
| // Handle a full conversion. |
| if (mode == ConversionMode::Full) { |
| // Check support for marking unknown operations as dynamically legal. |
| target.markUnknownOpDynamicallyLegal([](Operation *op) { |
| return (bool)op->getAttrOfType<UnitAttr>("test.dynamically_legal"); |
| }); |
| |
| if (failed(applyFullConversion(getOperation(), target, |
| std::move(patterns), config))) { |
| getOperation()->emitRemark() << "applyFullConversion failed"; |
| } |
| return; |
| } |
| |
| // Otherwise, handle an analysis conversion. |
| assert(mode == ConversionMode::Analysis); |
| |
| // Analyze the convertible operations. |
| DenseSet<Operation *> legalizedOps; |
| config.legalizableOps = &legalizedOps; |
| if (failed(applyAnalysisConversion(getOperation(), target, |
| std::move(patterns), config))) |
| return signalPassFailure(); |
| |
| // Emit remarks for each legalizable operation. |
| for (auto *op : legalizedOps) |
| op->emitRemark() << "op '" << op->getName() << "' is legalizable"; |
| } |
| |
| Option<ConversionMode> mode{ |
| *this, "test-legalize-mode", |
| llvm::cl::desc("The legalization mode to use with the test driver"), |
| llvm::cl::init(ConversionMode::Partial), |
| llvm::cl::values( |
| clEnumValN(ConversionMode::Analysis, "analysis", |
| "Perform an analysis conversion"), |
| clEnumValN(ConversionMode::Full, "full", "Perform a full conversion"), |
| clEnumValN(ConversionMode::Partial, "partial", |
| "Perform a partial conversion"))}; |
| |
| Option<DialectConversionFoldingMode> foldingMode{ |
| *this, "test-legalize-folding-mode", |
| llvm::cl::desc("The folding mode to use with the test driver"), |
| llvm::cl::init(DialectConversionFoldingMode::BeforePatterns), |
| llvm::cl::values(clEnumValN(DialectConversionFoldingMode::Never, "never", |
| "Never attempt to fold"), |
| clEnumValN(DialectConversionFoldingMode::BeforePatterns, |
| "before-patterns", |
| "Only attempt to fold not legal operations " |
| "before applying patterns"), |
| clEnumValN(DialectConversionFoldingMode::AfterPatterns, |
| "after-patterns", |
| "Only attempt to fold not legal operations " |
| "after applying patterns"))}; |
| Option<bool> allowPatternRollback{*this, "allow-pattern-rollback", |
| llvm::cl::desc("Allow pattern rollback"), |
| llvm::cl::init(true)}; |
| Option<bool> attachDebugMaterializationKind{ |
| *this, "attach-debug-materialization-kind", |
| llvm::cl::desc( |
| "Attach materialization kind to unrealized_conversion_cast ops"), |
| llvm::cl::init(false)}; |
| Option<bool> buildMaterializations{ |
| *this, "build-materializations", |
| llvm::cl::desc( |
| "If set to 'false', leave unrealized_conversion_cast ops in place"), |
| llvm::cl::init(true)}; |
| }; |
| } // namespace |
| |
| //===----------------------------------------------------------------------===// |
| // ConversionPatternRewriter::getRemappedValue testing. This method is used |
| // to get the remapped value of an original value that was replaced using |
| // ConversionPatternRewriter. |
| namespace { |
| struct TestRemapValueTypeConverter : public TypeConverter { |
| using TypeConverter::TypeConverter; |
| |
| TestRemapValueTypeConverter() { |
| addConversion( |
| [](Float32Type type) { return Float64Type::get(type.getContext()); }); |
| addConversion([](Type type) { return type; }); |
| } |
| }; |
| |
| /// Converter that replaces a one-result one-operand OneVResOneVOperandOp1 with |
| /// a one-operand two-result OneVResOneVOperandOp1 by replicating its original |
| /// operand twice. |
| /// |
| /// Example: |
| /// %1 = test.one_variadic_out_one_variadic_in1"(%0) |
| /// is replaced with: |
| /// %1 = test.one_variadic_out_one_variadic_in1"(%0, %0) |
| struct OneVResOneVOperandOp1Converter |
| : public OpConversionPattern<OneVResOneVOperandOp1> { |
| using OpConversionPattern<OneVResOneVOperandOp1>::OpConversionPattern; |
| |
| LogicalResult |
| matchAndRewrite(OneVResOneVOperandOp1 op, OpAdaptor adaptor, |
| ConversionPatternRewriter &rewriter) const override { |
| auto origOps = op.getOperands(); |
| assert(std::distance(origOps.begin(), origOps.end()) == 1 && |
| "One operand expected"); |
| Value origOp = *origOps.begin(); |
| SmallVector<Value, 2> remappedOperands; |
| // Replicate the remapped original operand twice. Note that we don't used |
| // the remapped 'operand' since the goal is testing 'getRemappedValue'. |
| remappedOperands.push_back(rewriter.getRemappedValue(origOp)); |
| remappedOperands.push_back(rewriter.getRemappedValue(origOp)); |
| |
| rewriter.replaceOpWithNewOp<OneVResOneVOperandOp1>(op, op.getResultTypes(), |
| remappedOperands); |
| return success(); |
| } |
| }; |
| |
| /// A rewriter pattern that tests that blocks can be merged. |
| struct TestRemapValueInRegion |
| : public OpConversionPattern<TestRemappedValueRegionOp> { |
| using OpConversionPattern<TestRemappedValueRegionOp>::OpConversionPattern; |
| |
| LogicalResult |
| matchAndRewrite(TestRemappedValueRegionOp op, OpAdaptor adaptor, |
| ConversionPatternRewriter &rewriter) const final { |
| Block &block = op.getBody().front(); |
| Operation *terminator = block.getTerminator(); |
| |
| // Merge the block into the parent region. |
| Block *parentBlock = op->getBlock(); |
| Block *finalBlock = rewriter.splitBlock(parentBlock, op->getIterator()); |
| rewriter.mergeBlocks(&block, parentBlock, ValueRange()); |
| rewriter.mergeBlocks(finalBlock, parentBlock, ValueRange()); |
| |
| // Replace the results of this operation with the remapped terminator |
| // values. |
| SmallVector<Value> terminatorOperands; |
| if (failed(rewriter.getRemappedValues(terminator->getOperands(), |
| terminatorOperands))) |
| return failure(); |
| |
| rewriter.eraseOp(terminator); |
| rewriter.replaceOp(op, terminatorOperands); |
| return success(); |
| } |
| }; |
| |
| struct TestRemappedValue |
| : public mlir::PassWrapper<TestRemappedValue, OperationPass<>> { |
| MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(TestRemappedValue) |
| |
| StringRef getArgument() const final { return "test-remapped-value"; } |
| StringRef getDescription() const final { |
| return "Test public remapped value mechanism in ConversionPatternRewriter"; |
| } |
| void runOnOperation() override { |
| TestRemapValueTypeConverter typeConverter; |
| |
| mlir::RewritePatternSet patterns(&getContext()); |
| patterns.add<OneVResOneVOperandOp1Converter>(&getContext()); |
| patterns.add<TestChangeProducerTypeF32ToF64, TestUpdateConsumerType>( |
| &getContext()); |
| patterns.add<TestRemapValueInRegion>(typeConverter, &getContext()); |
| |
| mlir::ConversionTarget target(getContext()); |
| target.addLegalOp<ModuleOp, func::FuncOp, TestReturnOp>(); |
| |
| // Expect the type_producer/type_consumer operations to only operate on f64. |
| target.addDynamicallyLegalOp<TestTypeProducerOp>( |
| [](TestTypeProducerOp op) { return op.getType().isF64(); }); |
| target.addDynamicallyLegalOp<TestTypeConsumerOp>([](TestTypeConsumerOp op) { |
| return op.getOperand().getType().isF64(); |
| }); |
| |
| // We make OneVResOneVOperandOp1 legal only when it has more that one |
| // operand. This will trigger the conversion that will replace one-operand |
| // OneVResOneVOperandOp1 with two-operand OneVResOneVOperandOp1. |
| target.addDynamicallyLegalOp<OneVResOneVOperandOp1>( |
| [](Operation *op) { return op->getNumOperands() > 1; }); |
| |
| if (failed(mlir::applyFullConversion(getOperation(), target, |
| std::move(patterns)))) { |
| signalPassFailure(); |
| } |
| } |
| }; |
| } // namespace |
| |
| //===----------------------------------------------------------------------===// |
| // Test patterns without a specific root operation kind |
| //===----------------------------------------------------------------------===// |
| |
| namespace { |
| /// This pattern matches and removes any operation in the test dialect. |
| struct RemoveTestDialectOps : public RewritePattern { |
| RemoveTestDialectOps(MLIRContext *context) |
| : RewritePattern(MatchAnyOpTypeTag(), /*benefit=*/1, context) {} |
| |
| LogicalResult matchAndRewrite(Operation *op, |
| PatternRewriter &rewriter) const override { |
| if (!isa<TestDialect>(op->getDialect())) |
| return failure(); |
| rewriter.eraseOp(op); |
| return success(); |
| } |
| }; |
| |
| struct TestUnknownRootOpDriver |
| : public mlir::PassWrapper<TestUnknownRootOpDriver, OperationPass<>> { |
| MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(TestUnknownRootOpDriver) |
| |
| StringRef getArgument() const final { |
| return "test-legalize-unknown-root-patterns"; |
| } |
| StringRef getDescription() const final { |
| return "Test public remapped value mechanism in ConversionPatternRewriter"; |
| } |
| void runOnOperation() override { |
| mlir::RewritePatternSet patterns(&getContext()); |
| patterns.add<RemoveTestDialectOps>(&getContext()); |
| |
| mlir::ConversionTarget target(getContext()); |
| target.addIllegalDialect<TestDialect>(); |
| if (failed(applyPartialConversion(getOperation(), target, |
| std::move(patterns)))) |
| signalPassFailure(); |
| } |
| }; |
| } // namespace |
| |
| //===----------------------------------------------------------------------===// |
| // Test patterns that uses operations and types defined at runtime |
| //===----------------------------------------------------------------------===// |
| |
| namespace { |
| /// This pattern matches dynamic operations 'test.one_operand_two_results' and |
| /// replace them with dynamic operations 'test.generic_dynamic_op'. |
| struct RewriteDynamicOp : public RewritePattern { |
| RewriteDynamicOp(MLIRContext *context) |
| : RewritePattern("test.dynamic_one_operand_two_results", /*benefit=*/1, |
| context) {} |
| |
| LogicalResult matchAndRewrite(Operation *op, |
| PatternRewriter &rewriter) const override { |
| assert(op->getName().getStringRef() == |
| "test.dynamic_one_operand_two_results" && |
| "rewrite pattern should only match operations with the right name"); |
| |
| OperationState state(op->getLoc(), "test.dynamic_generic", |
| op->getOperands(), op->getResultTypes(), |
| op->getAttrs()); |
| auto *newOp = rewriter.create(state); |
| rewriter.replaceOp(op, newOp->getResults()); |
| return success(); |
| } |
| }; |
| |
| struct TestRewriteDynamicOpDriver |
| : public PassWrapper<TestRewriteDynamicOpDriver, OperationPass<>> { |
| MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(TestRewriteDynamicOpDriver) |
| |
| void getDependentDialects(DialectRegistry ®istry) const override { |
| registry.insert<TestDialect>(); |
| } |
| StringRef getArgument() const final { return "test-rewrite-dynamic-op"; } |
| StringRef getDescription() const final { |
| return "Test rewritting on dynamic operations"; |
| } |
| void runOnOperation() override { |
| RewritePatternSet patterns(&getContext()); |
| patterns.add<RewriteDynamicOp>(&getContext()); |
| |
| ConversionTarget target(getContext()); |
| target.addIllegalOp( |
| OperationName("test.dynamic_one_operand_two_results", &getContext())); |
| target.addLegalOp(OperationName("test.dynamic_generic", &getContext())); |
| if (failed(applyPartialConversion(getOperation(), target, |
| std::move(patterns)))) |
| signalPassFailure(); |
| } |
| }; |
| } // end anonymous namespace |
| |
| //===----------------------------------------------------------------------===// |
| // Test type conversions |
| //===----------------------------------------------------------------------===// |
| |
| namespace { |
| struct TestTypeConversionProducer |
| : public OpConversionPattern<TestTypeProducerOp> { |
| using OpConversionPattern<TestTypeProducerOp>::OpConversionPattern; |
| LogicalResult |
| matchAndRewrite(TestTypeProducerOp op, OpAdaptor adaptor, |
| ConversionPatternRewriter &rewriter) const final { |
| Type resultType = op.getType(); |
| Type convertedType = getTypeConverter() |
| ? getTypeConverter()->convertType(resultType) |
| : resultType; |
| if (isa<FloatType>(resultType)) |
| resultType = rewriter.getF64Type(); |
| else if (resultType.isInteger(16)) |
| resultType = rewriter.getIntegerType(64); |
| else if (isa<test::TestRecursiveType>(resultType) && |
| convertedType != resultType) |
| resultType = convertedType; |
| else |
| return failure(); |
| |
| rewriter.replaceOpWithNewOp<TestTypeProducerOp>(op, resultType); |
| return success(); |
| } |
| }; |
| |
| /// Call signature conversion and then fail the rewrite to trigger the undo |
| /// mechanism. |
| struct TestSignatureConversionUndo |
| : public OpConversionPattern<TestSignatureConversionUndoOp> { |
| using OpConversionPattern<TestSignatureConversionUndoOp>::OpConversionPattern; |
| |
| LogicalResult |
| matchAndRewrite(TestSignatureConversionUndoOp op, OpAdaptor adaptor, |
| ConversionPatternRewriter &rewriter) const final { |
| (void)rewriter.convertRegionTypes(&op->getRegion(0), *getTypeConverter()); |
| return failure(); |
| } |
| }; |
| |
| /// Call signature conversion without providing a type converter to handle |
| /// materializations. |
| struct TestTestSignatureConversionNoConverter |
| : public OpConversionPattern<TestSignatureConversionNoConverterOp> { |
| TestTestSignatureConversionNoConverter(const TypeConverter &converter, |
| MLIRContext *context) |
| : OpConversionPattern<TestSignatureConversionNoConverterOp>(context), |
| converter(converter) {} |
| |
| LogicalResult |
| matchAndRewrite(TestSignatureConversionNoConverterOp op, OpAdaptor adaptor, |
| ConversionPatternRewriter &rewriter) const final { |
| Region ®ion = op->getRegion(0); |
| Block *entry = ®ion.front(); |
| |
| // Convert the original entry arguments. |
| TypeConverter::SignatureConversion result(entry->getNumArguments()); |
| if (failed( |
| converter.convertSignatureArgs(entry->getArgumentTypes(), result))) |
| return failure(); |
| rewriter.modifyOpInPlace(op, [&] { |
| rewriter.applySignatureConversion(®ion.front(), result); |
| }); |
| return success(); |
| } |
| |
| const TypeConverter &converter; |
| }; |
| |
| /// Just forward the operands to the root op. This is essentially a no-op |
| /// pattern that is used to trigger target materialization. |
| struct TestTypeConsumerForward |
| : public OpConversionPattern<TestTypeConsumerOp> { |
| using OpConversionPattern<TestTypeConsumerOp>::OpConversionPattern; |
| |
| LogicalResult |
| matchAndRewrite(TestTypeConsumerOp op, OpAdaptor adaptor, |
| ConversionPatternRewriter &rewriter) const final { |
| rewriter.modifyOpInPlace(op, |
| [&] { op->setOperands(adaptor.getOperands()); }); |
| return success(); |
| } |
| }; |
| |
| struct TestTypeConversionAnotherProducer |
| : public OpRewritePattern<TestAnotherTypeProducerOp> { |
| using OpRewritePattern<TestAnotherTypeProducerOp>::OpRewritePattern; |
| |
| LogicalResult matchAndRewrite(TestAnotherTypeProducerOp op, |
| PatternRewriter &rewriter) const final { |
| rewriter.replaceOpWithNewOp<TestTypeProducerOp>(op, op.getType()); |
| return success(); |
| } |
| }; |
| |
| struct TestReplaceWithLegalOp : public ConversionPattern { |
| TestReplaceWithLegalOp(const TypeConverter &converter, MLIRContext *ctx) |
| : ConversionPattern(converter, "test.replace_with_legal_op", |
| /*benefit=*/1, ctx) {} |
| LogicalResult |
| matchAndRewrite(Operation *op, ArrayRef<ValueRange> operands, |
| ConversionPatternRewriter &rewriter) const final { |
| rewriter.replaceOpWithNewOp<LegalOpD>(op, operands[0].front()); |
| return success(); |
| } |
| }; |
| |
| struct TestTypeConversionDriver |
| : public PassWrapper<TestTypeConversionDriver, OperationPass<>> { |
| MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(TestTypeConversionDriver) |
| |
| TestTypeConversionDriver() = default; |
| TestTypeConversionDriver(const TestTypeConversionDriver &other) |
| : PassWrapper(other) {} |
| |
| void getDependentDialects(DialectRegistry ®istry) const override { |
| registry.insert<TestDialect>(); |
| } |
| StringRef getArgument() const final { |
| return "test-legalize-type-conversion"; |
| } |
| StringRef getDescription() const final { |
| return "Test various type conversion functionalities in DialectConversion"; |
| } |
| |
| void runOnOperation() override { |
| // Initialize the type converter. |
| SmallVector<Type, 2> conversionCallStack; |
| TypeConverter converter; |
| |
| /// Add the legal set of type conversions. |
| converter.addConversion([](Type type) -> Type { |
| // Treat F64 as legal. |
| if (type.isF64()) |
| return type; |
| // Allow converting BF16/F16/F32 to F64. |
| if (type.isBF16() || type.isF16() || type.isF32()) |
| return Float64Type::get(type.getContext()); |
| // Otherwise, the type is illegal. |
| return nullptr; |
| }); |
| converter.addConversion([](IndexType type) { return type; }); |
| converter.addConversion([](IntegerType type, SmallVectorImpl<Type> &types) { |
| if (type.isInteger(38)) { |
| // i38 is legal. |
| types.push_back(type); |
| } |
| // Drop all other integer types. |
| return success(); |
| }); |
| converter.addConversion( |
| // Convert a recursive self-referring type into a non-self-referring |
| // type named "outer_converted_type" that contains a SimpleAType. |
| [&](test::TestRecursiveType type, |
| SmallVectorImpl<Type> &results) -> std::optional<LogicalResult> { |
| // If the type is already converted, return it to indicate that it is |
| // legal. |
| if (type.getName() == "outer_converted_type") { |
| results.push_back(type); |
| return success(); |
| } |
| |
| conversionCallStack.push_back(type); |
| auto popConversionCallStack = llvm::make_scope_exit( |
| [&conversionCallStack]() { conversionCallStack.pop_back(); }); |
| |
| // If the type is on the call stack more than once (it is there at |
| // least once because of the _current_ call, which is always the last |
| // element on the stack), we've hit the recursive case. Just return |
| // SimpleAType here to create a non-recursive type as a result. |
| if (llvm::is_contained(ArrayRef(conversionCallStack).drop_back(), |
| type)) { |
| results.push_back(test::SimpleAType::get(type.getContext())); |
| return success(); |
| } |
| |
| // Convert the body recursively. |
| auto result = test::TestRecursiveType::get(type.getContext(), |
| "outer_converted_type"); |
| if (failed(result.setBody(converter.convertType(type.getBody())))) |
| return failure(); |
| results.push_back(result); |
| return success(); |
| }); |
| converter.addConversion([](Value v) -> std::optional<Type> { |
| // Context-aware type conversion rule that converts i37 to |
| // i(37 + increment). The increment is taken from the enclosing |
| // function. |
| auto intType = dyn_cast<IntegerType>(v.getType()); |
| if (!intType || intType.getWidth() != 37) |
| return std::nullopt; |
| Region *r = v.getParentRegion(); |
| if (!r) { |
| // No enclosing region found. This can happen when running with |
| // allow-pattern-rollback = true. Context-aware type conversions are |
| // not fully supported when running in rollback mode. |
| return Type(); |
| } |
| Operation *op = r->getParentOp(); |
| if (!op) |
| return Type(); |
| if (!isa<FunctionOpInterface>(op)) |
| op = op->getParentOfType<FunctionOpInterface>(); |
| if (!op) |
| return Type(); |
| auto incrementAttr = op->getAttrOfType<IntegerAttr>("increment"); |
| if (!incrementAttr) |
| return Type(); |
| return IntegerType::get(v.getContext(), |
| intType.getWidth() + incrementAttr.getInt()); |
| }); |
| |
| /// Add the legal set of type materializations. |
| converter.addSourceMaterialization([](OpBuilder &builder, Type resultType, |
| ValueRange inputs, |
| Location loc) -> Value { |
| // Allow casting from F64 back to F32. |
| if (!resultType.isF16() && inputs.size() == 1 && |
| inputs[0].getType().isF64()) |
| return TestCastOp::create(builder, loc, resultType, inputs).getResult(); |
| // Allow producing an i32 or i64 from nothing. |
| if ((resultType.isInteger(32) || resultType.isInteger(64)) && |
| inputs.empty()) |
| return TestTypeProducerOp::create(builder, loc, resultType); |
| // Allow producing an i64 from an integer. |
| if (isa<IntegerType>(resultType) && inputs.size() == 1 && |
| isa<IntegerType>(inputs[0].getType())) |
| return TestCastOp::create(builder, loc, resultType, inputs).getResult(); |
| // Otherwise, fail. |
| return nullptr; |
| }); |
| // Materialize i37 to any desired type with unrealized_conversion_cast. |
| converter.addTargetMaterialization([](OpBuilder &builder, Type type, |
| ValueRange inputs, |
| Location loc) -> Value { |
| if (inputs.size() != 1 || !inputs[0].getType().isInteger(37)) |
| return Value(); |
| return builder.create<UnrealizedConversionCastOp>(loc, type, inputs) |
| .getResult(0); |
| }); |
| |
| // Initialize the conversion target. |
| mlir::ConversionTarget target(getContext()); |
| target.addLegalOp(OperationName("test.context_op", &getContext())); |
| target.addLegalOp<LegalOpD>(); |
| target.addDynamicallyLegalOp<TestTypeProducerOp>([](TestTypeProducerOp op) { |
| auto recursiveType = dyn_cast<test::TestRecursiveType>(op.getType()); |
| return op.getType().isF64() || op.getType().isInteger(64) || |
| (recursiveType && |
| recursiveType.getName() == "outer_converted_type"); |
| }); |
| target.addDynamicallyLegalOp<func::FuncOp>([&](func::FuncOp op) { |
| return converter.isSignatureLegal(op.getFunctionType()) && |
| converter.isLegal(&op.getBody()); |
| }); |
| target.addDynamicallyLegalOp<TestCastOp>([&](TestCastOp op) { |
| // Allow casts from F64 to F32. |
| return (*op.operand_type_begin()).isF64() && op.getType().isF32(); |
| }); |
| target.addDynamicallyLegalOp<TestSignatureConversionNoConverterOp>( |
| [&](TestSignatureConversionNoConverterOp op) { |
| return converter.isLegal(op.getRegion().front().getArgumentTypes()); |
| }); |
| |
| // Initialize the set of rewrite patterns. |
| RewritePatternSet patterns(&getContext()); |
| patterns |
| .add<TestTypeConsumerForward, TestTypeConversionProducer, |
| TestSignatureConversionUndo, |
| TestTestSignatureConversionNoConverter, TestReplaceWithLegalOp>( |
| converter, &getContext()); |
| patterns.add<TestTypeConversionAnotherProducer>(&getContext()); |
| mlir::populateAnyFunctionOpInterfaceTypeConversionPattern(patterns, |
| converter); |
| mlir::scf::populateSCFStructuralTypeConversionsAndLegality( |
| converter, patterns, target); |
| |
| ConversionConfig config; |
| config.allowPatternRollback = allowPatternRollback; |
| if (failed(applyPartialConversion(getOperation(), target, |
| std::move(patterns), config))) |
| signalPassFailure(); |
| } |
| |
| Option<bool> allowPatternRollback{*this, "allow-pattern-rollback", |
| llvm::cl::desc("Allow pattern rollback"), |
| llvm::cl::init(true)}; |
| }; |
| } // namespace |
| |
| //===----------------------------------------------------------------------===// |
| // Test Target Materialization With No Uses |
| //===----------------------------------------------------------------------===// |
| |
| namespace { |
| struct ForwardOperandPattern : public OpConversionPattern<TestTypeChangerOp> { |
| using OpConversionPattern<TestTypeChangerOp>::OpConversionPattern; |
| |
| LogicalResult |
| matchAndRewrite(TestTypeChangerOp op, OpAdaptor adaptor, |
| ConversionPatternRewriter &rewriter) const final { |
| rewriter.replaceOp(op, adaptor.getOperands()); |
| return success(); |
| } |
| }; |
| |
| struct TestTargetMaterializationWithNoUses |
| : public PassWrapper<TestTargetMaterializationWithNoUses, OperationPass<>> { |
| MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID( |
| TestTargetMaterializationWithNoUses) |
| |
| StringRef getArgument() const final { |
| return "test-target-materialization-with-no-uses"; |
| } |
| StringRef getDescription() const final { |
| return "Test a special case of target materialization in DialectConversion"; |
| } |
| |
| void runOnOperation() override { |
| TypeConverter converter; |
| converter.addConversion([](Type t) { return t; }); |
| converter.addConversion([](IntegerType intTy) -> Type { |
| if (intTy.getWidth() == 16) |
| return IntegerType::get(intTy.getContext(), 64); |
| return intTy; |
| }); |
| converter.addTargetMaterialization( |
| [](OpBuilder &builder, Type type, ValueRange inputs, Location loc) { |
| return TestCastOp::create(builder, loc, type, inputs).getResult(); |
| }); |
| |
| ConversionTarget target(getContext()); |
| target.addIllegalOp<TestTypeChangerOp>(); |
| |
| RewritePatternSet patterns(&getContext()); |
| patterns.add<ForwardOperandPattern>(converter, &getContext()); |
| |
| if (failed(applyPartialConversion(getOperation(), target, |
| std::move(patterns)))) |
| signalPassFailure(); |
| } |
| }; |
| } // namespace |
| |
| //===----------------------------------------------------------------------===// |
| // Test Block Merging |
| //===----------------------------------------------------------------------===// |
| |
| namespace { |
| /// A rewriter pattern that tests that blocks can be merged. |
| struct TestMergeBlock : public OpConversionPattern<TestMergeBlocksOp> { |
| using OpConversionPattern<TestMergeBlocksOp>::OpConversionPattern; |
| |
| LogicalResult |
| matchAndRewrite(TestMergeBlocksOp op, OpAdaptor adaptor, |
| ConversionPatternRewriter &rewriter) const final { |
| Block &firstBlock = op.getBody().front(); |
| Operation *branchOp = firstBlock.getTerminator(); |
| Block *secondBlock = &*(std::next(op.getBody().begin())); |
| auto succOperands = branchOp->getOperands(); |
| SmallVector<Value, 2> replacements(succOperands); |
| rewriter.eraseOp(branchOp); |
| rewriter.mergeBlocks(secondBlock, &firstBlock, replacements); |
| rewriter.modifyOpInPlace(op, [] {}); |
| return success(); |
| } |
| }; |
| |
| /// A rewrite pattern to tests the undo mechanism of blocks being merged. |
| struct TestUndoBlocksMerge : public ConversionPattern { |
| TestUndoBlocksMerge(MLIRContext *ctx) |
| : ConversionPattern("test.undo_blocks_merge", /*benefit=*/1, ctx) {} |
| LogicalResult |
| matchAndRewrite(Operation *op, ArrayRef<Value> operands, |
| ConversionPatternRewriter &rewriter) const final { |
| Block &firstBlock = op->getRegion(0).front(); |
| Operation *branchOp = firstBlock.getTerminator(); |
| Block *secondBlock = &*(std::next(op->getRegion(0).begin())); |
| rewriter.setInsertionPointToStart(secondBlock); |
| ILLegalOpF::create(rewriter, op->getLoc(), rewriter.getF32Type()); |
| auto succOperands = branchOp->getOperands(); |
| SmallVector<Value, 2> replacements(succOperands); |
| rewriter.eraseOp(branchOp); |
| rewriter.mergeBlocks(secondBlock, &firstBlock, replacements); |
| rewriter.modifyOpInPlace(op, [] {}); |
| return success(); |
| } |
| }; |
| |
| /// A rewrite mechanism to inline the body of the op into its parent, when both |
| /// ops can have a single block. |
| struct TestMergeSingleBlockOps |
| : public OpConversionPattern<SingleBlockImplicitTerminatorOp> { |
| using OpConversionPattern< |
| SingleBlockImplicitTerminatorOp>::OpConversionPattern; |
| |
| LogicalResult |
| matchAndRewrite(SingleBlockImplicitTerminatorOp op, OpAdaptor adaptor, |
| ConversionPatternRewriter &rewriter) const final { |
| SingleBlockImplicitTerminatorOp parentOp = |
| op->getParentOfType<SingleBlockImplicitTerminatorOp>(); |
| if (!parentOp) |
| return failure(); |
| Block &innerBlock = op.getRegion().front(); |
| TerminatorOp innerTerminator = |
| cast<TerminatorOp>(innerBlock.getTerminator()); |
| rewriter.inlineBlockBefore(&innerBlock, op); |
| rewriter.eraseOp(innerTerminator); |
| rewriter.eraseOp(op); |
| return success(); |
| } |
| }; |
| |
| struct TestMergeBlocksPatternDriver |
| : public PassWrapper<TestMergeBlocksPatternDriver, OperationPass<>> { |
| MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(TestMergeBlocksPatternDriver) |
| |
| StringRef getArgument() const final { return "test-merge-blocks"; } |
| StringRef getDescription() const final { |
| return "Test Merging operation in ConversionPatternRewriter"; |
| } |
| void runOnOperation() override { |
| MLIRContext *context = &getContext(); |
| mlir::RewritePatternSet patterns(context); |
| patterns.add<TestMergeBlock, TestUndoBlocksMerge, TestMergeSingleBlockOps>( |
| context); |
| ConversionTarget target(*context); |
| target.addLegalOp<func::FuncOp, ModuleOp, TerminatorOp, TestBranchOp, |
| TestTypeConsumerOp, TestTypeProducerOp, TestReturnOp>(); |
| target.addIllegalOp<ILLegalOpF>(); |
| |
| /// Expect the op to have a single block after legalization. |
| target.addDynamicallyLegalOp<TestMergeBlocksOp>( |
| [&](TestMergeBlocksOp op) -> bool { |
| return op.getBody().hasOneBlock(); |
| }); |
| |
| /// Only allow `test.br` within test.merge_blocks op. |
| target.addDynamicallyLegalOp<TestBranchOp>([&](TestBranchOp op) -> bool { |
| return op->getParentOfType<TestMergeBlocksOp>(); |
| }); |
| |
| /// Expect that all nested test.SingleBlockImplicitTerminator ops are |
| /// inlined. |
| target.addDynamicallyLegalOp<SingleBlockImplicitTerminatorOp>( |
| [&](SingleBlockImplicitTerminatorOp op) -> bool { |
| return !op->getParentOfType<SingleBlockImplicitTerminatorOp>(); |
| }); |
| |
| DenseSet<Operation *> unlegalizedOps; |
| ConversionConfig config; |
| config.unlegalizedOps = &unlegalizedOps; |
| (void)applyPartialConversion(getOperation(), target, std::move(patterns), |
| config); |
| for (auto *op : unlegalizedOps) |
| op->emitRemark() << "op '" << op->getName() << "' is not legalizable"; |
| } |
| }; |
| } // namespace |
| |
| //===----------------------------------------------------------------------===// |
| // Test Selective Replacement |
| //===----------------------------------------------------------------------===// |
| |
| namespace { |
| /// A rewrite mechanism to inline the body of the op into its parent, when both |
| /// ops can have a single block. |
| struct TestSelectiveOpReplacementPattern : public OpRewritePattern<TestCastOp> { |
| using OpRewritePattern<TestCastOp>::OpRewritePattern; |
| |
| LogicalResult matchAndRewrite(TestCastOp op, |
| PatternRewriter &rewriter) const final { |
| if (op.getNumOperands() != 2) |
| return failure(); |
| OperandRange operands = op.getOperands(); |
| |
| // Replace non-terminator uses with the first operand. |
| rewriter.replaceUsesWithIf(op, operands[0], [](OpOperand &operand) { |
| return operand.getOwner()->hasTrait<OpTrait::IsTerminator>(); |
| }); |
| // Replace everything else with the second operand if the operation isn't |
| // dead. |
| rewriter.replaceOp(op, op.getOperand(1)); |
| return success(); |
| } |
| }; |
| |
| struct TestSelectiveReplacementPatternDriver |
| : public PassWrapper<TestSelectiveReplacementPatternDriver, |
| OperationPass<>> { |
| MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID( |
| TestSelectiveReplacementPatternDriver) |
| |
| StringRef getArgument() const final { |
| return "test-pattern-selective-replacement"; |
| } |
| StringRef getDescription() const final { |
| return "Test selective replacement in the PatternRewriter"; |
| } |
| void runOnOperation() override { |
| MLIRContext *context = &getContext(); |
| mlir::RewritePatternSet patterns(context); |
| patterns.add<TestSelectiveOpReplacementPattern>(context); |
| (void)applyPatternsGreedily(getOperation(), std::move(patterns)); |
| } |
| }; |
| |
| struct TestFoldTypeConvertingOp |
| : public PassWrapper<TestFoldTypeConvertingOp, OperationPass<>> { |
| MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(TestFoldTypeConvertingOp) |
| |
| StringRef getArgument() const final { return "test-fold-type-converting-op"; } |
| StringRef getDescription() const final { |
| return "Test helper functions for folding ops whose input and output types " |
| "differ, e.g. float comparisons of the form `(f32, f32) -> i1`."; |
| } |
| void runOnOperation() override { |
| MLIRContext *context = &getContext(); |
| mlir::RewritePatternSet patterns(context); |
| patterns.add<FoldSignOpF32ToSI32, FoldLessThanOpF32ToI1>(context); |
| if (failed(applyPatternsGreedily(getOperation(), std::move(patterns)))) |
| signalPassFailure(); |
| } |
| }; |
| } // namespace |
| |
| //===----------------------------------------------------------------------===// |
| // PassRegistration |
| //===----------------------------------------------------------------------===// |
| |
| namespace mlir { |
| namespace test { |
| void registerPatternsTestPass() { |
| PassRegistration<TestReturnTypeDriver>(); |
| |
| PassRegistration<TestDerivedAttributeDriver>(); |
| |
| PassRegistration<TestGreedyPatternDriver>(); |
| PassRegistration<TestStrictPatternDriver>(); |
| PassRegistration<TestWalkPatternDriver>(); |
| |
| PassRegistration<TestLegalizePatternDriver>(); |
| |
| PassRegistration<TestRemappedValue>(); |
| |
| PassRegistration<TestUnknownRootOpDriver>(); |
| |
| PassRegistration<TestTypeConversionDriver>(); |
| PassRegistration<TestTargetMaterializationWithNoUses>(); |
| |
| PassRegistration<TestRewriteDynamicOpDriver>(); |
| |
| PassRegistration<TestMergeBlocksPatternDriver>(); |
| PassRegistration<TestSelectiveReplacementPatternDriver>(); |
| |
| PassRegistration<TestFoldTypeConvertingOp>(); |
| } |
| } // namespace test |
| } // namespace mlir |