2020-09-15 18:04:59 +08:00
|
|
|
//===- Support.cpp - Helpers for C interface to MLIR API ------------------===//
|
|
|
|
//
|
|
|
|
// 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
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2022-03-17 06:31:08 +08:00
|
|
|
#include "mlir/CAPI/Support.h"
|
2021-11-02 19:39:36 +08:00
|
|
|
#include "llvm/ADT/StringRef.h"
|
2020-09-15 18:04:59 +08:00
|
|
|
|
|
|
|
#include <cstring>
|
|
|
|
|
|
|
|
MlirStringRef mlirStringRefCreateFromCString(const char *str) {
|
|
|
|
return mlirStringRefCreate(str, strlen(str));
|
|
|
|
}
|
2021-11-02 19:39:36 +08:00
|
|
|
|
|
|
|
bool mlirStringRefEqual(MlirStringRef string, MlirStringRef other) {
|
|
|
|
return llvm::StringRef(string.data, string.length) ==
|
|
|
|
llvm::StringRef(other.data, other.length);
|
|
|
|
}
|
2022-03-17 06:31:08 +08:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// TypeID API.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
MlirTypeID mlirTypeIDCreate(const void *ptr) {
|
|
|
|
assert(reinterpret_cast<uintptr_t>(ptr) % 8 == 0 &&
|
|
|
|
"ptr must be 8 byte aligned");
|
|
|
|
// This is essentially a no-op that returns back `ptr`, but by going through
|
|
|
|
// the `TypeID` functions we can get compiler errors in case the `TypeID`
|
|
|
|
// api/representation changes
|
|
|
|
return wrap(mlir::TypeID::getFromOpaquePointer(ptr));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool mlirTypeIDEqual(MlirTypeID typeID1, MlirTypeID typeID2) {
|
|
|
|
return unwrap(typeID1) == unwrap(typeID2);
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t mlirTypeIDHashValue(MlirTypeID typeID) {
|
|
|
|
return hash_value(unwrap(typeID));
|
|
|
|
}
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// TypeIDAllocator API.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
MlirTypeIDAllocator mlirTypeIDAllocatorCreate() {
|
|
|
|
return wrap(new mlir::TypeIDAllocator());
|
|
|
|
}
|
|
|
|
|
|
|
|
void mlirTypeIDAllocatorDestroy(MlirTypeIDAllocator allocator) {
|
|
|
|
delete unwrap(allocator);
|
|
|
|
}
|
|
|
|
|
|
|
|
MlirTypeID mlirTypeIDAllocatorAllocateTypeID(MlirTypeIDAllocator allocator) {
|
|
|
|
return wrap(unwrap(allocator)->allocate());
|
|
|
|
}
|