blob: cb12642367f1b0096ca090dc8d3ed5684a28fa0a [file] [log] [blame]
Chris Lattner166f2262004-11-22 22:00:25 +00001//===-- JITEmitter.cpp - Write machine code to executable memory ----------===//
John Criswellb576c942003-10-20 19:43:21 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
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"
Chris Lattner2c0a6a12003-11-30 04:23:21 +000017#include "llvm/Constant.h"
18#include "llvm/Module.h"
Chris Lattner5b3a4552005-03-17 15:38:16 +000019#include "llvm/Type.h"
Chris Lattnerbd199fb2002-12-24 00:01:05 +000020#include "llvm/CodeGen/MachineCodeEmitter.h"
21#include "llvm/CodeGen/MachineFunction.h"
Chris Lattner1cc08382003-01-13 01:00:12 +000022#include "llvm/CodeGen/MachineConstantPool.h"
Chris Lattner5be478f2004-11-20 03:46:14 +000023#include "llvm/CodeGen/MachineRelocation.h"
Chris Lattner1cc08382003-01-13 01:00:12 +000024#include "llvm/Target/TargetData.h"
Chris Lattner5be478f2004-11-20 03:46:14 +000025#include "llvm/Target/TargetJITInfo.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000026#include "llvm/Support/Debug.h"
27#include "llvm/ADT/Statistic.h"
Reid Spencer52b0ba62004-09-11 04:31:03 +000028#include "llvm/System/Memory.h"
Chris Lattnerc19aade2003-12-08 08:06:28 +000029using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000030
Chris Lattnerbd199fb2002-12-24 00:01:05 +000031namespace {
Chris Lattnere7386562003-10-20 05:45:49 +000032 Statistic<> NumBytes("jit", "Number of bytes of machine code compiled");
Chris Lattner4d326fa2003-12-20 01:46:27 +000033 JIT *TheJIT = 0;
Chris Lattner54266522004-11-20 23:57:07 +000034}
Chris Lattnerbd199fb2002-12-24 00:01:05 +000035
Chris Lattner54266522004-11-20 23:57:07 +000036
37//===----------------------------------------------------------------------===//
38// JITMemoryManager code.
39//
40namespace {
Chris Lattner688506d2003-08-14 18:35:27 +000041 /// JITMemoryManager - Manage memory for the JIT code generation in a logical,
42 /// sane way. This splits a large block of MAP_NORESERVE'd memory into two
43 /// sections, one for function stubs, one for the functions themselves. We
44 /// have to do this because we may need to emit a function stub while in the
45 /// middle of emitting a function, and we don't know how large the function we
46 /// are emitting is. This never bothers to release the memory, because when
47 /// we are ready to destroy the JIT, the program exits.
48 class JITMemoryManager {
Reid Spencer33189e72004-09-13 22:38:11 +000049 sys::MemoryBlock MemBlock; // Virtual memory block allocated RWX
Chris Lattner688506d2003-08-14 18:35:27 +000050 unsigned char *MemBase; // Base of block of memory, start of stub mem
51 unsigned char *FunctionBase; // Start of the function body area
Chris Lattner281a6012005-01-10 18:23:22 +000052 unsigned char *ConstantPool; // Memory allocated for constant pools
53 unsigned char *CurStubPtr, *CurFunctionPtr, *CurConstantPtr;
Chris Lattner688506d2003-08-14 18:35:27 +000054 public:
55 JITMemoryManager();
Reid Spencer4af3da62004-12-13 16:04:04 +000056 ~JITMemoryManager();
Chris Lattner688506d2003-08-14 18:35:27 +000057
58 inline unsigned char *allocateStub(unsigned StubSize);
Chris Lattner281a6012005-01-10 18:23:22 +000059 inline unsigned char *allocateConstant(unsigned ConstantSize,
60 unsigned Alignment);
Chris Lattner688506d2003-08-14 18:35:27 +000061 inline unsigned char *startFunctionBody();
Chris Lattner281a6012005-01-10 18:23:22 +000062 inline void endFunctionBody(unsigned char *FunctionEnd);
Chris Lattner688506d2003-08-14 18:35:27 +000063 };
64}
65
Chris Lattner688506d2003-08-14 18:35:27 +000066JITMemoryManager::JITMemoryManager() {
67 // Allocate a 16M block of memory...
Reid Spencer33189e72004-09-13 22:38:11 +000068 MemBlock = sys::Memory::AllocateRWX((16 << 20));
Reid Spencer52b0ba62004-09-11 04:31:03 +000069 MemBase = reinterpret_cast<unsigned char*>(MemBlock.base());
Chris Lattner688506d2003-08-14 18:35:27 +000070 FunctionBase = MemBase + 512*1024; // Use 512k for stubs
71
72 // Allocate stubs backwards from the function base, allocate functions forward
73 // from the function base.
74 CurStubPtr = CurFunctionPtr = FunctionBase;
Chris Lattner281a6012005-01-10 18:23:22 +000075
76 ConstantPool = new unsigned char [512*1024]; // Use 512k for constant pools
77 CurConstantPtr = ConstantPool + 512*1024;
Chris Lattner688506d2003-08-14 18:35:27 +000078}
79
Reid Spencer4af3da62004-12-13 16:04:04 +000080JITMemoryManager::~JITMemoryManager() {
81 sys::Memory::ReleaseRWX(MemBlock);
Chris Lattner281a6012005-01-10 18:23:22 +000082 delete[] ConstantPool;
Reid Spencer4af3da62004-12-13 16:04:04 +000083}
84
Chris Lattner688506d2003-08-14 18:35:27 +000085unsigned char *JITMemoryManager::allocateStub(unsigned StubSize) {
86 CurStubPtr -= StubSize;
87 if (CurStubPtr < MemBase) {
88 std::cerr << "JIT ran out of memory for function stubs!\n";
89 abort();
90 }
91 return CurStubPtr;
92}
93
Chris Lattner281a6012005-01-10 18:23:22 +000094unsigned char *JITMemoryManager::allocateConstant(unsigned ConstantSize,
95 unsigned Alignment) {
96 // Reserve space and align pointer.
97 CurConstantPtr -= ConstantSize;
98 CurConstantPtr =
99 (unsigned char *)((intptr_t)CurConstantPtr & ~((intptr_t)Alignment - 1));
100
101 if (CurConstantPtr < ConstantPool) {
102 std::cerr << "JIT ran out of memory for constant pools!\n";
103 abort();
104 }
105 return CurConstantPtr;
106}
107
Chris Lattner688506d2003-08-14 18:35:27 +0000108unsigned char *JITMemoryManager::startFunctionBody() {
Chris Lattner5be478f2004-11-20 03:46:14 +0000109 // Round up to an even multiple of 8 bytes, this should eventually be target
Chris Lattner688506d2003-08-14 18:35:27 +0000110 // specific.
Chris Lattner5be478f2004-11-20 03:46:14 +0000111 return (unsigned char*)(((intptr_t)CurFunctionPtr + 7) & ~7);
Chris Lattner688506d2003-08-14 18:35:27 +0000112}
113
114void JITMemoryManager::endFunctionBody(unsigned char *FunctionEnd) {
115 assert(FunctionEnd > CurFunctionPtr);
116 CurFunctionPtr = FunctionEnd;
117}
118
Chris Lattner54266522004-11-20 23:57:07 +0000119//===----------------------------------------------------------------------===//
120// JIT lazy compilation code.
121//
122namespace {
123 /// JITResolver - Keep track of, and resolve, call sites for functions that
124 /// have not yet been compiled.
125 class JITResolver {
Chris Lattner5e225582004-11-21 03:37:42 +0000126 /// MCE - The MachineCodeEmitter to use to emit stubs with.
Chris Lattner54266522004-11-20 23:57:07 +0000127 MachineCodeEmitter &MCE;
128
Chris Lattner5e225582004-11-21 03:37:42 +0000129 /// LazyResolverFn - The target lazy resolver function that we actually
130 /// rewrite instructions to use.
131 TargetJITInfo::LazyResolverFn LazyResolverFn;
132
Chris Lattner54266522004-11-20 23:57:07 +0000133 // FunctionToStubMap - Keep track of the stub created for a particular
134 // function so that we can reuse them if necessary.
135 std::map<Function*, void*> FunctionToStubMap;
136
137 // StubToFunctionMap - Keep track of the function that each stub corresponds
138 // to.
139 std::map<void*, Function*> StubToFunctionMap;
140
141 public:
Chris Lattner5e225582004-11-21 03:37:42 +0000142 JITResolver(MachineCodeEmitter &mce) : MCE(mce) {
143 LazyResolverFn =
144 TheJIT->getJITInfo().getLazyResolverFunction(JITCompilerFn);
145 }
Chris Lattner54266522004-11-20 23:57:07 +0000146
147 /// getFunctionStub - This returns a pointer to a function stub, creating
148 /// one on demand as needed.
149 void *getFunctionStub(Function *F);
150
Chris Lattner5e225582004-11-21 03:37:42 +0000151 /// AddCallbackAtLocation - If the target is capable of rewriting an
152 /// instruction without the use of a stub, record the location of the use so
153 /// we know which function is being used at the location.
154 void *AddCallbackAtLocation(Function *F, void *Location) {
155 /// Get the target-specific JIT resolver function.
156 StubToFunctionMap[Location] = F;
157 return (void*)LazyResolverFn;
158 }
159
Chris Lattner54266522004-11-20 23:57:07 +0000160 /// JITCompilerFn - This function is called to resolve a stub to a compiled
161 /// address. If the LLVM Function corresponding to the stub has not yet
162 /// been compiled, this function compiles it first.
163 static void *JITCompilerFn(void *Stub);
164 };
165}
166
167/// getJITResolver - This function returns the one instance of the JIT resolver.
168///
169static JITResolver &getJITResolver(MachineCodeEmitter *MCE = 0) {
170 static JITResolver TheJITResolver(*MCE);
171 return TheJITResolver;
172}
173
174/// getFunctionStub - This returns a pointer to a function stub, creating
175/// one on demand as needed.
176void *JITResolver::getFunctionStub(Function *F) {
Chris Lattner54266522004-11-20 23:57:07 +0000177 // If we already have a stub for this function, recycle it.
178 void *&Stub = FunctionToStubMap[F];
179 if (Stub) return Stub;
180
Chris Lattnerb43dbdc2004-11-22 07:24:43 +0000181 // Call the lazy resolver function unless we already KNOW it is an external
182 // function, in which case we just skip the lazy resolution step.
183 void *Actual = (void*)LazyResolverFn;
Chris Lattner69435702005-02-20 18:43:35 +0000184 if (F->isExternal() && F->hasExternalLinkage())
Chris Lattnerb43dbdc2004-11-22 07:24:43 +0000185 Actual = TheJIT->getPointerToFunction(F);
186
Chris Lattner54266522004-11-20 23:57:07 +0000187 // Otherwise, codegen a new stub. For now, the stub will call the lazy
188 // resolver function.
Chris Lattnerb43dbdc2004-11-22 07:24:43 +0000189 Stub = TheJIT->getJITInfo().emitFunctionStub(Actual, MCE);
190
Chris Lattner69435702005-02-20 18:43:35 +0000191 if (Actual != (void*)LazyResolverFn) {
Chris Lattnerb43dbdc2004-11-22 07:24:43 +0000192 // If we are getting the stub for an external function, we really want the
193 // address of the stub in the GlobalAddressMap for the JIT, not the address
194 // of the external function.
195 TheJIT->updateGlobalMapping(F, Stub);
196 }
Chris Lattner54266522004-11-20 23:57:07 +0000197
Chris Lattnercb479412004-11-21 03:44:32 +0000198 DEBUG(std::cerr << "JIT: Stub emitted at [" << Stub << "] for function '"
Chris Lattner6f717202004-11-22 21:48:33 +0000199 << F->getName() << "'\n");
Chris Lattnercb479412004-11-21 03:44:32 +0000200
Chris Lattner54266522004-11-20 23:57:07 +0000201 // Finally, keep track of the stub-to-Function mapping so that the
202 // JITCompilerFn knows which function to compile!
203 StubToFunctionMap[Stub] = F;
204 return Stub;
205}
206
207/// JITCompilerFn - This function is called when a lazy compilation stub has
208/// been entered. It looks up which function this stub corresponds to, compiles
209/// it if necessary, then returns the resultant function pointer.
210void *JITResolver::JITCompilerFn(void *Stub) {
211 JITResolver &JR = getJITResolver();
212
213 // The address given to us for the stub may not be exactly right, it might be
214 // a little bit after the stub. As such, use upper_bound to find it.
215 std::map<void*, Function*>::iterator I =
216 JR.StubToFunctionMap.upper_bound(Stub);
217 assert(I != JR.StubToFunctionMap.begin() && "This is not a known stub!");
218 Function *F = (--I)->second;
219
220 // The target function will rewrite the stub so that the compilation callback
221 // function is no longer called from this stub.
222 JR.StubToFunctionMap.erase(I);
223
Chris Lattnercb479412004-11-21 03:44:32 +0000224 DEBUG(std::cerr << "JIT: Lazily resolving function '" << F->getName()
Chris Lattner54266522004-11-20 23:57:07 +0000225 << "' In stub ptr = " << Stub << " actual ptr = "
226 << I->first << "\n");
227
228 void *Result = TheJIT->getPointerToFunction(F);
229
230 // We don't need to reuse this stub in the future, as F is now compiled.
231 JR.FunctionToStubMap.erase(F);
232
233 // FIXME: We could rewrite all references to this stub if we knew them.
234 return Result;
235}
Chris Lattner688506d2003-08-14 18:35:27 +0000236
237
Chris Lattnere518b712004-12-05 07:19:16 +0000238// getPointerToFunctionOrStub - If the specified function has been
239// code-gen'd, return a pointer to the function. If not, compile it, or use
240// a stub to implement lazy compilation if available.
241//
242void *JIT::getPointerToFunctionOrStub(Function *F) {
243 // If we have already code generated the function, just return the address.
244 if (void *Addr = getPointerToGlobalIfAvailable(F))
245 return Addr;
246
247 // Get a stub if the target supports it
248 return getJITResolver(MCE).getFunctionStub(F);
249}
250
251
252
Chris Lattner54266522004-11-20 23:57:07 +0000253//===----------------------------------------------------------------------===//
Chris Lattner166f2262004-11-22 22:00:25 +0000254// JITEmitter code.
Chris Lattner54266522004-11-20 23:57:07 +0000255//
Chris Lattner688506d2003-08-14 18:35:27 +0000256namespace {
Chris Lattner166f2262004-11-22 22:00:25 +0000257 /// JITEmitter - The JIT implementation of the MachineCodeEmitter, which is
258 /// used to output functions to memory for execution.
259 class JITEmitter : public MachineCodeEmitter {
Chris Lattner688506d2003-08-14 18:35:27 +0000260 JITMemoryManager MemMgr;
261
Chris Lattnerbba1b6d2003-06-01 23:24:36 +0000262 // CurBlock - The start of the current block of memory. CurByte - The
263 // current byte being emitted to.
Chris Lattner6125fdd2003-05-09 03:30:07 +0000264 unsigned char *CurBlock, *CurByte;
265
266 // When outputting a function stub in the context of some other function, we
267 // save CurBlock and CurByte here.
268 unsigned char *SavedCurBlock, *SavedCurByte;
Chris Lattnerbba1b6d2003-06-01 23:24:36 +0000269
270 // ConstantPoolAddresses - Contains the location for each entry in the
271 // constant pool.
Chris Lattner1cc08382003-01-13 01:00:12 +0000272 std::vector<void*> ConstantPoolAddresses;
Chris Lattner5be478f2004-11-20 03:46:14 +0000273
274 /// Relocations - These are the relocations that the function needs, as
275 /// emitted.
276 std::vector<MachineRelocation> Relocations;
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000277 public:
Chris Lattner166f2262004-11-22 22:00:25 +0000278 JITEmitter(JIT &jit) { TheJIT = &jit; }
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000279
280 virtual void startFunction(MachineFunction &F);
281 virtual void finishFunction(MachineFunction &F);
Chris Lattner1cc08382003-01-13 01:00:12 +0000282 virtual void emitConstantPool(MachineConstantPool *MCP);
Chris Lattner54266522004-11-20 23:57:07 +0000283 virtual void startFunctionStub(unsigned StubSize);
284 virtual void* finishFunctionStub(const Function *F);
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000285 virtual void emitByte(unsigned char B);
Chris Lattnerbba1b6d2003-06-01 23:24:36 +0000286 virtual void emitWord(unsigned W);
Brian Gaekeaea1b582004-04-23 17:11:14 +0000287 virtual void emitWordAt(unsigned W, unsigned *Ptr);
Chris Lattnerbba1b6d2003-06-01 23:24:36 +0000288
Chris Lattner5be478f2004-11-20 03:46:14 +0000289 virtual void addRelocation(const MachineRelocation &MR) {
290 Relocations.push_back(MR);
291 }
292
293 virtual uint64_t getCurrentPCValue();
294 virtual uint64_t getCurrentPCOffset();
Chris Lattnerbba1b6d2003-06-01 23:24:36 +0000295 virtual uint64_t getConstantPoolEntryAddress(unsigned Entry);
Chris Lattnerbba1b6d2003-06-01 23:24:36 +0000296
Chris Lattner54266522004-11-20 23:57:07 +0000297 private:
Chris Lattner5e225582004-11-21 03:37:42 +0000298 void *getPointerToGlobal(GlobalValue *GV, void *Reference, bool NoNeedStub);
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000299 };
300}
301
Chris Lattner4d326fa2003-12-20 01:46:27 +0000302MachineCodeEmitter *JIT::createEmitter(JIT &jit) {
Chris Lattner166f2262004-11-22 22:00:25 +0000303 return new JITEmitter(jit);
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000304}
305
Chris Lattner166f2262004-11-22 22:00:25 +0000306void *JITEmitter::getPointerToGlobal(GlobalValue *V, void *Reference,
307 bool DoesntNeedStub) {
Chris Lattner54266522004-11-20 23:57:07 +0000308 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(V)) {
309 /// FIXME: If we straightened things out, this could actually emit the
310 /// global immediately instead of queuing it for codegen later!
Chris Lattner54266522004-11-20 23:57:07 +0000311 return TheJIT->getOrEmitGlobalVariable(GV);
312 }
313
314 // If we have already compiled the function, return a pointer to its body.
315 Function *F = cast<Function>(V);
316 void *ResultPtr = TheJIT->getPointerToGlobalIfAvailable(F);
317 if (ResultPtr) return ResultPtr;
318
Chris Lattner532343b2004-11-30 17:41:49 +0000319 if (F->hasExternalLinkage() && F->isExternal()) {
Chris Lattner54266522004-11-20 23:57:07 +0000320 // If this is an external function pointer, we can force the JIT to
321 // 'compile' it, which really just adds it to the map.
Chris Lattnerb43dbdc2004-11-22 07:24:43 +0000322 if (DoesntNeedStub)
323 return TheJIT->getPointerToFunction(F);
324
325 return getJITResolver(this).getFunctionStub(F);
Chris Lattner54266522004-11-20 23:57:07 +0000326 }
327
Chris Lattner5e225582004-11-21 03:37:42 +0000328 // Okay, the function has not been compiled yet, if the target callback
329 // mechanism is capable of rewriting the instruction directly, prefer to do
330 // that instead of emitting a stub.
331 if (DoesntNeedStub)
332 return getJITResolver(this).AddCallbackAtLocation(F, Reference);
333
Chris Lattner54266522004-11-20 23:57:07 +0000334 // Otherwise, we have to emit a lazy resolving stub.
335 return getJITResolver(this).getFunctionStub(F);
336}
337
Chris Lattner166f2262004-11-22 22:00:25 +0000338void JITEmitter::startFunction(MachineFunction &F) {
Chris Lattner688506d2003-08-14 18:35:27 +0000339 CurByte = CurBlock = MemMgr.startFunctionBody();
Chris Lattner4d326fa2003-12-20 01:46:27 +0000340 TheJIT->addGlobalMapping(F.getFunction(), CurBlock);
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000341}
342
Chris Lattner166f2262004-11-22 22:00:25 +0000343void JITEmitter::finishFunction(MachineFunction &F) {
Chris Lattner688506d2003-08-14 18:35:27 +0000344 MemMgr.endFunctionBody(CurByte);
Chris Lattner1cc08382003-01-13 01:00:12 +0000345 ConstantPoolAddresses.clear();
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000346 NumBytes += CurByte-CurBlock;
347
Chris Lattner5be478f2004-11-20 03:46:14 +0000348 if (!Relocations.empty()) {
349 // Resolve the relocations to concrete pointers.
350 for (unsigned i = 0, e = Relocations.size(); i != e; ++i) {
351 MachineRelocation &MR = Relocations[i];
352 void *ResultPtr;
Chris Lattner54266522004-11-20 23:57:07 +0000353 if (MR.isString())
Chris Lattner5be478f2004-11-20 03:46:14 +0000354 ResultPtr = TheJIT->getPointerToNamedFunction(MR.getString());
Chris Lattner54266522004-11-20 23:57:07 +0000355 else
Chris Lattner5e225582004-11-21 03:37:42 +0000356 ResultPtr = getPointerToGlobal(MR.getGlobalValue(),
357 CurBlock+MR.getMachineCodeOffset(),
358 MR.doesntNeedFunctionStub());
Chris Lattner5be478f2004-11-20 03:46:14 +0000359 MR.setResultPointer(ResultPtr);
360 }
361
362 TheJIT->getJITInfo().relocate(CurBlock, &Relocations[0],
363 Relocations.size());
364 }
365
Chris Lattnercb479412004-11-21 03:44:32 +0000366 DEBUG(std::cerr << "JIT: Finished CodeGen of [" << (void*)CurBlock
Misha Brukman1d440852003-06-06 06:52:35 +0000367 << "] Function: " << F.getFunction()->getName()
Chris Lattner5be478f2004-11-20 03:46:14 +0000368 << ": " << CurByte-CurBlock << " bytes of text, "
369 << Relocations.size() << " relocations\n");
370 Relocations.clear();
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000371}
372
Chris Lattner166f2262004-11-22 22:00:25 +0000373void JITEmitter::emitConstantPool(MachineConstantPool *MCP) {
Chris Lattner1cc08382003-01-13 01:00:12 +0000374 const std::vector<Constant*> &Constants = MCP->getConstants();
Chris Lattner2c0a6a12003-11-30 04:23:21 +0000375 if (Constants.empty()) return;
376
Chris Lattner1cc08382003-01-13 01:00:12 +0000377 for (unsigned i = 0, e = Constants.size(); i != e; ++i) {
Chris Lattner2c0a6a12003-11-30 04:23:21 +0000378 const Type *Ty = Constants[i]->getType();
Chris Lattnera8101c12005-01-08 20:07:03 +0000379 unsigned Size = (unsigned)TheJIT->getTargetData().getTypeSize(Ty);
Chris Lattner4d326fa2003-12-20 01:46:27 +0000380 unsigned Alignment = TheJIT->getTargetData().getTypeAlignment(Ty);
Chris Lattner2c0a6a12003-11-30 04:23:21 +0000381
Chris Lattner281a6012005-01-10 18:23:22 +0000382 void *Addr = MemMgr.allocateConstant(Size, Alignment);
Chris Lattner4d326fa2003-12-20 01:46:27 +0000383 TheJIT->InitializeMemory(Constants[i], Addr);
Misha Brukman91de3522003-11-30 00:50:53 +0000384 ConstantPoolAddresses.push_back(Addr);
Chris Lattner1cc08382003-01-13 01:00:12 +0000385 }
386}
387
Chris Lattner166f2262004-11-22 22:00:25 +0000388void JITEmitter::startFunctionStub(unsigned StubSize) {
Chris Lattner6125fdd2003-05-09 03:30:07 +0000389 SavedCurBlock = CurBlock; SavedCurByte = CurByte;
Chris Lattner688506d2003-08-14 18:35:27 +0000390 CurByte = CurBlock = MemMgr.allocateStub(StubSize);
Chris Lattner6125fdd2003-05-09 03:30:07 +0000391}
392
Chris Lattner166f2262004-11-22 22:00:25 +0000393void *JITEmitter::finishFunctionStub(const Function *F) {
Chris Lattner6125fdd2003-05-09 03:30:07 +0000394 NumBytes += CurByte-CurBlock;
Chris Lattner6125fdd2003-05-09 03:30:07 +0000395 std::swap(CurBlock, SavedCurBlock);
396 CurByte = SavedCurByte;
397 return SavedCurBlock;
398}
399
Chris Lattner166f2262004-11-22 22:00:25 +0000400void JITEmitter::emitByte(unsigned char B) {
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000401 *CurByte++ = B; // Write the byte to memory
402}
403
Chris Lattner166f2262004-11-22 22:00:25 +0000404void JITEmitter::emitWord(unsigned W) {
Chris Lattner688506d2003-08-14 18:35:27 +0000405 // This won't work if the endianness of the host and target don't agree! (For
406 // a JIT this can't happen though. :)
Chris Lattnerbba1b6d2003-06-01 23:24:36 +0000407 *(unsigned*)CurByte = W;
408 CurByte += sizeof(unsigned);
409}
410
Chris Lattner166f2262004-11-22 22:00:25 +0000411void JITEmitter::emitWordAt(unsigned W, unsigned *Ptr) {
Brian Gaekeaea1b582004-04-23 17:11:14 +0000412 *Ptr = W;
413}
414
Chris Lattnerbba1b6d2003-06-01 23:24:36 +0000415// getConstantPoolEntryAddress - Return the address of the 'ConstantNum' entry
416// in the constant pool that was last emitted with the 'emitConstantPool'
417// method.
418//
Chris Lattner166f2262004-11-22 22:00:25 +0000419uint64_t JITEmitter::getConstantPoolEntryAddress(unsigned ConstantNum) {
Chris Lattnerbba1b6d2003-06-01 23:24:36 +0000420 assert(ConstantNum < ConstantPoolAddresses.size() &&
421 "Invalid ConstantPoolIndex!");
422 return (intptr_t)ConstantPoolAddresses[ConstantNum];
423}
424
425// getCurrentPCValue - This returns the address that the next emitted byte
426// will be output to.
427//
Chris Lattner166f2262004-11-22 22:00:25 +0000428uint64_t JITEmitter::getCurrentPCValue() {
Chris Lattnerbba1b6d2003-06-01 23:24:36 +0000429 return (intptr_t)CurByte;
430}
431
Chris Lattner166f2262004-11-22 22:00:25 +0000432uint64_t JITEmitter::getCurrentPCOffset() {
Chris Lattner5be478f2004-11-20 03:46:14 +0000433 return (intptr_t)CurByte-(intptr_t)CurBlock;
434}
435
Misha Brukmand69c1e62003-07-28 19:09:06 +0000436// getPointerToNamedFunction - This function is used as a global wrapper to
Chris Lattner4d326fa2003-12-20 01:46:27 +0000437// JIT::getPointerToNamedFunction for the purpose of resolving symbols when
Misha Brukmand69c1e62003-07-28 19:09:06 +0000438// bugpoint is debugging the JIT. In that scenario, we are loading an .so and
439// need to resolve function(s) that are being mis-codegenerated, so we need to
440// resolve their addresses at runtime, and this is the way to do it.
441extern "C" {
442 void *getPointerToNamedFunction(const char *Name) {
Chris Lattner4d326fa2003-12-20 01:46:27 +0000443 Module &M = TheJIT->getModule();
Misha Brukmand69c1e62003-07-28 19:09:06 +0000444 if (Function *F = M.getNamedFunction(Name))
Chris Lattner4d326fa2003-12-20 01:46:27 +0000445 return TheJIT->getPointerToFunction(F);
446 return TheJIT->getPointerToNamedFunction(Name);
Misha Brukmand69c1e62003-07-28 19:09:06 +0000447 }
448}