blob: a6405947abaf96ec4c70dc0a7e3ddbccc5b5c89f [file] [log] [blame]
Eric Christopherbb498ca2011-04-22 03:07:06 +00001//===-- MCJIT.cpp - MC-based Just-in-Time Compiler ------------------------===//
Daniel Dunbar6aec2982010-11-17 16:06:43 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "MCJIT.h"
11#include "llvm/ExecutionEngine/GenericValue.h"
Andrew Kaylor776054d2012-11-06 18:51:59 +000012#include "llvm/ExecutionEngine/JITEventListener.h"
Jim Grosbachf9229102011-03-22 01:06:42 +000013#include "llvm/ExecutionEngine/JITMemoryManager.h"
Andrew Kaylor3f23cef2012-10-02 21:18:39 +000014#include "llvm/ExecutionEngine/MCJIT.h"
15#include "llvm/ExecutionEngine/ObjectBuffer.h"
16#include "llvm/ExecutionEngine/ObjectImage.h"
Andrew Kaylor2ad18ef2013-10-24 00:19:14 +000017#include "llvm/PassManager.h"
Andrew Kaylord2755af2013-04-29 17:49:40 +000018#include "llvm/ExecutionEngine/SectionMemoryManager.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000019#include "llvm/IR/DataLayout.h"
20#include "llvm/IR/DerivedTypes.h"
21#include "llvm/IR/Function.h"
Andrew Kaylor8e9ec012013-10-01 01:47:35 +000022#include "llvm/IR/Module.h"
Jim Grosbachf9229102011-03-22 01:06:42 +000023#include "llvm/MC/MCAsmInfo.h"
Michael J. Spencer1f6efa32010-11-29 18:16:10 +000024#include "llvm/Support/DynamicLibrary.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000025#include "llvm/Support/ErrorHandling.h"
Jim Grosbachf9229102011-03-22 01:06:42 +000026#include "llvm/Support/MemoryBuffer.h"
Andrew Kaylorea708d12012-08-07 18:33:00 +000027#include "llvm/Support/MutexGuard.h"
Daniel Dunbar6aec2982010-11-17 16:06:43 +000028
29using namespace llvm;
30
31namespace {
32
33static struct RegisterJIT {
34 RegisterJIT() { MCJIT::Register(); }
35} JITRegistrator;
36
37}
38
39extern "C" void LLVMLinkInMCJIT() {
40}
41
42ExecutionEngine *MCJIT::createJIT(Module *M,
43 std::string *ErrorStr,
Filip Pizlo13a3cf12013-05-14 19:29:00 +000044 RTDyldMemoryManager *MemMgr,
Daniel Dunbar6aec2982010-11-17 16:06:43 +000045 bool GVsWithCode,
Dylan Noblesmithc5b28582011-05-13 21:51:29 +000046 TargetMachine *TM) {
Daniel Dunbar6aec2982010-11-17 16:06:43 +000047 // Try to register the program as a source of symbols to resolve against.
48 //
49 // FIXME: Don't do this here.
50 sys::DynamicLibrary::LoadLibraryPermanently(0, NULL);
51
Filip Pizlo13a3cf12013-05-14 19:29:00 +000052 return new MCJIT(M, TM, MemMgr ? MemMgr : new SectionMemoryManager(),
53 GVsWithCode);
Daniel Dunbar6aec2982010-11-17 16:06:43 +000054}
55
Jim Grosbach8005bcd2012-08-21 15:42:49 +000056MCJIT::MCJIT(Module *m, TargetMachine *tm, RTDyldMemoryManager *MM,
57 bool AllocateGVsWithCode)
Andrew Kaylor8e9ec012013-10-01 01:47:35 +000058 : ExecutionEngine(m), TM(tm), Ctx(0), MemMgr(this, MM), Dyld(&MemMgr),
59 ObjCache(0) {
Jim Grosbach31649e62011-03-18 22:48:41 +000060
Andrew Kaylor2ad18ef2013-10-24 00:19:14 +000061 OwnedModules.addModule(m);
Micah Villmow3574eca2012-10-08 16:38:25 +000062 setDataLayout(TM->getDataLayout());
Andrew Kaylorea708d12012-08-07 18:33:00 +000063}
64
65MCJIT::~MCJIT() {
Andrew Kaylor61694532013-10-21 17:42:06 +000066 MutexGuard locked(lock);
Andrew Kaylor2ad18ef2013-10-24 00:19:14 +000067 // FIXME: We are managing our modules, so we do not want the base class
68 // ExecutionEngine to manage them as well. To avoid double destruction
69 // of the first (and only) module added in ExecutionEngine constructor
70 // we remove it from EE and will destruct it ourselves.
71 //
72 // It may make sense to move our module manager (based on SmallStPtr) back
73 // into EE if the JIT and Interpreter can live with it.
74 // If so, additional functions: addModule, removeModule, FindFunctionNamed,
75 // runStaticConstructorsDestructors could be moved back to EE as well.
76 //
77 Modules.clear();
Andrew Kaylor43507d02013-10-16 00:14:21 +000078 Dyld.deregisterEHFrames();
Andrew Kaylor8e9ec012013-10-01 01:47:35 +000079 LoadedObjects.clear();
Andrew Kaylorea708d12012-08-07 18:33:00 +000080 delete TM;
81}
82
Andrew Kaylor8e9ec012013-10-01 01:47:35 +000083void MCJIT::addModule(Module *M) {
Andrew Kaylor61694532013-10-21 17:42:06 +000084 MutexGuard locked(lock);
Andrew Kaylor2ad18ef2013-10-24 00:19:14 +000085 OwnedModules.addModule(M);
Andrew Kaylor8e9ec012013-10-01 01:47:35 +000086}
87
Andrew Kaylor2ad18ef2013-10-24 00:19:14 +000088bool MCJIT::removeModule(Module *M) {
89 MutexGuard locked(lock);
90 return OwnedModules.removeModule(M);
91}
92
93
94
Andrew Kaylor1c489452013-04-25 21:02:36 +000095void MCJIT::setObjectCache(ObjectCache* NewCache) {
Andrew Kaylor61694532013-10-21 17:42:06 +000096 MutexGuard locked(lock);
Andrew Kaylor1c489452013-04-25 21:02:36 +000097 ObjCache = NewCache;
98}
99
Andrew Kaylor8e9ec012013-10-01 01:47:35 +0000100ObjectBufferStream* MCJIT::emitObject(Module *M) {
Andrew Kaylor61694532013-10-21 17:42:06 +0000101 MutexGuard locked(lock);
102
Andrew Kaylor2ad18ef2013-10-24 00:19:14 +0000103 // This must be a module which has already been added but not loaded to this
104 // MCJIT instance, since these conditions are tested by our caller,
105 // generateCodeForModule.
Andrew Kaylorea708d12012-08-07 18:33:00 +0000106
107 PassManager PM;
108
Micah Villmow3574eca2012-10-08 16:38:25 +0000109 PM.add(new DataLayout(*TM->getDataLayout()));
Jim Grosbach31649e62011-03-18 22:48:41 +0000110
Andrew Kaylor3f23cef2012-10-02 21:18:39 +0000111 // The RuntimeDyld will take ownership of this shortly
Andrew Kaylor1c489452013-04-25 21:02:36 +0000112 OwningPtr<ObjectBufferStream> CompiledObject(new ObjectBufferStream());
Andrew Kaylor3f23cef2012-10-02 21:18:39 +0000113
Jim Grosbach31649e62011-03-18 22:48:41 +0000114 // Turn the machine code intermediate representation into bytes in memory
115 // that may be executed.
Andrew Kaylor1c489452013-04-25 21:02:36 +0000116 if (TM->addPassesToEmitMC(PM, Ctx, CompiledObject->getOStream(), false)) {
Jim Grosbach31649e62011-03-18 22:48:41 +0000117 report_fatal_error("Target does not support MC emission!");
118 }
119
120 // Initialize passes.
Andrew Kaylor8e9ec012013-10-01 01:47:35 +0000121 PM.run(*M);
Andrew Kaylor3f23cef2012-10-02 21:18:39 +0000122 // Flush the output buffer to get the generated code into memory
Andrew Kaylor1c489452013-04-25 21:02:36 +0000123 CompiledObject->flush();
124
125 // If we have an object cache, tell it about the new object.
126 // Note that we're using the compiled image, not the loaded image (as below).
127 if (ObjCache) {
128 // MemoryBuffer is a thin wrapper around the actual memory, so it's OK
129 // to create a temporary object here and delete it after the call.
130 OwningPtr<MemoryBuffer> MB(CompiledObject->getMemBuffer());
Andrew Kaylor8e9ec012013-10-01 01:47:35 +0000131 ObjCache->notifyObjectCompiled(M, MB.get());
Andrew Kaylor1c489452013-04-25 21:02:36 +0000132 }
133
134 return CompiledObject.take();
135}
136
Andrew Kaylor8e9ec012013-10-01 01:47:35 +0000137void MCJIT::generateCodeForModule(Module *M) {
Andrew Kaylor61694532013-10-21 17:42:06 +0000138 // Get a thread lock to make sure we aren't trying to load multiple times
139 MutexGuard locked(lock);
140
Andrew Kaylor8e9ec012013-10-01 01:47:35 +0000141 // This must be a module which has already been added to this MCJIT instance.
Andrew Kaylor2ad18ef2013-10-24 00:19:14 +0000142 assert(OwnedModules.ownsModule(M) &&
143 "MCJIT::generateCodeForModule: Unknown module.");
Andrew Kaylor1c489452013-04-25 21:02:36 +0000144
Andrew Kaylor1c489452013-04-25 21:02:36 +0000145 // Re-compilation is not supported
Andrew Kaylor2ad18ef2013-10-24 00:19:14 +0000146 if (OwnedModules.hasModuleBeenLoaded(M))
Andrew Kaylor1c489452013-04-25 21:02:36 +0000147 return;
148
149 OwningPtr<ObjectBuffer> ObjectToLoad;
150 // Try to load the pre-compiled object from cache if possible
151 if (0 != ObjCache) {
Andrew Kaylor40d81712013-06-28 21:40:16 +0000152 OwningPtr<MemoryBuffer> PreCompiledObject(ObjCache->getObject(M));
Andrew Kaylor1c489452013-04-25 21:02:36 +0000153 if (0 != PreCompiledObject.get())
154 ObjectToLoad.reset(new ObjectBuffer(PreCompiledObject.take()));
155 }
156
157 // If the cache did not contain a suitable object, compile the object
158 if (!ObjectToLoad) {
159 ObjectToLoad.reset(emitObject(M));
160 assert(ObjectToLoad.get() && "Compilation did not produce an object.");
161 }
Jim Grosbachf9229102011-03-22 01:06:42 +0000162
163 // Load the object into the dynamic linker.
Andrew Kaylor8e9ec012013-10-01 01:47:35 +0000164 // MCJIT now owns the ObjectImage pointer (via its LoadedObjects map).
165 ObjectImage *LoadedObject = Dyld.loadObject(ObjectToLoad.take());
166 LoadedObjects[M] = LoadedObject;
Andrew Kaylor3f23cef2012-10-02 21:18:39 +0000167 if (!LoadedObject)
Jim Grosbach8086f3b2011-03-23 19:51:34 +0000168 report_fatal_error(Dyld.getErrorString());
Andrew Kaylorea708d12012-08-07 18:33:00 +0000169
Andrew Kaylor3f23cef2012-10-02 21:18:39 +0000170 // FIXME: Make this optional, maybe even move it to a JIT event listener
171 LoadedObject->registerWithDebugger();
172
Andrew Kaylor776054d2012-11-06 18:51:59 +0000173 NotifyObjectEmitted(*LoadedObject);
174
Andrew Kaylor2ad18ef2013-10-24 00:19:14 +0000175 OwnedModules.markModuleAsLoaded(M);
Daniel Dunbar6aec2982010-11-17 16:06:43 +0000176}
177
Andrew Kaylor8e9ec012013-10-01 01:47:35 +0000178void MCJIT::finalizeLoadedModules() {
Andrew Kaylor61694532013-10-21 17:42:06 +0000179 MutexGuard locked(lock);
180
Andrew Kaylor8e9ec012013-10-01 01:47:35 +0000181 // Resolve any outstanding relocations.
182 Dyld.resolveRelocations();
183
Andrew Kaylor2ad18ef2013-10-24 00:19:14 +0000184 OwnedModules.markAllLoadedModulesAsFinalized();
185
Andrew Kaylor8e9ec012013-10-01 01:47:35 +0000186 // Register EH frame data for any module we own which has been loaded
Andrew Kaylor528f6d72013-10-11 21:25:48 +0000187 Dyld.registerEHFrames();
188
Andrew Kaylor8e9ec012013-10-01 01:47:35 +0000189 // Set page permissions.
190 MemMgr.finalizeMemory();
191}
192
193// FIXME: Rename this.
194void MCJIT::finalizeObject() {
Andrew Kaylor61694532013-10-21 17:42:06 +0000195 MutexGuard locked(lock);
196
Andrew Kaylor2ad18ef2013-10-24 00:19:14 +0000197 for (ModulePtrSet::iterator I = OwnedModules.begin_added(),
198 E = OwnedModules.end_added();
199 I != E; ++I) {
200 Module *M = *I;
201 generateCodeForModule(M);
Andrew Kaylor8e9ec012013-10-01 01:47:35 +0000202 }
Andrew Kaylor53608a32012-11-15 23:50:01 +0000203
Andrew Kaylor2ad18ef2013-10-24 00:19:14 +0000204 finalizeLoadedModules();
Andrew Kaylor8e9ec012013-10-01 01:47:35 +0000205}
206
207void MCJIT::finalizeModule(Module *M) {
Andrew Kaylor61694532013-10-21 17:42:06 +0000208 MutexGuard locked(lock);
209
Andrew Kaylor8e9ec012013-10-01 01:47:35 +0000210 // This must be a module which has already been added to this MCJIT instance.
Andrew Kaylor2ad18ef2013-10-24 00:19:14 +0000211 assert(OwnedModules.ownsModule(M) && "MCJIT::finalizeModule: Unknown module.");
Andrew Kaylor8e9ec012013-10-01 01:47:35 +0000212
213 // If the module hasn't been compiled, just do that.
Andrew Kaylor2ad18ef2013-10-24 00:19:14 +0000214 if (!OwnedModules.hasModuleBeenLoaded(M))
Andrew Kaylor8e9ec012013-10-01 01:47:35 +0000215 generateCodeForModule(M);
216
Andrew Kaylor2ad18ef2013-10-24 00:19:14 +0000217 finalizeLoadedModules();
Andrew Kaylor28989882012-11-05 20:57:16 +0000218}
219
Daniel Dunbar6aec2982010-11-17 16:06:43 +0000220void *MCJIT::getPointerToBasicBlock(BasicBlock *BB) {
221 report_fatal_error("not yet implemented");
Daniel Dunbar6aec2982010-11-17 16:06:43 +0000222}
223
Andrew Kaylor8e9ec012013-10-01 01:47:35 +0000224uint64_t MCJIT::getExistingSymbolAddress(const std::string &Name) {
225 // Check with the RuntimeDyld to see if we already have this symbol.
226 if (Name[0] == '\1')
227 return Dyld.getSymbolLoadAddress(Name.substr(1));
228 return Dyld.getSymbolLoadAddress((TM->getMCAsmInfo()->getGlobalPrefix()
229 + Name));
230}
Jim Grosbach35ed8422012-09-05 16:50:40 +0000231
Andrew Kaylor8e9ec012013-10-01 01:47:35 +0000232Module *MCJIT::findModuleForSymbol(const std::string &Name,
233 bool CheckFunctionsOnly) {
Andrew Kaylor61694532013-10-21 17:42:06 +0000234 MutexGuard locked(lock);
235
Andrew Kaylor8e9ec012013-10-01 01:47:35 +0000236 // If it hasn't already been generated, see if it's in one of our modules.
Andrew Kaylor2ad18ef2013-10-24 00:19:14 +0000237 for (ModulePtrSet::iterator I = OwnedModules.begin_added(),
238 E = OwnedModules.end_added();
239 I != E; ++I) {
240 Module *M = *I;
Andrew Kaylor8e9ec012013-10-01 01:47:35 +0000241 Function *F = M->getFunction(Name);
242 if (F && !F->empty())
243 return M;
244 if (!CheckFunctionsOnly) {
245 GlobalVariable *G = M->getGlobalVariable(Name);
246 if (G)
247 return M;
248 // FIXME: Do we need to worry about global aliases?
249 }
250 }
251 // We didn't find the symbol in any of our modules.
252 return NULL;
253}
254
255uint64_t MCJIT::getSymbolAddress(const std::string &Name,
256 bool CheckFunctionsOnly)
257{
Andrew Kaylor61694532013-10-21 17:42:06 +0000258 MutexGuard locked(lock);
259
Andrew Kaylor8e9ec012013-10-01 01:47:35 +0000260 // First, check to see if we already have this symbol.
261 uint64_t Addr = getExistingSymbolAddress(Name);
262 if (Addr)
263 return Addr;
264
265 // If it hasn't already been generated, see if it's in one of our modules.
266 Module *M = findModuleForSymbol(Name, CheckFunctionsOnly);
267 if (!M)
268 return 0;
269
Andrew Kaylor8e9ec012013-10-01 01:47:35 +0000270 generateCodeForModule(M);
271
272 // Check the RuntimeDyld table again, it should be there now.
273 return getExistingSymbolAddress(Name);
274}
275
276uint64_t MCJIT::getGlobalValueAddress(const std::string &Name) {
Andrew Kaylor61694532013-10-21 17:42:06 +0000277 MutexGuard locked(lock);
Andrew Kaylor8e9ec012013-10-01 01:47:35 +0000278 uint64_t Result = getSymbolAddress(Name, false);
279 if (Result != 0)
280 finalizeLoadedModules();
281 return Result;
282}
283
284uint64_t MCJIT::getFunctionAddress(const std::string &Name) {
Andrew Kaylor61694532013-10-21 17:42:06 +0000285 MutexGuard locked(lock);
Andrew Kaylor8e9ec012013-10-01 01:47:35 +0000286 uint64_t Result = getSymbolAddress(Name, true);
287 if (Result != 0)
288 finalizeLoadedModules();
289 return Result;
290}
291
292// Deprecated. Use getFunctionAddress instead.
293void *MCJIT::getPointerToFunction(Function *F) {
Andrew Kaylor61694532013-10-21 17:42:06 +0000294 MutexGuard locked(lock);
Andrew Kaylorea708d12012-08-07 18:33:00 +0000295
Jim Grosbach34714a02011-03-22 18:05:27 +0000296 if (F->isDeclaration() || F->hasAvailableExternallyLinkage()) {
297 bool AbortOnFailure = !F->hasExternalWeakLinkage();
298 void *Addr = getPointerToNamedFunction(F->getName(), AbortOnFailure);
299 addGlobalMapping(F, Addr);
300 return Addr;
301 }
302
Andrew Kaylor8e9ec012013-10-01 01:47:35 +0000303 Module *M = F->getParent();
Andrew Kaylor2ad18ef2013-10-24 00:19:14 +0000304 bool HasBeenAddedButNotLoaded = OwnedModules.hasModuleBeenAddedButNotLoaded(M);
Andrew Kaylor8e9ec012013-10-01 01:47:35 +0000305
306 // Make sure the relevant module has been compiled and loaded.
Andrew Kaylor2ad18ef2013-10-24 00:19:14 +0000307 if (HasBeenAddedButNotLoaded)
Andrew Kaylor8e9ec012013-10-01 01:47:35 +0000308 generateCodeForModule(M);
Andrew Kaylor2ad18ef2013-10-24 00:19:14 +0000309 else if (!OwnedModules.hasModuleBeenLoaded(M))
310 // If this function doesn't belong to one of our modules, we're done.
311 return NULL;
Andrew Kaylor8e9ec012013-10-01 01:47:35 +0000312
Andrew Kaylorea708d12012-08-07 18:33:00 +0000313 // FIXME: Should the Dyld be retaining module information? Probably not.
Jim Grosbach3ec2c7c2011-05-18 23:53:21 +0000314 // FIXME: Should we be using the mangler for this? Probably.
Jim Grosbach35ed8422012-09-05 16:50:40 +0000315 //
316 // This is the accessor for the target address, so make sure to check the
317 // load address of the symbol, not the local address.
Jim Grosbach3ec2c7c2011-05-18 23:53:21 +0000318 StringRef BaseName = F->getName();
319 if (BaseName[0] == '\1')
Jim Grosbach35ed8422012-09-05 16:50:40 +0000320 return (void*)Dyld.getSymbolLoadAddress(BaseName.substr(1));
321 return (void*)Dyld.getSymbolLoadAddress((TM->getMCAsmInfo()->getGlobalPrefix()
Jim Grosbachc0ceedb2011-05-19 00:45:05 +0000322 + BaseName).str());
Daniel Dunbar6aec2982010-11-17 16:06:43 +0000323}
324
325void *MCJIT::recompileAndRelinkFunction(Function *F) {
326 report_fatal_error("not yet implemented");
327}
328
329void MCJIT::freeMachineCodeForFunction(Function *F) {
330 report_fatal_error("not yet implemented");
331}
332
Andrew Kaylor2ad18ef2013-10-24 00:19:14 +0000333void MCJIT::runStaticConstructorsDestructorsInModulePtrSet(
334 bool isDtors, ModulePtrSet::iterator I, ModulePtrSet::iterator E) {
335 for (; I != E; ++I) {
336 ExecutionEngine::runStaticConstructorsDestructors(*I, isDtors);
337 }
338}
339
340void MCJIT::runStaticConstructorsDestructors(bool isDtors) {
341 // Execute global ctors/dtors for each module in the program.
342 runStaticConstructorsDestructorsInModulePtrSet(
343 isDtors, OwnedModules.begin_added(), OwnedModules.end_added());
344 runStaticConstructorsDestructorsInModulePtrSet(
345 isDtors, OwnedModules.begin_loaded(), OwnedModules.end_loaded());
346 runStaticConstructorsDestructorsInModulePtrSet(
347 isDtors, OwnedModules.begin_finalized(), OwnedModules.end_finalized());
348}
349
350Function *MCJIT::FindFunctionNamedInModulePtrSet(const char *FnName,
351 ModulePtrSet::iterator I,
352 ModulePtrSet::iterator E) {
353 for (; I != E; ++I) {
354 if (Function *F = (*I)->getFunction(FnName))
355 return F;
356 }
357 return 0;
358}
359
360Function *MCJIT::FindFunctionNamed(const char *FnName) {
361 Function *F = FindFunctionNamedInModulePtrSet(
362 FnName, OwnedModules.begin_added(), OwnedModules.end_added());
363 if (!F)
364 F = FindFunctionNamedInModulePtrSet(FnName, OwnedModules.begin_loaded(),
365 OwnedModules.end_loaded());
366 if (!F)
367 F = FindFunctionNamedInModulePtrSet(FnName, OwnedModules.begin_finalized(),
368 OwnedModules.end_finalized());
369 return F;
370}
371
Daniel Dunbar6aec2982010-11-17 16:06:43 +0000372GenericValue MCJIT::runFunction(Function *F,
373 const std::vector<GenericValue> &ArgValues) {
Jim Grosbach34714a02011-03-22 18:05:27 +0000374 assert(F && "Function *F was null at entry to run()");
375
Jim Grosbach31649e62011-03-18 22:48:41 +0000376 void *FPtr = getPointerToFunction(F);
Jim Grosbach34714a02011-03-22 18:05:27 +0000377 assert(FPtr && "Pointer to fn's code was null after getPointerToFunction");
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000378 FunctionType *FTy = F->getFunctionType();
379 Type *RetTy = FTy->getReturnType();
Jim Grosbach34714a02011-03-22 18:05:27 +0000380
381 assert((FTy->getNumParams() == ArgValues.size() ||
382 (FTy->isVarArg() && FTy->getNumParams() <= ArgValues.size())) &&
383 "Wrong number of arguments passed into function!");
384 assert(FTy->getNumParams() == ArgValues.size() &&
385 "This doesn't support passing arguments through varargs (yet)!");
386
387 // Handle some common cases first. These cases correspond to common `main'
388 // prototypes.
389 if (RetTy->isIntegerTy(32) || RetTy->isVoidTy()) {
390 switch (ArgValues.size()) {
391 case 3:
392 if (FTy->getParamType(0)->isIntegerTy(32) &&
393 FTy->getParamType(1)->isPointerTy() &&
394 FTy->getParamType(2)->isPointerTy()) {
395 int (*PF)(int, char **, const char **) =
396 (int(*)(int, char **, const char **))(intptr_t)FPtr;
397
398 // Call the function.
399 GenericValue rv;
400 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(),
401 (char **)GVTOP(ArgValues[1]),
402 (const char **)GVTOP(ArgValues[2])));
403 return rv;
404 }
405 break;
406 case 2:
407 if (FTy->getParamType(0)->isIntegerTy(32) &&
408 FTy->getParamType(1)->isPointerTy()) {
409 int (*PF)(int, char **) = (int(*)(int, char **))(intptr_t)FPtr;
410
411 // Call the function.
412 GenericValue rv;
413 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(),
414 (char **)GVTOP(ArgValues[1])));
415 return rv;
416 }
417 break;
418 case 1:
419 if (FTy->getNumParams() == 1 &&
420 FTy->getParamType(0)->isIntegerTy(32)) {
421 GenericValue rv;
422 int (*PF)(int) = (int(*)(int))(intptr_t)FPtr;
423 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue()));
424 return rv;
425 }
426 break;
427 }
428 }
429
430 // Handle cases where no arguments are passed first.
431 if (ArgValues.empty()) {
432 GenericValue rv;
433 switch (RetTy->getTypeID()) {
434 default: llvm_unreachable("Unknown return type for function call!");
435 case Type::IntegerTyID: {
436 unsigned BitWidth = cast<IntegerType>(RetTy)->getBitWidth();
437 if (BitWidth == 1)
438 rv.IntVal = APInt(BitWidth, ((bool(*)())(intptr_t)FPtr)());
439 else if (BitWidth <= 8)
440 rv.IntVal = APInt(BitWidth, ((char(*)())(intptr_t)FPtr)());
441 else if (BitWidth <= 16)
442 rv.IntVal = APInt(BitWidth, ((short(*)())(intptr_t)FPtr)());
443 else if (BitWidth <= 32)
444 rv.IntVal = APInt(BitWidth, ((int(*)())(intptr_t)FPtr)());
445 else if (BitWidth <= 64)
446 rv.IntVal = APInt(BitWidth, ((int64_t(*)())(intptr_t)FPtr)());
447 else
448 llvm_unreachable("Integer types > 64 bits not supported");
449 return rv;
450 }
451 case Type::VoidTyID:
452 rv.IntVal = APInt(32, ((int(*)())(intptr_t)FPtr)());
453 return rv;
454 case Type::FloatTyID:
455 rv.FloatVal = ((float(*)())(intptr_t)FPtr)();
456 return rv;
457 case Type::DoubleTyID:
458 rv.DoubleVal = ((double(*)())(intptr_t)FPtr)();
459 return rv;
460 case Type::X86_FP80TyID:
461 case Type::FP128TyID:
462 case Type::PPC_FP128TyID:
463 llvm_unreachable("long double not supported yet");
Jim Grosbach34714a02011-03-22 18:05:27 +0000464 case Type::PointerTyID:
465 return PTOGV(((void*(*)())(intptr_t)FPtr)());
466 }
467 }
468
Craig Topper85814382012-02-07 05:05:23 +0000469 llvm_unreachable("Full-featured argument passing not supported yet!");
Daniel Dunbar6aec2982010-11-17 16:06:43 +0000470}
Danil Malyshev30b9e322012-03-28 21:46:36 +0000471
472void *MCJIT::getPointerToNamedFunction(const std::string &Name,
Eli Bendersky5fe01982012-04-29 12:40:47 +0000473 bool AbortOnFailure) {
Andrew Kaylor8e9ec012013-10-01 01:47:35 +0000474 if (!isSymbolSearchingDisabled()) {
475 void *ptr = MemMgr.getPointerToNamedFunction(Name, false);
Danil Malyshev30b9e322012-03-28 21:46:36 +0000476 if (ptr)
477 return ptr;
478 }
479
480 /// If a LazyFunctionCreator is installed, use it to get/create the function.
481 if (LazyFunctionCreator)
482 if (void *RP = LazyFunctionCreator(Name))
483 return RP;
484
485 if (AbortOnFailure) {
486 report_fatal_error("Program used external function '"+Name+
Eli Bendersky5fe01982012-04-29 12:40:47 +0000487 "' which could not be resolved!");
Danil Malyshev30b9e322012-03-28 21:46:36 +0000488 }
489 return 0;
490}
Andrew Kaylor776054d2012-11-06 18:51:59 +0000491
492void MCJIT::RegisterJITEventListener(JITEventListener *L) {
493 if (L == NULL)
494 return;
495 MutexGuard locked(lock);
496 EventListeners.push_back(L);
497}
498void MCJIT::UnregisterJITEventListener(JITEventListener *L) {
499 if (L == NULL)
500 return;
501 MutexGuard locked(lock);
502 SmallVector<JITEventListener*, 2>::reverse_iterator I=
503 std::find(EventListeners.rbegin(), EventListeners.rend(), L);
504 if (I != EventListeners.rend()) {
505 std::swap(*I, EventListeners.back());
506 EventListeners.pop_back();
507 }
508}
509void MCJIT::NotifyObjectEmitted(const ObjectImage& Obj) {
510 MutexGuard locked(lock);
Andrew Kaylorb868e912013-10-04 00:49:38 +0000511 MemMgr.notifyObjectLoaded(this, &Obj);
Andrew Kaylor776054d2012-11-06 18:51:59 +0000512 for (unsigned I = 0, S = EventListeners.size(); I < S; ++I) {
513 EventListeners[I]->NotifyObjectEmitted(Obj);
514 }
515}
516void MCJIT::NotifyFreeingObject(const ObjectImage& Obj) {
517 MutexGuard locked(lock);
518 for (unsigned I = 0, S = EventListeners.size(); I < S; ++I) {
519 EventListeners[I]->NotifyFreeingObject(Obj);
520 }
521}
Andrew Kaylor8e9ec012013-10-01 01:47:35 +0000522
523uint64_t LinkingMemoryManager::getSymbolAddress(const std::string &Name) {
524 uint64_t Result = ParentEngine->getSymbolAddress(Name, false);
Andrew Kaylor52c90162013-10-01 16:42:50 +0000525 // If the symbols wasn't found and it begins with an underscore, try again
526 // without the underscore.
527 if (!Result && Name[0] == '_')
528 Result = ParentEngine->getSymbolAddress(Name.substr(1), false);
Andrew Kaylor8e9ec012013-10-01 01:47:35 +0000529 if (Result)
530 return Result;
531 return ClientMM->getSymbolAddress(Name);
532}