ldc/runtime/jit-rt/cpp-so/context.h

66 lines
2.3 KiB
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//===-- context.h - jit support ---------------------------------*- C++ -*-===//
//
// LDC the LLVM D compiler
//
// This file is distributed under the Boost Software License. See the LICENSE
// file for details.
//
//===----------------------------------------------------------------------===//
//
// Jit compilation context, must be in sync with dynamiccompile.d.
//
//===----------------------------------------------------------------------===//
#pragma once
#include <cstddef> //size_t
#include <cstdint>
#include "param_slice.h"
#include "slice.h"
enum class DumpStage : int {
OriginalModule = 0,
MergedModule = 1,
OptimizedModule = 2,
FinalAsm = 3
};
enum { ApiVersion = LDC_DYNAMIC_COMPILE_API_VERSION };
#ifdef _WIN32
#define EXTERNAL __declspec(dllexport)
#else
#define EXTERNAL __attribute__((visibility("default")))
#endif
#define MAKE_JIT_API_CALL_IMPL(prefix, version) prefix##version
#define MAKE_JIT_API_CALL(prefix, version) \
MAKE_JIT_API_CALL_IMPL(prefix, version)
#define JIT_API_ENTRYPOINT \
MAKE_JIT_API_CALL(rtCompileProcessImplSo, LDC_DYNAMIC_COMPILE_API_VERSION)
#define JIT_REG_BIND_PAYLOAD \
MAKE_JIT_API_CALL(registerBindPayloadImplSo, LDC_DYNAMIC_COMPILE_API_VERSION)
#define JIT_UNREG_BIND_PAYLOAD \
MAKE_JIT_API_CALL(unregisterBindPayloadImplSo, \
LDC_DYNAMIC_COMPILE_API_VERSION)
#define JIT_SET_OPTS \
MAKE_JIT_API_CALL(setDynamicCompilerOptsImpl, LDC_DYNAMIC_COMPILE_API_VERSION)
typedef void (*InterruptPointHandlerT)(void *, const char *action,
const char *object);
typedef void (*FatalHandlerT)(void *, const char *reason);
typedef void (*DumpHandlerT)(void *, DumpStage stage, const char *str,
std::size_t len);
struct Context final {
unsigned optLevel = 0;
unsigned sizeLevel = 0;
InterruptPointHandlerT interruptPointHandler = nullptr;
void *interruptPointHandlerData = nullptr;
FatalHandlerT fatalHandler = nullptr;
void *fatalHandlerData = nullptr;
DumpHandlerT dumpHandler = nullptr;
void *dumpHandlerData = nullptr;
};