#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"
using namespace mlir;
MLIR_DEFINE_CAPI_DIALECT_REGISTRATION(PDL, pdl, pdl::PDLDialect)
bool mlirTypeIsAPDLType(MlirType type) {
return isa<pdl::PDLType>(unwrap(type));
}
bool mlirTypeIsAPDLAttributeType(MlirType type) {
return isa<pdl::AttributeType>(unwrap(type));
}
MlirType mlirPDLAttributeTypeGet(MlirContext ctx) {
return wrap(pdl::AttributeType::get(unwrap(ctx)));
}
bool mlirTypeIsAPDLOperationType(MlirType type) {
return isa<pdl::OperationType>(unwrap(type));
}
MlirType mlirPDLOperationTypeGet(MlirContext ctx) {
return wrap(pdl::OperationType::get(unwrap(ctx)));
}
bool mlirTypeIsAPDLRangeType(MlirType type) {
return isa<pdl::RangeType>(unwrap(type));
}
MlirType mlirPDLRangeTypeGet(MlirType elementType) {
return wrap(pdl::RangeType::get(unwrap(elementType)));
}
MlirType mlirPDLRangeTypeGetElementType(MlirType type) {
return wrap(cast<pdl::RangeType>(unwrap(type)).getElementType());
}
bool mlirTypeIsAPDLTypeType(MlirType type) {
return isa<pdl::TypeType>(unwrap(type));
}
MlirType mlirPDLTypeTypeGet(MlirContext ctx) {
return wrap(pdl::TypeType::get(unwrap(ctx)));
}
bool mlirTypeIsAPDLValueType(MlirType type) {
return isa<pdl::ValueType>(unwrap(type));
}
MlirType mlirPDLValueTypeGet(MlirContext ctx) {
return wrap(pdl::ValueType::get(unwrap(ctx)));
}