1//===- PDLInterp.h - PDL Interpreter dialect --------------------*- C++ -*-===//
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// This file declares the interpreter dialect for the PDL pattern descriptor
10// language.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef MLIR_DIALECT_PDLINTERP_IR_PDLINTERP_H_
15#define MLIR_DIALECT_PDLINTERP_IR_PDLINTERP_H_
16
17#include "mlir/Bytecode/BytecodeOpInterface.h"
18#include "mlir/Dialect/PDL/IR/PDL.h"
19#include "mlir/Dialect/PDL/IR/PDLTypes.h"
20#include "mlir/IR/SymbolTable.h"
21#include "mlir/Interfaces/FunctionInterfaces.h"
22#include "mlir/Interfaces/InferTypeOpInterface.h"
23#include "mlir/Interfaces/SideEffectInterfaces.h"
24
25//===----------------------------------------------------------------------===//
26// PDLInterp Dialect
27//===----------------------------------------------------------------------===//
28
29#include "mlir/Dialect/PDLInterp/IR/PDLInterpOpsDialect.h.inc"
30
31//===----------------------------------------------------------------------===//
32// PDLInterp Dialect Operations
33//===----------------------------------------------------------------------===//
34
35#define GET_OP_CLASSES
36#include "mlir/Dialect/PDLInterp/IR/PDLInterpOps.h.inc"
37
38#endif // MLIR_DIALECT_PDLINTERP_IR_PDLINTERP_H_
39

source code of mlir/include/mlir/Dialect/PDLInterp/IR/PDLInterp.h