blob: 5f195ee8b10e13de1c4cae0012d3492f57333564 [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 Yasskin49c5ea42009-11-07 00:00:10 +000066 class JITEmitter;
Jeffrey Yasskin6ddfe5c2009-10-23 22:37:43 +000067 class JITResolverState;
68
69 template<typename ValueTy>
70 struct NoRAUWValueMapConfig : public ValueMapConfig<ValueTy> {
71 typedef JITResolverState *ExtraData;
72 static void onRAUW(JITResolverState *, Value *Old, Value *New) {
73 assert(false && "The JIT doesn't know how to handle a"
74 " RAUW on a value it has emitted.");
75 }
76 };
77
78 struct CallSiteValueMapConfig : public NoRAUWValueMapConfig<Function*> {
79 typedef JITResolverState *ExtraData;
80 static void onDelete(JITResolverState *JRS, Function *F);
81 };
82
Dan Gohmanf17a25c2007-07-18 16:29:46 +000083 class JITResolverState {
Nick Lewycky924fc912009-04-27 05:09:44 +000084 public:
Jeffrey Yasskin6ddfe5c2009-10-23 22:37:43 +000085 typedef ValueMap<Function*, void*, NoRAUWValueMapConfig<Function*> >
86 FunctionToStubMapTy;
Jeffrey Yasskine45e6f92009-10-19 18:49:59 +000087 typedef std::map<void*, AssertingVH<Function> > CallSiteToFunctionMapTy;
Jeffrey Yasskin6ddfe5c2009-10-23 22:37:43 +000088 typedef ValueMap<Function *, SmallPtrSet<void*, 1>,
89 CallSiteValueMapConfig> FunctionToCallSitesMapTy;
Nick Lewycky924fc912009-04-27 05:09:44 +000090 typedef std::map<AssertingVH<GlobalValue>, void*> GlobalToIndirectSymMapTy;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000091 private:
92 /// FunctionToStubMap - Keep track of the stub created for a particular
93 /// function so that we can reuse them if necessary.
Nick Lewycky924fc912009-04-27 05:09:44 +000094 FunctionToStubMapTy FunctionToStubMap;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000095
Jeffrey Yasskine45e6f92009-10-19 18:49:59 +000096 /// CallSiteToFunctionMap - Keep track of the function that each lazy call
97 /// site corresponds to, and vice versa.
98 CallSiteToFunctionMapTy CallSiteToFunctionMap;
99 FunctionToCallSitesMapTy FunctionToCallSitesMap;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000100
Evan Chengb0ebcb42008-11-10 01:52:24 +0000101 /// GlobalToIndirectSymMap - Keep track of the indirect symbol created for a
Evan Cheng28e7e162008-01-04 10:46:51 +0000102 /// particular GlobalVariable so that we can reuse them if necessary.
Nick Lewycky924fc912009-04-27 05:09:44 +0000103 GlobalToIndirectSymMapTy GlobalToIndirectSymMap;
Evan Cheng28e7e162008-01-04 10:46:51 +0000104
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000105 public:
Jeffrey Yasskin6ddfe5c2009-10-23 22:37:43 +0000106 JITResolverState() : FunctionToStubMap(this),
107 FunctionToCallSitesMap(this) {}
108
Nick Lewycky924fc912009-04-27 05:09:44 +0000109 FunctionToStubMapTy& getFunctionToStubMap(const MutexGuard& locked) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000110 assert(locked.holds(TheJIT->lock));
111 return FunctionToStubMap;
112 }
113
Nick Lewycky924fc912009-04-27 05:09:44 +0000114 GlobalToIndirectSymMapTy& getGlobalToIndirectSymMap(const MutexGuard& locked) {
Evan Cheng28e7e162008-01-04 10:46:51 +0000115 assert(locked.holds(TheJIT->lock));
Evan Chengb0ebcb42008-11-10 01:52:24 +0000116 return GlobalToIndirectSymMap;
Evan Cheng28e7e162008-01-04 10:46:51 +0000117 }
Jeffrey Yasskine45e6f92009-10-19 18:49:59 +0000118
119 pair<void *, Function *> LookupFunctionFromCallSite(
120 const MutexGuard &locked, void *CallSite) const {
121 assert(locked.holds(TheJIT->lock));
122
123 // The address given to us for the stub may not be exactly right, it might be
124 // a little bit after the stub. As such, use upper_bound to find it.
125 CallSiteToFunctionMapTy::const_iterator I =
126 CallSiteToFunctionMap.upper_bound(CallSite);
127 assert(I != CallSiteToFunctionMap.begin() &&
128 "This is not a known call site!");
129 --I;
130 return *I;
131 }
132
133 void AddCallSite(const MutexGuard &locked, void *CallSite, Function *F) {
134 assert(locked.holds(TheJIT->lock));
135
Jeffrey Yasskin6ddfe5c2009-10-23 22:37:43 +0000136 bool Inserted = CallSiteToFunctionMap.insert(
137 std::make_pair(CallSite, F)).second;
138 (void)Inserted;
139 assert(Inserted && "Pair was already in CallSiteToFunctionMap");
Jeffrey Yasskine45e6f92009-10-19 18:49:59 +0000140 FunctionToCallSitesMap[F].insert(CallSite);
141 }
142
143 // Returns the Function of the stub if a stub was erased, or NULL if there
144 // was no stub. This function uses the call-site->function map to find a
145 // relevant function, but asserts that only stubs and not other call sites
146 // will be passed in.
147 Function *EraseStub(const MutexGuard &locked, void *Stub) {
148 CallSiteToFunctionMapTy::iterator C2F_I =
149 CallSiteToFunctionMap.find(Stub);
150 if (C2F_I == CallSiteToFunctionMap.end()) {
151 // Not a stub.
152 return NULL;
153 }
154
155 Function *const F = C2F_I->second;
156#ifndef NDEBUG
157 void *RealStub = FunctionToStubMap.lookup(F);
158 assert(RealStub == Stub &&
159 "Call-site that wasn't a stub pass in to EraseStub");
160#endif
161 FunctionToStubMap.erase(F);
162 CallSiteToFunctionMap.erase(C2F_I);
163
164 // Remove the stub from the function->call-sites map, and remove the whole
165 // entry from the map if that was the last call site.
166 FunctionToCallSitesMapTy::iterator F2C_I = FunctionToCallSitesMap.find(F);
167 assert(F2C_I != FunctionToCallSitesMap.end() &&
168 "FunctionToCallSitesMap broken");
Jeffrey Yasskin6ddfe5c2009-10-23 22:37:43 +0000169 bool Erased = F2C_I->second.erase(Stub);
170 (void)Erased;
171 assert(Erased && "FunctionToCallSitesMap broken");
Jeffrey Yasskine45e6f92009-10-19 18:49:59 +0000172 if (F2C_I->second.empty())
173 FunctionToCallSitesMap.erase(F2C_I);
174
175 return F;
176 }
177
178 void EraseAllCallSites(const MutexGuard &locked, Function *F) {
179 assert(locked.holds(TheJIT->lock));
Jeffrey Yasskin6ddfe5c2009-10-23 22:37:43 +0000180 EraseAllCallSitesPrelocked(F);
181 }
182 void EraseAllCallSitesPrelocked(Function *F) {
Jeffrey Yasskine45e6f92009-10-19 18:49:59 +0000183 FunctionToCallSitesMapTy::iterator F2C = FunctionToCallSitesMap.find(F);
184 if (F2C == FunctionToCallSitesMap.end())
185 return;
186 for (SmallPtrSet<void*, 1>::const_iterator I = F2C->second.begin(),
187 E = F2C->second.end(); I != E; ++I) {
Jeffrey Yasskin6ddfe5c2009-10-23 22:37:43 +0000188 bool Erased = CallSiteToFunctionMap.erase(*I);
189 (void)Erased;
190 assert(Erased && "Missing call site->function mapping");
Jeffrey Yasskine45e6f92009-10-19 18:49:59 +0000191 }
192 FunctionToCallSitesMap.erase(F2C);
193 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000194 };
195
196 /// JITResolver - Keep track of, and resolve, call sites for functions that
197 /// have not yet been compiled.
198 class JITResolver {
Nick Lewycky924fc912009-04-27 05:09:44 +0000199 typedef JITResolverState::FunctionToStubMapTy FunctionToStubMapTy;
Jeffrey Yasskine45e6f92009-10-19 18:49:59 +0000200 typedef JITResolverState::CallSiteToFunctionMapTy CallSiteToFunctionMapTy;
Nick Lewycky924fc912009-04-27 05:09:44 +0000201 typedef JITResolverState::GlobalToIndirectSymMapTy GlobalToIndirectSymMapTy;
202
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000203 /// LazyResolverFn - The target lazy resolver function that we actually
204 /// rewrite instructions to use.
205 TargetJITInfo::LazyResolverFn LazyResolverFn;
206
207 JITResolverState state;
208
209 /// ExternalFnToStubMap - This is the equivalent of FunctionToStubMap for
210 /// external functions.
211 std::map<void*, void*> ExternalFnToStubMap;
212
Evan Cheng68c18682009-03-13 07:51:59 +0000213 /// revGOTMap - map addresses to indexes in the GOT
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000214 std::map<void*, unsigned> revGOTMap;
215 unsigned nextGOTIndex;
216
Jeffrey Yasskin49c5ea42009-11-07 00:00:10 +0000217 JITEmitter &JE;
218
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000219 static JITResolver *TheJITResolver;
220 public:
Jeffrey Yasskin49c5ea42009-11-07 00:00:10 +0000221 explicit JITResolver(JIT &jit, JITEmitter &je) : nextGOTIndex(0), JE(je) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000222 TheJIT = &jit;
223
224 LazyResolverFn = jit.getJITInfo().getLazyResolverFunction(JITCompilerFn);
225 assert(TheJITResolver == 0 && "Multiple JIT resolvers?");
226 TheJITResolver = this;
227 }
Eric Christopherea644f72009-11-12 03:12:18 +0000228
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000229 ~JITResolver() {
230 TheJITResolver = 0;
231 }
232
Evan Cheng6e4b7632008-11-13 21:50:50 +0000233 /// getFunctionStubIfAvailable - This returns a pointer to a function stub
234 /// if it has already been created.
235 void *getFunctionStubIfAvailable(Function *F);
236
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000237 /// getFunctionStub - This returns a pointer to a function stub, creating
Nate Begeman7b1a8472009-02-18 08:31:02 +0000238 /// one on demand as needed. If empty is true, create a function stub
239 /// pointing at address 0, to be filled in later.
Nate Begeman165818c2009-03-07 06:41:19 +0000240 void *getFunctionStub(Function *F);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000241
242 /// getExternalFunctionStub - Return a stub for the function at the
243 /// specified address, created lazily on demand.
244 void *getExternalFunctionStub(void *FnAddr);
245
Evan Chengb0ebcb42008-11-10 01:52:24 +0000246 /// getGlobalValueIndirectSym - Return an indirect symbol containing the
Evan Cheng23c6b642008-11-05 01:50:32 +0000247 /// specified GV address.
Evan Chengb0ebcb42008-11-10 01:52:24 +0000248 void *getGlobalValueIndirectSym(GlobalValue *V, void *GVAddress);
Evan Cheng28e7e162008-01-04 10:46:51 +0000249
Nate Begeman7b1a8472009-02-18 08:31:02 +0000250 void getRelocatableGVs(SmallVectorImpl<GlobalValue*> &GVs,
Nate Begemana5645962009-03-05 06:34:37 +0000251 SmallVectorImpl<void*> &Ptrs);
Eric Christopherea644f72009-11-12 03:12:18 +0000252
Nate Begemana5645962009-03-05 06:34:37 +0000253 GlobalValue *invalidateStub(void *Stub);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000254
255 /// getGOTIndexForAddress - Return a new or existing index in the GOT for
Chris Lattnerc8ad39c2007-12-05 23:39:57 +0000256 /// an address. This function only manages slots, it does not manage the
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000257 /// contents of the slots or the memory associated with the GOT.
Chris Lattnerc8ad39c2007-12-05 23:39:57 +0000258 unsigned getGOTIndexForAddr(void *addr);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000259
260 /// JITCompilerFn - This function is called to resolve a stub to a compiled
261 /// address. If the LLVM Function corresponding to the stub has not yet
262 /// been compiled, this function compiles it first.
263 static void *JITCompilerFn(void *Stub);
264 };
Jeffrey Yasskin49c5ea42009-11-07 00:00:10 +0000265
266 /// JITEmitter - The JIT implementation of the MachineCodeEmitter, which is
267 /// used to output functions to memory for execution.
268 class JITEmitter : public JITCodeEmitter {
269 JITMemoryManager *MemMgr;
270
271 // When outputting a function stub in the context of some other function, we
272 // save BufferBegin/BufferEnd/CurBufferPtr here.
273 uint8_t *SavedBufferBegin, *SavedBufferEnd, *SavedCurBufferPtr;
274
275 // When reattempting to JIT a function after running out of space, we store
276 // the estimated size of the function we're trying to JIT here, so we can
277 // ask the memory manager for at least this much space. When we
278 // successfully emit the function, we reset this back to zero.
279 uintptr_t SizeEstimate;
280
281 /// Relocations - These are the relocations that the function needs, as
282 /// emitted.
283 std::vector<MachineRelocation> Relocations;
Eric Christopherea644f72009-11-12 03:12:18 +0000284
Jeffrey Yasskin49c5ea42009-11-07 00:00:10 +0000285 /// MBBLocations - This vector is a mapping from MBB ID's to their address.
286 /// It is filled in by the StartMachineBasicBlock callback and queried by
287 /// the getMachineBasicBlockAddress callback.
288 std::vector<uintptr_t> MBBLocations;
289
290 /// ConstantPool - The constant pool for the current function.
291 ///
292 MachineConstantPool *ConstantPool;
293
294 /// ConstantPoolBase - A pointer to the first entry in the constant pool.
295 ///
296 void *ConstantPoolBase;
297
298 /// ConstPoolAddresses - Addresses of individual constant pool entries.
299 ///
300 SmallVector<uintptr_t, 8> ConstPoolAddresses;
301
302 /// JumpTable - The jump tables for the current function.
303 ///
304 MachineJumpTableInfo *JumpTable;
Eric Christopherea644f72009-11-12 03:12:18 +0000305
Jeffrey Yasskin49c5ea42009-11-07 00:00:10 +0000306 /// JumpTableBase - A pointer to the first entry in the jump table.
307 ///
308 void *JumpTableBase;
309
310 /// Resolver - This contains info about the currently resolved functions.
311 JITResolver Resolver;
312
313 /// DE - The dwarf emitter for the jit.
314 OwningPtr<JITDwarfEmitter> DE;
315
316 /// DR - The debug registerer for the jit.
317 OwningPtr<JITDebugRegisterer> DR;
318
Eric Christopherea644f72009-11-12 03:12:18 +0000319 /// LabelLocations - This vector is a mapping from Label ID's to their
Jeffrey Yasskin49c5ea42009-11-07 00:00:10 +0000320 /// address.
321 std::vector<uintptr_t> LabelLocations;
322
323 /// MMI - Machine module info for exception informations
324 MachineModuleInfo* MMI;
325
326 // GVSet - a set to keep track of which globals have been seen
327 SmallPtrSet<const GlobalVariable*, 8> GVSet;
328
Eric Christopherea644f72009-11-12 03:12:18 +0000329 // CurFn - The llvm function being emitted. Only valid during
Jeffrey Yasskin49c5ea42009-11-07 00:00:10 +0000330 // finishFunction().
331 const Function *CurFn;
332
333 /// Information about emitted code, which is passed to the
334 /// JITEventListeners. This is reset in startFunction and used in
335 /// finishFunction.
336 JITEvent_EmittedFunctionDetails EmissionDetails;
337
338 struct EmittedCode {
339 void *FunctionBody; // Beginning of the function's allocation.
340 void *Code; // The address the function's code actually starts at.
341 void *ExceptionTable;
342 EmittedCode() : FunctionBody(0), Code(0), ExceptionTable(0) {}
343 };
344 struct EmittedFunctionConfig : public ValueMapConfig<const Function*> {
345 typedef JITEmitter *ExtraData;
346 static void onDelete(JITEmitter *, const Function*);
347 static void onRAUW(JITEmitter *, const Function*, const Function*);
348 };
349 ValueMap<const Function *, EmittedCode,
350 EmittedFunctionConfig> EmittedFunctions;
351
352 // CurFnStubUses - For a given Function, a vector of stubs that it
353 // references. This facilitates the JIT detecting that a stub is no
354 // longer used, so that it may be deallocated.
355 DenseMap<AssertingVH<const Function>, SmallVector<void*, 1> > CurFnStubUses;
356
357 // StubFnRefs - For a given pointer to a stub, a set of Functions which
358 // reference the stub. When the count of a stub's references drops to zero,
359 // the stub is unused.
360 DenseMap<void *, SmallPtrSet<const Function*, 1> > StubFnRefs;
Eric Christopherea644f72009-11-12 03:12:18 +0000361
Jeffrey Yasskin49c5ea42009-11-07 00:00:10 +0000362 DebugLocTuple PrevDLT;
363
364 public:
365 JITEmitter(JIT &jit, JITMemoryManager *JMM, TargetMachine &TM)
366 : SizeEstimate(0), Resolver(jit, *this), MMI(0), CurFn(0),
367 EmittedFunctions(this) {
368 MemMgr = JMM ? JMM : JITMemoryManager::CreateDefaultMemManager();
369 if (jit.getJITInfo().needsGOT()) {
370 MemMgr->AllocateGOT();
371 DEBUG(errs() << "JIT is managing a GOT\n");
372 }
373
374 if (DwarfExceptionHandling || JITEmitDebugInfo) {
375 DE.reset(new JITDwarfEmitter(jit));
376 }
377 if (JITEmitDebugInfo) {
378 DR.reset(new JITDebugRegisterer(TM));
379 }
380 }
Eric Christopherea644f72009-11-12 03:12:18 +0000381 ~JITEmitter() {
Jeffrey Yasskin49c5ea42009-11-07 00:00:10 +0000382 delete MemMgr;
383 }
384
385 /// classof - Methods for support type inquiry through isa, cast, and
386 /// dyn_cast:
387 ///
388 static inline bool classof(const JITEmitter*) { return true; }
389 static inline bool classof(const MachineCodeEmitter*) { return true; }
Eric Christopherea644f72009-11-12 03:12:18 +0000390
Jeffrey Yasskin49c5ea42009-11-07 00:00:10 +0000391 JITResolver &getJITResolver() { return Resolver; }
392
393 virtual void startFunction(MachineFunction &F);
394 virtual bool finishFunction(MachineFunction &F);
Eric Christopherea644f72009-11-12 03:12:18 +0000395
Jeffrey Yasskin49c5ea42009-11-07 00:00:10 +0000396 void emitConstantPool(MachineConstantPool *MCP);
397 void initJumpTableInfo(MachineJumpTableInfo *MJTI);
398 void emitJumpTableInfo(MachineJumpTableInfo *MJTI);
Eric Christopherea644f72009-11-12 03:12:18 +0000399
Jeffrey Yasskin49c5ea42009-11-07 00:00:10 +0000400 virtual void startGVStub(const GlobalValue* GV, unsigned StubSize,
401 unsigned Alignment = 1);
402 virtual void startGVStub(const GlobalValue* GV, void *Buffer,
403 unsigned StubSize);
404 virtual void* finishGVStub(const GlobalValue *GV);
405
406 /// allocateSpace - Reserves space in the current block if any, or
407 /// allocate a new one of the given size.
408 virtual void *allocateSpace(uintptr_t Size, unsigned Alignment);
409
410 /// allocateGlobal - Allocate memory for a global. Unlike allocateSpace,
411 /// this method does not allocate memory in the current output buffer,
412 /// because a global may live longer than the current function.
413 virtual void *allocateGlobal(uintptr_t Size, unsigned Alignment);
414
415 virtual void addRelocation(const MachineRelocation &MR) {
416 Relocations.push_back(MR);
417 }
Eric Christopherea644f72009-11-12 03:12:18 +0000418
Jeffrey Yasskin49c5ea42009-11-07 00:00:10 +0000419 virtual void StartMachineBasicBlock(MachineBasicBlock *MBB) {
420 if (MBBLocations.size() <= (unsigned)MBB->getNumber())
421 MBBLocations.resize((MBB->getNumber()+1)*2);
422 MBBLocations[MBB->getNumber()] = getCurrentPCValue();
423 DEBUG(errs() << "JIT: Emitting BB" << MBB->getNumber() << " at ["
424 << (void*) getCurrentPCValue() << "]\n");
425 }
426
427 virtual uintptr_t getConstantPoolEntryAddress(unsigned Entry) const;
428 virtual uintptr_t getJumpTableEntryAddress(unsigned Entry) const;
429
430 virtual uintptr_t getMachineBasicBlockAddress(MachineBasicBlock *MBB) const {
Eric Christopherea644f72009-11-12 03:12:18 +0000431 assert(MBBLocations.size() > (unsigned)MBB->getNumber() &&
Jeffrey Yasskin49c5ea42009-11-07 00:00:10 +0000432 MBBLocations[MBB->getNumber()] && "MBB not emitted!");
433 return MBBLocations[MBB->getNumber()];
434 }
435
436 /// retryWithMoreMemory - Log a retry and deallocate all memory for the
437 /// given function. Increase the minimum allocation size so that we get
438 /// more memory next time.
439 void retryWithMoreMemory(MachineFunction &F);
440
441 /// deallocateMemForFunction - Deallocate all memory for the specified
442 /// function body.
443 void deallocateMemForFunction(const Function *F);
444
445 /// AddStubToCurrentFunction - Mark the current function being JIT'd as
446 /// using the stub at the specified address. Allows
447 /// deallocateMemForFunction to also remove stubs no longer referenced.
448 void AddStubToCurrentFunction(void *Stub);
Eric Christopherea644f72009-11-12 03:12:18 +0000449
Jeffrey Yasskin49c5ea42009-11-07 00:00:10 +0000450 virtual void processDebugLoc(DebugLoc DL, bool BeforePrintingInsn);
451
452 virtual void emitLabel(uint64_t LabelID) {
453 if (LabelLocations.size() <= LabelID)
454 LabelLocations.resize((LabelID+1)*2);
455 LabelLocations[LabelID] = getCurrentPCValue();
456 }
457
458 virtual uintptr_t getLabelAddress(uint64_t LabelID) const {
Eric Christopherea644f72009-11-12 03:12:18 +0000459 assert(LabelLocations.size() > (unsigned)LabelID &&
Jeffrey Yasskin49c5ea42009-11-07 00:00:10 +0000460 LabelLocations[LabelID] && "Label not emitted!");
461 return LabelLocations[LabelID];
462 }
Eric Christopherea644f72009-11-12 03:12:18 +0000463
Jeffrey Yasskin49c5ea42009-11-07 00:00:10 +0000464 virtual void setModuleInfo(MachineModuleInfo* Info) {
465 MMI = Info;
466 if (DE.get()) DE->setModuleInfo(Info);
467 }
468
469 void setMemoryExecutable() {
470 MemMgr->setMemoryExecutable();
471 }
Eric Christopherea644f72009-11-12 03:12:18 +0000472
Jeffrey Yasskin49c5ea42009-11-07 00:00:10 +0000473 JITMemoryManager *getMemMgr() const { return MemMgr; }
474
475 private:
Jeffrey Yasskine63aa1f2009-11-07 08:51:52 +0000476 void *getPointerToGlobal(GlobalValue *GV, void *Reference,
477 bool MayNeedFarStub);
478 void *getPointerToGVIndirectSym(GlobalValue *V, void *Reference);
Jeffrey Yasskin49c5ea42009-11-07 00:00:10 +0000479 unsigned addSizeOfGlobal(const GlobalVariable *GV, unsigned Size);
480 unsigned addSizeOfGlobalsInConstantVal(const Constant *C, unsigned Size);
481 unsigned addSizeOfGlobalsInInitializer(const Constant *Init, unsigned Size);
482 unsigned GetSizeOfGlobalsInBytes(MachineFunction &MF);
483 };
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000484}
485
486JITResolver *JITResolver::TheJITResolver = 0;
487
Jeffrey Yasskin6ddfe5c2009-10-23 22:37:43 +0000488void CallSiteValueMapConfig::onDelete(JITResolverState *JRS, Function *F) {
489 JRS->EraseAllCallSitesPrelocked(F);
490}
491
Evan Cheng6e4b7632008-11-13 21:50:50 +0000492/// getFunctionStubIfAvailable - This returns a pointer to a function stub
493/// if it has already been created.
494void *JITResolver::getFunctionStubIfAvailable(Function *F) {
495 MutexGuard locked(TheJIT->lock);
496
497 // If we already have a stub for this function, recycle it.
Jeffrey Yasskine45e6f92009-10-19 18:49:59 +0000498 return state.getFunctionToStubMap(locked).lookup(F);
Evan Cheng6e4b7632008-11-13 21:50:50 +0000499}
500
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000501/// getFunctionStub - This returns a pointer to a function stub, creating
502/// one on demand as needed.
Nate Begeman165818c2009-03-07 06:41:19 +0000503void *JITResolver::getFunctionStub(Function *F) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000504 MutexGuard locked(TheJIT->lock);
505
506 // If we already have a stub for this function, recycle it.
507 void *&Stub = state.getFunctionToStubMap(locked)[F];
508 if (Stub) return Stub;
509
Jeffrey Yasskin4f6ac2f2009-10-27 20:30:28 +0000510 // Call the lazy resolver function if we are JIT'ing lazily. Otherwise we
511 // must resolve the symbol now.
512 void *Actual = TheJIT->isCompilingLazily()
513 ? (void *)(intptr_t)LazyResolverFn : (void *)0;
514
Nate Begeman165818c2009-03-07 06:41:19 +0000515 // If this is an external declaration, attempt to resolve the address now
516 // to place in the stub.
Dan Gohman0ae39622009-01-05 05:32:42 +0000517 if (F->isDeclaration() && !F->hasNotBeenReadFromBitcode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000518 Actual = TheJIT->getPointerToFunction(F);
519
Dan Gohman0ae39622009-01-05 05:32:42 +0000520 // If we resolved the symbol to a null address (eg. a weak external)
Jeffrey Yasskin35294ef2009-11-09 22:34:19 +0000521 // don't emit a stub. Return a null pointer to the application.
522 if (!Actual) return 0;
Dan Gohman0ae39622009-01-05 05:32:42 +0000523 }
524
Nate Begeman165818c2009-03-07 06:41:19 +0000525 // Codegen a new stub, calling the lazy resolver or the actual address of the
526 // external function, if it was resolved.
Jeffrey Yasskin49c5ea42009-11-07 00:00:10 +0000527 Stub = TheJIT->getJITInfo().emitFunctionStub(F, Actual, JE);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000528
529 if (Actual != (void*)(intptr_t)LazyResolverFn) {
530 // If we are getting the stub for an external function, we really want the
531 // address of the stub in the GlobalAddressMap for the JIT, not the address
532 // of the external function.
533 TheJIT->updateGlobalMapping(F, Stub);
534 }
535
Daniel Dunbar005975c2009-07-25 00:23:56 +0000536 DEBUG(errs() << "JIT: Stub emitted at [" << Stub << "] for function '"
537 << F->getName() << "'\n");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000538
539 // Finally, keep track of the stub-to-Function mapping so that the
540 // JITCompilerFn knows which function to compile!
Jeffrey Yasskine45e6f92009-10-19 18:49:59 +0000541 state.AddCallSite(locked, Stub, F);
Jeffrey Yasskinf9057462009-10-13 21:32:57 +0000542
Nate Begeman165818c2009-03-07 06:41:19 +0000543 // If we are JIT'ing non-lazily but need to call a function that does not
544 // exist yet, add it to the JIT's work list so that we can fill in the stub
545 // address later.
Jeffrey Yasskin4f6ac2f2009-10-27 20:30:28 +0000546 if (!Actual && !TheJIT->isCompilingLazily())
Nate Begeman165818c2009-03-07 06:41:19 +0000547 if (!F->isDeclaration() || F->hasNotBeenReadFromBitcode())
548 TheJIT->addPendingFunction(F);
Jeffrey Yasskinf9057462009-10-13 21:32:57 +0000549
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000550 return Stub;
551}
552
Evan Chengb0ebcb42008-11-10 01:52:24 +0000553/// getGlobalValueIndirectSym - Return a lazy pointer containing the specified
Evan Cheng28e7e162008-01-04 10:46:51 +0000554/// GV address.
Evan Chengb0ebcb42008-11-10 01:52:24 +0000555void *JITResolver::getGlobalValueIndirectSym(GlobalValue *GV, void *GVAddress) {
Evan Cheng28e7e162008-01-04 10:46:51 +0000556 MutexGuard locked(TheJIT->lock);
557
558 // If we already have a stub for this global variable, recycle it.
Evan Chengb0ebcb42008-11-10 01:52:24 +0000559 void *&IndirectSym = state.getGlobalToIndirectSymMap(locked)[GV];
560 if (IndirectSym) return IndirectSym;
Evan Cheng28e7e162008-01-04 10:46:51 +0000561
Evan Cheng221548c2008-11-10 23:26:16 +0000562 // Otherwise, codegen a new indirect symbol.
Evan Chengb0ebcb42008-11-10 01:52:24 +0000563 IndirectSym = TheJIT->getJITInfo().emitGlobalValueIndirectSym(GV, GVAddress,
Jeffrey Yasskin49c5ea42009-11-07 00:00:10 +0000564 JE);
Evan Cheng28e7e162008-01-04 10:46:51 +0000565
Eric Christopherea644f72009-11-12 03:12:18 +0000566 DEBUG(errs() << "JIT: Indirect symbol emitted at [" << IndirectSym
Daniel Dunbar005975c2009-07-25 00:23:56 +0000567 << "] for GV '" << GV->getName() << "'\n");
Evan Cheng28e7e162008-01-04 10:46:51 +0000568
Evan Chengb0ebcb42008-11-10 01:52:24 +0000569 return IndirectSym;
Evan Cheng28e7e162008-01-04 10:46:51 +0000570}
571
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000572/// getExternalFunctionStub - Return a stub for the function at the
573/// specified address, created lazily on demand.
574void *JITResolver::getExternalFunctionStub(void *FnAddr) {
575 // If we already have a stub for this function, recycle it.
576 void *&Stub = ExternalFnToStubMap[FnAddr];
577 if (Stub) return Stub;
578
Jeffrey Yasskin49c5ea42009-11-07 00:00:10 +0000579 Stub = TheJIT->getJITInfo().emitFunctionStub(0, FnAddr, JE);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000580
Chris Lattner2b40c562009-08-23 06:35:02 +0000581 DEBUG(errs() << "JIT: Stub emitted at [" << Stub
582 << "] for external function at '" << FnAddr << "'\n");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000583 return Stub;
584}
585
586unsigned JITResolver::getGOTIndexForAddr(void* addr) {
587 unsigned idx = revGOTMap[addr];
588 if (!idx) {
589 idx = ++nextGOTIndex;
590 revGOTMap[addr] = idx;
Chris Lattner2b40c562009-08-23 06:35:02 +0000591 DEBUG(errs() << "JIT: Adding GOT entry " << idx << " for addr ["
592 << addr << "]\n");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000593 }
594 return idx;
595}
596
Nate Begeman7b1a8472009-02-18 08:31:02 +0000597void JITResolver::getRelocatableGVs(SmallVectorImpl<GlobalValue*> &GVs,
598 SmallVectorImpl<void*> &Ptrs) {
599 MutexGuard locked(TheJIT->lock);
Eric Christopherea644f72009-11-12 03:12:18 +0000600
Jeffrey Yasskine45e6f92009-10-19 18:49:59 +0000601 const FunctionToStubMapTy &FM = state.getFunctionToStubMap(locked);
Nick Lewycky924fc912009-04-27 05:09:44 +0000602 GlobalToIndirectSymMapTy &GM = state.getGlobalToIndirectSymMap(locked);
Eric Christopherea644f72009-11-12 03:12:18 +0000603
Jeffrey Yasskine45e6f92009-10-19 18:49:59 +0000604 for (FunctionToStubMapTy::const_iterator i = FM.begin(), e = FM.end();
605 i != e; ++i){
Nate Begeman7b1a8472009-02-18 08:31:02 +0000606 Function *F = i->first;
607 if (F->isDeclaration() && F->hasExternalLinkage()) {
608 GVs.push_back(i->first);
609 Ptrs.push_back(i->second);
610 }
611 }
Nick Lewycky924fc912009-04-27 05:09:44 +0000612 for (GlobalToIndirectSymMapTy::iterator i = GM.begin(), e = GM.end();
Nate Begeman7b1a8472009-02-18 08:31:02 +0000613 i != e; ++i) {
614 GVs.push_back(i->first);
615 Ptrs.push_back(i->second);
616 }
617}
618
Nate Begemana5645962009-03-05 06:34:37 +0000619GlobalValue *JITResolver::invalidateStub(void *Stub) {
620 MutexGuard locked(TheJIT->lock);
Jeffrey Yasskine45e6f92009-10-19 18:49:59 +0000621
Nick Lewycky924fc912009-04-27 05:09:44 +0000622 GlobalToIndirectSymMapTy &GM = state.getGlobalToIndirectSymMap(locked);
Jeffrey Yasskine45e6f92009-10-19 18:49:59 +0000623
Nate Begemana5645962009-03-05 06:34:37 +0000624 // Look up the cheap way first, to see if it's a function stub we are
625 // invalidating. If so, remove it from both the forward and reverse maps.
Jeffrey Yasskine45e6f92009-10-19 18:49:59 +0000626 if (Function *F = state.EraseStub(locked, Stub)) {
Nate Begemana5645962009-03-05 06:34:37 +0000627 return F;
628 }
Jeffrey Yasskine45e6f92009-10-19 18:49:59 +0000629
Nate Begemand1718c42009-03-11 07:03:43 +0000630 // Otherwise, it might be an indirect symbol stub. Find it and remove it.
Nick Lewycky924fc912009-04-27 05:09:44 +0000631 for (GlobalToIndirectSymMapTy::iterator i = GM.begin(), e = GM.end();
Nate Begemana5645962009-03-05 06:34:37 +0000632 i != e; ++i) {
633 if (i->second != Stub)
634 continue;
635 GlobalValue *GV = i->first;
636 GM.erase(i);
637 return GV;
638 }
Eric Christopherea644f72009-11-12 03:12:18 +0000639
Nate Begemand1718c42009-03-11 07:03:43 +0000640 // Lastly, check to see if it's in the ExternalFnToStubMap.
641 for (std::map<void *, void *>::iterator i = ExternalFnToStubMap.begin(),
642 e = ExternalFnToStubMap.end(); i != e; ++i) {
643 if (i->second != Stub)
644 continue;
645 ExternalFnToStubMap.erase(i);
646 break;
647 }
Eric Christopherea644f72009-11-12 03:12:18 +0000648
Nate Begemana5645962009-03-05 06:34:37 +0000649 return 0;
650}
651
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000652/// JITCompilerFn - This function is called when a lazy compilation stub has
653/// been entered. It looks up which function this stub corresponds to, compiles
654/// it if necessary, then returns the resultant function pointer.
655void *JITResolver::JITCompilerFn(void *Stub) {
656 JITResolver &JR = *TheJITResolver;
Eric Christopherea644f72009-11-12 03:12:18 +0000657
Nicolas Geoffray7bf33432008-10-03 07:27:08 +0000658 Function* F = 0;
659 void* ActualPtr = 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000660
Nicolas Geoffray7bf33432008-10-03 07:27:08 +0000661 {
662 // Only lock for getting the Function. The call getPointerToFunction made
663 // in this function might trigger function materializing, which requires
664 // JIT lock to be unlocked.
665 MutexGuard locked(TheJIT->lock);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000666
Jeffrey Yasskine45e6f92009-10-19 18:49:59 +0000667 // The address given to us for the stub may not be exactly right, it might
668 // be a little bit after the stub. As such, use upper_bound to find it.
669 pair<void*, Function*> I =
670 JR.state.LookupFunctionFromCallSite(locked, Stub);
671 F = I.second;
672 ActualPtr = I.first;
Nicolas Geoffray7bf33432008-10-03 07:27:08 +0000673 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000674
675 // If we have already code generated the function, just return the address.
676 void *Result = TheJIT->getPointerToGlobalIfAvailable(F);
Eric Christopherea644f72009-11-12 03:12:18 +0000677
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000678 if (!Result) {
679 // Otherwise we don't have it, do lazy compilation now.
Eric Christopherea644f72009-11-12 03:12:18 +0000680
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000681 // If lazy compilation is disabled, emit a useful error message and abort.
Jeffrey Yasskin4f6ac2f2009-10-27 20:30:28 +0000682 if (!TheJIT->isCompilingLazily()) {
Edwin Törökced9ff82009-07-11 13:10:19 +0000683 llvm_report_error("LLVM JIT requested to do lazy compilation of function '"
684 + F->getName() + "' when lazy compiles are disabled!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000685 }
Eric Christopherea644f72009-11-12 03:12:18 +0000686
Daniel Dunbar005975c2009-07-25 00:23:56 +0000687 DEBUG(errs() << "JIT: Lazily resolving function '" << F->getName()
688 << "' In stub ptr = " << Stub << " actual ptr = "
689 << ActualPtr << "\n");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000690
691 Result = TheJIT->getPointerToFunction(F);
692 }
Jeffrey Yasskine45e6f92009-10-19 18:49:59 +0000693
694 // Reacquire the lock to update the GOT map.
Nicolas Geoffray7bf33432008-10-03 07:27:08 +0000695 MutexGuard locked(TheJIT->lock);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000696
Jeffrey Yasskine45e6f92009-10-19 18:49:59 +0000697 // We might like to remove the call site from the CallSiteToFunction map, but
698 // we can't do that! Multiple threads could be stuck, waiting to acquire the
699 // lock above. As soon as the 1st function finishes compiling the function,
700 // the next one will be released, and needs to be able to find the function it
701 // needs to call.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000702
703 // FIXME: We could rewrite all references to this stub if we knew them.
704
705 // What we will do is set the compiled function address to map to the
706 // same GOT entry as the stub so that later clients may update the GOT
707 // if they see it still using the stub address.
708 // Note: this is done so the Resolver doesn't have to manage GOT memory
709 // Do this without allocating map space if the target isn't using a GOT
710 if(JR.revGOTMap.find(Stub) != JR.revGOTMap.end())
711 JR.revGOTMap[Result] = JR.revGOTMap[Stub];
712
713 return Result;
714}
715
Chris Lattnerf50e3572008-04-04 05:51:42 +0000716//===----------------------------------------------------------------------===//
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000717// JITEmitter code.
718//
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000719void *JITEmitter::getPointerToGlobal(GlobalValue *V, void *Reference,
Jeffrey Yasskine63aa1f2009-11-07 08:51:52 +0000720 bool MayNeedFarStub) {
Nate Begeman7b1a8472009-02-18 08:31:02 +0000721 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(V))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000722 return TheJIT->getOrEmitGlobalVariable(GV);
Nate Begeman7b1a8472009-02-18 08:31:02 +0000723
Chris Lattner44d8ea72008-06-25 20:21:35 +0000724 if (GlobalAlias *GA = dyn_cast<GlobalAlias>(V))
Anton Korobeynikovc7b90912008-09-09 20:05:04 +0000725 return TheJIT->getPointerToGlobal(GA->resolveAliasedGlobal(false));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000726
727 // If we have already compiled the function, return a pointer to its body.
728 Function *F = cast<Function>(V);
Eric Christopherea644f72009-11-12 03:12:18 +0000729
730 void *FnStub = Resolver.getFunctionStubIfAvailable(F);
731 if (FnStub) {
732 // Return the function stub if it's already created. We do this first
733 // so that we're returning the same address for the function as any
734 // previous call.
735 AddStubToCurrentFunction(FnStub);
736 return FnStub;
Nate Begemana5645962009-03-05 06:34:37 +0000737 }
Eric Christopherea644f72009-11-12 03:12:18 +0000738
739 // Otherwise if we have code, go ahead and return that.
740 void *ResultPtr = TheJIT->getPointerToGlobalIfAvailable(F);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000741 if (ResultPtr) return ResultPtr;
742
Nate Begeman7b1a8472009-02-18 08:31:02 +0000743 // If this is an external function pointer, we can force the JIT to
Jeffrey Yasskin35294ef2009-11-09 22:34:19 +0000744 // 'compile' it, which really just adds it to the map.
Nate Begeman165818c2009-03-07 06:41:19 +0000745 if (F->isDeclaration() && !F->hasNotBeenReadFromBitcode() &&
Jeffrey Yasskin35294ef2009-11-09 22:34:19 +0000746 !MayNeedFarStub)
Nate Begeman7b1a8472009-02-18 08:31:02 +0000747 return TheJIT->getPointerToFunction(F);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000748
Nate Begeman165818c2009-03-07 06:41:19 +0000749 // Otherwise, we have to emit a stub.
Nate Begemana5645962009-03-05 06:34:37 +0000750 void *StubAddr = Resolver.getFunctionStub(F);
751
752 // Add the stub to the current function's list of referenced stubs, so we can
Nate Begeman165818c2009-03-07 06:41:19 +0000753 // deallocate them if the current function is ever freed. It's possible to
754 // return null from getFunctionStub in the case of a weak extern that fails
755 // to resolve.
756 if (StubAddr)
757 AddStubToCurrentFunction(StubAddr);
758
Nate Begemana5645962009-03-05 06:34:37 +0000759 return StubAddr;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000760}
761
Jeffrey Yasskine63aa1f2009-11-07 08:51:52 +0000762void *JITEmitter::getPointerToGVIndirectSym(GlobalValue *V, void *Reference) {
Nate Begemana5645962009-03-05 06:34:37 +0000763 // Make sure GV is emitted first, and create a stub containing the fully
764 // resolved address.
Jeffrey Yasskine63aa1f2009-11-07 08:51:52 +0000765 void *GVAddress = getPointerToGlobal(V, Reference, false);
Nate Begemana5645962009-03-05 06:34:37 +0000766 void *StubAddr = Resolver.getGlobalValueIndirectSym(V, GVAddress);
Eric Christopherea644f72009-11-12 03:12:18 +0000767
Nate Begemana5645962009-03-05 06:34:37 +0000768 // Add the stub to the current function's list of referenced stubs, so we can
769 // deallocate them if the current function is ever freed.
770 AddStubToCurrentFunction(StubAddr);
Eric Christopherea644f72009-11-12 03:12:18 +0000771
Nate Begemana5645962009-03-05 06:34:37 +0000772 return StubAddr;
773}
774
775void JITEmitter::AddStubToCurrentFunction(void *StubAddr) {
Nate Begemana5645962009-03-05 06:34:37 +0000776 assert(CurFn && "Stub added to current function, but current function is 0!");
Jeffrey Yasskinf9057462009-10-13 21:32:57 +0000777
Nate Begemana5645962009-03-05 06:34:37 +0000778 SmallVectorImpl<void*> &StubsUsed = CurFnStubUses[CurFn];
779 StubsUsed.push_back(StubAddr);
780
781 SmallPtrSet<const Function *, 1> &FnRefs = StubFnRefs[StubAddr];
782 FnRefs.insert(CurFn);
Evan Cheng28e7e162008-01-04 10:46:51 +0000783}
784
Devang Patelde8d48b2009-10-06 03:04:58 +0000785void JITEmitter::processDebugLoc(DebugLoc DL, bool BeforePrintingInsn) {
Jeffrey Yasskin8ad296e2009-07-16 21:07:26 +0000786 if (!DL.isUnknown()) {
787 DebugLocTuple CurDLT = EmissionDetails.MF->getDebugLocTuple(DL);
788
Devang Patelde8d48b2009-10-06 03:04:58 +0000789 if (BeforePrintingInsn) {
Devang Patelfc1df342009-10-13 23:28:53 +0000790 if (CurDLT.Scope != 0 && PrevDLT != CurDLT) {
Devang Patelde8d48b2009-10-06 03:04:58 +0000791 JITEvent_EmittedFunctionDetails::LineStart NextLine;
792 NextLine.Address = getCurrentPCValue();
793 NextLine.Loc = DL;
794 EmissionDetails.LineStarts.push_back(NextLine);
795 }
Eric Christopherea644f72009-11-12 03:12:18 +0000796
Devang Patelde8d48b2009-10-06 03:04:58 +0000797 PrevDLT = CurDLT;
Jeffrey Yasskin8ad296e2009-07-16 21:07:26 +0000798 }
Jeffrey Yasskin8ad296e2009-07-16 21:07:26 +0000799 }
800}
801
Evan Cheng68c18682009-03-13 07:51:59 +0000802static unsigned GetConstantPoolSizeInBytes(MachineConstantPool *MCP,
803 const TargetData *TD) {
Nicolas Geoffray68847972008-04-18 20:59:31 +0000804 const std::vector<MachineConstantPoolEntry> &Constants = MCP->getConstants();
805 if (Constants.empty()) return 0;
806
Evan Cheng68c18682009-03-13 07:51:59 +0000807 unsigned Size = 0;
808 for (unsigned i = 0, e = Constants.size(); i != e; ++i) {
809 MachineConstantPoolEntry CPE = Constants[i];
810 unsigned AlignMask = CPE.getAlignment() - 1;
811 Size = (Size + AlignMask) & ~AlignMask;
812 const Type *Ty = CPE.getType();
Duncan Sandsec4f97d2009-05-09 07:06:46 +0000813 Size += TD->getTypeAllocSize(Ty);
Evan Cheng68c18682009-03-13 07:51:59 +0000814 }
Nicolas Geoffray68847972008-04-18 20:59:31 +0000815 return Size;
816}
817
818static unsigned GetJumpTableSizeInBytes(MachineJumpTableInfo *MJTI) {
819 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
820 if (JT.empty()) return 0;
Eric Christopherea644f72009-11-12 03:12:18 +0000821
Nicolas Geoffray68847972008-04-18 20:59:31 +0000822 unsigned NumEntries = 0;
823 for (unsigned i = 0, e = JT.size(); i != e; ++i)
824 NumEntries += JT[i].MBBs.size();
825
826 unsigned EntrySize = MJTI->getEntrySize();
827
828 return NumEntries * EntrySize;
829}
830
Nicolas Geoffray5a80b292008-04-20 23:39:44 +0000831static uintptr_t RoundUpToAlign(uintptr_t Size, unsigned Alignment) {
Nicolas Geoffray68847972008-04-18 20:59:31 +0000832 if (Alignment == 0) Alignment = 1;
Eric Christopherea644f72009-11-12 03:12:18 +0000833 // Since we do not know where the buffer will be allocated, be pessimistic.
Nicolas Geoffray5a80b292008-04-20 23:39:44 +0000834 return Size + Alignment;
Nicolas Geoffray68847972008-04-18 20:59:31 +0000835}
Evan Cheng28e7e162008-01-04 10:46:51 +0000836
Dale Johannesen0ba4a0e2008-08-07 01:30:15 +0000837/// addSizeOfGlobal - add the size of the global (plus any alignment padding)
838/// into the running total Size.
839
840unsigned JITEmitter::addSizeOfGlobal(const GlobalVariable *GV, unsigned Size) {
841 const Type *ElTy = GV->getType()->getElementType();
Duncan Sandsec4f97d2009-05-09 07:06:46 +0000842 size_t GVSize = (size_t)TheJIT->getTargetData()->getTypeAllocSize(ElTy);
Eric Christopherea644f72009-11-12 03:12:18 +0000843 size_t GVAlign =
Dale Johannesen0ba4a0e2008-08-07 01:30:15 +0000844 (size_t)TheJIT->getTargetData()->getPreferredAlignment(GV);
Chris Lattner2b40c562009-08-23 06:35:02 +0000845 DEBUG(errs() << "JIT: Adding in size " << GVSize << " alignment " << GVAlign);
Dale Johannesen0ba4a0e2008-08-07 01:30:15 +0000846 DEBUG(GV->dump());
847 // Assume code section ends with worst possible alignment, so first
848 // variable needs maximal padding.
849 if (Size==0)
850 Size = 1;
851 Size = ((Size+GVAlign-1)/GVAlign)*GVAlign;
852 Size += GVSize;
853 return Size;
854}
855
856/// addSizeOfGlobalsInConstantVal - find any globals that we haven't seen yet
857/// but are referenced from the constant; put them in GVSet and add their
858/// size into the running total Size.
859
Eric Christopherea644f72009-11-12 03:12:18 +0000860unsigned JITEmitter::addSizeOfGlobalsInConstantVal(const Constant *C,
Dale Johannesen0ba4a0e2008-08-07 01:30:15 +0000861 unsigned Size) {
862 // If its undefined, return the garbage.
863 if (isa<UndefValue>(C))
864 return Size;
865
866 // If the value is a ConstantExpr
867 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
868 Constant *Op0 = CE->getOperand(0);
869 switch (CE->getOpcode()) {
870 case Instruction::GetElementPtr:
871 case Instruction::Trunc:
872 case Instruction::ZExt:
873 case Instruction::SExt:
874 case Instruction::FPTrunc:
875 case Instruction::FPExt:
876 case Instruction::UIToFP:
877 case Instruction::SIToFP:
878 case Instruction::FPToUI:
879 case Instruction::FPToSI:
880 case Instruction::PtrToInt:
881 case Instruction::IntToPtr:
882 case Instruction::BitCast: {
883 Size = addSizeOfGlobalsInConstantVal(Op0, Size);
884 break;
885 }
886 case Instruction::Add:
Dan Gohman7ce405e2009-06-04 22:49:04 +0000887 case Instruction::FAdd:
Dale Johannesen0ba4a0e2008-08-07 01:30:15 +0000888 case Instruction::Sub:
Dan Gohman7ce405e2009-06-04 22:49:04 +0000889 case Instruction::FSub:
Dale Johannesen0ba4a0e2008-08-07 01:30:15 +0000890 case Instruction::Mul:
Dan Gohman7ce405e2009-06-04 22:49:04 +0000891 case Instruction::FMul:
Dale Johannesen0ba4a0e2008-08-07 01:30:15 +0000892 case Instruction::UDiv:
893 case Instruction::SDiv:
894 case Instruction::URem:
895 case Instruction::SRem:
896 case Instruction::And:
897 case Instruction::Or:
898 case Instruction::Xor: {
899 Size = addSizeOfGlobalsInConstantVal(Op0, Size);
900 Size = addSizeOfGlobalsInConstantVal(CE->getOperand(1), Size);
901 break;
902 }
903 default: {
Edwin Törökced9ff82009-07-11 13:10:19 +0000904 std::string msg;
905 raw_string_ostream Msg(msg);
906 Msg << "ConstantExpr not handled: " << *CE;
907 llvm_report_error(Msg.str());
Dale Johannesen0ba4a0e2008-08-07 01:30:15 +0000908 }
909 }
910 }
911
912 if (C->getType()->getTypeID() == Type::PointerTyID)
913 if (const GlobalVariable* GV = dyn_cast<GlobalVariable>(C))
Evan Cheng68e5fc32008-11-07 09:02:17 +0000914 if (GVSet.insert(GV))
Dale Johannesen0ba4a0e2008-08-07 01:30:15 +0000915 Size = addSizeOfGlobal(GV, Size);
916
917 return Size;
918}
919
920/// addSizeOfGLobalsInInitializer - handle any globals that we haven't seen yet
921/// but are referenced from the given initializer.
922
Eric Christopherea644f72009-11-12 03:12:18 +0000923unsigned JITEmitter::addSizeOfGlobalsInInitializer(const Constant *Init,
Dale Johannesen0ba4a0e2008-08-07 01:30:15 +0000924 unsigned Size) {
925 if (!isa<UndefValue>(Init) &&
926 !isa<ConstantVector>(Init) &&
927 !isa<ConstantAggregateZero>(Init) &&
928 !isa<ConstantArray>(Init) &&
929 !isa<ConstantStruct>(Init) &&
930 Init->getType()->isFirstClassType())
931 Size = addSizeOfGlobalsInConstantVal(Init, Size);
932 return Size;
933}
934
935/// GetSizeOfGlobalsInBytes - walk the code for the function, looking for
936/// globals; then walk the initializers of those globals looking for more.
937/// If their size has not been considered yet, add it into the running total
938/// Size.
939
940unsigned JITEmitter::GetSizeOfGlobalsInBytes(MachineFunction &MF) {
941 unsigned Size = 0;
942 GVSet.clear();
943
Eric Christopherea644f72009-11-12 03:12:18 +0000944 for (MachineFunction::iterator MBB = MF.begin(), E = MF.end();
Dale Johannesen0ba4a0e2008-08-07 01:30:15 +0000945 MBB != E; ++MBB) {
946 for (MachineBasicBlock::const_iterator I = MBB->begin(), E = MBB->end();
947 I != E; ++I) {
948 const TargetInstrDesc &Desc = I->getDesc();
949 const MachineInstr &MI = *I;
950 unsigned NumOps = Desc.getNumOperands();
951 for (unsigned CurOp = 0; CurOp < NumOps; CurOp++) {
952 const MachineOperand &MO = MI.getOperand(CurOp);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000953 if (MO.isGlobal()) {
Dale Johannesen0ba4a0e2008-08-07 01:30:15 +0000954 GlobalValue* V = MO.getGlobal();
955 const GlobalVariable *GV = dyn_cast<const GlobalVariable>(V);
956 if (!GV)
957 continue;
958 // If seen in previous function, it will have an entry here.
959 if (TheJIT->getPointerToGlobalIfAvailable(GV))
960 continue;
961 // If seen earlier in this function, it will have an entry here.
962 // FIXME: it should be possible to combine these tables, by
963 // assuming the addresses of the new globals in this module
964 // start at 0 (or something) and adjusting them after codegen
965 // complete. Another possibility is to grab a marker bit in GV.
Evan Cheng68e5fc32008-11-07 09:02:17 +0000966 if (GVSet.insert(GV))
Dale Johannesen0ba4a0e2008-08-07 01:30:15 +0000967 // A variable as yet unseen. Add in its size.
968 Size = addSizeOfGlobal(GV, Size);
969 }
970 }
971 }
972 }
Chris Lattner2b40c562009-08-23 06:35:02 +0000973 DEBUG(errs() << "JIT: About to look through initializers\n");
Dale Johannesen0ba4a0e2008-08-07 01:30:15 +0000974 // Look for more globals that are referenced only from initializers.
975 // GVSet.end is computed each time because the set can grow as we go.
Eric Christopherea644f72009-11-12 03:12:18 +0000976 for (SmallPtrSet<const GlobalVariable *, 8>::iterator I = GVSet.begin();
Dale Johannesen0ba4a0e2008-08-07 01:30:15 +0000977 I != GVSet.end(); I++) {
978 const GlobalVariable* GV = *I;
979 if (GV->hasInitializer())
980 Size = addSizeOfGlobalsInInitializer(GV->getInitializer(), Size);
981 }
982
983 return Size;
984}
985
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000986void JITEmitter::startFunction(MachineFunction &F) {
Daniel Dunbar005975c2009-07-25 00:23:56 +0000987 DEBUG(errs() << "JIT: Starting CodeGen of Function "
988 << F.getFunction()->getName() << "\n");
Evan Chengd6599362008-11-06 17:46:04 +0000989
Nicolas Geoffray68847972008-04-18 20:59:31 +0000990 uintptr_t ActualSize = 0;
Jim Grosbach724b1812008-10-03 16:17:20 +0000991 // Set the memory writable, if it's not already
992 MemMgr->setMemoryWritable();
Nicolas Geoffrayf748af22008-04-20 17:44:19 +0000993 if (MemMgr->NeedsExactSize()) {
Chris Lattner2b40c562009-08-23 06:35:02 +0000994 DEBUG(errs() << "JIT: ExactSize\n");
Nicolas Geoffray68847972008-04-18 20:59:31 +0000995 const TargetInstrInfo* TII = F.getTarget().getInstrInfo();
996 MachineJumpTableInfo *MJTI = F.getJumpTableInfo();
997 MachineConstantPool *MCP = F.getConstantPool();
Eric Christopherea644f72009-11-12 03:12:18 +0000998
Nicolas Geoffray68847972008-04-18 20:59:31 +0000999 // Ensure the constant pool/jump table info is at least 4-byte aligned.
Nicolas Geoffray5a80b292008-04-20 23:39:44 +00001000 ActualSize = RoundUpToAlign(ActualSize, 16);
Eric Christopherea644f72009-11-12 03:12:18 +00001001
Nicolas Geoffray68847972008-04-18 20:59:31 +00001002 // Add the alignment of the constant pool
Evan Cheng68c18682009-03-13 07:51:59 +00001003 ActualSize = RoundUpToAlign(ActualSize, MCP->getConstantPoolAlignment());
Nicolas Geoffray68847972008-04-18 20:59:31 +00001004
1005 // Add the constant pool size
Evan Cheng68c18682009-03-13 07:51:59 +00001006 ActualSize += GetConstantPoolSizeInBytes(MCP, TheJIT->getTargetData());
Nicolas Geoffray68847972008-04-18 20:59:31 +00001007
1008 // Add the aligment of the jump table info
Nicolas Geoffray5a80b292008-04-20 23:39:44 +00001009 ActualSize = RoundUpToAlign(ActualSize, MJTI->getAlignment());
Nicolas Geoffray68847972008-04-18 20:59:31 +00001010
1011 // Add the jump table size
1012 ActualSize += GetJumpTableSizeInBytes(MJTI);
Eric Christopherea644f72009-11-12 03:12:18 +00001013
Nicolas Geoffray68847972008-04-18 20:59:31 +00001014 // Add the alignment for the function
Nicolas Geoffray5a80b292008-04-20 23:39:44 +00001015 ActualSize = RoundUpToAlign(ActualSize,
1016 std::max(F.getFunction()->getAlignment(), 8U));
Nicolas Geoffray68847972008-04-18 20:59:31 +00001017
1018 // Add the function size
1019 ActualSize += TII->GetFunctionSizeInBytes(F);
Dale Johannesen0ba4a0e2008-08-07 01:30:15 +00001020
Chris Lattner2b40c562009-08-23 06:35:02 +00001021 DEBUG(errs() << "JIT: ActualSize before globals " << ActualSize << "\n");
Dale Johannesen0ba4a0e2008-08-07 01:30:15 +00001022 // Add the size of the globals that will be allocated after this function.
1023 // These are all the ones referenced from this function that were not
1024 // previously allocated.
1025 ActualSize += GetSizeOfGlobalsInBytes(F);
Chris Lattner2b40c562009-08-23 06:35:02 +00001026 DEBUG(errs() << "JIT: ActualSize after globals " << ActualSize << "\n");
Reid Klecknercc492292009-07-23 21:46:56 +00001027 } else if (SizeEstimate > 0) {
1028 // SizeEstimate will be non-zero on reallocation attempts.
1029 ActualSize = SizeEstimate;
Nicolas Geoffray68847972008-04-18 20:59:31 +00001030 }
1031
Chris Lattnerc8ad39c2007-12-05 23:39:57 +00001032 BufferBegin = CurBufferPtr = MemMgr->startFunctionBody(F.getFunction(),
1033 ActualSize);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001034 BufferEnd = BufferBegin+ActualSize;
Jeffrey Yasskin2512e352009-10-20 18:13:21 +00001035 EmittedFunctions[F.getFunction()].FunctionBody = BufferBegin;
1036
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001037 // Ensure the constant pool/jump table info is at least 4-byte aligned.
1038 emitAlignment(16);
1039
1040 emitConstantPool(F.getConstantPool());
1041 initJumpTableInfo(F.getJumpTableInfo());
1042
1043 // About to start emitting the machine code for the function.
1044 emitAlignment(std::max(F.getFunction()->getAlignment(), 8U));
1045 TheJIT->updateGlobalMapping(F.getFunction(), CurBufferPtr);
Jeffrey Yasskin1291fce62009-10-27 00:03:05 +00001046 EmittedFunctions[F.getFunction()].Code = CurBufferPtr;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001047
1048 MBBLocations.clear();
Jeffrey Yasskin8ad296e2009-07-16 21:07:26 +00001049
1050 EmissionDetails.MF = &F;
1051 EmissionDetails.LineStarts.clear();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001052}
1053
1054bool JITEmitter::finishFunction(MachineFunction &F) {
1055 if (CurBufferPtr == BufferEnd) {
Reid Klecknercc492292009-07-23 21:46:56 +00001056 // We must call endFunctionBody before retrying, because
1057 // deallocateMemForFunction requires it.
1058 MemMgr->endFunctionBody(F.getFunction(), BufferBegin, CurBufferPtr);
1059 retryWithMoreMemory(F);
1060 return true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001061 }
Reid Klecknercc492292009-07-23 21:46:56 +00001062
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001063 emitJumpTableInfo(F.getJumpTableInfo());
Reid Klecknercc492292009-07-23 21:46:56 +00001064
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001065 // FnStart is the start of the text, not the start of the constant pool and
1066 // other per-function data.
Bruno Cardoso Lopes214ae972009-06-04 00:15:51 +00001067 uint8_t *FnStart =
1068 (uint8_t *)TheJIT->getPointerToGlobalIfAvailable(F.getFunction());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001069
Argiris Kirtzidisb9e97bc2009-04-30 23:01:58 +00001070 // FnEnd is the end of the function's machine code.
Bruno Cardoso Lopes214ae972009-06-04 00:15:51 +00001071 uint8_t *FnEnd = CurBufferPtr;
Argiris Kirtzidisb9e97bc2009-04-30 23:01:58 +00001072
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001073 if (!Relocations.empty()) {
Nate Begemana5645962009-03-05 06:34:37 +00001074 CurFn = F.getFunction();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001075 NumRelos += Relocations.size();
1076
1077 // Resolve the relocations to concrete pointers.
1078 for (unsigned i = 0, e = Relocations.size(); i != e; ++i) {
1079 MachineRelocation &MR = Relocations[i];
Evan Cheng1cf55bb2008-11-03 07:14:02 +00001080 void *ResultPtr = 0;
Evan Chengc5fe01b2008-10-29 23:54:46 +00001081 if (!MR.letTargetResolve()) {
Evan Cheng2976cd12008-11-08 07:37:34 +00001082 if (MR.isExternalSymbol()) {
Dan Gohman0ae39622009-01-05 05:32:42 +00001083 ResultPtr = TheJIT->getPointerToNamedFunction(MR.getExternalSymbol(),
1084 false);
Chris Lattner2b40c562009-08-23 06:35:02 +00001085 DEBUG(errs() << "JIT: Map \'" << MR.getExternalSymbol() << "\' to ["
Eric Christopherea644f72009-11-12 03:12:18 +00001086 << ResultPtr << "]\n");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001087
Evan Chengc5fe01b2008-10-29 23:54:46 +00001088 // If the target REALLY wants a stub for this function, emit it now.
Jeffrey Yasskine63aa1f2009-11-07 08:51:52 +00001089 if (MR.mayNeedFarStub()) {
Jeffrey Yasskin35294ef2009-11-09 22:34:19 +00001090 ResultPtr = Resolver.getExternalFunctionStub(ResultPtr);
Nate Begemand1718c42009-03-11 07:03:43 +00001091 }
Evan Chengc5fe01b2008-10-29 23:54:46 +00001092 } else if (MR.isGlobalValue()) {
1093 ResultPtr = getPointerToGlobal(MR.getGlobalValue(),
1094 BufferBegin+MR.getMachineCodeOffset(),
Jeffrey Yasskine63aa1f2009-11-07 08:51:52 +00001095 MR.mayNeedFarStub());
Evan Chengb0ebcb42008-11-10 01:52:24 +00001096 } else if (MR.isIndirectSymbol()) {
Jeffrey Yasskine63aa1f2009-11-07 08:51:52 +00001097 ResultPtr = getPointerToGVIndirectSym(
1098 MR.getGlobalValue(), BufferBegin+MR.getMachineCodeOffset());
Evan Chengc5fe01b2008-10-29 23:54:46 +00001099 } else if (MR.isBasicBlock()) {
1100 ResultPtr = (void*)getMachineBasicBlockAddress(MR.getBasicBlock());
1101 } else if (MR.isConstantPoolIndex()) {
1102 ResultPtr = (void*)getConstantPoolEntryAddress(MR.getConstantPoolIndex());
1103 } else {
1104 assert(MR.isJumpTableIndex());
1105 ResultPtr=(void*)getJumpTableEntryAddress(MR.getJumpTableIndex());
1106 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001107
Evan Chengc5fe01b2008-10-29 23:54:46 +00001108 MR.setResultPointer(ResultPtr);
1109 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001110
1111 // if we are managing the GOT and the relocation wants an index,
1112 // give it one
Chris Lattnerc8ad39c2007-12-05 23:39:57 +00001113 if (MR.isGOTRelative() && MemMgr->isManagingGOT()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001114 unsigned idx = Resolver.getGOTIndexForAddr(ResultPtr);
1115 MR.setGOTIndex(idx);
Chris Lattnerc8ad39c2007-12-05 23:39:57 +00001116 if (((void**)MemMgr->getGOTBase())[idx] != ResultPtr) {
Chris Lattner2b40c562009-08-23 06:35:02 +00001117 DEBUG(errs() << "JIT: GOT was out of date for " << ResultPtr
1118 << " pointing at " << ((void**)MemMgr->getGOTBase())[idx]
1119 << "\n");
Chris Lattnerc8ad39c2007-12-05 23:39:57 +00001120 ((void**)MemMgr->getGOTBase())[idx] = ResultPtr;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001121 }
1122 }
1123 }
1124
Nate Begemana5645962009-03-05 06:34:37 +00001125 CurFn = 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001126 TheJIT->getJITInfo().relocate(BufferBegin, &Relocations[0],
Chris Lattnerc8ad39c2007-12-05 23:39:57 +00001127 Relocations.size(), MemMgr->getGOTBase());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001128 }
1129
1130 // Update the GOT entry for F to point to the new code.
Chris Lattnerc8ad39c2007-12-05 23:39:57 +00001131 if (MemMgr->isManagingGOT()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001132 unsigned idx = Resolver.getGOTIndexForAddr((void*)BufferBegin);
Chris Lattnerc8ad39c2007-12-05 23:39:57 +00001133 if (((void**)MemMgr->getGOTBase())[idx] != (void*)BufferBegin) {
Chris Lattner2b40c562009-08-23 06:35:02 +00001134 DEBUG(errs() << "JIT: GOT was out of date for " << (void*)BufferBegin
1135 << " pointing at " << ((void**)MemMgr->getGOTBase())[idx]
1136 << "\n");
Chris Lattnerc8ad39c2007-12-05 23:39:57 +00001137 ((void**)MemMgr->getGOTBase())[idx] = (void*)BufferBegin;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001138 }
1139 }
1140
Argiris Kirtzidisb9e97bc2009-04-30 23:01:58 +00001141 // CurBufferPtr may have moved beyond FnEnd, due to memory allocation for
1142 // global variables that were referenced in the relocations.
1143 MemMgr->endFunctionBody(F.getFunction(), BufferBegin, CurBufferPtr);
Evan Cheng6e561c72008-12-10 02:32:19 +00001144
1145 if (CurBufferPtr == BufferEnd) {
Reid Klecknercc492292009-07-23 21:46:56 +00001146 retryWithMoreMemory(F);
1147 return true;
1148 } else {
1149 // Now that we've succeeded in emitting the function, reset the
1150 // SizeEstimate back down to zero.
1151 SizeEstimate = 0;
Evan Cheng6e561c72008-12-10 02:32:19 +00001152 }
1153
Nuno Lopes1ab7adc2008-10-21 11:42:16 +00001154 BufferBegin = CurBufferPtr = 0;
1155 NumBytes += FnEnd-FnStart;
1156
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001157 // Invalidate the icache if necessary.
Chris Lattner88f51632008-06-25 17:18:44 +00001158 sys::Memory::InvalidateInstructionCache(FnStart, FnEnd-FnStart);
Jeffrey Yasskinf8d55342009-06-25 02:04:04 +00001159
Jeffrey Yasskinf8d55342009-06-25 02:04:04 +00001160 TheJIT->NotifyFunctionEmitted(*F.getFunction(), FnStart, FnEnd-FnStart,
Jeffrey Yasskin8ad296e2009-07-16 21:07:26 +00001161 EmissionDetails);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001162
Daniel Dunbar005975c2009-07-25 00:23:56 +00001163 DEBUG(errs() << "JIT: Finished CodeGen of [" << (void*)FnStart
1164 << "] Function: " << F.getFunction()->getName()
1165 << ": " << (FnEnd-FnStart) << " bytes of text, "
1166 << Relocations.size() << " relocations\n");
Argiris Kirtzidis6841c1a2009-05-18 21:06:40 +00001167
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001168 Relocations.clear();
Evan Cheng68c18682009-03-13 07:51:59 +00001169 ConstPoolAddresses.clear();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001170
Evan Chengb83f6972008-09-18 07:54:21 +00001171 // Mark code region readable and executable if it's not so already.
Jim Grosbach724b1812008-10-03 16:17:20 +00001172 MemMgr->setMemoryExecutable();
Evan Chengb83f6972008-09-18 07:54:21 +00001173
Chris Lattner2b40c562009-08-23 06:35:02 +00001174 DEBUG(
Evan Chengb81ef082008-11-12 08:22:43 +00001175 if (sys::hasDisassembler()) {
Chris Lattner2b40c562009-08-23 06:35:02 +00001176 errs() << "JIT: Disassembled code:\n";
1177 errs() << sys::disassembleBuffer(FnStart, FnEnd-FnStart,
1178 (uintptr_t)FnStart);
Evan Chengb81ef082008-11-12 08:22:43 +00001179 } else {
Chris Lattner2b40c562009-08-23 06:35:02 +00001180 errs() << "JIT: Binary code:\n";
Bruno Cardoso Lopes214ae972009-06-04 00:15:51 +00001181 uint8_t* q = FnStart;
Evan Chengb81ef082008-11-12 08:22:43 +00001182 for (int i = 0; q < FnEnd; q += 4, ++i) {
1183 if (i == 4)
1184 i = 0;
1185 if (i == 0)
Chris Lattner2b40c562009-08-23 06:35:02 +00001186 errs() << "JIT: " << (long)(q - FnStart) << ": ";
Evan Chengb81ef082008-11-12 08:22:43 +00001187 bool Done = false;
1188 for (int j = 3; j >= 0; --j) {
1189 if (q + j >= FnEnd)
1190 Done = true;
1191 else
Chris Lattner2b40c562009-08-23 06:35:02 +00001192 errs() << (unsigned short)q[j];
Evan Chengb81ef082008-11-12 08:22:43 +00001193 }
1194 if (Done)
1195 break;
Chris Lattner2b40c562009-08-23 06:35:02 +00001196 errs() << ' ';
Evan Chengb81ef082008-11-12 08:22:43 +00001197 if (i == 3)
Chris Lattner2b40c562009-08-23 06:35:02 +00001198 errs() << '\n';
Evan Cheng23dbb902008-11-05 23:44:08 +00001199 }
Chris Lattner2b40c562009-08-23 06:35:02 +00001200 errs()<< '\n';
Evan Cheng23dbb902008-11-05 23:44:08 +00001201 }
Chris Lattner2b40c562009-08-23 06:35:02 +00001202 );
1203
Reid Kleckner738b4f22009-09-20 23:52:43 +00001204 if (DwarfExceptionHandling || JITEmitDebugInfo) {
Nicolas Geoffray68847972008-04-18 20:59:31 +00001205 uintptr_t ActualSize = 0;
Nicolas Geoffray0e757e12008-02-13 18:39:37 +00001206 SavedBufferBegin = BufferBegin;
1207 SavedBufferEnd = BufferEnd;
1208 SavedCurBufferPtr = CurBufferPtr;
Reid Kleckner738b4f22009-09-20 23:52:43 +00001209
Nicolas Geoffrayf748af22008-04-20 17:44:19 +00001210 if (MemMgr->NeedsExactSize()) {
1211 ActualSize = DE->GetDwarfTableSizeInBytes(F, *this, FnStart, FnEnd);
Nicolas Geoffray68847972008-04-18 20:59:31 +00001212 }
Nicolas Geoffray0e757e12008-02-13 18:39:37 +00001213
1214 BufferBegin = CurBufferPtr = MemMgr->startExceptionTable(F.getFunction(),
1215 ActualSize);
1216 BufferEnd = BufferBegin+ActualSize;
Jeffrey Yasskin2512e352009-10-20 18:13:21 +00001217 EmittedFunctions[F.getFunction()].ExceptionTable = BufferBegin;
Reid Kleckner738b4f22009-09-20 23:52:43 +00001218 uint8_t *EhStart;
1219 uint8_t *FrameRegister = DE->EmitDwarfTable(F, *this, FnStart, FnEnd,
1220 EhStart);
Chris Lattner3d46fe02008-03-07 20:05:43 +00001221 MemMgr->endExceptionTable(F.getFunction(), BufferBegin, CurBufferPtr,
1222 FrameRegister);
Reid Kleckner738b4f22009-09-20 23:52:43 +00001223 uint8_t *EhEnd = CurBufferPtr;
Nicolas Geoffray0e757e12008-02-13 18:39:37 +00001224 BufferBegin = SavedBufferBegin;
1225 BufferEnd = SavedBufferEnd;
1226 CurBufferPtr = SavedCurBufferPtr;
1227
Reid Kleckner738b4f22009-09-20 23:52:43 +00001228 if (DwarfExceptionHandling) {
1229 TheJIT->RegisterTable(FrameRegister);
1230 }
1231
1232 if (JITEmitDebugInfo) {
1233 DebugInfo I;
1234 I.FnStart = FnStart;
1235 I.FnEnd = FnEnd;
1236 I.EhStart = EhStart;
1237 I.EhEnd = EhEnd;
1238 DR->RegisterFunction(F.getFunction(), I);
1239 }
Nicolas Geoffray0e757e12008-02-13 18:39:37 +00001240 }
Evan Chengca346e62008-09-02 08:14:01 +00001241
1242 if (MMI)
1243 MMI->EndFunction();
Eric Christopherea644f72009-11-12 03:12:18 +00001244
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001245 return false;
1246}
1247
Reid Klecknercc492292009-07-23 21:46:56 +00001248void JITEmitter::retryWithMoreMemory(MachineFunction &F) {
Chris Lattner2b40c562009-08-23 06:35:02 +00001249 DEBUG(errs() << "JIT: Ran out of space for native code. Reattempting.\n");
Reid Klecknercc492292009-07-23 21:46:56 +00001250 Relocations.clear(); // Clear the old relocations or we'll reapply them.
1251 ConstPoolAddresses.clear();
1252 ++NumRetries;
1253 deallocateMemForFunction(F.getFunction());
1254 // Try again with at least twice as much free space.
1255 SizeEstimate = (uintptr_t)(2 * (BufferEnd - BufferBegin));
1256}
1257
Nate Begemana5645962009-03-05 06:34:37 +00001258/// deallocateMemForFunction - Deallocate all memory for the specified
1259/// function body. Also drop any references the function has to stubs.
Jeffrey Yasskin1291fce62009-10-27 00:03:05 +00001260/// May be called while the Function is being destroyed inside ~Value().
Reid Klecknercc492292009-07-23 21:46:56 +00001261void JITEmitter::deallocateMemForFunction(const Function *F) {
Jeffrey Yasskin1291fce62009-10-27 00:03:05 +00001262 ValueMap<const Function *, EmittedCode, EmittedFunctionConfig>::iterator
1263 Emitted = EmittedFunctions.find(F);
Jeffrey Yasskin2512e352009-10-20 18:13:21 +00001264 if (Emitted != EmittedFunctions.end()) {
1265 MemMgr->deallocateFunctionBody(Emitted->second.FunctionBody);
1266 MemMgr->deallocateExceptionTable(Emitted->second.ExceptionTable);
Jeffrey Yasskin1291fce62009-10-27 00:03:05 +00001267 TheJIT->NotifyFreeingMachineCode(Emitted->second.Code);
1268
Jeffrey Yasskin2512e352009-10-20 18:13:21 +00001269 EmittedFunctions.erase(Emitted);
1270 }
Nate Begemana5645962009-03-05 06:34:37 +00001271
Reid Kleckner738b4f22009-09-20 23:52:43 +00001272 // TODO: Do we need to unregister exception handling information from libgcc
1273 // here?
1274
1275 if (JITEmitDebugInfo) {
1276 DR->UnregisterFunction(F);
1277 }
1278
Nate Begemana5645962009-03-05 06:34:37 +00001279 // If the function did not reference any stubs, return.
1280 if (CurFnStubUses.find(F) == CurFnStubUses.end())
1281 return;
Eric Christopherea644f72009-11-12 03:12:18 +00001282
Nate Begemana5645962009-03-05 06:34:37 +00001283 // For each referenced stub, erase the reference to this function, and then
1284 // erase the list of referenced stubs.
1285 SmallVectorImpl<void *> &StubList = CurFnStubUses[F];
1286 for (unsigned i = 0, e = StubList.size(); i != e; ++i) {
1287 void *Stub = StubList[i];
Eric Christopherea644f72009-11-12 03:12:18 +00001288
Nate Begemand1718c42009-03-11 07:03:43 +00001289 // If we already invalidated this stub for this function, continue.
1290 if (StubFnRefs.count(Stub) == 0)
1291 continue;
Eric Christopherea644f72009-11-12 03:12:18 +00001292
Nate Begemana5645962009-03-05 06:34:37 +00001293 SmallPtrSet<const Function *, 1> &FnRefs = StubFnRefs[Stub];
1294 FnRefs.erase(F);
Eric Christopherea644f72009-11-12 03:12:18 +00001295
Nate Begemana5645962009-03-05 06:34:37 +00001296 // If this function was the last reference to the stub, invalidate the stub
1297 // in the JITResolver. Were there a memory manager deallocateStub routine,
1298 // we could call that at this point too.
1299 if (FnRefs.empty()) {
Chris Lattner2b40c562009-08-23 06:35:02 +00001300 DEBUG(errs() << "\nJIT: Invalidated Stub at [" << Stub << "]\n");
Nate Begemand1718c42009-03-11 07:03:43 +00001301 StubFnRefs.erase(Stub);
1302
1303 // Invalidate the stub. If it is a GV stub, update the JIT's global
Jeffrey Yasskin35294ef2009-11-09 22:34:19 +00001304 // mapping for that GV to zero.
Nate Begeman165818c2009-03-07 06:41:19 +00001305 GlobalValue *GV = Resolver.invalidateStub(Stub);
Nate Begemand1718c42009-03-11 07:03:43 +00001306 if (GV) {
1307 TheJIT->updateGlobalMapping(GV, 0);
Nate Begemand1718c42009-03-11 07:03:43 +00001308 }
Nate Begemana5645962009-03-05 06:34:37 +00001309 }
1310 }
1311 CurFnStubUses.erase(F);
1312}
1313
1314
Evan Cheng6e561c72008-12-10 02:32:19 +00001315void* JITEmitter::allocateSpace(uintptr_t Size, unsigned Alignment) {
Nuno Lopes1ab7adc2008-10-21 11:42:16 +00001316 if (BufferBegin)
Bruno Cardoso Lopes1ea31ff2009-05-30 20:51:52 +00001317 return JITCodeEmitter::allocateSpace(Size, Alignment);
Nuno Lopes1ab7adc2008-10-21 11:42:16 +00001318
1319 // create a new memory block if there is no active one.
1320 // care must be taken so that BufferBegin is invalidated when a
1321 // block is trimmed
1322 BufferBegin = CurBufferPtr = MemMgr->allocateSpace(Size, Alignment);
1323 BufferEnd = BufferBegin+Size;
1324 return CurBufferPtr;
1325}
1326
Jeffrey Yasskin892956a2009-07-08 21:59:57 +00001327void* JITEmitter::allocateGlobal(uintptr_t Size, unsigned Alignment) {
1328 // Delegate this call through the memory manager.
1329 return MemMgr->allocateGlobal(Size, Alignment);
1330}
1331
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001332void JITEmitter::emitConstantPool(MachineConstantPool *MCP) {
Evan Cheng68e5fc32008-11-07 09:02:17 +00001333 if (TheJIT->getJITInfo().hasCustomConstantPool())
Jim Grosbachbad01432008-10-30 23:44:39 +00001334 return;
Evan Cheng68e5fc32008-11-07 09:02:17 +00001335
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001336 const std::vector<MachineConstantPoolEntry> &Constants = MCP->getConstants();
1337 if (Constants.empty()) return;
1338
Evan Cheng68c18682009-03-13 07:51:59 +00001339 unsigned Size = GetConstantPoolSizeInBytes(MCP, TheJIT->getTargetData());
1340 unsigned Align = MCP->getConstantPoolAlignment();
Evan Cheng71c58872008-04-12 00:22:01 +00001341 ConstantPoolBase = allocateSpace(Size, Align);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001342 ConstantPool = MCP;
1343
1344 if (ConstantPoolBase == 0) return; // Buffer overflow.
1345
Chris Lattner2b40c562009-08-23 06:35:02 +00001346 DEBUG(errs() << "JIT: Emitted constant pool at [" << ConstantPoolBase
1347 << "] (size: " << Size << ", alignment: " << Align << ")\n");
Evan Cheng71c58872008-04-12 00:22:01 +00001348
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001349 // Initialize the memory for all of the constant pool entries.
Evan Cheng68c18682009-03-13 07:51:59 +00001350 unsigned Offset = 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001351 for (unsigned i = 0, e = Constants.size(); i != e; ++i) {
Evan Cheng68c18682009-03-13 07:51:59 +00001352 MachineConstantPoolEntry CPE = Constants[i];
1353 unsigned AlignMask = CPE.getAlignment() - 1;
1354 Offset = (Offset + AlignMask) & ~AlignMask;
1355
1356 uintptr_t CAddr = (uintptr_t)ConstantPoolBase + Offset;
1357 ConstPoolAddresses.push_back(CAddr);
1358 if (CPE.isMachineConstantPoolEntry()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001359 // FIXME: add support to lower machine constant pool values into bytes!
Edwin Törökced9ff82009-07-11 13:10:19 +00001360 llvm_report_error("Initialize memory with machine specific constant pool"
1361 "entry has not been implemented!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001362 }
Evan Cheng68c18682009-03-13 07:51:59 +00001363 TheJIT->InitializeMemory(CPE.Val.ConstVal, (void*)CAddr);
Chris Lattner2b40c562009-08-23 06:35:02 +00001364 DEBUG(errs() << "JIT: CP" << i << " at [0x";
1365 errs().write_hex(CAddr) << "]\n");
Evan Cheng68c18682009-03-13 07:51:59 +00001366
1367 const Type *Ty = CPE.Val.ConstVal->getType();
Duncan Sandsec4f97d2009-05-09 07:06:46 +00001368 Offset += TheJIT->getTargetData()->getTypeAllocSize(Ty);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001369 }
1370}
1371
1372void JITEmitter::initJumpTableInfo(MachineJumpTableInfo *MJTI) {
Evan Cheng68e5fc32008-11-07 09:02:17 +00001373 if (TheJIT->getJITInfo().hasCustomJumpTables())
1374 return;
1375
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001376 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
1377 if (JT.empty()) return;
Eric Christopherea644f72009-11-12 03:12:18 +00001378
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001379 unsigned NumEntries = 0;
1380 for (unsigned i = 0, e = JT.size(); i != e; ++i)
1381 NumEntries += JT[i].MBBs.size();
1382
1383 unsigned EntrySize = MJTI->getEntrySize();
1384
1385 // Just allocate space for all the jump tables now. We will fix up the actual
1386 // MBB entries in the tables after we emit the code for each block, since then
1387 // we will know the final locations of the MBBs in memory.
1388 JumpTable = MJTI;
1389 JumpTableBase = allocateSpace(NumEntries * EntrySize, MJTI->getAlignment());
1390}
1391
1392void JITEmitter::emitJumpTableInfo(MachineJumpTableInfo *MJTI) {
Evan Cheng68e5fc32008-11-07 09:02:17 +00001393 if (TheJIT->getJITInfo().hasCustomJumpTables())
1394 return;
1395
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001396 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
1397 if (JT.empty() || JumpTableBase == 0) return;
Eric Christopherea644f72009-11-12 03:12:18 +00001398
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001399 if (TargetMachine::getRelocationModel() == Reloc::PIC_) {
1400 assert(MJTI->getEntrySize() == 4 && "Cross JIT'ing?");
1401 // For each jump table, place the offset from the beginning of the table
1402 // to the target address.
1403 int *SlotPtr = (int*)JumpTableBase;
1404
1405 for (unsigned i = 0, e = JT.size(); i != e; ++i) {
1406 const std::vector<MachineBasicBlock*> &MBBs = JT[i].MBBs;
1407 // Store the offset of the basic block for this jump table slot in the
1408 // memory we allocated for the jump table in 'initJumpTableInfo'
Evan Cheng6e561c72008-12-10 02:32:19 +00001409 uintptr_t Base = (uintptr_t)SlotPtr;
Evan Chengaf743252008-01-05 02:26:58 +00001410 for (unsigned mi = 0, me = MBBs.size(); mi != me; ++mi) {
Evan Cheng6e561c72008-12-10 02:32:19 +00001411 uintptr_t MBBAddr = getMachineBasicBlockAddress(MBBs[mi]);
Evan Chengaf743252008-01-05 02:26:58 +00001412 *SlotPtr++ = TheJIT->getJITInfo().getPICJumpTableEntry(MBBAddr, Base);
1413 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001414 }
1415 } else {
1416 assert(MJTI->getEntrySize() == sizeof(void*) && "Cross JIT'ing?");
Eric Christopherea644f72009-11-12 03:12:18 +00001417
1418 // For each jump table, map each target in the jump table to the address of
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001419 // an emitted MachineBasicBlock.
1420 intptr_t *SlotPtr = (intptr_t*)JumpTableBase;
1421
1422 for (unsigned i = 0, e = JT.size(); i != e; ++i) {
1423 const std::vector<MachineBasicBlock*> &MBBs = JT[i].MBBs;
1424 // Store the address of the basic block for this jump table slot in the
1425 // memory we allocated for the jump table in 'initJumpTableInfo'
1426 for (unsigned mi = 0, me = MBBs.size(); mi != me; ++mi)
1427 *SlotPtr++ = getMachineBasicBlockAddress(MBBs[mi]);
1428 }
1429 }
1430}
1431
Evan Cheng2c3267a2008-11-08 08:02:53 +00001432void JITEmitter::startGVStub(const GlobalValue* GV, unsigned StubSize,
1433 unsigned Alignment) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001434 SavedBufferBegin = BufferBegin;
1435 SavedBufferEnd = BufferEnd;
1436 SavedCurBufferPtr = CurBufferPtr;
Eric Christopherea644f72009-11-12 03:12:18 +00001437
Evan Cheng2c3267a2008-11-08 08:02:53 +00001438 BufferBegin = CurBufferPtr = MemMgr->allocateStub(GV, StubSize, Alignment);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001439 BufferEnd = BufferBegin+StubSize+1;
1440}
1441
Nate Begeman7b1a8472009-02-18 08:31:02 +00001442void JITEmitter::startGVStub(const GlobalValue* GV, void *Buffer,
1443 unsigned StubSize) {
1444 SavedBufferBegin = BufferBegin;
1445 SavedBufferEnd = BufferEnd;
1446 SavedCurBufferPtr = CurBufferPtr;
Eric Christopherea644f72009-11-12 03:12:18 +00001447
Bruno Cardoso Lopes214ae972009-06-04 00:15:51 +00001448 BufferBegin = CurBufferPtr = (uint8_t *)Buffer;
Nate Begeman7b1a8472009-02-18 08:31:02 +00001449 BufferEnd = BufferBegin+StubSize+1;
1450}
1451
Evan Cheng2c3267a2008-11-08 08:02:53 +00001452void *JITEmitter::finishGVStub(const GlobalValue* GV) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001453 NumBytes += getCurrentPCOffset();
1454 std::swap(SavedBufferBegin, BufferBegin);
1455 BufferEnd = SavedBufferEnd;
1456 CurBufferPtr = SavedCurBufferPtr;
1457 return SavedBufferBegin;
1458}
1459
1460// getConstantPoolEntryAddress - Return the address of the 'ConstantNum' entry
1461// in the constant pool that was last emitted with the 'emitConstantPool'
1462// method.
1463//
Evan Cheng6e561c72008-12-10 02:32:19 +00001464uintptr_t JITEmitter::getConstantPoolEntryAddress(unsigned ConstantNum) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001465 assert(ConstantNum < ConstantPool->getConstants().size() &&
1466 "Invalid ConstantPoolIndex!");
Evan Cheng68c18682009-03-13 07:51:59 +00001467 return ConstPoolAddresses[ConstantNum];
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001468}
1469
1470// getJumpTableEntryAddress - Return the address of the JumpTable with index
1471// 'Index' in the jumpp table that was last initialized with 'initJumpTableInfo'
1472//
Evan Cheng6e561c72008-12-10 02:32:19 +00001473uintptr_t JITEmitter::getJumpTableEntryAddress(unsigned Index) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001474 const std::vector<MachineJumpTableEntry> &JT = JumpTable->getJumpTables();
1475 assert(Index < JT.size() && "Invalid jump table index!");
Eric Christopherea644f72009-11-12 03:12:18 +00001476
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001477 unsigned Offset = 0;
1478 unsigned EntrySize = JumpTable->getEntrySize();
Eric Christopherea644f72009-11-12 03:12:18 +00001479
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001480 for (unsigned i = 0; i < Index; ++i)
1481 Offset += JT[i].MBBs.size();
Eric Christopherea644f72009-11-12 03:12:18 +00001482
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001483 Offset *= EntrySize;
Eric Christopherea644f72009-11-12 03:12:18 +00001484
Evan Cheng6e561c72008-12-10 02:32:19 +00001485 return (uintptr_t)((char *)JumpTableBase + Offset);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001486}
1487
Jeffrey Yasskin1291fce62009-10-27 00:03:05 +00001488void JITEmitter::EmittedFunctionConfig::onDelete(
1489 JITEmitter *Emitter, const Function *F) {
1490 Emitter->deallocateMemForFunction(F);
1491}
1492void JITEmitter::EmittedFunctionConfig::onRAUW(
1493 JITEmitter *, const Function*, const Function*) {
1494 llvm_unreachable("The JIT doesn't know how to handle a"
1495 " RAUW on a value it has emitted.");
1496}
1497
1498
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001499//===----------------------------------------------------------------------===//
1500// Public interface to this file
1501//===----------------------------------------------------------------------===//
1502
Reid Kleckner738b4f22009-09-20 23:52:43 +00001503JITCodeEmitter *JIT::createEmitter(JIT &jit, JITMemoryManager *JMM,
1504 TargetMachine &tm) {
1505 return new JITEmitter(jit, JMM, tm);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001506}
1507
1508// getPointerToNamedFunction - This function is used as a global wrapper to
1509// JIT::getPointerToNamedFunction for the purpose of resolving symbols when
1510// bugpoint is debugging the JIT. In that scenario, we are loading an .so and
1511// need to resolve function(s) that are being mis-codegenerated, so we need to
1512// resolve their addresses at runtime, and this is the way to do it.
1513extern "C" {
1514 void *getPointerToNamedFunction(const char *Name) {
1515 if (Function *F = TheJIT->FindFunctionNamed(Name))
1516 return TheJIT->getPointerToFunction(F);
1517 return TheJIT->getPointerToNamedFunction(Name);
1518 }
1519}
1520
1521// getPointerToFunctionOrStub - If the specified function has been
1522// code-gen'd, return a pointer to the function. If not, compile it, or use
1523// a stub to implement lazy compilation if available.
1524//
1525void *JIT::getPointerToFunctionOrStub(Function *F) {
1526 // If we have already code generated the function, just return the address.
1527 if (void *Addr = getPointerToGlobalIfAvailable(F))
1528 return Addr;
Eric Christopherea644f72009-11-12 03:12:18 +00001529
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001530 // Get a stub if the target supports it.
Bruno Cardoso Lopes1ea31ff2009-05-30 20:51:52 +00001531 assert(isa<JITEmitter>(JCE) && "Unexpected MCE?");
Evan Cheng89b29a12008-08-20 00:28:12 +00001532 JITEmitter *JE = cast<JITEmitter>(getCodeEmitter());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001533 return JE->getJITResolver().getFunctionStub(F);
1534}
1535
Nate Begeman7b1a8472009-02-18 08:31:02 +00001536void JIT::updateFunctionStub(Function *F) {
1537 // Get the empty stub we generated earlier.
Bruno Cardoso Lopes1ea31ff2009-05-30 20:51:52 +00001538 assert(isa<JITEmitter>(JCE) && "Unexpected MCE?");
Nate Begeman7b1a8472009-02-18 08:31:02 +00001539 JITEmitter *JE = cast<JITEmitter>(getCodeEmitter());
1540 void *Stub = JE->getJITResolver().getFunctionStub(F);
1541
1542 // Tell the target jit info to rewrite the stub at the specified address,
1543 // rather than creating a new one.
1544 void *Addr = getPointerToGlobalIfAvailable(F);
1545 getJITInfo().emitFunctionStubAtAddr(F, Addr, Stub, *getCodeEmitter());
1546}
1547
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001548/// freeMachineCodeForFunction - release machine code memory for given Function.
1549///
1550void JIT::freeMachineCodeForFunction(Function *F) {
1551 // Delete translation for this from the ExecutionEngine, so it will get
1552 // retranslated next time it is used.
Jeffrey Yasskin1291fce62009-10-27 00:03:05 +00001553 updateGlobalMapping(F, 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001554
1555 // Free the actual memory for the function body and related stuff.
Bruno Cardoso Lopes1ea31ff2009-05-30 20:51:52 +00001556 assert(isa<JITEmitter>(JCE) && "Unexpected MCE?");
1557 cast<JITEmitter>(JCE)->deallocateMemForFunction(F);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001558}