| //===- TransformAttrs.cpp - Transform Dialect Attribute Definitions -------===// |
| // |
| // 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/Dialect/Transform/IR/TransformAttrs.h" |
| #include "mlir/Dialect/Transform/IR/TransformDialect.h" |
| #include "mlir/IR/Builders.h" |
| #include "mlir/IR/BuiltinTypes.h" |
| #include "mlir/IR/DialectImplementation.h" |
| #include "mlir/IR/OpImplementation.h" |
| |
| #include "llvm/ADT/TypeSwitch.h" |
| |
| using namespace mlir; |
| |
| // These are automatically generated by ODS but are not used as the Transform |
| // dialect uses a different dispatch mechanism to support dialect extensions. |
| [[maybe_unused]] static OptionalParseResult |
| generatedAttributeParser(AsmParser &parser, StringRef *mnemonic, Type type, |
| Attribute &value); |
| [[maybe_unused]] static LogicalResult |
| generatedAttributePrinter(Attribute def, AsmPrinter &printer); |
| |
| #define GET_ATTRDEF_CLASSES |
| #include "mlir/Dialect/Transform/IR/TransformAttrs.cpp.inc" |
| |
| #include "mlir/Dialect/Transform/IR/TransformDialectEnums.cpp.inc" |
| |
| void transform::TransformDialect::initializeAttributes() { |
| addAttributesChecked< |
| #define GET_ATTRDEF_LIST |
| #include "mlir/Dialect/Transform/IR/TransformAttrs.cpp.inc" |
| >(); |
| } |