//===- IndexOps.h - Index operation declarations ------------------*- 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 // //===----------------------------------------------------------------------===// #ifndef MLIR_DIALECT_INDEX_IR_INDEXOPS_H #define MLIR_DIALECT_INDEX_IR_INDEXOPS_H #include "mlir/Bytecode/BytecodeOpInterface.h" #include "mlir/Dialect/Index/IR/IndexAttrs.h" #include "mlir/IR/BuiltinTypes.h" #include "mlir/IR/OpDefinition.h" #include "mlir/IR/OpImplementation.h" #include "mlir/Interfaces/CastInterfaces.h" #include "mlir/Interfaces/InferIntRangeInterface.h" #include "mlir/Interfaces/InferTypeOpInterface.h" #include "mlir/Interfaces/SideEffectInterfaces.h" //===----------------------------------------------------------------------===// // Forward Declarations //===----------------------------------------------------------------------===// namespace mlir { class PatternRewriter; namespace index { enum class IndexCmpPredicate : uint32_t; class IndexCmpPredicateAttr; } // namespace index } // namespace mlir //===----------------------------------------------------------------------===// // ODS-Generated Declarations //===----------------------------------------------------------------------===// #define GET_OP_CLASSES #include "mlir/Dialect/Index/IR/IndexOps.h.inc" #endif // MLIR_DIALECT_INDEX_IR_INDEXOPS_H