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