1 /*===----------- llvm-c/OrcBindings.h - Orc Lib C Iface ---------*- C++ -*-===*\
3 |* The LLVM Compiler Infrastructure *|
5 |* This file is distributed under the University of Illinois Open Source *|
6 |* License. See LICENSE.TXT for details. *|
8 |*===----------------------------------------------------------------------===*|
10 |* This header declares the C interface to libLLVMOrcJIT.a, which implements *|
11 |* JIT compilation of LLVM IR. *|
13 |* Many exotic languages can interoperate with C code but have a harder time *|
14 |* with C++ due to name mangling. So in addition to C, this interface enables *|
15 |* tools written in such languages. *|
17 |* Note: This interface is experimental. It is *NOT* stable, and may be *|
18 |* changed without warning. *|
20 \*===----------------------------------------------------------------------===*/
22 #ifndef LLVM_C_ORCBINDINGS_H
23 #define LLVM_C_ORCBINDINGS_H
25 #include "llvm-c/Object.h"
26 #include "llvm-c/TargetMachine.h"
32 typedef struct LLVMOpaqueSharedModule
*LLVMSharedModuleRef
;
33 typedef struct LLVMOrcOpaqueJITStack
*LLVMOrcJITStackRef
;
34 typedef uint32_t LLVMOrcModuleHandle
;
35 typedef uint64_t LLVMOrcTargetAddress
;
36 typedef uint64_t (*LLVMOrcSymbolResolverFn
)(const char *Name
, void *LookupCtx
);
37 typedef uint64_t (*LLVMOrcLazyCompileCallbackFn
)(LLVMOrcJITStackRef JITStack
,
40 typedef enum { LLVMOrcErrSuccess
= 0, LLVMOrcErrGeneric
} LLVMOrcErrorCode
;
43 * Turn an LLVMModuleRef into an LLVMSharedModuleRef.
45 * The JIT uses shared ownership for LLVM modules, since it is generally
46 * difficult to know when the JIT will be finished with a module (and the JIT
47 * has no way of knowing when a user may be finished with one).
49 * Calling this method with an LLVMModuleRef creates a shared-pointer to the
50 * module, and returns a reference to this shared pointer.
52 * The shared module should be disposed when finished with by calling
53 * LLVMOrcDisposeSharedModule (not LLVMDisposeModule). The Module will be
54 * deleted when the last shared pointer owner relinquishes it.
57 LLVMSharedModuleRef
LLVMOrcMakeSharedModule(LLVMModuleRef Mod
);
60 * Dispose of a shared module.
62 * The module should not be accessed after this call. The module will be
63 * deleted once all clients (including the JIT itself) have released their
67 void LLVMOrcDisposeSharedModuleRef(LLVMSharedModuleRef SharedMod
);
70 * Create an ORC JIT stack.
72 * The client owns the resulting stack, and must call OrcDisposeInstance(...)
73 * to destroy it and free its memory. The JIT stack will take ownership of the
74 * TargetMachine, which will be destroyed when the stack is destroyed. The
75 * client should not attempt to dispose of the Target Machine, or it will result
78 LLVMOrcJITStackRef
LLVMOrcCreateInstance(LLVMTargetMachineRef TM
);
81 * Get the error message for the most recent error (if any).
83 * This message is owned by the ORC JIT Stack and will be freed when the stack
84 * is disposed of by LLVMOrcDisposeInstance.
86 const char *LLVMOrcGetErrorMsg(LLVMOrcJITStackRef JITStack
);
89 * Mangle the given symbol.
90 * Memory will be allocated for MangledSymbol to hold the result. The client
92 void LLVMOrcGetMangledSymbol(LLVMOrcJITStackRef JITStack
, char **MangledSymbol
,
96 * Dispose of a mangled symbol.
98 void LLVMOrcDisposeMangledSymbol(char *MangledSymbol
);
101 * Create a lazy compile callback.
104 LLVMOrcCreateLazyCompileCallback(LLVMOrcJITStackRef JITStack
,
105 LLVMOrcTargetAddress
*RetAddr
,
106 LLVMOrcLazyCompileCallbackFn Callback
,
110 * Create a named indirect call stub.
112 LLVMOrcErrorCode
LLVMOrcCreateIndirectStub(LLVMOrcJITStackRef JITStack
,
113 const char *StubName
,
114 LLVMOrcTargetAddress InitAddr
);
117 * Set the pointer for the given indirect stub.
119 LLVMOrcErrorCode
LLVMOrcSetIndirectStubPointer(LLVMOrcJITStackRef JITStack
,
120 const char *StubName
,
121 LLVMOrcTargetAddress NewAddr
);
124 * Add module to be eagerly compiled.
127 LLVMOrcAddEagerlyCompiledIR(LLVMOrcJITStackRef JITStack
,
128 LLVMOrcModuleHandle
*RetHandle
,
129 LLVMSharedModuleRef Mod
,
130 LLVMOrcSymbolResolverFn SymbolResolver
,
131 void *SymbolResolverCtx
);
134 * Add module to be lazily compiled one function at a time.
137 LLVMOrcAddLazilyCompiledIR(LLVMOrcJITStackRef JITStack
,
138 LLVMOrcModuleHandle
*RetHandle
,
139 LLVMSharedModuleRef Mod
,
140 LLVMOrcSymbolResolverFn SymbolResolver
,
141 void *SymbolResolverCtx
);
144 * Add an object file.
146 * This method takes ownership of the given memory buffer and attempts to add
147 * it to the JIT as an object file.
148 * Clients should *not* dispose of the 'Obj' argument: the JIT will manage it
149 * from this call onwards.
151 LLVMOrcErrorCode
LLVMOrcAddObjectFile(LLVMOrcJITStackRef JITStack
,
152 LLVMOrcModuleHandle
*RetHandle
,
153 LLVMMemoryBufferRef Obj
,
154 LLVMOrcSymbolResolverFn SymbolResolver
,
155 void *SymbolResolverCtx
);
158 * Remove a module set from the JIT.
160 * This works for all modules that can be added via OrcAdd*, including object
163 LLVMOrcErrorCode
LLVMOrcRemoveModule(LLVMOrcJITStackRef JITStack
,
164 LLVMOrcModuleHandle H
);
167 * Get symbol address from JIT instance.
169 LLVMOrcErrorCode
LLVMOrcGetSymbolAddress(LLVMOrcJITStackRef JITStack
,
170 LLVMOrcTargetAddress
*RetAddr
,
171 const char *SymbolName
);
174 * Dispose of an ORC JIT stack.
176 LLVMOrcErrorCode
LLVMOrcDisposeInstance(LLVMOrcJITStackRef JITStack
);
180 #endif /* extern "C" */
182 #endif /* LLVM_C_ORCBINDINGS_H */