//===- PDL.cpp - C Interface for PDL dialect ------------------------------===// // // 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 // //===----------------------------------------------------------------------===// #include "mlir-c/Dialect/PDL.h" #include "mlir/CAPI/Registration.h" #include "mlir/Dialect/PDL/IR/PDL.h" #include "mlir/Dialect/PDL/IR/PDLOps.h" #include "mlir/Dialect/PDL/IR/PDLTypes.h" usingnamespacemlir; MLIR_DEFINE_CAPI_DIALECT_REGISTRATION(PDL, pdl, pdl::PDLDialect) //===---------------------------------------------------------------------===// // PDLType //===---------------------------------------------------------------------===// bool mlirTypeIsAPDLType(MlirType type) { … } //===---------------------------------------------------------------------===// // AttributeType //===---------------------------------------------------------------------===// bool mlirTypeIsAPDLAttributeType(MlirType type) { … } MlirType mlirPDLAttributeTypeGet(MlirContext ctx) { … } //===---------------------------------------------------------------------===// // OperationType //===---------------------------------------------------------------------===// bool mlirTypeIsAPDLOperationType(MlirType type) { … } MlirType mlirPDLOperationTypeGet(MlirContext ctx) { … } //===---------------------------------------------------------------------===// // RangeType //===---------------------------------------------------------------------===// bool mlirTypeIsAPDLRangeType(MlirType type) { … } MlirType mlirPDLRangeTypeGet(MlirType elementType) { … } MlirType mlirPDLRangeTypeGetElementType(MlirType type) { … } //===---------------------------------------------------------------------===// // TypeType //===---------------------------------------------------------------------===// bool mlirTypeIsAPDLTypeType(MlirType type) { … } MlirType mlirPDLTypeTypeGet(MlirContext ctx) { … } //===---------------------------------------------------------------------===// // ValueType //===---------------------------------------------------------------------===// bool mlirTypeIsAPDLValueType(MlirType type) { … } MlirType mlirPDLValueTypeGet(MlirContext ctx) { … }