blob: e1ac19497552fc990749a36e24925721f6e0dcac [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"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000011#include "llvm/DataLayout.h"
Jim Grosbach34714a02011-03-22 18:05:27 +000012#include "llvm/DerivedTypes.h"
Daniel Dunbar6aec2982010-11-17 16:06:43 +000013#include "llvm/ExecutionEngine/GenericValue.h"
Andrew Kaylor776054d2012-11-06 18:51:59 +000014#include "llvm/ExecutionEngine/JITEventListener.h"
Jim Grosbachf9229102011-03-22 01:06:42 +000015#include "llvm/ExecutionEngine/JITMemoryManager.h"
Andrew Kaylor3f23cef2012-10-02 21:18:39 +000016#include "llvm/ExecutionEngine/MCJIT.h"
17#include "llvm/ExecutionEngine/ObjectBuffer.h"
18#include "llvm/ExecutionEngine/ObjectImage.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000019#include "llvm/Function.h"
Jim Grosbachf9229102011-03-22 01:06:42 +000020#include "llvm/MC/MCAsmInfo.h"
Michael J. Spencer1f6efa32010-11-29 18:16:10 +000021#include "llvm/Support/DynamicLibrary.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000022#include "llvm/Support/ErrorHandling.h"
Jim Grosbachf9229102011-03-22 01:06:42 +000023#include "llvm/Support/MemoryBuffer.h"
Andrew Kaylorea708d12012-08-07 18:33:00 +000024#include "llvm/Support/MutexGuard.h"
Daniel Dunbar6aec2982010-11-17 16:06:43 +000025
26using namespace llvm;
27
28namespace {
29
30static struct RegisterJIT {
31 RegisterJIT() { MCJIT::Register(); }
32} JITRegistrator;
33
34}
35
36extern "C" void LLVMLinkInMCJIT() {
37}
38
39ExecutionEngine *MCJIT::createJIT(Module *M,
40 std::string *ErrorStr,
41 JITMemoryManager *JMM,
Daniel Dunbar6aec2982010-11-17 16:06:43 +000042 bool GVsWithCode,
Dylan Noblesmithc5b28582011-05-13 21:51:29 +000043 TargetMachine *TM) {
Daniel Dunbar6aec2982010-11-17 16:06:43 +000044 // Try to register the program as a source of symbols to resolve against.
45 //
46 // FIXME: Don't do this here.
47 sys::DynamicLibrary::LoadLibraryPermanently(0, NULL);
48
Andrew Kaylor647d6d72012-11-01 00:46:04 +000049 return new MCJIT(M, TM, JMM, GVsWithCode);
Daniel Dunbar6aec2982010-11-17 16:06:43 +000050}
51
Jim Grosbach8005bcd2012-08-21 15:42:49 +000052MCJIT::MCJIT(Module *m, TargetMachine *tm, RTDyldMemoryManager *MM,
53 bool AllocateGVsWithCode)
54 : ExecutionEngine(m), TM(tm), Ctx(0), MemMgr(MM), Dyld(MM),
Andrew Kaylor3f23cef2012-10-02 21:18:39 +000055 isCompiled(false), M(m) {
Jim Grosbach31649e62011-03-18 22:48:41 +000056
Micah Villmow3574eca2012-10-08 16:38:25 +000057 setDataLayout(TM->getDataLayout());
Andrew Kaylorea708d12012-08-07 18:33:00 +000058}
59
60MCJIT::~MCJIT() {
Andrew Kaylor776054d2012-11-06 18:51:59 +000061 if (LoadedObject)
Andrew Kaylora0828922012-11-06 19:06:46 +000062 NotifyFreeingObject(*LoadedObject.get());
Andrew Kaylorea708d12012-08-07 18:33:00 +000063 delete MemMgr;
64 delete TM;
65}
66
67void MCJIT::emitObject(Module *m) {
68 /// Currently, MCJIT only supports a single module and the module passed to
69 /// this function call is expected to be the contained module. The module
Andrew Kaylor3f23cef2012-10-02 21:18:39 +000070 /// is passed as a parameter here to prepare for multiple module support in
Andrew Kaylorea708d12012-08-07 18:33:00 +000071 /// the future.
72 assert(M == m);
73
74 // Get a thread lock to make sure we aren't trying to compile multiple times
75 MutexGuard locked(lock);
76
77 // FIXME: Track compilation state on a per-module basis when multiple modules
78 // are supported.
79 // Re-compilation is not supported
80 if (isCompiled)
81 return;
82
83 PassManager PM;
84
Micah Villmow3574eca2012-10-08 16:38:25 +000085 PM.add(new DataLayout(*TM->getDataLayout()));
Jim Grosbach31649e62011-03-18 22:48:41 +000086
Andrew Kaylor3f23cef2012-10-02 21:18:39 +000087 // The RuntimeDyld will take ownership of this shortly
88 OwningPtr<ObjectBufferStream> Buffer(new ObjectBufferStream());
89
Jim Grosbach31649e62011-03-18 22:48:41 +000090 // Turn the machine code intermediate representation into bytes in memory
91 // that may be executed.
Andrew Kaylor3f23cef2012-10-02 21:18:39 +000092 if (TM->addPassesToEmitMC(PM, Ctx, Buffer->getOStream(), false)) {
Jim Grosbach31649e62011-03-18 22:48:41 +000093 report_fatal_error("Target does not support MC emission!");
94 }
95
96 // Initialize passes.
Andrew Kaylorea708d12012-08-07 18:33:00 +000097 PM.run(*m);
Andrew Kaylor3f23cef2012-10-02 21:18:39 +000098 // Flush the output buffer to get the generated code into memory
99 Buffer->flush();
Jim Grosbachf9229102011-03-22 01:06:42 +0000100
101 // Load the object into the dynamic linker.
Andrew Kaylor3f23cef2012-10-02 21:18:39 +0000102 // handing off ownership of the buffer
103 LoadedObject.reset(Dyld.loadObject(Buffer.take()));
104 if (!LoadedObject)
Jim Grosbach8086f3b2011-03-23 19:51:34 +0000105 report_fatal_error(Dyld.getErrorString());
Andrew Kaylorea708d12012-08-07 18:33:00 +0000106
Jim Grosbach69e81322011-04-13 15:28:10 +0000107 // Resolve any relocations.
108 Dyld.resolveRelocations();
Daniel Dunbar6aec2982010-11-17 16:06:43 +0000109
Andrew Kaylor3f23cef2012-10-02 21:18:39 +0000110 // FIXME: Make this optional, maybe even move it to a JIT event listener
111 LoadedObject->registerWithDebugger();
112
Andrew Kaylor776054d2012-11-06 18:51:59 +0000113 NotifyObjectEmitted(*LoadedObject);
114
Andrew Kaylorea708d12012-08-07 18:33:00 +0000115 // FIXME: Add support for per-module compilation state
116 isCompiled = true;
Daniel Dunbar6aec2982010-11-17 16:06:43 +0000117}
118
Andrew Kaylor28989882012-11-05 20:57:16 +0000119// FIXME: Add a parameter to identify which object is being finalized when
120// MCJIT supports multiple modules.
Andrew Kaylor53608a32012-11-15 23:50:01 +0000121// FIXME: Provide a way to separate code emission, relocations and page
122// protection in the interface.
Andrew Kaylor28989882012-11-05 20:57:16 +0000123void MCJIT::finalizeObject() {
124 // If the module hasn't been compiled, just do that.
125 if (!isCompiled) {
126 // If the call to Dyld.resolveRelocations() is removed from emitObject()
127 // we'll need to do that here.
128 emitObject(M);
Andrew Kaylor53608a32012-11-15 23:50:01 +0000129
130 // Set page permissions.
131 MemMgr->applyPermissions();
132
Andrew Kaylor28989882012-11-05 20:57:16 +0000133 return;
134 }
135
136 // Resolve any relocations.
137 Dyld.resolveRelocations();
Andrew Kaylor53608a32012-11-15 23:50:01 +0000138
139 // Set page permissions.
140 MemMgr->applyPermissions();
Andrew Kaylor28989882012-11-05 20:57:16 +0000141}
142
Daniel Dunbar6aec2982010-11-17 16:06:43 +0000143void *MCJIT::getPointerToBasicBlock(BasicBlock *BB) {
144 report_fatal_error("not yet implemented");
Daniel Dunbar6aec2982010-11-17 16:06:43 +0000145}
146
147void *MCJIT::getPointerToFunction(Function *F) {
Jim Grosbach35ed8422012-09-05 16:50:40 +0000148 // FIXME: This should really return a uint64_t since it's a pointer in the
149 // target address space, not our local address space. That's part of the
150 // ExecutionEngine interface, though. Fix that when the old JIT finally
151 // dies.
152
Andrew Kaylorea708d12012-08-07 18:33:00 +0000153 // FIXME: Add support for per-module compilation state
154 if (!isCompiled)
155 emitObject(M);
156
Jim Grosbach34714a02011-03-22 18:05:27 +0000157 if (F->isDeclaration() || F->hasAvailableExternallyLinkage()) {
158 bool AbortOnFailure = !F->hasExternalWeakLinkage();
159 void *Addr = getPointerToNamedFunction(F->getName(), AbortOnFailure);
160 addGlobalMapping(F, Addr);
161 return Addr;
162 }
163
Andrew Kaylorea708d12012-08-07 18:33:00 +0000164 // FIXME: Should the Dyld be retaining module information? Probably not.
Jim Grosbach3ec2c7c2011-05-18 23:53:21 +0000165 // FIXME: Should we be using the mangler for this? Probably.
Jim Grosbach35ed8422012-09-05 16:50:40 +0000166 //
167 // This is the accessor for the target address, so make sure to check the
168 // load address of the symbol, not the local address.
Jim Grosbach3ec2c7c2011-05-18 23:53:21 +0000169 StringRef BaseName = F->getName();
170 if (BaseName[0] == '\1')
Jim Grosbach35ed8422012-09-05 16:50:40 +0000171 return (void*)Dyld.getSymbolLoadAddress(BaseName.substr(1));
172 return (void*)Dyld.getSymbolLoadAddress((TM->getMCAsmInfo()->getGlobalPrefix()
Jim Grosbachc0ceedb2011-05-19 00:45:05 +0000173 + BaseName).str());
Daniel Dunbar6aec2982010-11-17 16:06:43 +0000174}
175
176void *MCJIT::recompileAndRelinkFunction(Function *F) {
177 report_fatal_error("not yet implemented");
178}
179
180void MCJIT::freeMachineCodeForFunction(Function *F) {
181 report_fatal_error("not yet implemented");
182}
183
184GenericValue MCJIT::runFunction(Function *F,
185 const std::vector<GenericValue> &ArgValues) {
Jim Grosbach34714a02011-03-22 18:05:27 +0000186 assert(F && "Function *F was null at entry to run()");
187
Jim Grosbach31649e62011-03-18 22:48:41 +0000188 void *FPtr = getPointerToFunction(F);
Jim Grosbach34714a02011-03-22 18:05:27 +0000189 assert(FPtr && "Pointer to fn's code was null after getPointerToFunction");
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000190 FunctionType *FTy = F->getFunctionType();
191 Type *RetTy = FTy->getReturnType();
Jim Grosbach34714a02011-03-22 18:05:27 +0000192
193 assert((FTy->getNumParams() == ArgValues.size() ||
194 (FTy->isVarArg() && FTy->getNumParams() <= ArgValues.size())) &&
195 "Wrong number of arguments passed into function!");
196 assert(FTy->getNumParams() == ArgValues.size() &&
197 "This doesn't support passing arguments through varargs (yet)!");
198
199 // Handle some common cases first. These cases correspond to common `main'
200 // prototypes.
201 if (RetTy->isIntegerTy(32) || RetTy->isVoidTy()) {
202 switch (ArgValues.size()) {
203 case 3:
204 if (FTy->getParamType(0)->isIntegerTy(32) &&
205 FTy->getParamType(1)->isPointerTy() &&
206 FTy->getParamType(2)->isPointerTy()) {
207 int (*PF)(int, char **, const char **) =
208 (int(*)(int, char **, const char **))(intptr_t)FPtr;
209
210 // Call the function.
211 GenericValue rv;
212 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(),
213 (char **)GVTOP(ArgValues[1]),
214 (const char **)GVTOP(ArgValues[2])));
215 return rv;
216 }
217 break;
218 case 2:
219 if (FTy->getParamType(0)->isIntegerTy(32) &&
220 FTy->getParamType(1)->isPointerTy()) {
221 int (*PF)(int, char **) = (int(*)(int, char **))(intptr_t)FPtr;
222
223 // Call the function.
224 GenericValue rv;
225 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(),
226 (char **)GVTOP(ArgValues[1])));
227 return rv;
228 }
229 break;
230 case 1:
231 if (FTy->getNumParams() == 1 &&
232 FTy->getParamType(0)->isIntegerTy(32)) {
233 GenericValue rv;
234 int (*PF)(int) = (int(*)(int))(intptr_t)FPtr;
235 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue()));
236 return rv;
237 }
238 break;
239 }
240 }
241
242 // Handle cases where no arguments are passed first.
243 if (ArgValues.empty()) {
244 GenericValue rv;
245 switch (RetTy->getTypeID()) {
246 default: llvm_unreachable("Unknown return type for function call!");
247 case Type::IntegerTyID: {
248 unsigned BitWidth = cast<IntegerType>(RetTy)->getBitWidth();
249 if (BitWidth == 1)
250 rv.IntVal = APInt(BitWidth, ((bool(*)())(intptr_t)FPtr)());
251 else if (BitWidth <= 8)
252 rv.IntVal = APInt(BitWidth, ((char(*)())(intptr_t)FPtr)());
253 else if (BitWidth <= 16)
254 rv.IntVal = APInt(BitWidth, ((short(*)())(intptr_t)FPtr)());
255 else if (BitWidth <= 32)
256 rv.IntVal = APInt(BitWidth, ((int(*)())(intptr_t)FPtr)());
257 else if (BitWidth <= 64)
258 rv.IntVal = APInt(BitWidth, ((int64_t(*)())(intptr_t)FPtr)());
259 else
260 llvm_unreachable("Integer types > 64 bits not supported");
261 return rv;
262 }
263 case Type::VoidTyID:
264 rv.IntVal = APInt(32, ((int(*)())(intptr_t)FPtr)());
265 return rv;
266 case Type::FloatTyID:
267 rv.FloatVal = ((float(*)())(intptr_t)FPtr)();
268 return rv;
269 case Type::DoubleTyID:
270 rv.DoubleVal = ((double(*)())(intptr_t)FPtr)();
271 return rv;
272 case Type::X86_FP80TyID:
273 case Type::FP128TyID:
274 case Type::PPC_FP128TyID:
275 llvm_unreachable("long double not supported yet");
Jim Grosbach34714a02011-03-22 18:05:27 +0000276 case Type::PointerTyID:
277 return PTOGV(((void*(*)())(intptr_t)FPtr)());
278 }
279 }
280
Craig Topper85814382012-02-07 05:05:23 +0000281 llvm_unreachable("Full-featured argument passing not supported yet!");
Daniel Dunbar6aec2982010-11-17 16:06:43 +0000282}
Danil Malyshev30b9e322012-03-28 21:46:36 +0000283
284void *MCJIT::getPointerToNamedFunction(const std::string &Name,
Eli Bendersky5fe01982012-04-29 12:40:47 +0000285 bool AbortOnFailure) {
Andrew Kaylorea708d12012-08-07 18:33:00 +0000286 // FIXME: Add support for per-module compilation state
287 if (!isCompiled)
288 emitObject(M);
289
Danil Malyshev30b9e322012-03-28 21:46:36 +0000290 if (!isSymbolSearchingDisabled() && MemMgr) {
291 void *ptr = MemMgr->getPointerToNamedFunction(Name, false);
292 if (ptr)
293 return ptr;
294 }
295
296 /// If a LazyFunctionCreator is installed, use it to get/create the function.
297 if (LazyFunctionCreator)
298 if (void *RP = LazyFunctionCreator(Name))
299 return RP;
300
301 if (AbortOnFailure) {
302 report_fatal_error("Program used external function '"+Name+
Eli Bendersky5fe01982012-04-29 12:40:47 +0000303 "' which could not be resolved!");
Danil Malyshev30b9e322012-03-28 21:46:36 +0000304 }
305 return 0;
306}
Andrew Kaylor776054d2012-11-06 18:51:59 +0000307
308void MCJIT::RegisterJITEventListener(JITEventListener *L) {
309 if (L == NULL)
310 return;
311 MutexGuard locked(lock);
312 EventListeners.push_back(L);
313}
314void MCJIT::UnregisterJITEventListener(JITEventListener *L) {
315 if (L == NULL)
316 return;
317 MutexGuard locked(lock);
318 SmallVector<JITEventListener*, 2>::reverse_iterator I=
319 std::find(EventListeners.rbegin(), EventListeners.rend(), L);
320 if (I != EventListeners.rend()) {
321 std::swap(*I, EventListeners.back());
322 EventListeners.pop_back();
323 }
324}
325void MCJIT::NotifyObjectEmitted(const ObjectImage& Obj) {
326 MutexGuard locked(lock);
327 for (unsigned I = 0, S = EventListeners.size(); I < S; ++I) {
328 EventListeners[I]->NotifyObjectEmitted(Obj);
329 }
330}
331void MCJIT::NotifyFreeingObject(const ObjectImage& Obj) {
332 MutexGuard locked(lock);
333 for (unsigned I = 0, S = EventListeners.size(); I < S; ++I) {
334 EventListeners[I]->NotifyFreeingObject(Obj);
335 }
336}