blob: f2d53f5326d1d22deb52338bc1e9fdfa43a2d340 [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"
Rafael Espindoladaeafb42014-02-19 17:23:20 +000028#include "llvm/Target/TargetLowering.h"
Eric Christopherd9134482014-08-04 21:25:23 +000029#include "llvm/Target/TargetSubtargetInfo.h"
Daniel Dunbar7e5d8a72010-11-17 16:06:43 +000030
31using namespace llvm;
32
Lang Hamesb5c7b1f2014-11-26 16:54:40 +000033void ObjectCache::anchor() {}
34
Daniel Dunbar7e5d8a72010-11-17 16:06:43 +000035namespace {
36
37static struct RegisterJIT {
38 RegisterJIT() { MCJIT::Register(); }
39} JITRegistrator;
40
41}
42
43extern "C" void LLVMLinkInMCJIT() {
44}
45
Rafael Espindola2a8a2792014-08-19 04:04:25 +000046ExecutionEngine *MCJIT::createJIT(std::unique_ptr<Module> M,
Daniel Dunbar7e5d8a72010-11-17 16:06:43 +000047 std::string *ErrorStr,
Lang Hames4a5697e2014-12-03 00:51:19 +000048 std::unique_ptr<RTDyldMemoryManager> MemMgr,
David Blaikie196e3232014-09-02 22:41:07 +000049 std::unique_ptr<TargetMachine> TM) {
Daniel Dunbar7e5d8a72010-11-17 16:06:43 +000050 // Try to register the program as a source of symbols to resolve against.
51 //
52 // FIXME: Don't do this here.
Craig Topper353eda42014-04-24 06:44:33 +000053 sys::DynamicLibrary::LoadLibraryPermanently(nullptr, nullptr);
Daniel Dunbar7e5d8a72010-11-17 16:06:43 +000054
Lang Hames4a5697e2014-12-03 00:51:19 +000055 std::unique_ptr<RTDyldMemoryManager> MM = std::move(MemMgr);
56 if (!MM)
57 MM = std::unique_ptr<SectionMemoryManager>(new SectionMemoryManager());
58
59 return new MCJIT(std::move(M), std::move(TM), std::move(MM));
Daniel Dunbar7e5d8a72010-11-17 16:06:43 +000060}
61
David Blaikie196e3232014-09-02 22:41:07 +000062MCJIT::MCJIT(std::unique_ptr<Module> M, std::unique_ptr<TargetMachine> tm,
Lang Hames4a5697e2014-12-03 00:51:19 +000063 std::unique_ptr<RTDyldMemoryManager> MM)
David Blaikie196e3232014-09-02 22:41:07 +000064 : ExecutionEngine(std::move(M)), TM(std::move(tm)), Ctx(nullptr),
Lang Hames4a5697e2014-12-03 00:51:19 +000065 MemMgr(this, std::move(MM)), Dyld(&MemMgr), ObjCache(nullptr) {
Andrew Kaylorc89fc822013-10-24 00:19:14 +000066 // FIXME: We are managing our modules, so we do not want the base class
67 // ExecutionEngine to manage them as well. To avoid double destruction
68 // of the first (and only) module added in ExecutionEngine constructor
69 // we remove it from EE and will destruct it ourselves.
70 //
71 // It may make sense to move our module manager (based on SmallStPtr) back
72 // into EE if the JIT and Interpreter can live with it.
73 // If so, additional functions: addModule, removeModule, FindFunctionNamed,
74 // runStaticConstructorsDestructors could be moved back to EE as well.
75 //
Rafael Espindola2a8a2792014-08-19 04:04:25 +000076 std::unique_ptr<Module> First = std::move(Modules[0]);
Andrew Kaylorc89fc822013-10-24 00:19:14 +000077 Modules.clear();
Rafael Espindola2a8a2792014-08-19 04:04:25 +000078
79 OwnedModules.addModule(std::move(First));
80 setDataLayout(TM->getSubtargetImpl()->getDataLayout());
Lang Hamesb5c7b1f2014-11-26 16:54:40 +000081 RegisterJITEventListener(JITEventListener::createGDBRegistrationListener());
Rafael Espindola2a8a2792014-08-19 04:04:25 +000082}
83
84MCJIT::~MCJIT() {
85 MutexGuard locked(lock);
86
Andrew Kaylorc442a762013-10-16 00:14:21 +000087 Dyld.deregisterEHFrames();
Chandler Carruthd55d1592013-10-24 09:52:56 +000088
David Blaikieed9709d2014-09-03 19:48:09 +000089 for (auto &Obj : LoadedObjects)
90 if (Obj)
Chandler Carruthd55d1592013-10-24 09:52:56 +000091 NotifyFreeingObject(*Obj);
Lang Hames173c69f2014-01-08 04:09:09 +000092
Lang Hames173c69f2014-01-08 04:09:09 +000093 Archives.clear();
Andrew Kaylor1a568c32012-08-07 18:33:00 +000094}
95
Rafael Espindola2a8a2792014-08-19 04:04:25 +000096void MCJIT::addModule(std::unique_ptr<Module> M) {
Zachary Turnerc04b8922014-06-20 21:07:14 +000097 MutexGuard locked(lock);
Rafael Espindola2a8a2792014-08-19 04:04:25 +000098 OwnedModules.addModule(std::move(M));
Andrew Kaylorea395922013-10-01 01:47:35 +000099}
100
Andrew Kaylorc89fc822013-10-24 00:19:14 +0000101bool MCJIT::removeModule(Module *M) {
Zachary Turnerc04b8922014-06-20 21:07:14 +0000102 MutexGuard locked(lock);
Andrew Kaylorc89fc822013-10-24 00:19:14 +0000103 return OwnedModules.removeModule(M);
104}
105
David Blaikie7a1e7752014-04-29 21:52:46 +0000106void MCJIT::addObjectFile(std::unique_ptr<object::ObjectFile> Obj) {
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000107 std::unique_ptr<RuntimeDyld::LoadedObjectInfo> L = Dyld.loadObject(*Obj);
108 if (Dyld.hasError())
Lang Hames173c69f2014-01-08 04:09:09 +0000109 report_fatal_error(Dyld.getErrorString());
110
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000111 NotifyObjectEmitted(*Obj, *L);
David Blaikie168861a2014-09-04 18:37:31 +0000112
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000113 LoadedObjects.push_back(std::move(Obj));
Lang Hames173c69f2014-01-08 04:09:09 +0000114}
115
Rafael Espindola7271c192014-08-26 21:04:04 +0000116void MCJIT::addObjectFile(object::OwningBinary<object::ObjectFile> Obj) {
Lang Hamesf04de6e2014-10-31 21:37:49 +0000117 std::unique_ptr<object::ObjectFile> ObjFile;
118 std::unique_ptr<MemoryBuffer> MemBuf;
119 std::tie(ObjFile, MemBuf) = Obj.takeBinary();
120 addObjectFile(std::move(ObjFile));
121 Buffers.push_back(std::move(MemBuf));
Rafael Espindola7271c192014-08-26 21:04:04 +0000122}
123
Rafael Espindola48af1c22014-08-19 18:44:46 +0000124void MCJIT::addArchive(object::OwningBinary<object::Archive> A) {
Rafael Espindolace47a052014-08-01 18:09:32 +0000125 Archives.push_back(std::move(A));
Lang Hames173c69f2014-01-08 04:09:09 +0000126}
127
Andrew Kaylorced4e8f2013-04-25 21:02:36 +0000128void MCJIT::setObjectCache(ObjectCache* NewCache) {
Zachary Turnerc04b8922014-06-20 21:07:14 +0000129 MutexGuard locked(lock);
Andrew Kaylorced4e8f2013-04-25 21:02:36 +0000130 ObjCache = NewCache;
131}
132
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000133std::unique_ptr<MemoryBuffer> MCJIT::emitObject(Module *M) {
Zachary Turnerc04b8922014-06-20 21:07:14 +0000134 MutexGuard locked(lock);
Andrew Kaylor4fba0492013-10-21 17:42:06 +0000135
Andrew Kaylorc89fc822013-10-24 00:19:14 +0000136 // This must be a module which has already been added but not loaded to this
137 // MCJIT instance, since these conditions are tested by our caller,
138 // generateCodeForModule.
Andrew Kaylor1a568c32012-08-07 18:33:00 +0000139
140 PassManager PM;
141
Eric Christopherd9134482014-08-04 21:25:23 +0000142 M->setDataLayout(TM->getSubtargetImpl()->getDataLayout());
Rafael Espindolac435adc2014-09-10 21:27:43 +0000143 PM.add(new DataLayoutPass());
Jim Grosbach7b162492011-03-18 22:48:41 +0000144
Andrew Kayloradc70562012-10-02 21:18:39 +0000145 // The RuntimeDyld will take ownership of this shortly
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000146 SmallVector<char, 4096> ObjBufferSV;
147 raw_svector_ostream ObjStream(ObjBufferSV);
Andrew Kayloradc70562012-10-02 21:18:39 +0000148
Jim Grosbach7b162492011-03-18 22:48:41 +0000149 // Turn the machine code intermediate representation into bytes in memory
150 // that may be executed.
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000151 if (TM->addPassesToEmitMC(PM, Ctx, ObjStream, !getVerifyModules()))
Jim Grosbach7b162492011-03-18 22:48:41 +0000152 report_fatal_error("Target does not support MC emission!");
Jim Grosbach7b162492011-03-18 22:48:41 +0000153
154 // Initialize passes.
Andrew Kaylorea395922013-10-01 01:47:35 +0000155 PM.run(*M);
Andrew Kayloradc70562012-10-02 21:18:39 +0000156 // Flush the output buffer to get the generated code into memory
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000157 ObjStream.flush();
158
159 std::unique_ptr<MemoryBuffer> CompiledObjBuffer(
160 new ObjectMemoryBuffer(std::move(ObjBufferSV)));
Andrew Kaylorced4e8f2013-04-25 21:02:36 +0000161
162 // If we have an object cache, tell it about the new object.
163 // Note that we're using the compiled image, not the loaded image (as below).
164 if (ObjCache) {
165 // MemoryBuffer is a thin wrapper around the actual memory, so it's OK
166 // to create a temporary object here and delete it after the call.
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000167 MemoryBufferRef MB = CompiledObjBuffer->getMemBufferRef();
Rafael Espindola48af1c22014-08-19 18:44:46 +0000168 ObjCache->notifyObjectCompiled(M, MB);
Andrew Kaylorced4e8f2013-04-25 21:02:36 +0000169 }
170
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000171 return CompiledObjBuffer;
Andrew Kaylorced4e8f2013-04-25 21:02:36 +0000172}
173
Andrew Kaylorea395922013-10-01 01:47:35 +0000174void MCJIT::generateCodeForModule(Module *M) {
Andrew Kaylor4fba0492013-10-21 17:42:06 +0000175 // Get a thread lock to make sure we aren't trying to load multiple times
Zachary Turnerc04b8922014-06-20 21:07:14 +0000176 MutexGuard locked(lock);
Andrew Kaylor4fba0492013-10-21 17:42:06 +0000177
Andrew Kaylorea395922013-10-01 01:47:35 +0000178 // This must be a module which has already been added to this MCJIT instance.
Andrew Kaylorc89fc822013-10-24 00:19:14 +0000179 assert(OwnedModules.ownsModule(M) &&
180 "MCJIT::generateCodeForModule: Unknown module.");
Andrew Kaylorced4e8f2013-04-25 21:02:36 +0000181
Andrew Kaylorced4e8f2013-04-25 21:02:36 +0000182 // Re-compilation is not supported
Andrew Kaylorc89fc822013-10-24 00:19:14 +0000183 if (OwnedModules.hasModuleBeenLoaded(M))
Andrew Kaylorced4e8f2013-04-25 21:02:36 +0000184 return;
185
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000186 std::unique_ptr<MemoryBuffer> ObjectToLoad;
Andrew Kaylorced4e8f2013-04-25 21:02:36 +0000187 // Try to load the pre-compiled object from cache if possible
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000188 if (ObjCache)
189 ObjectToLoad = ObjCache->getObject(M);
Andrew Kaylorced4e8f2013-04-25 21:02:36 +0000190
191 // If the cache did not contain a suitable object, compile the object
192 if (!ObjectToLoad) {
David Blaikied1101572014-09-03 19:57:35 +0000193 ObjectToLoad = emitObject(M);
194 assert(ObjectToLoad && "Compilation did not produce an object.");
Andrew Kaylorced4e8f2013-04-25 21:02:36 +0000195 }
Jim Grosbach348a5482011-03-22 01:06:42 +0000196
197 // Load the object into the dynamic linker.
Lang Hames173c69f2014-01-08 04:09:09 +0000198 // MCJIT now owns the ObjectImage pointer (via its LoadedObjects list).
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000199 ErrorOr<std::unique_ptr<object::ObjectFile>> LoadedObject =
200 object::ObjectFile::createObjectFile(ObjectToLoad->getMemBufferRef());
201 std::unique_ptr<RuntimeDyld::LoadedObjectInfo> L =
202 Dyld.loadObject(*LoadedObject.get());
203
204 if (Dyld.hasError())
Jim Grosbachc114d892011-03-23 19:51:34 +0000205 report_fatal_error(Dyld.getErrorString());
Andrew Kaylor1a568c32012-08-07 18:33:00 +0000206
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000207 NotifyObjectEmitted(*LoadedObject.get(), *L);
Andrew Kayloradc70562012-10-02 21:18:39 +0000208
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000209 Buffers.push_back(std::move(ObjectToLoad));
210 LoadedObjects.push_back(std::move(*LoadedObject));
David Blaikieed9709d2014-09-03 19:48:09 +0000211
Andrew Kaylorc89fc822013-10-24 00:19:14 +0000212 OwnedModules.markModuleAsLoaded(M);
Daniel Dunbar7e5d8a72010-11-17 16:06:43 +0000213}
214
Andrew Kaylorea395922013-10-01 01:47:35 +0000215void MCJIT::finalizeLoadedModules() {
Zachary Turnerc04b8922014-06-20 21:07:14 +0000216 MutexGuard locked(lock);
Andrew Kaylor4fba0492013-10-21 17:42:06 +0000217
Andrew Kaylorea395922013-10-01 01:47:35 +0000218 // Resolve any outstanding relocations.
219 Dyld.resolveRelocations();
220
Andrew Kaylorc89fc822013-10-24 00:19:14 +0000221 OwnedModules.markAllLoadedModulesAsFinalized();
222
Andrew Kaylorea395922013-10-01 01:47:35 +0000223 // Register EH frame data for any module we own which has been loaded
Andrew Kaylor7bb13442013-10-11 21:25:48 +0000224 Dyld.registerEHFrames();
225
Andrew Kaylorea395922013-10-01 01:47:35 +0000226 // Set page permissions.
227 MemMgr.finalizeMemory();
228}
229
230// FIXME: Rename this.
231void MCJIT::finalizeObject() {
Zachary Turnerc04b8922014-06-20 21:07:14 +0000232 MutexGuard locked(lock);
Andrew Kaylor4fba0492013-10-21 17:42:06 +0000233
Lang Hames018452e2014-09-05 23:38:35 +0000234 // Generate code for module is going to move objects out of the 'added' list,
235 // so we need to copy that out before using it:
236 SmallVector<Module*, 16> ModsToAdd;
237 for (auto M : OwnedModules.added())
238 ModsToAdd.push_back(M);
239
240 for (auto M : ModsToAdd)
Andrew Kaylorc89fc822013-10-24 00:19:14 +0000241 generateCodeForModule(M);
Andrew Kaylora342cb92012-11-15 23:50:01 +0000242
Andrew Kaylorc89fc822013-10-24 00:19:14 +0000243 finalizeLoadedModules();
Andrew Kaylorea395922013-10-01 01:47:35 +0000244}
245
246void MCJIT::finalizeModule(Module *M) {
Zachary Turnerc04b8922014-06-20 21:07:14 +0000247 MutexGuard locked(lock);
Andrew Kaylor4fba0492013-10-21 17:42:06 +0000248
Andrew Kaylorea395922013-10-01 01:47:35 +0000249 // This must be a module which has already been added to this MCJIT instance.
Andrew Kaylorc89fc822013-10-24 00:19:14 +0000250 assert(OwnedModules.ownsModule(M) && "MCJIT::finalizeModule: Unknown module.");
Andrew Kaylorea395922013-10-01 01:47:35 +0000251
252 // If the module hasn't been compiled, just do that.
Andrew Kaylorc89fc822013-10-24 00:19:14 +0000253 if (!OwnedModules.hasModuleBeenLoaded(M))
Andrew Kaylorea395922013-10-01 01:47:35 +0000254 generateCodeForModule(M);
255
Andrew Kaylorc89fc822013-10-24 00:19:14 +0000256 finalizeLoadedModules();
Andrew Kaylora714efc2012-11-05 20:57:16 +0000257}
258
Andrew Kaylorea395922013-10-01 01:47:35 +0000259uint64_t MCJIT::getExistingSymbolAddress(const std::string &Name) {
Eric Christopherd9134482014-08-04 21:25:23 +0000260 Mangler Mang(TM->getSubtargetImpl()->getDataLayout());
Rafael Espindola3e3a3f12013-11-28 08:59:52 +0000261 SmallString<128> FullName;
262 Mang.getNameWithPrefix(FullName, Name);
263 return Dyld.getSymbolLoadAddress(FullName);
Andrew Kaylorea395922013-10-01 01:47:35 +0000264}
Jim Grosbachdc1123f2012-09-05 16:50:40 +0000265
Andrew Kaylorea395922013-10-01 01:47:35 +0000266Module *MCJIT::findModuleForSymbol(const std::string &Name,
267 bool CheckFunctionsOnly) {
Zachary Turnerc04b8922014-06-20 21:07:14 +0000268 MutexGuard locked(lock);
Andrew Kaylor4fba0492013-10-21 17:42:06 +0000269
Andrew Kaylorea395922013-10-01 01:47:35 +0000270 // If it hasn't already been generated, see if it's in one of our modules.
Andrew Kaylorc89fc822013-10-24 00:19:14 +0000271 for (ModulePtrSet::iterator I = OwnedModules.begin_added(),
272 E = OwnedModules.end_added();
273 I != E; ++I) {
274 Module *M = *I;
Andrew Kaylorea395922013-10-01 01:47:35 +0000275 Function *F = M->getFunction(Name);
Andrew Kaylor515b1da2013-11-15 22:10:21 +0000276 if (F && !F->isDeclaration())
Andrew Kaylorea395922013-10-01 01:47:35 +0000277 return M;
278 if (!CheckFunctionsOnly) {
279 GlobalVariable *G = M->getGlobalVariable(Name);
Andrew Kaylor515b1da2013-11-15 22:10:21 +0000280 if (G && !G->isDeclaration())
Andrew Kaylorea395922013-10-01 01:47:35 +0000281 return M;
282 // FIXME: Do we need to worry about global aliases?
283 }
284 }
285 // We didn't find the symbol in any of our modules.
Craig Topper353eda42014-04-24 06:44:33 +0000286 return nullptr;
Andrew Kaylorea395922013-10-01 01:47:35 +0000287}
288
289uint64_t MCJIT::getSymbolAddress(const std::string &Name,
290 bool CheckFunctionsOnly)
291{
Zachary Turnerc04b8922014-06-20 21:07:14 +0000292 MutexGuard locked(lock);
Andrew Kaylor4fba0492013-10-21 17:42:06 +0000293
Andrew Kaylorea395922013-10-01 01:47:35 +0000294 // First, check to see if we already have this symbol.
295 uint64_t Addr = getExistingSymbolAddress(Name);
296 if (Addr)
297 return Addr;
298
Rafael Espindola48af1c22014-08-19 18:44:46 +0000299 for (object::OwningBinary<object::Archive> &OB : Archives) {
Lang Hamesf04de6e2014-10-31 21:37:49 +0000300 object::Archive *A = OB.getBinary();
Lang Hames173c69f2014-01-08 04:09:09 +0000301 // Look for our symbols in each Archive
302 object::Archive::child_iterator ChildIt = A->findSym(Name);
Rafael Espindola23a97502014-01-21 16:09:45 +0000303 if (ChildIt != A->child_end()) {
Lang Hames173c69f2014-01-08 04:09:09 +0000304 // FIXME: Support nested archives?
Rafael Espindolaae460022014-06-16 16:08:36 +0000305 ErrorOr<std::unique_ptr<object::Binary>> ChildBinOrErr =
306 ChildIt->getAsBinary();
307 if (ChildBinOrErr.getError())
308 continue;
Rafael Espindola3f6481d2014-08-01 14:31:55 +0000309 std::unique_ptr<object::Binary> &ChildBin = ChildBinOrErr.get();
Rafael Espindolaae460022014-06-16 16:08:36 +0000310 if (ChildBin->isObject()) {
David Blaikie7a1e7752014-04-29 21:52:46 +0000311 std::unique_ptr<object::ObjectFile> OF(
312 static_cast<object::ObjectFile *>(ChildBin.release()));
Lang Hames173c69f2014-01-08 04:09:09 +0000313 // This causes the object file to be loaded.
David Blaikie7a1e7752014-04-29 21:52:46 +0000314 addObjectFile(std::move(OF));
Lang Hames173c69f2014-01-08 04:09:09 +0000315 // The address should be here now.
316 Addr = getExistingSymbolAddress(Name);
317 if (Addr)
318 return Addr;
319 }
320 }
321 }
322
Andrew Kaylorea395922013-10-01 01:47:35 +0000323 // If it hasn't already been generated, see if it's in one of our modules.
324 Module *M = findModuleForSymbol(Name, CheckFunctionsOnly);
Lang Hamesea800ca2014-08-14 02:38:20 +0000325 if (M) {
326 generateCodeForModule(M);
Andrew Kaylorea395922013-10-01 01:47:35 +0000327
Lang Hamesea800ca2014-08-14 02:38:20 +0000328 // Check the RuntimeDyld table again, it should be there now.
329 return getExistingSymbolAddress(Name);
330 }
Andrew Kaylorea395922013-10-01 01:47:35 +0000331
Lang Hamesea800ca2014-08-14 02:38:20 +0000332 // If a LazyFunctionCreator is installed, use it to get/create the function.
333 // FIXME: Should we instead have a LazySymbolCreator callback?
334 if (LazyFunctionCreator)
335 Addr = (uint64_t)LazyFunctionCreator(Name);
336
337 return Addr;
Andrew Kaylorea395922013-10-01 01:47:35 +0000338}
339
340uint64_t MCJIT::getGlobalValueAddress(const std::string &Name) {
Zachary Turnerc04b8922014-06-20 21:07:14 +0000341 MutexGuard locked(lock);
Andrew Kaylorea395922013-10-01 01:47:35 +0000342 uint64_t Result = getSymbolAddress(Name, false);
343 if (Result != 0)
344 finalizeLoadedModules();
345 return Result;
346}
347
348uint64_t MCJIT::getFunctionAddress(const std::string &Name) {
Zachary Turnerc04b8922014-06-20 21:07:14 +0000349 MutexGuard locked(lock);
Andrew Kaylorea395922013-10-01 01:47:35 +0000350 uint64_t Result = getSymbolAddress(Name, true);
351 if (Result != 0)
352 finalizeLoadedModules();
353 return Result;
354}
355
356// Deprecated. Use getFunctionAddress instead.
357void *MCJIT::getPointerToFunction(Function *F) {
Zachary Turnerc04b8922014-06-20 21:07:14 +0000358 MutexGuard locked(lock);
Andrew Kaylor1a568c32012-08-07 18:33:00 +0000359
Lang Hamesb7fbf592014-09-20 17:44:56 +0000360 Mangler Mang(TM->getSubtargetImpl()->getDataLayout());
361 SmallString<128> Name;
362 TM->getNameWithPrefix(Name, F, Mang);
363
Jim Grosbachd5274402011-03-22 18:05:27 +0000364 if (F->isDeclaration() || F->hasAvailableExternallyLinkage()) {
365 bool AbortOnFailure = !F->hasExternalWeakLinkage();
Lang Hamesb7fbf592014-09-20 17:44:56 +0000366 void *Addr = getPointerToNamedFunction(Name, AbortOnFailure);
Lang Hamesefe7e222014-10-22 23:18:42 +0000367 updateGlobalMapping(F, Addr);
Jim Grosbachd5274402011-03-22 18:05:27 +0000368 return Addr;
369 }
370
Andrew Kaylorea395922013-10-01 01:47:35 +0000371 Module *M = F->getParent();
Andrew Kaylorc89fc822013-10-24 00:19:14 +0000372 bool HasBeenAddedButNotLoaded = OwnedModules.hasModuleBeenAddedButNotLoaded(M);
Andrew Kaylorea395922013-10-01 01:47:35 +0000373
374 // Make sure the relevant module has been compiled and loaded.
Andrew Kaylorc89fc822013-10-24 00:19:14 +0000375 if (HasBeenAddedButNotLoaded)
Andrew Kaylorea395922013-10-01 01:47:35 +0000376 generateCodeForModule(M);
Lang Hamesb7fbf592014-09-20 17:44:56 +0000377 else if (!OwnedModules.hasModuleBeenLoaded(M)) {
Andrew Kaylorc89fc822013-10-24 00:19:14 +0000378 // If this function doesn't belong to one of our modules, we're done.
Lang Hamesb7fbf592014-09-20 17:44:56 +0000379 // FIXME: Asking for the pointer to a function that hasn't been registered,
380 // and isn't a declaration (which is handled above) should probably
381 // be an assertion.
Craig Topper353eda42014-04-24 06:44:33 +0000382 return nullptr;
Lang Hamesb7fbf592014-09-20 17:44:56 +0000383 }
Andrew Kaylorea395922013-10-01 01:47:35 +0000384
Andrew Kaylor1a568c32012-08-07 18:33:00 +0000385 // FIXME: Should the Dyld be retaining module information? Probably not.
Jim Grosbachdc1123f2012-09-05 16:50:40 +0000386 //
387 // This is the accessor for the target address, so make sure to check the
388 // load address of the symbol, not the local address.
Rafael Espindola3e3a3f12013-11-28 08:59:52 +0000389 return (void*)Dyld.getSymbolLoadAddress(Name);
Daniel Dunbar7e5d8a72010-11-17 16:06:43 +0000390}
391
Andrew Kaylorc89fc822013-10-24 00:19:14 +0000392void MCJIT::runStaticConstructorsDestructorsInModulePtrSet(
393 bool isDtors, ModulePtrSet::iterator I, ModulePtrSet::iterator E) {
394 for (; I != E; ++I) {
Rafael Espindola2a8a2792014-08-19 04:04:25 +0000395 ExecutionEngine::runStaticConstructorsDestructors(**I, isDtors);
Andrew Kaylorc89fc822013-10-24 00:19:14 +0000396 }
397}
398
399void MCJIT::runStaticConstructorsDestructors(bool isDtors) {
400 // Execute global ctors/dtors for each module in the program.
401 runStaticConstructorsDestructorsInModulePtrSet(
402 isDtors, OwnedModules.begin_added(), OwnedModules.end_added());
403 runStaticConstructorsDestructorsInModulePtrSet(
404 isDtors, OwnedModules.begin_loaded(), OwnedModules.end_loaded());
405 runStaticConstructorsDestructorsInModulePtrSet(
406 isDtors, OwnedModules.begin_finalized(), OwnedModules.end_finalized());
407}
408
409Function *MCJIT::FindFunctionNamedInModulePtrSet(const char *FnName,
410 ModulePtrSet::iterator I,
411 ModulePtrSet::iterator E) {
412 for (; I != E; ++I) {
413 if (Function *F = (*I)->getFunction(FnName))
414 return F;
415 }
Craig Topper353eda42014-04-24 06:44:33 +0000416 return nullptr;
Andrew Kaylorc89fc822013-10-24 00:19:14 +0000417}
418
419Function *MCJIT::FindFunctionNamed(const char *FnName) {
420 Function *F = FindFunctionNamedInModulePtrSet(
421 FnName, OwnedModules.begin_added(), OwnedModules.end_added());
422 if (!F)
423 F = FindFunctionNamedInModulePtrSet(FnName, OwnedModules.begin_loaded(),
424 OwnedModules.end_loaded());
425 if (!F)
426 F = FindFunctionNamedInModulePtrSet(FnName, OwnedModules.begin_finalized(),
427 OwnedModules.end_finalized());
428 return F;
429}
430
Daniel Dunbar7e5d8a72010-11-17 16:06:43 +0000431GenericValue MCJIT::runFunction(Function *F,
432 const std::vector<GenericValue> &ArgValues) {
Jim Grosbachd5274402011-03-22 18:05:27 +0000433 assert(F && "Function *F was null at entry to run()");
434
Jim Grosbach7b162492011-03-18 22:48:41 +0000435 void *FPtr = getPointerToFunction(F);
Jim Grosbachd5274402011-03-22 18:05:27 +0000436 assert(FPtr && "Pointer to fn's code was null after getPointerToFunction");
Chris Lattner229907c2011-07-18 04:54:35 +0000437 FunctionType *FTy = F->getFunctionType();
438 Type *RetTy = FTy->getReturnType();
Jim Grosbachd5274402011-03-22 18:05:27 +0000439
440 assert((FTy->getNumParams() == ArgValues.size() ||
441 (FTy->isVarArg() && FTy->getNumParams() <= ArgValues.size())) &&
442 "Wrong number of arguments passed into function!");
443 assert(FTy->getNumParams() == ArgValues.size() &&
444 "This doesn't support passing arguments through varargs (yet)!");
445
446 // Handle some common cases first. These cases correspond to common `main'
447 // prototypes.
448 if (RetTy->isIntegerTy(32) || RetTy->isVoidTy()) {
449 switch (ArgValues.size()) {
450 case 3:
451 if (FTy->getParamType(0)->isIntegerTy(32) &&
452 FTy->getParamType(1)->isPointerTy() &&
453 FTy->getParamType(2)->isPointerTy()) {
454 int (*PF)(int, char **, const char **) =
455 (int(*)(int, char **, const char **))(intptr_t)FPtr;
456
457 // Call the function.
458 GenericValue rv;
459 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(),
460 (char **)GVTOP(ArgValues[1]),
461 (const char **)GVTOP(ArgValues[2])));
462 return rv;
463 }
464 break;
465 case 2:
466 if (FTy->getParamType(0)->isIntegerTy(32) &&
467 FTy->getParamType(1)->isPointerTy()) {
468 int (*PF)(int, char **) = (int(*)(int, char **))(intptr_t)FPtr;
469
470 // Call the function.
471 GenericValue rv;
472 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(),
473 (char **)GVTOP(ArgValues[1])));
474 return rv;
475 }
476 break;
477 case 1:
478 if (FTy->getNumParams() == 1 &&
479 FTy->getParamType(0)->isIntegerTy(32)) {
480 GenericValue rv;
481 int (*PF)(int) = (int(*)(int))(intptr_t)FPtr;
482 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue()));
483 return rv;
484 }
485 break;
486 }
487 }
488
489 // Handle cases where no arguments are passed first.
490 if (ArgValues.empty()) {
491 GenericValue rv;
492 switch (RetTy->getTypeID()) {
493 default: llvm_unreachable("Unknown return type for function call!");
494 case Type::IntegerTyID: {
495 unsigned BitWidth = cast<IntegerType>(RetTy)->getBitWidth();
496 if (BitWidth == 1)
497 rv.IntVal = APInt(BitWidth, ((bool(*)())(intptr_t)FPtr)());
498 else if (BitWidth <= 8)
499 rv.IntVal = APInt(BitWidth, ((char(*)())(intptr_t)FPtr)());
500 else if (BitWidth <= 16)
501 rv.IntVal = APInt(BitWidth, ((short(*)())(intptr_t)FPtr)());
502 else if (BitWidth <= 32)
503 rv.IntVal = APInt(BitWidth, ((int(*)())(intptr_t)FPtr)());
504 else if (BitWidth <= 64)
505 rv.IntVal = APInt(BitWidth, ((int64_t(*)())(intptr_t)FPtr)());
506 else
507 llvm_unreachable("Integer types > 64 bits not supported");
508 return rv;
509 }
510 case Type::VoidTyID:
511 rv.IntVal = APInt(32, ((int(*)())(intptr_t)FPtr)());
512 return rv;
513 case Type::FloatTyID:
514 rv.FloatVal = ((float(*)())(intptr_t)FPtr)();
515 return rv;
516 case Type::DoubleTyID:
517 rv.DoubleVal = ((double(*)())(intptr_t)FPtr)();
518 return rv;
519 case Type::X86_FP80TyID:
520 case Type::FP128TyID:
521 case Type::PPC_FP128TyID:
522 llvm_unreachable("long double not supported yet");
Jim Grosbachd5274402011-03-22 18:05:27 +0000523 case Type::PointerTyID:
524 return PTOGV(((void*(*)())(intptr_t)FPtr)());
525 }
526 }
527
Craig Toppera2886c22012-02-07 05:05:23 +0000528 llvm_unreachable("Full-featured argument passing not supported yet!");
Daniel Dunbar7e5d8a72010-11-17 16:06:43 +0000529}
Danil Malyshevbfee5422012-03-28 21:46:36 +0000530
Lang Hames9a783342014-09-15 17:50:22 +0000531void *MCJIT::getPointerToNamedFunction(StringRef Name, bool AbortOnFailure) {
Andrew Kaylorea395922013-10-01 01:47:35 +0000532 if (!isSymbolSearchingDisabled()) {
533 void *ptr = MemMgr.getPointerToNamedFunction(Name, false);
Danil Malyshevbfee5422012-03-28 21:46:36 +0000534 if (ptr)
535 return ptr;
536 }
537
538 /// If a LazyFunctionCreator is installed, use it to get/create the function.
539 if (LazyFunctionCreator)
540 if (void *RP = LazyFunctionCreator(Name))
541 return RP;
542
543 if (AbortOnFailure) {
544 report_fatal_error("Program used external function '"+Name+
Eli Bendersky0e2ac5b2012-04-29 12:40:47 +0000545 "' which could not be resolved!");
Danil Malyshevbfee5422012-03-28 21:46:36 +0000546 }
Craig Topper353eda42014-04-24 06:44:33 +0000547 return nullptr;
Danil Malyshevbfee5422012-03-28 21:46:36 +0000548}
Andrew Kaylord8ffd9c2012-11-06 18:51:59 +0000549
550void MCJIT::RegisterJITEventListener(JITEventListener *L) {
Craig Topper353eda42014-04-24 06:44:33 +0000551 if (!L)
Andrew Kaylord8ffd9c2012-11-06 18:51:59 +0000552 return;
Zachary Turnerc04b8922014-06-20 21:07:14 +0000553 MutexGuard locked(lock);
Andrew Kaylord8ffd9c2012-11-06 18:51:59 +0000554 EventListeners.push_back(L);
555}
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000556
Andrew Kaylord8ffd9c2012-11-06 18:51:59 +0000557void MCJIT::UnregisterJITEventListener(JITEventListener *L) {
Craig Topper353eda42014-04-24 06:44:33 +0000558 if (!L)
Andrew Kaylord8ffd9c2012-11-06 18:51:59 +0000559 return;
Zachary Turnerc04b8922014-06-20 21:07:14 +0000560 MutexGuard locked(lock);
Eric Christopher79cc1e32014-09-02 22:28:02 +0000561 auto I = std::find(EventListeners.rbegin(), EventListeners.rend(), L);
Andrew Kaylord8ffd9c2012-11-06 18:51:59 +0000562 if (I != EventListeners.rend()) {
563 std::swap(*I, EventListeners.back());
564 EventListeners.pop_back();
565 }
566}
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000567
568void MCJIT::NotifyObjectEmitted(const object::ObjectFile& Obj,
569 const RuntimeDyld::LoadedObjectInfo &L) {
Zachary Turnerc04b8922014-06-20 21:07:14 +0000570 MutexGuard locked(lock);
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000571 MemMgr.notifyObjectLoaded(this, Obj);
Andrew Kaylord8ffd9c2012-11-06 18:51:59 +0000572 for (unsigned I = 0, S = EventListeners.size(); I < S; ++I) {
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000573 EventListeners[I]->NotifyObjectEmitted(Obj, L);
Andrew Kaylord8ffd9c2012-11-06 18:51:59 +0000574 }
575}
Lang Hamesb5c7b1f2014-11-26 16:54:40 +0000576
577void MCJIT::NotifyFreeingObject(const object::ObjectFile& Obj) {
Zachary Turnerc04b8922014-06-20 21:07:14 +0000578 MutexGuard locked(lock);
David Blaikieed9709d2014-09-03 19:48:09 +0000579 for (JITEventListener *L : EventListeners)
Eric Christopher79cc1e32014-09-02 22:28:02 +0000580 L->NotifyFreeingObject(Obj);
Andrew Kaylord8ffd9c2012-11-06 18:51:59 +0000581}
Andrew Kaylorea395922013-10-01 01:47:35 +0000582
583uint64_t LinkingMemoryManager::getSymbolAddress(const std::string &Name) {
584 uint64_t Result = ParentEngine->getSymbolAddress(Name, false);
Andrew Kaylor89bdd102013-10-01 16:42:50 +0000585 // If the symbols wasn't found and it begins with an underscore, try again
586 // without the underscore.
587 if (!Result && Name[0] == '_')
588 Result = ParentEngine->getSymbolAddress(Name.substr(1), false);
Andrew Kaylorea395922013-10-01 01:47:35 +0000589 if (Result)
590 return Result;
Lang Hamesea800ca2014-08-14 02:38:20 +0000591 if (ParentEngine->isSymbolSearchingDisabled())
592 return 0;
Andrew Kaylorea395922013-10-01 01:47:35 +0000593 return ClientMM->getSymbolAddress(Name);
594}