1 /*===------- llvm-c/LLJITUtils.h - Advanced LLJIT features --------*- C -*-===*\
3 |* Part of the LLVM Project, under the Apache License v2.0 with LLVM *|
5 |* See https://llvm.org/LICENSE.txt for license information. *|
6 |* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception *|
8 |*===----------------------------------------------------------------------===*|
10 |* This header declares the C interface for extra utilities to be used with *|
11 |* the LLJIT class from the llvm-c/LLJIT.h header. It requires to following *|
12 |* link libraries in addition to libLLVMOrcJIT.a: *|
13 |* - libLLVMOrcDebugging.a *|
15 |* Many exotic languages can interoperate with C code but have a harder time *|
16 |* with C++ due to name mangling. So in addition to C, this interface enables *|
17 |* tools written in such languages. *|
19 |* Note: This interface is experimental. It is *NOT* stable, and may be *|
20 |* changed without warning. Only C API usage documentation is *|
21 |* provided. See the C++ documentation for all higher level ORC API *|
24 \*===----------------------------------------------------------------------===*/
26 #ifndef LLVM_C_LLJITUTILS_H
27 #define LLVM_C_LLJITUTILS_H
29 #include "llvm-c/LLJIT.h"
34 * @defgroup LLVMCExecutionEngineLLJITUtils LLJIT Utilities
35 * @ingroup LLVMCExecutionEngineLLJIT
41 * Install the plugin that submits debug objects to the executor. Executors must
42 * expose the llvm_orc_registerJITLoaderGDBWrapper symbol.
44 LLVMErrorRef
LLVMOrcLLJITEnableDebugSupport(LLVMOrcLLJITRef J
);
52 #endif /* LLVM_C_LLJITUTILS_H */