blob: 09c60d416baa1513e2bcc47d0ecc71775498ae67 [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:
Chris Lattnere7484012007-02-24 02:57:03 +000099 JITResolver(JIT &jit) : nextGOTIndex(0) {
100 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.
Chris Lattnere7484012007-02-24 02:57:03 +0000178 Stub = TheJIT->getJITInfo().emitFunctionStub(Actual,
179 *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.
207 LazyPtr = TheJIT->getJITInfo().emitGlobalValueLazyPtr(GVAddress,
208 *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
Chris Lattnere7484012007-02-24 02:57:03 +0000223 Stub = TheJIT->getJITInfo().emitFunctionStub(FnAddr,
224 *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;
Bill Wendling832171c2006-12-07 20:04:42 +0000236 DOUT << "Adding GOT entry " << idx
237 << " for addr " << addr << "\n";
Andrew Lenharth6a974612005-07-28 12:44:13 +0000238 }
239 return idx;
240}
Chris Lattnerd91ff7c2005-04-18 01:44:27 +0000241
Chris Lattner54266522004-11-20 23:57:07 +0000242/// JITCompilerFn - This function is called when a lazy compilation stub has
243/// been entered. It looks up which function this stub corresponds to, compiles
244/// it if necessary, then returns the resultant function pointer.
245void *JITResolver::JITCompilerFn(void *Stub) {
Chris Lattnere7484012007-02-24 02:57:03 +0000246 JITResolver &JR = *TheJITResolver;
Misha Brukmanf976c852005-04-21 22:55:34 +0000247
Reid Spenceree448632005-07-12 15:51:55 +0000248 MutexGuard locked(TheJIT->lock);
249
Chris Lattner54266522004-11-20 23:57:07 +0000250 // The address given to us for the stub may not be exactly right, it might be
251 // a little bit after the stub. As such, use upper_bound to find it.
252 std::map<void*, Function*>::iterator I =
Reid Spenceree448632005-07-12 15:51:55 +0000253 JR.state.getStubToFunctionMap(locked).upper_bound(Stub);
Chris Lattner21998772006-01-07 06:20:51 +0000254 assert(I != JR.state.getStubToFunctionMap(locked).begin() &&
255 "This is not a known stub!");
Chris Lattner54266522004-11-20 23:57:07 +0000256 Function *F = (--I)->second;
257
Evan Cheng9da60f92007-06-30 00:10:37 +0000258 // If we have already code generated the function, just return the address.
259 void *Result = TheJIT->getPointerToGlobalIfAvailable(F);
Chris Lattner9cab56d2006-11-09 19:32:13 +0000260
Evan Cheng9da60f92007-06-30 00:10:37 +0000261 if (!Result) {
262 // Otherwise we don't have it, do lazy compilation now.
263
264 // If lazy compilation is disabled, emit a useful error message and abort.
265 if (TheJIT->isLazyCompilationDisabled()) {
266 cerr << "LLVM JIT requested to do lazy compilation of function '"
267 << F->getName() << "' when lazy compiles are disabled!\n";
268 abort();
269 }
270
271 // We might like to remove the stub from the StubToFunction map.
272 // We can't do that! Multiple threads could be stuck, waiting to acquire the
273 // lock above. As soon as the 1st function finishes compiling the function,
274 // the next one will be released, and needs to be able to find the function
275 // it needs to call.
276 //JR.state.getStubToFunctionMap(locked).erase(I);
Chris Lattner54266522004-11-20 23:57:07 +0000277
Evan Cheng9da60f92007-06-30 00:10:37 +0000278 DOUT << "JIT: Lazily resolving function '" << F->getName()
279 << "' In stub ptr = " << Stub << " actual ptr = "
280 << I->first << "\n";
Chris Lattner54266522004-11-20 23:57:07 +0000281
Evan Cheng9da60f92007-06-30 00:10:37 +0000282 Result = TheJIT->getPointerToFunction(F);
283 }
Chris Lattner54266522004-11-20 23:57:07 +0000284
285 // We don't need to reuse this stub in the future, as F is now compiled.
Reid Spenceree448632005-07-12 15:51:55 +0000286 JR.state.getFunctionToStubMap(locked).erase(F);
Chris Lattner54266522004-11-20 23:57:07 +0000287
288 // FIXME: We could rewrite all references to this stub if we knew them.
Andrew Lenharth6a974612005-07-28 12:44:13 +0000289
Jeff Cohend29b6aa2005-07-30 18:33:25 +0000290 // What we will do is set the compiled function address to map to the
291 // same GOT entry as the stub so that later clients may update the GOT
Andrew Lenharth6a974612005-07-28 12:44:13 +0000292 // if they see it still using the stub address.
293 // Note: this is done so the Resolver doesn't have to manage GOT memory
294 // Do this without allocating map space if the target isn't using a GOT
295 if(JR.revGOTMap.find(Stub) != JR.revGOTMap.end())
296 JR.revGOTMap[Result] = JR.revGOTMap[Stub];
297
Chris Lattner54266522004-11-20 23:57:07 +0000298 return Result;
299}
Chris Lattner688506d2003-08-14 18:35:27 +0000300
301
Chris Lattner54266522004-11-20 23:57:07 +0000302//===----------------------------------------------------------------------===//
Chris Lattner166f2262004-11-22 22:00:25 +0000303// JITEmitter code.
Chris Lattner54266522004-11-20 23:57:07 +0000304//
Chris Lattner688506d2003-08-14 18:35:27 +0000305namespace {
Chris Lattner166f2262004-11-22 22:00:25 +0000306 /// JITEmitter - The JIT implementation of the MachineCodeEmitter, which is
307 /// used to output functions to memory for execution.
308 class JITEmitter : public MachineCodeEmitter {
Chris Lattner8907b4b2007-12-05 23:39:57 +0000309 JITMemoryManager *MemMgr;
Chris Lattner688506d2003-08-14 18:35:27 +0000310
Chris Lattner6125fdd2003-05-09 03:30:07 +0000311 // When outputting a function stub in the context of some other function, we
Chris Lattner43b429b2006-05-02 18:27:26 +0000312 // save BufferBegin/BufferEnd/CurBufferPtr here.
313 unsigned char *SavedBufferBegin, *SavedBufferEnd, *SavedCurBufferPtr;
Chris Lattnerbba1b6d2003-06-01 23:24:36 +0000314
Chris Lattner5be478f2004-11-20 03:46:14 +0000315 /// Relocations - These are the relocations that the function needs, as
316 /// emitted.
317 std::vector<MachineRelocation> Relocations;
Chris Lattnerb4432f32006-05-03 17:10:41 +0000318
319 /// MBBLocations - This vector is a mapping from MBB ID's to their address.
320 /// It is filled in by the StartMachineBasicBlock callback and queried by
321 /// the getMachineBasicBlockAddress callback.
322 std::vector<intptr_t> MBBLocations;
Andrew Lenharth16ec33c2005-07-22 20:48:12 +0000323
Chris Lattner239862c2006-02-09 04:49:59 +0000324 /// ConstantPool - The constant pool for the current function.
325 ///
326 MachineConstantPool *ConstantPool;
327
328 /// ConstantPoolBase - A pointer to the first entry in the constant pool.
329 ///
330 void *ConstantPoolBase;
Nate Begeman37efe672006-04-22 18:53:45 +0000331
Nate Begeman019f8512006-09-10 23:03:44 +0000332 /// JumpTable - The jump tables for the current function.
Nate Begeman37efe672006-04-22 18:53:45 +0000333 ///
334 MachineJumpTableInfo *JumpTable;
335
336 /// JumpTableBase - A pointer to the first entry in the jump table.
337 ///
338 void *JumpTableBase;
Evan Cheng2a3e08b2008-01-05 02:26:58 +0000339
Chris Lattnere7484012007-02-24 02:57:03 +0000340 /// Resolver - This contains info about the currently resolved functions.
341 JITResolver Resolver;
Nicolas Geoffrayafe6c2b2008-02-13 18:39:37 +0000342
343 /// DE - The dwarf emitter for the jit.
344 JITDwarfEmitter *DE;
345
346 /// LabelLocations - This vector is a mapping from Label ID's to their
347 /// address.
348 std::vector<intptr_t> LabelLocations;
349
350 /// MMI - Machine module info for exception informations
351 MachineModuleInfo* MMI;
352
Chris Lattnere7484012007-02-24 02:57:03 +0000353 public:
Chris Lattner9f2f1422007-12-06 01:08:09 +0000354 JITEmitter(JIT &jit, JITMemoryManager *JMM) : Resolver(jit) {
355 MemMgr = JMM ? JMM : JITMemoryManager::CreateDefaultMemManager();
Chris Lattner8907b4b2007-12-05 23:39:57 +0000356 if (jit.getJITInfo().needsGOT()) {
357 MemMgr->AllocateGOT();
358 DOUT << "JIT is managing a GOT\n";
359 }
Nicolas Geoffrayafe6c2b2008-02-13 18:39:37 +0000360
361 if (ExceptionHandling) DE = new JITDwarfEmitter(jit);
Chris Lattner8907b4b2007-12-05 23:39:57 +0000362 }
363 ~JITEmitter() {
364 delete MemMgr;
Nicolas Geoffrayafe6c2b2008-02-13 18:39:37 +0000365 if (ExceptionHandling) delete DE;
Andrew Lenharth16ec33c2005-07-22 20:48:12 +0000366 }
Chris Lattnere7484012007-02-24 02:57:03 +0000367
368 JITResolver &getJITResolver() { return Resolver; }
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000369
370 virtual void startFunction(MachineFunction &F);
Chris Lattner43b429b2006-05-02 18:27:26 +0000371 virtual bool finishFunction(MachineFunction &F);
Chris Lattnerf75f9be2006-05-02 23:22:24 +0000372
373 void emitConstantPool(MachineConstantPool *MCP);
374 void initJumpTableInfo(MachineJumpTableInfo *MJTI);
Jim Laskeyb92767a2006-12-14 22:53:42 +0000375 void emitJumpTableInfo(MachineJumpTableInfo *MJTI);
Chris Lattnerf75f9be2006-05-02 23:22:24 +0000376
Evan Cheng9a1e9b92006-11-16 20:04:54 +0000377 virtual void startFunctionStub(unsigned StubSize, unsigned Alignment = 1);
Chris Lattner54266522004-11-20 23:57:07 +0000378 virtual void* finishFunctionStub(const Function *F);
Chris Lattnerbba1b6d2003-06-01 23:24:36 +0000379
Chris Lattner5be478f2004-11-20 03:46:14 +0000380 virtual void addRelocation(const MachineRelocation &MR) {
381 Relocations.push_back(MR);
382 }
Chris Lattnerb4432f32006-05-03 17:10:41 +0000383
384 virtual void StartMachineBasicBlock(MachineBasicBlock *MBB) {
385 if (MBBLocations.size() <= (unsigned)MBB->getNumber())
386 MBBLocations.resize((MBB->getNumber()+1)*2);
387 MBBLocations[MBB->getNumber()] = getCurrentPCValue();
388 }
Chris Lattner5be478f2004-11-20 03:46:14 +0000389
Chris Lattnerb4432f32006-05-03 17:10:41 +0000390 virtual intptr_t getConstantPoolEntryAddress(unsigned Entry) const;
391 virtual intptr_t getJumpTableEntryAddress(unsigned Entry) const;
Evan Cheng2a3e08b2008-01-05 02:26:58 +0000392
Chris Lattnerb4432f32006-05-03 17:10:41 +0000393 virtual intptr_t getMachineBasicBlockAddress(MachineBasicBlock *MBB) const {
394 assert(MBBLocations.size() > (unsigned)MBB->getNumber() &&
395 MBBLocations[MBB->getNumber()] && "MBB not emitted!");
396 return MBBLocations[MBB->getNumber()];
397 }
398
Chris Lattnere993cc22006-05-11 23:08:08 +0000399 /// deallocateMemForFunction - Deallocate all memory for the specified
400 /// function body.
401 void deallocateMemForFunction(Function *F) {
Chris Lattner8907b4b2007-12-05 23:39:57 +0000402 MemMgr->deallocateMemForFunction(F);
Chris Lattnere993cc22006-05-11 23:08:08 +0000403 }
Nicolas Geoffrayafe6c2b2008-02-13 18:39:37 +0000404
405 virtual void emitLabel(uint64_t LabelID) {
406 if (LabelLocations.size() <= LabelID)
407 LabelLocations.resize((LabelID+1)*2);
408 LabelLocations[LabelID] = getCurrentPCValue();
409 }
410
411 virtual intptr_t getLabelAddress(uint64_t LabelID) const {
412 assert(LabelLocations.size() > (unsigned)LabelID &&
413 LabelLocations[LabelID] && "Label not emitted!");
414 return LabelLocations[LabelID];
415 }
416
417 virtual void setModuleInfo(MachineModuleInfo* Info) {
418 MMI = Info;
419 if (ExceptionHandling) DE->setModuleInfo(Info);
420 }
421
Chris Lattner54266522004-11-20 23:57:07 +0000422 private:
Chris Lattner5e225582004-11-21 03:37:42 +0000423 void *getPointerToGlobal(GlobalValue *GV, void *Reference, bool NoNeedStub);
Evan Chengbe8c03f2008-01-04 10:46:51 +0000424 void *getPointerToGVLazyPtr(GlobalValue *V, void *Reference,
425 bool NoNeedStub);
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000426 };
427}
428
Chris Lattner166f2262004-11-22 22:00:25 +0000429void *JITEmitter::getPointerToGlobal(GlobalValue *V, void *Reference,
430 bool DoesntNeedStub) {
Chris Lattner54266522004-11-20 23:57:07 +0000431 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(V)) {
432 /// FIXME: If we straightened things out, this could actually emit the
433 /// global immediately instead of queuing it for codegen later!
Chris Lattner54266522004-11-20 23:57:07 +0000434 return TheJIT->getOrEmitGlobalVariable(GV);
435 }
436
437 // If we have already compiled the function, return a pointer to its body.
438 Function *F = cast<Function>(V);
439 void *ResultPtr = TheJIT->getPointerToGlobalIfAvailable(F);
440 if (ResultPtr) return ResultPtr;
441
Gabor Greifa99be512007-07-05 17:07:56 +0000442 if (F->isDeclaration() && !F->hasNotBeenReadFromBitcode()) {
Chris Lattner54266522004-11-20 23:57:07 +0000443 // If this is an external function pointer, we can force the JIT to
444 // 'compile' it, which really just adds it to the map.
Chris Lattnerb43dbdc2004-11-22 07:24:43 +0000445 if (DoesntNeedStub)
446 return TheJIT->getPointerToFunction(F);
447
Chris Lattnere7484012007-02-24 02:57:03 +0000448 return Resolver.getFunctionStub(F);
Chris Lattner54266522004-11-20 23:57:07 +0000449 }
450
Chris Lattner5e225582004-11-21 03:37:42 +0000451 // Okay, the function has not been compiled yet, if the target callback
452 // mechanism is capable of rewriting the instruction directly, prefer to do
453 // that instead of emitting a stub.
454 if (DoesntNeedStub)
Chris Lattnere7484012007-02-24 02:57:03 +0000455 return Resolver.AddCallbackAtLocation(F, Reference);
Chris Lattner5e225582004-11-21 03:37:42 +0000456
Chris Lattner54266522004-11-20 23:57:07 +0000457 // Otherwise, we have to emit a lazy resolving stub.
Chris Lattnere7484012007-02-24 02:57:03 +0000458 return Resolver.getFunctionStub(F);
Chris Lattner54266522004-11-20 23:57:07 +0000459}
460
Evan Chengbe8c03f2008-01-04 10:46:51 +0000461void *JITEmitter::getPointerToGVLazyPtr(GlobalValue *V, void *Reference,
462 bool DoesntNeedStub) {
463 // Make sure GV is emitted first.
464 // FIXME: For now, if the GV is an external function we force the JIT to
465 // compile it so the lazy pointer will contain the fully resolved address.
466 void *GVAddress = getPointerToGlobal(V, Reference, true);
467 return Resolver.getGlobalValueLazyPtr(V, GVAddress);
468}
469
470
Chris Lattner166f2262004-11-22 22:00:25 +0000471void JITEmitter::startFunction(MachineFunction &F) {
Chris Lattnere993cc22006-05-11 23:08:08 +0000472 uintptr_t ActualSize;
Chris Lattner8907b4b2007-12-05 23:39:57 +0000473 BufferBegin = CurBufferPtr = MemMgr->startFunctionBody(F.getFunction(),
474 ActualSize);
Chris Lattnere993cc22006-05-11 23:08:08 +0000475 BufferEnd = BufferBegin+ActualSize;
Chris Lattnerf75f9be2006-05-02 23:22:24 +0000476
Evan Cheng9a1e9b92006-11-16 20:04:54 +0000477 // Ensure the constant pool/jump table info is at least 4-byte aligned.
478 emitAlignment(16);
479
Chris Lattnerf75f9be2006-05-02 23:22:24 +0000480 emitConstantPool(F.getConstantPool());
481 initJumpTableInfo(F.getJumpTableInfo());
482
483 // About to start emitting the machine code for the function.
Chris Lattner0eb4d6b2006-05-03 01:03:20 +0000484 emitAlignment(std::max(F.getFunction()->getAlignment(), 8U));
Chris Lattnerf75f9be2006-05-02 23:22:24 +0000485 TheJIT->updateGlobalMapping(F.getFunction(), CurBufferPtr);
Evan Cheng55fc2802006-07-25 20:40:54 +0000486
Chris Lattnerb4432f32006-05-03 17:10:41 +0000487 MBBLocations.clear();
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000488}
489
Chris Lattner43b429b2006-05-02 18:27:26 +0000490bool JITEmitter::finishFunction(MachineFunction &F) {
Chris Lattnere993cc22006-05-11 23:08:08 +0000491 if (CurBufferPtr == BufferEnd) {
492 // FIXME: Allocate more space, then try again.
Bill Wendling832171c2006-12-07 20:04:42 +0000493 cerr << "JIT: Ran out of space for generated machine code!\n";
Chris Lattnere993cc22006-05-11 23:08:08 +0000494 abort();
495 }
496
Jim Laskeyb92767a2006-12-14 22:53:42 +0000497 emitJumpTableInfo(F.getJumpTableInfo());
Chris Lattnerb4432f32006-05-03 17:10:41 +0000498
Chris Lattnera8279532006-06-16 18:09:26 +0000499 // FnStart is the start of the text, not the start of the constant pool and
500 // other per-function data.
501 unsigned char *FnStart =
502 (unsigned char *)TheJIT->getPointerToGlobalIfAvailable(F.getFunction());
503 unsigned char *FnEnd = CurBufferPtr;
504
Chris Lattner8907b4b2007-12-05 23:39:57 +0000505 MemMgr->endFunctionBody(F.getFunction(), BufferBegin, FnEnd);
Chris Lattnera8279532006-06-16 18:09:26 +0000506 NumBytes += FnEnd-FnStart;
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000507
Chris Lattner5be478f2004-11-20 03:46:14 +0000508 if (!Relocations.empty()) {
Chris Lattnere884dc22005-07-20 16:29:20 +0000509 NumRelos += Relocations.size();
510
Chris Lattner5be478f2004-11-20 03:46:14 +0000511 // Resolve the relocations to concrete pointers.
512 for (unsigned i = 0, e = Relocations.size(); i != e; ++i) {
513 MachineRelocation &MR = Relocations[i];
514 void *ResultPtr;
Chris Lattnerd91ff7c2005-04-18 01:44:27 +0000515 if (MR.isString()) {
Chris Lattner5be478f2004-11-20 03:46:14 +0000516 ResultPtr = TheJIT->getPointerToNamedFunction(MR.getString());
Misha Brukmanf976c852005-04-21 22:55:34 +0000517
Chris Lattnerd91ff7c2005-04-18 01:44:27 +0000518 // If the target REALLY wants a stub for this function, emit it now.
Evan Cheng02aabbf2008-01-03 02:56:28 +0000519 if (!MR.doesntNeedStub())
Chris Lattnere7484012007-02-24 02:57:03 +0000520 ResultPtr = Resolver.getExternalFunctionStub(ResultPtr);
Chris Lattnerd2d5c762006-05-03 18:55:56 +0000521 } else if (MR.isGlobalValue()) {
Chris Lattner5e225582004-11-21 03:37:42 +0000522 ResultPtr = getPointerToGlobal(MR.getGlobalValue(),
Chris Lattner43b429b2006-05-02 18:27:26 +0000523 BufferBegin+MR.getMachineCodeOffset(),
Evan Cheng02aabbf2008-01-03 02:56:28 +0000524 MR.doesntNeedStub());
Evan Chengbe8c03f2008-01-04 10:46:51 +0000525 } else if (MR.isGlobalValueLazyPtr()) {
526 ResultPtr = getPointerToGVLazyPtr(MR.getGlobalValue(),
527 BufferBegin+MR.getMachineCodeOffset(),
528 MR.doesntNeedStub());
Evan Chengf141cc42006-07-27 18:21:10 +0000529 } else if (MR.isBasicBlock()) {
530 ResultPtr = (void*)getMachineBasicBlockAddress(MR.getBasicBlock());
Jim Laskeyacd80ac2006-12-14 19:17:33 +0000531 } else if (MR.isConstantPoolIndex()) {
Chris Lattnerd2d5c762006-05-03 18:55:56 +0000532 ResultPtr=(void*)getConstantPoolEntryAddress(MR.getConstantPoolIndex());
Evan Cheng52b510b2006-06-23 01:02:37 +0000533 } else {
534 assert(MR.isJumpTableIndex());
535 ResultPtr=(void*)getJumpTableEntryAddress(MR.getJumpTableIndex());
Chris Lattnerd2d5c762006-05-03 18:55:56 +0000536 }
Jeff Cohen00b168892005-07-27 06:12:32 +0000537
Chris Lattner5be478f2004-11-20 03:46:14 +0000538 MR.setResultPointer(ResultPtr);
Andrew Lenharth16ec33c2005-07-22 20:48:12 +0000539
Andrew Lenharth6a974612005-07-28 12:44:13 +0000540 // if we are managing the GOT and the relocation wants an index,
541 // give it one
Chris Lattner8907b4b2007-12-05 23:39:57 +0000542 if (MR.isGOTRelative() && MemMgr->isManagingGOT()) {
Chris Lattnere7484012007-02-24 02:57:03 +0000543 unsigned idx = Resolver.getGOTIndexForAddr(ResultPtr);
Andrew Lenharth6a974612005-07-28 12:44:13 +0000544 MR.setGOTIndex(idx);
Chris Lattner8907b4b2007-12-05 23:39:57 +0000545 if (((void**)MemMgr->getGOTBase())[idx] != ResultPtr) {
Bill Wendling832171c2006-12-07 20:04:42 +0000546 DOUT << "GOT was out of date for " << ResultPtr
Chris Lattner8907b4b2007-12-05 23:39:57 +0000547 << " pointing at " << ((void**)MemMgr->getGOTBase())[idx]
Bill Wendling832171c2006-12-07 20:04:42 +0000548 << "\n";
Chris Lattner8907b4b2007-12-05 23:39:57 +0000549 ((void**)MemMgr->getGOTBase())[idx] = ResultPtr;
Andrew Lenharth6a974612005-07-28 12:44:13 +0000550 }
Andrew Lenharth16ec33c2005-07-22 20:48:12 +0000551 }
Chris Lattner5be478f2004-11-20 03:46:14 +0000552 }
553
Chris Lattner43b429b2006-05-02 18:27:26 +0000554 TheJIT->getJITInfo().relocate(BufferBegin, &Relocations[0],
Chris Lattner8907b4b2007-12-05 23:39:57 +0000555 Relocations.size(), MemMgr->getGOTBase());
Chris Lattner5be478f2004-11-20 03:46:14 +0000556 }
557
Chris Lattnerd2d5c762006-05-03 18:55:56 +0000558 // Update the GOT entry for F to point to the new code.
Chris Lattner8907b4b2007-12-05 23:39:57 +0000559 if (MemMgr->isManagingGOT()) {
Chris Lattnere7484012007-02-24 02:57:03 +0000560 unsigned idx = Resolver.getGOTIndexForAddr((void*)BufferBegin);
Chris Lattner8907b4b2007-12-05 23:39:57 +0000561 if (((void**)MemMgr->getGOTBase())[idx] != (void*)BufferBegin) {
Bill Wendling832171c2006-12-07 20:04:42 +0000562 DOUT << "GOT was out of date for " << (void*)BufferBegin
Chris Lattner8907b4b2007-12-05 23:39:57 +0000563 << " pointing at " << ((void**)MemMgr->getGOTBase())[idx] << "\n";
564 ((void**)MemMgr->getGOTBase())[idx] = (void*)BufferBegin;
Andrew Lenharth6a974612005-07-28 12:44:13 +0000565 }
566 }
567
Evan Cheng55fc2802006-07-25 20:40:54 +0000568 // Invalidate the icache if necessary.
Evan Cheng55b50532006-07-27 06:33:55 +0000569 synchronizeICache(FnStart, FnEnd-FnStart);
Evan Cheng55fc2802006-07-25 20:40:54 +0000570
Bill Wendling832171c2006-12-07 20:04:42 +0000571 DOUT << "JIT: Finished CodeGen of [" << (void*)FnStart
572 << "] Function: " << F.getFunction()->getName()
573 << ": " << (FnEnd-FnStart) << " bytes of text, "
574 << Relocations.size() << " relocations\n";
Chris Lattner5be478f2004-11-20 03:46:14 +0000575 Relocations.clear();
Anton Korobeynikov8cd4c3e2007-01-19 17:25:17 +0000576
Chris Lattnerc5633c22007-01-20 20:51:43 +0000577#ifndef NDEBUG
Anton Korobeynikovc6551ff2007-03-06 05:32:48 +0000578 if (sys::hasDisassembler())
579 DOUT << "Disassembled code:\n"
580 << sys::disassembleBuffer(FnStart, FnEnd-FnStart, (uintptr_t)FnStart);
Chris Lattnerc5633c22007-01-20 20:51:43 +0000581#endif
Nicolas Geoffrayafe6c2b2008-02-13 18:39:37 +0000582 if (ExceptionHandling) {
583 uintptr_t ActualSize;
584 SavedBufferBegin = BufferBegin;
585 SavedBufferEnd = BufferEnd;
586 SavedCurBufferPtr = CurBufferPtr;
587
588 BufferBegin = CurBufferPtr = MemMgr->startExceptionTable(F.getFunction(),
589 ActualSize);
590 BufferEnd = BufferBegin+ActualSize;
591 unsigned char* FrameRegister = DE->EmitDwarfTable(F, *this, FnStart, FnEnd);
592 MemMgr->endExceptionTable(F.getFunction(), BufferBegin, CurBufferPtr, FrameRegister);
593 BufferBegin = SavedBufferBegin;
594 BufferEnd = SavedBufferEnd;
595 CurBufferPtr = SavedCurBufferPtr;
596
597 TheJIT->RegisterTable(FrameRegister);
598 }
599 MMI->EndFunction();
600
Chris Lattner43b429b2006-05-02 18:27:26 +0000601 return false;
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000602}
603
Chris Lattner166f2262004-11-22 22:00:25 +0000604void JITEmitter::emitConstantPool(MachineConstantPool *MCP) {
Chris Lattnerfa77d432006-02-09 04:22:52 +0000605 const std::vector<MachineConstantPoolEntry> &Constants = MCP->getConstants();
Chris Lattner2c0a6a12003-11-30 04:23:21 +0000606 if (Constants.empty()) return;
607
Evan Chengcd5731d2006-09-12 20:59:59 +0000608 MachineConstantPoolEntry CPE = Constants.back();
609 unsigned Size = CPE.Offset;
610 const Type *Ty = CPE.isMachineConstantPoolEntry()
Chris Lattner8a650092006-09-13 16:21:10 +0000611 ? CPE.Val.MachineCPVal->getType() : CPE.Val.ConstVal->getType();
Duncan Sands514ab342007-11-01 20:53:16 +0000612 Size += TheJIT->getTargetData()->getABITypeSize(Ty);
Chris Lattner2c0a6a12003-11-30 04:23:21 +0000613
Chris Lattnerf75f9be2006-05-02 23:22:24 +0000614 ConstantPoolBase = allocateSpace(Size, 1 << MCP->getConstantPoolAlignment());
Chris Lattner239862c2006-02-09 04:49:59 +0000615 ConstantPool = MCP;
Chris Lattnerf75f9be2006-05-02 23:22:24 +0000616
617 if (ConstantPoolBase == 0) return; // Buffer overflow.
618
Chris Lattner239862c2006-02-09 04:49:59 +0000619 // Initialize the memory for all of the constant pool entries.
Chris Lattner3029f922006-02-09 04:46:04 +0000620 for (unsigned i = 0, e = Constants.size(); i != e; ++i) {
Chris Lattner239862c2006-02-09 04:49:59 +0000621 void *CAddr = (char*)ConstantPoolBase+Constants[i].Offset;
Evan Chengcd5731d2006-09-12 20:59:59 +0000622 if (Constants[i].isMachineConstantPoolEntry()) {
623 // FIXME: add support to lower machine constant pool values into bytes!
Bill Wendling832171c2006-12-07 20:04:42 +0000624 cerr << "Initialize memory with machine specific constant pool entry"
625 << " has not been implemented!\n";
Evan Chengcd5731d2006-09-12 20:59:59 +0000626 abort();
627 }
628 TheJIT->InitializeMemory(Constants[i].Val.ConstVal, CAddr);
Chris Lattner1cc08382003-01-13 01:00:12 +0000629 }
630}
631
Nate Begeman37efe672006-04-22 18:53:45 +0000632void JITEmitter::initJumpTableInfo(MachineJumpTableInfo *MJTI) {
633 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
634 if (JT.empty()) return;
635
Chris Lattnerf75f9be2006-05-02 23:22:24 +0000636 unsigned NumEntries = 0;
Nate Begeman37efe672006-04-22 18:53:45 +0000637 for (unsigned i = 0, e = JT.size(); i != e; ++i)
Chris Lattnerf75f9be2006-05-02 23:22:24 +0000638 NumEntries += JT[i].MBBs.size();
639
640 unsigned EntrySize = MJTI->getEntrySize();
641
Nate Begeman37efe672006-04-22 18:53:45 +0000642 // Just allocate space for all the jump tables now. We will fix up the actual
643 // MBB entries in the tables after we emit the code for each block, since then
644 // we will know the final locations of the MBBs in memory.
645 JumpTable = MJTI;
Chris Lattnerf75f9be2006-05-02 23:22:24 +0000646 JumpTableBase = allocateSpace(NumEntries * EntrySize, MJTI->getAlignment());
Nate Begeman37efe672006-04-22 18:53:45 +0000647}
648
Jim Laskeyb92767a2006-12-14 22:53:42 +0000649void JITEmitter::emitJumpTableInfo(MachineJumpTableInfo *MJTI) {
Nate Begeman37efe672006-04-22 18:53:45 +0000650 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
Chris Lattnerf75f9be2006-05-02 23:22:24 +0000651 if (JT.empty() || JumpTableBase == 0) return;
Nate Begeman37efe672006-04-22 18:53:45 +0000652
Jim Laskeyb92767a2006-12-14 22:53:42 +0000653 if (TargetMachine::getRelocationModel() == Reloc::PIC_) {
Jim Laskeyacd80ac2006-12-14 19:17:33 +0000654 assert(MJTI->getEntrySize() == 4 && "Cross JIT'ing?");
655 // For each jump table, place the offset from the beginning of the table
656 // to the target address.
657 int *SlotPtr = (int*)JumpTableBase;
Chris Lattner32ca55f2006-05-03 00:13:06 +0000658
Jim Laskeyacd80ac2006-12-14 19:17:33 +0000659 for (unsigned i = 0, e = JT.size(); i != e; ++i) {
660 const std::vector<MachineBasicBlock*> &MBBs = JT[i].MBBs;
661 // Store the offset of the basic block for this jump table slot in the
662 // memory we allocated for the jump table in 'initJumpTableInfo'
663 intptr_t Base = (intptr_t)SlotPtr;
Evan Cheng2a3e08b2008-01-05 02:26:58 +0000664 for (unsigned mi = 0, me = MBBs.size(); mi != me; ++mi) {
665 intptr_t MBBAddr = getMachineBasicBlockAddress(MBBs[mi]);
666 *SlotPtr++ = TheJIT->getJITInfo().getPICJumpTableEntry(MBBAddr, Base);
667 }
Jim Laskeyacd80ac2006-12-14 19:17:33 +0000668 }
669 } else {
670 assert(MJTI->getEntrySize() == sizeof(void*) && "Cross JIT'ing?");
671
672 // For each jump table, map each target in the jump table to the address of
673 // an emitted MachineBasicBlock.
674 intptr_t *SlotPtr = (intptr_t*)JumpTableBase;
675
676 for (unsigned i = 0, e = JT.size(); i != e; ++i) {
677 const std::vector<MachineBasicBlock*> &MBBs = JT[i].MBBs;
678 // Store the address of the basic block for this jump table slot in the
679 // memory we allocated for the jump table in 'initJumpTableInfo'
680 for (unsigned mi = 0, me = MBBs.size(); mi != me; ++mi)
681 *SlotPtr++ = getMachineBasicBlockAddress(MBBs[mi]);
682 }
Nate Begeman37efe672006-04-22 18:53:45 +0000683 }
684}
685
Evan Cheng9a1e9b92006-11-16 20:04:54 +0000686void JITEmitter::startFunctionStub(unsigned StubSize, unsigned Alignment) {
Chris Lattner43b429b2006-05-02 18:27:26 +0000687 SavedBufferBegin = BufferBegin;
688 SavedBufferEnd = BufferEnd;
689 SavedCurBufferPtr = CurBufferPtr;
690
Chris Lattner8907b4b2007-12-05 23:39:57 +0000691 BufferBegin = CurBufferPtr = MemMgr->allocateStub(StubSize, Alignment);
Chris Lattner43b429b2006-05-02 18:27:26 +0000692 BufferEnd = BufferBegin+StubSize+1;
Chris Lattner6125fdd2003-05-09 03:30:07 +0000693}
694
Chris Lattner166f2262004-11-22 22:00:25 +0000695void *JITEmitter::finishFunctionStub(const Function *F) {
Chris Lattner43b429b2006-05-02 18:27:26 +0000696 NumBytes += getCurrentPCOffset();
697 std::swap(SavedBufferBegin, BufferBegin);
698 BufferEnd = SavedBufferEnd;
699 CurBufferPtr = SavedCurBufferPtr;
700 return SavedBufferBegin;
Chris Lattnerbba1b6d2003-06-01 23:24:36 +0000701}
702
Chris Lattnerbba1b6d2003-06-01 23:24:36 +0000703// getConstantPoolEntryAddress - Return the address of the 'ConstantNum' entry
704// in the constant pool that was last emitted with the 'emitConstantPool'
705// method.
706//
Chris Lattnerb4432f32006-05-03 17:10:41 +0000707intptr_t JITEmitter::getConstantPoolEntryAddress(unsigned ConstantNum) const {
Chris Lattner239862c2006-02-09 04:49:59 +0000708 assert(ConstantNum < ConstantPool->getConstants().size() &&
Misha Brukman3c944972005-04-22 04:08:30 +0000709 "Invalid ConstantPoolIndex!");
Chris Lattner239862c2006-02-09 04:49:59 +0000710 return (intptr_t)ConstantPoolBase +
711 ConstantPool->getConstants()[ConstantNum].Offset;
Chris Lattnerbba1b6d2003-06-01 23:24:36 +0000712}
713
Nate Begeman37efe672006-04-22 18:53:45 +0000714// getJumpTableEntryAddress - Return the address of the JumpTable with index
715// 'Index' in the jumpp table that was last initialized with 'initJumpTableInfo'
716//
Chris Lattnerb4432f32006-05-03 17:10:41 +0000717intptr_t JITEmitter::getJumpTableEntryAddress(unsigned Index) const {
Nate Begeman37efe672006-04-22 18:53:45 +0000718 const std::vector<MachineJumpTableEntry> &JT = JumpTable->getJumpTables();
719 assert(Index < JT.size() && "Invalid jump table index!");
720
721 unsigned Offset = 0;
722 unsigned EntrySize = JumpTable->getEntrySize();
723
724 for (unsigned i = 0; i < Index; ++i)
Jim Laskeyacd80ac2006-12-14 19:17:33 +0000725 Offset += JT[i].MBBs.size();
726
727 Offset *= EntrySize;
Nate Begeman37efe672006-04-22 18:53:45 +0000728
Nate Begemanc34b2272006-04-25 17:46:32 +0000729 return (intptr_t)((char *)JumpTableBase + Offset);
Nate Begeman37efe672006-04-22 18:53:45 +0000730}
731
Chris Lattnere993cc22006-05-11 23:08:08 +0000732//===----------------------------------------------------------------------===//
733// Public interface to this file
734//===----------------------------------------------------------------------===//
735
Chris Lattner9f2f1422007-12-06 01:08:09 +0000736MachineCodeEmitter *JIT::createEmitter(JIT &jit, JITMemoryManager *JMM) {
737 return new JITEmitter(jit, JMM);
Chris Lattnere993cc22006-05-11 23:08:08 +0000738}
739
Misha Brukmand69c1e62003-07-28 19:09:06 +0000740// getPointerToNamedFunction - This function is used as a global wrapper to
Chris Lattner4d326fa2003-12-20 01:46:27 +0000741// JIT::getPointerToNamedFunction for the purpose of resolving symbols when
Misha Brukmand69c1e62003-07-28 19:09:06 +0000742// bugpoint is debugging the JIT. In that scenario, we are loading an .so and
743// need to resolve function(s) that are being mis-codegenerated, so we need to
744// resolve their addresses at runtime, and this is the way to do it.
745extern "C" {
746 void *getPointerToNamedFunction(const char *Name) {
Chris Lattnerfe854032006-08-16 01:24:12 +0000747 if (Function *F = TheJIT->FindFunctionNamed(Name))
Chris Lattner4d326fa2003-12-20 01:46:27 +0000748 return TheJIT->getPointerToFunction(F);
749 return TheJIT->getPointerToNamedFunction(Name);
Misha Brukmand69c1e62003-07-28 19:09:06 +0000750 }
751}
Chris Lattnere993cc22006-05-11 23:08:08 +0000752
753// getPointerToFunctionOrStub - If the specified function has been
754// code-gen'd, return a pointer to the function. If not, compile it, or use
755// a stub to implement lazy compilation if available.
756//
757void *JIT::getPointerToFunctionOrStub(Function *F) {
758 // If we have already code generated the function, just return the address.
759 if (void *Addr = getPointerToGlobalIfAvailable(F))
760 return Addr;
761
Chris Lattnere7484012007-02-24 02:57:03 +0000762 // Get a stub if the target supports it.
763 assert(dynamic_cast<JITEmitter*>(MCE) && "Unexpected MCE?");
764 JITEmitter *JE = static_cast<JITEmitter*>(getCodeEmitter());
765 return JE->getJITResolver().getFunctionStub(F);
Chris Lattnere993cc22006-05-11 23:08:08 +0000766}
767
768/// freeMachineCodeForFunction - release machine code memory for given Function.
769///
770void JIT::freeMachineCodeForFunction(Function *F) {
771 // Delete translation for this from the ExecutionEngine, so it will get
772 // retranslated next time it is used.
773 updateGlobalMapping(F, 0);
774
775 // Free the actual memory for the function body and related stuff.
776 assert(dynamic_cast<JITEmitter*>(MCE) && "Unexpected MCE?");
Chris Lattnere7484012007-02-24 02:57:03 +0000777 static_cast<JITEmitter*>(MCE)->deallocateMemForFunction(F);
Chris Lattnere993cc22006-05-11 23:08:08 +0000778}
779