39 lines
1.2 KiB
C
39 lines
1.2 KiB
C
//===-- LLVMIR.h - C Interface for MLIR LLVMIR Target -------------*- 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 header declares the C interface to target LLVMIR with MLIR.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef MLIR_C_TARGET_LLVMIR_H
|
|
#define MLIR_C_TARGET_LLVMIR_H
|
|
|
|
#include "mlir-c/IR.h"
|
|
#include "mlir-c/Support.h"
|
|
#include "llvm-c/Support.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/// Translate operation that satisfies LLVM dialect module requirements into an
|
|
/// LLVM IR module living in the given context. This translates operations from
|
|
/// any dilalect that has a registered implementation of
|
|
/// LLVMTranslationDialectInterface.
|
|
///
|
|
/// \returns the generated LLVM IR Module from the translated MLIR module, it is
|
|
/// owned by the caller.
|
|
MLIR_CAPI_EXPORTED LLVMModuleRef
|
|
mlirTranslateModuleToLLVMIR(MlirOperation module, LLVMContextRef context);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // MLIR_C_TARGET_LLVMIR_H
|