1//===- PDLExtension.cpp - PDL extension for the Transform dialect ---------===//
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//===----------------------------------------------------------------------===//
8
9#include "mlir/Dialect/Transform/PDLExtension/PDLExtension.h"
10#include "mlir/Dialect/PDL/IR/PDL.h"
11#include "mlir/Dialect/PDL/IR/PDLTypes.h"
12#include "mlir/Dialect/PDLInterp/IR/PDLInterp.h"
13#include "mlir/Dialect/Transform/IR/TransformDialect.h"
14#include "mlir/Dialect/Transform/PDLExtension/PDLExtensionOps.h"
15#include "mlir/IR/DialectRegistry.h"
16
17using namespace mlir;
18
19namespace {
20/// Implementation of the TransformHandleTypeInterface for the PDL
21/// OperationType. Accepts any payload operation.
22struct PDLOperationTypeTransformHandleTypeInterfaceImpl
23 : public transform::TransformHandleTypeInterface::ExternalModel<
24 PDLOperationTypeTransformHandleTypeInterfaceImpl,
25 pdl::OperationType> {
26
27 /// Accept any operation.
28 DiagnosedSilenceableFailure
29 checkPayload(Type type, Location loc, ArrayRef<Operation *> payload) const {
30 return DiagnosedSilenceableFailure::success();
31 }
32};
33} // namespace
34
35namespace {
36/// PDL extension of the Transform dialect. This provides transform operations
37/// that connect to PDL matching as well as interfaces for PDL types to be used
38/// with Transform dialect operations.
39class PDLExtension : public transform::TransformDialectExtension<PDLExtension> {
40public:
41 void init() {
42 registerTransformOps<
43#define GET_OP_LIST
44#include "mlir/Dialect/Transform/PDLExtension/PDLExtensionOps.cpp.inc"
45 >();
46
47 addDialectDataInitializer<transform::PDLMatchHooks>(
48 [](transform::PDLMatchHooks &) {});
49
50 // Declare PDL as dependent so we can attach an interface to its type in the
51 // later step.
52 declareDependentDialect<pdl::PDLDialect>();
53
54 // PDLInterp is only relevant if we actually apply the transform IR so
55 // declare it as generated.
56 declareGeneratedDialect<pdl_interp::PDLInterpDialect>();
57
58 // Make PDL OperationType usable as a transform dialect type.
59 addCustomInitializationStep([](MLIRContext *context) {
60 pdl::OperationType::attachInterface<
61 PDLOperationTypeTransformHandleTypeInterfaceImpl>(*context);
62 });
63 }
64};
65} // namespace
66
67void mlir::transform::registerPDLExtension(DialectRegistry &dialectRegistry) {
68 dialectRegistry.addExtensions<PDLExtension>();
69}
70

source code of mlir/lib/Dialect/Transform/PDLExtension/PDLExtension.cpp