blob: b0cfb2c827f9aa93328523290808d31779c3399a [file] [log] [blame]
Eric Christopher5c896f72011-04-22 03:07:06 +00001//===-- MCJIT.cpp - MC-based Just-in-Time Compiler ------------------------===//
Daniel Dunbar7e5d8a72010-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 Kaylord8ffd9c2012-11-06 18:51:59 +000012#include "llvm/ExecutionEngine/JITEventListener.h"
Andrew Kayloradc70562012-10-02 21:18:39 +000013#include "llvm/ExecutionEngine/MCJIT.h"
Andrew Kaylor31be5ef2013-04-29 17:49:40 +000014#include "llvm/ExecutionEngine/SectionMemoryManager.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000015#include "llvm/IR/DataLayout.h"
16#include "llvm/IR/DerivedTypes.h"
17#include "llvm/IR/Function.h"
Rafael Espindola894843c2014-01-07 21:19:40 +000018#include "llvm/IR/Mangler.h"
Andrew Kaylorea395922013-10-01 01:47:35 +000019#include "llvm/IR/Module.h"
Jim Grosbach348a5482011-03-22 01:06:42 +000020#include "llvm/MC/MCAsmInfo.h"
Lang Hames173c69f2014-01-08 04:09:09 +000021#include "llvm/Object/Archive.h"
Lang Hamesb5c7b1f2014-11-26 16:54:40 +000022#include "llvm/Object/ObjectFile.h"
Chandler Carruth07baed52014-01-13 08:04:33 +000023#include "llvm/PassManager.h"
Michael J. Spencer447762d2010-11-29 18:16:10 +000024#include "llvm/Support/DynamicLibrary.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000025#include "llvm/Support/ErrorHandling.h"
Jim Grosbach348a5482011-03-22 01:06:42 +000026#include "llvm/Support/MemoryBuffer.h"
Zachary Turnerc04b8922014-06-20 21:07:14 +000027#include "llvm/Support/MutexGuard.h"
Daniel Dunbar7e5d8a72010-11-17 16:06:43 +000028
29using namespace llvm;
30
Lang Hamesb5c7b1f2014-11-26 16:54:40 +000031void ObjectCache::anchor() {}
32
Daniel Dunbar7e5d8a72010-11-17 16:06:43 +000033namespace {
34
35static struct RegisterJIT {
36 RegisterJIT() { MCJIT::Register(); }
37} JITRegistrator;
38
39}
40
41extern "C" void LLVMLinkInMCJIT() {
42}
43
Rafael Espindola2a8a2792014-08-19 04:04:25 +000044ExecutionEngine *MCJIT::createJIT(std::unique_ptr<Module> M,
Daniel Dunbar7e5d8a72010-11-17 16:06:43 +000045 std::string *ErrorStr,
Lang Hames4a5697e2014-12-03 00:51:19 +000046 std::unique_ptr<RTDyldMemoryManager> MemMgr,
David Blaikie196e3232014-09-02 22:41:07 +000047 std::unique_ptr<TargetMachine> TM) {
Daniel Dunbar7e5d8a72010-11-17 16:06:43 +000048 // Try to register the program as a source of symbols to resolve against.
49 //
50 // FIXME: Don't do this here.
Craig Topper353eda42014-04-24 06:44:33 +000051 sys::DynamicLibrary::LoadLibraryPermanently(nullptr, nullptr);
Daniel Dunbar7e5d8a72010-11-17 16:06:43 +000052
Lang Hames4a5697e2014-12-03 00:51:19 +000053 std::unique_ptr<RTDyldMemoryManager> MM = std::move(MemMgr);
54 if (!MM)
55 MM = std::unique_ptr<SectionMemoryManager>(new SectionMemoryManager());
56
57 return new MCJIT(std::move(M), std::move(TM), std::move(MM));
Daniel Dunbar7e5d8a72010-11-17 16:06:43 +000058}
59
David Blaikie196e3232014-09-02 22:41:07 +000060MCJIT::MCJIT(std::unique_ptr<Module> M, std::unique_ptr<TargetMachine> tm,
Lang Hames4a5697e2014-12-03 00:51:19 +000061 std::unique_ptr<RTDyldMemoryManager> MM)
David Blaikie196e3232014-09-02 22:41:07 +000062 : ExecutionEngine(std::move(M)), TM(std::move(tm)), Ctx(nullptr),
Lang Hames4a5697e2014-12-03 00:51:19 +000063 MemMgr(this, std::move(MM)), Dyld(&MemMgr), ObjCache(nullptr) {
Andrew Kaylorc89fc822013-10-24 00:19:14 +000064 // FIXME: We are managing our modules, so we do not want the base class
65 // ExecutionEngine to manage them as well. To avoid double destruction
66 // of the first (and only) module added in ExecutionEngine constructor
67 // we remove it from EE and will destruct it ourselves.
68 //
69 // It may make sense to move our module manager (based on SmallStPtr) back
70 // into EE if the JIT and Interpreter can live with it.
71 // If so, additional functions: addModule, removeModule, FindFunctionNamed,
72 // runStaticConstructorsDestructors could be moved back to EE as well.
73 //
Rafael Espindola2a8a2792014-08-19 04:04:25 +000074 std::unique_ptr<Module> First = std::move(Modules[0]);
Andrew Kaylorc89fc822013-10-24 00:19:14 +000075 Modules.clear();
Rafael Espindola2a8a2792014-08-19 04:04:25 +000076
77 OwnedModules.addModule(std::move(First));
Eric Christopher8b770652015-01-26 19:03:15 +000078 setDataLayout(TM->getDataLayout());
Lang Hamesb5c7b1f2014-11-26 16:54:40 +000079 RegisterJITEventListener(JITEventListener::createGDBRegistrationListener());
Rafael Espindola2a8a2792014-08-19 04:04:25 +000080}
81
82MCJIT::~MCJIT() {
83 MutexGuard locked(lock);
84
Andrew Kaylorc442a762013-10-16 00:14:21 +000085 Dyld.deregisterEHFrames();
Chandler Carruthd55d1592013-10-24 09:52:56 +000086
David Blaikieed9709d2014-09-03 19:48:09 +000087 for (auto &Obj : LoadedObjects)
88 if (Obj)
Chandler Carruthd55d1592013-10-24 09:52:56 +000089 NotifyFreeingObject(*Obj);
Lang Hames173c69f2014-01-08 04:09:09 +000090
Lang Hames173c69f2014-01-08 04:09:09 +000091 Archives.clear();
Andrew Kaylor1a568c32012-08-07 18:33:00 +000092}
93
Rafael Espindola2a8a2792014-08-19 04:04:25 +000094void MCJIT::addModule(std::unique_ptr<Module> M) {
Zachary Turnerc04b8922014-06-20 21:07:14 +000095 MutexGuard locked(lock);
Rafael Espindola2a8a2792014-08-19 04:04:25 +000096 OwnedModules.addModule(std::move(M));
Andrew Kaylorea395922013-10-01 01:47:35 +000097}
98
Andrew Kaylorc89fc822013-10-24 00:19:14 +000099bool MCJIT::removeModule(Module *M) {
Zachary Turnerc04b8922014-06-20 21:07:14 +0000100 MutexGuard locked(lock);
Andrew Kaylorc89fc822013-10-24 00:19:14 +0000101 return OwnedModules.removeModule(M);
102}
103
David Blaikie7a1e7752014-04-29 21:52:46 +0000104void MCJIT::addObjectFile(std::unique_ptr<object::ObjectFile> Obj) {
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000105 std::unique_ptr<RuntimeDyld::LoadedObjectInfo> L = Dyld.loadObject(*Obj);
106 if (Dyld.hasError())
Lang Hames173c69f2014-01-08 04:09:09 +0000107 report_fatal_error(Dyld.getErrorString());
108
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000109 NotifyObjectEmitted(*Obj, *L);
David Blaikie168861a2014-09-04 18:37:31 +0000110
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000111 LoadedObjects.push_back(std::move(Obj));
Lang Hames173c69f2014-01-08 04:09:09 +0000112}
113
Rafael Espindola7271c192014-08-26 21:04:04 +0000114void MCJIT::addObjectFile(object::OwningBinary<object::ObjectFile> Obj) {
Lang Hamesf04de6e2014-10-31 21:37:49 +0000115 std::unique_ptr<object::ObjectFile> ObjFile;
116 std::unique_ptr<MemoryBuffer> MemBuf;
117 std::tie(ObjFile, MemBuf) = Obj.takeBinary();
118 addObjectFile(std::move(ObjFile));
119 Buffers.push_back(std::move(MemBuf));
Rafael Espindola7271c192014-08-26 21:04:04 +0000120}
121
Rafael Espindola48af1c22014-08-19 18:44:46 +0000122void MCJIT::addArchive(object::OwningBinary<object::Archive> A) {
Rafael Espindolace47a052014-08-01 18:09:32 +0000123 Archives.push_back(std::move(A));
Lang Hames173c69f2014-01-08 04:09:09 +0000124}
125
Andrew Kaylorced4e8f2013-04-25 21:02:36 +0000126void MCJIT::setObjectCache(ObjectCache* NewCache) {
Zachary Turnerc04b8922014-06-20 21:07:14 +0000127 MutexGuard locked(lock);
Andrew Kaylorced4e8f2013-04-25 21:02:36 +0000128 ObjCache = NewCache;
129}
130
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000131std::unique_ptr<MemoryBuffer> MCJIT::emitObject(Module *M) {
Zachary Turnerc04b8922014-06-20 21:07:14 +0000132 MutexGuard locked(lock);
Andrew Kaylor4fba0492013-10-21 17:42:06 +0000133
Andrew Kaylorc89fc822013-10-24 00:19:14 +0000134 // This must be a module which has already been added but not loaded to this
135 // MCJIT instance, since these conditions are tested by our caller,
136 // generateCodeForModule.
Andrew Kaylor1a568c32012-08-07 18:33:00 +0000137
138 PassManager PM;
139
Eric Christopher8b770652015-01-26 19:03:15 +0000140 M->setDataLayout(TM->getDataLayout());
Rafael Espindolac435adc2014-09-10 21:27:43 +0000141 PM.add(new DataLayoutPass());
Jim Grosbach7b162492011-03-18 22:48:41 +0000142
Andrew Kayloradc70562012-10-02 21:18:39 +0000143 // The RuntimeDyld will take ownership of this shortly
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000144 SmallVector<char, 4096> ObjBufferSV;
145 raw_svector_ostream ObjStream(ObjBufferSV);
Andrew Kayloradc70562012-10-02 21:18:39 +0000146
Jim Grosbach7b162492011-03-18 22:48:41 +0000147 // Turn the machine code intermediate representation into bytes in memory
148 // that may be executed.
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000149 if (TM->addPassesToEmitMC(PM, Ctx, ObjStream, !getVerifyModules()))
Jim Grosbach7b162492011-03-18 22:48:41 +0000150 report_fatal_error("Target does not support MC emission!");
Jim Grosbach7b162492011-03-18 22:48:41 +0000151
152 // Initialize passes.
Andrew Kaylorea395922013-10-01 01:47:35 +0000153 PM.run(*M);
Andrew Kayloradc70562012-10-02 21:18:39 +0000154 // Flush the output buffer to get the generated code into memory
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000155 ObjStream.flush();
156
157 std::unique_ptr<MemoryBuffer> CompiledObjBuffer(
158 new ObjectMemoryBuffer(std::move(ObjBufferSV)));
Andrew Kaylorced4e8f2013-04-25 21:02:36 +0000159
160 // If we have an object cache, tell it about the new object.
161 // Note that we're using the compiled image, not the loaded image (as below).
162 if (ObjCache) {
163 // MemoryBuffer is a thin wrapper around the actual memory, so it's OK
164 // to create a temporary object here and delete it after the call.
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000165 MemoryBufferRef MB = CompiledObjBuffer->getMemBufferRef();
Rafael Espindola48af1c22014-08-19 18:44:46 +0000166 ObjCache->notifyObjectCompiled(M, MB);
Andrew Kaylorced4e8f2013-04-25 21:02:36 +0000167 }
168
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000169 return CompiledObjBuffer;
Andrew Kaylorced4e8f2013-04-25 21:02:36 +0000170}
171
Andrew Kaylorea395922013-10-01 01:47:35 +0000172void MCJIT::generateCodeForModule(Module *M) {
Andrew Kaylor4fba0492013-10-21 17:42:06 +0000173 // Get a thread lock to make sure we aren't trying to load multiple times
Zachary Turnerc04b8922014-06-20 21:07:14 +0000174 MutexGuard locked(lock);
Andrew Kaylor4fba0492013-10-21 17:42:06 +0000175
Andrew Kaylorea395922013-10-01 01:47:35 +0000176 // This must be a module which has already been added to this MCJIT instance.
Andrew Kaylorc89fc822013-10-24 00:19:14 +0000177 assert(OwnedModules.ownsModule(M) &&
178 "MCJIT::generateCodeForModule: Unknown module.");
Andrew Kaylorced4e8f2013-04-25 21:02:36 +0000179
Andrew Kaylorced4e8f2013-04-25 21:02:36 +0000180 // Re-compilation is not supported
Andrew Kaylorc89fc822013-10-24 00:19:14 +0000181 if (OwnedModules.hasModuleBeenLoaded(M))
Andrew Kaylorced4e8f2013-04-25 21:02:36 +0000182 return;
183
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000184 std::unique_ptr<MemoryBuffer> ObjectToLoad;
Andrew Kaylorced4e8f2013-04-25 21:02:36 +0000185 // Try to load the pre-compiled object from cache if possible
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000186 if (ObjCache)
187 ObjectToLoad = ObjCache->getObject(M);
Andrew Kaylorced4e8f2013-04-25 21:02:36 +0000188
189 // If the cache did not contain a suitable object, compile the object
190 if (!ObjectToLoad) {
David Blaikied1101572014-09-03 19:57:35 +0000191 ObjectToLoad = emitObject(M);
192 assert(ObjectToLoad && "Compilation did not produce an object.");
Andrew Kaylorced4e8f2013-04-25 21:02:36 +0000193 }
Jim Grosbach348a5482011-03-22 01:06:42 +0000194
195 // Load the object into the dynamic linker.
Lang Hames173c69f2014-01-08 04:09:09 +0000196 // MCJIT now owns the ObjectImage pointer (via its LoadedObjects list).
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000197 ErrorOr<std::unique_ptr<object::ObjectFile>> LoadedObject =
198 object::ObjectFile::createObjectFile(ObjectToLoad->getMemBufferRef());
199 std::unique_ptr<RuntimeDyld::LoadedObjectInfo> L =
200 Dyld.loadObject(*LoadedObject.get());
201
202 if (Dyld.hasError())
Jim Grosbachc114d892011-03-23 19:51:34 +0000203 report_fatal_error(Dyld.getErrorString());
Andrew Kaylor1a568c32012-08-07 18:33:00 +0000204
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000205 NotifyObjectEmitted(*LoadedObject.get(), *L);
Andrew Kayloradc70562012-10-02 21:18:39 +0000206
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000207 Buffers.push_back(std::move(ObjectToLoad));
208 LoadedObjects.push_back(std::move(*LoadedObject));
David Blaikieed9709d2014-09-03 19:48:09 +0000209
Andrew Kaylorc89fc822013-10-24 00:19:14 +0000210 OwnedModules.markModuleAsLoaded(M);
Daniel Dunbar7e5d8a72010-11-17 16:06:43 +0000211}
212
Andrew Kaylorea395922013-10-01 01:47:35 +0000213void MCJIT::finalizeLoadedModules() {
Zachary Turnerc04b8922014-06-20 21:07:14 +0000214 MutexGuard locked(lock);
Andrew Kaylor4fba0492013-10-21 17:42:06 +0000215
Andrew Kaylorea395922013-10-01 01:47:35 +0000216 // Resolve any outstanding relocations.
217 Dyld.resolveRelocations();
218
Andrew Kaylorc89fc822013-10-24 00:19:14 +0000219 OwnedModules.markAllLoadedModulesAsFinalized();
220
Andrew Kaylorea395922013-10-01 01:47:35 +0000221 // Register EH frame data for any module we own which has been loaded
Andrew Kaylor7bb13442013-10-11 21:25:48 +0000222 Dyld.registerEHFrames();
223
Andrew Kaylorea395922013-10-01 01:47:35 +0000224 // Set page permissions.
225 MemMgr.finalizeMemory();
226}
227
228// FIXME: Rename this.
229void MCJIT::finalizeObject() {
Zachary Turnerc04b8922014-06-20 21:07:14 +0000230 MutexGuard locked(lock);
Andrew Kaylor4fba0492013-10-21 17:42:06 +0000231
Lang Hames018452e2014-09-05 23:38:35 +0000232 // Generate code for module is going to move objects out of the 'added' list,
233 // so we need to copy that out before using it:
234 SmallVector<Module*, 16> ModsToAdd;
235 for (auto M : OwnedModules.added())
236 ModsToAdd.push_back(M);
237
238 for (auto M : ModsToAdd)
Andrew Kaylorc89fc822013-10-24 00:19:14 +0000239 generateCodeForModule(M);
Andrew Kaylora342cb92012-11-15 23:50:01 +0000240
Andrew Kaylorc89fc822013-10-24 00:19:14 +0000241 finalizeLoadedModules();
Andrew Kaylorea395922013-10-01 01:47:35 +0000242}
243
244void MCJIT::finalizeModule(Module *M) {
Zachary Turnerc04b8922014-06-20 21:07:14 +0000245 MutexGuard locked(lock);
Andrew Kaylor4fba0492013-10-21 17:42:06 +0000246
Andrew Kaylorea395922013-10-01 01:47:35 +0000247 // This must be a module which has already been added to this MCJIT instance.
Andrew Kaylorc89fc822013-10-24 00:19:14 +0000248 assert(OwnedModules.ownsModule(M) && "MCJIT::finalizeModule: Unknown module.");
Andrew Kaylorea395922013-10-01 01:47:35 +0000249
250 // If the module hasn't been compiled, just do that.
Andrew Kaylorc89fc822013-10-24 00:19:14 +0000251 if (!OwnedModules.hasModuleBeenLoaded(M))
Andrew Kaylorea395922013-10-01 01:47:35 +0000252 generateCodeForModule(M);
253
Andrew Kaylorc89fc822013-10-24 00:19:14 +0000254 finalizeLoadedModules();
Andrew Kaylora714efc2012-11-05 20:57:16 +0000255}
256
Andrew Kaylorea395922013-10-01 01:47:35 +0000257uint64_t MCJIT::getExistingSymbolAddress(const std::string &Name) {
Eric Christopher8b770652015-01-26 19:03:15 +0000258 Mangler Mang(TM->getDataLayout());
Rafael Espindola3e3a3f12013-11-28 08:59:52 +0000259 SmallString<128> FullName;
260 Mang.getNameWithPrefix(FullName, Name);
261 return Dyld.getSymbolLoadAddress(FullName);
Andrew Kaylorea395922013-10-01 01:47:35 +0000262}
Jim Grosbachdc1123f2012-09-05 16:50:40 +0000263
Andrew Kaylorea395922013-10-01 01:47:35 +0000264Module *MCJIT::findModuleForSymbol(const std::string &Name,
265 bool CheckFunctionsOnly) {
Zachary Turnerc04b8922014-06-20 21:07:14 +0000266 MutexGuard locked(lock);
Andrew Kaylor4fba0492013-10-21 17:42:06 +0000267
Andrew Kaylorea395922013-10-01 01:47:35 +0000268 // If it hasn't already been generated, see if it's in one of our modules.
Andrew Kaylorc89fc822013-10-24 00:19:14 +0000269 for (ModulePtrSet::iterator I = OwnedModules.begin_added(),
270 E = OwnedModules.end_added();
271 I != E; ++I) {
272 Module *M = *I;
Andrew Kaylorea395922013-10-01 01:47:35 +0000273 Function *F = M->getFunction(Name);
Andrew Kaylor515b1da2013-11-15 22:10:21 +0000274 if (F && !F->isDeclaration())
Andrew Kaylorea395922013-10-01 01:47:35 +0000275 return M;
276 if (!CheckFunctionsOnly) {
277 GlobalVariable *G = M->getGlobalVariable(Name);
Andrew Kaylor515b1da2013-11-15 22:10:21 +0000278 if (G && !G->isDeclaration())
Andrew Kaylorea395922013-10-01 01:47:35 +0000279 return M;
280 // FIXME: Do we need to worry about global aliases?
281 }
282 }
283 // We didn't find the symbol in any of our modules.
Craig Topper353eda42014-04-24 06:44:33 +0000284 return nullptr;
Andrew Kaylorea395922013-10-01 01:47:35 +0000285}
286
287uint64_t MCJIT::getSymbolAddress(const std::string &Name,
288 bool CheckFunctionsOnly)
289{
Zachary Turnerc04b8922014-06-20 21:07:14 +0000290 MutexGuard locked(lock);
Andrew Kaylor4fba0492013-10-21 17:42:06 +0000291
Andrew Kaylorea395922013-10-01 01:47:35 +0000292 // First, check to see if we already have this symbol.
293 uint64_t Addr = getExistingSymbolAddress(Name);
294 if (Addr)
295 return Addr;
296
Rafael Espindola48af1c22014-08-19 18:44:46 +0000297 for (object::OwningBinary<object::Archive> &OB : Archives) {
Lang Hamesf04de6e2014-10-31 21:37:49 +0000298 object::Archive *A = OB.getBinary();
Lang Hames173c69f2014-01-08 04:09:09 +0000299 // Look for our symbols in each Archive
300 object::Archive::child_iterator ChildIt = A->findSym(Name);
Rafael Espindola23a97502014-01-21 16:09:45 +0000301 if (ChildIt != A->child_end()) {
Lang Hames173c69f2014-01-08 04:09:09 +0000302 // FIXME: Support nested archives?
Rafael Espindolaae460022014-06-16 16:08:36 +0000303 ErrorOr<std::unique_ptr<object::Binary>> ChildBinOrErr =
304 ChildIt->getAsBinary();
305 if (ChildBinOrErr.getError())
306 continue;
Rafael Espindola3f6481d2014-08-01 14:31:55 +0000307 std::unique_ptr<object::Binary> &ChildBin = ChildBinOrErr.get();
Rafael Espindolaae460022014-06-16 16:08:36 +0000308 if (ChildBin->isObject()) {
David Blaikie7a1e7752014-04-29 21:52:46 +0000309 std::unique_ptr<object::ObjectFile> OF(
310 static_cast<object::ObjectFile *>(ChildBin.release()));
Lang Hames173c69f2014-01-08 04:09:09 +0000311 // This causes the object file to be loaded.
David Blaikie7a1e7752014-04-29 21:52:46 +0000312 addObjectFile(std::move(OF));
Lang Hames173c69f2014-01-08 04:09:09 +0000313 // The address should be here now.
314 Addr = getExistingSymbolAddress(Name);
315 if (Addr)
316 return Addr;
317 }
318 }
319 }
320
Andrew Kaylorea395922013-10-01 01:47:35 +0000321 // If it hasn't already been generated, see if it's in one of our modules.
322 Module *M = findModuleForSymbol(Name, CheckFunctionsOnly);
Lang Hamesea800ca2014-08-14 02:38:20 +0000323 if (M) {
324 generateCodeForModule(M);
Andrew Kaylorea395922013-10-01 01:47:35 +0000325
Lang Hamesea800ca2014-08-14 02:38:20 +0000326 // Check the RuntimeDyld table again, it should be there now.
327 return getExistingSymbolAddress(Name);
328 }
Andrew Kaylorea395922013-10-01 01:47:35 +0000329
Lang Hamesea800ca2014-08-14 02:38:20 +0000330 // If a LazyFunctionCreator is installed, use it to get/create the function.
331 // FIXME: Should we instead have a LazySymbolCreator callback?
332 if (LazyFunctionCreator)
333 Addr = (uint64_t)LazyFunctionCreator(Name);
334
335 return Addr;
Andrew Kaylorea395922013-10-01 01:47:35 +0000336}
337
338uint64_t MCJIT::getGlobalValueAddress(const std::string &Name) {
Zachary Turnerc04b8922014-06-20 21:07:14 +0000339 MutexGuard locked(lock);
Andrew Kaylorea395922013-10-01 01:47:35 +0000340 uint64_t Result = getSymbolAddress(Name, false);
341 if (Result != 0)
342 finalizeLoadedModules();
343 return Result;
344}
345
346uint64_t MCJIT::getFunctionAddress(const std::string &Name) {
Zachary Turnerc04b8922014-06-20 21:07:14 +0000347 MutexGuard locked(lock);
Andrew Kaylorea395922013-10-01 01:47:35 +0000348 uint64_t Result = getSymbolAddress(Name, true);
349 if (Result != 0)
350 finalizeLoadedModules();
351 return Result;
352}
353
354// Deprecated. Use getFunctionAddress instead.
355void *MCJIT::getPointerToFunction(Function *F) {
Zachary Turnerc04b8922014-06-20 21:07:14 +0000356 MutexGuard locked(lock);
Andrew Kaylor1a568c32012-08-07 18:33:00 +0000357
Eric Christopher8b770652015-01-26 19:03:15 +0000358 Mangler Mang(TM->getDataLayout());
Lang Hamesb7fbf592014-09-20 17:44:56 +0000359 SmallString<128> Name;
360 TM->getNameWithPrefix(Name, F, Mang);
361
Jim Grosbachd5274402011-03-22 18:05:27 +0000362 if (F->isDeclaration() || F->hasAvailableExternallyLinkage()) {
363 bool AbortOnFailure = !F->hasExternalWeakLinkage();
Lang Hamesb7fbf592014-09-20 17:44:56 +0000364 void *Addr = getPointerToNamedFunction(Name, AbortOnFailure);
Lang Hamesefe7e222014-10-22 23:18:42 +0000365 updateGlobalMapping(F, Addr);
Jim Grosbachd5274402011-03-22 18:05:27 +0000366 return Addr;
367 }
368
Andrew Kaylorea395922013-10-01 01:47:35 +0000369 Module *M = F->getParent();
Andrew Kaylorc89fc822013-10-24 00:19:14 +0000370 bool HasBeenAddedButNotLoaded = OwnedModules.hasModuleBeenAddedButNotLoaded(M);
Andrew Kaylorea395922013-10-01 01:47:35 +0000371
372 // Make sure the relevant module has been compiled and loaded.
Andrew Kaylorc89fc822013-10-24 00:19:14 +0000373 if (HasBeenAddedButNotLoaded)
Andrew Kaylorea395922013-10-01 01:47:35 +0000374 generateCodeForModule(M);
Lang Hamesb7fbf592014-09-20 17:44:56 +0000375 else if (!OwnedModules.hasModuleBeenLoaded(M)) {
Andrew Kaylorc89fc822013-10-24 00:19:14 +0000376 // If this function doesn't belong to one of our modules, we're done.
Lang Hamesb7fbf592014-09-20 17:44:56 +0000377 // FIXME: Asking for the pointer to a function that hasn't been registered,
378 // and isn't a declaration (which is handled above) should probably
379 // be an assertion.
Craig Topper353eda42014-04-24 06:44:33 +0000380 return nullptr;
Lang Hamesb7fbf592014-09-20 17:44:56 +0000381 }
Andrew Kaylorea395922013-10-01 01:47:35 +0000382
Andrew Kaylor1a568c32012-08-07 18:33:00 +0000383 // FIXME: Should the Dyld be retaining module information? Probably not.
Jim Grosbachdc1123f2012-09-05 16:50:40 +0000384 //
385 // This is the accessor for the target address, so make sure to check the
386 // load address of the symbol, not the local address.
Rafael Espindola3e3a3f12013-11-28 08:59:52 +0000387 return (void*)Dyld.getSymbolLoadAddress(Name);
Daniel Dunbar7e5d8a72010-11-17 16:06:43 +0000388}
389
Andrew Kaylorc89fc822013-10-24 00:19:14 +0000390void MCJIT::runStaticConstructorsDestructorsInModulePtrSet(
391 bool isDtors, ModulePtrSet::iterator I, ModulePtrSet::iterator E) {
392 for (; I != E; ++I) {
Rafael Espindola2a8a2792014-08-19 04:04:25 +0000393 ExecutionEngine::runStaticConstructorsDestructors(**I, isDtors);
Andrew Kaylorc89fc822013-10-24 00:19:14 +0000394 }
395}
396
397void MCJIT::runStaticConstructorsDestructors(bool isDtors) {
398 // Execute global ctors/dtors for each module in the program.
399 runStaticConstructorsDestructorsInModulePtrSet(
400 isDtors, OwnedModules.begin_added(), OwnedModules.end_added());
401 runStaticConstructorsDestructorsInModulePtrSet(
402 isDtors, OwnedModules.begin_loaded(), OwnedModules.end_loaded());
403 runStaticConstructorsDestructorsInModulePtrSet(
404 isDtors, OwnedModules.begin_finalized(), OwnedModules.end_finalized());
405}
406
407Function *MCJIT::FindFunctionNamedInModulePtrSet(const char *FnName,
408 ModulePtrSet::iterator I,
409 ModulePtrSet::iterator E) {
410 for (; I != E; ++I) {
Keno Fischer5f92a082015-01-27 19:29:00 +0000411 Function *F = (*I)->getFunction(FnName);
412 if (F && !F->isDeclaration())
Andrew Kaylorc89fc822013-10-24 00:19:14 +0000413 return F;
414 }
Craig Topper353eda42014-04-24 06:44:33 +0000415 return nullptr;
Andrew Kaylorc89fc822013-10-24 00:19:14 +0000416}
417
418Function *MCJIT::FindFunctionNamed(const char *FnName) {
419 Function *F = FindFunctionNamedInModulePtrSet(
420 FnName, OwnedModules.begin_added(), OwnedModules.end_added());
421 if (!F)
422 F = FindFunctionNamedInModulePtrSet(FnName, OwnedModules.begin_loaded(),
423 OwnedModules.end_loaded());
424 if (!F)
425 F = FindFunctionNamedInModulePtrSet(FnName, OwnedModules.begin_finalized(),
426 OwnedModules.end_finalized());
427 return F;
428}
429
Daniel Dunbar7e5d8a72010-11-17 16:06:43 +0000430GenericValue MCJIT::runFunction(Function *F,
431 const std::vector<GenericValue> &ArgValues) {
Jim Grosbachd5274402011-03-22 18:05:27 +0000432 assert(F && "Function *F was null at entry to run()");
433
Jim Grosbach7b162492011-03-18 22:48:41 +0000434 void *FPtr = getPointerToFunction(F);
Jim Grosbachd5274402011-03-22 18:05:27 +0000435 assert(FPtr && "Pointer to fn's code was null after getPointerToFunction");
Chris Lattner229907c2011-07-18 04:54:35 +0000436 FunctionType *FTy = F->getFunctionType();
437 Type *RetTy = FTy->getReturnType();
Jim Grosbachd5274402011-03-22 18:05:27 +0000438
439 assert((FTy->getNumParams() == ArgValues.size() ||
440 (FTy->isVarArg() && FTy->getNumParams() <= ArgValues.size())) &&
441 "Wrong number of arguments passed into function!");
442 assert(FTy->getNumParams() == ArgValues.size() &&
443 "This doesn't support passing arguments through varargs (yet)!");
444
445 // Handle some common cases first. These cases correspond to common `main'
446 // prototypes.
447 if (RetTy->isIntegerTy(32) || RetTy->isVoidTy()) {
448 switch (ArgValues.size()) {
449 case 3:
450 if (FTy->getParamType(0)->isIntegerTy(32) &&
451 FTy->getParamType(1)->isPointerTy() &&
452 FTy->getParamType(2)->isPointerTy()) {
453 int (*PF)(int, char **, const char **) =
454 (int(*)(int, char **, const char **))(intptr_t)FPtr;
455
456 // Call the function.
457 GenericValue rv;
458 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(),
459 (char **)GVTOP(ArgValues[1]),
460 (const char **)GVTOP(ArgValues[2])));
461 return rv;
462 }
463 break;
464 case 2:
465 if (FTy->getParamType(0)->isIntegerTy(32) &&
466 FTy->getParamType(1)->isPointerTy()) {
467 int (*PF)(int, char **) = (int(*)(int, char **))(intptr_t)FPtr;
468
469 // Call the function.
470 GenericValue rv;
471 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(),
472 (char **)GVTOP(ArgValues[1])));
473 return rv;
474 }
475 break;
476 case 1:
477 if (FTy->getNumParams() == 1 &&
478 FTy->getParamType(0)->isIntegerTy(32)) {
479 GenericValue rv;
480 int (*PF)(int) = (int(*)(int))(intptr_t)FPtr;
481 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue()));
482 return rv;
483 }
484 break;
485 }
486 }
487
488 // Handle cases where no arguments are passed first.
489 if (ArgValues.empty()) {
490 GenericValue rv;
491 switch (RetTy->getTypeID()) {
492 default: llvm_unreachable("Unknown return type for function call!");
493 case Type::IntegerTyID: {
494 unsigned BitWidth = cast<IntegerType>(RetTy)->getBitWidth();
495 if (BitWidth == 1)
496 rv.IntVal = APInt(BitWidth, ((bool(*)())(intptr_t)FPtr)());
497 else if (BitWidth <= 8)
498 rv.IntVal = APInt(BitWidth, ((char(*)())(intptr_t)FPtr)());
499 else if (BitWidth <= 16)
500 rv.IntVal = APInt(BitWidth, ((short(*)())(intptr_t)FPtr)());
501 else if (BitWidth <= 32)
502 rv.IntVal = APInt(BitWidth, ((int(*)())(intptr_t)FPtr)());
503 else if (BitWidth <= 64)
504 rv.IntVal = APInt(BitWidth, ((int64_t(*)())(intptr_t)FPtr)());
505 else
506 llvm_unreachable("Integer types > 64 bits not supported");
507 return rv;
508 }
509 case Type::VoidTyID:
510 rv.IntVal = APInt(32, ((int(*)())(intptr_t)FPtr)());
511 return rv;
512 case Type::FloatTyID:
513 rv.FloatVal = ((float(*)())(intptr_t)FPtr)();
514 return rv;
515 case Type::DoubleTyID:
516 rv.DoubleVal = ((double(*)())(intptr_t)FPtr)();
517 return rv;
518 case Type::X86_FP80TyID:
519 case Type::FP128TyID:
520 case Type::PPC_FP128TyID:
521 llvm_unreachable("long double not supported yet");
Jim Grosbachd5274402011-03-22 18:05:27 +0000522 case Type::PointerTyID:
523 return PTOGV(((void*(*)())(intptr_t)FPtr)());
524 }
525 }
526
Craig Toppera2886c22012-02-07 05:05:23 +0000527 llvm_unreachable("Full-featured argument passing not supported yet!");
Daniel Dunbar7e5d8a72010-11-17 16:06:43 +0000528}
Danil Malyshevbfee5422012-03-28 21:46:36 +0000529
Lang Hames9a783342014-09-15 17:50:22 +0000530void *MCJIT::getPointerToNamedFunction(StringRef Name, bool AbortOnFailure) {
Andrew Kaylorea395922013-10-01 01:47:35 +0000531 if (!isSymbolSearchingDisabled()) {
532 void *ptr = MemMgr.getPointerToNamedFunction(Name, false);
Danil Malyshevbfee5422012-03-28 21:46:36 +0000533 if (ptr)
534 return ptr;
535 }
536
537 /// If a LazyFunctionCreator is installed, use it to get/create the function.
538 if (LazyFunctionCreator)
539 if (void *RP = LazyFunctionCreator(Name))
540 return RP;
541
542 if (AbortOnFailure) {
543 report_fatal_error("Program used external function '"+Name+
Eli Bendersky0e2ac5b2012-04-29 12:40:47 +0000544 "' which could not be resolved!");
Danil Malyshevbfee5422012-03-28 21:46:36 +0000545 }
Craig Topper353eda42014-04-24 06:44:33 +0000546 return nullptr;
Danil Malyshevbfee5422012-03-28 21:46:36 +0000547}
Andrew Kaylord8ffd9c2012-11-06 18:51:59 +0000548
549void MCJIT::RegisterJITEventListener(JITEventListener *L) {
Craig Topper353eda42014-04-24 06:44:33 +0000550 if (!L)
Andrew Kaylord8ffd9c2012-11-06 18:51:59 +0000551 return;
Zachary Turnerc04b8922014-06-20 21:07:14 +0000552 MutexGuard locked(lock);
Andrew Kaylord8ffd9c2012-11-06 18:51:59 +0000553 EventListeners.push_back(L);
554}
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000555
Andrew Kaylord8ffd9c2012-11-06 18:51:59 +0000556void MCJIT::UnregisterJITEventListener(JITEventListener *L) {
Craig Topper353eda42014-04-24 06:44:33 +0000557 if (!L)
Andrew Kaylord8ffd9c2012-11-06 18:51:59 +0000558 return;
Zachary Turnerc04b8922014-06-20 21:07:14 +0000559 MutexGuard locked(lock);
Eric Christopher79cc1e32014-09-02 22:28:02 +0000560 auto I = std::find(EventListeners.rbegin(), EventListeners.rend(), L);
Andrew Kaylord8ffd9c2012-11-06 18:51:59 +0000561 if (I != EventListeners.rend()) {
562 std::swap(*I, EventListeners.back());
563 EventListeners.pop_back();
564 }
565}
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000566
567void MCJIT::NotifyObjectEmitted(const object::ObjectFile& Obj,
568 const RuntimeDyld::LoadedObjectInfo &L) {
Zachary Turnerc04b8922014-06-20 21:07:14 +0000569 MutexGuard locked(lock);
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000570 MemMgr.notifyObjectLoaded(this, Obj);
Andrew Kaylord8ffd9c2012-11-06 18:51:59 +0000571 for (unsigned I = 0, S = EventListeners.size(); I < S; ++I) {
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000572 EventListeners[I]->NotifyObjectEmitted(Obj, L);
Andrew Kaylord8ffd9c2012-11-06 18:51:59 +0000573 }
574}
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000575
576void MCJIT::NotifyFreeingObject(const object::ObjectFile& Obj) {
Zachary Turnerc04b8922014-06-20 21:07:14 +0000577 MutexGuard locked(lock);
David Blaikieed9709d2014-09-03 19:48:09 +0000578 for (JITEventListener *L : EventListeners)
Eric Christopher79cc1e32014-09-02 22:28:02 +0000579 L->NotifyFreeingObject(Obj);
Andrew Kaylord8ffd9c2012-11-06 18:51:59 +0000580}
Andrew Kaylorea395922013-10-01 01:47:35 +0000581
582uint64_t LinkingMemoryManager::getSymbolAddress(const std::string &Name) {
583 uint64_t Result = ParentEngine->getSymbolAddress(Name, false);
Andrew Kaylor89bdd102013-10-01 16:42:50 +0000584 // If the symbols wasn't found and it begins with an underscore, try again
585 // without the underscore.
586 if (!Result && Name[0] == '_')
587 Result = ParentEngine->getSymbolAddress(Name.substr(1), false);
Andrew Kaylorea395922013-10-01 01:47:35 +0000588 if (Result)
589 return Result;
Lang Hamesea800ca2014-08-14 02:38:20 +0000590 if (ParentEngine->isSymbolSearchingDisabled())
591 return 0;
Andrew Kaylorea395922013-10-01 01:47:35 +0000592 return ClientMM->getSymbolAddress(Name);
593}