blob: 96e5c6803a62da2f1b407de5a2c09e84fd524b8e [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"
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,
Dylan Noblesmithc5b28582011-05-13 21:51:29 +000041 TargetMachine *TM) {
Daniel Dunbar6aec2982010-11-17 16:06:43 +000042 // 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
Daniel Dunbar6aec2982010-11-17 16:06:43 +000047 // If the target supports JIT code generation, create the JIT.
48 if (TargetJITInfo *TJ = TM->getJITInfo())
Jim Grosbachc1545142011-05-12 18:21:23 +000049 return new MCJIT(M, TM, *TJ, new MCJITMemoryManager(JMM, M), OptLevel,
Jim Grosbachfcbe5b72011-04-04 23:04:39 +000050 GVsWithCode);
Daniel Dunbar6aec2982010-11-17 16:06:43 +000051
52 if (ErrorStr)
53 *ErrorStr = "target does not support JIT code generation";
54 return 0;
55}
56
Jim Grosbach31649e62011-03-18 22:48:41 +000057MCJIT::MCJIT(Module *m, TargetMachine *tm, TargetJITInfo &tji,
Jim Grosbachfcbe5b72011-04-04 23:04:39 +000058 RTDyldMemoryManager *MM, CodeGenOpt::Level OptLevel,
Daniel Dunbar6aec2982010-11-17 16:06:43 +000059 bool AllocateGVsWithCode)
Jim Grosbachfcbe5b72011-04-04 23:04:39 +000060 : ExecutionEngine(m), TM(tm), MemMgr(MM), M(m), OS(Buffer), Dyld(MM) {
Jim Grosbach31649e62011-03-18 22:48:41 +000061
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.
Jim Grosbach31649e62011-03-18 22:48:41 +000071 // 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();
Jim Grosbachf9229102011-03-22 01:06:42 +000077
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()));
Jim Grosbach8086f3b2011-03-23 19:51:34 +000082 if (Dyld.loadObject(MB))
83 report_fatal_error(Dyld.getErrorString());
Jim Grosbach69e81322011-04-13 15:28:10 +000084 // Resolve any relocations.
85 Dyld.resolveRelocations();
Daniel Dunbar6aec2982010-11-17 16:06:43 +000086}
87
88MCJIT::~MCJIT() {
Jim Grosbachfcbe5b72011-04-04 23:04:39 +000089 delete MemMgr;
Daniel Dunbar6aec2982010-11-17 16:06:43 +000090}
91
92void *MCJIT::getPointerToBasicBlock(BasicBlock *BB) {
93 report_fatal_error("not yet implemented");
94 return 0;
95}
96
97void *MCJIT::getPointerToFunction(Function *F) {
Jim Grosbach34714a02011-03-22 18:05:27 +000098 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
Jim Grosbach3ec2c7c2011-05-18 23:53:21 +0000105 // FIXME: Should we be using the mangler for this? Probably.
106 StringRef BaseName = F->getName();
107 if (BaseName[0] == '\1')
108 BaseName = BaseName.substr(1);
109 else
110 Twine Name = TM->getMCAsmInfo()->getGlobalPrefix() + BaseName;
Jim Grosbachfcbe5b72011-04-04 23:04:39 +0000111 return (void*)Dyld.getSymbolAddress(Name.str());
Daniel Dunbar6aec2982010-11-17 16:06:43 +0000112}
113
114void *MCJIT::recompileAndRelinkFunction(Function *F) {
115 report_fatal_error("not yet implemented");
116}
117
118void MCJIT::freeMachineCodeForFunction(Function *F) {
119 report_fatal_error("not yet implemented");
120}
121
122GenericValue MCJIT::runFunction(Function *F,
123 const std::vector<GenericValue> &ArgValues) {
Jim Grosbach34714a02011-03-22 18:05:27 +0000124 assert(F && "Function *F was null at entry to run()");
125
Jim Grosbach31649e62011-03-18 22:48:41 +0000126 void *FPtr = getPointerToFunction(F);
Jim Grosbach34714a02011-03-22 18:05:27 +0000127 assert(FPtr && "Pointer to fn's code was null after getPointerToFunction");
128 const FunctionType *FTy = F->getFunctionType();
129 const Type *RetTy = FTy->getReturnType();
130
131 assert((FTy->getNumParams() == ArgValues.size() ||
132 (FTy->isVarArg() && FTy->getNumParams() <= ArgValues.size())) &&
133 "Wrong number of arguments passed into function!");
134 assert(FTy->getNumParams() == ArgValues.size() &&
135 "This doesn't support passing arguments through varargs (yet)!");
136
137 // Handle some common cases first. These cases correspond to common `main'
138 // prototypes.
139 if (RetTy->isIntegerTy(32) || RetTy->isVoidTy()) {
140 switch (ArgValues.size()) {
141 case 3:
142 if (FTy->getParamType(0)->isIntegerTy(32) &&
143 FTy->getParamType(1)->isPointerTy() &&
144 FTy->getParamType(2)->isPointerTy()) {
145 int (*PF)(int, char **, const char **) =
146 (int(*)(int, char **, const char **))(intptr_t)FPtr;
147
148 // Call the function.
149 GenericValue rv;
150 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(),
151 (char **)GVTOP(ArgValues[1]),
152 (const char **)GVTOP(ArgValues[2])));
153 return rv;
154 }
155 break;
156 case 2:
157 if (FTy->getParamType(0)->isIntegerTy(32) &&
158 FTy->getParamType(1)->isPointerTy()) {
159 int (*PF)(int, char **) = (int(*)(int, char **))(intptr_t)FPtr;
160
161 // Call the function.
162 GenericValue rv;
163 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(),
164 (char **)GVTOP(ArgValues[1])));
165 return rv;
166 }
167 break;
168 case 1:
169 if (FTy->getNumParams() == 1 &&
170 FTy->getParamType(0)->isIntegerTy(32)) {
171 GenericValue rv;
172 int (*PF)(int) = (int(*)(int))(intptr_t)FPtr;
173 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue()));
174 return rv;
175 }
176 break;
177 }
178 }
179
180 // Handle cases where no arguments are passed first.
181 if (ArgValues.empty()) {
182 GenericValue rv;
183 switch (RetTy->getTypeID()) {
184 default: llvm_unreachable("Unknown return type for function call!");
185 case Type::IntegerTyID: {
186 unsigned BitWidth = cast<IntegerType>(RetTy)->getBitWidth();
187 if (BitWidth == 1)
188 rv.IntVal = APInt(BitWidth, ((bool(*)())(intptr_t)FPtr)());
189 else if (BitWidth <= 8)
190 rv.IntVal = APInt(BitWidth, ((char(*)())(intptr_t)FPtr)());
191 else if (BitWidth <= 16)
192 rv.IntVal = APInt(BitWidth, ((short(*)())(intptr_t)FPtr)());
193 else if (BitWidth <= 32)
194 rv.IntVal = APInt(BitWidth, ((int(*)())(intptr_t)FPtr)());
195 else if (BitWidth <= 64)
196 rv.IntVal = APInt(BitWidth, ((int64_t(*)())(intptr_t)FPtr)());
197 else
198 llvm_unreachable("Integer types > 64 bits not supported");
199 return rv;
200 }
201 case Type::VoidTyID:
202 rv.IntVal = APInt(32, ((int(*)())(intptr_t)FPtr)());
203 return rv;
204 case Type::FloatTyID:
205 rv.FloatVal = ((float(*)())(intptr_t)FPtr)();
206 return rv;
207 case Type::DoubleTyID:
208 rv.DoubleVal = ((double(*)())(intptr_t)FPtr)();
209 return rv;
210 case Type::X86_FP80TyID:
211 case Type::FP128TyID:
212 case Type::PPC_FP128TyID:
213 llvm_unreachable("long double not supported yet");
214 return rv;
215 case Type::PointerTyID:
216 return PTOGV(((void*(*)())(intptr_t)FPtr)());
217 }
218 }
219
220 assert("Full-featured argument passing not supported yet!");
Daniel Dunbar6aec2982010-11-17 16:06:43 +0000221 return GenericValue();
222}