//===- TestFunc.cpp - Pass to test helpers on function utilities ----------===// // // 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 "mlir/IR/BuiltinOps.h" #include "mlir/Interfaces/FunctionInterfaces.h" #include "mlir/Pass/Pass.h" usingnamespacemlir; namespace { /// This is a test pass for verifying FunctionOpInterface's insertArgument /// method. struct TestFuncInsertArg : public PassWrapper<TestFuncInsertArg, OperationPass<ModuleOp>> { … }; /// This is a test pass for verifying FunctionOpInterface's insertResult method. struct TestFuncInsertResult : public PassWrapper<TestFuncInsertResult, OperationPass<ModuleOp>> { … }; /// This is a test pass for verifying FunctionOpInterface's eraseArgument /// method. struct TestFuncEraseArg : public PassWrapper<TestFuncEraseArg, OperationPass<ModuleOp>> { … }; /// This is a test pass for verifying FunctionOpInterface's eraseResult method. struct TestFuncEraseResult : public PassWrapper<TestFuncEraseResult, OperationPass<ModuleOp>> { … }; /// This is a test pass for verifying FunctionOpInterface's setType method. struct TestFuncSetType : public PassWrapper<TestFuncSetType, OperationPass<ModuleOp>> { … }; } // namespace namespace mlir { void registerTestFunc() { … } } // namespace mlir