blob: 1a0bb26fbed395ae8907d2faef35c575af0ec202 [file] [log] [blame]
Chris Lattner166f2262004-11-22 22:00:25 +00001//===-- JITEmitter.cpp - Write machine code to executable memory ----------===//
Misha Brukmanf976c852005-04-21 22:55:34 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanf976c852005-04-21 22:55:34 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattnerbd199fb2002-12-24 00:01:05 +00009//
Chris Lattner5be478f2004-11-20 03:46:14 +000010// 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.
Chris Lattnerbd199fb2002-12-24 00:01:05 +000012//
13//===----------------------------------------------------------------------===//
14
Chris Lattner3785fad2003-08-05 17:00:32 +000015#define DEBUG_TYPE "jit"
Chris Lattner4d326fa2003-12-20 01:46:27 +000016#include "JIT.h"
Nicolas Geoffrayafe6c2b2008-02-13 18:39:37 +000017#include "JITDwarfEmitter.h"
Chris Lattner2c0a6a12003-11-30 04:23:21 +000018#include "llvm/Constant.h"
19#include "llvm/Module.h"
Chris Lattner5b3a4552005-03-17 15:38:16 +000020#include "llvm/Type.h"
Chris Lattnerbd199fb2002-12-24 00:01:05 +000021#include "llvm/CodeGen/MachineCodeEmitter.h"
22#include "llvm/CodeGen/MachineFunction.h"
Chris Lattner1cc08382003-01-13 01:00:12 +000023#include "llvm/CodeGen/MachineConstantPool.h"
Nate Begeman37efe672006-04-22 18:53:45 +000024#include "llvm/CodeGen/MachineJumpTableInfo.h"
Nicolas Geoffrayafe6c2b2008-02-13 18:39:37 +000025#include "llvm/CodeGen/MachineModuleInfo.h"
Chris Lattner5be478f2004-11-20 03:46:14 +000026#include "llvm/CodeGen/MachineRelocation.h"
Chris Lattner8907b4b2007-12-05 23:39:57 +000027#include "llvm/ExecutionEngine/JITMemoryManager.h"
Chris Lattner1cc08382003-01-13 01:00:12 +000028#include "llvm/Target/TargetData.h"
Chris Lattner5be478f2004-11-20 03:46:14 +000029#include "llvm/Target/TargetJITInfo.h"
Jim Laskeyacd80ac2006-12-14 19:17:33 +000030#include "llvm/Target/TargetMachine.h"
Nicolas Geoffrayafe6c2b2008-02-13 18:39:37 +000031#include "llvm/Target/TargetOptions.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000032#include "llvm/Support/Debug.h"
Chris Lattnere7fd5532006-05-08 22:00:52 +000033#include "llvm/Support/MutexGuard.h"
Anton Korobeynikovfd58e6e2007-01-23 10:26:08 +000034#include "llvm/System/Disassembler.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000035#include "llvm/ADT/Statistic.h"
Andrew Lenhartha00269b2005-07-29 23:40:16 +000036#include <algorithm>
Chris Lattnerc19aade2003-12-08 08:06:28 +000037using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000038
Chris Lattner36343732006-12-19 22:43:32 +000039STATISTIC(NumBytes, "Number of bytes of machine code compiled");
40STATISTIC(NumRelos, "Number of relocations applied");
41static JIT *TheJIT = 0;
Chris Lattner54266522004-11-20 23:57:07 +000042
Andrew Lenhartha00269b2005-07-29 23:40:16 +000043
Chris Lattner54266522004-11-20 23:57:07 +000044//===----------------------------------------------------------------------===//
45// JIT lazy compilation code.
46//
47namespace {
Reid Spenceree448632005-07-12 15:51:55 +000048 class JITResolverState {
49 private:
50 /// FunctionToStubMap - Keep track of the stub created for a particular
51 /// function so that we can reuse them if necessary.
52 std::map<Function*, void*> FunctionToStubMap;
53
54 /// StubToFunctionMap - Keep track of the function that each stub
55 /// corresponds to.
56 std::map<void*, Function*> StubToFunctionMap;
Jeff Cohen00b168892005-07-27 06:12:32 +000057
Evan Chengbe8c03f2008-01-04 10:46:51 +000058 /// GlobalToLazyPtrMap - Keep track of the lazy pointer created for a
59 /// particular GlobalVariable so that we can reuse them if necessary.
60 std::map<GlobalValue*, void*> GlobalToLazyPtrMap;
61
Reid Spenceree448632005-07-12 15:51:55 +000062 public:
63 std::map<Function*, void*>& getFunctionToStubMap(const MutexGuard& locked) {
64 assert(locked.holds(TheJIT->lock));
65 return FunctionToStubMap;
66 }
Jeff Cohen00b168892005-07-27 06:12:32 +000067
Reid Spenceree448632005-07-12 15:51:55 +000068 std::map<void*, Function*>& getStubToFunctionMap(const MutexGuard& locked) {
69 assert(locked.holds(TheJIT->lock));
70 return StubToFunctionMap;
71 }
Evan Chengbe8c03f2008-01-04 10:46:51 +000072
73 std::map<GlobalValue*, void*>&
74 getGlobalToLazyPtrMap(const MutexGuard& locked) {
75 assert(locked.holds(TheJIT->lock));
76 return GlobalToLazyPtrMap;
77 }
Reid Spenceree448632005-07-12 15:51:55 +000078 };
Jeff Cohen00b168892005-07-27 06:12:32 +000079
Chris Lattner54266522004-11-20 23:57:07 +000080 /// JITResolver - Keep track of, and resolve, call sites for functions that
81 /// have not yet been compiled.
82 class JITResolver {
Chris Lattner5e225582004-11-21 03:37:42 +000083 /// LazyResolverFn - The target lazy resolver function that we actually
84 /// rewrite instructions to use.
85 TargetJITInfo::LazyResolverFn LazyResolverFn;
86
Reid Spenceree448632005-07-12 15:51:55 +000087 JITResolverState state;
Chris Lattner54266522004-11-20 23:57:07 +000088
Chris Lattnerd91ff7c2005-04-18 01:44:27 +000089 /// ExternalFnToStubMap - This is the equivalent of FunctionToStubMap for
90 /// external functions.
91 std::map<void*, void*> ExternalFnToStubMap;
Andrew Lenharth6a974612005-07-28 12:44:13 +000092
93 //map addresses to indexes in the GOT
94 std::map<void*, unsigned> revGOTMap;
95 unsigned nextGOTIndex;
96
Chris Lattnere7484012007-02-24 02:57:03 +000097 static JITResolver *TheJITResolver;
Chris Lattner54266522004-11-20 23:57:07 +000098 public:
Dan Gohman950a4c42008-03-25 22:06:05 +000099 explicit JITResolver(JIT &jit) : nextGOTIndex(0) {
Chris Lattnere7484012007-02-24 02:57:03 +0000100 TheJIT = &jit;
101
102 LazyResolverFn = jit.getJITInfo().getLazyResolverFunction(JITCompilerFn);
103 assert(TheJITResolver == 0 && "Multiple JIT resolvers?");
104 TheJITResolver = this;
105 }
106
107 ~JITResolver() {
108 TheJITResolver = 0;
Chris Lattner5e225582004-11-21 03:37:42 +0000109 }
Chris Lattner54266522004-11-20 23:57:07 +0000110
111 /// getFunctionStub - This returns a pointer to a function stub, creating
112 /// one on demand as needed.
113 void *getFunctionStub(Function *F);
114
Chris Lattnerd91ff7c2005-04-18 01:44:27 +0000115 /// getExternalFunctionStub - Return a stub for the function at the
116 /// specified address, created lazily on demand.
117 void *getExternalFunctionStub(void *FnAddr);
118
Evan Chengbe8c03f2008-01-04 10:46:51 +0000119 /// getGlobalValueLazyPtr - Return a lazy pointer containing the specified
120 /// GV address.
121 void *getGlobalValueLazyPtr(GlobalValue *V, void *GVAddress);
122
Chris Lattner5e225582004-11-21 03:37:42 +0000123 /// AddCallbackAtLocation - If the target is capable of rewriting an
124 /// instruction without the use of a stub, record the location of the use so
125 /// we know which function is being used at the location.
126 void *AddCallbackAtLocation(Function *F, void *Location) {
Reid Spenceree448632005-07-12 15:51:55 +0000127 MutexGuard locked(TheJIT->lock);
Chris Lattner5e225582004-11-21 03:37:42 +0000128 /// Get the target-specific JIT resolver function.
Reid Spenceree448632005-07-12 15:51:55 +0000129 state.getStubToFunctionMap(locked)[Location] = F;
Chris Lattner870286a2006-06-01 17:29:22 +0000130 return (void*)(intptr_t)LazyResolverFn;
Chris Lattner5e225582004-11-21 03:37:42 +0000131 }
132
Andrew Lenharth6a974612005-07-28 12:44:13 +0000133 /// getGOTIndexForAddress - Return a new or existing index in the GOT for
Chris Lattner8907b4b2007-12-05 23:39:57 +0000134 /// an address. This function only manages slots, it does not manage the
Andrew Lenharth6a974612005-07-28 12:44:13 +0000135 /// contents of the slots or the memory associated with the GOT.
Chris Lattner8907b4b2007-12-05 23:39:57 +0000136 unsigned getGOTIndexForAddr(void *addr);
Andrew Lenharth6a974612005-07-28 12:44:13 +0000137
Chris Lattner54266522004-11-20 23:57:07 +0000138 /// JITCompilerFn - This function is called to resolve a stub to a compiled
139 /// address. If the LLVM Function corresponding to the stub has not yet
140 /// been compiled, this function compiles it first.
141 static void *JITCompilerFn(void *Stub);
142 };
143}
144
Chris Lattnere7484012007-02-24 02:57:03 +0000145JITResolver *JITResolver::TheJITResolver = 0;
Chris Lattner54266522004-11-20 23:57:07 +0000146
Evan Cheng55b50532006-07-27 06:33:55 +0000147#if (defined(__POWERPC__) || defined (__ppc__) || defined(_POWER)) && \
148 defined(__APPLE__)
149extern "C" void sys_icache_invalidate(const void *Addr, size_t len);
150#endif
151
152/// synchronizeICache - On some targets, the JIT emitted code must be
153/// explicitly refetched to ensure correct execution.
154static void synchronizeICache(const void *Addr, size_t len) {
155#if (defined(__POWERPC__) || defined (__ppc__) || defined(_POWER)) && \
156 defined(__APPLE__)
Jim Laskey2e9f3682006-07-27 13:40:34 +0000157 sys_icache_invalidate(Addr, len);
Evan Cheng55b50532006-07-27 06:33:55 +0000158#endif
159}
160
Chris Lattner54266522004-11-20 23:57:07 +0000161/// getFunctionStub - This returns a pointer to a function stub, creating
162/// one on demand as needed.
163void *JITResolver::getFunctionStub(Function *F) {
Reid Spenceree448632005-07-12 15:51:55 +0000164 MutexGuard locked(TheJIT->lock);
165
Chris Lattner54266522004-11-20 23:57:07 +0000166 // If we already have a stub for this function, recycle it.
Reid Spenceree448632005-07-12 15:51:55 +0000167 void *&Stub = state.getFunctionToStubMap(locked)[F];
Chris Lattner54266522004-11-20 23:57:07 +0000168 if (Stub) return Stub;
169
Chris Lattnerb43dbdc2004-11-22 07:24:43 +0000170 // Call the lazy resolver function unless we already KNOW it is an external
171 // function, in which case we just skip the lazy resolution step.
Chris Lattner870286a2006-06-01 17:29:22 +0000172 void *Actual = (void*)(intptr_t)LazyResolverFn;
Gabor Greifa99be512007-07-05 17:07:56 +0000173 if (F->isDeclaration() && !F->hasNotBeenReadFromBitcode())
Chris Lattnerb43dbdc2004-11-22 07:24:43 +0000174 Actual = TheJIT->getPointerToFunction(F);
Misha Brukmanf976c852005-04-21 22:55:34 +0000175
Chris Lattner54266522004-11-20 23:57:07 +0000176 // Otherwise, codegen a new stub. For now, the stub will call the lazy
177 // resolver function.
Nicolas Geoffray51cc3c12008-04-16 20:46:05 +0000178 Stub = TheJIT->getJITInfo().emitFunctionStub(F, Actual,
Chris Lattnere7484012007-02-24 02:57:03 +0000179 *TheJIT->getCodeEmitter());
Chris Lattnerb43dbdc2004-11-22 07:24:43 +0000180
Chris Lattner870286a2006-06-01 17:29:22 +0000181 if (Actual != (void*)(intptr_t)LazyResolverFn) {
Chris Lattnerb43dbdc2004-11-22 07:24:43 +0000182 // If we are getting the stub for an external function, we really want the
183 // address of the stub in the GlobalAddressMap for the JIT, not the address
184 // of the external function.
185 TheJIT->updateGlobalMapping(F, Stub);
186 }
Chris Lattner54266522004-11-20 23:57:07 +0000187
Bill Wendling832171c2006-12-07 20:04:42 +0000188 DOUT << "JIT: Stub emitted at [" << Stub << "] for function '"
189 << F->getName() << "'\n";
Chris Lattnercb479412004-11-21 03:44:32 +0000190
Chris Lattner54266522004-11-20 23:57:07 +0000191 // Finally, keep track of the stub-to-Function mapping so that the
192 // JITCompilerFn knows which function to compile!
Reid Spenceree448632005-07-12 15:51:55 +0000193 state.getStubToFunctionMap(locked)[Stub] = F;
Chris Lattner54266522004-11-20 23:57:07 +0000194 return Stub;
195}
196
Evan Chengbe8c03f2008-01-04 10:46:51 +0000197/// getGlobalValueLazyPtr - Return a lazy pointer containing the specified
198/// GV address.
199void *JITResolver::getGlobalValueLazyPtr(GlobalValue *GV, void *GVAddress) {
200 MutexGuard locked(TheJIT->lock);
201
202 // If we already have a stub for this global variable, recycle it.
203 void *&LazyPtr = state.getGlobalToLazyPtrMap(locked)[GV];
204 if (LazyPtr) return LazyPtr;
205
206 // Otherwise, codegen a new lazy pointer.
Nicolas Geoffray51cc3c12008-04-16 20:46:05 +0000207 LazyPtr = TheJIT->getJITInfo().emitGlobalValueLazyPtr(GV, GVAddress,
Evan Chengbe8c03f2008-01-04 10:46:51 +0000208 *TheJIT->getCodeEmitter());
209
210 DOUT << "JIT: Stub emitted at [" << LazyPtr << "] for GV '"
211 << GV->getName() << "'\n";
212
213 return LazyPtr;
214}
215
Chris Lattnerd91ff7c2005-04-18 01:44:27 +0000216/// getExternalFunctionStub - Return a stub for the function at the
217/// specified address, created lazily on demand.
218void *JITResolver::getExternalFunctionStub(void *FnAddr) {
219 // If we already have a stub for this function, recycle it.
220 void *&Stub = ExternalFnToStubMap[FnAddr];
221 if (Stub) return Stub;
222
Nicolas Geoffray51cc3c12008-04-16 20:46:05 +0000223 Stub = TheJIT->getJITInfo().emitFunctionStub(0, FnAddr,
Chris Lattnere7484012007-02-24 02:57:03 +0000224 *TheJIT->getCodeEmitter());
Evan Cheng55fc2802006-07-25 20:40:54 +0000225
Bill Wendling832171c2006-12-07 20:04:42 +0000226 DOUT << "JIT: Stub emitted at [" << Stub
227 << "] for external function at '" << FnAddr << "'\n";
Chris Lattnerd91ff7c2005-04-18 01:44:27 +0000228 return Stub;
229}
230
Andrew Lenharth6a974612005-07-28 12:44:13 +0000231unsigned JITResolver::getGOTIndexForAddr(void* addr) {
232 unsigned idx = revGOTMap[addr];
233 if (!idx) {
234 idx = ++nextGOTIndex;
235 revGOTMap[addr] = idx;
Evan Cheng97b8c402008-04-12 00:22:01 +0000236 DOUT << "Adding GOT entry " << idx << " for addr " << addr << "\n";
Andrew Lenharth6a974612005-07-28 12:44:13 +0000237 }
238 return idx;
239}
Chris Lattnerd91ff7c2005-04-18 01:44:27 +0000240
Chris Lattner54266522004-11-20 23:57:07 +0000241/// JITCompilerFn - This function is called when a lazy compilation stub has
242/// been entered. It looks up which function this stub corresponds to, compiles
243/// it if necessary, then returns the resultant function pointer.
244void *JITResolver::JITCompilerFn(void *Stub) {
Chris Lattnere7484012007-02-24 02:57:03 +0000245 JITResolver &JR = *TheJITResolver;
Misha Brukmanf976c852005-04-21 22:55:34 +0000246
Reid Spenceree448632005-07-12 15:51:55 +0000247 MutexGuard locked(TheJIT->lock);
248
Chris Lattner54266522004-11-20 23:57:07 +0000249 // The address given to us for the stub may not be exactly right, it might be
250 // a little bit after the stub. As such, use upper_bound to find it.
251 std::map<void*, Function*>::iterator I =
Reid Spenceree448632005-07-12 15:51:55 +0000252 JR.state.getStubToFunctionMap(locked).upper_bound(Stub);
Chris Lattner21998772006-01-07 06:20:51 +0000253 assert(I != JR.state.getStubToFunctionMap(locked).begin() &&
254 "This is not a known stub!");
Chris Lattner54266522004-11-20 23:57:07 +0000255 Function *F = (--I)->second;
256
Evan Cheng9da60f92007-06-30 00:10:37 +0000257 // If we have already code generated the function, just return the address.
258 void *Result = TheJIT->getPointerToGlobalIfAvailable(F);
Chris Lattner9cab56d2006-11-09 19:32:13 +0000259
Evan Cheng9da60f92007-06-30 00:10:37 +0000260 if (!Result) {
261 // Otherwise we don't have it, do lazy compilation now.
262
263 // If lazy compilation is disabled, emit a useful error message and abort.
264 if (TheJIT->isLazyCompilationDisabled()) {
265 cerr << "LLVM JIT requested to do lazy compilation of function '"
266 << F->getName() << "' when lazy compiles are disabled!\n";
267 abort();
268 }
269
270 // We might like to remove the stub from the StubToFunction map.
271 // We can't do that! Multiple threads could be stuck, waiting to acquire the
272 // lock above. As soon as the 1st function finishes compiling the function,
273 // the next one will be released, and needs to be able to find the function
274 // it needs to call.
275 //JR.state.getStubToFunctionMap(locked).erase(I);
Chris Lattner54266522004-11-20 23:57:07 +0000276
Evan Cheng9da60f92007-06-30 00:10:37 +0000277 DOUT << "JIT: Lazily resolving function '" << F->getName()
278 << "' In stub ptr = " << Stub << " actual ptr = "
279 << I->first << "\n";
Chris Lattner54266522004-11-20 23:57:07 +0000280
Evan Cheng9da60f92007-06-30 00:10:37 +0000281 Result = TheJIT->getPointerToFunction(F);
282 }
Chris Lattner54266522004-11-20 23:57:07 +0000283
284 // We don't need to reuse this stub in the future, as F is now compiled.
Reid Spenceree448632005-07-12 15:51:55 +0000285 JR.state.getFunctionToStubMap(locked).erase(F);
Chris Lattner54266522004-11-20 23:57:07 +0000286
287 // FIXME: We could rewrite all references to this stub if we knew them.
Andrew Lenharth6a974612005-07-28 12:44:13 +0000288
Jeff Cohend29b6aa2005-07-30 18:33:25 +0000289 // What we will do is set the compiled function address to map to the
290 // same GOT entry as the stub so that later clients may update the GOT
Andrew Lenharth6a974612005-07-28 12:44:13 +0000291 // if they see it still using the stub address.
292 // Note: this is done so the Resolver doesn't have to manage GOT memory
293 // Do this without allocating map space if the target isn't using a GOT
294 if(JR.revGOTMap.find(Stub) != JR.revGOTMap.end())
295 JR.revGOTMap[Result] = JR.revGOTMap[Stub];
296
Chris Lattner54266522004-11-20 23:57:07 +0000297 return Result;
298}
Chris Lattner688506d2003-08-14 18:35:27 +0000299
Chris Lattner8ac66c12008-04-04 05:51:42 +0000300//===----------------------------------------------------------------------===//
301// Function Index Support
302
303// On MacOS we generate an index of currently JIT'd functions so that
304// performance tools can determine a symbol name and accurate code range for a
305// PC value. Because performance tools are generally asynchronous, the code
306// below is written with the hope that it could be interrupted at any time and
307// have useful answers. However, we don't go crazy with atomic operations, we
308// just do a "reasonable effort".
309#ifdef __APPLE__
Chris Lattner6098e4b2008-04-11 18:11:56 +0000310#define ENABLE_JIT_SYMBOL_TABLE 1
Chris Lattner8ac66c12008-04-04 05:51:42 +0000311#endif
312
313/// JitSymbolEntry - Each function that is JIT compiled results in one of these
314/// being added to an array of symbols. This indicates the name of the function
315/// as well as the address range it occupies. This allows the client to map
316/// from a PC value to the name of the function.
317struct JitSymbolEntry {
318 const char *FnName; // FnName - a strdup'd string.
319 void *FnStart;
320 intptr_t FnSize;
321};
322
323
324struct JitSymbolTable {
325 /// NextPtr - This forms a linked list of JitSymbolTable entries. This
326 /// pointer is not used right now, but might be used in the future. Consider
327 /// it reserved for future use.
328 JitSymbolTable *NextPtr;
329
330 /// Symbols - This is an array of JitSymbolEntry entries. Only the first
331 /// 'NumSymbols' symbols are valid.
332 JitSymbolEntry *Symbols;
333
334 /// NumSymbols - This indicates the number entries in the Symbols array that
335 /// are valid.
336 unsigned NumSymbols;
337
338 /// NumAllocated - This indicates the amount of space we have in the Symbols
339 /// array. This is a private field that should not be read by external tools.
340 unsigned NumAllocated;
341};
342
343#if ENABLE_JIT_SYMBOL_TABLE
344JitSymbolTable *__jitSymbolTable;
345#endif
346
347static void AddFunctionToSymbolTable(const char *FnName,
348 void *FnStart, intptr_t FnSize) {
349 assert(FnName != 0 && FnStart != 0 && "Bad symbol to add");
350 JitSymbolTable **SymTabPtrPtr = 0;
351#if !ENABLE_JIT_SYMBOL_TABLE
352 return;
353#else
354 SymTabPtrPtr = &__jitSymbolTable;
355#endif
356
357 // If this is the first entry in the symbol table, add the JitSymbolTable
358 // index.
359 if (*SymTabPtrPtr == 0) {
360 JitSymbolTable *New = new JitSymbolTable();
361 New->NextPtr = 0;
362 New->Symbols = 0;
363 New->NumSymbols = 0;
364 New->NumAllocated = 0;
365 *SymTabPtrPtr = New;
366 }
367
368 JitSymbolTable *SymTabPtr = *SymTabPtrPtr;
369
370 // If we have space in the table, reallocate the table.
371 if (SymTabPtr->NumSymbols >= SymTabPtr->NumAllocated) {
372 // If we don't have space, reallocate the table.
Chris Lattner3b374482008-04-13 07:04:56 +0000373 unsigned NewSize = std::max(64U, SymTabPtr->NumAllocated*2);
Chris Lattner8ac66c12008-04-04 05:51:42 +0000374 JitSymbolEntry *NewSymbols = new JitSymbolEntry[NewSize];
375 JitSymbolEntry *OldSymbols = SymTabPtr->Symbols;
376
377 // Copy the old entries over.
378 memcpy(NewSymbols, OldSymbols,
Chris Lattner3b374482008-04-13 07:04:56 +0000379 SymTabPtr->NumSymbols*sizeof(OldSymbols[0]));
Chris Lattner8ac66c12008-04-04 05:51:42 +0000380
381 // Swap the new symbols in, delete the old ones.
382 SymTabPtr->Symbols = NewSymbols;
Chris Lattner3b374482008-04-13 07:04:56 +0000383 SymTabPtr->NumAllocated = NewSize;
Chris Lattner8ac66c12008-04-04 05:51:42 +0000384 delete [] OldSymbols;
385 }
386
387 // Otherwise, we have enough space, just tack it onto the end of the array.
388 JitSymbolEntry &Entry = SymTabPtr->Symbols[SymTabPtr->NumSymbols];
389 Entry.FnName = strdup(FnName);
390 Entry.FnStart = FnStart;
391 Entry.FnSize = FnSize;
392 ++SymTabPtr->NumSymbols;
393}
394
395static void RemoveFunctionFromSymbolTable(void *FnStart) {
396 assert(FnStart && "Invalid function pointer");
397 JitSymbolTable **SymTabPtrPtr = 0;
398#if !ENABLE_JIT_SYMBOL_TABLE
399 return;
400#else
401 SymTabPtrPtr = &__jitSymbolTable;
402#endif
403
404 JitSymbolTable *SymTabPtr = *SymTabPtrPtr;
405 JitSymbolEntry *Symbols = SymTabPtr->Symbols;
406
407 // Scan the table to find its index. The table is not sorted, so do a linear
408 // scan.
409 unsigned Index;
410 for (Index = 0; Symbols[Index].FnStart != FnStart; ++Index)
411 assert(Index != SymTabPtr->NumSymbols && "Didn't find function!");
412
413 // Once we have an index, we know to nuke this entry, overwrite it with the
414 // entry at the end of the array, making the last entry redundant.
415 const char *OldName = Symbols[Index].FnName;
416 Symbols[Index] = Symbols[SymTabPtr->NumSymbols-1];
417 free((void*)OldName);
418
419 // Drop the number of symbols in the table.
420 --SymTabPtr->NumSymbols;
421
422 // Finally, if we deleted the final symbol, deallocate the table itself.
423 if (SymTabPtr->NumSymbols == 0)
424 return;
425
426 *SymTabPtrPtr = 0;
427 delete [] Symbols;
428 delete SymTabPtr;
429}
Chris Lattner688506d2003-08-14 18:35:27 +0000430
Chris Lattner54266522004-11-20 23:57:07 +0000431//===----------------------------------------------------------------------===//
Chris Lattner166f2262004-11-22 22:00:25 +0000432// JITEmitter code.
Chris Lattner54266522004-11-20 23:57:07 +0000433//
Chris Lattner688506d2003-08-14 18:35:27 +0000434namespace {
Chris Lattner166f2262004-11-22 22:00:25 +0000435 /// JITEmitter - The JIT implementation of the MachineCodeEmitter, which is
436 /// used to output functions to memory for execution.
437 class JITEmitter : public MachineCodeEmitter {
Chris Lattner8907b4b2007-12-05 23:39:57 +0000438 JITMemoryManager *MemMgr;
Chris Lattner688506d2003-08-14 18:35:27 +0000439
Chris Lattner6125fdd2003-05-09 03:30:07 +0000440 // When outputting a function stub in the context of some other function, we
Chris Lattner43b429b2006-05-02 18:27:26 +0000441 // save BufferBegin/BufferEnd/CurBufferPtr here.
442 unsigned char *SavedBufferBegin, *SavedBufferEnd, *SavedCurBufferPtr;
Chris Lattnerbba1b6d2003-06-01 23:24:36 +0000443
Chris Lattner5be478f2004-11-20 03:46:14 +0000444 /// Relocations - These are the relocations that the function needs, as
445 /// emitted.
446 std::vector<MachineRelocation> Relocations;
Chris Lattnerb4432f32006-05-03 17:10:41 +0000447
448 /// MBBLocations - This vector is a mapping from MBB ID's to their address.
449 /// It is filled in by the StartMachineBasicBlock callback and queried by
450 /// the getMachineBasicBlockAddress callback.
451 std::vector<intptr_t> MBBLocations;
Andrew Lenharth16ec33c2005-07-22 20:48:12 +0000452
Chris Lattner239862c2006-02-09 04:49:59 +0000453 /// ConstantPool - The constant pool for the current function.
454 ///
455 MachineConstantPool *ConstantPool;
456
457 /// ConstantPoolBase - A pointer to the first entry in the constant pool.
458 ///
459 void *ConstantPoolBase;
Nate Begeman37efe672006-04-22 18:53:45 +0000460
Nate Begeman019f8512006-09-10 23:03:44 +0000461 /// JumpTable - The jump tables for the current function.
Nate Begeman37efe672006-04-22 18:53:45 +0000462 ///
463 MachineJumpTableInfo *JumpTable;
464
465 /// JumpTableBase - A pointer to the first entry in the jump table.
466 ///
467 void *JumpTableBase;
Evan Cheng2a3e08b2008-01-05 02:26:58 +0000468
Chris Lattnere7484012007-02-24 02:57:03 +0000469 /// Resolver - This contains info about the currently resolved functions.
470 JITResolver Resolver;
Nicolas Geoffrayafe6c2b2008-02-13 18:39:37 +0000471
472 /// DE - The dwarf emitter for the jit.
473 JITDwarfEmitter *DE;
474
475 /// LabelLocations - This vector is a mapping from Label ID's to their
476 /// address.
477 std::vector<intptr_t> LabelLocations;
478
479 /// MMI - Machine module info for exception informations
480 MachineModuleInfo* MMI;
481
Chris Lattnere7484012007-02-24 02:57:03 +0000482 public:
Chris Lattner9f2f1422007-12-06 01:08:09 +0000483 JITEmitter(JIT &jit, JITMemoryManager *JMM) : Resolver(jit) {
484 MemMgr = JMM ? JMM : JITMemoryManager::CreateDefaultMemManager();
Chris Lattner8907b4b2007-12-05 23:39:57 +0000485 if (jit.getJITInfo().needsGOT()) {
486 MemMgr->AllocateGOT();
487 DOUT << "JIT is managing a GOT\n";
488 }
Nicolas Geoffrayafe6c2b2008-02-13 18:39:37 +0000489
490 if (ExceptionHandling) DE = new JITDwarfEmitter(jit);
Chris Lattner8907b4b2007-12-05 23:39:57 +0000491 }
492 ~JITEmitter() {
493 delete MemMgr;
Nicolas Geoffrayafe6c2b2008-02-13 18:39:37 +0000494 if (ExceptionHandling) delete DE;
Andrew Lenharth16ec33c2005-07-22 20:48:12 +0000495 }
Chris Lattnere7484012007-02-24 02:57:03 +0000496
497 JITResolver &getJITResolver() { return Resolver; }
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000498
499 virtual void startFunction(MachineFunction &F);
Chris Lattner43b429b2006-05-02 18:27:26 +0000500 virtual bool finishFunction(MachineFunction &F);
Chris Lattnerf75f9be2006-05-02 23:22:24 +0000501
502 void emitConstantPool(MachineConstantPool *MCP);
503 void initJumpTableInfo(MachineJumpTableInfo *MJTI);
Jim Laskeyb92767a2006-12-14 22:53:42 +0000504 void emitJumpTableInfo(MachineJumpTableInfo *MJTI);
Chris Lattnerf75f9be2006-05-02 23:22:24 +0000505
Nicolas Geoffray51cc3c12008-04-16 20:46:05 +0000506 virtual void startFunctionStub(const GlobalValue* F, unsigned StubSize,
507 unsigned Alignment = 1);
508 virtual void* finishFunctionStub(const GlobalValue *F);
Chris Lattnerbba1b6d2003-06-01 23:24:36 +0000509
Chris Lattner5be478f2004-11-20 03:46:14 +0000510 virtual void addRelocation(const MachineRelocation &MR) {
511 Relocations.push_back(MR);
512 }
Chris Lattnerb4432f32006-05-03 17:10:41 +0000513
514 virtual void StartMachineBasicBlock(MachineBasicBlock *MBB) {
515 if (MBBLocations.size() <= (unsigned)MBB->getNumber())
516 MBBLocations.resize((MBB->getNumber()+1)*2);
517 MBBLocations[MBB->getNumber()] = getCurrentPCValue();
518 }
Chris Lattner5be478f2004-11-20 03:46:14 +0000519
Chris Lattnerb4432f32006-05-03 17:10:41 +0000520 virtual intptr_t getConstantPoolEntryAddress(unsigned Entry) const;
521 virtual intptr_t getJumpTableEntryAddress(unsigned Entry) const;
Evan Cheng2a3e08b2008-01-05 02:26:58 +0000522
Chris Lattnerb4432f32006-05-03 17:10:41 +0000523 virtual intptr_t getMachineBasicBlockAddress(MachineBasicBlock *MBB) const {
524 assert(MBBLocations.size() > (unsigned)MBB->getNumber() &&
525 MBBLocations[MBB->getNumber()] && "MBB not emitted!");
526 return MBBLocations[MBB->getNumber()];
527 }
528
Chris Lattnere993cc22006-05-11 23:08:08 +0000529 /// deallocateMemForFunction - Deallocate all memory for the specified
530 /// function body.
531 void deallocateMemForFunction(Function *F) {
Chris Lattner8907b4b2007-12-05 23:39:57 +0000532 MemMgr->deallocateMemForFunction(F);
Chris Lattnere993cc22006-05-11 23:08:08 +0000533 }
Nicolas Geoffrayafe6c2b2008-02-13 18:39:37 +0000534
535 virtual void emitLabel(uint64_t LabelID) {
536 if (LabelLocations.size() <= LabelID)
537 LabelLocations.resize((LabelID+1)*2);
538 LabelLocations[LabelID] = getCurrentPCValue();
539 }
540
541 virtual intptr_t getLabelAddress(uint64_t LabelID) const {
542 assert(LabelLocations.size() > (unsigned)LabelID &&
543 LabelLocations[LabelID] && "Label not emitted!");
544 return LabelLocations[LabelID];
545 }
546
547 virtual void setModuleInfo(MachineModuleInfo* Info) {
548 MMI = Info;
549 if (ExceptionHandling) DE->setModuleInfo(Info);
550 }
551
Chris Lattner54266522004-11-20 23:57:07 +0000552 private:
Chris Lattner5e225582004-11-21 03:37:42 +0000553 void *getPointerToGlobal(GlobalValue *GV, void *Reference, bool NoNeedStub);
Evan Chengbe8c03f2008-01-04 10:46:51 +0000554 void *getPointerToGVLazyPtr(GlobalValue *V, void *Reference,
555 bool NoNeedStub);
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000556 };
557}
558
Chris Lattner166f2262004-11-22 22:00:25 +0000559void *JITEmitter::getPointerToGlobal(GlobalValue *V, void *Reference,
560 bool DoesntNeedStub) {
Chris Lattner54266522004-11-20 23:57:07 +0000561 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(V)) {
562 /// FIXME: If we straightened things out, this could actually emit the
563 /// global immediately instead of queuing it for codegen later!
Chris Lattner54266522004-11-20 23:57:07 +0000564 return TheJIT->getOrEmitGlobalVariable(GV);
565 }
566
567 // If we have already compiled the function, return a pointer to its body.
568 Function *F = cast<Function>(V);
569 void *ResultPtr = TheJIT->getPointerToGlobalIfAvailable(F);
570 if (ResultPtr) return ResultPtr;
571
Gabor Greifa99be512007-07-05 17:07:56 +0000572 if (F->isDeclaration() && !F->hasNotBeenReadFromBitcode()) {
Chris Lattner54266522004-11-20 23:57:07 +0000573 // If this is an external function pointer, we can force the JIT to
574 // 'compile' it, which really just adds it to the map.
Chris Lattnerb43dbdc2004-11-22 07:24:43 +0000575 if (DoesntNeedStub)
576 return TheJIT->getPointerToFunction(F);
577
Chris Lattnere7484012007-02-24 02:57:03 +0000578 return Resolver.getFunctionStub(F);
Chris Lattner54266522004-11-20 23:57:07 +0000579 }
580
Chris Lattner5e225582004-11-21 03:37:42 +0000581 // Okay, the function has not been compiled yet, if the target callback
582 // mechanism is capable of rewriting the instruction directly, prefer to do
583 // that instead of emitting a stub.
584 if (DoesntNeedStub)
Chris Lattnere7484012007-02-24 02:57:03 +0000585 return Resolver.AddCallbackAtLocation(F, Reference);
Chris Lattner5e225582004-11-21 03:37:42 +0000586
Chris Lattner54266522004-11-20 23:57:07 +0000587 // Otherwise, we have to emit a lazy resolving stub.
Chris Lattnere7484012007-02-24 02:57:03 +0000588 return Resolver.getFunctionStub(F);
Chris Lattner54266522004-11-20 23:57:07 +0000589}
590
Evan Chengbe8c03f2008-01-04 10:46:51 +0000591void *JITEmitter::getPointerToGVLazyPtr(GlobalValue *V, void *Reference,
592 bool DoesntNeedStub) {
593 // Make sure GV is emitted first.
594 // FIXME: For now, if the GV is an external function we force the JIT to
595 // compile it so the lazy pointer will contain the fully resolved address.
596 void *GVAddress = getPointerToGlobal(V, Reference, true);
597 return Resolver.getGlobalValueLazyPtr(V, GVAddress);
598}
599
600
Chris Lattner166f2262004-11-22 22:00:25 +0000601void JITEmitter::startFunction(MachineFunction &F) {
Chris Lattnere993cc22006-05-11 23:08:08 +0000602 uintptr_t ActualSize;
Chris Lattner8907b4b2007-12-05 23:39:57 +0000603 BufferBegin = CurBufferPtr = MemMgr->startFunctionBody(F.getFunction(),
604 ActualSize);
Chris Lattnere993cc22006-05-11 23:08:08 +0000605 BufferEnd = BufferBegin+ActualSize;
Chris Lattnerf75f9be2006-05-02 23:22:24 +0000606
Evan Cheng9a1e9b92006-11-16 20:04:54 +0000607 // Ensure the constant pool/jump table info is at least 4-byte aligned.
608 emitAlignment(16);
609
Chris Lattnerf75f9be2006-05-02 23:22:24 +0000610 emitConstantPool(F.getConstantPool());
611 initJumpTableInfo(F.getJumpTableInfo());
612
613 // About to start emitting the machine code for the function.
Chris Lattner0eb4d6b2006-05-03 01:03:20 +0000614 emitAlignment(std::max(F.getFunction()->getAlignment(), 8U));
Chris Lattnerf75f9be2006-05-02 23:22:24 +0000615 TheJIT->updateGlobalMapping(F.getFunction(), CurBufferPtr);
Evan Cheng55fc2802006-07-25 20:40:54 +0000616
Chris Lattnerb4432f32006-05-03 17:10:41 +0000617 MBBLocations.clear();
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000618}
619
Chris Lattner43b429b2006-05-02 18:27:26 +0000620bool JITEmitter::finishFunction(MachineFunction &F) {
Chris Lattnere993cc22006-05-11 23:08:08 +0000621 if (CurBufferPtr == BufferEnd) {
622 // FIXME: Allocate more space, then try again.
Bill Wendling832171c2006-12-07 20:04:42 +0000623 cerr << "JIT: Ran out of space for generated machine code!\n";
Chris Lattnere993cc22006-05-11 23:08:08 +0000624 abort();
625 }
626
Jim Laskeyb92767a2006-12-14 22:53:42 +0000627 emitJumpTableInfo(F.getJumpTableInfo());
Chris Lattnerb4432f32006-05-03 17:10:41 +0000628
Chris Lattnera8279532006-06-16 18:09:26 +0000629 // FnStart is the start of the text, not the start of the constant pool and
630 // other per-function data.
631 unsigned char *FnStart =
632 (unsigned char *)TheJIT->getPointerToGlobalIfAvailable(F.getFunction());
633 unsigned char *FnEnd = CurBufferPtr;
634
Chris Lattner8907b4b2007-12-05 23:39:57 +0000635 MemMgr->endFunctionBody(F.getFunction(), BufferBegin, FnEnd);
Chris Lattnera8279532006-06-16 18:09:26 +0000636 NumBytes += FnEnd-FnStart;
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000637
Chris Lattner5be478f2004-11-20 03:46:14 +0000638 if (!Relocations.empty()) {
Chris Lattnere884dc22005-07-20 16:29:20 +0000639 NumRelos += Relocations.size();
640
Chris Lattner5be478f2004-11-20 03:46:14 +0000641 // Resolve the relocations to concrete pointers.
642 for (unsigned i = 0, e = Relocations.size(); i != e; ++i) {
643 MachineRelocation &MR = Relocations[i];
644 void *ResultPtr;
Chris Lattnerd91ff7c2005-04-18 01:44:27 +0000645 if (MR.isString()) {
Chris Lattner5be478f2004-11-20 03:46:14 +0000646 ResultPtr = TheJIT->getPointerToNamedFunction(MR.getString());
Misha Brukmanf976c852005-04-21 22:55:34 +0000647
Chris Lattnerd91ff7c2005-04-18 01:44:27 +0000648 // If the target REALLY wants a stub for this function, emit it now.
Evan Cheng02aabbf2008-01-03 02:56:28 +0000649 if (!MR.doesntNeedStub())
Chris Lattnere7484012007-02-24 02:57:03 +0000650 ResultPtr = Resolver.getExternalFunctionStub(ResultPtr);
Chris Lattnerd2d5c762006-05-03 18:55:56 +0000651 } else if (MR.isGlobalValue()) {
Chris Lattner5e225582004-11-21 03:37:42 +0000652 ResultPtr = getPointerToGlobal(MR.getGlobalValue(),
Chris Lattner43b429b2006-05-02 18:27:26 +0000653 BufferBegin+MR.getMachineCodeOffset(),
Evan Cheng02aabbf2008-01-03 02:56:28 +0000654 MR.doesntNeedStub());
Evan Chengbe8c03f2008-01-04 10:46:51 +0000655 } else if (MR.isGlobalValueLazyPtr()) {
656 ResultPtr = getPointerToGVLazyPtr(MR.getGlobalValue(),
657 BufferBegin+MR.getMachineCodeOffset(),
658 MR.doesntNeedStub());
Evan Chengf141cc42006-07-27 18:21:10 +0000659 } else if (MR.isBasicBlock()) {
660 ResultPtr = (void*)getMachineBasicBlockAddress(MR.getBasicBlock());
Jim Laskeyacd80ac2006-12-14 19:17:33 +0000661 } else if (MR.isConstantPoolIndex()) {
Chris Lattnerd2d5c762006-05-03 18:55:56 +0000662 ResultPtr=(void*)getConstantPoolEntryAddress(MR.getConstantPoolIndex());
Evan Cheng52b510b2006-06-23 01:02:37 +0000663 } else {
664 assert(MR.isJumpTableIndex());
665 ResultPtr=(void*)getJumpTableEntryAddress(MR.getJumpTableIndex());
Chris Lattnerd2d5c762006-05-03 18:55:56 +0000666 }
Jeff Cohen00b168892005-07-27 06:12:32 +0000667
Chris Lattner5be478f2004-11-20 03:46:14 +0000668 MR.setResultPointer(ResultPtr);
Andrew Lenharth16ec33c2005-07-22 20:48:12 +0000669
Andrew Lenharth6a974612005-07-28 12:44:13 +0000670 // if we are managing the GOT and the relocation wants an index,
671 // give it one
Chris Lattner8907b4b2007-12-05 23:39:57 +0000672 if (MR.isGOTRelative() && MemMgr->isManagingGOT()) {
Chris Lattnere7484012007-02-24 02:57:03 +0000673 unsigned idx = Resolver.getGOTIndexForAddr(ResultPtr);
Andrew Lenharth6a974612005-07-28 12:44:13 +0000674 MR.setGOTIndex(idx);
Chris Lattner8907b4b2007-12-05 23:39:57 +0000675 if (((void**)MemMgr->getGOTBase())[idx] != ResultPtr) {
Bill Wendling832171c2006-12-07 20:04:42 +0000676 DOUT << "GOT was out of date for " << ResultPtr
Chris Lattner8907b4b2007-12-05 23:39:57 +0000677 << " pointing at " << ((void**)MemMgr->getGOTBase())[idx]
Bill Wendling832171c2006-12-07 20:04:42 +0000678 << "\n";
Chris Lattner8907b4b2007-12-05 23:39:57 +0000679 ((void**)MemMgr->getGOTBase())[idx] = ResultPtr;
Andrew Lenharth6a974612005-07-28 12:44:13 +0000680 }
Andrew Lenharth16ec33c2005-07-22 20:48:12 +0000681 }
Chris Lattner5be478f2004-11-20 03:46:14 +0000682 }
683
Chris Lattner43b429b2006-05-02 18:27:26 +0000684 TheJIT->getJITInfo().relocate(BufferBegin, &Relocations[0],
Chris Lattner8907b4b2007-12-05 23:39:57 +0000685 Relocations.size(), MemMgr->getGOTBase());
Chris Lattner5be478f2004-11-20 03:46:14 +0000686 }
687
Chris Lattnerd2d5c762006-05-03 18:55:56 +0000688 // Update the GOT entry for F to point to the new code.
Chris Lattner8907b4b2007-12-05 23:39:57 +0000689 if (MemMgr->isManagingGOT()) {
Chris Lattnere7484012007-02-24 02:57:03 +0000690 unsigned idx = Resolver.getGOTIndexForAddr((void*)BufferBegin);
Chris Lattner8907b4b2007-12-05 23:39:57 +0000691 if (((void**)MemMgr->getGOTBase())[idx] != (void*)BufferBegin) {
Bill Wendling832171c2006-12-07 20:04:42 +0000692 DOUT << "GOT was out of date for " << (void*)BufferBegin
Chris Lattner8907b4b2007-12-05 23:39:57 +0000693 << " pointing at " << ((void**)MemMgr->getGOTBase())[idx] << "\n";
694 ((void**)MemMgr->getGOTBase())[idx] = (void*)BufferBegin;
Andrew Lenharth6a974612005-07-28 12:44:13 +0000695 }
696 }
697
Evan Cheng55fc2802006-07-25 20:40:54 +0000698 // Invalidate the icache if necessary.
Evan Cheng55b50532006-07-27 06:33:55 +0000699 synchronizeICache(FnStart, FnEnd-FnStart);
Chris Lattner8ac66c12008-04-04 05:51:42 +0000700
701 // Add it to the JIT symbol table if the host wants it.
702 AddFunctionToSymbolTable(F.getFunction()->getNameStart(),
703 FnStart, FnEnd-FnStart);
Evan Cheng55fc2802006-07-25 20:40:54 +0000704
Bill Wendling832171c2006-12-07 20:04:42 +0000705 DOUT << "JIT: Finished CodeGen of [" << (void*)FnStart
706 << "] Function: " << F.getFunction()->getName()
707 << ": " << (FnEnd-FnStart) << " bytes of text, "
708 << Relocations.size() << " relocations\n";
Chris Lattner5be478f2004-11-20 03:46:14 +0000709 Relocations.clear();
Anton Korobeynikov8cd4c3e2007-01-19 17:25:17 +0000710
Chris Lattnerc5633c22007-01-20 20:51:43 +0000711#ifndef NDEBUG
Anton Korobeynikovc6551ff2007-03-06 05:32:48 +0000712 if (sys::hasDisassembler())
713 DOUT << "Disassembled code:\n"
714 << sys::disassembleBuffer(FnStart, FnEnd-FnStart, (uintptr_t)FnStart);
Chris Lattnerc5633c22007-01-20 20:51:43 +0000715#endif
Nicolas Geoffrayafe6c2b2008-02-13 18:39:37 +0000716 if (ExceptionHandling) {
717 uintptr_t ActualSize;
718 SavedBufferBegin = BufferBegin;
719 SavedBufferEnd = BufferEnd;
720 SavedCurBufferPtr = CurBufferPtr;
721
722 BufferBegin = CurBufferPtr = MemMgr->startExceptionTable(F.getFunction(),
723 ActualSize);
724 BufferEnd = BufferBegin+ActualSize;
725 unsigned char* FrameRegister = DE->EmitDwarfTable(F, *this, FnStart, FnEnd);
Chris Lattner0fdaa0b2008-03-07 20:05:43 +0000726 MemMgr->endExceptionTable(F.getFunction(), BufferBegin, CurBufferPtr,
727 FrameRegister);
Nicolas Geoffrayafe6c2b2008-02-13 18:39:37 +0000728 BufferBegin = SavedBufferBegin;
729 BufferEnd = SavedBufferEnd;
730 CurBufferPtr = SavedCurBufferPtr;
731
732 TheJIT->RegisterTable(FrameRegister);
733 }
734 MMI->EndFunction();
735
Chris Lattner43b429b2006-05-02 18:27:26 +0000736 return false;
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000737}
738
Chris Lattner166f2262004-11-22 22:00:25 +0000739void JITEmitter::emitConstantPool(MachineConstantPool *MCP) {
Chris Lattnerfa77d432006-02-09 04:22:52 +0000740 const std::vector<MachineConstantPoolEntry> &Constants = MCP->getConstants();
Chris Lattner2c0a6a12003-11-30 04:23:21 +0000741 if (Constants.empty()) return;
742
Evan Chengcd5731d2006-09-12 20:59:59 +0000743 MachineConstantPoolEntry CPE = Constants.back();
744 unsigned Size = CPE.Offset;
745 const Type *Ty = CPE.isMachineConstantPoolEntry()
Chris Lattner8a650092006-09-13 16:21:10 +0000746 ? CPE.Val.MachineCPVal->getType() : CPE.Val.ConstVal->getType();
Duncan Sands514ab342007-11-01 20:53:16 +0000747 Size += TheJIT->getTargetData()->getABITypeSize(Ty);
Chris Lattner2c0a6a12003-11-30 04:23:21 +0000748
Evan Cheng97b8c402008-04-12 00:22:01 +0000749 unsigned Align = 1 << MCP->getConstantPoolAlignment();
750 ConstantPoolBase = allocateSpace(Size, Align);
Chris Lattner239862c2006-02-09 04:49:59 +0000751 ConstantPool = MCP;
Chris Lattnerf75f9be2006-05-02 23:22:24 +0000752
753 if (ConstantPoolBase == 0) return; // Buffer overflow.
754
Evan Cheng97b8c402008-04-12 00:22:01 +0000755 DOUT << "JIT: Emitted constant pool at [" << ConstantPoolBase
756 << "] (size: " << Size << ", alignment: " << Align << ")\n";
757
Chris Lattner239862c2006-02-09 04:49:59 +0000758 // Initialize the memory for all of the constant pool entries.
Chris Lattner3029f922006-02-09 04:46:04 +0000759 for (unsigned i = 0, e = Constants.size(); i != e; ++i) {
Chris Lattner239862c2006-02-09 04:49:59 +0000760 void *CAddr = (char*)ConstantPoolBase+Constants[i].Offset;
Evan Chengcd5731d2006-09-12 20:59:59 +0000761 if (Constants[i].isMachineConstantPoolEntry()) {
762 // FIXME: add support to lower machine constant pool values into bytes!
Bill Wendling832171c2006-12-07 20:04:42 +0000763 cerr << "Initialize memory with machine specific constant pool entry"
764 << " has not been implemented!\n";
Evan Chengcd5731d2006-09-12 20:59:59 +0000765 abort();
766 }
767 TheJIT->InitializeMemory(Constants[i].Val.ConstVal, CAddr);
Evan Cheng97b8c402008-04-12 00:22:01 +0000768 DOUT << "JIT: CP" << i << " at [" << CAddr << "]\n";
Chris Lattner1cc08382003-01-13 01:00:12 +0000769 }
770}
771
Nate Begeman37efe672006-04-22 18:53:45 +0000772void JITEmitter::initJumpTableInfo(MachineJumpTableInfo *MJTI) {
773 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
774 if (JT.empty()) return;
775
Chris Lattnerf75f9be2006-05-02 23:22:24 +0000776 unsigned NumEntries = 0;
Nate Begeman37efe672006-04-22 18:53:45 +0000777 for (unsigned i = 0, e = JT.size(); i != e; ++i)
Chris Lattnerf75f9be2006-05-02 23:22:24 +0000778 NumEntries += JT[i].MBBs.size();
779
780 unsigned EntrySize = MJTI->getEntrySize();
781
Nate Begeman37efe672006-04-22 18:53:45 +0000782 // Just allocate space for all the jump tables now. We will fix up the actual
783 // MBB entries in the tables after we emit the code for each block, since then
784 // we will know the final locations of the MBBs in memory.
785 JumpTable = MJTI;
Chris Lattnerf75f9be2006-05-02 23:22:24 +0000786 JumpTableBase = allocateSpace(NumEntries * EntrySize, MJTI->getAlignment());
Nate Begeman37efe672006-04-22 18:53:45 +0000787}
788
Jim Laskeyb92767a2006-12-14 22:53:42 +0000789void JITEmitter::emitJumpTableInfo(MachineJumpTableInfo *MJTI) {
Nate Begeman37efe672006-04-22 18:53:45 +0000790 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
Chris Lattnerf75f9be2006-05-02 23:22:24 +0000791 if (JT.empty() || JumpTableBase == 0) return;
Nate Begeman37efe672006-04-22 18:53:45 +0000792
Jim Laskeyb92767a2006-12-14 22:53:42 +0000793 if (TargetMachine::getRelocationModel() == Reloc::PIC_) {
Jim Laskeyacd80ac2006-12-14 19:17:33 +0000794 assert(MJTI->getEntrySize() == 4 && "Cross JIT'ing?");
795 // For each jump table, place the offset from the beginning of the table
796 // to the target address.
797 int *SlotPtr = (int*)JumpTableBase;
Chris Lattner32ca55f2006-05-03 00:13:06 +0000798
Jim Laskeyacd80ac2006-12-14 19:17:33 +0000799 for (unsigned i = 0, e = JT.size(); i != e; ++i) {
800 const std::vector<MachineBasicBlock*> &MBBs = JT[i].MBBs;
801 // Store the offset of the basic block for this jump table slot in the
802 // memory we allocated for the jump table in 'initJumpTableInfo'
803 intptr_t Base = (intptr_t)SlotPtr;
Evan Cheng2a3e08b2008-01-05 02:26:58 +0000804 for (unsigned mi = 0, me = MBBs.size(); mi != me; ++mi) {
805 intptr_t MBBAddr = getMachineBasicBlockAddress(MBBs[mi]);
806 *SlotPtr++ = TheJIT->getJITInfo().getPICJumpTableEntry(MBBAddr, Base);
807 }
Jim Laskeyacd80ac2006-12-14 19:17:33 +0000808 }
809 } else {
810 assert(MJTI->getEntrySize() == sizeof(void*) && "Cross JIT'ing?");
811
812 // For each jump table, map each target in the jump table to the address of
813 // an emitted MachineBasicBlock.
814 intptr_t *SlotPtr = (intptr_t*)JumpTableBase;
815
816 for (unsigned i = 0, e = JT.size(); i != e; ++i) {
817 const std::vector<MachineBasicBlock*> &MBBs = JT[i].MBBs;
818 // Store the address of the basic block for this jump table slot in the
819 // memory we allocated for the jump table in 'initJumpTableInfo'
820 for (unsigned mi = 0, me = MBBs.size(); mi != me; ++mi)
821 *SlotPtr++ = getMachineBasicBlockAddress(MBBs[mi]);
822 }
Nate Begeman37efe672006-04-22 18:53:45 +0000823 }
824}
825
Nicolas Geoffray51cc3c12008-04-16 20:46:05 +0000826void JITEmitter::startFunctionStub(const GlobalValue* F, unsigned StubSize,
827 unsigned Alignment) {
Chris Lattner43b429b2006-05-02 18:27:26 +0000828 SavedBufferBegin = BufferBegin;
829 SavedBufferEnd = BufferEnd;
830 SavedCurBufferPtr = CurBufferPtr;
831
Nicolas Geoffray51cc3c12008-04-16 20:46:05 +0000832 BufferBegin = CurBufferPtr = MemMgr->allocateStub(F, StubSize, Alignment);
Chris Lattner43b429b2006-05-02 18:27:26 +0000833 BufferEnd = BufferBegin+StubSize+1;
Chris Lattner6125fdd2003-05-09 03:30:07 +0000834}
835
Nicolas Geoffray51cc3c12008-04-16 20:46:05 +0000836void *JITEmitter::finishFunctionStub(const GlobalValue* F) {
Chris Lattner43b429b2006-05-02 18:27:26 +0000837 NumBytes += getCurrentPCOffset();
838 std::swap(SavedBufferBegin, BufferBegin);
839 BufferEnd = SavedBufferEnd;
840 CurBufferPtr = SavedCurBufferPtr;
841 return SavedBufferBegin;
Chris Lattnerbba1b6d2003-06-01 23:24:36 +0000842}
843
Chris Lattnerbba1b6d2003-06-01 23:24:36 +0000844// getConstantPoolEntryAddress - Return the address of the 'ConstantNum' entry
845// in the constant pool that was last emitted with the 'emitConstantPool'
846// method.
847//
Chris Lattnerb4432f32006-05-03 17:10:41 +0000848intptr_t JITEmitter::getConstantPoolEntryAddress(unsigned ConstantNum) const {
Chris Lattner239862c2006-02-09 04:49:59 +0000849 assert(ConstantNum < ConstantPool->getConstants().size() &&
Misha Brukman3c944972005-04-22 04:08:30 +0000850 "Invalid ConstantPoolIndex!");
Chris Lattner239862c2006-02-09 04:49:59 +0000851 return (intptr_t)ConstantPoolBase +
852 ConstantPool->getConstants()[ConstantNum].Offset;
Chris Lattnerbba1b6d2003-06-01 23:24:36 +0000853}
854
Nate Begeman37efe672006-04-22 18:53:45 +0000855// getJumpTableEntryAddress - Return the address of the JumpTable with index
856// 'Index' in the jumpp table that was last initialized with 'initJumpTableInfo'
857//
Chris Lattnerb4432f32006-05-03 17:10:41 +0000858intptr_t JITEmitter::getJumpTableEntryAddress(unsigned Index) const {
Nate Begeman37efe672006-04-22 18:53:45 +0000859 const std::vector<MachineJumpTableEntry> &JT = JumpTable->getJumpTables();
860 assert(Index < JT.size() && "Invalid jump table index!");
861
862 unsigned Offset = 0;
863 unsigned EntrySize = JumpTable->getEntrySize();
864
865 for (unsigned i = 0; i < Index; ++i)
Jim Laskeyacd80ac2006-12-14 19:17:33 +0000866 Offset += JT[i].MBBs.size();
867
868 Offset *= EntrySize;
Nate Begeman37efe672006-04-22 18:53:45 +0000869
Nate Begemanc34b2272006-04-25 17:46:32 +0000870 return (intptr_t)((char *)JumpTableBase + Offset);
Nate Begeman37efe672006-04-22 18:53:45 +0000871}
872
Chris Lattnere993cc22006-05-11 23:08:08 +0000873//===----------------------------------------------------------------------===//
874// Public interface to this file
875//===----------------------------------------------------------------------===//
876
Chris Lattner9f2f1422007-12-06 01:08:09 +0000877MachineCodeEmitter *JIT::createEmitter(JIT &jit, JITMemoryManager *JMM) {
878 return new JITEmitter(jit, JMM);
Chris Lattnere993cc22006-05-11 23:08:08 +0000879}
880
Misha Brukmand69c1e62003-07-28 19:09:06 +0000881// getPointerToNamedFunction - This function is used as a global wrapper to
Chris Lattner4d326fa2003-12-20 01:46:27 +0000882// JIT::getPointerToNamedFunction for the purpose of resolving symbols when
Misha Brukmand69c1e62003-07-28 19:09:06 +0000883// bugpoint is debugging the JIT. In that scenario, we are loading an .so and
884// need to resolve function(s) that are being mis-codegenerated, so we need to
885// resolve their addresses at runtime, and this is the way to do it.
886extern "C" {
887 void *getPointerToNamedFunction(const char *Name) {
Chris Lattnerfe854032006-08-16 01:24:12 +0000888 if (Function *F = TheJIT->FindFunctionNamed(Name))
Chris Lattner4d326fa2003-12-20 01:46:27 +0000889 return TheJIT->getPointerToFunction(F);
890 return TheJIT->getPointerToNamedFunction(Name);
Misha Brukmand69c1e62003-07-28 19:09:06 +0000891 }
892}
Chris Lattnere993cc22006-05-11 23:08:08 +0000893
894// getPointerToFunctionOrStub - If the specified function has been
895// code-gen'd, return a pointer to the function. If not, compile it, or use
896// a stub to implement lazy compilation if available.
897//
898void *JIT::getPointerToFunctionOrStub(Function *F) {
899 // If we have already code generated the function, just return the address.
900 if (void *Addr = getPointerToGlobalIfAvailable(F))
901 return Addr;
902
Chris Lattnere7484012007-02-24 02:57:03 +0000903 // Get a stub if the target supports it.
904 assert(dynamic_cast<JITEmitter*>(MCE) && "Unexpected MCE?");
905 JITEmitter *JE = static_cast<JITEmitter*>(getCodeEmitter());
906 return JE->getJITResolver().getFunctionStub(F);
Chris Lattnere993cc22006-05-11 23:08:08 +0000907}
908
909/// freeMachineCodeForFunction - release machine code memory for given Function.
910///
911void JIT::freeMachineCodeForFunction(Function *F) {
Chris Lattner8ac66c12008-04-04 05:51:42 +0000912
Chris Lattnere993cc22006-05-11 23:08:08 +0000913 // Delete translation for this from the ExecutionEngine, so it will get
914 // retranslated next time it is used.
Chris Lattner8ac66c12008-04-04 05:51:42 +0000915 void *OldPtr = updateGlobalMapping(F, 0);
916
917 if (OldPtr)
918 RemoveFunctionFromSymbolTable(OldPtr);
Chris Lattnere993cc22006-05-11 23:08:08 +0000919
920 // Free the actual memory for the function body and related stuff.
921 assert(dynamic_cast<JITEmitter*>(MCE) && "Unexpected MCE?");
Chris Lattnere7484012007-02-24 02:57:03 +0000922 static_cast<JITEmitter*>(MCE)->deallocateMemForFunction(F);
Chris Lattnere993cc22006-05-11 23:08:08 +0000923}
924