mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-02 08:01:11 +03:00
35 lines
1.1 KiB
C++
35 lines
1.1 KiB
C++
//===-- compile.cpp -------------------------------------------------------===//
|
||
//
|
||
// LDC – the LLVM D compiler
|
||
//
|
||
// This file is distributed under the Boost Software License. See the LICENSE
|
||
// file for details.
|
||
//
|
||
//===----------------------------------------------------------------------===//
|
||
//
|
||
// Jit runtime - executable part.
|
||
// Defines jit modules list head and and access jit shared library entry point.
|
||
//
|
||
//===----------------------------------------------------------------------===//
|
||
|
||
#include <cstddef> // size_t
|
||
|
||
struct Context;
|
||
|
||
extern "C" {
|
||
|
||
// Silence missing-variable-declaration clang warning
|
||
extern void *dynamiccompile_modules_head;
|
||
|
||
void *dynamiccompile_modules_head = nullptr;
|
||
#ifdef _WIN32
|
||
__declspec(dllimport)
|
||
#endif
|
||
extern void rtCompileProcessImplSo(const void *modlist_head,
|
||
const Context *context,
|
||
std::size_t contextSize);
|
||
|
||
void rtCompileProcessImpl(const Context *context, std::size_t contextSize) {
|
||
rtCompileProcessImplSo(dynamiccompile_modules_head, context, contextSize);
|
||
}
|
||
}
|