//===- BuiltinOps.h - MLIR Builtin Operations -------------------*- C++ -*-===// // // 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 // //===----------------------------------------------------------------------===// // // This file contains the Builtin dialect's operations. // //===----------------------------------------------------------------------===// #ifndef MLIR_IR_BUILTINOPS_H_ #define MLIR_IR_BUILTINOPS_H_ #include "mlir/Bytecode/BytecodeOpInterface.h" #include "mlir/IR/OpImplementation.h" #include "mlir/IR/OwningOpRef.h" #include "mlir/IR/RegionKindInterface.h" #include "mlir/IR/SymbolTable.h" #include "mlir/Interfaces/DataLayoutInterfaces.h" #include "mlir/Interfaces/SideEffectInterfaces.h" #include "llvm/Support/PointerLikeTypeTraits.h" //===----------------------------------------------------------------------===// // Dialect Operations //===----------------------------------------------------------------------===// #define GET_OP_CLASSES #include "mlir/IR/BuiltinOps.h.inc" namespace llvm { /// Allow stealing the low bits of ModuleOp. template <> struct PointerLikeTypeTraits<mlir::ModuleOp> { … }; } // namespace llvm #endif // MLIR_IR_BUILTINOPS_H_