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/Dialect/PDL/IR/PDL.h" 18 #include "mlir/Interfaces/InferTypeOpInterface.h" 19 #include "mlir/Interfaces/SideEffectInterfaces.h" 20 21 //===----------------------------------------------------------------------===// 22 // PDLInterp Dialect 23 //===----------------------------------------------------------------------===// 24 25 #include "mlir/Dialect/PDLInterp/IR/PDLInterpOpsDialect.h.inc" 26 27 //===----------------------------------------------------------------------===// 28 // PDLInterp Dialect Operations 29 //===----------------------------------------------------------------------===// 30 31 #define GET_OP_CLASSES 32 #include "mlir/Dialect/PDLInterp/IR/PDLInterpOps.h.inc" 33 34 #endif // MLIR_DIALECT_PDLINTERP_IR_PDLINTERP_H_ 35