blob: 827e3c7ca07dcaa51a47ae1f1bd7499140cb501e [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"
Nicolas Geoffray0e757e12008-02-13 18:39:37 +000017#include "JITDwarfEmitter.h"
Dale Johannesen0ba4a0e2008-08-07 01:30:15 +000018#include "llvm/Constants.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000019#include "llvm/Module.h"
Dale Johannesen0ba4a0e2008-08-07 01:30:15 +000020#include "llvm/DerivedTypes.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000021#include "llvm/CodeGen/MachineCodeEmitter.h"
22#include "llvm/CodeGen/MachineFunction.h"
23#include "llvm/CodeGen/MachineConstantPool.h"
24#include "llvm/CodeGen/MachineJumpTableInfo.h"
Nicolas Geoffray0e757e12008-02-13 18:39:37 +000025#include "llvm/CodeGen/MachineModuleInfo.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000026#include "llvm/CodeGen/MachineRelocation.h"
Chris Lattnerc8ad39c2007-12-05 23:39:57 +000027#include "llvm/ExecutionEngine/JITMemoryManager.h"
Dale Johannesen0ba4a0e2008-08-07 01:30:15 +000028#include "llvm/ExecutionEngine/GenericValue.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000029#include "llvm/Target/TargetData.h"
30#include "llvm/Target/TargetJITInfo.h"
31#include "llvm/Target/TargetMachine.h"
Nicolas Geoffray0e757e12008-02-13 18:39:37 +000032#include "llvm/Target/TargetOptions.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000033#include "llvm/Support/Debug.h"
34#include "llvm/Support/MutexGuard.h"
35#include "llvm/System/Disassembler.h"
Chris Lattner88f51632008-06-25 17:18:44 +000036#include "llvm/System/Memory.h"
Nicolas Geoffray68847972008-04-18 20:59:31 +000037#include "llvm/Target/TargetInstrInfo.h"
Evan Cheng68e5fc32008-11-07 09:02:17 +000038#include "llvm/ADT/SmallPtrSet.h"
Nate Begeman7b1a8472009-02-18 08:31:02 +000039#include "llvm/ADT/SmallVector.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000040#include "llvm/ADT/Statistic.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000041#include <algorithm>
Evan Cheng23dbb902008-11-05 23:44:08 +000042#ifndef NDEBUG
43#include <iomanip>
44#endif
Dan Gohmanf17a25c2007-07-18 16:29:46 +000045using namespace llvm;
46
47STATISTIC(NumBytes, "Number of bytes of machine code compiled");
48STATISTIC(NumRelos, "Number of relocations applied");
49static JIT *TheJIT = 0;
50
Dan Gohmanf17a25c2007-07-18 16:29:46 +000051
52//===----------------------------------------------------------------------===//
53// JIT lazy compilation code.
54//
55namespace {
56 class JITResolverState {
57 private:
58 /// FunctionToStubMap - Keep track of the stub created for a particular
59 /// function so that we can reuse them if necessary.
60 std::map<Function*, void*> FunctionToStubMap;
61
62 /// StubToFunctionMap - Keep track of the function that each stub
63 /// corresponds to.
64 std::map<void*, Function*> StubToFunctionMap;
65
Evan Chengb0ebcb42008-11-10 01:52:24 +000066 /// GlobalToIndirectSymMap - Keep track of the indirect symbol created for a
Evan Cheng28e7e162008-01-04 10:46:51 +000067 /// particular GlobalVariable so that we can reuse them if necessary.
Evan Chengb0ebcb42008-11-10 01:52:24 +000068 std::map<GlobalValue*, void*> GlobalToIndirectSymMap;
Evan Cheng28e7e162008-01-04 10:46:51 +000069
Dan Gohmanf17a25c2007-07-18 16:29:46 +000070 public:
71 std::map<Function*, void*>& getFunctionToStubMap(const MutexGuard& locked) {
72 assert(locked.holds(TheJIT->lock));
73 return FunctionToStubMap;
74 }
75
76 std::map<void*, Function*>& getStubToFunctionMap(const MutexGuard& locked) {
77 assert(locked.holds(TheJIT->lock));
78 return StubToFunctionMap;
79 }
Evan Cheng28e7e162008-01-04 10:46:51 +000080
81 std::map<GlobalValue*, void*>&
Evan Chengb0ebcb42008-11-10 01:52:24 +000082 getGlobalToIndirectSymMap(const MutexGuard& locked) {
Evan Cheng28e7e162008-01-04 10:46:51 +000083 assert(locked.holds(TheJIT->lock));
Evan Chengb0ebcb42008-11-10 01:52:24 +000084 return GlobalToIndirectSymMap;
Evan Cheng28e7e162008-01-04 10:46:51 +000085 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +000086 };
87
88 /// JITResolver - Keep track of, and resolve, call sites for functions that
89 /// have not yet been compiled.
90 class JITResolver {
91 /// LazyResolverFn - The target lazy resolver function that we actually
92 /// rewrite instructions to use.
93 TargetJITInfo::LazyResolverFn LazyResolverFn;
94
95 JITResolverState state;
96
97 /// ExternalFnToStubMap - This is the equivalent of FunctionToStubMap for
98 /// external functions.
99 std::map<void*, void*> ExternalFnToStubMap;
100
101 //map addresses to indexes in the GOT
102 std::map<void*, unsigned> revGOTMap;
103 unsigned nextGOTIndex;
104
105 static JITResolver *TheJITResolver;
106 public:
Dan Gohman40bd38e2008-03-25 22:06:05 +0000107 explicit JITResolver(JIT &jit) : nextGOTIndex(0) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000108 TheJIT = &jit;
109
110 LazyResolverFn = jit.getJITInfo().getLazyResolverFunction(JITCompilerFn);
111 assert(TheJITResolver == 0 && "Multiple JIT resolvers?");
112 TheJITResolver = this;
113 }
114
115 ~JITResolver() {
116 TheJITResolver = 0;
117 }
118
Evan Cheng6e4b7632008-11-13 21:50:50 +0000119 /// getFunctionStubIfAvailable - This returns a pointer to a function stub
120 /// if it has already been created.
121 void *getFunctionStubIfAvailable(Function *F);
122
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000123 /// getFunctionStub - This returns a pointer to a function stub, creating
Nate Begeman7b1a8472009-02-18 08:31:02 +0000124 /// one on demand as needed. If empty is true, create a function stub
125 /// pointing at address 0, to be filled in later.
Nate Begeman165818c2009-03-07 06:41:19 +0000126 void *getFunctionStub(Function *F);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000127
128 /// getExternalFunctionStub - Return a stub for the function at the
129 /// specified address, created lazily on demand.
130 void *getExternalFunctionStub(void *FnAddr);
131
Evan Chengb0ebcb42008-11-10 01:52:24 +0000132 /// getGlobalValueIndirectSym - Return an indirect symbol containing the
Evan Cheng23c6b642008-11-05 01:50:32 +0000133 /// specified GV address.
Evan Chengb0ebcb42008-11-10 01:52:24 +0000134 void *getGlobalValueIndirectSym(GlobalValue *V, void *GVAddress);
Evan Cheng28e7e162008-01-04 10:46:51 +0000135
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000136 /// AddCallbackAtLocation - If the target is capable of rewriting an
137 /// instruction without the use of a stub, record the location of the use so
138 /// we know which function is being used at the location.
139 void *AddCallbackAtLocation(Function *F, void *Location) {
140 MutexGuard locked(TheJIT->lock);
141 /// Get the target-specific JIT resolver function.
142 state.getStubToFunctionMap(locked)[Location] = F;
143 return (void*)(intptr_t)LazyResolverFn;
144 }
Nate Begeman7b1a8472009-02-18 08:31:02 +0000145
146 void getRelocatableGVs(SmallVectorImpl<GlobalValue*> &GVs,
Nate Begemana5645962009-03-05 06:34:37 +0000147 SmallVectorImpl<void*> &Ptrs);
148
149 GlobalValue *invalidateStub(void *Stub);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000150
151 /// getGOTIndexForAddress - Return a new or existing index in the GOT for
Chris Lattnerc8ad39c2007-12-05 23:39:57 +0000152 /// an address. This function only manages slots, it does not manage the
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000153 /// contents of the slots or the memory associated with the GOT.
Chris Lattnerc8ad39c2007-12-05 23:39:57 +0000154 unsigned getGOTIndexForAddr(void *addr);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000155
156 /// JITCompilerFn - This function is called to resolve a stub to a compiled
157 /// address. If the LLVM Function corresponding to the stub has not yet
158 /// been compiled, this function compiles it first.
159 static void *JITCompilerFn(void *Stub);
160 };
161}
162
163JITResolver *JITResolver::TheJITResolver = 0;
164
Evan Cheng6e4b7632008-11-13 21:50:50 +0000165/// getFunctionStubIfAvailable - This returns a pointer to a function stub
166/// if it has already been created.
167void *JITResolver::getFunctionStubIfAvailable(Function *F) {
168 MutexGuard locked(TheJIT->lock);
169
170 // If we already have a stub for this function, recycle it.
171 void *&Stub = state.getFunctionToStubMap(locked)[F];
172 return Stub;
173}
174
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000175/// getFunctionStub - This returns a pointer to a function stub, creating
176/// one on demand as needed.
Nate Begeman165818c2009-03-07 06:41:19 +0000177void *JITResolver::getFunctionStub(Function *F) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000178 MutexGuard locked(TheJIT->lock);
179
180 // If we already have a stub for this function, recycle it.
181 void *&Stub = state.getFunctionToStubMap(locked)[F];
182 if (Stub) return Stub;
183
Nate Begeman165818c2009-03-07 06:41:19 +0000184 // Call the lazy resolver function unless we are JIT'ing non-lazily, in which
185 // case we must resolve the symbol now.
186 void *Actual = TheJIT->isLazyCompilationDisabled()
187 ? (void *)0 : (void *)(intptr_t)LazyResolverFn;
188
189 // If this is an external declaration, attempt to resolve the address now
190 // to place in the stub.
Dan Gohman0ae39622009-01-05 05:32:42 +0000191 if (F->isDeclaration() && !F->hasNotBeenReadFromBitcode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000192 Actual = TheJIT->getPointerToFunction(F);
193
Dan Gohman0ae39622009-01-05 05:32:42 +0000194 // If we resolved the symbol to a null address (eg. a weak external)
Nate Begeman165818c2009-03-07 06:41:19 +0000195 // don't emit a stub. Return a null pointer to the application. If dlsym
196 // stubs are enabled, not being able to resolve the address is not
197 // meaningful.
198 if (!Actual && !TheJIT->areDlsymStubsEnabled()) return 0;
Dan Gohman0ae39622009-01-05 05:32:42 +0000199 }
200
Nate Begeman165818c2009-03-07 06:41:19 +0000201 // Codegen a new stub, calling the lazy resolver or the actual address of the
202 // external function, if it was resolved.
Nicolas Geoffray2b483b52008-04-16 20:46:05 +0000203 Stub = TheJIT->getJITInfo().emitFunctionStub(F, Actual,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000204 *TheJIT->getCodeEmitter());
205
206 if (Actual != (void*)(intptr_t)LazyResolverFn) {
207 // If we are getting the stub for an external function, we really want the
208 // address of the stub in the GlobalAddressMap for the JIT, not the address
209 // of the external function.
210 TheJIT->updateGlobalMapping(F, Stub);
211 }
212
Chris Lattner51399812009-03-05 06:48:16 +0000213 DOUT << "JIT: Stub emitted at [" << Stub << "] for function '"
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000214 << F->getName() << "'\n";
215
216 // Finally, keep track of the stub-to-Function mapping so that the
217 // JITCompilerFn knows which function to compile!
218 state.getStubToFunctionMap(locked)[Stub] = F;
Nate Begeman7b1a8472009-02-18 08:31:02 +0000219
Nate Begeman165818c2009-03-07 06:41:19 +0000220 // If we are JIT'ing non-lazily but need to call a function that does not
221 // exist yet, add it to the JIT's work list so that we can fill in the stub
222 // address later.
223 if (!Actual && TheJIT->isLazyCompilationDisabled())
224 if (!F->isDeclaration() || F->hasNotBeenReadFromBitcode())
225 TheJIT->addPendingFunction(F);
Nate Begeman7b1a8472009-02-18 08:31:02 +0000226
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000227 return Stub;
228}
229
Evan Chengb0ebcb42008-11-10 01:52:24 +0000230/// getGlobalValueIndirectSym - Return a lazy pointer containing the specified
Evan Cheng28e7e162008-01-04 10:46:51 +0000231/// GV address.
Evan Chengb0ebcb42008-11-10 01:52:24 +0000232void *JITResolver::getGlobalValueIndirectSym(GlobalValue *GV, void *GVAddress) {
Evan Cheng28e7e162008-01-04 10:46:51 +0000233 MutexGuard locked(TheJIT->lock);
234
235 // If we already have a stub for this global variable, recycle it.
Evan Chengb0ebcb42008-11-10 01:52:24 +0000236 void *&IndirectSym = state.getGlobalToIndirectSymMap(locked)[GV];
237 if (IndirectSym) return IndirectSym;
Evan Cheng28e7e162008-01-04 10:46:51 +0000238
Evan Cheng221548c2008-11-10 23:26:16 +0000239 // Otherwise, codegen a new indirect symbol.
Evan Chengb0ebcb42008-11-10 01:52:24 +0000240 IndirectSym = TheJIT->getJITInfo().emitGlobalValueIndirectSym(GV, GVAddress,
Evan Cheng23c6b642008-11-05 01:50:32 +0000241 *TheJIT->getCodeEmitter());
Evan Cheng28e7e162008-01-04 10:46:51 +0000242
Evan Chengb0ebcb42008-11-10 01:52:24 +0000243 DOUT << "JIT: Indirect symbol emitted at [" << IndirectSym << "] for GV '"
Evan Cheng28e7e162008-01-04 10:46:51 +0000244 << GV->getName() << "'\n";
245
Evan Chengb0ebcb42008-11-10 01:52:24 +0000246 return IndirectSym;
Evan Cheng28e7e162008-01-04 10:46:51 +0000247}
248
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000249/// getExternalFunctionStub - Return a stub for the function at the
250/// specified address, created lazily on demand.
251void *JITResolver::getExternalFunctionStub(void *FnAddr) {
252 // If we already have a stub for this function, recycle it.
253 void *&Stub = ExternalFnToStubMap[FnAddr];
254 if (Stub) return Stub;
255
Nicolas Geoffray2b483b52008-04-16 20:46:05 +0000256 Stub = TheJIT->getJITInfo().emitFunctionStub(0, FnAddr,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000257 *TheJIT->getCodeEmitter());
258
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000259 DOUT << "JIT: Stub emitted at [" << Stub
260 << "] for external function at '" << FnAddr << "'\n";
261 return Stub;
262}
263
264unsigned JITResolver::getGOTIndexForAddr(void* addr) {
265 unsigned idx = revGOTMap[addr];
266 if (!idx) {
267 idx = ++nextGOTIndex;
268 revGOTMap[addr] = idx;
Evan Cheng7323eb52008-11-07 22:30:29 +0000269 DOUT << "JIT: Adding GOT entry " << idx << " for addr [" << addr << "]\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000270 }
271 return idx;
272}
273
Nate Begeman7b1a8472009-02-18 08:31:02 +0000274void JITResolver::getRelocatableGVs(SmallVectorImpl<GlobalValue*> &GVs,
275 SmallVectorImpl<void*> &Ptrs) {
276 MutexGuard locked(TheJIT->lock);
277
278 std::map<Function*,void*> &FM = state.getFunctionToStubMap(locked);
279 std::map<GlobalValue*,void*> &GM = state.getGlobalToIndirectSymMap(locked);
280
281 for (std::map<Function*,void*>::iterator i = FM.begin(), e = FM.end();
282 i != e; ++i) {
283 Function *F = i->first;
284 if (F->isDeclaration() && F->hasExternalLinkage()) {
285 GVs.push_back(i->first);
286 Ptrs.push_back(i->second);
287 }
288 }
289 for (std::map<GlobalValue*,void*>::iterator i = GM.begin(), e = GM.end();
290 i != e; ++i) {
291 GVs.push_back(i->first);
292 Ptrs.push_back(i->second);
293 }
294}
295
Nate Begemana5645962009-03-05 06:34:37 +0000296GlobalValue *JITResolver::invalidateStub(void *Stub) {
297 MutexGuard locked(TheJIT->lock);
298
299 std::map<Function*,void*> &FM = state.getFunctionToStubMap(locked);
300 std::map<void*,Function*> &SM = state.getStubToFunctionMap(locked);
301 std::map<GlobalValue*,void*> &GM = state.getGlobalToIndirectSymMap(locked);
302
303 // Look up the cheap way first, to see if it's a function stub we are
304 // invalidating. If so, remove it from both the forward and reverse maps.
305 if (SM.find(Stub) != SM.end()) {
306 Function *F = SM[Stub];
307 SM.erase(Stub);
308 FM.erase(F);
309 return F;
310 }
311
312 // Otherwise, it must be an indirect symbol stub. Find it and remove it.
313 for (std::map<GlobalValue*,void*>::iterator i = GM.begin(), e = GM.end();
314 i != e; ++i) {
315 if (i->second != Stub)
316 continue;
317 GlobalValue *GV = i->first;
318 GM.erase(i);
319 return GV;
320 }
321
322 return 0;
323}
324
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000325/// JITCompilerFn - This function is called when a lazy compilation stub has
326/// been entered. It looks up which function this stub corresponds to, compiles
327/// it if necessary, then returns the resultant function pointer.
328void *JITResolver::JITCompilerFn(void *Stub) {
329 JITResolver &JR = *TheJITResolver;
Nicolas Geoffray7bf33432008-10-03 07:27:08 +0000330
331 Function* F = 0;
332 void* ActualPtr = 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000333
Nicolas Geoffray7bf33432008-10-03 07:27:08 +0000334 {
335 // Only lock for getting the Function. The call getPointerToFunction made
336 // in this function might trigger function materializing, which requires
337 // JIT lock to be unlocked.
338 MutexGuard locked(TheJIT->lock);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000339
Nicolas Geoffray7bf33432008-10-03 07:27:08 +0000340 // The address given to us for the stub may not be exactly right, it might be
341 // a little bit after the stub. As such, use upper_bound to find it.
342 std::map<void*, Function*>::iterator I =
343 JR.state.getStubToFunctionMap(locked).upper_bound(Stub);
344 assert(I != JR.state.getStubToFunctionMap(locked).begin() &&
345 "This is not a known stub!");
346 F = (--I)->second;
347 ActualPtr = I->first;
348 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000349
350 // If we have already code generated the function, just return the address.
351 void *Result = TheJIT->getPointerToGlobalIfAvailable(F);
352
353 if (!Result) {
354 // Otherwise we don't have it, do lazy compilation now.
355
356 // If lazy compilation is disabled, emit a useful error message and abort.
357 if (TheJIT->isLazyCompilationDisabled()) {
358 cerr << "LLVM JIT requested to do lazy compilation of function '"
359 << F->getName() << "' when lazy compiles are disabled!\n";
360 abort();
361 }
362
363 // We might like to remove the stub from the StubToFunction map.
364 // We can't do that! Multiple threads could be stuck, waiting to acquire the
365 // lock above. As soon as the 1st function finishes compiling the function,
366 // the next one will be released, and needs to be able to find the function
367 // it needs to call.
368 //JR.state.getStubToFunctionMap(locked).erase(I);
369
370 DOUT << "JIT: Lazily resolving function '" << F->getName()
371 << "' In stub ptr = " << Stub << " actual ptr = "
Nicolas Geoffray7bf33432008-10-03 07:27:08 +0000372 << ActualPtr << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000373
374 Result = TheJIT->getPointerToFunction(F);
375 }
Nicolas Geoffray7bf33432008-10-03 07:27:08 +0000376
377 // Reacquire the lock to erase the stub in the map.
378 MutexGuard locked(TheJIT->lock);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000379
380 // We don't need to reuse this stub in the future, as F is now compiled.
381 JR.state.getFunctionToStubMap(locked).erase(F);
382
383 // FIXME: We could rewrite all references to this stub if we knew them.
384
385 // What we will do is set the compiled function address to map to the
386 // same GOT entry as the stub so that later clients may update the GOT
387 // if they see it still using the stub address.
388 // Note: this is done so the Resolver doesn't have to manage GOT memory
389 // Do this without allocating map space if the target isn't using a GOT
390 if(JR.revGOTMap.find(Stub) != JR.revGOTMap.end())
391 JR.revGOTMap[Result] = JR.revGOTMap[Stub];
392
393 return Result;
394}
395
Chris Lattnerf50e3572008-04-04 05:51:42 +0000396//===----------------------------------------------------------------------===//
397// Function Index Support
398
399// On MacOS we generate an index of currently JIT'd functions so that
400// performance tools can determine a symbol name and accurate code range for a
401// PC value. Because performance tools are generally asynchronous, the code
402// below is written with the hope that it could be interrupted at any time and
403// have useful answers. However, we don't go crazy with atomic operations, we
404// just do a "reasonable effort".
405#ifdef __APPLE__
Evan Cheng4481f762008-05-15 17:31:35 +0000406#define ENABLE_JIT_SYMBOL_TABLE 0
Chris Lattnerf50e3572008-04-04 05:51:42 +0000407#endif
408
409/// JitSymbolEntry - Each function that is JIT compiled results in one of these
410/// being added to an array of symbols. This indicates the name of the function
411/// as well as the address range it occupies. This allows the client to map
412/// from a PC value to the name of the function.
413struct JitSymbolEntry {
414 const char *FnName; // FnName - a strdup'd string.
415 void *FnStart;
416 intptr_t FnSize;
417};
418
419
420struct JitSymbolTable {
421 /// NextPtr - This forms a linked list of JitSymbolTable entries. This
422 /// pointer is not used right now, but might be used in the future. Consider
423 /// it reserved for future use.
424 JitSymbolTable *NextPtr;
425
426 /// Symbols - This is an array of JitSymbolEntry entries. Only the first
427 /// 'NumSymbols' symbols are valid.
428 JitSymbolEntry *Symbols;
429
430 /// NumSymbols - This indicates the number entries in the Symbols array that
431 /// are valid.
432 unsigned NumSymbols;
433
434 /// NumAllocated - This indicates the amount of space we have in the Symbols
435 /// array. This is a private field that should not be read by external tools.
436 unsigned NumAllocated;
437};
438
439#if ENABLE_JIT_SYMBOL_TABLE
440JitSymbolTable *__jitSymbolTable;
441#endif
442
443static void AddFunctionToSymbolTable(const char *FnName,
444 void *FnStart, intptr_t FnSize) {
445 assert(FnName != 0 && FnStart != 0 && "Bad symbol to add");
446 JitSymbolTable **SymTabPtrPtr = 0;
447#if !ENABLE_JIT_SYMBOL_TABLE
448 return;
449#else
450 SymTabPtrPtr = &__jitSymbolTable;
451#endif
452
453 // If this is the first entry in the symbol table, add the JitSymbolTable
454 // index.
455 if (*SymTabPtrPtr == 0) {
456 JitSymbolTable *New = new JitSymbolTable();
457 New->NextPtr = 0;
458 New->Symbols = 0;
459 New->NumSymbols = 0;
460 New->NumAllocated = 0;
461 *SymTabPtrPtr = New;
462 }
463
464 JitSymbolTable *SymTabPtr = *SymTabPtrPtr;
465
466 // If we have space in the table, reallocate the table.
467 if (SymTabPtr->NumSymbols >= SymTabPtr->NumAllocated) {
468 // If we don't have space, reallocate the table.
Chris Lattnerea0cb7c2008-04-13 07:04:56 +0000469 unsigned NewSize = std::max(64U, SymTabPtr->NumAllocated*2);
Chris Lattnerf50e3572008-04-04 05:51:42 +0000470 JitSymbolEntry *NewSymbols = new JitSymbolEntry[NewSize];
471 JitSymbolEntry *OldSymbols = SymTabPtr->Symbols;
472
473 // Copy the old entries over.
Nate Begeman7b1a8472009-02-18 08:31:02 +0000474 memcpy(NewSymbols, OldSymbols, SymTabPtr->NumSymbols*sizeof(OldSymbols[0]));
Chris Lattnerf50e3572008-04-04 05:51:42 +0000475
476 // Swap the new symbols in, delete the old ones.
477 SymTabPtr->Symbols = NewSymbols;
Chris Lattnerea0cb7c2008-04-13 07:04:56 +0000478 SymTabPtr->NumAllocated = NewSize;
Chris Lattnerf50e3572008-04-04 05:51:42 +0000479 delete [] OldSymbols;
480 }
481
482 // Otherwise, we have enough space, just tack it onto the end of the array.
483 JitSymbolEntry &Entry = SymTabPtr->Symbols[SymTabPtr->NumSymbols];
484 Entry.FnName = strdup(FnName);
485 Entry.FnStart = FnStart;
486 Entry.FnSize = FnSize;
487 ++SymTabPtr->NumSymbols;
488}
489
490static void RemoveFunctionFromSymbolTable(void *FnStart) {
491 assert(FnStart && "Invalid function pointer");
492 JitSymbolTable **SymTabPtrPtr = 0;
493#if !ENABLE_JIT_SYMBOL_TABLE
494 return;
495#else
496 SymTabPtrPtr = &__jitSymbolTable;
497#endif
498
499 JitSymbolTable *SymTabPtr = *SymTabPtrPtr;
500 JitSymbolEntry *Symbols = SymTabPtr->Symbols;
501
502 // Scan the table to find its index. The table is not sorted, so do a linear
503 // scan.
504 unsigned Index;
505 for (Index = 0; Symbols[Index].FnStart != FnStart; ++Index)
506 assert(Index != SymTabPtr->NumSymbols && "Didn't find function!");
507
508 // Once we have an index, we know to nuke this entry, overwrite it with the
509 // entry at the end of the array, making the last entry redundant.
510 const char *OldName = Symbols[Index].FnName;
511 Symbols[Index] = Symbols[SymTabPtr->NumSymbols-1];
512 free((void*)OldName);
513
514 // Drop the number of symbols in the table.
515 --SymTabPtr->NumSymbols;
516
517 // Finally, if we deleted the final symbol, deallocate the table itself.
Nate Begeman0751db22008-05-18 19:09:10 +0000518 if (SymTabPtr->NumSymbols != 0)
Chris Lattnerf50e3572008-04-04 05:51:42 +0000519 return;
520
521 *SymTabPtrPtr = 0;
522 delete [] Symbols;
523 delete SymTabPtr;
524}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000525
526//===----------------------------------------------------------------------===//
527// JITEmitter code.
528//
529namespace {
530 /// JITEmitter - The JIT implementation of the MachineCodeEmitter, which is
531 /// used to output functions to memory for execution.
532 class JITEmitter : public MachineCodeEmitter {
Chris Lattnerc8ad39c2007-12-05 23:39:57 +0000533 JITMemoryManager *MemMgr;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000534
535 // When outputting a function stub in the context of some other function, we
536 // save BufferBegin/BufferEnd/CurBufferPtr here.
537 unsigned char *SavedBufferBegin, *SavedBufferEnd, *SavedCurBufferPtr;
538
539 /// Relocations - These are the relocations that the function needs, as
540 /// emitted.
541 std::vector<MachineRelocation> Relocations;
542
543 /// MBBLocations - This vector is a mapping from MBB ID's to their address.
544 /// It is filled in by the StartMachineBasicBlock callback and queried by
545 /// the getMachineBasicBlockAddress callback.
Evan Cheng6e561c72008-12-10 02:32:19 +0000546 std::vector<uintptr_t> MBBLocations;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000547
548 /// ConstantPool - The constant pool for the current function.
549 ///
550 MachineConstantPool *ConstantPool;
551
552 /// ConstantPoolBase - A pointer to the first entry in the constant pool.
553 ///
554 void *ConstantPoolBase;
555
556 /// JumpTable - The jump tables for the current function.
557 ///
558 MachineJumpTableInfo *JumpTable;
559
560 /// JumpTableBase - A pointer to the first entry in the jump table.
561 ///
562 void *JumpTableBase;
Evan Chengaf743252008-01-05 02:26:58 +0000563
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000564 /// Resolver - This contains info about the currently resolved functions.
565 JITResolver Resolver;
Nicolas Geoffray0e757e12008-02-13 18:39:37 +0000566
567 /// DE - The dwarf emitter for the jit.
568 JITDwarfEmitter *DE;
569
570 /// LabelLocations - This vector is a mapping from Label ID's to their
571 /// address.
Evan Cheng6e561c72008-12-10 02:32:19 +0000572 std::vector<uintptr_t> LabelLocations;
Nicolas Geoffray0e757e12008-02-13 18:39:37 +0000573
574 /// MMI - Machine module info for exception informations
575 MachineModuleInfo* MMI;
576
Dale Johannesen0ba4a0e2008-08-07 01:30:15 +0000577 // GVSet - a set to keep track of which globals have been seen
Evan Cheng68e5fc32008-11-07 09:02:17 +0000578 SmallPtrSet<const GlobalVariable*, 8> GVSet;
Dale Johannesen0ba4a0e2008-08-07 01:30:15 +0000579
Nate Begemana5645962009-03-05 06:34:37 +0000580 // CurFn - The llvm function being emitted. Only valid during
581 // finishFunction().
582 const Function *CurFn;
583
584 // CurFnStubUses - For a given Function, a vector of stubs that it
585 // references. This facilitates the JIT detecting that a stub is no
586 // longer used, so that it may be deallocated.
587 DenseMap<const Function *, SmallVector<void*, 1> > CurFnStubUses;
588
589 // StubFnRefs - For a given pointer to a stub, a set of Functions which
590 // reference the stub. When the count of a stub's references drops to zero,
591 // the stub is unused.
592 DenseMap<void *, SmallPtrSet<const Function*, 1> > StubFnRefs;
593
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000594 public:
Nate Begemana5645962009-03-05 06:34:37 +0000595 JITEmitter(JIT &jit, JITMemoryManager *JMM) : Resolver(jit), CurFn(0) {
Chris Lattnere44be002007-12-06 01:08:09 +0000596 MemMgr = JMM ? JMM : JITMemoryManager::CreateDefaultMemManager();
Chris Lattnerc8ad39c2007-12-05 23:39:57 +0000597 if (jit.getJITInfo().needsGOT()) {
598 MemMgr->AllocateGOT();
599 DOUT << "JIT is managing a GOT\n";
600 }
Nicolas Geoffray0e757e12008-02-13 18:39:37 +0000601
602 if (ExceptionHandling) DE = new JITDwarfEmitter(jit);
Chris Lattnerc8ad39c2007-12-05 23:39:57 +0000603 }
604 ~JITEmitter() {
605 delete MemMgr;
Nicolas Geoffray0e757e12008-02-13 18:39:37 +0000606 if (ExceptionHandling) delete DE;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000607 }
Evan Cheng89b29a12008-08-20 00:28:12 +0000608
609 /// classof - Methods for support type inquiry through isa, cast, and
610 /// dyn_cast:
611 ///
612 static inline bool classof(const JITEmitter*) { return true; }
613 static inline bool classof(const MachineCodeEmitter*) { return true; }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000614
615 JITResolver &getJITResolver() { return Resolver; }
616
617 virtual void startFunction(MachineFunction &F);
618 virtual bool finishFunction(MachineFunction &F);
619
620 void emitConstantPool(MachineConstantPool *MCP);
621 void initJumpTableInfo(MachineJumpTableInfo *MJTI);
622 void emitJumpTableInfo(MachineJumpTableInfo *MJTI);
623
Evan Cheng2c3267a2008-11-08 08:02:53 +0000624 virtual void startGVStub(const GlobalValue* GV, unsigned StubSize,
Nicolas Geoffray2b483b52008-04-16 20:46:05 +0000625 unsigned Alignment = 1);
Nate Begeman7b1a8472009-02-18 08:31:02 +0000626 virtual void startGVStub(const GlobalValue* GV, void *Buffer,
627 unsigned StubSize);
Evan Cheng2c3267a2008-11-08 08:02:53 +0000628 virtual void* finishGVStub(const GlobalValue *GV);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000629
Nuno Lopes1ab7adc2008-10-21 11:42:16 +0000630 /// allocateSpace - Reserves space in the current block if any, or
631 /// allocate a new one of the given size.
Evan Cheng6e561c72008-12-10 02:32:19 +0000632 virtual void *allocateSpace(uintptr_t Size, unsigned Alignment);
Nuno Lopes1ab7adc2008-10-21 11:42:16 +0000633
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000634 virtual void addRelocation(const MachineRelocation &MR) {
635 Relocations.push_back(MR);
636 }
637
638 virtual void StartMachineBasicBlock(MachineBasicBlock *MBB) {
639 if (MBBLocations.size() <= (unsigned)MBB->getNumber())
640 MBBLocations.resize((MBB->getNumber()+1)*2);
641 MBBLocations[MBB->getNumber()] = getCurrentPCValue();
Evan Cheng7323eb52008-11-07 22:30:29 +0000642 DOUT << "JIT: Emitting BB" << MBB->getNumber() << " at ["
643 << (void*) getCurrentPCValue() << "]\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000644 }
645
Evan Cheng6e561c72008-12-10 02:32:19 +0000646 virtual uintptr_t getConstantPoolEntryAddress(unsigned Entry) const;
647 virtual uintptr_t getJumpTableEntryAddress(unsigned Entry) const;
Evan Chengaf743252008-01-05 02:26:58 +0000648
Evan Cheng6e561c72008-12-10 02:32:19 +0000649 virtual uintptr_t getMachineBasicBlockAddress(MachineBasicBlock *MBB) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000650 assert(MBBLocations.size() > (unsigned)MBB->getNumber() &&
651 MBBLocations[MBB->getNumber()] && "MBB not emitted!");
652 return MBBLocations[MBB->getNumber()];
653 }
654
Nate Begemana5645962009-03-05 06:34:37 +0000655 void AddStubToCurrentFunction(void *Stub);
656
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000657 /// deallocateMemForFunction - Deallocate all memory for the specified
658 /// function body.
Nate Begemana5645962009-03-05 06:34:37 +0000659 void deallocateMemForFunction(Function *F);
Nicolas Geoffray0e757e12008-02-13 18:39:37 +0000660
661 virtual void emitLabel(uint64_t LabelID) {
662 if (LabelLocations.size() <= LabelID)
663 LabelLocations.resize((LabelID+1)*2);
664 LabelLocations[LabelID] = getCurrentPCValue();
665 }
666
Evan Cheng6e561c72008-12-10 02:32:19 +0000667 virtual uintptr_t getLabelAddress(uint64_t LabelID) const {
Nicolas Geoffray0e757e12008-02-13 18:39:37 +0000668 assert(LabelLocations.size() > (unsigned)LabelID &&
669 LabelLocations[LabelID] && "Label not emitted!");
670 return LabelLocations[LabelID];
671 }
672
673 virtual void setModuleInfo(MachineModuleInfo* Info) {
674 MMI = Info;
675 if (ExceptionHandling) DE->setModuleInfo(Info);
676 }
677
Jim Grosbach724b1812008-10-03 16:17:20 +0000678 void setMemoryExecutable(void) {
679 MemMgr->setMemoryExecutable();
680 }
Nate Begeman7b1a8472009-02-18 08:31:02 +0000681
682 JITMemoryManager *getMemMgr(void) const { return MemMgr; }
Jim Grosbach724b1812008-10-03 16:17:20 +0000683
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000684 private:
685 void *getPointerToGlobal(GlobalValue *GV, void *Reference, bool NoNeedStub);
Evan Chengb0ebcb42008-11-10 01:52:24 +0000686 void *getPointerToGVIndirectSym(GlobalValue *V, void *Reference,
Evan Cheng221548c2008-11-10 23:26:16 +0000687 bool NoNeedStub);
Dale Johannesen0ba4a0e2008-08-07 01:30:15 +0000688 unsigned addSizeOfGlobal(const GlobalVariable *GV, unsigned Size);
689 unsigned addSizeOfGlobalsInConstantVal(const Constant *C, unsigned Size);
690 unsigned addSizeOfGlobalsInInitializer(const Constant *Init, unsigned Size);
691 unsigned GetSizeOfGlobalsInBytes(MachineFunction &MF);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000692 };
693}
694
695void *JITEmitter::getPointerToGlobal(GlobalValue *V, void *Reference,
696 bool DoesntNeedStub) {
Nate Begeman7b1a8472009-02-18 08:31:02 +0000697 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(V))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000698 return TheJIT->getOrEmitGlobalVariable(GV);
Nate Begeman7b1a8472009-02-18 08:31:02 +0000699
Chris Lattner44d8ea72008-06-25 20:21:35 +0000700 if (GlobalAlias *GA = dyn_cast<GlobalAlias>(V))
Anton Korobeynikovc7b90912008-09-09 20:05:04 +0000701 return TheJIT->getPointerToGlobal(GA->resolveAliasedGlobal(false));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000702
703 // If we have already compiled the function, return a pointer to its body.
704 Function *F = cast<Function>(V);
Evan Cheng6e4b7632008-11-13 21:50:50 +0000705 void *ResultPtr;
Nate Begemana5645962009-03-05 06:34:37 +0000706 if (!DoesntNeedStub && !TheJIT->isLazyCompilationDisabled()) {
Evan Cheng6e4b7632008-11-13 21:50:50 +0000707 // Return the function stub if it's already created.
708 ResultPtr = Resolver.getFunctionStubIfAvailable(F);
Nate Begemana5645962009-03-05 06:34:37 +0000709 if (ResultPtr)
710 AddStubToCurrentFunction(ResultPtr);
711 } else {
Evan Cheng6e4b7632008-11-13 21:50:50 +0000712 ResultPtr = TheJIT->getPointerToGlobalIfAvailable(F);
Nate Begemana5645962009-03-05 06:34:37 +0000713 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000714 if (ResultPtr) return ResultPtr;
715
Nate Begeman7b1a8472009-02-18 08:31:02 +0000716 // If this is an external function pointer, we can force the JIT to
Nate Begeman165818c2009-03-07 06:41:19 +0000717 // 'compile' it, which really just adds it to the map. In dlsym mode,
718 // external functions are forced through a stub, regardless of reloc type.
719 if (F->isDeclaration() && !F->hasNotBeenReadFromBitcode() &&
720 DoesntNeedStub && !TheJIT->areDlsymStubsEnabled())
Nate Begeman7b1a8472009-02-18 08:31:02 +0000721 return TheJIT->getPointerToFunction(F);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000722
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000723 // Okay, the function has not been compiled yet, if the target callback
724 // mechanism is capable of rewriting the instruction directly, prefer to do
Nate Begeman165818c2009-03-07 06:41:19 +0000725 // that instead of emitting a stub. This uses the lazy resolver, so is not
726 // legal if lazy compilation is disabled.
727 if (DoesntNeedStub && !TheJIT->isLazyCompilationDisabled())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000728 return Resolver.AddCallbackAtLocation(F, Reference);
729
Nate Begeman165818c2009-03-07 06:41:19 +0000730 // Otherwise, we have to emit a stub.
Nate Begemana5645962009-03-05 06:34:37 +0000731 void *StubAddr = Resolver.getFunctionStub(F);
732
733 // Add the stub to the current function's list of referenced stubs, so we can
Nate Begeman165818c2009-03-07 06:41:19 +0000734 // deallocate them if the current function is ever freed. It's possible to
735 // return null from getFunctionStub in the case of a weak extern that fails
736 // to resolve.
737 if (StubAddr)
738 AddStubToCurrentFunction(StubAddr);
739
Nate Begemana5645962009-03-05 06:34:37 +0000740 return StubAddr;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000741}
742
Evan Chengb0ebcb42008-11-10 01:52:24 +0000743void *JITEmitter::getPointerToGVIndirectSym(GlobalValue *V, void *Reference,
Evan Cheng221548c2008-11-10 23:26:16 +0000744 bool NoNeedStub) {
Nate Begemana5645962009-03-05 06:34:37 +0000745 // Make sure GV is emitted first, and create a stub containing the fully
746 // resolved address.
Evan Cheng28e7e162008-01-04 10:46:51 +0000747 void *GVAddress = getPointerToGlobal(V, Reference, true);
Nate Begemana5645962009-03-05 06:34:37 +0000748 void *StubAddr = Resolver.getGlobalValueIndirectSym(V, GVAddress);
749
750 // Add the stub to the current function's list of referenced stubs, so we can
751 // deallocate them if the current function is ever freed.
752 AddStubToCurrentFunction(StubAddr);
753
754 return StubAddr;
755}
756
757void JITEmitter::AddStubToCurrentFunction(void *StubAddr) {
758 if (!TheJIT->areDlsymStubsEnabled())
759 return;
760
761 assert(CurFn && "Stub added to current function, but current function is 0!");
762
763 SmallVectorImpl<void*> &StubsUsed = CurFnStubUses[CurFn];
764 StubsUsed.push_back(StubAddr);
765
766 SmallPtrSet<const Function *, 1> &FnRefs = StubFnRefs[StubAddr];
767 FnRefs.insert(CurFn);
Evan Cheng28e7e162008-01-04 10:46:51 +0000768}
769
Nicolas Geoffray68847972008-04-18 20:59:31 +0000770static unsigned GetConstantPoolSizeInBytes(MachineConstantPool *MCP) {
771 const std::vector<MachineConstantPoolEntry> &Constants = MCP->getConstants();
772 if (Constants.empty()) return 0;
773
774 MachineConstantPoolEntry CPE = Constants.back();
775 unsigned Size = CPE.Offset;
776 const Type *Ty = CPE.isMachineConstantPoolEntry()
777 ? CPE.Val.MachineCPVal->getType() : CPE.Val.ConstVal->getType();
Duncan Sandsd68f13b2009-01-12 20:38:59 +0000778 Size += TheJIT->getTargetData()->getTypePaddedSize(Ty);
Nicolas Geoffray68847972008-04-18 20:59:31 +0000779 return Size;
780}
781
782static unsigned GetJumpTableSizeInBytes(MachineJumpTableInfo *MJTI) {
783 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
784 if (JT.empty()) return 0;
785
786 unsigned NumEntries = 0;
787 for (unsigned i = 0, e = JT.size(); i != e; ++i)
788 NumEntries += JT[i].MBBs.size();
789
790 unsigned EntrySize = MJTI->getEntrySize();
791
792 return NumEntries * EntrySize;
793}
794
Nicolas Geoffray5a80b292008-04-20 23:39:44 +0000795static uintptr_t RoundUpToAlign(uintptr_t Size, unsigned Alignment) {
Nicolas Geoffray68847972008-04-18 20:59:31 +0000796 if (Alignment == 0) Alignment = 1;
Nicolas Geoffray5a80b292008-04-20 23:39:44 +0000797 // Since we do not know where the buffer will be allocated, be pessimistic.
798 return Size + Alignment;
Nicolas Geoffray68847972008-04-18 20:59:31 +0000799}
Evan Cheng28e7e162008-01-04 10:46:51 +0000800
Dale Johannesen0ba4a0e2008-08-07 01:30:15 +0000801/// addSizeOfGlobal - add the size of the global (plus any alignment padding)
802/// into the running total Size.
803
804unsigned JITEmitter::addSizeOfGlobal(const GlobalVariable *GV, unsigned Size) {
805 const Type *ElTy = GV->getType()->getElementType();
Duncan Sandsd68f13b2009-01-12 20:38:59 +0000806 size_t GVSize = (size_t)TheJIT->getTargetData()->getTypePaddedSize(ElTy);
Dale Johannesen0ba4a0e2008-08-07 01:30:15 +0000807 size_t GVAlign =
808 (size_t)TheJIT->getTargetData()->getPreferredAlignment(GV);
Evan Chengd6599362008-11-06 17:46:04 +0000809 DOUT << "JIT: Adding in size " << GVSize << " alignment " << GVAlign;
Dale Johannesen0ba4a0e2008-08-07 01:30:15 +0000810 DEBUG(GV->dump());
811 // Assume code section ends with worst possible alignment, so first
812 // variable needs maximal padding.
813 if (Size==0)
814 Size = 1;
815 Size = ((Size+GVAlign-1)/GVAlign)*GVAlign;
816 Size += GVSize;
817 return Size;
818}
819
820/// addSizeOfGlobalsInConstantVal - find any globals that we haven't seen yet
821/// but are referenced from the constant; put them in GVSet and add their
822/// size into the running total Size.
823
824unsigned JITEmitter::addSizeOfGlobalsInConstantVal(const Constant *C,
825 unsigned Size) {
826 // If its undefined, return the garbage.
827 if (isa<UndefValue>(C))
828 return Size;
829
830 // If the value is a ConstantExpr
831 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
832 Constant *Op0 = CE->getOperand(0);
833 switch (CE->getOpcode()) {
834 case Instruction::GetElementPtr:
835 case Instruction::Trunc:
836 case Instruction::ZExt:
837 case Instruction::SExt:
838 case Instruction::FPTrunc:
839 case Instruction::FPExt:
840 case Instruction::UIToFP:
841 case Instruction::SIToFP:
842 case Instruction::FPToUI:
843 case Instruction::FPToSI:
844 case Instruction::PtrToInt:
845 case Instruction::IntToPtr:
846 case Instruction::BitCast: {
847 Size = addSizeOfGlobalsInConstantVal(Op0, Size);
848 break;
849 }
850 case Instruction::Add:
851 case Instruction::Sub:
852 case Instruction::Mul:
853 case Instruction::UDiv:
854 case Instruction::SDiv:
855 case Instruction::URem:
856 case Instruction::SRem:
857 case Instruction::And:
858 case Instruction::Or:
859 case Instruction::Xor: {
860 Size = addSizeOfGlobalsInConstantVal(Op0, Size);
861 Size = addSizeOfGlobalsInConstantVal(CE->getOperand(1), Size);
862 break;
863 }
864 default: {
865 cerr << "ConstantExpr not handled: " << *CE << "\n";
866 abort();
867 }
868 }
869 }
870
871 if (C->getType()->getTypeID() == Type::PointerTyID)
872 if (const GlobalVariable* GV = dyn_cast<GlobalVariable>(C))
Evan Cheng68e5fc32008-11-07 09:02:17 +0000873 if (GVSet.insert(GV))
Dale Johannesen0ba4a0e2008-08-07 01:30:15 +0000874 Size = addSizeOfGlobal(GV, Size);
875
876 return Size;
877}
878
879/// addSizeOfGLobalsInInitializer - handle any globals that we haven't seen yet
880/// but are referenced from the given initializer.
881
882unsigned JITEmitter::addSizeOfGlobalsInInitializer(const Constant *Init,
883 unsigned Size) {
884 if (!isa<UndefValue>(Init) &&
885 !isa<ConstantVector>(Init) &&
886 !isa<ConstantAggregateZero>(Init) &&
887 !isa<ConstantArray>(Init) &&
888 !isa<ConstantStruct>(Init) &&
889 Init->getType()->isFirstClassType())
890 Size = addSizeOfGlobalsInConstantVal(Init, Size);
891 return Size;
892}
893
894/// GetSizeOfGlobalsInBytes - walk the code for the function, looking for
895/// globals; then walk the initializers of those globals looking for more.
896/// If their size has not been considered yet, add it into the running total
897/// Size.
898
899unsigned JITEmitter::GetSizeOfGlobalsInBytes(MachineFunction &MF) {
900 unsigned Size = 0;
901 GVSet.clear();
902
903 for (MachineFunction::iterator MBB = MF.begin(), E = MF.end();
904 MBB != E; ++MBB) {
905 for (MachineBasicBlock::const_iterator I = MBB->begin(), E = MBB->end();
906 I != E; ++I) {
907 const TargetInstrDesc &Desc = I->getDesc();
908 const MachineInstr &MI = *I;
909 unsigned NumOps = Desc.getNumOperands();
910 for (unsigned CurOp = 0; CurOp < NumOps; CurOp++) {
911 const MachineOperand &MO = MI.getOperand(CurOp);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000912 if (MO.isGlobal()) {
Dale Johannesen0ba4a0e2008-08-07 01:30:15 +0000913 GlobalValue* V = MO.getGlobal();
914 const GlobalVariable *GV = dyn_cast<const GlobalVariable>(V);
915 if (!GV)
916 continue;
917 // If seen in previous function, it will have an entry here.
918 if (TheJIT->getPointerToGlobalIfAvailable(GV))
919 continue;
920 // If seen earlier in this function, it will have an entry here.
921 // FIXME: it should be possible to combine these tables, by
922 // assuming the addresses of the new globals in this module
923 // start at 0 (or something) and adjusting them after codegen
924 // complete. Another possibility is to grab a marker bit in GV.
Evan Cheng68e5fc32008-11-07 09:02:17 +0000925 if (GVSet.insert(GV))
Dale Johannesen0ba4a0e2008-08-07 01:30:15 +0000926 // A variable as yet unseen. Add in its size.
927 Size = addSizeOfGlobal(GV, Size);
928 }
929 }
930 }
931 }
Evan Chengd6599362008-11-06 17:46:04 +0000932 DOUT << "JIT: About to look through initializers\n";
Dale Johannesen0ba4a0e2008-08-07 01:30:15 +0000933 // Look for more globals that are referenced only from initializers.
934 // GVSet.end is computed each time because the set can grow as we go.
Evan Cheng68e5fc32008-11-07 09:02:17 +0000935 for (SmallPtrSet<const GlobalVariable *, 8>::iterator I = GVSet.begin();
Dale Johannesen0ba4a0e2008-08-07 01:30:15 +0000936 I != GVSet.end(); I++) {
937 const GlobalVariable* GV = *I;
938 if (GV->hasInitializer())
939 Size = addSizeOfGlobalsInInitializer(GV->getInitializer(), Size);
940 }
941
942 return Size;
943}
944
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000945void JITEmitter::startFunction(MachineFunction &F) {
Evan Chengd6599362008-11-06 17:46:04 +0000946 DOUT << "JIT: Starting CodeGen of Function "
947 << F.getFunction()->getName() << "\n";
948
Nicolas Geoffray68847972008-04-18 20:59:31 +0000949 uintptr_t ActualSize = 0;
Jim Grosbach724b1812008-10-03 16:17:20 +0000950 // Set the memory writable, if it's not already
951 MemMgr->setMemoryWritable();
Nicolas Geoffrayf748af22008-04-20 17:44:19 +0000952 if (MemMgr->NeedsExactSize()) {
Evan Chengd6599362008-11-06 17:46:04 +0000953 DOUT << "JIT: ExactSize\n";
Nicolas Geoffray68847972008-04-18 20:59:31 +0000954 const TargetInstrInfo* TII = F.getTarget().getInstrInfo();
955 MachineJumpTableInfo *MJTI = F.getJumpTableInfo();
956 MachineConstantPool *MCP = F.getConstantPool();
957
958 // Ensure the constant pool/jump table info is at least 4-byte aligned.
Nicolas Geoffray5a80b292008-04-20 23:39:44 +0000959 ActualSize = RoundUpToAlign(ActualSize, 16);
Nicolas Geoffray68847972008-04-18 20:59:31 +0000960
961 // Add the alignment of the constant pool
Nicolas Geoffray5a80b292008-04-20 23:39:44 +0000962 ActualSize = RoundUpToAlign(ActualSize,
963 1 << MCP->getConstantPoolAlignment());
Nicolas Geoffray68847972008-04-18 20:59:31 +0000964
965 // Add the constant pool size
966 ActualSize += GetConstantPoolSizeInBytes(MCP);
967
968 // Add the aligment of the jump table info
Nicolas Geoffray5a80b292008-04-20 23:39:44 +0000969 ActualSize = RoundUpToAlign(ActualSize, MJTI->getAlignment());
Nicolas Geoffray68847972008-04-18 20:59:31 +0000970
971 // Add the jump table size
972 ActualSize += GetJumpTableSizeInBytes(MJTI);
973
974 // Add the alignment for the function
Nicolas Geoffray5a80b292008-04-20 23:39:44 +0000975 ActualSize = RoundUpToAlign(ActualSize,
976 std::max(F.getFunction()->getAlignment(), 8U));
Nicolas Geoffray68847972008-04-18 20:59:31 +0000977
978 // Add the function size
979 ActualSize += TII->GetFunctionSizeInBytes(F);
Dale Johannesen0ba4a0e2008-08-07 01:30:15 +0000980
Evan Chengd6599362008-11-06 17:46:04 +0000981 DOUT << "JIT: ActualSize before globals " << ActualSize << "\n";
Dale Johannesen0ba4a0e2008-08-07 01:30:15 +0000982 // Add the size of the globals that will be allocated after this function.
983 // These are all the ones referenced from this function that were not
984 // previously allocated.
985 ActualSize += GetSizeOfGlobalsInBytes(F);
Evan Chengd6599362008-11-06 17:46:04 +0000986 DOUT << "JIT: ActualSize after globals " << ActualSize << "\n";
Nicolas Geoffray68847972008-04-18 20:59:31 +0000987 }
988
Chris Lattnerc8ad39c2007-12-05 23:39:57 +0000989 BufferBegin = CurBufferPtr = MemMgr->startFunctionBody(F.getFunction(),
990 ActualSize);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000991 BufferEnd = BufferBegin+ActualSize;
992
993 // Ensure the constant pool/jump table info is at least 4-byte aligned.
994 emitAlignment(16);
995
996 emitConstantPool(F.getConstantPool());
997 initJumpTableInfo(F.getJumpTableInfo());
998
999 // About to start emitting the machine code for the function.
1000 emitAlignment(std::max(F.getFunction()->getAlignment(), 8U));
1001 TheJIT->updateGlobalMapping(F.getFunction(), CurBufferPtr);
1002
1003 MBBLocations.clear();
1004}
1005
1006bool JITEmitter::finishFunction(MachineFunction &F) {
1007 if (CurBufferPtr == BufferEnd) {
1008 // FIXME: Allocate more space, then try again.
1009 cerr << "JIT: Ran out of space for generated machine code!\n";
1010 abort();
1011 }
1012
1013 emitJumpTableInfo(F.getJumpTableInfo());
1014
1015 // FnStart is the start of the text, not the start of the constant pool and
1016 // other per-function data.
1017 unsigned char *FnStart =
1018 (unsigned char *)TheJIT->getPointerToGlobalIfAvailable(F.getFunction());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001019
1020 if (!Relocations.empty()) {
Nate Begemana5645962009-03-05 06:34:37 +00001021 CurFn = F.getFunction();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001022 NumRelos += Relocations.size();
1023
1024 // Resolve the relocations to concrete pointers.
1025 for (unsigned i = 0, e = Relocations.size(); i != e; ++i) {
1026 MachineRelocation &MR = Relocations[i];
Evan Cheng1cf55bb2008-11-03 07:14:02 +00001027 void *ResultPtr = 0;
Evan Chengc5fe01b2008-10-29 23:54:46 +00001028 if (!MR.letTargetResolve()) {
Evan Cheng2976cd12008-11-08 07:37:34 +00001029 if (MR.isExternalSymbol()) {
Dan Gohman0ae39622009-01-05 05:32:42 +00001030 ResultPtr = TheJIT->getPointerToNamedFunction(MR.getExternalSymbol(),
1031 false);
Evan Cheng2976cd12008-11-08 07:37:34 +00001032 DOUT << "JIT: Map \'" << MR.getExternalSymbol() << "\' to ["
Evan Cheng56d1b582008-11-08 07:22:53 +00001033 << ResultPtr << "]\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001034
Evan Chengc5fe01b2008-10-29 23:54:46 +00001035 // If the target REALLY wants a stub for this function, emit it now.
1036 if (!MR.doesntNeedStub())
1037 ResultPtr = Resolver.getExternalFunctionStub(ResultPtr);
1038 } else if (MR.isGlobalValue()) {
1039 ResultPtr = getPointerToGlobal(MR.getGlobalValue(),
1040 BufferBegin+MR.getMachineCodeOffset(),
1041 MR.doesntNeedStub());
Evan Chengb0ebcb42008-11-10 01:52:24 +00001042 } else if (MR.isIndirectSymbol()) {
1043 ResultPtr = getPointerToGVIndirectSym(MR.getGlobalValue(),
Evan Cheng28e7e162008-01-04 10:46:51 +00001044 BufferBegin+MR.getMachineCodeOffset(),
1045 MR.doesntNeedStub());
Evan Chengc5fe01b2008-10-29 23:54:46 +00001046 } else if (MR.isBasicBlock()) {
1047 ResultPtr = (void*)getMachineBasicBlockAddress(MR.getBasicBlock());
1048 } else if (MR.isConstantPoolIndex()) {
1049 ResultPtr = (void*)getConstantPoolEntryAddress(MR.getConstantPoolIndex());
1050 } else {
1051 assert(MR.isJumpTableIndex());
1052 ResultPtr=(void*)getJumpTableEntryAddress(MR.getJumpTableIndex());
1053 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001054
Evan Chengc5fe01b2008-10-29 23:54:46 +00001055 MR.setResultPointer(ResultPtr);
1056 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001057
1058 // if we are managing the GOT and the relocation wants an index,
1059 // give it one
Chris Lattnerc8ad39c2007-12-05 23:39:57 +00001060 if (MR.isGOTRelative() && MemMgr->isManagingGOT()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001061 unsigned idx = Resolver.getGOTIndexForAddr(ResultPtr);
1062 MR.setGOTIndex(idx);
Chris Lattnerc8ad39c2007-12-05 23:39:57 +00001063 if (((void**)MemMgr->getGOTBase())[idx] != ResultPtr) {
Evan Chengd6599362008-11-06 17:46:04 +00001064 DOUT << "JIT: GOT was out of date for " << ResultPtr
Chris Lattnerc8ad39c2007-12-05 23:39:57 +00001065 << " pointing at " << ((void**)MemMgr->getGOTBase())[idx]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001066 << "\n";
Chris Lattnerc8ad39c2007-12-05 23:39:57 +00001067 ((void**)MemMgr->getGOTBase())[idx] = ResultPtr;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001068 }
1069 }
1070 }
1071
Nate Begemana5645962009-03-05 06:34:37 +00001072 CurFn = 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001073 TheJIT->getJITInfo().relocate(BufferBegin, &Relocations[0],
Chris Lattnerc8ad39c2007-12-05 23:39:57 +00001074 Relocations.size(), MemMgr->getGOTBase());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001075 }
1076
1077 // Update the GOT entry for F to point to the new code.
Chris Lattnerc8ad39c2007-12-05 23:39:57 +00001078 if (MemMgr->isManagingGOT()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001079 unsigned idx = Resolver.getGOTIndexForAddr((void*)BufferBegin);
Chris Lattnerc8ad39c2007-12-05 23:39:57 +00001080 if (((void**)MemMgr->getGOTBase())[idx] != (void*)BufferBegin) {
Evan Chengd6599362008-11-06 17:46:04 +00001081 DOUT << "JIT: GOT was out of date for " << (void*)BufferBegin
Chris Lattnerc8ad39c2007-12-05 23:39:57 +00001082 << " pointing at " << ((void**)MemMgr->getGOTBase())[idx] << "\n";
1083 ((void**)MemMgr->getGOTBase())[idx] = (void*)BufferBegin;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001084 }
1085 }
1086
Nuno Lopes1ab7adc2008-10-21 11:42:16 +00001087 unsigned char *FnEnd = CurBufferPtr;
1088
1089 MemMgr->endFunctionBody(F.getFunction(), BufferBegin, FnEnd);
Evan Cheng6e561c72008-12-10 02:32:19 +00001090
1091 if (CurBufferPtr == BufferEnd) {
1092 // FIXME: Allocate more space, then try again.
1093 cerr << "JIT: Ran out of space for generated machine code!\n";
1094 abort();
1095 }
1096
Nuno Lopes1ab7adc2008-10-21 11:42:16 +00001097 BufferBegin = CurBufferPtr = 0;
1098 NumBytes += FnEnd-FnStart;
1099
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001100 // Invalidate the icache if necessary.
Chris Lattner88f51632008-06-25 17:18:44 +00001101 sys::Memory::InvalidateInstructionCache(FnStart, FnEnd-FnStart);
Chris Lattnerf50e3572008-04-04 05:51:42 +00001102
1103 // Add it to the JIT symbol table if the host wants it.
1104 AddFunctionToSymbolTable(F.getFunction()->getNameStart(),
1105 FnStart, FnEnd-FnStart);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001106
1107 DOUT << "JIT: Finished CodeGen of [" << (void*)FnStart
1108 << "] Function: " << F.getFunction()->getName()
1109 << ": " << (FnEnd-FnStart) << " bytes of text, "
1110 << Relocations.size() << " relocations\n";
1111 Relocations.clear();
1112
Evan Chengb83f6972008-09-18 07:54:21 +00001113 // Mark code region readable and executable if it's not so already.
Jim Grosbach724b1812008-10-03 16:17:20 +00001114 MemMgr->setMemoryExecutable();
Evan Chengb83f6972008-09-18 07:54:21 +00001115
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001116#ifndef NDEBUG
Evan Cheng23dbb902008-11-05 23:44:08 +00001117 {
Evan Chengb81ef082008-11-12 08:22:43 +00001118 if (sys::hasDisassembler()) {
1119 DOUT << "JIT: Disassembled code:\n";
Evan Chengd6599362008-11-06 17:46:04 +00001120 DOUT << sys::disassembleBuffer(FnStart, FnEnd-FnStart, (uintptr_t)FnStart);
Evan Chengb81ef082008-11-12 08:22:43 +00001121 } else {
1122 DOUT << "JIT: Binary code:\n";
Evan Cheng23dbb902008-11-05 23:44:08 +00001123 DOUT << std::hex;
Evan Cheng23dbb902008-11-05 23:44:08 +00001124 unsigned char* q = FnStart;
Evan Chengb81ef082008-11-12 08:22:43 +00001125 for (int i = 0; q < FnEnd; q += 4, ++i) {
1126 if (i == 4)
1127 i = 0;
1128 if (i == 0)
1129 DOUT << "JIT: " << std::setw(8) << std::setfill('0')
1130 << (long)(q - FnStart) << ": ";
1131 bool Done = false;
1132 for (int j = 3; j >= 0; --j) {
1133 if (q + j >= FnEnd)
1134 Done = true;
1135 else
1136 DOUT << std::setw(2) << std::setfill('0') << (unsigned short)q[j];
1137 }
1138 if (Done)
1139 break;
1140 DOUT << ' ';
1141 if (i == 3)
Evan Chengca323d72008-11-06 01:18:29 +00001142 DOUT << '\n';
Evan Cheng23dbb902008-11-05 23:44:08 +00001143 }
1144 DOUT << std::dec;
Evan Chengca323d72008-11-06 01:18:29 +00001145 DOUT<< '\n';
Evan Cheng23dbb902008-11-05 23:44:08 +00001146 }
1147 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001148#endif
Nicolas Geoffray0e757e12008-02-13 18:39:37 +00001149 if (ExceptionHandling) {
Nicolas Geoffray68847972008-04-18 20:59:31 +00001150 uintptr_t ActualSize = 0;
Nicolas Geoffray0e757e12008-02-13 18:39:37 +00001151 SavedBufferBegin = BufferBegin;
1152 SavedBufferEnd = BufferEnd;
1153 SavedCurBufferPtr = CurBufferPtr;
Nicolas Geoffray68847972008-04-18 20:59:31 +00001154
Nicolas Geoffrayf748af22008-04-20 17:44:19 +00001155 if (MemMgr->NeedsExactSize()) {
1156 ActualSize = DE->GetDwarfTableSizeInBytes(F, *this, FnStart, FnEnd);
Nicolas Geoffray68847972008-04-18 20:59:31 +00001157 }
Nicolas Geoffray0e757e12008-02-13 18:39:37 +00001158
1159 BufferBegin = CurBufferPtr = MemMgr->startExceptionTable(F.getFunction(),
1160 ActualSize);
1161 BufferEnd = BufferBegin+ActualSize;
1162 unsigned char* FrameRegister = DE->EmitDwarfTable(F, *this, FnStart, FnEnd);
Chris Lattner3d46fe02008-03-07 20:05:43 +00001163 MemMgr->endExceptionTable(F.getFunction(), BufferBegin, CurBufferPtr,
1164 FrameRegister);
Nicolas Geoffray0e757e12008-02-13 18:39:37 +00001165 BufferBegin = SavedBufferBegin;
1166 BufferEnd = SavedBufferEnd;
1167 CurBufferPtr = SavedCurBufferPtr;
1168
1169 TheJIT->RegisterTable(FrameRegister);
1170 }
Evan Chengca346e62008-09-02 08:14:01 +00001171
1172 if (MMI)
1173 MMI->EndFunction();
Nicolas Geoffray0e757e12008-02-13 18:39:37 +00001174
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001175 return false;
1176}
1177
Nate Begemana5645962009-03-05 06:34:37 +00001178/// deallocateMemForFunction - Deallocate all memory for the specified
1179/// function body. Also drop any references the function has to stubs.
1180void JITEmitter::deallocateMemForFunction(Function *F) {
1181 MemMgr->deallocateMemForFunction(F);
1182
1183 // If the function did not reference any stubs, return.
1184 if (CurFnStubUses.find(F) == CurFnStubUses.end())
1185 return;
1186
1187 // For each referenced stub, erase the reference to this function, and then
1188 // erase the list of referenced stubs.
1189 SmallVectorImpl<void *> &StubList = CurFnStubUses[F];
1190 for (unsigned i = 0, e = StubList.size(); i != e; ++i) {
1191 void *Stub = StubList[i];
1192 SmallPtrSet<const Function *, 1> &FnRefs = StubFnRefs[Stub];
1193 FnRefs.erase(F);
1194
1195 // If this function was the last reference to the stub, invalidate the stub
1196 // in the JITResolver. Were there a memory manager deallocateStub routine,
1197 // we could call that at this point too.
1198 if (FnRefs.empty()) {
Nate Begeman165818c2009-03-07 06:41:19 +00001199 DOUT << "\nJIT: Invalidated Stub at [" << Stub << "]\n";
1200 GlobalValue *GV = Resolver.invalidateStub(Stub);
1201 TheJIT->updateGlobalMapping(GV, 0);
Nate Begemana5645962009-03-05 06:34:37 +00001202 StubFnRefs.erase(F);
1203 }
1204 }
1205 CurFnStubUses.erase(F);
1206}
1207
1208
Evan Cheng6e561c72008-12-10 02:32:19 +00001209void* JITEmitter::allocateSpace(uintptr_t Size, unsigned Alignment) {
Nuno Lopes1ab7adc2008-10-21 11:42:16 +00001210 if (BufferBegin)
1211 return MachineCodeEmitter::allocateSpace(Size, Alignment);
1212
1213 // create a new memory block if there is no active one.
1214 // care must be taken so that BufferBegin is invalidated when a
1215 // block is trimmed
1216 BufferBegin = CurBufferPtr = MemMgr->allocateSpace(Size, Alignment);
1217 BufferEnd = BufferBegin+Size;
1218 return CurBufferPtr;
1219}
1220
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001221void JITEmitter::emitConstantPool(MachineConstantPool *MCP) {
Evan Cheng68e5fc32008-11-07 09:02:17 +00001222 if (TheJIT->getJITInfo().hasCustomConstantPool())
Jim Grosbachbad01432008-10-30 23:44:39 +00001223 return;
Evan Cheng68e5fc32008-11-07 09:02:17 +00001224
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001225 const std::vector<MachineConstantPoolEntry> &Constants = MCP->getConstants();
1226 if (Constants.empty()) return;
1227
1228 MachineConstantPoolEntry CPE = Constants.back();
1229 unsigned Size = CPE.Offset;
1230 const Type *Ty = CPE.isMachineConstantPoolEntry()
1231 ? CPE.Val.MachineCPVal->getType() : CPE.Val.ConstVal->getType();
Duncan Sandsd68f13b2009-01-12 20:38:59 +00001232 Size += TheJIT->getTargetData()->getTypePaddedSize(Ty);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001233
Evan Cheng71c58872008-04-12 00:22:01 +00001234 unsigned Align = 1 << MCP->getConstantPoolAlignment();
1235 ConstantPoolBase = allocateSpace(Size, Align);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001236 ConstantPool = MCP;
1237
1238 if (ConstantPoolBase == 0) return; // Buffer overflow.
1239
Evan Cheng71c58872008-04-12 00:22:01 +00001240 DOUT << "JIT: Emitted constant pool at [" << ConstantPoolBase
1241 << "] (size: " << Size << ", alignment: " << Align << ")\n";
1242
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001243 // Initialize the memory for all of the constant pool entries.
1244 for (unsigned i = 0, e = Constants.size(); i != e; ++i) {
1245 void *CAddr = (char*)ConstantPoolBase+Constants[i].Offset;
1246 if (Constants[i].isMachineConstantPoolEntry()) {
1247 // FIXME: add support to lower machine constant pool values into bytes!
1248 cerr << "Initialize memory with machine specific constant pool entry"
1249 << " has not been implemented!\n";
1250 abort();
1251 }
1252 TheJIT->InitializeMemory(Constants[i].Val.ConstVal, CAddr);
Evan Cheng71c58872008-04-12 00:22:01 +00001253 DOUT << "JIT: CP" << i << " at [" << CAddr << "]\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001254 }
1255}
1256
1257void JITEmitter::initJumpTableInfo(MachineJumpTableInfo *MJTI) {
Evan Cheng68e5fc32008-11-07 09:02:17 +00001258 if (TheJIT->getJITInfo().hasCustomJumpTables())
1259 return;
1260
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001261 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
1262 if (JT.empty()) return;
1263
1264 unsigned NumEntries = 0;
1265 for (unsigned i = 0, e = JT.size(); i != e; ++i)
1266 NumEntries += JT[i].MBBs.size();
1267
1268 unsigned EntrySize = MJTI->getEntrySize();
1269
1270 // Just allocate space for all the jump tables now. We will fix up the actual
1271 // MBB entries in the tables after we emit the code for each block, since then
1272 // we will know the final locations of the MBBs in memory.
1273 JumpTable = MJTI;
1274 JumpTableBase = allocateSpace(NumEntries * EntrySize, MJTI->getAlignment());
1275}
1276
1277void JITEmitter::emitJumpTableInfo(MachineJumpTableInfo *MJTI) {
Evan Cheng68e5fc32008-11-07 09:02:17 +00001278 if (TheJIT->getJITInfo().hasCustomJumpTables())
1279 return;
1280
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001281 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
1282 if (JT.empty() || JumpTableBase == 0) return;
1283
1284 if (TargetMachine::getRelocationModel() == Reloc::PIC_) {
1285 assert(MJTI->getEntrySize() == 4 && "Cross JIT'ing?");
1286 // For each jump table, place the offset from the beginning of the table
1287 // to the target address.
1288 int *SlotPtr = (int*)JumpTableBase;
1289
1290 for (unsigned i = 0, e = JT.size(); i != e; ++i) {
1291 const std::vector<MachineBasicBlock*> &MBBs = JT[i].MBBs;
1292 // Store the offset of the basic block for this jump table slot in the
1293 // memory we allocated for the jump table in 'initJumpTableInfo'
Evan Cheng6e561c72008-12-10 02:32:19 +00001294 uintptr_t Base = (uintptr_t)SlotPtr;
Evan Chengaf743252008-01-05 02:26:58 +00001295 for (unsigned mi = 0, me = MBBs.size(); mi != me; ++mi) {
Evan Cheng6e561c72008-12-10 02:32:19 +00001296 uintptr_t MBBAddr = getMachineBasicBlockAddress(MBBs[mi]);
Evan Chengaf743252008-01-05 02:26:58 +00001297 *SlotPtr++ = TheJIT->getJITInfo().getPICJumpTableEntry(MBBAddr, Base);
1298 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001299 }
1300 } else {
1301 assert(MJTI->getEntrySize() == sizeof(void*) && "Cross JIT'ing?");
1302
1303 // For each jump table, map each target in the jump table to the address of
1304 // an emitted MachineBasicBlock.
1305 intptr_t *SlotPtr = (intptr_t*)JumpTableBase;
1306
1307 for (unsigned i = 0, e = JT.size(); i != e; ++i) {
1308 const std::vector<MachineBasicBlock*> &MBBs = JT[i].MBBs;
1309 // Store the address of the basic block for this jump table slot in the
1310 // memory we allocated for the jump table in 'initJumpTableInfo'
1311 for (unsigned mi = 0, me = MBBs.size(); mi != me; ++mi)
1312 *SlotPtr++ = getMachineBasicBlockAddress(MBBs[mi]);
1313 }
1314 }
1315}
1316
Evan Cheng2c3267a2008-11-08 08:02:53 +00001317void JITEmitter::startGVStub(const GlobalValue* GV, unsigned StubSize,
1318 unsigned Alignment) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001319 SavedBufferBegin = BufferBegin;
1320 SavedBufferEnd = BufferEnd;
1321 SavedCurBufferPtr = CurBufferPtr;
1322
Evan Cheng2c3267a2008-11-08 08:02:53 +00001323 BufferBegin = CurBufferPtr = MemMgr->allocateStub(GV, StubSize, Alignment);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001324 BufferEnd = BufferBegin+StubSize+1;
1325}
1326
Nate Begeman7b1a8472009-02-18 08:31:02 +00001327void JITEmitter::startGVStub(const GlobalValue* GV, void *Buffer,
1328 unsigned StubSize) {
1329 SavedBufferBegin = BufferBegin;
1330 SavedBufferEnd = BufferEnd;
1331 SavedCurBufferPtr = CurBufferPtr;
1332
1333 BufferBegin = CurBufferPtr = (unsigned char *)Buffer;
1334 BufferEnd = BufferBegin+StubSize+1;
1335}
1336
Evan Cheng2c3267a2008-11-08 08:02:53 +00001337void *JITEmitter::finishGVStub(const GlobalValue* GV) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001338 NumBytes += getCurrentPCOffset();
1339 std::swap(SavedBufferBegin, BufferBegin);
1340 BufferEnd = SavedBufferEnd;
1341 CurBufferPtr = SavedCurBufferPtr;
1342 return SavedBufferBegin;
1343}
1344
1345// getConstantPoolEntryAddress - Return the address of the 'ConstantNum' entry
1346// in the constant pool that was last emitted with the 'emitConstantPool'
1347// method.
1348//
Evan Cheng6e561c72008-12-10 02:32:19 +00001349uintptr_t JITEmitter::getConstantPoolEntryAddress(unsigned ConstantNum) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001350 assert(ConstantNum < ConstantPool->getConstants().size() &&
1351 "Invalid ConstantPoolIndex!");
Evan Cheng6e561c72008-12-10 02:32:19 +00001352 return (uintptr_t)ConstantPoolBase +
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001353 ConstantPool->getConstants()[ConstantNum].Offset;
1354}
1355
1356// getJumpTableEntryAddress - Return the address of the JumpTable with index
1357// 'Index' in the jumpp table that was last initialized with 'initJumpTableInfo'
1358//
Evan Cheng6e561c72008-12-10 02:32:19 +00001359uintptr_t JITEmitter::getJumpTableEntryAddress(unsigned Index) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001360 const std::vector<MachineJumpTableEntry> &JT = JumpTable->getJumpTables();
1361 assert(Index < JT.size() && "Invalid jump table index!");
1362
1363 unsigned Offset = 0;
1364 unsigned EntrySize = JumpTable->getEntrySize();
1365
1366 for (unsigned i = 0; i < Index; ++i)
1367 Offset += JT[i].MBBs.size();
1368
1369 Offset *= EntrySize;
1370
Evan Cheng6e561c72008-12-10 02:32:19 +00001371 return (uintptr_t)((char *)JumpTableBase + Offset);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001372}
1373
1374//===----------------------------------------------------------------------===//
1375// Public interface to this file
1376//===----------------------------------------------------------------------===//
1377
Chris Lattnere44be002007-12-06 01:08:09 +00001378MachineCodeEmitter *JIT::createEmitter(JIT &jit, JITMemoryManager *JMM) {
1379 return new JITEmitter(jit, JMM);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001380}
1381
1382// getPointerToNamedFunction - This function is used as a global wrapper to
1383// JIT::getPointerToNamedFunction for the purpose of resolving symbols when
1384// bugpoint is debugging the JIT. In that scenario, we are loading an .so and
1385// need to resolve function(s) that are being mis-codegenerated, so we need to
1386// resolve their addresses at runtime, and this is the way to do it.
1387extern "C" {
1388 void *getPointerToNamedFunction(const char *Name) {
1389 if (Function *F = TheJIT->FindFunctionNamed(Name))
1390 return TheJIT->getPointerToFunction(F);
1391 return TheJIT->getPointerToNamedFunction(Name);
1392 }
1393}
1394
1395// getPointerToFunctionOrStub - If the specified function has been
1396// code-gen'd, return a pointer to the function. If not, compile it, or use
1397// a stub to implement lazy compilation if available.
1398//
1399void *JIT::getPointerToFunctionOrStub(Function *F) {
1400 // If we have already code generated the function, just return the address.
1401 if (void *Addr = getPointerToGlobalIfAvailable(F))
1402 return Addr;
1403
1404 // Get a stub if the target supports it.
Evan Cheng89b29a12008-08-20 00:28:12 +00001405 assert(isa<JITEmitter>(MCE) && "Unexpected MCE?");
1406 JITEmitter *JE = cast<JITEmitter>(getCodeEmitter());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001407 return JE->getJITResolver().getFunctionStub(F);
1408}
1409
Nate Begeman7b1a8472009-02-18 08:31:02 +00001410void JIT::updateFunctionStub(Function *F) {
1411 // Get the empty stub we generated earlier.
1412 assert(isa<JITEmitter>(MCE) && "Unexpected MCE?");
1413 JITEmitter *JE = cast<JITEmitter>(getCodeEmitter());
1414 void *Stub = JE->getJITResolver().getFunctionStub(F);
1415
1416 // Tell the target jit info to rewrite the stub at the specified address,
1417 // rather than creating a new one.
1418 void *Addr = getPointerToGlobalIfAvailable(F);
1419 getJITInfo().emitFunctionStubAtAddr(F, Addr, Stub, *getCodeEmitter());
1420}
1421
1422/// updateDlsymStubTable - Emit the data necessary to relocate the stubs
1423/// that were emitted during code generation.
1424///
1425void JIT::updateDlsymStubTable() {
1426 assert(isa<JITEmitter>(MCE) && "Unexpected MCE?");
1427 JITEmitter *JE = cast<JITEmitter>(getCodeEmitter());
1428
1429 SmallVector<GlobalValue*, 8> GVs;
1430 SmallVector<void*, 8> Ptrs;
1431
1432 JE->getJITResolver().getRelocatableGVs(GVs, Ptrs);
1433
1434 // If there are no relocatable stubs, return.
1435 if (GVs.empty())
1436 return;
1437
1438 // If there are no new relocatable stubs, return.
1439 void *CurTable = JE->getMemMgr()->getDlsymTable();
1440 if (CurTable && (*(unsigned *)CurTable == GVs.size()))
1441 return;
1442
1443 // Calculate the size of the stub info
Nate Begeman2fd66162009-03-02 23:10:14 +00001444 unsigned offset = 4 + 4 * GVs.size() + sizeof(intptr_t) * GVs.size();
Nate Begeman7b1a8472009-02-18 08:31:02 +00001445
1446 SmallVector<unsigned, 8> Offsets;
1447 for (unsigned i = 0; i != GVs.size(); ++i) {
1448 Offsets.push_back(offset);
1449 offset += GVs[i]->getName().length() + 1;
1450 }
1451
Nate Begemana5645962009-03-05 06:34:37 +00001452 // Allocate space for the new "stub", which contains the dlsym table.
Nate Begeman7b1a8472009-02-18 08:31:02 +00001453 JE->startGVStub(0, offset, 4);
1454
1455 // Emit the number of records
1456 MCE->emitInt32(GVs.size());
1457
1458 // Emit the string offsets
1459 for (unsigned i = 0; i != GVs.size(); ++i)
1460 MCE->emitInt32(Offsets[i]);
1461
Nate Begemane1ba87f2009-03-04 19:10:38 +00001462 // Emit the pointers. Verify that they are at least 2-byte aligned, and set
1463 // the low bit to 0 == GV, 1 == Function, so that the client code doing the
1464 // relocation can write the relocated pointer at the appropriate place in
1465 // the stub.
1466 for (unsigned i = 0; i != GVs.size(); ++i) {
1467 intptr_t Ptr = (intptr_t)Ptrs[i];
1468 assert((Ptr & 1) == 0 && "Stub pointers must be at least 2-byte aligned!");
1469
1470 if (isa<Function>(GVs[i]))
1471 Ptr |= (intptr_t)1;
1472
Nate Begeman7b1a8472009-02-18 08:31:02 +00001473 if (sizeof(void *) == 8)
Nate Begemane1ba87f2009-03-04 19:10:38 +00001474 MCE->emitInt64(Ptr);
Nate Begeman7b1a8472009-02-18 08:31:02 +00001475 else
Nate Begemane1ba87f2009-03-04 19:10:38 +00001476 MCE->emitInt32(Ptr);
1477 }
Nate Begeman7b1a8472009-02-18 08:31:02 +00001478
Nate Begemana5645962009-03-05 06:34:37 +00001479 // Emit the strings.
Nate Begeman7b1a8472009-02-18 08:31:02 +00001480 for (unsigned i = 0; i != GVs.size(); ++i)
1481 MCE->emitString(GVs[i]->getName());
1482
Nate Begemana5645962009-03-05 06:34:37 +00001483 // Tell the JIT memory manager where it is. The JIT Memory Manager will
1484 // deallocate space for the old one, if one existed.
Nate Begeman7b1a8472009-02-18 08:31:02 +00001485 JE->getMemMgr()->SetDlsymTable(JE->finishGVStub(0));
1486}
1487
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001488/// freeMachineCodeForFunction - release machine code memory for given Function.
1489///
1490void JIT::freeMachineCodeForFunction(Function *F) {
Dale Johannesen0ba4a0e2008-08-07 01:30:15 +00001491
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001492 // Delete translation for this from the ExecutionEngine, so it will get
1493 // retranslated next time it is used.
Chris Lattnerf50e3572008-04-04 05:51:42 +00001494 void *OldPtr = updateGlobalMapping(F, 0);
1495
1496 if (OldPtr)
1497 RemoveFunctionFromSymbolTable(OldPtr);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001498
1499 // Free the actual memory for the function body and related stuff.
Evan Cheng89b29a12008-08-20 00:28:12 +00001500 assert(isa<JITEmitter>(MCE) && "Unexpected MCE?");
1501 cast<JITEmitter>(MCE)->deallocateMemForFunction(F);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001502}
1503