blob: 2915f4967299d70459eca88f9ff40847527a5a9c [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- JITEmitter.cpp - Write machine code to executable memory ----------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file defines a MachineCodeEmitter object that is used by the JIT to
11// write machine code to memory and remember where relocatable values are.
12//
13//===----------------------------------------------------------------------===//
14
15#define DEBUG_TYPE "jit"
16#include "JIT.h"
Reid Kleckner738b4f22009-09-20 23:52:43 +000017#include "JITDebugRegisterer.h"
Nicolas Geoffray0e757e12008-02-13 18:39:37 +000018#include "JITDwarfEmitter.h"
Reid Kleckner738b4f22009-09-20 23:52:43 +000019#include "llvm/ADT/OwningPtr.h"
Dale Johannesen0ba4a0e2008-08-07 01:30:15 +000020#include "llvm/Constants.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000021#include "llvm/Module.h"
Dale Johannesen0ba4a0e2008-08-07 01:30:15 +000022#include "llvm/DerivedTypes.h"
Bruno Cardoso Lopes1ea31ff2009-05-30 20:51:52 +000023#include "llvm/CodeGen/JITCodeEmitter.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000024#include "llvm/CodeGen/MachineFunction.h"
25#include "llvm/CodeGen/MachineConstantPool.h"
26#include "llvm/CodeGen/MachineJumpTableInfo.h"
Nicolas Geoffray0e757e12008-02-13 18:39:37 +000027#include "llvm/CodeGen/MachineModuleInfo.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000028#include "llvm/CodeGen/MachineRelocation.h"
Dale Johannesen0ba4a0e2008-08-07 01:30:15 +000029#include "llvm/ExecutionEngine/GenericValue.h"
Jeffrey Yasskinf8d55342009-06-25 02:04:04 +000030#include "llvm/ExecutionEngine/JITEventListener.h"
31#include "llvm/ExecutionEngine/JITMemoryManager.h"
Argiris Kirtzidis6841c1a2009-05-18 21:06:40 +000032#include "llvm/CodeGen/MachineCodeInfo.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000033#include "llvm/Target/TargetData.h"
34#include "llvm/Target/TargetJITInfo.h"
35#include "llvm/Target/TargetMachine.h"
Nicolas Geoffray0e757e12008-02-13 18:39:37 +000036#include "llvm/Target/TargetOptions.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000037#include "llvm/Support/Debug.h"
Edwin Törökced9ff82009-07-11 13:10:19 +000038#include "llvm/Support/ErrorHandling.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000039#include "llvm/Support/MutexGuard.h"
Nick Lewyckyaaffd142009-04-19 18:32:03 +000040#include "llvm/Support/ValueHandle.h"
Edwin Törökced9ff82009-07-11 13:10:19 +000041#include "llvm/Support/raw_ostream.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000042#include "llvm/System/Disassembler.h"
Chris Lattner88f51632008-06-25 17:18:44 +000043#include "llvm/System/Memory.h"
Nicolas Geoffray68847972008-04-18 20:59:31 +000044#include "llvm/Target/TargetInstrInfo.h"
Jeffrey Yasskin2512e352009-10-20 18:13:21 +000045#include "llvm/ADT/DenseMap.h"
Evan Cheng68e5fc32008-11-07 09:02:17 +000046#include "llvm/ADT/SmallPtrSet.h"
Nate Begeman7b1a8472009-02-18 08:31:02 +000047#include "llvm/ADT/SmallVector.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000048#include "llvm/ADT/Statistic.h"
Jeffrey Yasskin6ddfe5c2009-10-23 22:37:43 +000049#include "llvm/ADT/ValueMap.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000050#include <algorithm>
Evan Cheng23dbb902008-11-05 23:44:08 +000051#ifndef NDEBUG
52#include <iomanip>
53#endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +000054using namespace llvm;
55
56STATISTIC(NumBytes, "Number of bytes of machine code compiled");
57STATISTIC(NumRelos, "Number of relocations applied");
Reid Klecknercc492292009-07-23 21:46:56 +000058STATISTIC(NumRetries, "Number of retries with more memory");
Dan Gohmanf17a25c2007-07-18 16:29:46 +000059static JIT *TheJIT = 0;
60
Dan Gohmanf17a25c2007-07-18 16:29:46 +000061
62//===----------------------------------------------------------------------===//
63// JIT lazy compilation code.
64//
65namespace {
Jeffrey Yasskin6ddfe5c2009-10-23 22:37:43 +000066 class JITResolverState;
67
68 template<typename ValueTy>
69 struct NoRAUWValueMapConfig : public ValueMapConfig<ValueTy> {
70 typedef JITResolverState *ExtraData;
71 static void onRAUW(JITResolverState *, Value *Old, Value *New) {
72 assert(false && "The JIT doesn't know how to handle a"
73 " RAUW on a value it has emitted.");
74 }
75 };
76
77 struct CallSiteValueMapConfig : public NoRAUWValueMapConfig<Function*> {
78 typedef JITResolverState *ExtraData;
79 static void onDelete(JITResolverState *JRS, Function *F);
80 };
81
Dan Gohmanf17a25c2007-07-18 16:29:46 +000082 class JITResolverState {
Nick Lewycky924fc912009-04-27 05:09:44 +000083 public:
Jeffrey Yasskin6ddfe5c2009-10-23 22:37:43 +000084 typedef ValueMap<Function*, void*, NoRAUWValueMapConfig<Function*> >
85 FunctionToStubMapTy;
Jeffrey Yasskine45e6f92009-10-19 18:49:59 +000086 typedef std::map<void*, AssertingVH<Function> > CallSiteToFunctionMapTy;
Jeffrey Yasskin6ddfe5c2009-10-23 22:37:43 +000087 typedef ValueMap<Function *, SmallPtrSet<void*, 1>,
88 CallSiteValueMapConfig> FunctionToCallSitesMapTy;
Nick Lewycky924fc912009-04-27 05:09:44 +000089 typedef std::map<AssertingVH<GlobalValue>, void*> GlobalToIndirectSymMapTy;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000090 private:
91 /// FunctionToStubMap - Keep track of the stub created for a particular
92 /// function so that we can reuse them if necessary.
Nick Lewycky924fc912009-04-27 05:09:44 +000093 FunctionToStubMapTy FunctionToStubMap;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000094
Jeffrey Yasskine45e6f92009-10-19 18:49:59 +000095 /// CallSiteToFunctionMap - Keep track of the function that each lazy call
96 /// site corresponds to, and vice versa.
97 CallSiteToFunctionMapTy CallSiteToFunctionMap;
98 FunctionToCallSitesMapTy FunctionToCallSitesMap;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000099
Evan Chengb0ebcb42008-11-10 01:52:24 +0000100 /// GlobalToIndirectSymMap - Keep track of the indirect symbol created for a
Evan Cheng28e7e162008-01-04 10:46:51 +0000101 /// particular GlobalVariable so that we can reuse them if necessary.
Nick Lewycky924fc912009-04-27 05:09:44 +0000102 GlobalToIndirectSymMapTy GlobalToIndirectSymMap;
Evan Cheng28e7e162008-01-04 10:46:51 +0000103
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000104 public:
Jeffrey Yasskin6ddfe5c2009-10-23 22:37:43 +0000105 JITResolverState() : FunctionToStubMap(this),
106 FunctionToCallSitesMap(this) {}
107
Nick Lewycky924fc912009-04-27 05:09:44 +0000108 FunctionToStubMapTy& getFunctionToStubMap(const MutexGuard& locked) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000109 assert(locked.holds(TheJIT->lock));
110 return FunctionToStubMap;
111 }
112
Nick Lewycky924fc912009-04-27 05:09:44 +0000113 GlobalToIndirectSymMapTy& getGlobalToIndirectSymMap(const MutexGuard& locked) {
Evan Cheng28e7e162008-01-04 10:46:51 +0000114 assert(locked.holds(TheJIT->lock));
Evan Chengb0ebcb42008-11-10 01:52:24 +0000115 return GlobalToIndirectSymMap;
Evan Cheng28e7e162008-01-04 10:46:51 +0000116 }
Jeffrey Yasskine45e6f92009-10-19 18:49:59 +0000117
118 pair<void *, Function *> LookupFunctionFromCallSite(
119 const MutexGuard &locked, void *CallSite) const {
120 assert(locked.holds(TheJIT->lock));
121
122 // The address given to us for the stub may not be exactly right, it might be
123 // a little bit after the stub. As such, use upper_bound to find it.
124 CallSiteToFunctionMapTy::const_iterator I =
125 CallSiteToFunctionMap.upper_bound(CallSite);
126 assert(I != CallSiteToFunctionMap.begin() &&
127 "This is not a known call site!");
128 --I;
129 return *I;
130 }
131
132 void AddCallSite(const MutexGuard &locked, void *CallSite, Function *F) {
133 assert(locked.holds(TheJIT->lock));
134
Jeffrey Yasskin6ddfe5c2009-10-23 22:37:43 +0000135 bool Inserted = CallSiteToFunctionMap.insert(
136 std::make_pair(CallSite, F)).second;
137 (void)Inserted;
138 assert(Inserted && "Pair was already in CallSiteToFunctionMap");
Jeffrey Yasskine45e6f92009-10-19 18:49:59 +0000139 FunctionToCallSitesMap[F].insert(CallSite);
140 }
141
142 // Returns the Function of the stub if a stub was erased, or NULL if there
143 // was no stub. This function uses the call-site->function map to find a
144 // relevant function, but asserts that only stubs and not other call sites
145 // will be passed in.
146 Function *EraseStub(const MutexGuard &locked, void *Stub) {
147 CallSiteToFunctionMapTy::iterator C2F_I =
148 CallSiteToFunctionMap.find(Stub);
149 if (C2F_I == CallSiteToFunctionMap.end()) {
150 // Not a stub.
151 return NULL;
152 }
153
154 Function *const F = C2F_I->second;
155#ifndef NDEBUG
156 void *RealStub = FunctionToStubMap.lookup(F);
157 assert(RealStub == Stub &&
158 "Call-site that wasn't a stub pass in to EraseStub");
159#endif
160 FunctionToStubMap.erase(F);
161 CallSiteToFunctionMap.erase(C2F_I);
162
163 // Remove the stub from the function->call-sites map, and remove the whole
164 // entry from the map if that was the last call site.
165 FunctionToCallSitesMapTy::iterator F2C_I = FunctionToCallSitesMap.find(F);
166 assert(F2C_I != FunctionToCallSitesMap.end() &&
167 "FunctionToCallSitesMap broken");
Jeffrey Yasskin6ddfe5c2009-10-23 22:37:43 +0000168 bool Erased = F2C_I->second.erase(Stub);
169 (void)Erased;
170 assert(Erased && "FunctionToCallSitesMap broken");
Jeffrey Yasskine45e6f92009-10-19 18:49:59 +0000171 if (F2C_I->second.empty())
172 FunctionToCallSitesMap.erase(F2C_I);
173
174 return F;
175 }
176
177 void EraseAllCallSites(const MutexGuard &locked, Function *F) {
178 assert(locked.holds(TheJIT->lock));
Jeffrey Yasskin6ddfe5c2009-10-23 22:37:43 +0000179 EraseAllCallSitesPrelocked(F);
180 }
181 void EraseAllCallSitesPrelocked(Function *F) {
Jeffrey Yasskine45e6f92009-10-19 18:49:59 +0000182 FunctionToCallSitesMapTy::iterator F2C = FunctionToCallSitesMap.find(F);
183 if (F2C == FunctionToCallSitesMap.end())
184 return;
185 for (SmallPtrSet<void*, 1>::const_iterator I = F2C->second.begin(),
186 E = F2C->second.end(); I != E; ++I) {
Jeffrey Yasskin6ddfe5c2009-10-23 22:37:43 +0000187 bool Erased = CallSiteToFunctionMap.erase(*I);
188 (void)Erased;
189 assert(Erased && "Missing call site->function mapping");
Jeffrey Yasskine45e6f92009-10-19 18:49:59 +0000190 }
191 FunctionToCallSitesMap.erase(F2C);
192 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000193 };
194
195 /// JITResolver - Keep track of, and resolve, call sites for functions that
196 /// have not yet been compiled.
197 class JITResolver {
Nick Lewycky924fc912009-04-27 05:09:44 +0000198 typedef JITResolverState::FunctionToStubMapTy FunctionToStubMapTy;
Jeffrey Yasskine45e6f92009-10-19 18:49:59 +0000199 typedef JITResolverState::CallSiteToFunctionMapTy CallSiteToFunctionMapTy;
Nick Lewycky924fc912009-04-27 05:09:44 +0000200 typedef JITResolverState::GlobalToIndirectSymMapTy GlobalToIndirectSymMapTy;
201
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000202 /// LazyResolverFn - The target lazy resolver function that we actually
203 /// rewrite instructions to use.
204 TargetJITInfo::LazyResolverFn LazyResolverFn;
205
206 JITResolverState state;
207
208 /// ExternalFnToStubMap - This is the equivalent of FunctionToStubMap for
209 /// external functions.
210 std::map<void*, void*> ExternalFnToStubMap;
211
Evan Cheng68c18682009-03-13 07:51:59 +0000212 /// revGOTMap - map addresses to indexes in the GOT
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000213 std::map<void*, unsigned> revGOTMap;
214 unsigned nextGOTIndex;
215
216 static JITResolver *TheJITResolver;
217 public:
Dan Gohman40bd38e2008-03-25 22:06:05 +0000218 explicit JITResolver(JIT &jit) : nextGOTIndex(0) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000219 TheJIT = &jit;
220
221 LazyResolverFn = jit.getJITInfo().getLazyResolverFunction(JITCompilerFn);
222 assert(TheJITResolver == 0 && "Multiple JIT resolvers?");
223 TheJITResolver = this;
224 }
225
226 ~JITResolver() {
227 TheJITResolver = 0;
228 }
229
Evan Cheng6e4b7632008-11-13 21:50:50 +0000230 /// getFunctionStubIfAvailable - This returns a pointer to a function stub
231 /// if it has already been created.
232 void *getFunctionStubIfAvailable(Function *F);
233
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000234 /// getFunctionStub - This returns a pointer to a function stub, creating
Nate Begeman7b1a8472009-02-18 08:31:02 +0000235 /// one on demand as needed. If empty is true, create a function stub
236 /// pointing at address 0, to be filled in later.
Nate Begeman165818c2009-03-07 06:41:19 +0000237 void *getFunctionStub(Function *F);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000238
239 /// getExternalFunctionStub - Return a stub for the function at the
240 /// specified address, created lazily on demand.
241 void *getExternalFunctionStub(void *FnAddr);
242
Evan Chengb0ebcb42008-11-10 01:52:24 +0000243 /// getGlobalValueIndirectSym - Return an indirect symbol containing the
Evan Cheng23c6b642008-11-05 01:50:32 +0000244 /// specified GV address.
Evan Chengb0ebcb42008-11-10 01:52:24 +0000245 void *getGlobalValueIndirectSym(GlobalValue *V, void *GVAddress);
Evan Cheng28e7e162008-01-04 10:46:51 +0000246
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000247 /// AddCallbackAtLocation - If the target is capable of rewriting an
248 /// instruction without the use of a stub, record the location of the use so
249 /// we know which function is being used at the location.
250 void *AddCallbackAtLocation(Function *F, void *Location) {
251 MutexGuard locked(TheJIT->lock);
252 /// Get the target-specific JIT resolver function.
Jeffrey Yasskine45e6f92009-10-19 18:49:59 +0000253 state.AddCallSite(locked, Location, F);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000254 return (void*)(intptr_t)LazyResolverFn;
255 }
Nate Begeman7b1a8472009-02-18 08:31:02 +0000256
257 void getRelocatableGVs(SmallVectorImpl<GlobalValue*> &GVs,
Nate Begemana5645962009-03-05 06:34:37 +0000258 SmallVectorImpl<void*> &Ptrs);
259
260 GlobalValue *invalidateStub(void *Stub);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000261
262 /// getGOTIndexForAddress - Return a new or existing index in the GOT for
Chris Lattnerc8ad39c2007-12-05 23:39:57 +0000263 /// an address. This function only manages slots, it does not manage the
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000264 /// contents of the slots or the memory associated with the GOT.
Chris Lattnerc8ad39c2007-12-05 23:39:57 +0000265 unsigned getGOTIndexForAddr(void *addr);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000266
267 /// JITCompilerFn - This function is called to resolve a stub to a compiled
268 /// address. If the LLVM Function corresponding to the stub has not yet
269 /// been compiled, this function compiles it first.
270 static void *JITCompilerFn(void *Stub);
271 };
272}
273
274JITResolver *JITResolver::TheJITResolver = 0;
275
Jeffrey Yasskin6ddfe5c2009-10-23 22:37:43 +0000276void CallSiteValueMapConfig::onDelete(JITResolverState *JRS, Function *F) {
277 JRS->EraseAllCallSitesPrelocked(F);
278}
279
Evan Cheng6e4b7632008-11-13 21:50:50 +0000280/// getFunctionStubIfAvailable - This returns a pointer to a function stub
281/// if it has already been created.
282void *JITResolver::getFunctionStubIfAvailable(Function *F) {
283 MutexGuard locked(TheJIT->lock);
284
285 // If we already have a stub for this function, recycle it.
Jeffrey Yasskine45e6f92009-10-19 18:49:59 +0000286 return state.getFunctionToStubMap(locked).lookup(F);
Evan Cheng6e4b7632008-11-13 21:50:50 +0000287}
288
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000289/// getFunctionStub - This returns a pointer to a function stub, creating
290/// one on demand as needed.
Nate Begeman165818c2009-03-07 06:41:19 +0000291void *JITResolver::getFunctionStub(Function *F) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000292 MutexGuard locked(TheJIT->lock);
293
294 // If we already have a stub for this function, recycle it.
295 void *&Stub = state.getFunctionToStubMap(locked)[F];
296 if (Stub) return Stub;
297
Nate Begeman165818c2009-03-07 06:41:19 +0000298 // Call the lazy resolver function unless we are JIT'ing non-lazily, in which
299 // case we must resolve the symbol now.
Jeffrey Yasskinf9057462009-10-13 21:32:57 +0000300 void *Actual = TheJIT->isLazyCompilationDisabled()
Nate Begeman165818c2009-03-07 06:41:19 +0000301 ? (void *)0 : (void *)(intptr_t)LazyResolverFn;
Jeffrey Yasskinf9057462009-10-13 21:32:57 +0000302
Nate Begeman165818c2009-03-07 06:41:19 +0000303 // If this is an external declaration, attempt to resolve the address now
304 // to place in the stub.
Dan Gohman0ae39622009-01-05 05:32:42 +0000305 if (F->isDeclaration() && !F->hasNotBeenReadFromBitcode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000306 Actual = TheJIT->getPointerToFunction(F);
307
Dan Gohman0ae39622009-01-05 05:32:42 +0000308 // If we resolved the symbol to a null address (eg. a weak external)
Nate Begeman165818c2009-03-07 06:41:19 +0000309 // don't emit a stub. Return a null pointer to the application. If dlsym
310 // stubs are enabled, not being able to resolve the address is not
311 // meaningful.
312 if (!Actual && !TheJIT->areDlsymStubsEnabled()) return 0;
Dan Gohman0ae39622009-01-05 05:32:42 +0000313 }
314
Nate Begeman165818c2009-03-07 06:41:19 +0000315 // Codegen a new stub, calling the lazy resolver or the actual address of the
316 // external function, if it was resolved.
Nicolas Geoffray2b483b52008-04-16 20:46:05 +0000317 Stub = TheJIT->getJITInfo().emitFunctionStub(F, Actual,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000318 *TheJIT->getCodeEmitter());
319
320 if (Actual != (void*)(intptr_t)LazyResolverFn) {
321 // If we are getting the stub for an external function, we really want the
322 // address of the stub in the GlobalAddressMap for the JIT, not the address
323 // of the external function.
324 TheJIT->updateGlobalMapping(F, Stub);
325 }
326
Daniel Dunbar005975c2009-07-25 00:23:56 +0000327 DEBUG(errs() << "JIT: Stub emitted at [" << Stub << "] for function '"
328 << F->getName() << "'\n");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000329
330 // Finally, keep track of the stub-to-Function mapping so that the
331 // JITCompilerFn knows which function to compile!
Jeffrey Yasskine45e6f92009-10-19 18:49:59 +0000332 state.AddCallSite(locked, Stub, F);
Jeffrey Yasskinf9057462009-10-13 21:32:57 +0000333
Nate Begeman165818c2009-03-07 06:41:19 +0000334 // If we are JIT'ing non-lazily but need to call a function that does not
335 // exist yet, add it to the JIT's work list so that we can fill in the stub
336 // address later.
337 if (!Actual && TheJIT->isLazyCompilationDisabled())
338 if (!F->isDeclaration() || F->hasNotBeenReadFromBitcode())
339 TheJIT->addPendingFunction(F);
Jeffrey Yasskinf9057462009-10-13 21:32:57 +0000340
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000341 return Stub;
342}
343
Evan Chengb0ebcb42008-11-10 01:52:24 +0000344/// getGlobalValueIndirectSym - Return a lazy pointer containing the specified
Evan Cheng28e7e162008-01-04 10:46:51 +0000345/// GV address.
Evan Chengb0ebcb42008-11-10 01:52:24 +0000346void *JITResolver::getGlobalValueIndirectSym(GlobalValue *GV, void *GVAddress) {
Evan Cheng28e7e162008-01-04 10:46:51 +0000347 MutexGuard locked(TheJIT->lock);
348
349 // If we already have a stub for this global variable, recycle it.
Evan Chengb0ebcb42008-11-10 01:52:24 +0000350 void *&IndirectSym = state.getGlobalToIndirectSymMap(locked)[GV];
351 if (IndirectSym) return IndirectSym;
Evan Cheng28e7e162008-01-04 10:46:51 +0000352
Evan Cheng221548c2008-11-10 23:26:16 +0000353 // Otherwise, codegen a new indirect symbol.
Evan Chengb0ebcb42008-11-10 01:52:24 +0000354 IndirectSym = TheJIT->getJITInfo().emitGlobalValueIndirectSym(GV, GVAddress,
Evan Cheng23c6b642008-11-05 01:50:32 +0000355 *TheJIT->getCodeEmitter());
Evan Cheng28e7e162008-01-04 10:46:51 +0000356
Daniel Dunbar005975c2009-07-25 00:23:56 +0000357 DEBUG(errs() << "JIT: Indirect symbol emitted at [" << IndirectSym
358 << "] for GV '" << GV->getName() << "'\n");
Evan Cheng28e7e162008-01-04 10:46:51 +0000359
Evan Chengb0ebcb42008-11-10 01:52:24 +0000360 return IndirectSym;
Evan Cheng28e7e162008-01-04 10:46:51 +0000361}
362
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000363/// getExternalFunctionStub - Return a stub for the function at the
364/// specified address, created lazily on demand.
365void *JITResolver::getExternalFunctionStub(void *FnAddr) {
366 // If we already have a stub for this function, recycle it.
367 void *&Stub = ExternalFnToStubMap[FnAddr];
368 if (Stub) return Stub;
369
Nicolas Geoffray2b483b52008-04-16 20:46:05 +0000370 Stub = TheJIT->getJITInfo().emitFunctionStub(0, FnAddr,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000371 *TheJIT->getCodeEmitter());
372
Chris Lattner2b40c562009-08-23 06:35:02 +0000373 DEBUG(errs() << "JIT: Stub emitted at [" << Stub
374 << "] for external function at '" << FnAddr << "'\n");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000375 return Stub;
376}
377
378unsigned JITResolver::getGOTIndexForAddr(void* addr) {
379 unsigned idx = revGOTMap[addr];
380 if (!idx) {
381 idx = ++nextGOTIndex;
382 revGOTMap[addr] = idx;
Chris Lattner2b40c562009-08-23 06:35:02 +0000383 DEBUG(errs() << "JIT: Adding GOT entry " << idx << " for addr ["
384 << addr << "]\n");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000385 }
386 return idx;
387}
388
Nate Begeman7b1a8472009-02-18 08:31:02 +0000389void JITResolver::getRelocatableGVs(SmallVectorImpl<GlobalValue*> &GVs,
390 SmallVectorImpl<void*> &Ptrs) {
391 MutexGuard locked(TheJIT->lock);
392
Jeffrey Yasskine45e6f92009-10-19 18:49:59 +0000393 const FunctionToStubMapTy &FM = state.getFunctionToStubMap(locked);
Nick Lewycky924fc912009-04-27 05:09:44 +0000394 GlobalToIndirectSymMapTy &GM = state.getGlobalToIndirectSymMap(locked);
Nate Begeman7b1a8472009-02-18 08:31:02 +0000395
Jeffrey Yasskine45e6f92009-10-19 18:49:59 +0000396 for (FunctionToStubMapTy::const_iterator i = FM.begin(), e = FM.end();
397 i != e; ++i){
Nate Begeman7b1a8472009-02-18 08:31:02 +0000398 Function *F = i->first;
399 if (F->isDeclaration() && F->hasExternalLinkage()) {
400 GVs.push_back(i->first);
401 Ptrs.push_back(i->second);
402 }
403 }
Nick Lewycky924fc912009-04-27 05:09:44 +0000404 for (GlobalToIndirectSymMapTy::iterator i = GM.begin(), e = GM.end();
Nate Begeman7b1a8472009-02-18 08:31:02 +0000405 i != e; ++i) {
406 GVs.push_back(i->first);
407 Ptrs.push_back(i->second);
408 }
409}
410
Nate Begemana5645962009-03-05 06:34:37 +0000411GlobalValue *JITResolver::invalidateStub(void *Stub) {
412 MutexGuard locked(TheJIT->lock);
Jeffrey Yasskine45e6f92009-10-19 18:49:59 +0000413
Nick Lewycky924fc912009-04-27 05:09:44 +0000414 GlobalToIndirectSymMapTy &GM = state.getGlobalToIndirectSymMap(locked);
Jeffrey Yasskine45e6f92009-10-19 18:49:59 +0000415
Nate Begemana5645962009-03-05 06:34:37 +0000416 // Look up the cheap way first, to see if it's a function stub we are
417 // invalidating. If so, remove it from both the forward and reverse maps.
Jeffrey Yasskine45e6f92009-10-19 18:49:59 +0000418 if (Function *F = state.EraseStub(locked, Stub)) {
Nate Begemana5645962009-03-05 06:34:37 +0000419 return F;
420 }
Jeffrey Yasskine45e6f92009-10-19 18:49:59 +0000421
Nate Begemand1718c42009-03-11 07:03:43 +0000422 // Otherwise, it might be an indirect symbol stub. Find it and remove it.
Nick Lewycky924fc912009-04-27 05:09:44 +0000423 for (GlobalToIndirectSymMapTy::iterator i = GM.begin(), e = GM.end();
Nate Begemana5645962009-03-05 06:34:37 +0000424 i != e; ++i) {
425 if (i->second != Stub)
426 continue;
427 GlobalValue *GV = i->first;
428 GM.erase(i);
429 return GV;
430 }
431
Nate Begemand1718c42009-03-11 07:03:43 +0000432 // Lastly, check to see if it's in the ExternalFnToStubMap.
433 for (std::map<void *, void *>::iterator i = ExternalFnToStubMap.begin(),
434 e = ExternalFnToStubMap.end(); i != e; ++i) {
435 if (i->second != Stub)
436 continue;
437 ExternalFnToStubMap.erase(i);
438 break;
439 }
440
Nate Begemana5645962009-03-05 06:34:37 +0000441 return 0;
442}
443
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000444/// JITCompilerFn - This function is called when a lazy compilation stub has
445/// been entered. It looks up which function this stub corresponds to, compiles
446/// it if necessary, then returns the resultant function pointer.
447void *JITResolver::JITCompilerFn(void *Stub) {
448 JITResolver &JR = *TheJITResolver;
Nicolas Geoffray7bf33432008-10-03 07:27:08 +0000449
450 Function* F = 0;
451 void* ActualPtr = 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000452
Nicolas Geoffray7bf33432008-10-03 07:27:08 +0000453 {
454 // Only lock for getting the Function. The call getPointerToFunction made
455 // in this function might trigger function materializing, which requires
456 // JIT lock to be unlocked.
457 MutexGuard locked(TheJIT->lock);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000458
Jeffrey Yasskine45e6f92009-10-19 18:49:59 +0000459 // The address given to us for the stub may not be exactly right, it might
460 // be a little bit after the stub. As such, use upper_bound to find it.
461 pair<void*, Function*> I =
462 JR.state.LookupFunctionFromCallSite(locked, Stub);
463 F = I.second;
464 ActualPtr = I.first;
Nicolas Geoffray7bf33432008-10-03 07:27:08 +0000465 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000466
467 // If we have already code generated the function, just return the address.
468 void *Result = TheJIT->getPointerToGlobalIfAvailable(F);
469
470 if (!Result) {
471 // Otherwise we don't have it, do lazy compilation now.
472
473 // If lazy compilation is disabled, emit a useful error message and abort.
474 if (TheJIT->isLazyCompilationDisabled()) {
Edwin Törökced9ff82009-07-11 13:10:19 +0000475 llvm_report_error("LLVM JIT requested to do lazy compilation of function '"
476 + F->getName() + "' when lazy compiles are disabled!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000477 }
478
Daniel Dunbar005975c2009-07-25 00:23:56 +0000479 DEBUG(errs() << "JIT: Lazily resolving function '" << F->getName()
480 << "' In stub ptr = " << Stub << " actual ptr = "
481 << ActualPtr << "\n");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000482
483 Result = TheJIT->getPointerToFunction(F);
484 }
Jeffrey Yasskine45e6f92009-10-19 18:49:59 +0000485
486 // Reacquire the lock to update the GOT map.
Nicolas Geoffray7bf33432008-10-03 07:27:08 +0000487 MutexGuard locked(TheJIT->lock);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000488
Jeffrey Yasskine45e6f92009-10-19 18:49:59 +0000489 // We might like to remove the call site from the CallSiteToFunction map, but
490 // we can't do that! Multiple threads could be stuck, waiting to acquire the
491 // lock above. As soon as the 1st function finishes compiling the function,
492 // the next one will be released, and needs to be able to find the function it
493 // needs to call.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000494
495 // FIXME: We could rewrite all references to this stub if we knew them.
496
497 // What we will do is set the compiled function address to map to the
498 // same GOT entry as the stub so that later clients may update the GOT
499 // if they see it still using the stub address.
500 // Note: this is done so the Resolver doesn't have to manage GOT memory
501 // Do this without allocating map space if the target isn't using a GOT
502 if(JR.revGOTMap.find(Stub) != JR.revGOTMap.end())
503 JR.revGOTMap[Result] = JR.revGOTMap[Stub];
504
505 return Result;
506}
507
Chris Lattnerf50e3572008-04-04 05:51:42 +0000508//===----------------------------------------------------------------------===//
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000509// JITEmitter code.
510//
511namespace {
512 /// JITEmitter - The JIT implementation of the MachineCodeEmitter, which is
513 /// used to output functions to memory for execution.
Bruno Cardoso Lopes1ea31ff2009-05-30 20:51:52 +0000514 class JITEmitter : public JITCodeEmitter {
Chris Lattnerc8ad39c2007-12-05 23:39:57 +0000515 JITMemoryManager *MemMgr;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000516
517 // When outputting a function stub in the context of some other function, we
518 // save BufferBegin/BufferEnd/CurBufferPtr here.
Bruno Cardoso Lopes214ae972009-06-04 00:15:51 +0000519 uint8_t *SavedBufferBegin, *SavedBufferEnd, *SavedCurBufferPtr;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000520
Reid Klecknercc492292009-07-23 21:46:56 +0000521 // When reattempting to JIT a function after running out of space, we store
522 // the estimated size of the function we're trying to JIT here, so we can
523 // ask the memory manager for at least this much space. When we
524 // successfully emit the function, we reset this back to zero.
525 uintptr_t SizeEstimate;
526
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000527 /// Relocations - These are the relocations that the function needs, as
528 /// emitted.
529 std::vector<MachineRelocation> Relocations;
530
531 /// MBBLocations - This vector is a mapping from MBB ID's to their address.
532 /// It is filled in by the StartMachineBasicBlock callback and queried by
533 /// the getMachineBasicBlockAddress callback.
Evan Cheng6e561c72008-12-10 02:32:19 +0000534 std::vector<uintptr_t> MBBLocations;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000535
536 /// ConstantPool - The constant pool for the current function.
537 ///
538 MachineConstantPool *ConstantPool;
539
540 /// ConstantPoolBase - A pointer to the first entry in the constant pool.
541 ///
542 void *ConstantPoolBase;
543
Evan Cheng68c18682009-03-13 07:51:59 +0000544 /// ConstPoolAddresses - Addresses of individual constant pool entries.
545 ///
546 SmallVector<uintptr_t, 8> ConstPoolAddresses;
547
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000548 /// JumpTable - The jump tables for the current function.
549 ///
550 MachineJumpTableInfo *JumpTable;
551
552 /// JumpTableBase - A pointer to the first entry in the jump table.
553 ///
554 void *JumpTableBase;
Evan Chengaf743252008-01-05 02:26:58 +0000555
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000556 /// Resolver - This contains info about the currently resolved functions.
557 JITResolver Resolver;
Reid Kleckner738b4f22009-09-20 23:52:43 +0000558
Nicolas Geoffray0e757e12008-02-13 18:39:37 +0000559 /// DE - The dwarf emitter for the jit.
Reid Kleckner738b4f22009-09-20 23:52:43 +0000560 OwningPtr<JITDwarfEmitter> DE;
561
562 /// DR - The debug registerer for the jit.
563 OwningPtr<JITDebugRegisterer> DR;
Nicolas Geoffray0e757e12008-02-13 18:39:37 +0000564
565 /// LabelLocations - This vector is a mapping from Label ID's to their
566 /// address.
Evan Cheng6e561c72008-12-10 02:32:19 +0000567 std::vector<uintptr_t> LabelLocations;
Nicolas Geoffray0e757e12008-02-13 18:39:37 +0000568
569 /// MMI - Machine module info for exception informations
570 MachineModuleInfo* MMI;
571
Dale Johannesen0ba4a0e2008-08-07 01:30:15 +0000572 // GVSet - a set to keep track of which globals have been seen
Evan Cheng68e5fc32008-11-07 09:02:17 +0000573 SmallPtrSet<const GlobalVariable*, 8> GVSet;
Dale Johannesen0ba4a0e2008-08-07 01:30:15 +0000574
Nate Begemana5645962009-03-05 06:34:37 +0000575 // CurFn - The llvm function being emitted. Only valid during
576 // finishFunction().
577 const Function *CurFn;
Jeffrey Yasskin8ad296e2009-07-16 21:07:26 +0000578
579 /// Information about emitted code, which is passed to the
580 /// JITEventListeners. This is reset in startFunction and used in
581 /// finishFunction.
582 JITEvent_EmittedFunctionDetails EmissionDetails;
583
Jeffrey Yasskin2512e352009-10-20 18:13:21 +0000584 struct EmittedCode {
585 void *FunctionBody;
586 void *ExceptionTable;
587 EmittedCode() : FunctionBody(0), ExceptionTable(0) {}
588 };
589 DenseMap<const Function *, EmittedCode> EmittedFunctions;
590
Nate Begemana5645962009-03-05 06:34:37 +0000591 // CurFnStubUses - For a given Function, a vector of stubs that it
592 // references. This facilitates the JIT detecting that a stub is no
593 // longer used, so that it may be deallocated.
594 DenseMap<const Function *, SmallVector<void*, 1> > CurFnStubUses;
595
596 // StubFnRefs - For a given pointer to a stub, a set of Functions which
597 // reference the stub. When the count of a stub's references drops to zero,
598 // the stub is unused.
599 DenseMap<void *, SmallPtrSet<const Function*, 1> > StubFnRefs;
600
Nate Begemand1718c42009-03-11 07:03:43 +0000601 // ExtFnStubs - A map of external function names to stubs which have entries
602 // in the JITResolver's ExternalFnToStubMap.
603 StringMap<void *> ExtFnStubs;
Argiris Kirtzidis6841c1a2009-05-18 21:06:40 +0000604
Jeffrey Yasskin8ad296e2009-07-16 21:07:26 +0000605 DebugLocTuple PrevDLT;
606
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000607 public:
Reid Kleckner738b4f22009-09-20 23:52:43 +0000608 JITEmitter(JIT &jit, JITMemoryManager *JMM, TargetMachine &TM)
Xerxes Ranby9112f5f2009-08-25 10:12:55 +0000609 : SizeEstimate(0), Resolver(jit), MMI(0), CurFn(0) {
Chris Lattnere44be002007-12-06 01:08:09 +0000610 MemMgr = JMM ? JMM : JITMemoryManager::CreateDefaultMemManager();
Chris Lattnerc8ad39c2007-12-05 23:39:57 +0000611 if (jit.getJITInfo().needsGOT()) {
612 MemMgr->AllocateGOT();
Chris Lattner2b40c562009-08-23 06:35:02 +0000613 DEBUG(errs() << "JIT is managing a GOT\n");
Chris Lattnerc8ad39c2007-12-05 23:39:57 +0000614 }
Nicolas Geoffray0e757e12008-02-13 18:39:37 +0000615
Reid Kleckner738b4f22009-09-20 23:52:43 +0000616 if (DwarfExceptionHandling || JITEmitDebugInfo) {
617 DE.reset(new JITDwarfEmitter(jit));
618 }
619 if (JITEmitDebugInfo) {
620 DR.reset(new JITDebugRegisterer(TM));
621 }
Chris Lattnerc8ad39c2007-12-05 23:39:57 +0000622 }
623 ~JITEmitter() {
624 delete MemMgr;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000625 }
Evan Cheng89b29a12008-08-20 00:28:12 +0000626
627 /// classof - Methods for support type inquiry through isa, cast, and
628 /// dyn_cast:
629 ///
630 static inline bool classof(const JITEmitter*) { return true; }
631 static inline bool classof(const MachineCodeEmitter*) { return true; }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000632
633 JITResolver &getJITResolver() { return Resolver; }
634
635 virtual void startFunction(MachineFunction &F);
636 virtual bool finishFunction(MachineFunction &F);
637
638 void emitConstantPool(MachineConstantPool *MCP);
639 void initJumpTableInfo(MachineJumpTableInfo *MJTI);
640 void emitJumpTableInfo(MachineJumpTableInfo *MJTI);
641
Evan Cheng2c3267a2008-11-08 08:02:53 +0000642 virtual void startGVStub(const GlobalValue* GV, unsigned StubSize,
Nicolas Geoffray2b483b52008-04-16 20:46:05 +0000643 unsigned Alignment = 1);
Nate Begeman7b1a8472009-02-18 08:31:02 +0000644 virtual void startGVStub(const GlobalValue* GV, void *Buffer,
645 unsigned StubSize);
Evan Cheng2c3267a2008-11-08 08:02:53 +0000646 virtual void* finishGVStub(const GlobalValue *GV);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000647
Nuno Lopes1ab7adc2008-10-21 11:42:16 +0000648 /// allocateSpace - Reserves space in the current block if any, or
649 /// allocate a new one of the given size.
Evan Cheng6e561c72008-12-10 02:32:19 +0000650 virtual void *allocateSpace(uintptr_t Size, unsigned Alignment);
Nuno Lopes1ab7adc2008-10-21 11:42:16 +0000651
Jeffrey Yasskin892956a2009-07-08 21:59:57 +0000652 /// allocateGlobal - Allocate memory for a global. Unlike allocateSpace,
653 /// this method does not allocate memory in the current output buffer,
654 /// because a global may live longer than the current function.
655 virtual void *allocateGlobal(uintptr_t Size, unsigned Alignment);
656
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000657 virtual void addRelocation(const MachineRelocation &MR) {
658 Relocations.push_back(MR);
659 }
660
661 virtual void StartMachineBasicBlock(MachineBasicBlock *MBB) {
662 if (MBBLocations.size() <= (unsigned)MBB->getNumber())
663 MBBLocations.resize((MBB->getNumber()+1)*2);
664 MBBLocations[MBB->getNumber()] = getCurrentPCValue();
Chris Lattner2b40c562009-08-23 06:35:02 +0000665 DEBUG(errs() << "JIT: Emitting BB" << MBB->getNumber() << " at ["
666 << (void*) getCurrentPCValue() << "]\n");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000667 }
668
Evan Cheng6e561c72008-12-10 02:32:19 +0000669 virtual uintptr_t getConstantPoolEntryAddress(unsigned Entry) const;
670 virtual uintptr_t getJumpTableEntryAddress(unsigned Entry) const;
Evan Chengaf743252008-01-05 02:26:58 +0000671
Evan Cheng6e561c72008-12-10 02:32:19 +0000672 virtual uintptr_t getMachineBasicBlockAddress(MachineBasicBlock *MBB) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000673 assert(MBBLocations.size() > (unsigned)MBB->getNumber() &&
674 MBBLocations[MBB->getNumber()] && "MBB not emitted!");
675 return MBBLocations[MBB->getNumber()];
676 }
677
Reid Klecknercc492292009-07-23 21:46:56 +0000678 /// retryWithMoreMemory - Log a retry and deallocate all memory for the
679 /// given function. Increase the minimum allocation size so that we get
680 /// more memory next time.
681 void retryWithMoreMemory(MachineFunction &F);
682
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000683 /// deallocateMemForFunction - Deallocate all memory for the specified
684 /// function body.
Reid Klecknercc492292009-07-23 21:46:56 +0000685 void deallocateMemForFunction(const Function *F);
Nate Begemand1718c42009-03-11 07:03:43 +0000686
687 /// AddStubToCurrentFunction - Mark the current function being JIT'd as
688 /// using the stub at the specified address. Allows
689 /// deallocateMemForFunction to also remove stubs no longer referenced.
690 void AddStubToCurrentFunction(void *Stub);
691
692 /// getExternalFnStubs - Accessor for the JIT to find stubs emitted for
693 /// MachineRelocations that reference external functions by name.
694 const StringMap<void*> &getExternalFnStubs() const { return ExtFnStubs; }
Nicolas Geoffray0e757e12008-02-13 18:39:37 +0000695
Devang Patelde8d48b2009-10-06 03:04:58 +0000696 virtual void processDebugLoc(DebugLoc DL, bool BeforePrintingInsn);
Jeffrey Yasskin8ad296e2009-07-16 21:07:26 +0000697
Nicolas Geoffray0e757e12008-02-13 18:39:37 +0000698 virtual void emitLabel(uint64_t LabelID) {
699 if (LabelLocations.size() <= LabelID)
700 LabelLocations.resize((LabelID+1)*2);
701 LabelLocations[LabelID] = getCurrentPCValue();
702 }
703
Evan Cheng6e561c72008-12-10 02:32:19 +0000704 virtual uintptr_t getLabelAddress(uint64_t LabelID) const {
Nicolas Geoffray0e757e12008-02-13 18:39:37 +0000705 assert(LabelLocations.size() > (unsigned)LabelID &&
706 LabelLocations[LabelID] && "Label not emitted!");
707 return LabelLocations[LabelID];
708 }
709
710 virtual void setModuleInfo(MachineModuleInfo* Info) {
711 MMI = Info;
Reid Kleckner738b4f22009-09-20 23:52:43 +0000712 if (DE.get()) DE->setModuleInfo(Info);
Nicolas Geoffray0e757e12008-02-13 18:39:37 +0000713 }
714
Dan Gohman3dbe9442009-08-12 22:10:57 +0000715 void setMemoryExecutable() {
Jim Grosbach724b1812008-10-03 16:17:20 +0000716 MemMgr->setMemoryExecutable();
717 }
Nate Begeman7b1a8472009-02-18 08:31:02 +0000718
Dan Gohman3dbe9442009-08-12 22:10:57 +0000719 JITMemoryManager *getMemMgr() const { return MemMgr; }
Jim Grosbach724b1812008-10-03 16:17:20 +0000720
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000721 private:
722 void *getPointerToGlobal(GlobalValue *GV, void *Reference, bool NoNeedStub);
Evan Chengb0ebcb42008-11-10 01:52:24 +0000723 void *getPointerToGVIndirectSym(GlobalValue *V, void *Reference,
Evan Cheng221548c2008-11-10 23:26:16 +0000724 bool NoNeedStub);
Dale Johannesen0ba4a0e2008-08-07 01:30:15 +0000725 unsigned addSizeOfGlobal(const GlobalVariable *GV, unsigned Size);
726 unsigned addSizeOfGlobalsInConstantVal(const Constant *C, unsigned Size);
727 unsigned addSizeOfGlobalsInInitializer(const Constant *Init, unsigned Size);
728 unsigned GetSizeOfGlobalsInBytes(MachineFunction &MF);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000729 };
730}
731
732void *JITEmitter::getPointerToGlobal(GlobalValue *V, void *Reference,
733 bool DoesntNeedStub) {
Nate Begeman7b1a8472009-02-18 08:31:02 +0000734 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(V))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000735 return TheJIT->getOrEmitGlobalVariable(GV);
Nate Begeman7b1a8472009-02-18 08:31:02 +0000736
Chris Lattner44d8ea72008-06-25 20:21:35 +0000737 if (GlobalAlias *GA = dyn_cast<GlobalAlias>(V))
Anton Korobeynikovc7b90912008-09-09 20:05:04 +0000738 return TheJIT->getPointerToGlobal(GA->resolveAliasedGlobal(false));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000739
740 // If we have already compiled the function, return a pointer to its body.
741 Function *F = cast<Function>(V);
Evan Cheng6e4b7632008-11-13 21:50:50 +0000742 void *ResultPtr;
Jeffrey Yasskin5d3b7ca2009-10-06 00:35:55 +0000743 if (!DoesntNeedStub) {
Evan Cheng6e4b7632008-11-13 21:50:50 +0000744 // Return the function stub if it's already created.
745 ResultPtr = Resolver.getFunctionStubIfAvailable(F);
Nate Begemana5645962009-03-05 06:34:37 +0000746 if (ResultPtr)
747 AddStubToCurrentFunction(ResultPtr);
748 } else {
Evan Cheng6e4b7632008-11-13 21:50:50 +0000749 ResultPtr = TheJIT->getPointerToGlobalIfAvailable(F);
Nate Begemana5645962009-03-05 06:34:37 +0000750 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000751 if (ResultPtr) return ResultPtr;
752
Nate Begeman7b1a8472009-02-18 08:31:02 +0000753 // If this is an external function pointer, we can force the JIT to
Nate Begeman165818c2009-03-07 06:41:19 +0000754 // 'compile' it, which really just adds it to the map. In dlsym mode,
755 // external functions are forced through a stub, regardless of reloc type.
756 if (F->isDeclaration() && !F->hasNotBeenReadFromBitcode() &&
757 DoesntNeedStub && !TheJIT->areDlsymStubsEnabled())
Nate Begeman7b1a8472009-02-18 08:31:02 +0000758 return TheJIT->getPointerToFunction(F);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000759
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000760 // Okay, the function has not been compiled yet, if the target callback
761 // mechanism is capable of rewriting the instruction directly, prefer to do
Nate Begeman165818c2009-03-07 06:41:19 +0000762 // that instead of emitting a stub. This uses the lazy resolver, so is not
763 // legal if lazy compilation is disabled.
764 if (DoesntNeedStub && !TheJIT->isLazyCompilationDisabled())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000765 return Resolver.AddCallbackAtLocation(F, Reference);
766
Nate Begeman165818c2009-03-07 06:41:19 +0000767 // Otherwise, we have to emit a stub.
Nate Begemana5645962009-03-05 06:34:37 +0000768 void *StubAddr = Resolver.getFunctionStub(F);
769
770 // Add the stub to the current function's list of referenced stubs, so we can
Nate Begeman165818c2009-03-07 06:41:19 +0000771 // deallocate them if the current function is ever freed. It's possible to
772 // return null from getFunctionStub in the case of a weak extern that fails
773 // to resolve.
774 if (StubAddr)
775 AddStubToCurrentFunction(StubAddr);
776
Nate Begemana5645962009-03-05 06:34:37 +0000777 return StubAddr;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000778}
779
Evan Chengb0ebcb42008-11-10 01:52:24 +0000780void *JITEmitter::getPointerToGVIndirectSym(GlobalValue *V, void *Reference,
Evan Cheng221548c2008-11-10 23:26:16 +0000781 bool NoNeedStub) {
Nate Begemana5645962009-03-05 06:34:37 +0000782 // Make sure GV is emitted first, and create a stub containing the fully
783 // resolved address.
Evan Cheng28e7e162008-01-04 10:46:51 +0000784 void *GVAddress = getPointerToGlobal(V, Reference, true);
Nate Begemana5645962009-03-05 06:34:37 +0000785 void *StubAddr = Resolver.getGlobalValueIndirectSym(V, GVAddress);
786
787 // Add the stub to the current function's list of referenced stubs, so we can
788 // deallocate them if the current function is ever freed.
789 AddStubToCurrentFunction(StubAddr);
790
791 return StubAddr;
792}
793
794void JITEmitter::AddStubToCurrentFunction(void *StubAddr) {
Nate Begemana5645962009-03-05 06:34:37 +0000795 assert(CurFn && "Stub added to current function, but current function is 0!");
Jeffrey Yasskinf9057462009-10-13 21:32:57 +0000796
Nate Begemana5645962009-03-05 06:34:37 +0000797 SmallVectorImpl<void*> &StubsUsed = CurFnStubUses[CurFn];
798 StubsUsed.push_back(StubAddr);
799
800 SmallPtrSet<const Function *, 1> &FnRefs = StubFnRefs[StubAddr];
801 FnRefs.insert(CurFn);
Evan Cheng28e7e162008-01-04 10:46:51 +0000802}
803
Devang Patelde8d48b2009-10-06 03:04:58 +0000804void JITEmitter::processDebugLoc(DebugLoc DL, bool BeforePrintingInsn) {
Jeffrey Yasskin8ad296e2009-07-16 21:07:26 +0000805 if (!DL.isUnknown()) {
806 DebugLocTuple CurDLT = EmissionDetails.MF->getDebugLocTuple(DL);
807
Devang Patelde8d48b2009-10-06 03:04:58 +0000808 if (BeforePrintingInsn) {
Devang Patelfc1df342009-10-13 23:28:53 +0000809 if (CurDLT.Scope != 0 && PrevDLT != CurDLT) {
Devang Patelde8d48b2009-10-06 03:04:58 +0000810 JITEvent_EmittedFunctionDetails::LineStart NextLine;
811 NextLine.Address = getCurrentPCValue();
812 NextLine.Loc = DL;
813 EmissionDetails.LineStarts.push_back(NextLine);
814 }
815
816 PrevDLT = CurDLT;
Jeffrey Yasskin8ad296e2009-07-16 21:07:26 +0000817 }
Jeffrey Yasskin8ad296e2009-07-16 21:07:26 +0000818 }
819}
820
Evan Cheng68c18682009-03-13 07:51:59 +0000821static unsigned GetConstantPoolSizeInBytes(MachineConstantPool *MCP,
822 const TargetData *TD) {
Nicolas Geoffray68847972008-04-18 20:59:31 +0000823 const std::vector<MachineConstantPoolEntry> &Constants = MCP->getConstants();
824 if (Constants.empty()) return 0;
825
Evan Cheng68c18682009-03-13 07:51:59 +0000826 unsigned Size = 0;
827 for (unsigned i = 0, e = Constants.size(); i != e; ++i) {
828 MachineConstantPoolEntry CPE = Constants[i];
829 unsigned AlignMask = CPE.getAlignment() - 1;
830 Size = (Size + AlignMask) & ~AlignMask;
831 const Type *Ty = CPE.getType();
Duncan Sandsec4f97d2009-05-09 07:06:46 +0000832 Size += TD->getTypeAllocSize(Ty);
Evan Cheng68c18682009-03-13 07:51:59 +0000833 }
Nicolas Geoffray68847972008-04-18 20:59:31 +0000834 return Size;
835}
836
837static unsigned GetJumpTableSizeInBytes(MachineJumpTableInfo *MJTI) {
838 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
839 if (JT.empty()) return 0;
840
841 unsigned NumEntries = 0;
842 for (unsigned i = 0, e = JT.size(); i != e; ++i)
843 NumEntries += JT[i].MBBs.size();
844
845 unsigned EntrySize = MJTI->getEntrySize();
846
847 return NumEntries * EntrySize;
848}
849
Nicolas Geoffray5a80b292008-04-20 23:39:44 +0000850static uintptr_t RoundUpToAlign(uintptr_t Size, unsigned Alignment) {
Nicolas Geoffray68847972008-04-18 20:59:31 +0000851 if (Alignment == 0) Alignment = 1;
Nicolas Geoffray5a80b292008-04-20 23:39:44 +0000852 // Since we do not know where the buffer will be allocated, be pessimistic.
853 return Size + Alignment;
Nicolas Geoffray68847972008-04-18 20:59:31 +0000854}
Evan Cheng28e7e162008-01-04 10:46:51 +0000855
Dale Johannesen0ba4a0e2008-08-07 01:30:15 +0000856/// addSizeOfGlobal - add the size of the global (plus any alignment padding)
857/// into the running total Size.
858
859unsigned JITEmitter::addSizeOfGlobal(const GlobalVariable *GV, unsigned Size) {
860 const Type *ElTy = GV->getType()->getElementType();
Duncan Sandsec4f97d2009-05-09 07:06:46 +0000861 size_t GVSize = (size_t)TheJIT->getTargetData()->getTypeAllocSize(ElTy);
Dale Johannesen0ba4a0e2008-08-07 01:30:15 +0000862 size_t GVAlign =
863 (size_t)TheJIT->getTargetData()->getPreferredAlignment(GV);
Chris Lattner2b40c562009-08-23 06:35:02 +0000864 DEBUG(errs() << "JIT: Adding in size " << GVSize << " alignment " << GVAlign);
Dale Johannesen0ba4a0e2008-08-07 01:30:15 +0000865 DEBUG(GV->dump());
866 // Assume code section ends with worst possible alignment, so first
867 // variable needs maximal padding.
868 if (Size==0)
869 Size = 1;
870 Size = ((Size+GVAlign-1)/GVAlign)*GVAlign;
871 Size += GVSize;
872 return Size;
873}
874
875/// addSizeOfGlobalsInConstantVal - find any globals that we haven't seen yet
876/// but are referenced from the constant; put them in GVSet and add their
877/// size into the running total Size.
878
879unsigned JITEmitter::addSizeOfGlobalsInConstantVal(const Constant *C,
880 unsigned Size) {
881 // If its undefined, return the garbage.
882 if (isa<UndefValue>(C))
883 return Size;
884
885 // If the value is a ConstantExpr
886 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
887 Constant *Op0 = CE->getOperand(0);
888 switch (CE->getOpcode()) {
889 case Instruction::GetElementPtr:
890 case Instruction::Trunc:
891 case Instruction::ZExt:
892 case Instruction::SExt:
893 case Instruction::FPTrunc:
894 case Instruction::FPExt:
895 case Instruction::UIToFP:
896 case Instruction::SIToFP:
897 case Instruction::FPToUI:
898 case Instruction::FPToSI:
899 case Instruction::PtrToInt:
900 case Instruction::IntToPtr:
901 case Instruction::BitCast: {
902 Size = addSizeOfGlobalsInConstantVal(Op0, Size);
903 break;
904 }
905 case Instruction::Add:
Dan Gohman7ce405e2009-06-04 22:49:04 +0000906 case Instruction::FAdd:
Dale Johannesen0ba4a0e2008-08-07 01:30:15 +0000907 case Instruction::Sub:
Dan Gohman7ce405e2009-06-04 22:49:04 +0000908 case Instruction::FSub:
Dale Johannesen0ba4a0e2008-08-07 01:30:15 +0000909 case Instruction::Mul:
Dan Gohman7ce405e2009-06-04 22:49:04 +0000910 case Instruction::FMul:
Dale Johannesen0ba4a0e2008-08-07 01:30:15 +0000911 case Instruction::UDiv:
912 case Instruction::SDiv:
913 case Instruction::URem:
914 case Instruction::SRem:
915 case Instruction::And:
916 case Instruction::Or:
917 case Instruction::Xor: {
918 Size = addSizeOfGlobalsInConstantVal(Op0, Size);
919 Size = addSizeOfGlobalsInConstantVal(CE->getOperand(1), Size);
920 break;
921 }
922 default: {
Edwin Törökced9ff82009-07-11 13:10:19 +0000923 std::string msg;
924 raw_string_ostream Msg(msg);
925 Msg << "ConstantExpr not handled: " << *CE;
926 llvm_report_error(Msg.str());
Dale Johannesen0ba4a0e2008-08-07 01:30:15 +0000927 }
928 }
929 }
930
931 if (C->getType()->getTypeID() == Type::PointerTyID)
932 if (const GlobalVariable* GV = dyn_cast<GlobalVariable>(C))
Evan Cheng68e5fc32008-11-07 09:02:17 +0000933 if (GVSet.insert(GV))
Dale Johannesen0ba4a0e2008-08-07 01:30:15 +0000934 Size = addSizeOfGlobal(GV, Size);
935
936 return Size;
937}
938
939/// addSizeOfGLobalsInInitializer - handle any globals that we haven't seen yet
940/// but are referenced from the given initializer.
941
942unsigned JITEmitter::addSizeOfGlobalsInInitializer(const Constant *Init,
943 unsigned Size) {
944 if (!isa<UndefValue>(Init) &&
945 !isa<ConstantVector>(Init) &&
946 !isa<ConstantAggregateZero>(Init) &&
947 !isa<ConstantArray>(Init) &&
948 !isa<ConstantStruct>(Init) &&
949 Init->getType()->isFirstClassType())
950 Size = addSizeOfGlobalsInConstantVal(Init, Size);
951 return Size;
952}
953
954/// GetSizeOfGlobalsInBytes - walk the code for the function, looking for
955/// globals; then walk the initializers of those globals looking for more.
956/// If their size has not been considered yet, add it into the running total
957/// Size.
958
959unsigned JITEmitter::GetSizeOfGlobalsInBytes(MachineFunction &MF) {
960 unsigned Size = 0;
961 GVSet.clear();
962
963 for (MachineFunction::iterator MBB = MF.begin(), E = MF.end();
964 MBB != E; ++MBB) {
965 for (MachineBasicBlock::const_iterator I = MBB->begin(), E = MBB->end();
966 I != E; ++I) {
967 const TargetInstrDesc &Desc = I->getDesc();
968 const MachineInstr &MI = *I;
969 unsigned NumOps = Desc.getNumOperands();
970 for (unsigned CurOp = 0; CurOp < NumOps; CurOp++) {
971 const MachineOperand &MO = MI.getOperand(CurOp);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000972 if (MO.isGlobal()) {
Dale Johannesen0ba4a0e2008-08-07 01:30:15 +0000973 GlobalValue* V = MO.getGlobal();
974 const GlobalVariable *GV = dyn_cast<const GlobalVariable>(V);
975 if (!GV)
976 continue;
977 // If seen in previous function, it will have an entry here.
978 if (TheJIT->getPointerToGlobalIfAvailable(GV))
979 continue;
980 // If seen earlier in this function, it will have an entry here.
981 // FIXME: it should be possible to combine these tables, by
982 // assuming the addresses of the new globals in this module
983 // start at 0 (or something) and adjusting them after codegen
984 // complete. Another possibility is to grab a marker bit in GV.
Evan Cheng68e5fc32008-11-07 09:02:17 +0000985 if (GVSet.insert(GV))
Dale Johannesen0ba4a0e2008-08-07 01:30:15 +0000986 // A variable as yet unseen. Add in its size.
987 Size = addSizeOfGlobal(GV, Size);
988 }
989 }
990 }
991 }
Chris Lattner2b40c562009-08-23 06:35:02 +0000992 DEBUG(errs() << "JIT: About to look through initializers\n");
Dale Johannesen0ba4a0e2008-08-07 01:30:15 +0000993 // Look for more globals that are referenced only from initializers.
994 // GVSet.end is computed each time because the set can grow as we go.
Evan Cheng68e5fc32008-11-07 09:02:17 +0000995 for (SmallPtrSet<const GlobalVariable *, 8>::iterator I = GVSet.begin();
Dale Johannesen0ba4a0e2008-08-07 01:30:15 +0000996 I != GVSet.end(); I++) {
997 const GlobalVariable* GV = *I;
998 if (GV->hasInitializer())
999 Size = addSizeOfGlobalsInInitializer(GV->getInitializer(), Size);
1000 }
1001
1002 return Size;
1003}
1004
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001005void JITEmitter::startFunction(MachineFunction &F) {
Daniel Dunbar005975c2009-07-25 00:23:56 +00001006 DEBUG(errs() << "JIT: Starting CodeGen of Function "
1007 << F.getFunction()->getName() << "\n");
Evan Chengd6599362008-11-06 17:46:04 +00001008
Nicolas Geoffray68847972008-04-18 20:59:31 +00001009 uintptr_t ActualSize = 0;
Jim Grosbach724b1812008-10-03 16:17:20 +00001010 // Set the memory writable, if it's not already
1011 MemMgr->setMemoryWritable();
Nicolas Geoffrayf748af22008-04-20 17:44:19 +00001012 if (MemMgr->NeedsExactSize()) {
Chris Lattner2b40c562009-08-23 06:35:02 +00001013 DEBUG(errs() << "JIT: ExactSize\n");
Nicolas Geoffray68847972008-04-18 20:59:31 +00001014 const TargetInstrInfo* TII = F.getTarget().getInstrInfo();
1015 MachineJumpTableInfo *MJTI = F.getJumpTableInfo();
1016 MachineConstantPool *MCP = F.getConstantPool();
1017
1018 // Ensure the constant pool/jump table info is at least 4-byte aligned.
Nicolas Geoffray5a80b292008-04-20 23:39:44 +00001019 ActualSize = RoundUpToAlign(ActualSize, 16);
Nicolas Geoffray68847972008-04-18 20:59:31 +00001020
1021 // Add the alignment of the constant pool
Evan Cheng68c18682009-03-13 07:51:59 +00001022 ActualSize = RoundUpToAlign(ActualSize, MCP->getConstantPoolAlignment());
Nicolas Geoffray68847972008-04-18 20:59:31 +00001023
1024 // Add the constant pool size
Evan Cheng68c18682009-03-13 07:51:59 +00001025 ActualSize += GetConstantPoolSizeInBytes(MCP, TheJIT->getTargetData());
Nicolas Geoffray68847972008-04-18 20:59:31 +00001026
1027 // Add the aligment of the jump table info
Nicolas Geoffray5a80b292008-04-20 23:39:44 +00001028 ActualSize = RoundUpToAlign(ActualSize, MJTI->getAlignment());
Nicolas Geoffray68847972008-04-18 20:59:31 +00001029
1030 // Add the jump table size
1031 ActualSize += GetJumpTableSizeInBytes(MJTI);
1032
1033 // Add the alignment for the function
Nicolas Geoffray5a80b292008-04-20 23:39:44 +00001034 ActualSize = RoundUpToAlign(ActualSize,
1035 std::max(F.getFunction()->getAlignment(), 8U));
Nicolas Geoffray68847972008-04-18 20:59:31 +00001036
1037 // Add the function size
1038 ActualSize += TII->GetFunctionSizeInBytes(F);
Dale Johannesen0ba4a0e2008-08-07 01:30:15 +00001039
Chris Lattner2b40c562009-08-23 06:35:02 +00001040 DEBUG(errs() << "JIT: ActualSize before globals " << ActualSize << "\n");
Dale Johannesen0ba4a0e2008-08-07 01:30:15 +00001041 // Add the size of the globals that will be allocated after this function.
1042 // These are all the ones referenced from this function that were not
1043 // previously allocated.
1044 ActualSize += GetSizeOfGlobalsInBytes(F);
Chris Lattner2b40c562009-08-23 06:35:02 +00001045 DEBUG(errs() << "JIT: ActualSize after globals " << ActualSize << "\n");
Reid Klecknercc492292009-07-23 21:46:56 +00001046 } else if (SizeEstimate > 0) {
1047 // SizeEstimate will be non-zero on reallocation attempts.
1048 ActualSize = SizeEstimate;
Nicolas Geoffray68847972008-04-18 20:59:31 +00001049 }
1050
Chris Lattnerc8ad39c2007-12-05 23:39:57 +00001051 BufferBegin = CurBufferPtr = MemMgr->startFunctionBody(F.getFunction(),
1052 ActualSize);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001053 BufferEnd = BufferBegin+ActualSize;
Jeffrey Yasskin2512e352009-10-20 18:13:21 +00001054 EmittedFunctions[F.getFunction()].FunctionBody = BufferBegin;
1055
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001056 // Ensure the constant pool/jump table info is at least 4-byte aligned.
1057 emitAlignment(16);
1058
1059 emitConstantPool(F.getConstantPool());
1060 initJumpTableInfo(F.getJumpTableInfo());
1061
1062 // About to start emitting the machine code for the function.
1063 emitAlignment(std::max(F.getFunction()->getAlignment(), 8U));
1064 TheJIT->updateGlobalMapping(F.getFunction(), CurBufferPtr);
1065
1066 MBBLocations.clear();
Jeffrey Yasskin8ad296e2009-07-16 21:07:26 +00001067
1068 EmissionDetails.MF = &F;
1069 EmissionDetails.LineStarts.clear();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001070}
1071
1072bool JITEmitter::finishFunction(MachineFunction &F) {
1073 if (CurBufferPtr == BufferEnd) {
Reid Klecknercc492292009-07-23 21:46:56 +00001074 // We must call endFunctionBody before retrying, because
1075 // deallocateMemForFunction requires it.
1076 MemMgr->endFunctionBody(F.getFunction(), BufferBegin, CurBufferPtr);
1077 retryWithMoreMemory(F);
1078 return true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001079 }
Reid Klecknercc492292009-07-23 21:46:56 +00001080
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001081 emitJumpTableInfo(F.getJumpTableInfo());
Reid Klecknercc492292009-07-23 21:46:56 +00001082
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001083 // FnStart is the start of the text, not the start of the constant pool and
1084 // other per-function data.
Bruno Cardoso Lopes214ae972009-06-04 00:15:51 +00001085 uint8_t *FnStart =
1086 (uint8_t *)TheJIT->getPointerToGlobalIfAvailable(F.getFunction());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001087
Argiris Kirtzidisb9e97bc2009-04-30 23:01:58 +00001088 // FnEnd is the end of the function's machine code.
Bruno Cardoso Lopes214ae972009-06-04 00:15:51 +00001089 uint8_t *FnEnd = CurBufferPtr;
Argiris Kirtzidisb9e97bc2009-04-30 23:01:58 +00001090
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001091 if (!Relocations.empty()) {
Nate Begemana5645962009-03-05 06:34:37 +00001092 CurFn = F.getFunction();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001093 NumRelos += Relocations.size();
1094
1095 // Resolve the relocations to concrete pointers.
1096 for (unsigned i = 0, e = Relocations.size(); i != e; ++i) {
1097 MachineRelocation &MR = Relocations[i];
Evan Cheng1cf55bb2008-11-03 07:14:02 +00001098 void *ResultPtr = 0;
Evan Chengc5fe01b2008-10-29 23:54:46 +00001099 if (!MR.letTargetResolve()) {
Evan Cheng2976cd12008-11-08 07:37:34 +00001100 if (MR.isExternalSymbol()) {
Dan Gohman0ae39622009-01-05 05:32:42 +00001101 ResultPtr = TheJIT->getPointerToNamedFunction(MR.getExternalSymbol(),
1102 false);
Chris Lattner2b40c562009-08-23 06:35:02 +00001103 DEBUG(errs() << "JIT: Map \'" << MR.getExternalSymbol() << "\' to ["
1104 << ResultPtr << "]\n");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001105
Evan Chengc5fe01b2008-10-29 23:54:46 +00001106 // If the target REALLY wants a stub for this function, emit it now.
Nate Begemand1718c42009-03-11 07:03:43 +00001107 if (!MR.doesntNeedStub()) {
1108 if (!TheJIT->areDlsymStubsEnabled()) {
1109 ResultPtr = Resolver.getExternalFunctionStub(ResultPtr);
1110 } else {
1111 void *&Stub = ExtFnStubs[MR.getExternalSymbol()];
1112 if (!Stub) {
1113 Stub = Resolver.getExternalFunctionStub((void *)&Stub);
1114 AddStubToCurrentFunction(Stub);
1115 }
1116 ResultPtr = Stub;
1117 }
1118 }
Evan Chengc5fe01b2008-10-29 23:54:46 +00001119 } else if (MR.isGlobalValue()) {
1120 ResultPtr = getPointerToGlobal(MR.getGlobalValue(),
1121 BufferBegin+MR.getMachineCodeOffset(),
1122 MR.doesntNeedStub());
Evan Chengb0ebcb42008-11-10 01:52:24 +00001123 } else if (MR.isIndirectSymbol()) {
1124 ResultPtr = getPointerToGVIndirectSym(MR.getGlobalValue(),
Evan Cheng28e7e162008-01-04 10:46:51 +00001125 BufferBegin+MR.getMachineCodeOffset(),
1126 MR.doesntNeedStub());
Evan Chengc5fe01b2008-10-29 23:54:46 +00001127 } else if (MR.isBasicBlock()) {
1128 ResultPtr = (void*)getMachineBasicBlockAddress(MR.getBasicBlock());
1129 } else if (MR.isConstantPoolIndex()) {
1130 ResultPtr = (void*)getConstantPoolEntryAddress(MR.getConstantPoolIndex());
1131 } else {
1132 assert(MR.isJumpTableIndex());
1133 ResultPtr=(void*)getJumpTableEntryAddress(MR.getJumpTableIndex());
1134 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001135
Evan Chengc5fe01b2008-10-29 23:54:46 +00001136 MR.setResultPointer(ResultPtr);
1137 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001138
1139 // if we are managing the GOT and the relocation wants an index,
1140 // give it one
Chris Lattnerc8ad39c2007-12-05 23:39:57 +00001141 if (MR.isGOTRelative() && MemMgr->isManagingGOT()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001142 unsigned idx = Resolver.getGOTIndexForAddr(ResultPtr);
1143 MR.setGOTIndex(idx);
Chris Lattnerc8ad39c2007-12-05 23:39:57 +00001144 if (((void**)MemMgr->getGOTBase())[idx] != ResultPtr) {
Chris Lattner2b40c562009-08-23 06:35:02 +00001145 DEBUG(errs() << "JIT: GOT was out of date for " << ResultPtr
1146 << " pointing at " << ((void**)MemMgr->getGOTBase())[idx]
1147 << "\n");
Chris Lattnerc8ad39c2007-12-05 23:39:57 +00001148 ((void**)MemMgr->getGOTBase())[idx] = ResultPtr;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001149 }
1150 }
1151 }
1152
Nate Begemana5645962009-03-05 06:34:37 +00001153 CurFn = 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001154 TheJIT->getJITInfo().relocate(BufferBegin, &Relocations[0],
Chris Lattnerc8ad39c2007-12-05 23:39:57 +00001155 Relocations.size(), MemMgr->getGOTBase());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001156 }
1157
1158 // Update the GOT entry for F to point to the new code.
Chris Lattnerc8ad39c2007-12-05 23:39:57 +00001159 if (MemMgr->isManagingGOT()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001160 unsigned idx = Resolver.getGOTIndexForAddr((void*)BufferBegin);
Chris Lattnerc8ad39c2007-12-05 23:39:57 +00001161 if (((void**)MemMgr->getGOTBase())[idx] != (void*)BufferBegin) {
Chris Lattner2b40c562009-08-23 06:35:02 +00001162 DEBUG(errs() << "JIT: GOT was out of date for " << (void*)BufferBegin
1163 << " pointing at " << ((void**)MemMgr->getGOTBase())[idx]
1164 << "\n");
Chris Lattnerc8ad39c2007-12-05 23:39:57 +00001165 ((void**)MemMgr->getGOTBase())[idx] = (void*)BufferBegin;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001166 }
1167 }
1168
Argiris Kirtzidisb9e97bc2009-04-30 23:01:58 +00001169 // CurBufferPtr may have moved beyond FnEnd, due to memory allocation for
1170 // global variables that were referenced in the relocations.
1171 MemMgr->endFunctionBody(F.getFunction(), BufferBegin, CurBufferPtr);
Evan Cheng6e561c72008-12-10 02:32:19 +00001172
1173 if (CurBufferPtr == BufferEnd) {
Reid Klecknercc492292009-07-23 21:46:56 +00001174 retryWithMoreMemory(F);
1175 return true;
1176 } else {
1177 // Now that we've succeeded in emitting the function, reset the
1178 // SizeEstimate back down to zero.
1179 SizeEstimate = 0;
Evan Cheng6e561c72008-12-10 02:32:19 +00001180 }
1181
Nuno Lopes1ab7adc2008-10-21 11:42:16 +00001182 BufferBegin = CurBufferPtr = 0;
1183 NumBytes += FnEnd-FnStart;
1184
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001185 // Invalidate the icache if necessary.
Chris Lattner88f51632008-06-25 17:18:44 +00001186 sys::Memory::InvalidateInstructionCache(FnStart, FnEnd-FnStart);
Jeffrey Yasskinf8d55342009-06-25 02:04:04 +00001187
Jeffrey Yasskinf8d55342009-06-25 02:04:04 +00001188 TheJIT->NotifyFunctionEmitted(*F.getFunction(), FnStart, FnEnd-FnStart,
Jeffrey Yasskin8ad296e2009-07-16 21:07:26 +00001189 EmissionDetails);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001190
Daniel Dunbar005975c2009-07-25 00:23:56 +00001191 DEBUG(errs() << "JIT: Finished CodeGen of [" << (void*)FnStart
1192 << "] Function: " << F.getFunction()->getName()
1193 << ": " << (FnEnd-FnStart) << " bytes of text, "
1194 << Relocations.size() << " relocations\n");
Argiris Kirtzidis6841c1a2009-05-18 21:06:40 +00001195
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001196 Relocations.clear();
Evan Cheng68c18682009-03-13 07:51:59 +00001197 ConstPoolAddresses.clear();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001198
Evan Chengb83f6972008-09-18 07:54:21 +00001199 // Mark code region readable and executable if it's not so already.
Jim Grosbach724b1812008-10-03 16:17:20 +00001200 MemMgr->setMemoryExecutable();
Evan Chengb83f6972008-09-18 07:54:21 +00001201
Chris Lattner2b40c562009-08-23 06:35:02 +00001202 DEBUG(
Evan Chengb81ef082008-11-12 08:22:43 +00001203 if (sys::hasDisassembler()) {
Chris Lattner2b40c562009-08-23 06:35:02 +00001204 errs() << "JIT: Disassembled code:\n";
1205 errs() << sys::disassembleBuffer(FnStart, FnEnd-FnStart,
1206 (uintptr_t)FnStart);
Evan Chengb81ef082008-11-12 08:22:43 +00001207 } else {
Chris Lattner2b40c562009-08-23 06:35:02 +00001208 errs() << "JIT: Binary code:\n";
Bruno Cardoso Lopes214ae972009-06-04 00:15:51 +00001209 uint8_t* q = FnStart;
Evan Chengb81ef082008-11-12 08:22:43 +00001210 for (int i = 0; q < FnEnd; q += 4, ++i) {
1211 if (i == 4)
1212 i = 0;
1213 if (i == 0)
Chris Lattner2b40c562009-08-23 06:35:02 +00001214 errs() << "JIT: " << (long)(q - FnStart) << ": ";
Evan Chengb81ef082008-11-12 08:22:43 +00001215 bool Done = false;
1216 for (int j = 3; j >= 0; --j) {
1217 if (q + j >= FnEnd)
1218 Done = true;
1219 else
Chris Lattner2b40c562009-08-23 06:35:02 +00001220 errs() << (unsigned short)q[j];
Evan Chengb81ef082008-11-12 08:22:43 +00001221 }
1222 if (Done)
1223 break;
Chris Lattner2b40c562009-08-23 06:35:02 +00001224 errs() << ' ';
Evan Chengb81ef082008-11-12 08:22:43 +00001225 if (i == 3)
Chris Lattner2b40c562009-08-23 06:35:02 +00001226 errs() << '\n';
Evan Cheng23dbb902008-11-05 23:44:08 +00001227 }
Chris Lattner2b40c562009-08-23 06:35:02 +00001228 errs()<< '\n';
Evan Cheng23dbb902008-11-05 23:44:08 +00001229 }
Chris Lattner2b40c562009-08-23 06:35:02 +00001230 );
1231
Reid Kleckner738b4f22009-09-20 23:52:43 +00001232 if (DwarfExceptionHandling || JITEmitDebugInfo) {
Nicolas Geoffray68847972008-04-18 20:59:31 +00001233 uintptr_t ActualSize = 0;
Nicolas Geoffray0e757e12008-02-13 18:39:37 +00001234 SavedBufferBegin = BufferBegin;
1235 SavedBufferEnd = BufferEnd;
1236 SavedCurBufferPtr = CurBufferPtr;
Reid Kleckner738b4f22009-09-20 23:52:43 +00001237
Nicolas Geoffrayf748af22008-04-20 17:44:19 +00001238 if (MemMgr->NeedsExactSize()) {
1239 ActualSize = DE->GetDwarfTableSizeInBytes(F, *this, FnStart, FnEnd);
Nicolas Geoffray68847972008-04-18 20:59:31 +00001240 }
Nicolas Geoffray0e757e12008-02-13 18:39:37 +00001241
1242 BufferBegin = CurBufferPtr = MemMgr->startExceptionTable(F.getFunction(),
1243 ActualSize);
1244 BufferEnd = BufferBegin+ActualSize;
Jeffrey Yasskin2512e352009-10-20 18:13:21 +00001245 EmittedFunctions[F.getFunction()].ExceptionTable = BufferBegin;
Reid Kleckner738b4f22009-09-20 23:52:43 +00001246 uint8_t *EhStart;
1247 uint8_t *FrameRegister = DE->EmitDwarfTable(F, *this, FnStart, FnEnd,
1248 EhStart);
Chris Lattner3d46fe02008-03-07 20:05:43 +00001249 MemMgr->endExceptionTable(F.getFunction(), BufferBegin, CurBufferPtr,
1250 FrameRegister);
Reid Kleckner738b4f22009-09-20 23:52:43 +00001251 uint8_t *EhEnd = CurBufferPtr;
Nicolas Geoffray0e757e12008-02-13 18:39:37 +00001252 BufferBegin = SavedBufferBegin;
1253 BufferEnd = SavedBufferEnd;
1254 CurBufferPtr = SavedCurBufferPtr;
1255
Reid Kleckner738b4f22009-09-20 23:52:43 +00001256 if (DwarfExceptionHandling) {
1257 TheJIT->RegisterTable(FrameRegister);
1258 }
1259
1260 if (JITEmitDebugInfo) {
1261 DebugInfo I;
1262 I.FnStart = FnStart;
1263 I.FnEnd = FnEnd;
1264 I.EhStart = EhStart;
1265 I.EhEnd = EhEnd;
1266 DR->RegisterFunction(F.getFunction(), I);
1267 }
Nicolas Geoffray0e757e12008-02-13 18:39:37 +00001268 }
Evan Chengca346e62008-09-02 08:14:01 +00001269
1270 if (MMI)
1271 MMI->EndFunction();
Nicolas Geoffray0e757e12008-02-13 18:39:37 +00001272
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001273 return false;
1274}
1275
Reid Klecknercc492292009-07-23 21:46:56 +00001276void JITEmitter::retryWithMoreMemory(MachineFunction &F) {
Chris Lattner2b40c562009-08-23 06:35:02 +00001277 DEBUG(errs() << "JIT: Ran out of space for native code. Reattempting.\n");
Reid Klecknercc492292009-07-23 21:46:56 +00001278 Relocations.clear(); // Clear the old relocations or we'll reapply them.
1279 ConstPoolAddresses.clear();
1280 ++NumRetries;
1281 deallocateMemForFunction(F.getFunction());
1282 // Try again with at least twice as much free space.
1283 SizeEstimate = (uintptr_t)(2 * (BufferEnd - BufferBegin));
1284}
1285
Nate Begemana5645962009-03-05 06:34:37 +00001286/// deallocateMemForFunction - Deallocate all memory for the specified
1287/// function body. Also drop any references the function has to stubs.
Reid Klecknercc492292009-07-23 21:46:56 +00001288void JITEmitter::deallocateMemForFunction(const Function *F) {
Jeffrey Yasskin2512e352009-10-20 18:13:21 +00001289 DenseMap<const Function *, EmittedCode>::iterator Emitted =
1290 EmittedFunctions.find(F);
1291 if (Emitted != EmittedFunctions.end()) {
1292 MemMgr->deallocateFunctionBody(Emitted->second.FunctionBody);
1293 MemMgr->deallocateExceptionTable(Emitted->second.ExceptionTable);
1294 EmittedFunctions.erase(Emitted);
1295 }
Nate Begemana5645962009-03-05 06:34:37 +00001296
Reid Kleckner738b4f22009-09-20 23:52:43 +00001297 // TODO: Do we need to unregister exception handling information from libgcc
1298 // here?
1299
1300 if (JITEmitDebugInfo) {
1301 DR->UnregisterFunction(F);
1302 }
1303
Nate Begemana5645962009-03-05 06:34:37 +00001304 // If the function did not reference any stubs, return.
1305 if (CurFnStubUses.find(F) == CurFnStubUses.end())
1306 return;
1307
1308 // For each referenced stub, erase the reference to this function, and then
1309 // erase the list of referenced stubs.
1310 SmallVectorImpl<void *> &StubList = CurFnStubUses[F];
1311 for (unsigned i = 0, e = StubList.size(); i != e; ++i) {
1312 void *Stub = StubList[i];
Nate Begemand1718c42009-03-11 07:03:43 +00001313
1314 // If we already invalidated this stub for this function, continue.
1315 if (StubFnRefs.count(Stub) == 0)
1316 continue;
1317
Nate Begemana5645962009-03-05 06:34:37 +00001318 SmallPtrSet<const Function *, 1> &FnRefs = StubFnRefs[Stub];
1319 FnRefs.erase(F);
1320
1321 // If this function was the last reference to the stub, invalidate the stub
1322 // in the JITResolver. Were there a memory manager deallocateStub routine,
1323 // we could call that at this point too.
1324 if (FnRefs.empty()) {
Chris Lattner2b40c562009-08-23 06:35:02 +00001325 DEBUG(errs() << "\nJIT: Invalidated Stub at [" << Stub << "]\n");
Nate Begemand1718c42009-03-11 07:03:43 +00001326 StubFnRefs.erase(Stub);
1327
1328 // Invalidate the stub. If it is a GV stub, update the JIT's global
1329 // mapping for that GV to zero, otherwise, search the string map of
1330 // external function names to stubs and remove the entry for this stub.
Nate Begeman165818c2009-03-07 06:41:19 +00001331 GlobalValue *GV = Resolver.invalidateStub(Stub);
Nate Begemand1718c42009-03-11 07:03:43 +00001332 if (GV) {
1333 TheJIT->updateGlobalMapping(GV, 0);
1334 } else {
1335 for (StringMapIterator<void*> i = ExtFnStubs.begin(),
1336 e = ExtFnStubs.end(); i != e; ++i) {
1337 if (i->second == Stub) {
1338 ExtFnStubs.erase(i);
1339 break;
1340 }
1341 }
1342 }
Nate Begemana5645962009-03-05 06:34:37 +00001343 }
1344 }
1345 CurFnStubUses.erase(F);
1346}
1347
1348
Evan Cheng6e561c72008-12-10 02:32:19 +00001349void* JITEmitter::allocateSpace(uintptr_t Size, unsigned Alignment) {
Nuno Lopes1ab7adc2008-10-21 11:42:16 +00001350 if (BufferBegin)
Bruno Cardoso Lopes1ea31ff2009-05-30 20:51:52 +00001351 return JITCodeEmitter::allocateSpace(Size, Alignment);
Nuno Lopes1ab7adc2008-10-21 11:42:16 +00001352
1353 // create a new memory block if there is no active one.
1354 // care must be taken so that BufferBegin is invalidated when a
1355 // block is trimmed
1356 BufferBegin = CurBufferPtr = MemMgr->allocateSpace(Size, Alignment);
1357 BufferEnd = BufferBegin+Size;
1358 return CurBufferPtr;
1359}
1360
Jeffrey Yasskin892956a2009-07-08 21:59:57 +00001361void* JITEmitter::allocateGlobal(uintptr_t Size, unsigned Alignment) {
1362 // Delegate this call through the memory manager.
1363 return MemMgr->allocateGlobal(Size, Alignment);
1364}
1365
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001366void JITEmitter::emitConstantPool(MachineConstantPool *MCP) {
Evan Cheng68e5fc32008-11-07 09:02:17 +00001367 if (TheJIT->getJITInfo().hasCustomConstantPool())
Jim Grosbachbad01432008-10-30 23:44:39 +00001368 return;
Evan Cheng68e5fc32008-11-07 09:02:17 +00001369
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001370 const std::vector<MachineConstantPoolEntry> &Constants = MCP->getConstants();
1371 if (Constants.empty()) return;
1372
Evan Cheng68c18682009-03-13 07:51:59 +00001373 unsigned Size = GetConstantPoolSizeInBytes(MCP, TheJIT->getTargetData());
1374 unsigned Align = MCP->getConstantPoolAlignment();
Evan Cheng71c58872008-04-12 00:22:01 +00001375 ConstantPoolBase = allocateSpace(Size, Align);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001376 ConstantPool = MCP;
1377
1378 if (ConstantPoolBase == 0) return; // Buffer overflow.
1379
Chris Lattner2b40c562009-08-23 06:35:02 +00001380 DEBUG(errs() << "JIT: Emitted constant pool at [" << ConstantPoolBase
1381 << "] (size: " << Size << ", alignment: " << Align << ")\n");
Evan Cheng71c58872008-04-12 00:22:01 +00001382
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001383 // Initialize the memory for all of the constant pool entries.
Evan Cheng68c18682009-03-13 07:51:59 +00001384 unsigned Offset = 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001385 for (unsigned i = 0, e = Constants.size(); i != e; ++i) {
Evan Cheng68c18682009-03-13 07:51:59 +00001386 MachineConstantPoolEntry CPE = Constants[i];
1387 unsigned AlignMask = CPE.getAlignment() - 1;
1388 Offset = (Offset + AlignMask) & ~AlignMask;
1389
1390 uintptr_t CAddr = (uintptr_t)ConstantPoolBase + Offset;
1391 ConstPoolAddresses.push_back(CAddr);
1392 if (CPE.isMachineConstantPoolEntry()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001393 // FIXME: add support to lower machine constant pool values into bytes!
Edwin Törökced9ff82009-07-11 13:10:19 +00001394 llvm_report_error("Initialize memory with machine specific constant pool"
1395 "entry has not been implemented!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001396 }
Evan Cheng68c18682009-03-13 07:51:59 +00001397 TheJIT->InitializeMemory(CPE.Val.ConstVal, (void*)CAddr);
Chris Lattner2b40c562009-08-23 06:35:02 +00001398 DEBUG(errs() << "JIT: CP" << i << " at [0x";
1399 errs().write_hex(CAddr) << "]\n");
Evan Cheng68c18682009-03-13 07:51:59 +00001400
1401 const Type *Ty = CPE.Val.ConstVal->getType();
Duncan Sandsec4f97d2009-05-09 07:06:46 +00001402 Offset += TheJIT->getTargetData()->getTypeAllocSize(Ty);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001403 }
1404}
1405
1406void JITEmitter::initJumpTableInfo(MachineJumpTableInfo *MJTI) {
Evan Cheng68e5fc32008-11-07 09:02:17 +00001407 if (TheJIT->getJITInfo().hasCustomJumpTables())
1408 return;
1409
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001410 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
1411 if (JT.empty()) return;
1412
1413 unsigned NumEntries = 0;
1414 for (unsigned i = 0, e = JT.size(); i != e; ++i)
1415 NumEntries += JT[i].MBBs.size();
1416
1417 unsigned EntrySize = MJTI->getEntrySize();
1418
1419 // Just allocate space for all the jump tables now. We will fix up the actual
1420 // MBB entries in the tables after we emit the code for each block, since then
1421 // we will know the final locations of the MBBs in memory.
1422 JumpTable = MJTI;
1423 JumpTableBase = allocateSpace(NumEntries * EntrySize, MJTI->getAlignment());
1424}
1425
1426void JITEmitter::emitJumpTableInfo(MachineJumpTableInfo *MJTI) {
Evan Cheng68e5fc32008-11-07 09:02:17 +00001427 if (TheJIT->getJITInfo().hasCustomJumpTables())
1428 return;
1429
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001430 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
1431 if (JT.empty() || JumpTableBase == 0) return;
1432
1433 if (TargetMachine::getRelocationModel() == Reloc::PIC_) {
1434 assert(MJTI->getEntrySize() == 4 && "Cross JIT'ing?");
1435 // For each jump table, place the offset from the beginning of the table
1436 // to the target address.
1437 int *SlotPtr = (int*)JumpTableBase;
1438
1439 for (unsigned i = 0, e = JT.size(); i != e; ++i) {
1440 const std::vector<MachineBasicBlock*> &MBBs = JT[i].MBBs;
1441 // Store the offset of the basic block for this jump table slot in the
1442 // memory we allocated for the jump table in 'initJumpTableInfo'
Evan Cheng6e561c72008-12-10 02:32:19 +00001443 uintptr_t Base = (uintptr_t)SlotPtr;
Evan Chengaf743252008-01-05 02:26:58 +00001444 for (unsigned mi = 0, me = MBBs.size(); mi != me; ++mi) {
Evan Cheng6e561c72008-12-10 02:32:19 +00001445 uintptr_t MBBAddr = getMachineBasicBlockAddress(MBBs[mi]);
Evan Chengaf743252008-01-05 02:26:58 +00001446 *SlotPtr++ = TheJIT->getJITInfo().getPICJumpTableEntry(MBBAddr, Base);
1447 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001448 }
1449 } else {
1450 assert(MJTI->getEntrySize() == sizeof(void*) && "Cross JIT'ing?");
1451
1452 // For each jump table, map each target in the jump table to the address of
1453 // an emitted MachineBasicBlock.
1454 intptr_t *SlotPtr = (intptr_t*)JumpTableBase;
1455
1456 for (unsigned i = 0, e = JT.size(); i != e; ++i) {
1457 const std::vector<MachineBasicBlock*> &MBBs = JT[i].MBBs;
1458 // Store the address of the basic block for this jump table slot in the
1459 // memory we allocated for the jump table in 'initJumpTableInfo'
1460 for (unsigned mi = 0, me = MBBs.size(); mi != me; ++mi)
1461 *SlotPtr++ = getMachineBasicBlockAddress(MBBs[mi]);
1462 }
1463 }
1464}
1465
Evan Cheng2c3267a2008-11-08 08:02:53 +00001466void JITEmitter::startGVStub(const GlobalValue* GV, unsigned StubSize,
1467 unsigned Alignment) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001468 SavedBufferBegin = BufferBegin;
1469 SavedBufferEnd = BufferEnd;
1470 SavedCurBufferPtr = CurBufferPtr;
1471
Evan Cheng2c3267a2008-11-08 08:02:53 +00001472 BufferBegin = CurBufferPtr = MemMgr->allocateStub(GV, StubSize, Alignment);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001473 BufferEnd = BufferBegin+StubSize+1;
1474}
1475
Nate Begeman7b1a8472009-02-18 08:31:02 +00001476void JITEmitter::startGVStub(const GlobalValue* GV, void *Buffer,
1477 unsigned StubSize) {
1478 SavedBufferBegin = BufferBegin;
1479 SavedBufferEnd = BufferEnd;
1480 SavedCurBufferPtr = CurBufferPtr;
1481
Bruno Cardoso Lopes214ae972009-06-04 00:15:51 +00001482 BufferBegin = CurBufferPtr = (uint8_t *)Buffer;
Nate Begeman7b1a8472009-02-18 08:31:02 +00001483 BufferEnd = BufferBegin+StubSize+1;
1484}
1485
Evan Cheng2c3267a2008-11-08 08:02:53 +00001486void *JITEmitter::finishGVStub(const GlobalValue* GV) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001487 NumBytes += getCurrentPCOffset();
1488 std::swap(SavedBufferBegin, BufferBegin);
1489 BufferEnd = SavedBufferEnd;
1490 CurBufferPtr = SavedCurBufferPtr;
1491 return SavedBufferBegin;
1492}
1493
1494// getConstantPoolEntryAddress - Return the address of the 'ConstantNum' entry
1495// in the constant pool that was last emitted with the 'emitConstantPool'
1496// method.
1497//
Evan Cheng6e561c72008-12-10 02:32:19 +00001498uintptr_t JITEmitter::getConstantPoolEntryAddress(unsigned ConstantNum) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001499 assert(ConstantNum < ConstantPool->getConstants().size() &&
1500 "Invalid ConstantPoolIndex!");
Evan Cheng68c18682009-03-13 07:51:59 +00001501 return ConstPoolAddresses[ConstantNum];
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001502}
1503
1504// getJumpTableEntryAddress - Return the address of the JumpTable with index
1505// 'Index' in the jumpp table that was last initialized with 'initJumpTableInfo'
1506//
Evan Cheng6e561c72008-12-10 02:32:19 +00001507uintptr_t JITEmitter::getJumpTableEntryAddress(unsigned Index) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001508 const std::vector<MachineJumpTableEntry> &JT = JumpTable->getJumpTables();
1509 assert(Index < JT.size() && "Invalid jump table index!");
1510
1511 unsigned Offset = 0;
1512 unsigned EntrySize = JumpTable->getEntrySize();
1513
1514 for (unsigned i = 0; i < Index; ++i)
1515 Offset += JT[i].MBBs.size();
1516
1517 Offset *= EntrySize;
1518
Evan Cheng6e561c72008-12-10 02:32:19 +00001519 return (uintptr_t)((char *)JumpTableBase + Offset);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001520}
1521
1522//===----------------------------------------------------------------------===//
1523// Public interface to this file
1524//===----------------------------------------------------------------------===//
1525
Reid Kleckner738b4f22009-09-20 23:52:43 +00001526JITCodeEmitter *JIT::createEmitter(JIT &jit, JITMemoryManager *JMM,
1527 TargetMachine &tm) {
1528 return new JITEmitter(jit, JMM, tm);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001529}
1530
1531// getPointerToNamedFunction - This function is used as a global wrapper to
1532// JIT::getPointerToNamedFunction for the purpose of resolving symbols when
1533// bugpoint is debugging the JIT. In that scenario, we are loading an .so and
1534// need to resolve function(s) that are being mis-codegenerated, so we need to
1535// resolve their addresses at runtime, and this is the way to do it.
1536extern "C" {
1537 void *getPointerToNamedFunction(const char *Name) {
1538 if (Function *F = TheJIT->FindFunctionNamed(Name))
1539 return TheJIT->getPointerToFunction(F);
1540 return TheJIT->getPointerToNamedFunction(Name);
1541 }
1542}
1543
1544// getPointerToFunctionOrStub - If the specified function has been
1545// code-gen'd, return a pointer to the function. If not, compile it, or use
1546// a stub to implement lazy compilation if available.
1547//
1548void *JIT::getPointerToFunctionOrStub(Function *F) {
1549 // If we have already code generated the function, just return the address.
1550 if (void *Addr = getPointerToGlobalIfAvailable(F))
1551 return Addr;
1552
1553 // Get a stub if the target supports it.
Bruno Cardoso Lopes1ea31ff2009-05-30 20:51:52 +00001554 assert(isa<JITEmitter>(JCE) && "Unexpected MCE?");
Evan Cheng89b29a12008-08-20 00:28:12 +00001555 JITEmitter *JE = cast<JITEmitter>(getCodeEmitter());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001556 return JE->getJITResolver().getFunctionStub(F);
1557}
1558
Nate Begeman7b1a8472009-02-18 08:31:02 +00001559void JIT::updateFunctionStub(Function *F) {
1560 // Get the empty stub we generated earlier.
Bruno Cardoso Lopes1ea31ff2009-05-30 20:51:52 +00001561 assert(isa<JITEmitter>(JCE) && "Unexpected MCE?");
Nate Begeman7b1a8472009-02-18 08:31:02 +00001562 JITEmitter *JE = cast<JITEmitter>(getCodeEmitter());
1563 void *Stub = JE->getJITResolver().getFunctionStub(F);
1564
1565 // Tell the target jit info to rewrite the stub at the specified address,
1566 // rather than creating a new one.
1567 void *Addr = getPointerToGlobalIfAvailable(F);
1568 getJITInfo().emitFunctionStubAtAddr(F, Addr, Stub, *getCodeEmitter());
1569}
1570
1571/// updateDlsymStubTable - Emit the data necessary to relocate the stubs
1572/// that were emitted during code generation.
1573///
1574void JIT::updateDlsymStubTable() {
Bruno Cardoso Lopes1ea31ff2009-05-30 20:51:52 +00001575 assert(isa<JITEmitter>(JCE) && "Unexpected MCE?");
Nate Begeman7b1a8472009-02-18 08:31:02 +00001576 JITEmitter *JE = cast<JITEmitter>(getCodeEmitter());
1577
1578 SmallVector<GlobalValue*, 8> GVs;
1579 SmallVector<void*, 8> Ptrs;
Nate Begemand1718c42009-03-11 07:03:43 +00001580 const StringMap<void *> &ExtFns = JE->getExternalFnStubs();
Nate Begeman7b1a8472009-02-18 08:31:02 +00001581
1582 JE->getJITResolver().getRelocatableGVs(GVs, Ptrs);
1583
Nate Begemand1718c42009-03-11 07:03:43 +00001584 unsigned nStubs = GVs.size() + ExtFns.size();
1585
Nate Begeman7b1a8472009-02-18 08:31:02 +00001586 // If there are no relocatable stubs, return.
Nate Begemand1718c42009-03-11 07:03:43 +00001587 if (nStubs == 0)
Nate Begeman7b1a8472009-02-18 08:31:02 +00001588 return;
1589
1590 // If there are no new relocatable stubs, return.
1591 void *CurTable = JE->getMemMgr()->getDlsymTable();
Nate Begemand1718c42009-03-11 07:03:43 +00001592 if (CurTable && (*(unsigned *)CurTable == nStubs))
Nate Begeman7b1a8472009-02-18 08:31:02 +00001593 return;
1594
1595 // Calculate the size of the stub info
Nate Begemand1718c42009-03-11 07:03:43 +00001596 unsigned offset = 4 + 4 * nStubs + sizeof(intptr_t) * nStubs;
Nate Begeman7b1a8472009-02-18 08:31:02 +00001597
1598 SmallVector<unsigned, 8> Offsets;
1599 for (unsigned i = 0; i != GVs.size(); ++i) {
1600 Offsets.push_back(offset);
Daniel Dunbar9198e932009-07-21 08:54:24 +00001601 offset += GVs[i]->getName().size() + 1;
Nate Begeman7b1a8472009-02-18 08:31:02 +00001602 }
Nate Begemand1718c42009-03-11 07:03:43 +00001603 for (StringMapConstIterator<void*> i = ExtFns.begin(), e = ExtFns.end();
1604 i != e; ++i) {
1605 Offsets.push_back(offset);
1606 offset += strlen(i->first()) + 1;
1607 }
Nate Begeman7b1a8472009-02-18 08:31:02 +00001608
Nate Begemana5645962009-03-05 06:34:37 +00001609 // Allocate space for the new "stub", which contains the dlsym table.
Nate Begeman7b1a8472009-02-18 08:31:02 +00001610 JE->startGVStub(0, offset, 4);
1611
1612 // Emit the number of records
Bruno Cardoso Lopes1ea31ff2009-05-30 20:51:52 +00001613 JE->emitInt32(nStubs);
Nate Begeman7b1a8472009-02-18 08:31:02 +00001614
1615 // Emit the string offsets
Nate Begemand1718c42009-03-11 07:03:43 +00001616 for (unsigned i = 0; i != nStubs; ++i)
Bruno Cardoso Lopes1ea31ff2009-05-30 20:51:52 +00001617 JE->emitInt32(Offsets[i]);
Nate Begeman7b1a8472009-02-18 08:31:02 +00001618
Nate Begemane1ba87f2009-03-04 19:10:38 +00001619 // Emit the pointers. Verify that they are at least 2-byte aligned, and set
1620 // the low bit to 0 == GV, 1 == Function, so that the client code doing the
1621 // relocation can write the relocated pointer at the appropriate place in
1622 // the stub.
1623 for (unsigned i = 0; i != GVs.size(); ++i) {
1624 intptr_t Ptr = (intptr_t)Ptrs[i];
1625 assert((Ptr & 1) == 0 && "Stub pointers must be at least 2-byte aligned!");
1626
1627 if (isa<Function>(GVs[i]))
1628 Ptr |= (intptr_t)1;
1629
Nate Begemand1718c42009-03-11 07:03:43 +00001630 if (sizeof(Ptr) == 8)
Bruno Cardoso Lopes1ea31ff2009-05-30 20:51:52 +00001631 JE->emitInt64(Ptr);
Nate Begemand1718c42009-03-11 07:03:43 +00001632 else
Bruno Cardoso Lopes1ea31ff2009-05-30 20:51:52 +00001633 JE->emitInt32(Ptr);
Nate Begemand1718c42009-03-11 07:03:43 +00001634 }
1635 for (StringMapConstIterator<void*> i = ExtFns.begin(), e = ExtFns.end();
1636 i != e; ++i) {
1637 intptr_t Ptr = (intptr_t)i->second | 1;
1638
1639 if (sizeof(Ptr) == 8)
Bruno Cardoso Lopes1ea31ff2009-05-30 20:51:52 +00001640 JE->emitInt64(Ptr);
Nate Begeman7b1a8472009-02-18 08:31:02 +00001641 else
Bruno Cardoso Lopes1ea31ff2009-05-30 20:51:52 +00001642 JE->emitInt32(Ptr);
Nate Begemane1ba87f2009-03-04 19:10:38 +00001643 }
Nate Begeman7b1a8472009-02-18 08:31:02 +00001644
Nate Begemana5645962009-03-05 06:34:37 +00001645 // Emit the strings.
Nate Begeman7b1a8472009-02-18 08:31:02 +00001646 for (unsigned i = 0; i != GVs.size(); ++i)
Bruno Cardoso Lopes1ea31ff2009-05-30 20:51:52 +00001647 JE->emitString(GVs[i]->getName());
Nate Begemand1718c42009-03-11 07:03:43 +00001648 for (StringMapConstIterator<void*> i = ExtFns.begin(), e = ExtFns.end();
1649 i != e; ++i)
Bruno Cardoso Lopes1ea31ff2009-05-30 20:51:52 +00001650 JE->emitString(i->first());
Nate Begeman7b1a8472009-02-18 08:31:02 +00001651
Nate Begemana5645962009-03-05 06:34:37 +00001652 // Tell the JIT memory manager where it is. The JIT Memory Manager will
1653 // deallocate space for the old one, if one existed.
Nate Begeman7b1a8472009-02-18 08:31:02 +00001654 JE->getMemMgr()->SetDlsymTable(JE->finishGVStub(0));
1655}
1656
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001657/// freeMachineCodeForFunction - release machine code memory for given Function.
1658///
1659void JIT::freeMachineCodeForFunction(Function *F) {
Dale Johannesen0ba4a0e2008-08-07 01:30:15 +00001660
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001661 // Delete translation for this from the ExecutionEngine, so it will get
1662 // retranslated next time it is used.
Chris Lattnerf50e3572008-04-04 05:51:42 +00001663 void *OldPtr = updateGlobalMapping(F, 0);
1664
1665 if (OldPtr)
Jeffrey Yasskinf8d55342009-06-25 02:04:04 +00001666 TheJIT->NotifyFreeingMachineCode(*F, OldPtr);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001667
1668 // Free the actual memory for the function body and related stuff.
Bruno Cardoso Lopes1ea31ff2009-05-30 20:51:52 +00001669 assert(isa<JITEmitter>(JCE) && "Unexpected MCE?");
1670 cast<JITEmitter>(JCE)->deallocateMemForFunction(F);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001671}