MLIR  22.0.0git
SMTExtension.cpp
Go to the documentation of this file.
1 //===- SMTExtension.cpp - SMT 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 
12 
13 using namespace mlir;
14 
15 //===----------------------------------------------------------------------===//
16 // Transform op registration
17 //===----------------------------------------------------------------------===//
18 
19 namespace {
20 class SMTExtension : public transform::TransformDialectExtension<SMTExtension> {
21 public:
23 
24  SMTExtension() {
25  registerTransformOps<
26 #define GET_OP_LIST
27 #include "mlir/Dialect/Transform/SMTExtension/SMTExtensionOps.cpp.inc"
28  >();
29  }
30 };
31 } // namespace
32 
34  dialectRegistry.addExtensions<SMTExtension>();
35 }
#define MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(CLASS_NAME)
Definition: TypeID.h:331
The DialectRegistry maps a dialect namespace to a constructor for the matching dialect.
void addExtensions()
Add the given extensions to the registry.
Base class for extensions of the Transform dialect that supports injecting operations into the Transf...
void registerSMTExtension(DialectRegistry &dialectRegistry)
Registers the SMT extension of the Transform dialect in the given registry.
Include the generated interface declarations.