blob: 31a603d53b6dc9a43c6c8afb09e81549cc005389 [file] [log] [blame]
Misha Brukman3d9a6c22004-08-11 00:09:42 +00001//===-- PPC32CodeEmitter.cpp - JIT Code Emitter for PowerPC32 -----*- C++ -*-=//
Misha Brukman5dfe3a92004-06-21 16:55:25 +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//===----------------------------------------------------------------------===//
9//
Misha Brukmand37faba2004-10-14 06:07:25 +000010// This file defines the PowerPC 32-bit CodeEmitter and associated machinery to
11// JIT-compile bytecode to native PowerPC.
Misha Brukman5dfe3a92004-06-21 16:55:25 +000012//
13//===----------------------------------------------------------------------===//
14
Misha Brukman3d9a6c22004-08-11 00:09:42 +000015#include "PPC32JITInfo.h"
16#include "PPC32TargetMachine.h"
Misha Brukmana4df3502004-10-23 18:28:01 +000017#include "PowerPC.h"
Misha Brukman3070e2f2004-10-21 01:42:02 +000018#include "llvm/Module.h"
Misha Brukmanb05daff2004-08-09 23:03:59 +000019#include "llvm/CodeGen/MachineCodeEmitter.h"
20#include "llvm/CodeGen/MachineFunctionPass.h"
Misha Brukmand4b4a992004-10-23 23:47:34 +000021#include "llvm/CodeGen/MachineInstrBuilder.h"
Misha Brukmanb05daff2004-08-09 23:03:59 +000022#include "llvm/CodeGen/Passes.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000023#include "llvm/Support/Debug.h"
Chris Lattnereea9b132004-11-16 04:47:33 +000024using namespace llvm;
Misha Brukman5dfe3a92004-06-21 16:55:25 +000025
Misha Brukmanb05daff2004-08-09 23:03:59 +000026namespace {
Misha Brukman3070e2f2004-10-21 01:42:02 +000027 class JITResolver {
28 MachineCodeEmitter &MCE;
29
30 // LazyCodeGenMap - Keep track of call sites for functions that are to be
31 // lazily resolved.
32 std::map<unsigned, Function*> LazyCodeGenMap;
33
34 // LazyResolverMap - Keep track of the lazy resolver created for a
35 // particular function so that we can reuse them if necessary.
36 std::map<Function*, unsigned> LazyResolverMap;
37
38 public:
39 JITResolver(MachineCodeEmitter &mce) : MCE(mce) {}
40 unsigned getLazyResolver(Function *F);
41 unsigned addFunctionReference(unsigned Address, Function *F);
42
43 private:
44 unsigned emitStubForFunction(Function *F);
45 static void CompilationCallback();
46 unsigned resolveFunctionReference(unsigned RetAddr);
47 };
48
49 static JITResolver &getResolver(MachineCodeEmitter &MCE) {
50 static JITResolver *TheJITResolver = 0;
51 if (TheJITResolver == 0)
52 TheJITResolver = new JITResolver(MCE);
53 return *TheJITResolver;
54 }
55}
56
57unsigned JITResolver::getLazyResolver(Function *F) {
58 std::map<Function*, unsigned>::iterator I = LazyResolverMap.lower_bound(F);
59 if (I != LazyResolverMap.end() && I->first == F) return I->second;
60
61 unsigned Stub = emitStubForFunction(F);
62 LazyResolverMap.insert(I, std::make_pair(F, Stub));
63 return Stub;
64}
65
66/// addFunctionReference - This method is called when we need to emit the
67/// address of a function that has not yet been emitted, so we don't know the
68/// address. Instead, we emit a call to the CompilationCallback method, and
69/// keep track of where we are.
70///
71unsigned JITResolver::addFunctionReference(unsigned Address, Function *F) {
72 LazyCodeGenMap[Address] = F;
73 return (intptr_t)&JITResolver::CompilationCallback;
74}
75
76unsigned JITResolver::resolveFunctionReference(unsigned RetAddr) {
77 std::map<unsigned, Function*>::iterator I = LazyCodeGenMap.find(RetAddr);
78 assert(I != LazyCodeGenMap.end() && "Not in map!");
79 Function *F = I->second;
80 LazyCodeGenMap.erase(I);
Chris Lattner213c9692004-11-22 21:51:40 +000081 // FIXME: this needs to be rewritten.
82 return 0; //MCE.forceCompilationOf(F);
Misha Brukman3070e2f2004-10-21 01:42:02 +000083}
84
85/// emitStubForFunction - This method is used by the JIT when it needs to emit
86/// the address of a function for a function whose code has not yet been
87/// generated. In order to do this, it generates a stub which jumps to the lazy
88/// function compiler, which will eventually get fixed to call the function
89/// directly.
90///
91unsigned JITResolver::emitStubForFunction(Function *F) {
92 std::cerr << "PPC32CodeEmitter::emitStubForFunction() unimplemented!\n";
93 abort();
94 return 0;
95}
96
97void JITResolver::CompilationCallback() {
98 std::cerr << "PPC32CodeEmitter: CompilationCallback() unimplemented!";
99 abort();
100}
101
102namespace {
Misha Brukman3d9a6c22004-08-11 00:09:42 +0000103 class PPC32CodeEmitter : public MachineFunctionPass {
Misha Brukmanb05daff2004-08-09 23:03:59 +0000104 TargetMachine &TM;
105 MachineCodeEmitter &MCE;
106
Misha Brukman3070e2f2004-10-21 01:42:02 +0000107 // Tracks which instruction references which BasicBlock
108 std::vector<std::pair<const BasicBlock*,
109 std::pair<unsigned*,MachineInstr*> > > BBRefs;
110 // Tracks where each BasicBlock starts
111 std::map<const BasicBlock*, long> BBLocations;
112
113 /// getMachineOpValue - evaluates the MachineOperand of a given MachineInstr
114 ///
Misha Brukmand37faba2004-10-14 06:07:25 +0000115 int64_t getMachineOpValue(MachineInstr &MI, MachineOperand &MO);
116
Misha Brukman3070e2f2004-10-21 01:42:02 +0000117 unsigned getAddressOfExternalFunction(Function *F);
118
Misha Brukmanb05daff2004-08-09 23:03:59 +0000119 public:
Misha Brukman3d9a6c22004-08-11 00:09:42 +0000120 PPC32CodeEmitter(TargetMachine &T, MachineCodeEmitter &M)
Misha Brukmanb05daff2004-08-09 23:03:59 +0000121 : TM(T), MCE(M) {}
122
123 const char *getPassName() const { return "PowerPC Machine Code Emitter"; }
124
125 /// runOnMachineFunction - emits the given MachineFunction to memory
126 ///
127 bool runOnMachineFunction(MachineFunction &MF);
128
129 /// emitBasicBlock - emits the given MachineBasicBlock to memory
130 ///
131 void emitBasicBlock(MachineBasicBlock &MBB);
132
133 /// emitWord - write a 32-bit word to memory at the current PC
134 ///
135 void emitWord(unsigned w) { MCE.emitWord(w); }
Misha Brukmand37faba2004-10-14 06:07:25 +0000136
137 /// getValueBit - return the particular bit of Val
138 ///
139 unsigned getValueBit(int64_t Val, unsigned bit) { return (Val >> bit) & 1; }
Misha Brukmanb05daff2004-08-09 23:03:59 +0000140
Misha Brukman3070e2f2004-10-21 01:42:02 +0000141 /// getBinaryCodeForInstr - This function, generated by the
142 /// CodeEmitterGenerator using TableGen, produces the binary encoding for
143 /// machine instructions.
Misha Brukmanb05daff2004-08-09 23:03:59 +0000144 ///
Misha Brukmand37faba2004-10-14 06:07:25 +0000145 unsigned getBinaryCodeForInstr(MachineInstr &MI);
Misha Brukmanb05daff2004-08-09 23:03:59 +0000146 };
147}
148
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000149/// addPassesToEmitMachineCode - Add passes to the specified pass manager to get
150/// machine code emitted. This uses a MachineCodeEmitter object to handle
151/// actually outputting the machine code and resolving things like the address
152/// of functions. This method should returns true if machine code emission is
153/// not supported.
154///
Misha Brukman3d9a6c22004-08-11 00:09:42 +0000155bool PPC32TargetMachine::addPassesToEmitMachineCode(FunctionPassManager &PM,
156 MachineCodeEmitter &MCE) {
Misha Brukman3070e2f2004-10-21 01:42:02 +0000157 // Keep as `true' until this is a functional JIT to allow llvm-gcc to build
158 return true;
159
Misha Brukmanb05daff2004-08-09 23:03:59 +0000160 // Machine code emitter pass for PowerPC
Misha Brukman9691a892004-10-21 03:07:38 +0000161 PM.add(new PPC32CodeEmitter(*this, MCE));
Misha Brukmand37faba2004-10-14 06:07:25 +0000162 // Delete machine code for this function after emitting it
Misha Brukmanb05daff2004-08-09 23:03:59 +0000163 PM.add(createMachineCodeDeleter());
Misha Brukmanc982cfa2004-10-14 06:39:56 +0000164 return false;
Misha Brukmanb05daff2004-08-09 23:03:59 +0000165}
166
Misha Brukman3d9a6c22004-08-11 00:09:42 +0000167bool PPC32CodeEmitter::runOnMachineFunction(MachineFunction &MF) {
Misha Brukmanb05daff2004-08-09 23:03:59 +0000168 MCE.startFunction(MF);
169 MCE.emitConstantPool(MF.getConstantPool());
Misha Brukman3070e2f2004-10-21 01:42:02 +0000170 for (MachineFunction::iterator BB = MF.begin(), E = MF.end(); BB != E; ++BB)
171 emitBasicBlock(*BB);
Misha Brukmanb05daff2004-08-09 23:03:59 +0000172 MCE.finishFunction(MF);
Misha Brukman3070e2f2004-10-21 01:42:02 +0000173
174 // Resolve branches to BasicBlocks for the entire function
175 for (unsigned i = 0, e = BBRefs.size(); i != e; ++i) {
176 long Location = BBLocations[BBRefs[i].first];
177 unsigned *Ref = BBRefs[i].second.first;
178 MachineInstr *MI = BBRefs[i].second.second;
179 DEBUG(std::cerr << "Fixup @ " << std::hex << Ref << " to 0x" << Location
180 << " in instr: " << std::dec << *MI);
181 for (unsigned ii = 0, ee = MI->getNumOperands(); ii != ee; ++ii) {
182 MachineOperand &op = MI->getOperand(ii);
183 if (op.isPCRelativeDisp()) {
184 // the instruction's branch target is made such that it branches to
185 // PC + (branchTarget * 4), so undo that arithmetic here:
186 // Location is the target of the branch
187 // Ref is the location of the instruction, and hence the PC
188 int64_t branchTarget = (Location - (long)Ref) >> 2;
189 MI->SetMachineOperandConst(ii, MachineOperand::MO_SignExtendedImmed,
190 branchTarget);
191 unsigned fixedInstr = PPC32CodeEmitter::getBinaryCodeForInstr(*MI);
192 MCE.emitWordAt(fixedInstr, Ref);
193 break;
194 }
195 }
196 }
197 BBRefs.clear();
198 BBLocations.clear();
199
Misha Brukmanb05daff2004-08-09 23:03:59 +0000200 return false;
201}
202
Misha Brukman3d9a6c22004-08-11 00:09:42 +0000203void PPC32CodeEmitter::emitBasicBlock(MachineBasicBlock &MBB) {
Misha Brukmana4df3502004-10-23 18:28:01 +0000204 BBLocations[MBB.getBasicBlock()] = MCE.getCurrentPCValue();
205 for (MachineBasicBlock::iterator I = MBB.begin(), E = MBB.end(); I != E; ++I){
206 MachineInstr &MI = *I;
207 unsigned Opcode = MI.getOpcode();
Misha Brukmand4b4a992004-10-23 23:47:34 +0000208 if (Opcode == PPC::IMPLICIT_DEF)
209 continue; // pseudo opcode, no side effects
210 else if (Opcode == PPC::MovePCtoLR) {
211 // This can be simplified: the resulting 32-bit code is 0x48000005
212 MachineInstr *MI = BuildMI(PPC::BL, 1).addImm(1);
213 emitWord(getBinaryCodeForInstr(*MI));
214 delete MI;
215 } else
216 emitWord(getBinaryCodeForInstr(*I));
Misha Brukmana4df3502004-10-23 18:28:01 +0000217 }
Misha Brukmanb05daff2004-08-09 23:03:59 +0000218}
219
Misha Brukman3070e2f2004-10-21 01:42:02 +0000220unsigned PPC32CodeEmitter::getAddressOfExternalFunction(Function *F) {
221 static std::map<Function*, unsigned> ExternalFn2Addr;
222 std::map<Function*, unsigned>::iterator Addr = ExternalFn2Addr.find(F);
223
Chris Lattner213c9692004-11-22 21:51:40 +0000224 // FIXME: this needs to be rewritten.
Misha Brukman3070e2f2004-10-21 01:42:02 +0000225 if (Addr == ExternalFn2Addr.end())
Chris Lattner213c9692004-11-22 21:51:40 +0000226 ExternalFn2Addr[F] = 0; //MCE.forceCompilationOf(F);
Misha Brukman3070e2f2004-10-21 01:42:02 +0000227 return ExternalFn2Addr[F];
228}
229
Misha Brukmana4df3502004-10-23 18:28:01 +0000230static unsigned enumRegToMachineReg(unsigned enumReg) {
231 switch (enumReg) {
232 case PPC::R0 : case PPC::F0 : return 0;
233 case PPC::R1 : case PPC::F1 : return 1;
234 case PPC::R2 : case PPC::F2 : return 2;
235 case PPC::R3 : case PPC::F3 : return 3;
236 case PPC::R4 : case PPC::F4 : return 4;
237 case PPC::R5 : case PPC::F5 : return 5;
238 case PPC::R6 : case PPC::F6 : return 6;
239 case PPC::R7 : case PPC::F7 : return 7;
240 case PPC::R8 : case PPC::F8 : return 8;
241 case PPC::R9 : case PPC::F9 : return 9;
242 case PPC::R10: case PPC::F10: return 10;
243 case PPC::R11: case PPC::F11: return 11;
244 case PPC::R12: case PPC::F12: return 12;
245 case PPC::R13: case PPC::F13: return 13;
246 case PPC::R14: case PPC::F14: return 14;
247 case PPC::R15: case PPC::F15: return 15;
248 case PPC::R16: case PPC::F16: return 16;
249 case PPC::R17: case PPC::F17: return 17;
250 case PPC::R18: case PPC::F18: return 18;
251 case PPC::R19: case PPC::F19: return 19;
252 case PPC::R20: case PPC::F20: return 20;
253 case PPC::R21: case PPC::F21: return 21;
254 case PPC::R22: case PPC::F22: return 22;
255 case PPC::R23: case PPC::F23: return 23;
256 case PPC::R24: case PPC::F24: return 24;
257 case PPC::R25: case PPC::F25: return 25;
258 case PPC::R26: case PPC::F26: return 26;
259 case PPC::R27: case PPC::F27: return 27;
260 case PPC::R28: case PPC::F28: return 28;
261 case PPC::R29: case PPC::F29: return 29;
262 case PPC::R30: case PPC::F30: return 30;
263 case PPC::R31: case PPC::F31: return 31;
264 default:
265 std::cerr << "Unhandled reg in enumRegToRealReg!\n";
266 abort();
267 }
268}
269
Misha Brukmand37faba2004-10-14 06:07:25 +0000270int64_t PPC32CodeEmitter::getMachineOpValue(MachineInstr &MI,
271 MachineOperand &MO) {
Misha Brukmanc982cfa2004-10-14 06:39:56 +0000272 int64_t rv = 0; // Return value; defaults to 0 for unhandled cases
273 // or things that get fixed up later by the JIT.
Misha Brukman3070e2f2004-10-21 01:42:02 +0000274 if (MO.isRegister()) {
Misha Brukmana4df3502004-10-23 18:28:01 +0000275 rv = enumRegToMachineReg(MO.getReg());
Misha Brukmanc982cfa2004-10-14 06:39:56 +0000276 } else if (MO.isImmediate()) {
277 rv = MO.getImmedValue();
Misha Brukmanc982cfa2004-10-14 06:39:56 +0000278 } else if (MO.isGlobalAddress()) {
Chris Lattner99b394d2004-11-22 21:45:54 +0000279 //GlobalValue *GV = MO.getGlobal();
280 // FIXME: Emit a relocation here.
281 rv = 0;
Misha Brukmanc982cfa2004-10-14 06:39:56 +0000282 } else if (MO.isMachineBasicBlock()) {
Misha Brukman3070e2f2004-10-21 01:42:02 +0000283 const BasicBlock *BB = MO.getMachineBasicBlock()->getBasicBlock();
284 unsigned* CurrPC = (unsigned*)(intptr_t)MCE.getCurrentPCValue();
285 BBRefs.push_back(std::make_pair(BB, std::make_pair(CurrPC, &MI)));
Misha Brukmanc982cfa2004-10-14 06:39:56 +0000286 } else if (MO.isConstantPoolIndex()) {
Misha Brukman3070e2f2004-10-21 01:42:02 +0000287 unsigned index = MO.getConstantPoolIndex();
288 rv = MCE.getConstantPoolEntryAddress(index);
289 } else if (MO.isFrameIndex()) {
290 std::cerr << "PPC32CodeEmitter: error: Frame index unhandled!\n";
291 abort();
Misha Brukmanc982cfa2004-10-14 06:39:56 +0000292 } else {
293 std::cerr << "ERROR: Unknown type of MachineOperand: " << MO << "\n";
294 abort();
295 }
296
Misha Brukmana4df3502004-10-23 18:28:01 +0000297 // Special treatment for global symbols: constants and vars
298 if (MO.isConstantPoolIndex() || MO.isGlobalAddress()) {
299 unsigned Opcode = MI.getOpcode();
300 int64_t MBBLoc = BBLocations[MI.getParent()->getBasicBlock()];
301 if (Opcode == PPC::LOADHiAddr) {
302 // LoadHiAddr wants hi16(addr - mbb)
303 rv = (rv - MBBLoc) >> 16;
304 } else if (Opcode == PPC::LWZ || Opcode == PPC::LA ||
305 Opcode == PPC::LFS || Opcode == PPC::LFD) {
306 // These load opcodes want lo16(addr - mbb)
307 rv = (rv - MBBLoc) & 0xffff;
308 }
309 }
310
Misha Brukmanc982cfa2004-10-14 06:39:56 +0000311 return rv;
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000312}
313
Misha Brukman3d9a6c22004-08-11 00:09:42 +0000314void PPC32JITInfo::replaceMachineCodeForFunction (void *Old, void *New) {
Misha Brukmand37faba2004-10-14 06:07:25 +0000315 std::cerr << "PPC32JITInfo::replaceMachineCodeForFunction not implemented\n";
316 abort();
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000317}
318
Misha Brukmand37faba2004-10-14 06:07:25 +0000319#include "PPC32GenCodeEmitter.inc"
Misha Brukmanb05daff2004-08-09 23:03:59 +0000320