blob: 3771a8f2f59dfa496676eb2d0f86cbaa07adadf0 [file] [log] [blame]
Gordon Henriksen2a8cd892007-12-23 16:59:28 +00001//===-- ExecutionEngineBindings.cpp - C bindings for EEs ------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Gordon Henriksen2a8cd892007-12-23 16:59:28 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the C bindings for the ExecutionEngine library.
11//
12//===----------------------------------------------------------------------===//
13
Gordon Henriksen2a8cd892007-12-23 16:59:28 +000014#include "llvm-c/ExecutionEngine.h"
Gordon Henriksen2a8cd892007-12-23 16:59:28 +000015#include "llvm/ExecutionEngine/ExecutionEngine.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000016#include "llvm/ExecutionEngine/GenericValue.h"
Filip Pizlo3fdbaff2013-05-22 02:46:43 +000017#include "llvm/ExecutionEngine/RTDyldMemoryManager.h"
Filip Pizlodec20e42013-05-01 20:59:00 +000018#include "llvm/IR/DerivedTypes.h"
19#include "llvm/IR/Module.h"
Torok Edwin56d06592009-07-11 20:10:48 +000020#include "llvm/Support/ErrorHandling.h"
Anton Korobeynikov579f0712008-02-20 11:08:44 +000021#include <cstring>
Gordon Henriksen2a8cd892007-12-23 16:59:28 +000022
23using namespace llvm;
24
Chandler Carruthf58e3762014-04-22 03:04:17 +000025#define DEBUG_TYPE "jit"
26
Eric Christopher04d4e932013-04-22 22:47:22 +000027// Wrapping the C bindings types.
Filip Pizlodec20e42013-05-01 20:59:00 +000028DEFINE_SIMPLE_CONVERSION_FUNCTIONS(GenericValue, LLVMGenericValueRef)
Eric Christopher04d4e932013-04-22 22:47:22 +000029
Eric Christopher04d4e932013-04-22 22:47:22 +000030
Juergen Ributzka5fe955c2014-01-23 19:23:28 +000031inline LLVMTargetMachineRef wrap(const TargetMachine *P) {
32 return
33 reinterpret_cast<LLVMTargetMachineRef>(const_cast<TargetMachine*>(P));
34}
35
Gordon Henriksen2a8cd892007-12-23 16:59:28 +000036/*===-- Operations on generic values --------------------------------------===*/
37
38LLVMGenericValueRef LLVMCreateGenericValueOfInt(LLVMTypeRef Ty,
39 unsigned long long N,
Chris Lattner25963c62010-01-09 22:27:07 +000040 LLVMBool IsSigned) {
Gordon Henriksen2a8cd892007-12-23 16:59:28 +000041 GenericValue *GenVal = new GenericValue();
42 GenVal->IntVal = APInt(unwrap<IntegerType>(Ty)->getBitWidth(), N, IsSigned);
43 return wrap(GenVal);
44}
45
46LLVMGenericValueRef LLVMCreateGenericValueOfPointer(void *P) {
47 GenericValue *GenVal = new GenericValue();
48 GenVal->PointerVal = P;
49 return wrap(GenVal);
50}
51
52LLVMGenericValueRef LLVMCreateGenericValueOfFloat(LLVMTypeRef TyRef, double N) {
53 GenericValue *GenVal = new GenericValue();
54 switch (unwrap(TyRef)->getTypeID()) {
55 case Type::FloatTyID:
56 GenVal->FloatVal = N;
57 break;
58 case Type::DoubleTyID:
59 GenVal->DoubleVal = N;
60 break;
61 default:
Torok Edwinfbcc6632009-07-14 16:55:14 +000062 llvm_unreachable("LLVMGenericValueToFloat supports only float and double.");
Gordon Henriksen2a8cd892007-12-23 16:59:28 +000063 }
64 return wrap(GenVal);
65}
66
67unsigned LLVMGenericValueIntWidth(LLVMGenericValueRef GenValRef) {
68 return unwrap(GenValRef)->IntVal.getBitWidth();
69}
70
71unsigned long long LLVMGenericValueToInt(LLVMGenericValueRef GenValRef,
Chris Lattner25963c62010-01-09 22:27:07 +000072 LLVMBool IsSigned) {
Gordon Henriksen2a8cd892007-12-23 16:59:28 +000073 GenericValue *GenVal = unwrap(GenValRef);
74 if (IsSigned)
75 return GenVal->IntVal.getSExtValue();
76 else
77 return GenVal->IntVal.getZExtValue();
78}
79
80void *LLVMGenericValueToPointer(LLVMGenericValueRef GenVal) {
81 return unwrap(GenVal)->PointerVal;
82}
83
84double LLVMGenericValueToFloat(LLVMTypeRef TyRef, LLVMGenericValueRef GenVal) {
85 switch (unwrap(TyRef)->getTypeID()) {
86 case Type::FloatTyID:
87 return unwrap(GenVal)->FloatVal;
88 case Type::DoubleTyID:
89 return unwrap(GenVal)->DoubleVal;
90 default:
Torok Edwinfbcc6632009-07-14 16:55:14 +000091 llvm_unreachable("LLVMGenericValueToFloat supports only float and double.");
Gordon Henriksen2a8cd892007-12-23 16:59:28 +000092 }
93}
94
95void LLVMDisposeGenericValue(LLVMGenericValueRef GenVal) {
96 delete unwrap(GenVal);
97}
98
99/*===-- Operations on execution engines -----------------------------------===*/
100
Erick Tryzelaarad0e0cb2010-03-02 23:58:54 +0000101LLVMBool LLVMCreateExecutionEngineForModule(LLVMExecutionEngineRef *OutEE,
102 LLVMModuleRef M,
103 char **OutError) {
Gordon Henriksen2a8cd892007-12-23 16:59:28 +0000104 std::string Error;
Rafael Espindola2a8a2792014-08-19 04:04:25 +0000105 EngineBuilder builder(std::unique_ptr<Module>(unwrap(M)));
Reid Klecknerfc8a2d52009-07-18 00:42:18 +0000106 builder.setEngineKind(EngineKind::Either)
107 .setErrorStr(&Error);
108 if (ExecutionEngine *EE = builder.create()){
Gordon Henriksen2a8cd892007-12-23 16:59:28 +0000109 *OutEE = wrap(EE);
110 return 0;
111 }
112 *OutError = strdup(Error.c_str());
113 return 1;
114}
115
Erick Tryzelaarad0e0cb2010-03-02 23:58:54 +0000116LLVMBool LLVMCreateInterpreterForModule(LLVMExecutionEngineRef *OutInterp,
117 LLVMModuleRef M,
118 char **OutError) {
Gordon Henriksen2a8cd892007-12-23 16:59:28 +0000119 std::string Error;
Rafael Espindola2a8a2792014-08-19 04:04:25 +0000120 EngineBuilder builder(std::unique_ptr<Module>(unwrap(M)));
Reid Klecknerfc8a2d52009-07-18 00:42:18 +0000121 builder.setEngineKind(EngineKind::Interpreter)
122 .setErrorStr(&Error);
123 if (ExecutionEngine *Interp = builder.create()) {
Gordon Henriksen2a8cd892007-12-23 16:59:28 +0000124 *OutInterp = wrap(Interp);
125 return 0;
126 }
127 *OutError = strdup(Error.c_str());
128 return 1;
129}
130
Erick Tryzelaarad0e0cb2010-03-02 23:58:54 +0000131LLVMBool LLVMCreateJITCompilerForModule(LLVMExecutionEngineRef *OutJIT,
132 LLVMModuleRef M,
133 unsigned OptLevel,
134 char **OutError) {
Gordon Henriksen2a8cd892007-12-23 16:59:28 +0000135 std::string Error;
Rafael Espindola2a8a2792014-08-19 04:04:25 +0000136 EngineBuilder builder(std::unique_ptr<Module>(unwrap(M)));
Reid Klecknerfc8a2d52009-07-18 00:42:18 +0000137 builder.setEngineKind(EngineKind::JIT)
138 .setErrorStr(&Error)
139 .setOptLevel((CodeGenOpt::Level)OptLevel);
140 if (ExecutionEngine *JIT = builder.create()) {
Gordon Henriksen2a8cd892007-12-23 16:59:28 +0000141 *OutJIT = wrap(JIT);
142 return 0;
143 }
144 *OutError = strdup(Error.c_str());
145 return 1;
146}
147
Filip Pizlo85e0d272013-05-01 22:58:00 +0000148void LLVMInitializeMCJITCompilerOptions(LLVMMCJITCompilerOptions *PassedOptions,
149 size_t SizeOfPassedOptions) {
150 LLVMMCJITCompilerOptions options;
Filip Pizlo3fdbaff2013-05-22 02:46:43 +0000151 memset(&options, 0, sizeof(options)); // Most fields are zero by default.
Filip Pizlo85e0d272013-05-01 22:58:00 +0000152 options.CodeModel = LLVMCodeModelJITDefault;
Filip Pizlo85e0d272013-05-01 22:58:00 +0000153
154 memcpy(PassedOptions, &options,
155 std::min(sizeof(options), SizeOfPassedOptions));
156}
157
158LLVMBool LLVMCreateMCJITCompilerForModule(
159 LLVMExecutionEngineRef *OutJIT, LLVMModuleRef M,
160 LLVMMCJITCompilerOptions *PassedOptions, size_t SizeOfPassedOptions,
161 char **OutError) {
Andrew Kaylor31be5ef2013-04-29 17:49:40 +0000162 LLVMMCJITCompilerOptions options;
163 // If the user passed a larger sized options struct, then they were compiled
164 // against a newer LLVM. Tell them that something is wrong.
165 if (SizeOfPassedOptions > sizeof(options)) {
166 *OutError = strdup(
Filip Pizlo85e0d272013-05-01 22:58:00 +0000167 "Refusing to use options struct that is larger than my own; assuming "
168 "LLVM library mismatch.");
Andrew Kaylor31be5ef2013-04-29 17:49:40 +0000169 return 1;
170 }
171
172 // Defend against the user having an old version of the API by ensuring that
173 // any fields they didn't see are cleared. We must defend against fields being
174 // set to the bitwise equivalent of zero, and assume that this means "do the
175 // default" as if that option hadn't been available.
Filip Pizlo85e0d272013-05-01 22:58:00 +0000176 LLVMInitializeMCJITCompilerOptions(&options, sizeof(options));
Andrew Kaylor31be5ef2013-04-29 17:49:40 +0000177 memcpy(&options, PassedOptions, SizeOfPassedOptions);
178
179 TargetOptions targetOptions;
180 targetOptions.NoFramePointerElim = options.NoFramePointerElim;
Filip Pizlo85e0d272013-05-01 22:58:00 +0000181 targetOptions.EnableFastISel = options.EnableFastISel;
Andrew Kaylor31be5ef2013-04-29 17:49:40 +0000182
183 std::string Error;
Rafael Espindola2a8a2792014-08-19 04:04:25 +0000184 EngineBuilder builder(std::unique_ptr<Module>(unwrap(M)));
Andrew Kaylor31be5ef2013-04-29 17:49:40 +0000185 builder.setEngineKind(EngineKind::JIT)
186 .setErrorStr(&Error)
Eric Christopherb9fd9ed2014-08-07 22:02:54 +0000187 .setUseMCJIT(true)
Andrew Kaylor31be5ef2013-04-29 17:49:40 +0000188 .setOptLevel((CodeGenOpt::Level)options.OptLevel)
Filip Pizlo85e0d272013-05-01 22:58:00 +0000189 .setCodeModel(unwrap(options.CodeModel))
Andrew Kaylor31be5ef2013-04-29 17:49:40 +0000190 .setTargetOptions(targetOptions);
Filip Pizlo3fdbaff2013-05-22 02:46:43 +0000191 if (options.MCJMM)
192 builder.setMCJITMemoryManager(unwrap(options.MCJMM));
Andrew Kaylor31be5ef2013-04-29 17:49:40 +0000193 if (ExecutionEngine *JIT = builder.create()) {
194 *OutJIT = wrap(JIT);
195 return 0;
196 }
197 *OutError = strdup(Error.c_str());
198 return 1;
199}
200
Erick Tryzelaarad0e0cb2010-03-02 23:58:54 +0000201LLVMBool LLVMCreateExecutionEngine(LLVMExecutionEngineRef *OutEE,
202 LLVMModuleProviderRef MP,
203 char **OutError) {
204 /* The module provider is now actually a module. */
205 return LLVMCreateExecutionEngineForModule(OutEE,
206 reinterpret_cast<LLVMModuleRef>(MP),
207 OutError);
208}
209
210LLVMBool LLVMCreateInterpreter(LLVMExecutionEngineRef *OutInterp,
211 LLVMModuleProviderRef MP,
212 char **OutError) {
213 /* The module provider is now actually a module. */
214 return LLVMCreateInterpreterForModule(OutInterp,
215 reinterpret_cast<LLVMModuleRef>(MP),
216 OutError);
217}
218
219LLVMBool LLVMCreateJITCompiler(LLVMExecutionEngineRef *OutJIT,
220 LLVMModuleProviderRef MP,
221 unsigned OptLevel,
222 char **OutError) {
223 /* The module provider is now actually a module. */
224 return LLVMCreateJITCompilerForModule(OutJIT,
225 reinterpret_cast<LLVMModuleRef>(MP),
226 OptLevel, OutError);
227}
228
229
Gordon Henriksen2a8cd892007-12-23 16:59:28 +0000230void LLVMDisposeExecutionEngine(LLVMExecutionEngineRef EE) {
231 delete unwrap(EE);
232}
233
234void LLVMRunStaticConstructors(LLVMExecutionEngineRef EE) {
235 unwrap(EE)->runStaticConstructorsDestructors(false);
236}
237
238void LLVMRunStaticDestructors(LLVMExecutionEngineRef EE) {
239 unwrap(EE)->runStaticConstructorsDestructors(true);
240}
241
242int LLVMRunFunctionAsMain(LLVMExecutionEngineRef EE, LLVMValueRef F,
243 unsigned ArgC, const char * const *ArgV,
244 const char * const *EnvP) {
Andrew Kaylor31be5ef2013-04-29 17:49:40 +0000245 unwrap(EE)->finalizeObject();
246
Gordon Henriksen2a8cd892007-12-23 16:59:28 +0000247 std::vector<std::string> ArgVec;
248 for (unsigned I = 0; I != ArgC; ++I)
249 ArgVec.push_back(ArgV[I]);
250
251 return unwrap(EE)->runFunctionAsMain(unwrap<Function>(F), ArgVec, EnvP);
252}
253
254LLVMGenericValueRef LLVMRunFunction(LLVMExecutionEngineRef EE, LLVMValueRef F,
255 unsigned NumArgs,
256 LLVMGenericValueRef *Args) {
Andrew Kaylor31be5ef2013-04-29 17:49:40 +0000257 unwrap(EE)->finalizeObject();
258
Gordon Henriksen2a8cd892007-12-23 16:59:28 +0000259 std::vector<GenericValue> ArgVec;
260 ArgVec.reserve(NumArgs);
261 for (unsigned I = 0; I != NumArgs; ++I)
262 ArgVec.push_back(*unwrap(Args[I]));
263
264 GenericValue *Result = new GenericValue();
265 *Result = unwrap(EE)->runFunction(unwrap<Function>(F), ArgVec);
266 return wrap(Result);
267}
268
269void LLVMFreeMachineCodeForFunction(LLVMExecutionEngineRef EE, LLVMValueRef F) {
Eric Christopherb9fd9ed2014-08-07 22:02:54 +0000270 unwrap(EE)->freeMachineCodeForFunction(unwrap<Function>(F));
Gordon Henriksen2a8cd892007-12-23 16:59:28 +0000271}
272
Erick Tryzelaarad0e0cb2010-03-02 23:58:54 +0000273void LLVMAddModule(LLVMExecutionEngineRef EE, LLVMModuleRef M){
Rafael Espindola2a8a2792014-08-19 04:04:25 +0000274 unwrap(EE)->addModule(std::unique_ptr<Module>(unwrap(M)));
Erick Tryzelaarad0e0cb2010-03-02 23:58:54 +0000275}
276
Gordon Henriksen2a8cd892007-12-23 16:59:28 +0000277void LLVMAddModuleProvider(LLVMExecutionEngineRef EE, LLVMModuleProviderRef MP){
Erick Tryzelaarad0e0cb2010-03-02 23:58:54 +0000278 /* The module provider is now actually a module. */
279 LLVMAddModule(EE, reinterpret_cast<LLVMModuleRef>(MP));
280}
281
282LLVMBool LLVMRemoveModule(LLVMExecutionEngineRef EE, LLVMModuleRef M,
283 LLVMModuleRef *OutMod, char **OutError) {
284 Module *Mod = unwrap(M);
285 unwrap(EE)->removeModule(Mod);
286 *OutMod = wrap(Mod);
287 return 0;
Gordon Henriksen2a8cd892007-12-23 16:59:28 +0000288}
289
Chris Lattner25963c62010-01-09 22:27:07 +0000290LLVMBool LLVMRemoveModuleProvider(LLVMExecutionEngineRef EE,
291 LLVMModuleProviderRef MP,
292 LLVMModuleRef *OutMod, char **OutError) {
Erick Tryzelaarad0e0cb2010-03-02 23:58:54 +0000293 /* The module provider is now actually a module. */
294 return LLVMRemoveModule(EE, reinterpret_cast<LLVMModuleRef>(MP), OutMod,
295 OutError);
Gordon Henriksen2a8cd892007-12-23 16:59:28 +0000296}
297
Chris Lattner25963c62010-01-09 22:27:07 +0000298LLVMBool LLVMFindFunction(LLVMExecutionEngineRef EE, const char *Name,
299 LLVMValueRef *OutFn) {
Gordon Henriksen2a8cd892007-12-23 16:59:28 +0000300 if (Function *F = unwrap(EE)->FindFunctionNamed(Name)) {
301 *OutFn = wrap(F);
302 return 0;
303 }
304 return 1;
305}
Erick Tryzelaar8ac07c22008-03-27 00:27:14 +0000306
Filip Pizlo85e0d272013-05-01 22:58:00 +0000307void *LLVMRecompileAndRelinkFunction(LLVMExecutionEngineRef EE,
308 LLVMValueRef Fn) {
Eric Christopherb9fd9ed2014-08-07 22:02:54 +0000309 return unwrap(EE)->recompileAndRelinkFunction(unwrap<Function>(Fn));
Duncan Sands330134b2010-07-19 09:33:13 +0000310}
311
Erick Tryzelaar8ac07c22008-03-27 00:27:14 +0000312LLVMTargetDataRef LLVMGetExecutionEngineTargetData(LLVMExecutionEngineRef EE) {
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000313 return wrap(unwrap(EE)->getDataLayout());
Erick Tryzelaar8ac07c22008-03-27 00:27:14 +0000314}
Gordon Henriksen9f337542008-06-20 02:16:11 +0000315
Juergen Ributzka5fe955c2014-01-23 19:23:28 +0000316LLVMTargetMachineRef
317LLVMGetExecutionEngineTargetMachine(LLVMExecutionEngineRef EE) {
318 return wrap(unwrap(EE)->getTargetMachine());
319}
320
Gordon Henriksen9f337542008-06-20 02:16:11 +0000321void LLVMAddGlobalMapping(LLVMExecutionEngineRef EE, LLVMValueRef Global,
322 void* Addr) {
323 unwrap(EE)->addGlobalMapping(unwrap<GlobalValue>(Global), Addr);
324}
Chris Lattner41b43da2009-01-21 18:11:10 +0000325
326void *LLVMGetPointerToGlobal(LLVMExecutionEngineRef EE, LLVMValueRef Global) {
Andrew Kaylor31be5ef2013-04-29 17:49:40 +0000327 unwrap(EE)->finalizeObject();
328
Chris Lattner41b43da2009-01-21 18:11:10 +0000329 return unwrap(EE)->getPointerToGlobal(unwrap<GlobalValue>(Global));
330}
Filip Pizlo3fdbaff2013-05-22 02:46:43 +0000331
332/*===-- Operations on memory managers -------------------------------------===*/
333
334namespace {
335
336struct SimpleBindingMMFunctions {
Anders Waldenborg9515b312013-09-30 19:11:32 +0000337 LLVMMemoryManagerAllocateCodeSectionCallback AllocateCodeSection;
338 LLVMMemoryManagerAllocateDataSectionCallback AllocateDataSection;
339 LLVMMemoryManagerFinalizeMemoryCallback FinalizeMemory;
340 LLVMMemoryManagerDestroyCallback Destroy;
Filip Pizlo3fdbaff2013-05-22 02:46:43 +0000341};
342
343class SimpleBindingMemoryManager : public RTDyldMemoryManager {
344public:
345 SimpleBindingMemoryManager(const SimpleBindingMMFunctions& Functions,
346 void *Opaque);
347 virtual ~SimpleBindingMemoryManager();
Filip Pizlo3fdbaff2013-05-22 02:46:43 +0000348
Craig Topperb51ff602014-03-08 07:51:20 +0000349 uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
350 unsigned SectionID,
351 StringRef SectionName) override;
Filip Pizlo3fdbaff2013-05-22 02:46:43 +0000352
Craig Topperb51ff602014-03-08 07:51:20 +0000353 uint8_t *allocateDataSection(uintptr_t Size, unsigned Alignment,
354 unsigned SectionID, StringRef SectionName,
355 bool isReadOnly) override;
356
357 bool finalizeMemory(std::string *ErrMsg) override;
358
Filip Pizlo3fdbaff2013-05-22 02:46:43 +0000359private:
360 SimpleBindingMMFunctions Functions;
361 void *Opaque;
362};
363
364SimpleBindingMemoryManager::SimpleBindingMemoryManager(
365 const SimpleBindingMMFunctions& Functions,
366 void *Opaque)
367 : Functions(Functions), Opaque(Opaque) {
368 assert(Functions.AllocateCodeSection &&
369 "No AllocateCodeSection function provided!");
370 assert(Functions.AllocateDataSection &&
371 "No AllocateDataSection function provided!");
372 assert(Functions.FinalizeMemory &&
373 "No FinalizeMemory function provided!");
374 assert(Functions.Destroy &&
375 "No Destroy function provided!");
376}
377
378SimpleBindingMemoryManager::~SimpleBindingMemoryManager() {
379 Functions.Destroy(Opaque);
380}
381
382uint8_t *SimpleBindingMemoryManager::allocateCodeSection(
Filip Pizlo7aa695e02013-10-02 00:59:25 +0000383 uintptr_t Size, unsigned Alignment, unsigned SectionID,
384 StringRef SectionName) {
385 return Functions.AllocateCodeSection(Opaque, Size, Alignment, SectionID,
386 SectionName.str().c_str());
Filip Pizlo3fdbaff2013-05-22 02:46:43 +0000387}
388
389uint8_t *SimpleBindingMemoryManager::allocateDataSection(
Filip Pizlo7aa695e02013-10-02 00:59:25 +0000390 uintptr_t Size, unsigned Alignment, unsigned SectionID,
391 StringRef SectionName, bool isReadOnly) {
Filip Pizlo3fdbaff2013-05-22 02:46:43 +0000392 return Functions.AllocateDataSection(Opaque, Size, Alignment, SectionID,
Filip Pizlo7aa695e02013-10-02 00:59:25 +0000393 SectionName.str().c_str(),
Filip Pizlo3fdbaff2013-05-22 02:46:43 +0000394 isReadOnly);
395}
396
397bool SimpleBindingMemoryManager::finalizeMemory(std::string *ErrMsg) {
Craig Topper2617dcc2014-04-15 06:32:26 +0000398 char *errMsgCString = nullptr;
Filip Pizlo3fdbaff2013-05-22 02:46:43 +0000399 bool result = Functions.FinalizeMemory(Opaque, &errMsgCString);
400 assert((result || !errMsgCString) &&
401 "Did not expect an error message if FinalizeMemory succeeded");
402 if (errMsgCString) {
403 if (ErrMsg)
404 *ErrMsg = errMsgCString;
405 free(errMsgCString);
406 }
407 return result;
408}
409
410} // anonymous namespace
411
412LLVMMCJITMemoryManagerRef LLVMCreateSimpleMCJITMemoryManager(
413 void *Opaque,
Anders Waldenborg9515b312013-09-30 19:11:32 +0000414 LLVMMemoryManagerAllocateCodeSectionCallback AllocateCodeSection,
415 LLVMMemoryManagerAllocateDataSectionCallback AllocateDataSection,
416 LLVMMemoryManagerFinalizeMemoryCallback FinalizeMemory,
417 LLVMMemoryManagerDestroyCallback Destroy) {
Filip Pizlo3fdbaff2013-05-22 02:46:43 +0000418
419 if (!AllocateCodeSection || !AllocateDataSection || !FinalizeMemory ||
420 !Destroy)
Craig Topper2617dcc2014-04-15 06:32:26 +0000421 return nullptr;
Filip Pizlo3fdbaff2013-05-22 02:46:43 +0000422
423 SimpleBindingMMFunctions functions;
424 functions.AllocateCodeSection = AllocateCodeSection;
425 functions.AllocateDataSection = AllocateDataSection;
426 functions.FinalizeMemory = FinalizeMemory;
427 functions.Destroy = Destroy;
428 return wrap(new SimpleBindingMemoryManager(functions, Opaque));
429}
430
431void LLVMDisposeMCJITMemoryManager(LLVMMCJITMemoryManagerRef MM) {
432 delete unwrap(MM);
433}
434