09a79f64d428cd92684713df43508c390eb92f91
[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 "MCJITMemoryManager.h"
12 #include "llvm/DerivedTypes.h"
13 #include "llvm/Function.h"
14 #include "llvm/ExecutionEngine/GenericValue.h"
15 #include "llvm/ExecutionEngine/MCJIT.h"
16 #include "llvm/ExecutionEngine/JITMemoryManager.h"
17 #include "llvm/MC/MCAsmInfo.h"
18 #include "llvm/Support/ErrorHandling.h"
19 #include "llvm/Support/DynamicLibrary.h"
20 #include "llvm/Support/MemoryBuffer.h"
21 #include "llvm/Target/TargetData.h"
22
23 using namespace llvm;
24
25 namespace {
26
27 static struct RegisterJIT {
28   RegisterJIT() { MCJIT::Register(); }
29 } JITRegistrator;
30
31 }
32
33 extern "C" void LLVMLinkInMCJIT() {
34 }
35
36 ExecutionEngine *MCJIT::createJIT(Module *M,
37                                   std::string *ErrorStr,
38                                   JITMemoryManager *JMM,
39                                   CodeGenOpt::Level OptLevel,
40                                   bool GVsWithCode,
41                                   TargetMachine *TM) {
42   // Try to register the program as a source of symbols to resolve against.
43   //
44   // FIXME: Don't do this here.
45   sys::DynamicLibrary::LoadLibraryPermanently(0, NULL);
46
47   // If the target supports JIT code generation, create the JIT.
48   if (TargetJITInfo *TJ = TM->getJITInfo())
49     return new MCJIT(M, TM, *TJ, new MCJITMemoryManager(JMM, M), OptLevel,
50                      GVsWithCode);
51
52   if (ErrorStr)
53     *ErrorStr = "target does not support JIT code generation";
54   return 0;
55 }
56
57 MCJIT::MCJIT(Module *m, TargetMachine *tm, TargetJITInfo &tji,
58              RTDyldMemoryManager *MM, CodeGenOpt::Level OptLevel,
59              bool AllocateGVsWithCode)
60   : ExecutionEngine(m), TM(tm), MemMgr(MM), M(m), OS(Buffer), Dyld(MM) {
61
62   PM.add(new TargetData(*TM->getTargetData()));
63
64   // Turn the machine code intermediate representation into bytes in memory
65   // that may be executed.
66   if (TM->addPassesToEmitMC(PM, Ctx, OS, CodeGenOpt::Default, false)) {
67     report_fatal_error("Target does not support MC emission!");
68   }
69
70   // Initialize passes.
71   // FIXME: When we support multiple modules, we'll want to move the code
72   // gen and finalization out of the constructor here and do it more
73   // on-demand as part of getPointerToFunction().
74   PM.run(*M);
75   // Flush the output buffer so the SmallVector gets its data.
76   OS.flush();
77
78   // Load the object into the dynamic linker.
79   // FIXME: It would be nice to avoid making yet another copy.
80   MemoryBuffer *MB = MemoryBuffer::getMemBufferCopy(StringRef(Buffer.data(),
81                                                               Buffer.size()));
82   if (Dyld.loadObject(MB))
83     report_fatal_error(Dyld.getErrorString());
84   // Resolve any relocations.
85   Dyld.resolveRelocations();
86 }
87
88 MCJIT::~MCJIT() {
89   delete MemMgr;
90 }
91
92 void *MCJIT::getPointerToBasicBlock(BasicBlock *BB) {
93   report_fatal_error("not yet implemented");
94   return 0;
95 }
96
97 void *MCJIT::getPointerToFunction(Function *F) {
98   if (F->isDeclaration() || F->hasAvailableExternallyLinkage()) {
99     bool AbortOnFailure = !F->hasExternalWeakLinkage();
100     void *Addr = getPointerToNamedFunction(F->getName(), AbortOnFailure);
101     addGlobalMapping(F, Addr);
102     return Addr;
103   }
104
105   // FIXME: Should we be using the mangler for this? Probably.
106   StringRef BaseName = F->getName();
107   Twine Name;
108   if (BaseName[0] == '\1')
109     Name = BaseName.substr(1);
110   else
111     Name = TM->getMCAsmInfo()->getGlobalPrefix() + BaseName;
112   return (void*)Dyld.getSymbolAddress(Name.str());
113 }
114
115 void *MCJIT::recompileAndRelinkFunction(Function *F) {
116   report_fatal_error("not yet implemented");
117 }
118
119 void MCJIT::freeMachineCodeForFunction(Function *F) {
120   report_fatal_error("not yet implemented");
121 }
122
123 GenericValue MCJIT::runFunction(Function *F,
124                                 const std::vector<GenericValue> &ArgValues) {
125   assert(F && "Function *F was null at entry to run()");
126
127   void *FPtr = getPointerToFunction(F);
128   assert(FPtr && "Pointer to fn's code was null after getPointerToFunction");
129   const FunctionType *FTy = F->getFunctionType();
130   const Type *RetTy = FTy->getReturnType();
131
132   assert((FTy->getNumParams() == ArgValues.size() ||
133           (FTy->isVarArg() && FTy->getNumParams() <= ArgValues.size())) &&
134          "Wrong number of arguments passed into function!");
135   assert(FTy->getNumParams() == ArgValues.size() &&
136          "This doesn't support passing arguments through varargs (yet)!");
137
138   // Handle some common cases first.  These cases correspond to common `main'
139   // prototypes.
140   if (RetTy->isIntegerTy(32) || RetTy->isVoidTy()) {
141     switch (ArgValues.size()) {
142     case 3:
143       if (FTy->getParamType(0)->isIntegerTy(32) &&
144           FTy->getParamType(1)->isPointerTy() &&
145           FTy->getParamType(2)->isPointerTy()) {
146         int (*PF)(int, char **, const char **) =
147           (int(*)(int, char **, const char **))(intptr_t)FPtr;
148
149         // Call the function.
150         GenericValue rv;
151         rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(),
152                                  (char **)GVTOP(ArgValues[1]),
153                                  (const char **)GVTOP(ArgValues[2])));
154         return rv;
155       }
156       break;
157     case 2:
158       if (FTy->getParamType(0)->isIntegerTy(32) &&
159           FTy->getParamType(1)->isPointerTy()) {
160         int (*PF)(int, char **) = (int(*)(int, char **))(intptr_t)FPtr;
161
162         // Call the function.
163         GenericValue rv;
164         rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(),
165                                  (char **)GVTOP(ArgValues[1])));
166         return rv;
167       }
168       break;
169     case 1:
170       if (FTy->getNumParams() == 1 &&
171           FTy->getParamType(0)->isIntegerTy(32)) {
172         GenericValue rv;
173         int (*PF)(int) = (int(*)(int))(intptr_t)FPtr;
174         rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue()));
175         return rv;
176       }
177       break;
178     }
179   }
180
181   // Handle cases where no arguments are passed first.
182   if (ArgValues.empty()) {
183     GenericValue rv;
184     switch (RetTy->getTypeID()) {
185     default: llvm_unreachable("Unknown return type for function call!");
186     case Type::IntegerTyID: {
187       unsigned BitWidth = cast<IntegerType>(RetTy)->getBitWidth();
188       if (BitWidth == 1)
189         rv.IntVal = APInt(BitWidth, ((bool(*)())(intptr_t)FPtr)());
190       else if (BitWidth <= 8)
191         rv.IntVal = APInt(BitWidth, ((char(*)())(intptr_t)FPtr)());
192       else if (BitWidth <= 16)
193         rv.IntVal = APInt(BitWidth, ((short(*)())(intptr_t)FPtr)());
194       else if (BitWidth <= 32)
195         rv.IntVal = APInt(BitWidth, ((int(*)())(intptr_t)FPtr)());
196       else if (BitWidth <= 64)
197         rv.IntVal = APInt(BitWidth, ((int64_t(*)())(intptr_t)FPtr)());
198       else
199         llvm_unreachable("Integer types > 64 bits not supported");
200       return rv;
201     }
202     case Type::VoidTyID:
203       rv.IntVal = APInt(32, ((int(*)())(intptr_t)FPtr)());
204       return rv;
205     case Type::FloatTyID:
206       rv.FloatVal = ((float(*)())(intptr_t)FPtr)();
207       return rv;
208     case Type::DoubleTyID:
209       rv.DoubleVal = ((double(*)())(intptr_t)FPtr)();
210       return rv;
211     case Type::X86_FP80TyID:
212     case Type::FP128TyID:
213     case Type::PPC_FP128TyID:
214       llvm_unreachable("long double not supported yet");
215       return rv;
216     case Type::PointerTyID:
217       return PTOGV(((void*(*)())(intptr_t)FPtr)());
218     }
219   }
220
221   assert("Full-featured argument passing not supported yet!");
222   return GenericValue();
223 }