blob: 3100f0680b72fffe0fef71973492be62d53fc14e [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"
Dale Johannesendd947ea2008-08-07 01:30:15 +000018#include "llvm/Constants.h"
Chris Lattner2c0a6a12003-11-30 04:23:21 +000019#include "llvm/Module.h"
Dale Johannesendd947ea2008-08-07 01:30:15 +000020#include "llvm/DerivedTypes.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"
Dale Johannesendd947ea2008-08-07 01:30:15 +000028#include "llvm/ExecutionEngine/GenericValue.h"
Chris Lattner1cc08382003-01-13 01:00:12 +000029#include "llvm/Target/TargetData.h"
Chris Lattner5be478f2004-11-20 03:46:14 +000030#include "llvm/Target/TargetJITInfo.h"
Jim Laskeyacd80ac2006-12-14 19:17:33 +000031#include "llvm/Target/TargetMachine.h"
Nicolas Geoffrayafe6c2b2008-02-13 18:39:37 +000032#include "llvm/Target/TargetOptions.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000033#include "llvm/Support/Debug.h"
Chris Lattnere7fd5532006-05-08 22:00:52 +000034#include "llvm/Support/MutexGuard.h"
Anton Korobeynikovfd58e6e2007-01-23 10:26:08 +000035#include "llvm/System/Disassembler.h"
Chris Lattnerbc52cad2008-06-25 17:18:44 +000036#include "llvm/System/Memory.h"
Nicolas Geoffraydc17ab22008-04-18 20:59:31 +000037#include "llvm/Target/TargetInstrInfo.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000038#include "llvm/ADT/Statistic.h"
Andrew Lenhartha00269b2005-07-29 23:40:16 +000039#include <algorithm>
Dale Johannesendd947ea2008-08-07 01:30:15 +000040#include <set>
Chris Lattnerc19aade2003-12-08 08:06:28 +000041using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000042
Chris Lattner36343732006-12-19 22:43:32 +000043STATISTIC(NumBytes, "Number of bytes of machine code compiled");
44STATISTIC(NumRelos, "Number of relocations applied");
45static JIT *TheJIT = 0;
Chris Lattner54266522004-11-20 23:57:07 +000046
Andrew Lenhartha00269b2005-07-29 23:40:16 +000047
Chris Lattner54266522004-11-20 23:57:07 +000048//===----------------------------------------------------------------------===//
49// JIT lazy compilation code.
50//
51namespace {
Reid Spenceree448632005-07-12 15:51:55 +000052 class JITResolverState {
53 private:
54 /// FunctionToStubMap - Keep track of the stub created for a particular
55 /// function so that we can reuse them if necessary.
56 std::map<Function*, void*> FunctionToStubMap;
57
58 /// StubToFunctionMap - Keep track of the function that each stub
59 /// corresponds to.
60 std::map<void*, Function*> StubToFunctionMap;
Jeff Cohen00b168892005-07-27 06:12:32 +000061
Evan Chengbe8c03f2008-01-04 10:46:51 +000062 /// GlobalToLazyPtrMap - Keep track of the lazy pointer created for a
63 /// particular GlobalVariable so that we can reuse them if necessary.
64 std::map<GlobalValue*, void*> GlobalToLazyPtrMap;
65
Reid Spenceree448632005-07-12 15:51:55 +000066 public:
67 std::map<Function*, void*>& getFunctionToStubMap(const MutexGuard& locked) {
68 assert(locked.holds(TheJIT->lock));
69 return FunctionToStubMap;
70 }
Jeff Cohen00b168892005-07-27 06:12:32 +000071
Reid Spenceree448632005-07-12 15:51:55 +000072 std::map<void*, Function*>& getStubToFunctionMap(const MutexGuard& locked) {
73 assert(locked.holds(TheJIT->lock));
74 return StubToFunctionMap;
75 }
Evan Chengbe8c03f2008-01-04 10:46:51 +000076
77 std::map<GlobalValue*, void*>&
78 getGlobalToLazyPtrMap(const MutexGuard& locked) {
79 assert(locked.holds(TheJIT->lock));
80 return GlobalToLazyPtrMap;
81 }
Reid Spenceree448632005-07-12 15:51:55 +000082 };
Jeff Cohen00b168892005-07-27 06:12:32 +000083
Chris Lattner54266522004-11-20 23:57:07 +000084 /// JITResolver - Keep track of, and resolve, call sites for functions that
85 /// have not yet been compiled.
86 class JITResolver {
Chris Lattner5e225582004-11-21 03:37:42 +000087 /// LazyResolverFn - The target lazy resolver function that we actually
88 /// rewrite instructions to use.
89 TargetJITInfo::LazyResolverFn LazyResolverFn;
90
Reid Spenceree448632005-07-12 15:51:55 +000091 JITResolverState state;
Chris Lattner54266522004-11-20 23:57:07 +000092
Chris Lattnerd91ff7c2005-04-18 01:44:27 +000093 /// ExternalFnToStubMap - This is the equivalent of FunctionToStubMap for
94 /// external functions.
95 std::map<void*, void*> ExternalFnToStubMap;
Andrew Lenharth6a974612005-07-28 12:44:13 +000096
97 //map addresses to indexes in the GOT
98 std::map<void*, unsigned> revGOTMap;
99 unsigned nextGOTIndex;
100
Chris Lattnere7484012007-02-24 02:57:03 +0000101 static JITResolver *TheJITResolver;
Chris Lattner54266522004-11-20 23:57:07 +0000102 public:
Dan Gohman950a4c42008-03-25 22:06:05 +0000103 explicit JITResolver(JIT &jit) : nextGOTIndex(0) {
Chris Lattnere7484012007-02-24 02:57:03 +0000104 TheJIT = &jit;
105
106 LazyResolverFn = jit.getJITInfo().getLazyResolverFunction(JITCompilerFn);
107 assert(TheJITResolver == 0 && "Multiple JIT resolvers?");
108 TheJITResolver = this;
109 }
110
111 ~JITResolver() {
112 TheJITResolver = 0;
Chris Lattner5e225582004-11-21 03:37:42 +0000113 }
Chris Lattner54266522004-11-20 23:57:07 +0000114
115 /// getFunctionStub - This returns a pointer to a function stub, creating
116 /// one on demand as needed.
117 void *getFunctionStub(Function *F);
118
Chris Lattnerd91ff7c2005-04-18 01:44:27 +0000119 /// getExternalFunctionStub - Return a stub for the function at the
120 /// specified address, created lazily on demand.
121 void *getExternalFunctionStub(void *FnAddr);
122
Evan Chengbe8c03f2008-01-04 10:46:51 +0000123 /// getGlobalValueLazyPtr - Return a lazy pointer containing the specified
124 /// GV address.
125 void *getGlobalValueLazyPtr(GlobalValue *V, void *GVAddress);
126
Chris Lattner5e225582004-11-21 03:37:42 +0000127 /// AddCallbackAtLocation - If the target is capable of rewriting an
128 /// instruction without the use of a stub, record the location of the use so
129 /// we know which function is being used at the location.
130 void *AddCallbackAtLocation(Function *F, void *Location) {
Reid Spenceree448632005-07-12 15:51:55 +0000131 MutexGuard locked(TheJIT->lock);
Chris Lattner5e225582004-11-21 03:37:42 +0000132 /// Get the target-specific JIT resolver function.
Reid Spenceree448632005-07-12 15:51:55 +0000133 state.getStubToFunctionMap(locked)[Location] = F;
Chris Lattner870286a2006-06-01 17:29:22 +0000134 return (void*)(intptr_t)LazyResolverFn;
Chris Lattner5e225582004-11-21 03:37:42 +0000135 }
136
Andrew Lenharth6a974612005-07-28 12:44:13 +0000137 /// getGOTIndexForAddress - Return a new or existing index in the GOT for
Chris Lattner8907b4b2007-12-05 23:39:57 +0000138 /// an address. This function only manages slots, it does not manage the
Andrew Lenharth6a974612005-07-28 12:44:13 +0000139 /// contents of the slots or the memory associated with the GOT.
Chris Lattner8907b4b2007-12-05 23:39:57 +0000140 unsigned getGOTIndexForAddr(void *addr);
Andrew Lenharth6a974612005-07-28 12:44:13 +0000141
Chris Lattner54266522004-11-20 23:57:07 +0000142 /// JITCompilerFn - This function is called to resolve a stub to a compiled
143 /// address. If the LLVM Function corresponding to the stub has not yet
144 /// been compiled, this function compiles it first.
145 static void *JITCompilerFn(void *Stub);
146 };
147}
148
Chris Lattnere7484012007-02-24 02:57:03 +0000149JITResolver *JITResolver::TheJITResolver = 0;
Chris Lattner54266522004-11-20 23:57:07 +0000150
151/// getFunctionStub - This returns a pointer to a function stub, creating
152/// one on demand as needed.
153void *JITResolver::getFunctionStub(Function *F) {
Reid Spenceree448632005-07-12 15:51:55 +0000154 MutexGuard locked(TheJIT->lock);
155
Chris Lattner54266522004-11-20 23:57:07 +0000156 // If we already have a stub for this function, recycle it.
Reid Spenceree448632005-07-12 15:51:55 +0000157 void *&Stub = state.getFunctionToStubMap(locked)[F];
Chris Lattner54266522004-11-20 23:57:07 +0000158 if (Stub) return Stub;
159
Chris Lattnerb43dbdc2004-11-22 07:24:43 +0000160 // Call the lazy resolver function unless we already KNOW it is an external
161 // function, in which case we just skip the lazy resolution step.
Chris Lattner870286a2006-06-01 17:29:22 +0000162 void *Actual = (void*)(intptr_t)LazyResolverFn;
Gabor Greifa99be512007-07-05 17:07:56 +0000163 if (F->isDeclaration() && !F->hasNotBeenReadFromBitcode())
Chris Lattnerb43dbdc2004-11-22 07:24:43 +0000164 Actual = TheJIT->getPointerToFunction(F);
Misha Brukmanf976c852005-04-21 22:55:34 +0000165
Chris Lattner54266522004-11-20 23:57:07 +0000166 // Otherwise, codegen a new stub. For now, the stub will call the lazy
167 // resolver function.
Nicolas Geoffray51cc3c12008-04-16 20:46:05 +0000168 Stub = TheJIT->getJITInfo().emitFunctionStub(F, Actual,
Chris Lattnere7484012007-02-24 02:57:03 +0000169 *TheJIT->getCodeEmitter());
Chris Lattnerb43dbdc2004-11-22 07:24:43 +0000170
Chris Lattner870286a2006-06-01 17:29:22 +0000171 if (Actual != (void*)(intptr_t)LazyResolverFn) {
Chris Lattnerb43dbdc2004-11-22 07:24:43 +0000172 // If we are getting the stub for an external function, we really want the
173 // address of the stub in the GlobalAddressMap for the JIT, not the address
174 // of the external function.
175 TheJIT->updateGlobalMapping(F, Stub);
176 }
Chris Lattner54266522004-11-20 23:57:07 +0000177
Bill Wendling832171c2006-12-07 20:04:42 +0000178 DOUT << "JIT: Stub emitted at [" << Stub << "] for function '"
179 << F->getName() << "'\n";
Chris Lattnercb479412004-11-21 03:44:32 +0000180
Chris Lattner54266522004-11-20 23:57:07 +0000181 // Finally, keep track of the stub-to-Function mapping so that the
182 // JITCompilerFn knows which function to compile!
Reid Spenceree448632005-07-12 15:51:55 +0000183 state.getStubToFunctionMap(locked)[Stub] = F;
Chris Lattner54266522004-11-20 23:57:07 +0000184 return Stub;
185}
186
Evan Chengbe8c03f2008-01-04 10:46:51 +0000187/// getGlobalValueLazyPtr - Return a lazy pointer containing the specified
188/// GV address.
189void *JITResolver::getGlobalValueLazyPtr(GlobalValue *GV, void *GVAddress) {
190 MutexGuard locked(TheJIT->lock);
191
192 // If we already have a stub for this global variable, recycle it.
193 void *&LazyPtr = state.getGlobalToLazyPtrMap(locked)[GV];
194 if (LazyPtr) return LazyPtr;
195
196 // Otherwise, codegen a new lazy pointer.
Nicolas Geoffray51cc3c12008-04-16 20:46:05 +0000197 LazyPtr = TheJIT->getJITInfo().emitGlobalValueLazyPtr(GV, GVAddress,
Evan Chengbe8c03f2008-01-04 10:46:51 +0000198 *TheJIT->getCodeEmitter());
199
200 DOUT << "JIT: Stub emitted at [" << LazyPtr << "] for GV '"
201 << GV->getName() << "'\n";
202
203 return LazyPtr;
204}
205
Chris Lattnerd91ff7c2005-04-18 01:44:27 +0000206/// getExternalFunctionStub - Return a stub for the function at the
207/// specified address, created lazily on demand.
208void *JITResolver::getExternalFunctionStub(void *FnAddr) {
209 // If we already have a stub for this function, recycle it.
210 void *&Stub = ExternalFnToStubMap[FnAddr];
211 if (Stub) return Stub;
212
Nicolas Geoffray51cc3c12008-04-16 20:46:05 +0000213 Stub = TheJIT->getJITInfo().emitFunctionStub(0, FnAddr,
Chris Lattnere7484012007-02-24 02:57:03 +0000214 *TheJIT->getCodeEmitter());
Evan Cheng55fc2802006-07-25 20:40:54 +0000215
Bill Wendling832171c2006-12-07 20:04:42 +0000216 DOUT << "JIT: Stub emitted at [" << Stub
217 << "] for external function at '" << FnAddr << "'\n";
Chris Lattnerd91ff7c2005-04-18 01:44:27 +0000218 return Stub;
219}
220
Andrew Lenharth6a974612005-07-28 12:44:13 +0000221unsigned JITResolver::getGOTIndexForAddr(void* addr) {
222 unsigned idx = revGOTMap[addr];
223 if (!idx) {
224 idx = ++nextGOTIndex;
225 revGOTMap[addr] = idx;
Evan Cheng97b8c402008-04-12 00:22:01 +0000226 DOUT << "Adding GOT entry " << idx << " for addr " << addr << "\n";
Andrew Lenharth6a974612005-07-28 12:44:13 +0000227 }
228 return idx;
229}
Chris Lattnerd91ff7c2005-04-18 01:44:27 +0000230
Chris Lattner54266522004-11-20 23:57:07 +0000231/// JITCompilerFn - This function is called when a lazy compilation stub has
232/// been entered. It looks up which function this stub corresponds to, compiles
233/// it if necessary, then returns the resultant function pointer.
234void *JITResolver::JITCompilerFn(void *Stub) {
Chris Lattnere7484012007-02-24 02:57:03 +0000235 JITResolver &JR = *TheJITResolver;
Misha Brukmanf976c852005-04-21 22:55:34 +0000236
Reid Spenceree448632005-07-12 15:51:55 +0000237 MutexGuard locked(TheJIT->lock);
238
Chris Lattner54266522004-11-20 23:57:07 +0000239 // The address given to us for the stub may not be exactly right, it might be
240 // a little bit after the stub. As such, use upper_bound to find it.
241 std::map<void*, Function*>::iterator I =
Reid Spenceree448632005-07-12 15:51:55 +0000242 JR.state.getStubToFunctionMap(locked).upper_bound(Stub);
Chris Lattner21998772006-01-07 06:20:51 +0000243 assert(I != JR.state.getStubToFunctionMap(locked).begin() &&
244 "This is not a known stub!");
Chris Lattner54266522004-11-20 23:57:07 +0000245 Function *F = (--I)->second;
246
Evan Cheng9da60f92007-06-30 00:10:37 +0000247 // If we have already code generated the function, just return the address.
248 void *Result = TheJIT->getPointerToGlobalIfAvailable(F);
Chris Lattner9cab56d2006-11-09 19:32:13 +0000249
Evan Cheng9da60f92007-06-30 00:10:37 +0000250 if (!Result) {
251 // Otherwise we don't have it, do lazy compilation now.
252
253 // If lazy compilation is disabled, emit a useful error message and abort.
254 if (TheJIT->isLazyCompilationDisabled()) {
255 cerr << "LLVM JIT requested to do lazy compilation of function '"
256 << F->getName() << "' when lazy compiles are disabled!\n";
257 abort();
258 }
259
260 // We might like to remove the stub from the StubToFunction map.
261 // We can't do that! Multiple threads could be stuck, waiting to acquire the
262 // lock above. As soon as the 1st function finishes compiling the function,
263 // the next one will be released, and needs to be able to find the function
264 // it needs to call.
265 //JR.state.getStubToFunctionMap(locked).erase(I);
Chris Lattner54266522004-11-20 23:57:07 +0000266
Evan Cheng9da60f92007-06-30 00:10:37 +0000267 DOUT << "JIT: Lazily resolving function '" << F->getName()
268 << "' In stub ptr = " << Stub << " actual ptr = "
269 << I->first << "\n";
Chris Lattner54266522004-11-20 23:57:07 +0000270
Evan Cheng9da60f92007-06-30 00:10:37 +0000271 Result = TheJIT->getPointerToFunction(F);
272 }
Chris Lattner54266522004-11-20 23:57:07 +0000273
274 // We don't need to reuse this stub in the future, as F is now compiled.
Reid Spenceree448632005-07-12 15:51:55 +0000275 JR.state.getFunctionToStubMap(locked).erase(F);
Chris Lattner54266522004-11-20 23:57:07 +0000276
277 // FIXME: We could rewrite all references to this stub if we knew them.
Andrew Lenharth6a974612005-07-28 12:44:13 +0000278
Jeff Cohend29b6aa2005-07-30 18:33:25 +0000279 // What we will do is set the compiled function address to map to the
280 // same GOT entry as the stub so that later clients may update the GOT
Andrew Lenharth6a974612005-07-28 12:44:13 +0000281 // if they see it still using the stub address.
282 // Note: this is done so the Resolver doesn't have to manage GOT memory
283 // Do this without allocating map space if the target isn't using a GOT
284 if(JR.revGOTMap.find(Stub) != JR.revGOTMap.end())
285 JR.revGOTMap[Result] = JR.revGOTMap[Stub];
286
Chris Lattner54266522004-11-20 23:57:07 +0000287 return Result;
288}
Chris Lattner688506d2003-08-14 18:35:27 +0000289
Chris Lattner8ac66c12008-04-04 05:51:42 +0000290//===----------------------------------------------------------------------===//
291// Function Index Support
292
293// On MacOS we generate an index of currently JIT'd functions so that
294// performance tools can determine a symbol name and accurate code range for a
295// PC value. Because performance tools are generally asynchronous, the code
296// below is written with the hope that it could be interrupted at any time and
297// have useful answers. However, we don't go crazy with atomic operations, we
298// just do a "reasonable effort".
299#ifdef __APPLE__
Evan Chengbdb6ca12008-05-15 17:31:35 +0000300#define ENABLE_JIT_SYMBOL_TABLE 0
Chris Lattner8ac66c12008-04-04 05:51:42 +0000301#endif
302
303/// JitSymbolEntry - Each function that is JIT compiled results in one of these
304/// being added to an array of symbols. This indicates the name of the function
305/// as well as the address range it occupies. This allows the client to map
306/// from a PC value to the name of the function.
307struct JitSymbolEntry {
308 const char *FnName; // FnName - a strdup'd string.
309 void *FnStart;
310 intptr_t FnSize;
311};
312
313
314struct JitSymbolTable {
315 /// NextPtr - This forms a linked list of JitSymbolTable entries. This
316 /// pointer is not used right now, but might be used in the future. Consider
317 /// it reserved for future use.
318 JitSymbolTable *NextPtr;
319
320 /// Symbols - This is an array of JitSymbolEntry entries. Only the first
321 /// 'NumSymbols' symbols are valid.
322 JitSymbolEntry *Symbols;
323
324 /// NumSymbols - This indicates the number entries in the Symbols array that
325 /// are valid.
326 unsigned NumSymbols;
327
328 /// NumAllocated - This indicates the amount of space we have in the Symbols
329 /// array. This is a private field that should not be read by external tools.
330 unsigned NumAllocated;
331};
332
333#if ENABLE_JIT_SYMBOL_TABLE
334JitSymbolTable *__jitSymbolTable;
335#endif
336
337static void AddFunctionToSymbolTable(const char *FnName,
338 void *FnStart, intptr_t FnSize) {
339 assert(FnName != 0 && FnStart != 0 && "Bad symbol to add");
340 JitSymbolTable **SymTabPtrPtr = 0;
341#if !ENABLE_JIT_SYMBOL_TABLE
342 return;
343#else
344 SymTabPtrPtr = &__jitSymbolTable;
345#endif
346
347 // If this is the first entry in the symbol table, add the JitSymbolTable
348 // index.
349 if (*SymTabPtrPtr == 0) {
350 JitSymbolTable *New = new JitSymbolTable();
351 New->NextPtr = 0;
352 New->Symbols = 0;
353 New->NumSymbols = 0;
354 New->NumAllocated = 0;
355 *SymTabPtrPtr = New;
356 }
357
358 JitSymbolTable *SymTabPtr = *SymTabPtrPtr;
359
360 // If we have space in the table, reallocate the table.
361 if (SymTabPtr->NumSymbols >= SymTabPtr->NumAllocated) {
362 // If we don't have space, reallocate the table.
Chris Lattner3b374482008-04-13 07:04:56 +0000363 unsigned NewSize = std::max(64U, SymTabPtr->NumAllocated*2);
Chris Lattner8ac66c12008-04-04 05:51:42 +0000364 JitSymbolEntry *NewSymbols = new JitSymbolEntry[NewSize];
365 JitSymbolEntry *OldSymbols = SymTabPtr->Symbols;
366
367 // Copy the old entries over.
368 memcpy(NewSymbols, OldSymbols,
Chris Lattner3b374482008-04-13 07:04:56 +0000369 SymTabPtr->NumSymbols*sizeof(OldSymbols[0]));
Chris Lattner8ac66c12008-04-04 05:51:42 +0000370
371 // Swap the new symbols in, delete the old ones.
372 SymTabPtr->Symbols = NewSymbols;
Chris Lattner3b374482008-04-13 07:04:56 +0000373 SymTabPtr->NumAllocated = NewSize;
Chris Lattner8ac66c12008-04-04 05:51:42 +0000374 delete [] OldSymbols;
375 }
376
377 // Otherwise, we have enough space, just tack it onto the end of the array.
378 JitSymbolEntry &Entry = SymTabPtr->Symbols[SymTabPtr->NumSymbols];
379 Entry.FnName = strdup(FnName);
380 Entry.FnStart = FnStart;
381 Entry.FnSize = FnSize;
382 ++SymTabPtr->NumSymbols;
383}
384
385static void RemoveFunctionFromSymbolTable(void *FnStart) {
386 assert(FnStart && "Invalid function pointer");
387 JitSymbolTable **SymTabPtrPtr = 0;
388#if !ENABLE_JIT_SYMBOL_TABLE
389 return;
390#else
391 SymTabPtrPtr = &__jitSymbolTable;
392#endif
393
394 JitSymbolTable *SymTabPtr = *SymTabPtrPtr;
395 JitSymbolEntry *Symbols = SymTabPtr->Symbols;
396
397 // Scan the table to find its index. The table is not sorted, so do a linear
398 // scan.
399 unsigned Index;
400 for (Index = 0; Symbols[Index].FnStart != FnStart; ++Index)
401 assert(Index != SymTabPtr->NumSymbols && "Didn't find function!");
402
403 // Once we have an index, we know to nuke this entry, overwrite it with the
404 // entry at the end of the array, making the last entry redundant.
405 const char *OldName = Symbols[Index].FnName;
406 Symbols[Index] = Symbols[SymTabPtr->NumSymbols-1];
407 free((void*)OldName);
408
409 // Drop the number of symbols in the table.
410 --SymTabPtr->NumSymbols;
411
412 // Finally, if we deleted the final symbol, deallocate the table itself.
Nate Begemanf44085a2008-05-18 19:09:10 +0000413 if (SymTabPtr->NumSymbols != 0)
Chris Lattner8ac66c12008-04-04 05:51:42 +0000414 return;
415
416 *SymTabPtrPtr = 0;
417 delete [] Symbols;
418 delete SymTabPtr;
419}
Chris Lattner688506d2003-08-14 18:35:27 +0000420
Chris Lattner54266522004-11-20 23:57:07 +0000421//===----------------------------------------------------------------------===//
Chris Lattner166f2262004-11-22 22:00:25 +0000422// JITEmitter code.
Chris Lattner54266522004-11-20 23:57:07 +0000423//
Chris Lattner688506d2003-08-14 18:35:27 +0000424namespace {
Chris Lattner166f2262004-11-22 22:00:25 +0000425 /// JITEmitter - The JIT implementation of the MachineCodeEmitter, which is
426 /// used to output functions to memory for execution.
427 class JITEmitter : public MachineCodeEmitter {
Chris Lattner8907b4b2007-12-05 23:39:57 +0000428 JITMemoryManager *MemMgr;
Chris Lattner688506d2003-08-14 18:35:27 +0000429
Chris Lattner6125fdd2003-05-09 03:30:07 +0000430 // When outputting a function stub in the context of some other function, we
Chris Lattner43b429b2006-05-02 18:27:26 +0000431 // save BufferBegin/BufferEnd/CurBufferPtr here.
432 unsigned char *SavedBufferBegin, *SavedBufferEnd, *SavedCurBufferPtr;
Chris Lattnerbba1b6d2003-06-01 23:24:36 +0000433
Chris Lattner5be478f2004-11-20 03:46:14 +0000434 /// Relocations - These are the relocations that the function needs, as
435 /// emitted.
436 std::vector<MachineRelocation> Relocations;
Chris Lattnerb4432f32006-05-03 17:10:41 +0000437
438 /// MBBLocations - This vector is a mapping from MBB ID's to their address.
439 /// It is filled in by the StartMachineBasicBlock callback and queried by
440 /// the getMachineBasicBlockAddress callback.
441 std::vector<intptr_t> MBBLocations;
Andrew Lenharth16ec33c2005-07-22 20:48:12 +0000442
Chris Lattner239862c2006-02-09 04:49:59 +0000443 /// ConstantPool - The constant pool for the current function.
444 ///
445 MachineConstantPool *ConstantPool;
446
447 /// ConstantPoolBase - A pointer to the first entry in the constant pool.
448 ///
449 void *ConstantPoolBase;
Nate Begeman37efe672006-04-22 18:53:45 +0000450
Nate Begeman019f8512006-09-10 23:03:44 +0000451 /// JumpTable - The jump tables for the current function.
Nate Begeman37efe672006-04-22 18:53:45 +0000452 ///
453 MachineJumpTableInfo *JumpTable;
454
455 /// JumpTableBase - A pointer to the first entry in the jump table.
456 ///
457 void *JumpTableBase;
Evan Cheng2a3e08b2008-01-05 02:26:58 +0000458
Chris Lattnere7484012007-02-24 02:57:03 +0000459 /// Resolver - This contains info about the currently resolved functions.
460 JITResolver Resolver;
Nicolas Geoffrayafe6c2b2008-02-13 18:39:37 +0000461
462 /// DE - The dwarf emitter for the jit.
463 JITDwarfEmitter *DE;
464
465 /// LabelLocations - This vector is a mapping from Label ID's to their
466 /// address.
467 std::vector<intptr_t> LabelLocations;
468
469 /// MMI - Machine module info for exception informations
470 MachineModuleInfo* MMI;
471
Dale Johannesendd947ea2008-08-07 01:30:15 +0000472 // GVSet - a set to keep track of which globals have been seen
473 std::set<const GlobalVariable*> GVSet;
474
Chris Lattnere7484012007-02-24 02:57:03 +0000475 public:
Chris Lattner9f2f1422007-12-06 01:08:09 +0000476 JITEmitter(JIT &jit, JITMemoryManager *JMM) : Resolver(jit) {
477 MemMgr = JMM ? JMM : JITMemoryManager::CreateDefaultMemManager();
Chris Lattner8907b4b2007-12-05 23:39:57 +0000478 if (jit.getJITInfo().needsGOT()) {
479 MemMgr->AllocateGOT();
480 DOUT << "JIT is managing a GOT\n";
481 }
Nicolas Geoffrayafe6c2b2008-02-13 18:39:37 +0000482
483 if (ExceptionHandling) DE = new JITDwarfEmitter(jit);
Chris Lattner8907b4b2007-12-05 23:39:57 +0000484 }
485 ~JITEmitter() {
486 delete MemMgr;
Nicolas Geoffrayafe6c2b2008-02-13 18:39:37 +0000487 if (ExceptionHandling) delete DE;
Andrew Lenharth16ec33c2005-07-22 20:48:12 +0000488 }
Chris Lattnere7484012007-02-24 02:57:03 +0000489
490 JITResolver &getJITResolver() { return Resolver; }
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000491
492 virtual void startFunction(MachineFunction &F);
Chris Lattner43b429b2006-05-02 18:27:26 +0000493 virtual bool finishFunction(MachineFunction &F);
Chris Lattnerf75f9be2006-05-02 23:22:24 +0000494
495 void emitConstantPool(MachineConstantPool *MCP);
496 void initJumpTableInfo(MachineJumpTableInfo *MJTI);
Jim Laskeyb92767a2006-12-14 22:53:42 +0000497 void emitJumpTableInfo(MachineJumpTableInfo *MJTI);
Chris Lattnerf75f9be2006-05-02 23:22:24 +0000498
Nicolas Geoffray51cc3c12008-04-16 20:46:05 +0000499 virtual void startFunctionStub(const GlobalValue* F, unsigned StubSize,
500 unsigned Alignment = 1);
501 virtual void* finishFunctionStub(const GlobalValue *F);
Chris Lattnerbba1b6d2003-06-01 23:24:36 +0000502
Chris Lattner5be478f2004-11-20 03:46:14 +0000503 virtual void addRelocation(const MachineRelocation &MR) {
504 Relocations.push_back(MR);
505 }
Chris Lattnerb4432f32006-05-03 17:10:41 +0000506
507 virtual void StartMachineBasicBlock(MachineBasicBlock *MBB) {
508 if (MBBLocations.size() <= (unsigned)MBB->getNumber())
509 MBBLocations.resize((MBB->getNumber()+1)*2);
510 MBBLocations[MBB->getNumber()] = getCurrentPCValue();
511 }
Chris Lattner5be478f2004-11-20 03:46:14 +0000512
Chris Lattnerb4432f32006-05-03 17:10:41 +0000513 virtual intptr_t getConstantPoolEntryAddress(unsigned Entry) const;
514 virtual intptr_t getJumpTableEntryAddress(unsigned Entry) const;
Evan Cheng2a3e08b2008-01-05 02:26:58 +0000515
Chris Lattnerb4432f32006-05-03 17:10:41 +0000516 virtual intptr_t getMachineBasicBlockAddress(MachineBasicBlock *MBB) const {
517 assert(MBBLocations.size() > (unsigned)MBB->getNumber() &&
518 MBBLocations[MBB->getNumber()] && "MBB not emitted!");
519 return MBBLocations[MBB->getNumber()];
520 }
521
Chris Lattnere993cc22006-05-11 23:08:08 +0000522 /// deallocateMemForFunction - Deallocate all memory for the specified
523 /// function body.
524 void deallocateMemForFunction(Function *F) {
Chris Lattner8907b4b2007-12-05 23:39:57 +0000525 MemMgr->deallocateMemForFunction(F);
Chris Lattnere993cc22006-05-11 23:08:08 +0000526 }
Nicolas Geoffrayafe6c2b2008-02-13 18:39:37 +0000527
528 virtual void emitLabel(uint64_t LabelID) {
529 if (LabelLocations.size() <= LabelID)
530 LabelLocations.resize((LabelID+1)*2);
531 LabelLocations[LabelID] = getCurrentPCValue();
532 }
533
534 virtual intptr_t getLabelAddress(uint64_t LabelID) const {
535 assert(LabelLocations.size() > (unsigned)LabelID &&
536 LabelLocations[LabelID] && "Label not emitted!");
537 return LabelLocations[LabelID];
538 }
539
540 virtual void setModuleInfo(MachineModuleInfo* Info) {
541 MMI = Info;
542 if (ExceptionHandling) DE->setModuleInfo(Info);
543 }
544
Chris Lattner54266522004-11-20 23:57:07 +0000545 private:
Chris Lattner5e225582004-11-21 03:37:42 +0000546 void *getPointerToGlobal(GlobalValue *GV, void *Reference, bool NoNeedStub);
Evan Chengbe8c03f2008-01-04 10:46:51 +0000547 void *getPointerToGVLazyPtr(GlobalValue *V, void *Reference,
548 bool NoNeedStub);
Dale Johannesendd947ea2008-08-07 01:30:15 +0000549 unsigned addSizeOfGlobal(const GlobalVariable *GV, unsigned Size);
550 unsigned addSizeOfGlobalsInConstantVal(const Constant *C, unsigned Size);
551 unsigned addSizeOfGlobalsInInitializer(const Constant *Init, unsigned Size);
552 unsigned GetSizeOfGlobalsInBytes(MachineFunction &MF);
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000553 };
554}
555
Chris Lattner166f2262004-11-22 22:00:25 +0000556void *JITEmitter::getPointerToGlobal(GlobalValue *V, void *Reference,
557 bool DoesntNeedStub) {
Chris Lattner54266522004-11-20 23:57:07 +0000558 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(V)) {
559 /// FIXME: If we straightened things out, this could actually emit the
560 /// global immediately instead of queuing it for codegen later!
Chris Lattner54266522004-11-20 23:57:07 +0000561 return TheJIT->getOrEmitGlobalVariable(GV);
562 }
Chris Lattner18e04592008-06-25 20:21:35 +0000563 if (GlobalAlias *GA = dyn_cast<GlobalAlias>(V))
564 return TheJIT->getPointerToGlobal(GA->resolveAliasedGlobal());
Chris Lattner54266522004-11-20 23:57:07 +0000565
566 // If we have already compiled the function, return a pointer to its body.
567 Function *F = cast<Function>(V);
568 void *ResultPtr = TheJIT->getPointerToGlobalIfAvailable(F);
569 if (ResultPtr) return ResultPtr;
570
Gabor Greifa99be512007-07-05 17:07:56 +0000571 if (F->isDeclaration() && !F->hasNotBeenReadFromBitcode()) {
Chris Lattner54266522004-11-20 23:57:07 +0000572 // If this is an external function pointer, we can force the JIT to
573 // 'compile' it, which really just adds it to the map.
Chris Lattnerb43dbdc2004-11-22 07:24:43 +0000574 if (DoesntNeedStub)
575 return TheJIT->getPointerToFunction(F);
576
Chris Lattnere7484012007-02-24 02:57:03 +0000577 return Resolver.getFunctionStub(F);
Chris Lattner54266522004-11-20 23:57:07 +0000578 }
579
Chris Lattner5e225582004-11-21 03:37:42 +0000580 // Okay, the function has not been compiled yet, if the target callback
581 // mechanism is capable of rewriting the instruction directly, prefer to do
582 // that instead of emitting a stub.
583 if (DoesntNeedStub)
Chris Lattnere7484012007-02-24 02:57:03 +0000584 return Resolver.AddCallbackAtLocation(F, Reference);
Chris Lattner5e225582004-11-21 03:37:42 +0000585
Chris Lattner54266522004-11-20 23:57:07 +0000586 // Otherwise, we have to emit a lazy resolving stub.
Chris Lattnere7484012007-02-24 02:57:03 +0000587 return Resolver.getFunctionStub(F);
Chris Lattner54266522004-11-20 23:57:07 +0000588}
589
Evan Chengbe8c03f2008-01-04 10:46:51 +0000590void *JITEmitter::getPointerToGVLazyPtr(GlobalValue *V, void *Reference,
591 bool DoesntNeedStub) {
592 // Make sure GV is emitted first.
593 // FIXME: For now, if the GV is an external function we force the JIT to
594 // compile it so the lazy pointer will contain the fully resolved address.
595 void *GVAddress = getPointerToGlobal(V, Reference, true);
596 return Resolver.getGlobalValueLazyPtr(V, GVAddress);
597}
598
Nicolas Geoffraydc17ab22008-04-18 20:59:31 +0000599static unsigned GetConstantPoolSizeInBytes(MachineConstantPool *MCP) {
600 const std::vector<MachineConstantPoolEntry> &Constants = MCP->getConstants();
601 if (Constants.empty()) return 0;
602
603 MachineConstantPoolEntry CPE = Constants.back();
604 unsigned Size = CPE.Offset;
605 const Type *Ty = CPE.isMachineConstantPoolEntry()
606 ? CPE.Val.MachineCPVal->getType() : CPE.Val.ConstVal->getType();
607 Size += TheJIT->getTargetData()->getABITypeSize(Ty);
608 return Size;
609}
610
611static unsigned GetJumpTableSizeInBytes(MachineJumpTableInfo *MJTI) {
612 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
613 if (JT.empty()) return 0;
614
615 unsigned NumEntries = 0;
616 for (unsigned i = 0, e = JT.size(); i != e; ++i)
617 NumEntries += JT[i].MBBs.size();
618
619 unsigned EntrySize = MJTI->getEntrySize();
620
621 return NumEntries * EntrySize;
622}
623
Nicolas Geoffray580631a2008-04-20 23:39:44 +0000624static uintptr_t RoundUpToAlign(uintptr_t Size, unsigned Alignment) {
Nicolas Geoffraydc17ab22008-04-18 20:59:31 +0000625 if (Alignment == 0) Alignment = 1;
Nicolas Geoffray580631a2008-04-20 23:39:44 +0000626 // Since we do not know where the buffer will be allocated, be pessimistic.
627 return Size + Alignment;
Nicolas Geoffraydc17ab22008-04-18 20:59:31 +0000628}
Evan Chengbe8c03f2008-01-04 10:46:51 +0000629
Dale Johannesendd947ea2008-08-07 01:30:15 +0000630/// addSizeOfGlobal - add the size of the global (plus any alignment padding)
631/// into the running total Size.
632
633unsigned JITEmitter::addSizeOfGlobal(const GlobalVariable *GV, unsigned Size) {
634 const Type *ElTy = GV->getType()->getElementType();
635 size_t GVSize = (size_t)TheJIT->getTargetData()->getABITypeSize(ElTy);
636 size_t GVAlign =
637 (size_t)TheJIT->getTargetData()->getPreferredAlignment(GV);
638 DOUT << "Adding in size " << GVSize << " alignment " << GVAlign;
639 DEBUG(GV->dump());
640 // Assume code section ends with worst possible alignment, so first
641 // variable needs maximal padding.
642 if (Size==0)
643 Size = 1;
644 Size = ((Size+GVAlign-1)/GVAlign)*GVAlign;
645 Size += GVSize;
646 return Size;
647}
648
649/// addSizeOfGlobalsInConstantVal - find any globals that we haven't seen yet
650/// but are referenced from the constant; put them in GVSet and add their
651/// size into the running total Size.
652
653unsigned JITEmitter::addSizeOfGlobalsInConstantVal(const Constant *C,
654 unsigned Size) {
655 // If its undefined, return the garbage.
656 if (isa<UndefValue>(C))
657 return Size;
658
659 // If the value is a ConstantExpr
660 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
661 Constant *Op0 = CE->getOperand(0);
662 switch (CE->getOpcode()) {
663 case Instruction::GetElementPtr:
664 case Instruction::Trunc:
665 case Instruction::ZExt:
666 case Instruction::SExt:
667 case Instruction::FPTrunc:
668 case Instruction::FPExt:
669 case Instruction::UIToFP:
670 case Instruction::SIToFP:
671 case Instruction::FPToUI:
672 case Instruction::FPToSI:
673 case Instruction::PtrToInt:
674 case Instruction::IntToPtr:
675 case Instruction::BitCast: {
676 Size = addSizeOfGlobalsInConstantVal(Op0, Size);
677 break;
678 }
679 case Instruction::Add:
680 case Instruction::Sub:
681 case Instruction::Mul:
682 case Instruction::UDiv:
683 case Instruction::SDiv:
684 case Instruction::URem:
685 case Instruction::SRem:
686 case Instruction::And:
687 case Instruction::Or:
688 case Instruction::Xor: {
689 Size = addSizeOfGlobalsInConstantVal(Op0, Size);
690 Size = addSizeOfGlobalsInConstantVal(CE->getOperand(1), Size);
691 break;
692 }
693 default: {
694 cerr << "ConstantExpr not handled: " << *CE << "\n";
695 abort();
696 }
697 }
698 }
699
700 if (C->getType()->getTypeID() == Type::PointerTyID)
701 if (const GlobalVariable* GV = dyn_cast<GlobalVariable>(C))
702 if (GVSet.insert(GV).second)
703 Size = addSizeOfGlobal(GV, Size);
704
705 return Size;
706}
707
708/// addSizeOfGLobalsInInitializer - handle any globals that we haven't seen yet
709/// but are referenced from the given initializer.
710
711unsigned JITEmitter::addSizeOfGlobalsInInitializer(const Constant *Init,
712 unsigned Size) {
713 if (!isa<UndefValue>(Init) &&
714 !isa<ConstantVector>(Init) &&
715 !isa<ConstantAggregateZero>(Init) &&
716 !isa<ConstantArray>(Init) &&
717 !isa<ConstantStruct>(Init) &&
718 Init->getType()->isFirstClassType())
719 Size = addSizeOfGlobalsInConstantVal(Init, Size);
720 return Size;
721}
722
723/// GetSizeOfGlobalsInBytes - walk the code for the function, looking for
724/// globals; then walk the initializers of those globals looking for more.
725/// If their size has not been considered yet, add it into the running total
726/// Size.
727
728unsigned JITEmitter::GetSizeOfGlobalsInBytes(MachineFunction &MF) {
729 unsigned Size = 0;
730 GVSet.clear();
731
732 for (MachineFunction::iterator MBB = MF.begin(), E = MF.end();
733 MBB != E; ++MBB) {
734 for (MachineBasicBlock::const_iterator I = MBB->begin(), E = MBB->end();
735 I != E; ++I) {
736 const TargetInstrDesc &Desc = I->getDesc();
737 const MachineInstr &MI = *I;
738 unsigned NumOps = Desc.getNumOperands();
739 for (unsigned CurOp = 0; CurOp < NumOps; CurOp++) {
740 const MachineOperand &MO = MI.getOperand(CurOp);
741 if (MO.isGlobalAddress()) {
742 GlobalValue* V = MO.getGlobal();
743 const GlobalVariable *GV = dyn_cast<const GlobalVariable>(V);
744 if (!GV)
745 continue;
746 // If seen in previous function, it will have an entry here.
747 if (TheJIT->getPointerToGlobalIfAvailable(GV))
748 continue;
749 // If seen earlier in this function, it will have an entry here.
750 // FIXME: it should be possible to combine these tables, by
751 // assuming the addresses of the new globals in this module
752 // start at 0 (or something) and adjusting them after codegen
753 // complete. Another possibility is to grab a marker bit in GV.
754 if (GVSet.insert(GV).second)
755 // A variable as yet unseen. Add in its size.
756 Size = addSizeOfGlobal(GV, Size);
757 }
758 }
759 }
760 }
761 DOUT << "About to look through initializers\n";
762 // Look for more globals that are referenced only from initializers.
763 // GVSet.end is computed each time because the set can grow as we go.
764 for (std::set<const GlobalVariable *>::iterator I = GVSet.begin();
765 I != GVSet.end(); I++) {
766 const GlobalVariable* GV = *I;
767 if (GV->hasInitializer())
768 Size = addSizeOfGlobalsInInitializer(GV->getInitializer(), Size);
769 }
770
771 return Size;
772}
773
Chris Lattner166f2262004-11-22 22:00:25 +0000774void JITEmitter::startFunction(MachineFunction &F) {
Nicolas Geoffraydc17ab22008-04-18 20:59:31 +0000775 uintptr_t ActualSize = 0;
Nicolas Geoffray5913e6c2008-04-20 17:44:19 +0000776 if (MemMgr->NeedsExactSize()) {
Dale Johannesendd947ea2008-08-07 01:30:15 +0000777 DOUT << "ExactSize\n";
Nicolas Geoffraydc17ab22008-04-18 20:59:31 +0000778 const TargetInstrInfo* TII = F.getTarget().getInstrInfo();
779 MachineJumpTableInfo *MJTI = F.getJumpTableInfo();
780 MachineConstantPool *MCP = F.getConstantPool();
781
782 // Ensure the constant pool/jump table info is at least 4-byte aligned.
Nicolas Geoffray580631a2008-04-20 23:39:44 +0000783 ActualSize = RoundUpToAlign(ActualSize, 16);
Nicolas Geoffraydc17ab22008-04-18 20:59:31 +0000784
785 // Add the alignment of the constant pool
Nicolas Geoffray580631a2008-04-20 23:39:44 +0000786 ActualSize = RoundUpToAlign(ActualSize,
787 1 << MCP->getConstantPoolAlignment());
Nicolas Geoffraydc17ab22008-04-18 20:59:31 +0000788
789 // Add the constant pool size
790 ActualSize += GetConstantPoolSizeInBytes(MCP);
791
792 // Add the aligment of the jump table info
Nicolas Geoffray580631a2008-04-20 23:39:44 +0000793 ActualSize = RoundUpToAlign(ActualSize, MJTI->getAlignment());
Nicolas Geoffraydc17ab22008-04-18 20:59:31 +0000794
795 // Add the jump table size
796 ActualSize += GetJumpTableSizeInBytes(MJTI);
797
798 // Add the alignment for the function
Nicolas Geoffray580631a2008-04-20 23:39:44 +0000799 ActualSize = RoundUpToAlign(ActualSize,
800 std::max(F.getFunction()->getAlignment(), 8U));
Nicolas Geoffraydc17ab22008-04-18 20:59:31 +0000801
802 // Add the function size
803 ActualSize += TII->GetFunctionSizeInBytes(F);
Dale Johannesendd947ea2008-08-07 01:30:15 +0000804
805 DOUT << "ActualSize before globals " << ActualSize << "\n";
806 // Add the size of the globals that will be allocated after this function.
807 // These are all the ones referenced from this function that were not
808 // previously allocated.
809 ActualSize += GetSizeOfGlobalsInBytes(F);
810 DOUT << "ActualSize after globals " << ActualSize << "\n";
Nicolas Geoffraydc17ab22008-04-18 20:59:31 +0000811 }
812
Chris Lattner8907b4b2007-12-05 23:39:57 +0000813 BufferBegin = CurBufferPtr = MemMgr->startFunctionBody(F.getFunction(),
814 ActualSize);
Chris Lattnere993cc22006-05-11 23:08:08 +0000815 BufferEnd = BufferBegin+ActualSize;
Chris Lattnerf75f9be2006-05-02 23:22:24 +0000816
Evan Cheng9a1e9b92006-11-16 20:04:54 +0000817 // Ensure the constant pool/jump table info is at least 4-byte aligned.
818 emitAlignment(16);
819
Chris Lattnerf75f9be2006-05-02 23:22:24 +0000820 emitConstantPool(F.getConstantPool());
821 initJumpTableInfo(F.getJumpTableInfo());
822
823 // About to start emitting the machine code for the function.
Chris Lattner0eb4d6b2006-05-03 01:03:20 +0000824 emitAlignment(std::max(F.getFunction()->getAlignment(), 8U));
Chris Lattnerf75f9be2006-05-02 23:22:24 +0000825 TheJIT->updateGlobalMapping(F.getFunction(), CurBufferPtr);
Evan Cheng55fc2802006-07-25 20:40:54 +0000826
Chris Lattnerb4432f32006-05-03 17:10:41 +0000827 MBBLocations.clear();
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000828}
829
Chris Lattner43b429b2006-05-02 18:27:26 +0000830bool JITEmitter::finishFunction(MachineFunction &F) {
Chris Lattnere993cc22006-05-11 23:08:08 +0000831 if (CurBufferPtr == BufferEnd) {
832 // FIXME: Allocate more space, then try again.
Bill Wendling832171c2006-12-07 20:04:42 +0000833 cerr << "JIT: Ran out of space for generated machine code!\n";
Chris Lattnere993cc22006-05-11 23:08:08 +0000834 abort();
835 }
836
Jim Laskeyb92767a2006-12-14 22:53:42 +0000837 emitJumpTableInfo(F.getJumpTableInfo());
Chris Lattnerb4432f32006-05-03 17:10:41 +0000838
Chris Lattnera8279532006-06-16 18:09:26 +0000839 // FnStart is the start of the text, not the start of the constant pool and
840 // other per-function data.
841 unsigned char *FnStart =
842 (unsigned char *)TheJIT->getPointerToGlobalIfAvailable(F.getFunction());
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000843
Chris Lattner5be478f2004-11-20 03:46:14 +0000844 if (!Relocations.empty()) {
Chris Lattnere884dc22005-07-20 16:29:20 +0000845 NumRelos += Relocations.size();
846
Chris Lattner5be478f2004-11-20 03:46:14 +0000847 // Resolve the relocations to concrete pointers.
848 for (unsigned i = 0, e = Relocations.size(); i != e; ++i) {
849 MachineRelocation &MR = Relocations[i];
850 void *ResultPtr;
Chris Lattnerd91ff7c2005-04-18 01:44:27 +0000851 if (MR.isString()) {
Chris Lattner5be478f2004-11-20 03:46:14 +0000852 ResultPtr = TheJIT->getPointerToNamedFunction(MR.getString());
Misha Brukmanf976c852005-04-21 22:55:34 +0000853
Chris Lattnerd91ff7c2005-04-18 01:44:27 +0000854 // If the target REALLY wants a stub for this function, emit it now.
Evan Cheng02aabbf2008-01-03 02:56:28 +0000855 if (!MR.doesntNeedStub())
Chris Lattnere7484012007-02-24 02:57:03 +0000856 ResultPtr = Resolver.getExternalFunctionStub(ResultPtr);
Chris Lattnerd2d5c762006-05-03 18:55:56 +0000857 } else if (MR.isGlobalValue()) {
Chris Lattner5e225582004-11-21 03:37:42 +0000858 ResultPtr = getPointerToGlobal(MR.getGlobalValue(),
Chris Lattner43b429b2006-05-02 18:27:26 +0000859 BufferBegin+MR.getMachineCodeOffset(),
Evan Cheng02aabbf2008-01-03 02:56:28 +0000860 MR.doesntNeedStub());
Evan Chengbe8c03f2008-01-04 10:46:51 +0000861 } else if (MR.isGlobalValueLazyPtr()) {
862 ResultPtr = getPointerToGVLazyPtr(MR.getGlobalValue(),
863 BufferBegin+MR.getMachineCodeOffset(),
864 MR.doesntNeedStub());
Evan Chengf141cc42006-07-27 18:21:10 +0000865 } else if (MR.isBasicBlock()) {
866 ResultPtr = (void*)getMachineBasicBlockAddress(MR.getBasicBlock());
Jim Laskeyacd80ac2006-12-14 19:17:33 +0000867 } else if (MR.isConstantPoolIndex()) {
Chris Lattnerd2d5c762006-05-03 18:55:56 +0000868 ResultPtr=(void*)getConstantPoolEntryAddress(MR.getConstantPoolIndex());
Evan Cheng52b510b2006-06-23 01:02:37 +0000869 } else {
870 assert(MR.isJumpTableIndex());
871 ResultPtr=(void*)getJumpTableEntryAddress(MR.getJumpTableIndex());
Chris Lattnerd2d5c762006-05-03 18:55:56 +0000872 }
Jeff Cohen00b168892005-07-27 06:12:32 +0000873
Chris Lattner5be478f2004-11-20 03:46:14 +0000874 MR.setResultPointer(ResultPtr);
Andrew Lenharth16ec33c2005-07-22 20:48:12 +0000875
Andrew Lenharth6a974612005-07-28 12:44:13 +0000876 // if we are managing the GOT and the relocation wants an index,
877 // give it one
Chris Lattner8907b4b2007-12-05 23:39:57 +0000878 if (MR.isGOTRelative() && MemMgr->isManagingGOT()) {
Chris Lattnere7484012007-02-24 02:57:03 +0000879 unsigned idx = Resolver.getGOTIndexForAddr(ResultPtr);
Andrew Lenharth6a974612005-07-28 12:44:13 +0000880 MR.setGOTIndex(idx);
Chris Lattner8907b4b2007-12-05 23:39:57 +0000881 if (((void**)MemMgr->getGOTBase())[idx] != ResultPtr) {
Bill Wendling832171c2006-12-07 20:04:42 +0000882 DOUT << "GOT was out of date for " << ResultPtr
Chris Lattner8907b4b2007-12-05 23:39:57 +0000883 << " pointing at " << ((void**)MemMgr->getGOTBase())[idx]
Bill Wendling832171c2006-12-07 20:04:42 +0000884 << "\n";
Chris Lattner8907b4b2007-12-05 23:39:57 +0000885 ((void**)MemMgr->getGOTBase())[idx] = ResultPtr;
Andrew Lenharth6a974612005-07-28 12:44:13 +0000886 }
Andrew Lenharth16ec33c2005-07-22 20:48:12 +0000887 }
Chris Lattner5be478f2004-11-20 03:46:14 +0000888 }
889
Chris Lattner43b429b2006-05-02 18:27:26 +0000890 TheJIT->getJITInfo().relocate(BufferBegin, &Relocations[0],
Chris Lattner8907b4b2007-12-05 23:39:57 +0000891 Relocations.size(), MemMgr->getGOTBase());
Chris Lattner5be478f2004-11-20 03:46:14 +0000892 }
893
Dale Johannesendd947ea2008-08-07 01:30:15 +0000894 unsigned char *FnEnd = CurBufferPtr;
895
896 MemMgr->endFunctionBody(F.getFunction(), BufferBegin, FnEnd);
897 NumBytes += FnEnd-FnStart;
898
Chris Lattnerd2d5c762006-05-03 18:55:56 +0000899 // Update the GOT entry for F to point to the new code.
Chris Lattner8907b4b2007-12-05 23:39:57 +0000900 if (MemMgr->isManagingGOT()) {
Chris Lattnere7484012007-02-24 02:57:03 +0000901 unsigned idx = Resolver.getGOTIndexForAddr((void*)BufferBegin);
Chris Lattner8907b4b2007-12-05 23:39:57 +0000902 if (((void**)MemMgr->getGOTBase())[idx] != (void*)BufferBegin) {
Bill Wendling832171c2006-12-07 20:04:42 +0000903 DOUT << "GOT was out of date for " << (void*)BufferBegin
Chris Lattner8907b4b2007-12-05 23:39:57 +0000904 << " pointing at " << ((void**)MemMgr->getGOTBase())[idx] << "\n";
905 ((void**)MemMgr->getGOTBase())[idx] = (void*)BufferBegin;
Andrew Lenharth6a974612005-07-28 12:44:13 +0000906 }
907 }
908
Evan Cheng55fc2802006-07-25 20:40:54 +0000909 // Invalidate the icache if necessary.
Chris Lattnerbc52cad2008-06-25 17:18:44 +0000910 sys::Memory::InvalidateInstructionCache(FnStart, FnEnd-FnStart);
Chris Lattner8ac66c12008-04-04 05:51:42 +0000911
912 // Add it to the JIT symbol table if the host wants it.
913 AddFunctionToSymbolTable(F.getFunction()->getNameStart(),
914 FnStart, FnEnd-FnStart);
Evan Cheng55fc2802006-07-25 20:40:54 +0000915
Bill Wendling832171c2006-12-07 20:04:42 +0000916 DOUT << "JIT: Finished CodeGen of [" << (void*)FnStart
917 << "] Function: " << F.getFunction()->getName()
918 << ": " << (FnEnd-FnStart) << " bytes of text, "
919 << Relocations.size() << " relocations\n";
Chris Lattner5be478f2004-11-20 03:46:14 +0000920 Relocations.clear();
Anton Korobeynikov8cd4c3e2007-01-19 17:25:17 +0000921
Chris Lattnerc5633c22007-01-20 20:51:43 +0000922#ifndef NDEBUG
Dale Johannesen50dd1d02008-08-11 23:46:25 +0000923 {
924 DOUT << std::hex;
925 int i;
926 unsigned char* q = FnStart;
927 for (i=1; q!=FnEnd; q++, i++) {
928 if (i%8==1)
929 DOUT << "0x" << (long)q << ": ";
930 DOUT<< (unsigned short)*q << " ";
931 if (i%8==0)
932 DOUT<<"\n";
933 }
934 DOUT << std::dec;
Anton Korobeynikovc6551ff2007-03-06 05:32:48 +0000935 if (sys::hasDisassembler())
936 DOUT << "Disassembled code:\n"
937 << sys::disassembleBuffer(FnStart, FnEnd-FnStart, (uintptr_t)FnStart);
Dale Johannesen50dd1d02008-08-11 23:46:25 +0000938 }
Chris Lattnerc5633c22007-01-20 20:51:43 +0000939#endif
Nicolas Geoffrayafe6c2b2008-02-13 18:39:37 +0000940 if (ExceptionHandling) {
Nicolas Geoffraydc17ab22008-04-18 20:59:31 +0000941 uintptr_t ActualSize = 0;
Nicolas Geoffrayafe6c2b2008-02-13 18:39:37 +0000942 SavedBufferBegin = BufferBegin;
943 SavedBufferEnd = BufferEnd;
944 SavedCurBufferPtr = CurBufferPtr;
Nicolas Geoffraydc17ab22008-04-18 20:59:31 +0000945
Nicolas Geoffray5913e6c2008-04-20 17:44:19 +0000946 if (MemMgr->NeedsExactSize()) {
947 ActualSize = DE->GetDwarfTableSizeInBytes(F, *this, FnStart, FnEnd);
Nicolas Geoffraydc17ab22008-04-18 20:59:31 +0000948 }
Nicolas Geoffrayafe6c2b2008-02-13 18:39:37 +0000949
950 BufferBegin = CurBufferPtr = MemMgr->startExceptionTable(F.getFunction(),
951 ActualSize);
952 BufferEnd = BufferBegin+ActualSize;
953 unsigned char* FrameRegister = DE->EmitDwarfTable(F, *this, FnStart, FnEnd);
Chris Lattner0fdaa0b2008-03-07 20:05:43 +0000954 MemMgr->endExceptionTable(F.getFunction(), BufferBegin, CurBufferPtr,
955 FrameRegister);
Nicolas Geoffrayafe6c2b2008-02-13 18:39:37 +0000956 BufferBegin = SavedBufferBegin;
957 BufferEnd = SavedBufferEnd;
958 CurBufferPtr = SavedCurBufferPtr;
959
960 TheJIT->RegisterTable(FrameRegister);
961 }
962 MMI->EndFunction();
963
Chris Lattner43b429b2006-05-02 18:27:26 +0000964 return false;
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000965}
966
Chris Lattner166f2262004-11-22 22:00:25 +0000967void JITEmitter::emitConstantPool(MachineConstantPool *MCP) {
Chris Lattnerfa77d432006-02-09 04:22:52 +0000968 const std::vector<MachineConstantPoolEntry> &Constants = MCP->getConstants();
Chris Lattner2c0a6a12003-11-30 04:23:21 +0000969 if (Constants.empty()) return;
970
Evan Chengcd5731d2006-09-12 20:59:59 +0000971 MachineConstantPoolEntry CPE = Constants.back();
972 unsigned Size = CPE.Offset;
973 const Type *Ty = CPE.isMachineConstantPoolEntry()
Chris Lattner8a650092006-09-13 16:21:10 +0000974 ? CPE.Val.MachineCPVal->getType() : CPE.Val.ConstVal->getType();
Duncan Sands514ab342007-11-01 20:53:16 +0000975 Size += TheJIT->getTargetData()->getABITypeSize(Ty);
Chris Lattner2c0a6a12003-11-30 04:23:21 +0000976
Evan Cheng97b8c402008-04-12 00:22:01 +0000977 unsigned Align = 1 << MCP->getConstantPoolAlignment();
978 ConstantPoolBase = allocateSpace(Size, Align);
Chris Lattner239862c2006-02-09 04:49:59 +0000979 ConstantPool = MCP;
Chris Lattnerf75f9be2006-05-02 23:22:24 +0000980
981 if (ConstantPoolBase == 0) return; // Buffer overflow.
982
Evan Cheng97b8c402008-04-12 00:22:01 +0000983 DOUT << "JIT: Emitted constant pool at [" << ConstantPoolBase
984 << "] (size: " << Size << ", alignment: " << Align << ")\n";
985
Chris Lattner239862c2006-02-09 04:49:59 +0000986 // Initialize the memory for all of the constant pool entries.
Chris Lattner3029f922006-02-09 04:46:04 +0000987 for (unsigned i = 0, e = Constants.size(); i != e; ++i) {
Chris Lattner239862c2006-02-09 04:49:59 +0000988 void *CAddr = (char*)ConstantPoolBase+Constants[i].Offset;
Evan Chengcd5731d2006-09-12 20:59:59 +0000989 if (Constants[i].isMachineConstantPoolEntry()) {
990 // FIXME: add support to lower machine constant pool values into bytes!
Bill Wendling832171c2006-12-07 20:04:42 +0000991 cerr << "Initialize memory with machine specific constant pool entry"
992 << " has not been implemented!\n";
Evan Chengcd5731d2006-09-12 20:59:59 +0000993 abort();
994 }
995 TheJIT->InitializeMemory(Constants[i].Val.ConstVal, CAddr);
Evan Cheng97b8c402008-04-12 00:22:01 +0000996 DOUT << "JIT: CP" << i << " at [" << CAddr << "]\n";
Chris Lattner1cc08382003-01-13 01:00:12 +0000997 }
998}
999
Nate Begeman37efe672006-04-22 18:53:45 +00001000void JITEmitter::initJumpTableInfo(MachineJumpTableInfo *MJTI) {
1001 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
1002 if (JT.empty()) return;
1003
Chris Lattnerf75f9be2006-05-02 23:22:24 +00001004 unsigned NumEntries = 0;
Nate Begeman37efe672006-04-22 18:53:45 +00001005 for (unsigned i = 0, e = JT.size(); i != e; ++i)
Chris Lattnerf75f9be2006-05-02 23:22:24 +00001006 NumEntries += JT[i].MBBs.size();
1007
1008 unsigned EntrySize = MJTI->getEntrySize();
1009
Nate Begeman37efe672006-04-22 18:53:45 +00001010 // Just allocate space for all the jump tables now. We will fix up the actual
1011 // MBB entries in the tables after we emit the code for each block, since then
1012 // we will know the final locations of the MBBs in memory.
1013 JumpTable = MJTI;
Chris Lattnerf75f9be2006-05-02 23:22:24 +00001014 JumpTableBase = allocateSpace(NumEntries * EntrySize, MJTI->getAlignment());
Nate Begeman37efe672006-04-22 18:53:45 +00001015}
1016
Jim Laskeyb92767a2006-12-14 22:53:42 +00001017void JITEmitter::emitJumpTableInfo(MachineJumpTableInfo *MJTI) {
Nate Begeman37efe672006-04-22 18:53:45 +00001018 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
Chris Lattnerf75f9be2006-05-02 23:22:24 +00001019 if (JT.empty() || JumpTableBase == 0) return;
Nate Begeman37efe672006-04-22 18:53:45 +00001020
Jim Laskeyb92767a2006-12-14 22:53:42 +00001021 if (TargetMachine::getRelocationModel() == Reloc::PIC_) {
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001022 assert(MJTI->getEntrySize() == 4 && "Cross JIT'ing?");
1023 // For each jump table, place the offset from the beginning of the table
1024 // to the target address.
1025 int *SlotPtr = (int*)JumpTableBase;
Chris Lattner32ca55f2006-05-03 00:13:06 +00001026
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001027 for (unsigned i = 0, e = JT.size(); i != e; ++i) {
1028 const std::vector<MachineBasicBlock*> &MBBs = JT[i].MBBs;
1029 // Store the offset of the basic block for this jump table slot in the
1030 // memory we allocated for the jump table in 'initJumpTableInfo'
1031 intptr_t Base = (intptr_t)SlotPtr;
Evan Cheng2a3e08b2008-01-05 02:26:58 +00001032 for (unsigned mi = 0, me = MBBs.size(); mi != me; ++mi) {
1033 intptr_t MBBAddr = getMachineBasicBlockAddress(MBBs[mi]);
1034 *SlotPtr++ = TheJIT->getJITInfo().getPICJumpTableEntry(MBBAddr, Base);
1035 }
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001036 }
1037 } else {
1038 assert(MJTI->getEntrySize() == sizeof(void*) && "Cross JIT'ing?");
1039
1040 // For each jump table, map each target in the jump table to the address of
1041 // an emitted MachineBasicBlock.
1042 intptr_t *SlotPtr = (intptr_t*)JumpTableBase;
1043
1044 for (unsigned i = 0, e = JT.size(); i != e; ++i) {
1045 const std::vector<MachineBasicBlock*> &MBBs = JT[i].MBBs;
1046 // Store the address of the basic block for this jump table slot in the
1047 // memory we allocated for the jump table in 'initJumpTableInfo'
1048 for (unsigned mi = 0, me = MBBs.size(); mi != me; ++mi)
1049 *SlotPtr++ = getMachineBasicBlockAddress(MBBs[mi]);
1050 }
Nate Begeman37efe672006-04-22 18:53:45 +00001051 }
1052}
1053
Nicolas Geoffray51cc3c12008-04-16 20:46:05 +00001054void JITEmitter::startFunctionStub(const GlobalValue* F, unsigned StubSize,
1055 unsigned Alignment) {
Chris Lattner43b429b2006-05-02 18:27:26 +00001056 SavedBufferBegin = BufferBegin;
1057 SavedBufferEnd = BufferEnd;
1058 SavedCurBufferPtr = CurBufferPtr;
1059
Nicolas Geoffray51cc3c12008-04-16 20:46:05 +00001060 BufferBegin = CurBufferPtr = MemMgr->allocateStub(F, StubSize, Alignment);
Chris Lattner43b429b2006-05-02 18:27:26 +00001061 BufferEnd = BufferBegin+StubSize+1;
Chris Lattner6125fdd2003-05-09 03:30:07 +00001062}
1063
Nicolas Geoffray51cc3c12008-04-16 20:46:05 +00001064void *JITEmitter::finishFunctionStub(const GlobalValue* F) {
Chris Lattner43b429b2006-05-02 18:27:26 +00001065 NumBytes += getCurrentPCOffset();
1066 std::swap(SavedBufferBegin, BufferBegin);
1067 BufferEnd = SavedBufferEnd;
1068 CurBufferPtr = SavedCurBufferPtr;
1069 return SavedBufferBegin;
Chris Lattnerbba1b6d2003-06-01 23:24:36 +00001070}
1071
Chris Lattnerbba1b6d2003-06-01 23:24:36 +00001072// getConstantPoolEntryAddress - Return the address of the 'ConstantNum' entry
1073// in the constant pool that was last emitted with the 'emitConstantPool'
1074// method.
1075//
Chris Lattnerb4432f32006-05-03 17:10:41 +00001076intptr_t JITEmitter::getConstantPoolEntryAddress(unsigned ConstantNum) const {
Chris Lattner239862c2006-02-09 04:49:59 +00001077 assert(ConstantNum < ConstantPool->getConstants().size() &&
Misha Brukman3c944972005-04-22 04:08:30 +00001078 "Invalid ConstantPoolIndex!");
Chris Lattner239862c2006-02-09 04:49:59 +00001079 return (intptr_t)ConstantPoolBase +
1080 ConstantPool->getConstants()[ConstantNum].Offset;
Chris Lattnerbba1b6d2003-06-01 23:24:36 +00001081}
1082
Nate Begeman37efe672006-04-22 18:53:45 +00001083// getJumpTableEntryAddress - Return the address of the JumpTable with index
1084// 'Index' in the jumpp table that was last initialized with 'initJumpTableInfo'
1085//
Chris Lattnerb4432f32006-05-03 17:10:41 +00001086intptr_t JITEmitter::getJumpTableEntryAddress(unsigned Index) const {
Nate Begeman37efe672006-04-22 18:53:45 +00001087 const std::vector<MachineJumpTableEntry> &JT = JumpTable->getJumpTables();
1088 assert(Index < JT.size() && "Invalid jump table index!");
1089
1090 unsigned Offset = 0;
1091 unsigned EntrySize = JumpTable->getEntrySize();
1092
1093 for (unsigned i = 0; i < Index; ++i)
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001094 Offset += JT[i].MBBs.size();
1095
1096 Offset *= EntrySize;
Nate Begeman37efe672006-04-22 18:53:45 +00001097
Nate Begemanc34b2272006-04-25 17:46:32 +00001098 return (intptr_t)((char *)JumpTableBase + Offset);
Nate Begeman37efe672006-04-22 18:53:45 +00001099}
1100
Chris Lattnere993cc22006-05-11 23:08:08 +00001101//===----------------------------------------------------------------------===//
1102// Public interface to this file
1103//===----------------------------------------------------------------------===//
1104
Chris Lattner9f2f1422007-12-06 01:08:09 +00001105MachineCodeEmitter *JIT::createEmitter(JIT &jit, JITMemoryManager *JMM) {
1106 return new JITEmitter(jit, JMM);
Chris Lattnere993cc22006-05-11 23:08:08 +00001107}
1108
Misha Brukmand69c1e62003-07-28 19:09:06 +00001109// getPointerToNamedFunction - This function is used as a global wrapper to
Chris Lattner4d326fa2003-12-20 01:46:27 +00001110// JIT::getPointerToNamedFunction for the purpose of resolving symbols when
Misha Brukmand69c1e62003-07-28 19:09:06 +00001111// bugpoint is debugging the JIT. In that scenario, we are loading an .so and
1112// need to resolve function(s) that are being mis-codegenerated, so we need to
1113// resolve their addresses at runtime, and this is the way to do it.
1114extern "C" {
1115 void *getPointerToNamedFunction(const char *Name) {
Chris Lattnerfe854032006-08-16 01:24:12 +00001116 if (Function *F = TheJIT->FindFunctionNamed(Name))
Chris Lattner4d326fa2003-12-20 01:46:27 +00001117 return TheJIT->getPointerToFunction(F);
1118 return TheJIT->getPointerToNamedFunction(Name);
Misha Brukmand69c1e62003-07-28 19:09:06 +00001119 }
1120}
Chris Lattnere993cc22006-05-11 23:08:08 +00001121
1122// getPointerToFunctionOrStub - If the specified function has been
1123// code-gen'd, return a pointer to the function. If not, compile it, or use
1124// a stub to implement lazy compilation if available.
1125//
1126void *JIT::getPointerToFunctionOrStub(Function *F) {
1127 // If we have already code generated the function, just return the address.
1128 if (void *Addr = getPointerToGlobalIfAvailable(F))
1129 return Addr;
1130
Chris Lattnere7484012007-02-24 02:57:03 +00001131 // Get a stub if the target supports it.
1132 assert(dynamic_cast<JITEmitter*>(MCE) && "Unexpected MCE?");
1133 JITEmitter *JE = static_cast<JITEmitter*>(getCodeEmitter());
1134 return JE->getJITResolver().getFunctionStub(F);
Chris Lattnere993cc22006-05-11 23:08:08 +00001135}
1136
1137/// freeMachineCodeForFunction - release machine code memory for given Function.
1138///
1139void JIT::freeMachineCodeForFunction(Function *F) {
Dale Johannesendd947ea2008-08-07 01:30:15 +00001140
Chris Lattnere993cc22006-05-11 23:08:08 +00001141 // Delete translation for this from the ExecutionEngine, so it will get
1142 // retranslated next time it is used.
Chris Lattner8ac66c12008-04-04 05:51:42 +00001143 void *OldPtr = updateGlobalMapping(F, 0);
1144
1145 if (OldPtr)
1146 RemoveFunctionFromSymbolTable(OldPtr);
Chris Lattnere993cc22006-05-11 23:08:08 +00001147
1148 // Free the actual memory for the function body and related stuff.
1149 assert(dynamic_cast<JITEmitter*>(MCE) && "Unexpected MCE?");
Chris Lattnere7484012007-02-24 02:57:03 +00001150 static_cast<JITEmitter*>(MCE)->deallocateMemForFunction(F);
Chris Lattnere993cc22006-05-11 23:08:08 +00001151}
1152