Add interface for object-based JIT events.
[oota-llvm.git] / lib / ExecutionEngine / MCJIT / MCJIT.cpp
1 //===-- MCJIT.cpp - MC-based Just-in-Time Compiler ------------------------===//
2 //
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/DerivedTypes.h"
12 #include "llvm/Function.h"
13 #include "llvm/ExecutionEngine/GenericValue.h"
14 #include "llvm/ExecutionEngine/JITEventListener.h"
15 #include "llvm/ExecutionEngine/JITMemoryManager.h"
16 #include "llvm/ExecutionEngine/MCJIT.h"
17 #include "llvm/ExecutionEngine/ObjectBuffer.h"
18 #include "llvm/ExecutionEngine/ObjectImage.h"
19 #include "llvm/MC/MCAsmInfo.h"
20 #include "llvm/Support/ErrorHandling.h"
21 #include "llvm/Support/DynamicLibrary.h"
22 #include "llvm/Support/MemoryBuffer.h"
23 #include "llvm/Support/MutexGuard.h"
24 #include "llvm/DataLayout.h"
25
26 using namespace llvm;
27
28 namespace {
29
30 static struct RegisterJIT {
31   RegisterJIT() { MCJIT::Register(); }
32 } JITRegistrator;
33
34 }
35
36 extern "C" void LLVMLinkInMCJIT() {
37 }
38
39 ExecutionEngine *MCJIT::createJIT(Module *M,
40                                   std::string *ErrorStr,
41                                   JITMemoryManager *JMM,
42                                   bool GVsWithCode,
43                                   TargetMachine *TM) {
44   // 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
49   return new MCJIT(M, TM, JMM, GVsWithCode);
50 }
51
52 MCJIT::MCJIT(Module *m, TargetMachine *tm, RTDyldMemoryManager *MM,
53              bool AllocateGVsWithCode)
54   : ExecutionEngine(m), TM(tm), Ctx(0), MemMgr(MM), Dyld(MM),
55     isCompiled(false), M(m)  {
56
57   setDataLayout(TM->getDataLayout());
58 }
59
60 MCJIT::~MCJIT() {
61   if (LoadedObject)
62     NotifyFreeingObject(LoadedObject.get());
63   delete MemMgr;
64   delete TM;
65 }
66
67 void 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
70   /// is passed as a parameter here to prepare for multiple module support in
71   /// 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
85   PM.add(new DataLayout(*TM->getDataLayout()));
86
87   // The RuntimeDyld will take ownership of this shortly
88   OwningPtr<ObjectBufferStream> Buffer(new ObjectBufferStream());
89
90   // Turn the machine code intermediate representation into bytes in memory
91   // that may be executed.
92   if (TM->addPassesToEmitMC(PM, Ctx, Buffer->getOStream(), false)) {
93     report_fatal_error("Target does not support MC emission!");
94   }
95
96   // Initialize passes.
97   PM.run(*m);
98   // Flush the output buffer to get the generated code into memory
99   Buffer->flush();
100
101   // Load the object into the dynamic linker.
102   // handing off ownership of the buffer
103   LoadedObject.reset(Dyld.loadObject(Buffer.take()));
104   if (!LoadedObject)
105     report_fatal_error(Dyld.getErrorString());
106
107   // Resolve any relocations.
108   Dyld.resolveRelocations();
109
110   // FIXME: Make this optional, maybe even move it to a JIT event listener
111   LoadedObject->registerWithDebugger();
112
113   NotifyObjectEmitted(*LoadedObject);
114
115   // FIXME: Add support for per-module compilation state
116   isCompiled = true;
117 }
118
119 // FIXME: Add a parameter to identify which object is being finalized when
120 // MCJIT supports multiple modules.
121 void MCJIT::finalizeObject() {
122   // If the module hasn't been compiled, just do that.
123   if (!isCompiled) {
124     // If the call to Dyld.resolveRelocations() is removed from emitObject()
125     // we'll need to do that here.
126     emitObject(M);
127     return;
128   }
129
130   // Resolve any relocations.
131   Dyld.resolveRelocations();
132 }
133
134 void *MCJIT::getPointerToBasicBlock(BasicBlock *BB) {
135   report_fatal_error("not yet implemented");
136 }
137
138 void *MCJIT::getPointerToFunction(Function *F) {
139   // FIXME: This should really return a uint64_t since it's a pointer in the
140   // target address space, not our local address space. That's part of the
141   // ExecutionEngine interface, though. Fix that when the old JIT finally
142   // dies.
143
144   // FIXME: Add support for per-module compilation state
145   if (!isCompiled)
146     emitObject(M);
147
148   if (F->isDeclaration() || F->hasAvailableExternallyLinkage()) {
149     bool AbortOnFailure = !F->hasExternalWeakLinkage();
150     void *Addr = getPointerToNamedFunction(F->getName(), AbortOnFailure);
151     addGlobalMapping(F, Addr);
152     return Addr;
153   }
154
155   // FIXME: Should the Dyld be retaining module information? Probably not.
156   // FIXME: Should we be using the mangler for this? Probably.
157   //
158   // This is the accessor for the target address, so make sure to check the
159   // load address of the symbol, not the local address.
160   StringRef BaseName = F->getName();
161   if (BaseName[0] == '\1')
162     return (void*)Dyld.getSymbolLoadAddress(BaseName.substr(1));
163   return (void*)Dyld.getSymbolLoadAddress((TM->getMCAsmInfo()->getGlobalPrefix()
164                                        + BaseName).str());
165 }
166
167 void *MCJIT::recompileAndRelinkFunction(Function *F) {
168   report_fatal_error("not yet implemented");
169 }
170
171 void MCJIT::freeMachineCodeForFunction(Function *F) {
172   report_fatal_error("not yet implemented");
173 }
174
175 GenericValue MCJIT::runFunction(Function *F,
176                                 const std::vector<GenericValue> &ArgValues) {
177   assert(F && "Function *F was null at entry to run()");
178
179   void *FPtr = getPointerToFunction(F);
180   assert(FPtr && "Pointer to fn's code was null after getPointerToFunction");
181   FunctionType *FTy = F->getFunctionType();
182   Type *RetTy = FTy->getReturnType();
183
184   assert((FTy->getNumParams() == ArgValues.size() ||
185           (FTy->isVarArg() && FTy->getNumParams() <= ArgValues.size())) &&
186          "Wrong number of arguments passed into function!");
187   assert(FTy->getNumParams() == ArgValues.size() &&
188          "This doesn't support passing arguments through varargs (yet)!");
189
190   // Handle some common cases first.  These cases correspond to common `main'
191   // prototypes.
192   if (RetTy->isIntegerTy(32) || RetTy->isVoidTy()) {
193     switch (ArgValues.size()) {
194     case 3:
195       if (FTy->getParamType(0)->isIntegerTy(32) &&
196           FTy->getParamType(1)->isPointerTy() &&
197           FTy->getParamType(2)->isPointerTy()) {
198         int (*PF)(int, char **, const char **) =
199           (int(*)(int, char **, const char **))(intptr_t)FPtr;
200
201         // Call the function.
202         GenericValue rv;
203         rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(),
204                                  (char **)GVTOP(ArgValues[1]),
205                                  (const char **)GVTOP(ArgValues[2])));
206         return rv;
207       }
208       break;
209     case 2:
210       if (FTy->getParamType(0)->isIntegerTy(32) &&
211           FTy->getParamType(1)->isPointerTy()) {
212         int (*PF)(int, char **) = (int(*)(int, char **))(intptr_t)FPtr;
213
214         // Call the function.
215         GenericValue rv;
216         rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(),
217                                  (char **)GVTOP(ArgValues[1])));
218         return rv;
219       }
220       break;
221     case 1:
222       if (FTy->getNumParams() == 1 &&
223           FTy->getParamType(0)->isIntegerTy(32)) {
224         GenericValue rv;
225         int (*PF)(int) = (int(*)(int))(intptr_t)FPtr;
226         rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue()));
227         return rv;
228       }
229       break;
230     }
231   }
232
233   // Handle cases where no arguments are passed first.
234   if (ArgValues.empty()) {
235     GenericValue rv;
236     switch (RetTy->getTypeID()) {
237     default: llvm_unreachable("Unknown return type for function call!");
238     case Type::IntegerTyID: {
239       unsigned BitWidth = cast<IntegerType>(RetTy)->getBitWidth();
240       if (BitWidth == 1)
241         rv.IntVal = APInt(BitWidth, ((bool(*)())(intptr_t)FPtr)());
242       else if (BitWidth <= 8)
243         rv.IntVal = APInt(BitWidth, ((char(*)())(intptr_t)FPtr)());
244       else if (BitWidth <= 16)
245         rv.IntVal = APInt(BitWidth, ((short(*)())(intptr_t)FPtr)());
246       else if (BitWidth <= 32)
247         rv.IntVal = APInt(BitWidth, ((int(*)())(intptr_t)FPtr)());
248       else if (BitWidth <= 64)
249         rv.IntVal = APInt(BitWidth, ((int64_t(*)())(intptr_t)FPtr)());
250       else
251         llvm_unreachable("Integer types > 64 bits not supported");
252       return rv;
253     }
254     case Type::VoidTyID:
255       rv.IntVal = APInt(32, ((int(*)())(intptr_t)FPtr)());
256       return rv;
257     case Type::FloatTyID:
258       rv.FloatVal = ((float(*)())(intptr_t)FPtr)();
259       return rv;
260     case Type::DoubleTyID:
261       rv.DoubleVal = ((double(*)())(intptr_t)FPtr)();
262       return rv;
263     case Type::X86_FP80TyID:
264     case Type::FP128TyID:
265     case Type::PPC_FP128TyID:
266       llvm_unreachable("long double not supported yet");
267     case Type::PointerTyID:
268       return PTOGV(((void*(*)())(intptr_t)FPtr)());
269     }
270   }
271
272   llvm_unreachable("Full-featured argument passing not supported yet!");
273 }
274
275 void *MCJIT::getPointerToNamedFunction(const std::string &Name,
276                                        bool AbortOnFailure) {
277   // FIXME: Add support for per-module compilation state
278   if (!isCompiled)
279     emitObject(M);
280
281   if (!isSymbolSearchingDisabled() && MemMgr) {
282     void *ptr = MemMgr->getPointerToNamedFunction(Name, false);
283     if (ptr)
284       return ptr;
285   }
286
287   /// If a LazyFunctionCreator is installed, use it to get/create the function.
288   if (LazyFunctionCreator)
289     if (void *RP = LazyFunctionCreator(Name))
290       return RP;
291
292   if (AbortOnFailure) {
293     report_fatal_error("Program used external function '"+Name+
294                        "' which could not be resolved!");
295   }
296   return 0;
297 }
298
299 void MCJIT::RegisterJITEventListener(JITEventListener *L) {
300   if (L == NULL)
301     return;
302   MutexGuard locked(lock);
303   EventListeners.push_back(L);
304 }
305 void MCJIT::UnregisterJITEventListener(JITEventListener *L) {
306   if (L == NULL)
307     return;
308   MutexGuard locked(lock);
309   SmallVector<JITEventListener*, 2>::reverse_iterator I=
310       std::find(EventListeners.rbegin(), EventListeners.rend(), L);
311   if (I != EventListeners.rend()) {
312     std::swap(*I, EventListeners.back());
313     EventListeners.pop_back();
314   }
315 }
316 void MCJIT::NotifyObjectEmitted(const ObjectImage& Obj) {
317   MutexGuard locked(lock);
318   for (unsigned I = 0, S = EventListeners.size(); I < S; ++I) {
319     EventListeners[I]->NotifyObjectEmitted(Obj);
320   }
321 }
322 void MCJIT::NotifyFreeingObject(const ObjectImage& Obj) {
323   MutexGuard locked(lock);
324   for (unsigned I = 0, S = EventListeners.size(); I < S; ++I) {
325     EventListeners[I]->NotifyFreeingObject(Obj);
326   }
327 }