blob: 8c1de8806f16b5d8a5e81d8276d1357dc8143580 [file] [log] [blame]
Chris Lattnerbd199fb2002-12-24 00:01:05 +00001//===-- Emitter.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//
10// This file defines a MachineCodeEmitter object that is used by Jello to write
11// machine code to memory and remember where relocatable values lie.
12//
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 Lattnerbd199fb2002-12-24 00:01:05 +000019#include "llvm/CodeGen/MachineCodeEmitter.h"
20#include "llvm/CodeGen/MachineFunction.h"
Chris Lattner1cc08382003-01-13 01:00:12 +000021#include "llvm/CodeGen/MachineConstantPool.h"
22#include "llvm/Target/TargetData.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000023#include "llvm/Support/Debug.h"
24#include "llvm/ADT/Statistic.h"
Reid Spencer52b0ba62004-09-11 04:31:03 +000025#include "llvm/System/Memory.h"
26
Chris Lattnerc19aade2003-12-08 08:06:28 +000027using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000028
Chris Lattnerbd199fb2002-12-24 00:01:05 +000029namespace {
Chris Lattnere7386562003-10-20 05:45:49 +000030 Statistic<> NumBytes("jit", "Number of bytes of machine code compiled");
Chris Lattner4d326fa2003-12-20 01:46:27 +000031 JIT *TheJIT = 0;
Chris Lattnerbd199fb2002-12-24 00:01:05 +000032
Chris Lattner688506d2003-08-14 18:35:27 +000033 /// JITMemoryManager - Manage memory for the JIT code generation in a logical,
34 /// sane way. This splits a large block of MAP_NORESERVE'd memory into two
35 /// sections, one for function stubs, one for the functions themselves. We
36 /// have to do this because we may need to emit a function stub while in the
37 /// middle of emitting a function, and we don't know how large the function we
38 /// are emitting is. This never bothers to release the memory, because when
39 /// we are ready to destroy the JIT, the program exits.
40 class JITMemoryManager {
Reid Spencer33189e72004-09-13 22:38:11 +000041 sys::MemoryBlock MemBlock; // Virtual memory block allocated RWX
Chris Lattner688506d2003-08-14 18:35:27 +000042 unsigned char *MemBase; // Base of block of memory, start of stub mem
43 unsigned char *FunctionBase; // Start of the function body area
44 unsigned char *CurStubPtr, *CurFunctionPtr;
45 public:
46 JITMemoryManager();
47
48 inline unsigned char *allocateStub(unsigned StubSize);
49 inline unsigned char *startFunctionBody();
50 inline void endFunctionBody(unsigned char *FunctionEnd);
51 };
52}
53
Chris Lattner688506d2003-08-14 18:35:27 +000054JITMemoryManager::JITMemoryManager() {
55 // Allocate a 16M block of memory...
Reid Spencer33189e72004-09-13 22:38:11 +000056 MemBlock = sys::Memory::AllocateRWX((16 << 20));
Reid Spencer52b0ba62004-09-11 04:31:03 +000057 MemBase = reinterpret_cast<unsigned char*>(MemBlock.base());
Chris Lattner688506d2003-08-14 18:35:27 +000058 FunctionBase = MemBase + 512*1024; // Use 512k for stubs
59
60 // Allocate stubs backwards from the function base, allocate functions forward
61 // from the function base.
62 CurStubPtr = CurFunctionPtr = FunctionBase;
63}
64
65unsigned char *JITMemoryManager::allocateStub(unsigned StubSize) {
66 CurStubPtr -= StubSize;
67 if (CurStubPtr < MemBase) {
68 std::cerr << "JIT ran out of memory for function stubs!\n";
69 abort();
70 }
71 return CurStubPtr;
72}
73
74unsigned char *JITMemoryManager::startFunctionBody() {
75 // Round up to an even multiple of 4 bytes, this should eventually be target
76 // specific.
77 return (unsigned char*)(((intptr_t)CurFunctionPtr + 3) & ~3);
78}
79
80void JITMemoryManager::endFunctionBody(unsigned char *FunctionEnd) {
81 assert(FunctionEnd > CurFunctionPtr);
82 CurFunctionPtr = FunctionEnd;
83}
84
85
86
87namespace {
Brian Gaeke6020ddd2003-10-16 23:33:38 +000088 /// Emitter - The JIT implementation of the MachineCodeEmitter, which is used
Chris Lattner688506d2003-08-14 18:35:27 +000089 /// to output functions to memory for execution.
Chris Lattnerbd199fb2002-12-24 00:01:05 +000090 class Emitter : public MachineCodeEmitter {
Chris Lattner688506d2003-08-14 18:35:27 +000091 JITMemoryManager MemMgr;
92
Chris Lattnerbba1b6d2003-06-01 23:24:36 +000093 // CurBlock - The start of the current block of memory. CurByte - The
94 // current byte being emitted to.
Chris Lattner6125fdd2003-05-09 03:30:07 +000095 unsigned char *CurBlock, *CurByte;
96
97 // When outputting a function stub in the context of some other function, we
98 // save CurBlock and CurByte here.
99 unsigned char *SavedCurBlock, *SavedCurByte;
Chris Lattnerbba1b6d2003-06-01 23:24:36 +0000100
101 // ConstantPoolAddresses - Contains the location for each entry in the
102 // constant pool.
Chris Lattner1cc08382003-01-13 01:00:12 +0000103 std::vector<void*> ConstantPoolAddresses;
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000104 public:
Chris Lattner4d326fa2003-12-20 01:46:27 +0000105 Emitter(JIT &jit) { TheJIT = &jit; }
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000106
107 virtual void startFunction(MachineFunction &F);
108 virtual void finishFunction(MachineFunction &F);
Chris Lattner1cc08382003-01-13 01:00:12 +0000109 virtual void emitConstantPool(MachineConstantPool *MCP);
Chris Lattner6125fdd2003-05-09 03:30:07 +0000110 virtual void startFunctionStub(const Function &F, unsigned StubSize);
111 virtual void* finishFunctionStub(const Function &F);
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000112 virtual void emitByte(unsigned char B);
Chris Lattnerbba1b6d2003-06-01 23:24:36 +0000113 virtual void emitWord(unsigned W);
Brian Gaekeaea1b582004-04-23 17:11:14 +0000114 virtual void emitWordAt(unsigned W, unsigned *Ptr);
Chris Lattnerbba1b6d2003-06-01 23:24:36 +0000115
116 virtual uint64_t getGlobalValueAddress(GlobalValue *V);
Chris Lattner45730d72004-11-19 20:56:46 +0000117 virtual uint64_t getGlobalValueAddress(const char *Name);
Chris Lattnerbba1b6d2003-06-01 23:24:36 +0000118 virtual uint64_t getConstantPoolEntryAddress(unsigned Entry);
119 virtual uint64_t getCurrentPCValue();
120
121 // forceCompilationOf - Force the compilation of the specified function, and
122 // return its address, because we REALLY need the address now.
123 //
124 // FIXME: This is JIT specific!
125 //
126 virtual uint64_t forceCompilationOf(Function *F);
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000127 };
128}
129
Chris Lattner4d326fa2003-12-20 01:46:27 +0000130MachineCodeEmitter *JIT::createEmitter(JIT &jit) {
131 return new Emitter(jit);
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000132}
133
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000134void Emitter::startFunction(MachineFunction &F) {
Chris Lattner688506d2003-08-14 18:35:27 +0000135 CurByte = CurBlock = MemMgr.startFunctionBody();
Chris Lattner4d326fa2003-12-20 01:46:27 +0000136 TheJIT->addGlobalMapping(F.getFunction(), CurBlock);
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000137}
138
139void Emitter::finishFunction(MachineFunction &F) {
Chris Lattner688506d2003-08-14 18:35:27 +0000140 MemMgr.endFunctionBody(CurByte);
Chris Lattner1cc08382003-01-13 01:00:12 +0000141 ConstantPoolAddresses.clear();
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000142 NumBytes += CurByte-CurBlock;
143
Brian Gaeke02c26b62003-06-30 18:06:20 +0000144 DEBUG(std::cerr << "Finished CodeGen of [" << (void*)CurBlock
Misha Brukman1d440852003-06-06 06:52:35 +0000145 << "] Function: " << F.getFunction()->getName()
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000146 << ": " << CurByte-CurBlock << " bytes of text\n");
147}
148
Chris Lattner1cc08382003-01-13 01:00:12 +0000149void Emitter::emitConstantPool(MachineConstantPool *MCP) {
150 const std::vector<Constant*> &Constants = MCP->getConstants();
Chris Lattner2c0a6a12003-11-30 04:23:21 +0000151 if (Constants.empty()) return;
152
153 std::vector<unsigned> ConstantOffset;
154 ConstantOffset.reserve(Constants.size());
155
156 // Calculate how much space we will need for all the constants, and the offset
157 // each one will live in.
158 unsigned TotalSize = 0;
Chris Lattner1cc08382003-01-13 01:00:12 +0000159 for (unsigned i = 0, e = Constants.size(); i != e; ++i) {
Chris Lattner2c0a6a12003-11-30 04:23:21 +0000160 const Type *Ty = Constants[i]->getType();
Chris Lattner4d326fa2003-12-20 01:46:27 +0000161 unsigned Size = TheJIT->getTargetData().getTypeSize(Ty);
162 unsigned Alignment = TheJIT->getTargetData().getTypeAlignment(Ty);
Chris Lattner2c0a6a12003-11-30 04:23:21 +0000163 // Make sure to take into account the alignment requirements of the type.
164 TotalSize = (TotalSize + Alignment-1) & ~(Alignment-1);
165
166 // Remember the offset this element lives at.
167 ConstantOffset.push_back(TotalSize);
168 TotalSize += Size; // Reserve space for the constant.
169 }
170
171 // Now that we know how much memory to allocate, do so.
172 char *Pool = new char[TotalSize];
173
174 // Actually output all of the constants, and remember their addresses.
175 for (unsigned i = 0, e = Constants.size(); i != e; ++i) {
176 void *Addr = Pool + ConstantOffset[i];
Chris Lattner4d326fa2003-12-20 01:46:27 +0000177 TheJIT->InitializeMemory(Constants[i], Addr);
Misha Brukman91de3522003-11-30 00:50:53 +0000178 ConstantPoolAddresses.push_back(Addr);
Chris Lattner1cc08382003-01-13 01:00:12 +0000179 }
180}
181
Chris Lattner6125fdd2003-05-09 03:30:07 +0000182void Emitter::startFunctionStub(const Function &F, unsigned StubSize) {
183 SavedCurBlock = CurBlock; SavedCurByte = CurByte;
Chris Lattner688506d2003-08-14 18:35:27 +0000184 CurByte = CurBlock = MemMgr.allocateStub(StubSize);
Chris Lattner6125fdd2003-05-09 03:30:07 +0000185}
186
187void *Emitter::finishFunctionStub(const Function &F) {
188 NumBytes += CurByte-CurBlock;
189 DEBUG(std::cerr << "Finished CodeGen of [0x" << std::hex
Brian Gaeke88560c32004-10-29 18:22:45 +0000190 << (uintptr_t)CurBlock
Chris Lattner6125fdd2003-05-09 03:30:07 +0000191 << std::dec << "] Function stub for: " << F.getName()
192 << ": " << CurByte-CurBlock << " bytes of text\n");
193 std::swap(CurBlock, SavedCurBlock);
194 CurByte = SavedCurByte;
195 return SavedCurBlock;
196}
197
Chris Lattnerbd199fb2002-12-24 00:01:05 +0000198void Emitter::emitByte(unsigned char B) {
199 *CurByte++ = B; // Write the byte to memory
200}
201
Chris Lattnerbba1b6d2003-06-01 23:24:36 +0000202void Emitter::emitWord(unsigned W) {
Chris Lattner688506d2003-08-14 18:35:27 +0000203 // This won't work if the endianness of the host and target don't agree! (For
204 // a JIT this can't happen though. :)
Chris Lattnerbba1b6d2003-06-01 23:24:36 +0000205 *(unsigned*)CurByte = W;
206 CurByte += sizeof(unsigned);
207}
208
Brian Gaekeaea1b582004-04-23 17:11:14 +0000209void Emitter::emitWordAt(unsigned W, unsigned *Ptr) {
210 *Ptr = W;
211}
212
Chris Lattnerbba1b6d2003-06-01 23:24:36 +0000213uint64_t Emitter::getGlobalValueAddress(GlobalValue *V) {
214 // Try looking up the function to see if it is already compiled, if not return
215 // 0.
Chris Lattner02376e32004-11-15 23:20:04 +0000216 if (Function *F = dyn_cast<Function>(V)) {
217 void *Addr = TheJIT->getPointerToGlobalIfAvailable(F);
218 if (Addr == 0 && F->hasExternalLinkage()) {
219 // Do not output stubs for external functions.
220 Addr = TheJIT->getPointerToFunction(F);
221 }
222 return (intptr_t)Addr;
223 } else {
Chris Lattnerc07ed132003-12-20 03:36:47 +0000224 return (intptr_t)TheJIT->getOrEmitGlobalVariable(cast<GlobalVariable>(V));
225 }
Chris Lattnerbba1b6d2003-06-01 23:24:36 +0000226}
Chris Lattner45730d72004-11-19 20:56:46 +0000227uint64_t Emitter::getGlobalValueAddress(const char *Name) {
Chris Lattner4d326fa2003-12-20 01:46:27 +0000228 return (intptr_t)TheJIT->getPointerToNamedFunction(Name);
Chris Lattnerbba1b6d2003-06-01 23:24:36 +0000229}
230
231// getConstantPoolEntryAddress - Return the address of the 'ConstantNum' entry
232// in the constant pool that was last emitted with the 'emitConstantPool'
233// method.
234//
235uint64_t Emitter::getConstantPoolEntryAddress(unsigned ConstantNum) {
236 assert(ConstantNum < ConstantPoolAddresses.size() &&
237 "Invalid ConstantPoolIndex!");
238 return (intptr_t)ConstantPoolAddresses[ConstantNum];
239}
240
241// getCurrentPCValue - This returns the address that the next emitted byte
242// will be output to.
243//
244uint64_t Emitter::getCurrentPCValue() {
245 return (intptr_t)CurByte;
246}
247
248uint64_t Emitter::forceCompilationOf(Function *F) {
Chris Lattner4d326fa2003-12-20 01:46:27 +0000249 return (intptr_t)TheJIT->getPointerToFunction(F);
Chris Lattnerbba1b6d2003-06-01 23:24:36 +0000250}
251
Misha Brukmand69c1e62003-07-28 19:09:06 +0000252// getPointerToNamedFunction - This function is used as a global wrapper to
Chris Lattner4d326fa2003-12-20 01:46:27 +0000253// JIT::getPointerToNamedFunction for the purpose of resolving symbols when
Misha Brukmand69c1e62003-07-28 19:09:06 +0000254// bugpoint is debugging the JIT. In that scenario, we are loading an .so and
255// need to resolve function(s) that are being mis-codegenerated, so we need to
256// resolve their addresses at runtime, and this is the way to do it.
257extern "C" {
258 void *getPointerToNamedFunction(const char *Name) {
Chris Lattner4d326fa2003-12-20 01:46:27 +0000259 Module &M = TheJIT->getModule();
Misha Brukmand69c1e62003-07-28 19:09:06 +0000260 if (Function *F = M.getNamedFunction(Name))
Chris Lattner4d326fa2003-12-20 01:46:27 +0000261 return TheJIT->getPointerToFunction(F);
262 return TheJIT->getPointerToNamedFunction(Name);
Misha Brukmand69c1e62003-07-28 19:09:06 +0000263 }
264}