1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
|
//===-- TestInterfaces.td - Test dialect interfaces --------*- tablegen -*-===//
//
// 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
//
//===----------------------------------------------------------------------===//
#ifndef MLIR_TEST_DIALECT_TEST_INTERFACES
#define MLIR_TEST_DIALECT_TEST_INTERFACES
include "mlir/IR/OpBase.td"
include "mlir/Interfaces/SideEffectInterfaceBase.td"
// A set of type interfaces used to test interface inheritance.
def TestBaseTypeInterfacePrintTypeA : TypeInterface<"TestBaseTypeInterfacePrintTypeA"> {
let cppNamespace = "::test";
let methods = [
InterfaceMethod<"Prints the type name.",
"void", "printTypeA", (ins "::mlir::Location":$loc), [{
emitRemark(loc) << $_type << " - TestA";
}]
>
];
}
def TestBaseTypeInterfacePrintTypeB
: TypeInterface<"TestBaseTypeInterfacePrintTypeB", [TestBaseTypeInterfacePrintTypeA]> {
let cppNamespace = "::test";
let methods = [
InterfaceMethod<"Prints the type name.",
"void", "printTypeB", (ins "::mlir::Location":$loc),
[{}], /*defaultImplementation=*/[{
emitRemark(loc) << $_type << " - TestB";
}]
>
];
}
// A type interface used to test the ODS generation of type interfaces.
def TestTypeInterface
: TypeInterface<"TestTypeInterface", [TestBaseTypeInterfacePrintTypeB]> {
let cppNamespace = "::test";
let methods = [
InterfaceMethod<"Prints the type name.",
"void", "printTypeC", (ins "::mlir::Location":$loc)
>,
// It should be possible to use the interface type name as result type
// as well as in the implementation.
InterfaceMethod<"Prints the type name and returns the type as interface.",
"TestTypeInterface", "printTypeRet", (ins "::mlir::Location":$loc),
[{}], /*defaultImplementation=*/[{
emitRemark(loc) << $_type << " - TestRet";
return $_type;
}]
>,
];
let extraClassDeclaration = [{
/// Prints the type name.
void printTypeD(::mlir::Location loc) const {
emitRemark(loc) << *this << " - TestD";
}
}];
let extraTraitClassDeclaration = [{
/// Prints the type name.
void printTypeE(::mlir::Location loc) const {
emitRemark(loc) << $_type << " - TestE";
}
}];
}
def TestExternalTypeInterface : TypeInterface<"TestExternalTypeInterface"> {
let cppNamespace = "::mlir";
let methods = [
InterfaceMethod<"Returns the bitwidth of the type plus 'arg'.",
"unsigned", "getBitwidthPlusArg", (ins "unsigned":$arg)>,
StaticInterfaceMethod<"Returns some value plus 'arg'.",
"unsigned", "staticGetSomeValuePlusArg", (ins "unsigned":$arg)>,
InterfaceMethod<"Returns the argument doubled.",
"unsigned", "getBitwidthPlusDoubleArgument", (ins "unsigned":$arg), "",
"return $_type.getIntOrFloatBitWidth() + 2 * arg;">,
StaticInterfaceMethod<"Returns the argument.",
"unsigned", "staticGetArgument", (ins "unsigned":$arg), "",
"return arg;">,
];
}
def TestExternalFallbackTypeInterface
: TypeInterface<"TestExternalFallbackTypeInterface"> {
let cppNamespace = "::mlir";
let methods = [
InterfaceMethod<"Returns the bitwidth of the given integer type.",
"unsigned", "getBitwidth", (ins), "", "return $_type.getWidth();">,
];
}
def TestExternalAttrInterface : AttrInterface<"TestExternalAttrInterface"> {
let cppNamespace = "::mlir";
let methods = [
InterfaceMethod<"Gets the dialect pointer.", "const ::mlir::Dialect *",
"getDialectPtr">,
StaticInterfaceMethod<"Returns some number.", "int", "getSomeNumber">,
];
}
def TestExternalOpInterface : OpInterface<"TestExternalOpInterface"> {
let cppNamespace = "::mlir";
let methods = [
InterfaceMethod<"Returns the length of the operation name plus arg.",
"unsigned", "getNameLengthPlusArg", (ins "unsigned":$arg)>,
StaticInterfaceMethod<
"Returns the length of the operation name plus arg twice.", "unsigned",
"getNameLengthPlusArgTwice", (ins "unsigned":$arg)>,
InterfaceMethod<
"Returns the length of the product of the operation name and arg.",
"unsigned", "getNameLengthTimesArg", (ins "unsigned":$arg), "",
"return arg * $_op->getName().getStringRef().size();">,
StaticInterfaceMethod<"Returns the length of the operation name minus arg.",
"unsigned", "getNameLengthMinusArg", (ins "unsigned":$arg), "",
"return ConcreteOp::getOperationName().size() - arg;">,
];
}
def TestEffectOpInterface
: EffectOpInterfaceBase<"TestEffectOpInterface",
"::mlir::TestEffects::Effect"> {
let cppNamespace = "::mlir";
}
class TestEffect<string effectName>
: SideEffect<TestEffectOpInterface, effectName, DefaultResource>;
class TestEffects<list<TestEffect> effects = []>
: SideEffectsTraitBase<TestEffectOpInterface, effects>;
def TestConcreteEffect : TestEffect<"TestEffects::Concrete">;
#endif // MLIR_TEST_DIALECT_TEST_INTERFACES
|