Fix GCC build problem with 288f05f related to SmallVector. (#116958)
[llvm-project.git] / mlir / test / lib / Dialect / Test / TestTraits.cpp
blob031e1062dac76d5ce8130f2f777d03499c6b5c37
1 //===- TestTraits.cpp - Test trait folding --------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #include "TestOps.h"
10 #include "mlir/Pass/Pass.h"
11 #include "mlir/Transforms/GreedyPatternRewriteDriver.h"
13 using namespace mlir;
14 using namespace test;
16 //===----------------------------------------------------------------------===//
17 // Trait Folder.
18 //===----------------------------------------------------------------------===//
20 OpFoldResult TestInvolutionTraitFailingOperationFolderOp::fold(
21 FoldAdaptor adaptor) {
22 // This failure should cause the trait fold to run instead.
23 return {};
26 OpFoldResult TestInvolutionTraitSuccesfulOperationFolderOp::fold(
27 FoldAdaptor adaptor) {
28 auto argumentOp = getOperand();
29 // The success case should cause the trait fold to be supressed.
30 return argumentOp.getDefiningOp() ? argumentOp : OpFoldResult{};
33 namespace {
34 struct TestTraitFolder
35 : public PassWrapper<TestTraitFolder, OperationPass<func::FuncOp>> {
36 MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(TestTraitFolder)
38 StringRef getArgument() const final { return "test-trait-folder"; }
39 StringRef getDescription() const final { return "Run trait folding"; }
40 void runOnOperation() override {
41 (void)applyPatternsAndFoldGreedily(getOperation(),
42 RewritePatternSet(&getContext()));
45 } // namespace
47 namespace mlir {
48 void registerTestTraitsPass() { PassRegistration<TestTraitFolder>(); }
49 } // namespace mlir