blob: 148e0d91b4817de751b21467986e31b88d01510a [file] [log] [blame]
Eric Christopherd6190672011-03-22 08:49:56 +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"
Jim Grosbachfcbe5b72011-04-04 23:04:39 +000011#include "MCJITMemoryManager.h"
Jim Grosbach34714a02011-03-22 18:05:27 +000012#include "llvm/DerivedTypes.h"
Jim Grosbach31649e62011-03-18 22:48:41 +000013#include "llvm/Function.h"
Daniel Dunbar6aec2982010-11-17 16:06:43 +000014#include "llvm/ExecutionEngine/GenericValue.h"
15#include "llvm/ExecutionEngine/MCJIT.h"
Jim Grosbachf9229102011-03-22 01:06:42 +000016#include "llvm/ExecutionEngine/JITMemoryManager.h"
17#include "llvm/MC/MCAsmInfo.h"
Daniel Dunbar6aec2982010-11-17 16:06:43 +000018#include "llvm/Support/ErrorHandling.h"
Michael J. Spencer1f6efa32010-11-29 18:16:10 +000019#include "llvm/Support/DynamicLibrary.h"
Jim Grosbachf9229102011-03-22 01:06:42 +000020#include "llvm/Support/MemoryBuffer.h"
Jim Grosbach31649e62011-03-18 22:48:41 +000021#include "llvm/Target/TargetData.h"
Daniel Dunbar6aec2982010-11-17 16:06:43 +000022
23using namespace llvm;
24
25namespace {
26
27static struct RegisterJIT {
28 RegisterJIT() { MCJIT::Register(); }
29} JITRegistrator;
30
31}
32
33extern "C" void LLVMLinkInMCJIT() {
34}
35
36ExecutionEngine *MCJIT::createJIT(Module *M,
37 std::string *ErrorStr,
38 JITMemoryManager *JMM,
39 CodeGenOpt::Level OptLevel,
40 bool GVsWithCode,
41 CodeModel::Model CMM,
42 StringRef MArch,
43 StringRef MCPU,
44 const SmallVectorImpl<std::string>& MAttrs) {
45 // Try to register the program as a source of symbols to resolve against.
46 //
47 // FIXME: Don't do this here.
48 sys::DynamicLibrary::LoadLibraryPermanently(0, NULL);
49
50 // Pick a target either via -march or by guessing the native arch.
51 //
52 // FIXME: This should be lifted out of here, it isn't something which should
53 // be part of the JIT policy, rather the burden for this selection should be
54 // pushed to clients.
55 TargetMachine *TM = MCJIT::selectTarget(M, MArch, MCPU, MAttrs, ErrorStr);
56 if (!TM || (ErrorStr && ErrorStr->length() > 0)) return 0;
57 TM->setCodeModel(CMM);
58
59 // If the target supports JIT code generation, create the JIT.
60 if (TargetJITInfo *TJ = TM->getJITInfo())
Jim Grosbachfcbe5b72011-04-04 23:04:39 +000061 return new MCJIT(M, TM, *TJ, new MCJITMemoryManager(JMM), OptLevel,
62 GVsWithCode);
Daniel Dunbar6aec2982010-11-17 16:06:43 +000063
64 if (ErrorStr)
65 *ErrorStr = "target does not support JIT code generation";
66 return 0;
67}
68
Jim Grosbach31649e62011-03-18 22:48:41 +000069MCJIT::MCJIT(Module *m, TargetMachine *tm, TargetJITInfo &tji,
Jim Grosbachfcbe5b72011-04-04 23:04:39 +000070 RTDyldMemoryManager *MM, CodeGenOpt::Level OptLevel,
Daniel Dunbar6aec2982010-11-17 16:06:43 +000071 bool AllocateGVsWithCode)
Jim Grosbachfcbe5b72011-04-04 23:04:39 +000072 : ExecutionEngine(m), TM(tm), MemMgr(MM), M(m), OS(Buffer), Dyld(MM) {
Jim Grosbach31649e62011-03-18 22:48:41 +000073
74 PM.add(new TargetData(*TM->getTargetData()));
75
76 // Turn the machine code intermediate representation into bytes in memory
77 // that may be executed.
78 if (TM->addPassesToEmitMC(PM, Ctx, OS, CodeGenOpt::Default, false)) {
79 report_fatal_error("Target does not support MC emission!");
80 }
81
82 // Initialize passes.
Jim Grosbach31649e62011-03-18 22:48:41 +000083 // FIXME: When we support multiple modules, we'll want to move the code
84 // gen and finalization out of the constructor here and do it more
85 // on-demand as part of getPointerToFunction().
86 PM.run(*M);
87 // Flush the output buffer so the SmallVector gets its data.
88 OS.flush();
Jim Grosbachf9229102011-03-22 01:06:42 +000089
90 // Load the object into the dynamic linker.
91 // FIXME: It would be nice to avoid making yet another copy.
92 MemoryBuffer *MB = MemoryBuffer::getMemBufferCopy(StringRef(Buffer.data(),
93 Buffer.size()));
Jim Grosbach8086f3b2011-03-23 19:51:34 +000094 if (Dyld.loadObject(MB))
95 report_fatal_error(Dyld.getErrorString());
Daniel Dunbar6aec2982010-11-17 16:06:43 +000096}
97
98MCJIT::~MCJIT() {
Jim Grosbachfcbe5b72011-04-04 23:04:39 +000099 delete MemMgr;
Daniel Dunbar6aec2982010-11-17 16:06:43 +0000100}
101
102void *MCJIT::getPointerToBasicBlock(BasicBlock *BB) {
103 report_fatal_error("not yet implemented");
104 return 0;
105}
106
107void *MCJIT::getPointerToFunction(Function *F) {
Jim Grosbach34714a02011-03-22 18:05:27 +0000108 if (F->isDeclaration() || F->hasAvailableExternallyLinkage()) {
109 bool AbortOnFailure = !F->hasExternalWeakLinkage();
110 void *Addr = getPointerToNamedFunction(F->getName(), AbortOnFailure);
111 addGlobalMapping(F, Addr);
112 return Addr;
113 }
114
Jim Grosbachf9229102011-03-22 01:06:42 +0000115 Twine Name = TM->getMCAsmInfo()->getGlobalPrefix() + F->getName();
Jim Grosbachfcbe5b72011-04-04 23:04:39 +0000116 return (void*)Dyld.getSymbolAddress(Name.str());
Daniel Dunbar6aec2982010-11-17 16:06:43 +0000117}
118
119void *MCJIT::recompileAndRelinkFunction(Function *F) {
120 report_fatal_error("not yet implemented");
121}
122
123void MCJIT::freeMachineCodeForFunction(Function *F) {
124 report_fatal_error("not yet implemented");
125}
126
127GenericValue MCJIT::runFunction(Function *F,
128 const std::vector<GenericValue> &ArgValues) {
Jim Grosbach34714a02011-03-22 18:05:27 +0000129 assert(F && "Function *F was null at entry to run()");
130
Jim Grosbach31649e62011-03-18 22:48:41 +0000131 void *FPtr = getPointerToFunction(F);
Jim Grosbach34714a02011-03-22 18:05:27 +0000132 assert(FPtr && "Pointer to fn's code was null after getPointerToFunction");
133 const FunctionType *FTy = F->getFunctionType();
134 const Type *RetTy = FTy->getReturnType();
135
136 assert((FTy->getNumParams() == ArgValues.size() ||
137 (FTy->isVarArg() && FTy->getNumParams() <= ArgValues.size())) &&
138 "Wrong number of arguments passed into function!");
139 assert(FTy->getNumParams() == ArgValues.size() &&
140 "This doesn't support passing arguments through varargs (yet)!");
141
142 // Handle some common cases first. These cases correspond to common `main'
143 // prototypes.
144 if (RetTy->isIntegerTy(32) || RetTy->isVoidTy()) {
145 switch (ArgValues.size()) {
146 case 3:
147 if (FTy->getParamType(0)->isIntegerTy(32) &&
148 FTy->getParamType(1)->isPointerTy() &&
149 FTy->getParamType(2)->isPointerTy()) {
150 int (*PF)(int, char **, const char **) =
151 (int(*)(int, char **, const char **))(intptr_t)FPtr;
152
153 // Call the function.
154 GenericValue rv;
155 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(),
156 (char **)GVTOP(ArgValues[1]),
157 (const char **)GVTOP(ArgValues[2])));
158 return rv;
159 }
160 break;
161 case 2:
162 if (FTy->getParamType(0)->isIntegerTy(32) &&
163 FTy->getParamType(1)->isPointerTy()) {
164 int (*PF)(int, char **) = (int(*)(int, char **))(intptr_t)FPtr;
165
166 // Call the function.
167 GenericValue rv;
168 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(),
169 (char **)GVTOP(ArgValues[1])));
170 return rv;
171 }
172 break;
173 case 1:
174 if (FTy->getNumParams() == 1 &&
175 FTy->getParamType(0)->isIntegerTy(32)) {
176 GenericValue rv;
177 int (*PF)(int) = (int(*)(int))(intptr_t)FPtr;
178 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue()));
179 return rv;
180 }
181 break;
182 }
183 }
184
185 // Handle cases where no arguments are passed first.
186 if (ArgValues.empty()) {
187 GenericValue rv;
188 switch (RetTy->getTypeID()) {
189 default: llvm_unreachable("Unknown return type for function call!");
190 case Type::IntegerTyID: {
191 unsigned BitWidth = cast<IntegerType>(RetTy)->getBitWidth();
192 if (BitWidth == 1)
193 rv.IntVal = APInt(BitWidth, ((bool(*)())(intptr_t)FPtr)());
194 else if (BitWidth <= 8)
195 rv.IntVal = APInt(BitWidth, ((char(*)())(intptr_t)FPtr)());
196 else if (BitWidth <= 16)
197 rv.IntVal = APInt(BitWidth, ((short(*)())(intptr_t)FPtr)());
198 else if (BitWidth <= 32)
199 rv.IntVal = APInt(BitWidth, ((int(*)())(intptr_t)FPtr)());
200 else if (BitWidth <= 64)
201 rv.IntVal = APInt(BitWidth, ((int64_t(*)())(intptr_t)FPtr)());
202 else
203 llvm_unreachable("Integer types > 64 bits not supported");
204 return rv;
205 }
206 case Type::VoidTyID:
207 rv.IntVal = APInt(32, ((int(*)())(intptr_t)FPtr)());
208 return rv;
209 case Type::FloatTyID:
210 rv.FloatVal = ((float(*)())(intptr_t)FPtr)();
211 return rv;
212 case Type::DoubleTyID:
213 rv.DoubleVal = ((double(*)())(intptr_t)FPtr)();
214 return rv;
215 case Type::X86_FP80TyID:
216 case Type::FP128TyID:
217 case Type::PPC_FP128TyID:
218 llvm_unreachable("long double not supported yet");
219 return rv;
220 case Type::PointerTyID:
221 return PTOGV(((void*(*)())(intptr_t)FPtr)());
222 }
223 }
224
225 assert("Full-featured argument passing not supported yet!");
Daniel Dunbar6aec2982010-11-17 16:06:43 +0000226 return GenericValue();
227}