blob: cdcb5ef452063fb40588a3f95e9b78ad7611e1e0 [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"
Misha Brukman5dfe3a92004-06-21 16:55:25 +000024
25namespace llvm {
26
Misha Brukmanb05daff2004-08-09 23:03:59 +000027namespace {
Misha Brukman3070e2f2004-10-21 01:42:02 +000028 class JITResolver {
29 MachineCodeEmitter &MCE;
30
31 // LazyCodeGenMap - Keep track of call sites for functions that are to be
32 // lazily resolved.
33 std::map<unsigned, Function*> LazyCodeGenMap;
34
35 // LazyResolverMap - Keep track of the lazy resolver created for a
36 // particular function so that we can reuse them if necessary.
37 std::map<Function*, unsigned> LazyResolverMap;
38
39 public:
40 JITResolver(MachineCodeEmitter &mce) : MCE(mce) {}
41 unsigned getLazyResolver(Function *F);
42 unsigned addFunctionReference(unsigned Address, Function *F);
43
44 private:
45 unsigned emitStubForFunction(Function *F);
46 static void CompilationCallback();
47 unsigned resolveFunctionReference(unsigned RetAddr);
48 };
49
50 static JITResolver &getResolver(MachineCodeEmitter &MCE) {
51 static JITResolver *TheJITResolver = 0;
52 if (TheJITResolver == 0)
53 TheJITResolver = new JITResolver(MCE);
54 return *TheJITResolver;
55 }
56}
57
58unsigned JITResolver::getLazyResolver(Function *F) {
59 std::map<Function*, unsigned>::iterator I = LazyResolverMap.lower_bound(F);
60 if (I != LazyResolverMap.end() && I->first == F) return I->second;
61
62 unsigned Stub = emitStubForFunction(F);
63 LazyResolverMap.insert(I, std::make_pair(F, Stub));
64 return Stub;
65}
66
67/// addFunctionReference - This method is called when we need to emit the
68/// address of a function that has not yet been emitted, so we don't know the
69/// address. Instead, we emit a call to the CompilationCallback method, and
70/// keep track of where we are.
71///
72unsigned JITResolver::addFunctionReference(unsigned Address, Function *F) {
73 LazyCodeGenMap[Address] = F;
74 return (intptr_t)&JITResolver::CompilationCallback;
75}
76
77unsigned JITResolver::resolveFunctionReference(unsigned RetAddr) {
78 std::map<unsigned, Function*>::iterator I = LazyCodeGenMap.find(RetAddr);
79 assert(I != LazyCodeGenMap.end() && "Not in map!");
80 Function *F = I->second;
81 LazyCodeGenMap.erase(I);
82 return MCE.forceCompilationOf(F);
83}
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
224 if (Addr == ExternalFn2Addr.end())
225 ExternalFn2Addr[F] = MCE.forceCompilationOf(F);
226 return ExternalFn2Addr[F];
227}
228
Misha Brukmana4df3502004-10-23 18:28:01 +0000229static unsigned enumRegToMachineReg(unsigned enumReg) {
230 switch (enumReg) {
231 case PPC::R0 : case PPC::F0 : return 0;
232 case PPC::R1 : case PPC::F1 : return 1;
233 case PPC::R2 : case PPC::F2 : return 2;
234 case PPC::R3 : case PPC::F3 : return 3;
235 case PPC::R4 : case PPC::F4 : return 4;
236 case PPC::R5 : case PPC::F5 : return 5;
237 case PPC::R6 : case PPC::F6 : return 6;
238 case PPC::R7 : case PPC::F7 : return 7;
239 case PPC::R8 : case PPC::F8 : return 8;
240 case PPC::R9 : case PPC::F9 : return 9;
241 case PPC::R10: case PPC::F10: return 10;
242 case PPC::R11: case PPC::F11: return 11;
243 case PPC::R12: case PPC::F12: return 12;
244 case PPC::R13: case PPC::F13: return 13;
245 case PPC::R14: case PPC::F14: return 14;
246 case PPC::R15: case PPC::F15: return 15;
247 case PPC::R16: case PPC::F16: return 16;
248 case PPC::R17: case PPC::F17: return 17;
249 case PPC::R18: case PPC::F18: return 18;
250 case PPC::R19: case PPC::F19: return 19;
251 case PPC::R20: case PPC::F20: return 20;
252 case PPC::R21: case PPC::F21: return 21;
253 case PPC::R22: case PPC::F22: return 22;
254 case PPC::R23: case PPC::F23: return 23;
255 case PPC::R24: case PPC::F24: return 24;
256 case PPC::R25: case PPC::F25: return 25;
257 case PPC::R26: case PPC::F26: return 26;
258 case PPC::R27: case PPC::F27: return 27;
259 case PPC::R28: case PPC::F28: return 28;
260 case PPC::R29: case PPC::F29: return 29;
261 case PPC::R30: case PPC::F30: return 30;
262 case PPC::R31: case PPC::F31: return 31;
263 default:
264 std::cerr << "Unhandled reg in enumRegToRealReg!\n";
265 abort();
266 }
267}
268
Misha Brukmand37faba2004-10-14 06:07:25 +0000269int64_t PPC32CodeEmitter::getMachineOpValue(MachineInstr &MI,
270 MachineOperand &MO) {
Misha Brukmanc982cfa2004-10-14 06:39:56 +0000271 int64_t rv = 0; // Return value; defaults to 0 for unhandled cases
272 // or things that get fixed up later by the JIT.
Misha Brukman3070e2f2004-10-21 01:42:02 +0000273 if (MO.isRegister()) {
Misha Brukmana4df3502004-10-23 18:28:01 +0000274 rv = enumRegToMachineReg(MO.getReg());
Misha Brukmanc982cfa2004-10-14 06:39:56 +0000275 } else if (MO.isImmediate()) {
276 rv = MO.getImmedValue();
Misha Brukmanc982cfa2004-10-14 06:39:56 +0000277 } else if (MO.isGlobalAddress()) {
Misha Brukman3070e2f2004-10-21 01:42:02 +0000278 GlobalValue *GV = MO.getGlobal();
Misha Brukmand4b4a992004-10-23 23:47:34 +0000279 rv = MCE.getGlobalValueAddress(GV);
280 if (rv == 0) {
Misha Brukman3070e2f2004-10-21 01:42:02 +0000281 if (Function *F = dyn_cast<Function>(GV)) {
282 if (F->isExternal())
283 rv = getAddressOfExternalFunction(F);
284 else {
Misha Brukmand4b4a992004-10-23 23:47:34 +0000285 // Function has not yet been code generated! Use lazy resolution.
Misha Brukman3070e2f2004-10-21 01:42:02 +0000286 getResolver(MCE).addFunctionReference(MCE.getCurrentPCValue(), F);
Misha Brukmand4b4a992004-10-23 23:47:34 +0000287 rv = getResolver(MCE).getLazyResolver(F);
Misha Brukman3070e2f2004-10-21 01:42:02 +0000288 }
289 } else if (GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV)) {
Misha Brukmana4df3502004-10-23 18:28:01 +0000290 if (GVar->isExternal()) {
Misha Brukman3070e2f2004-10-21 01:42:02 +0000291 rv = MCE.getGlobalValueAddress(MO.getSymbolName());
Misha Brukmana4df3502004-10-23 18:28:01 +0000292 if (!rv) {
293 std::cerr << "PPC32CodeEmitter: External global addr not found: "
294 << *GVar;
295 abort();
296 }
297 } else {
298 std::cerr << "PPC32CodeEmitter: global addr not found: " << *GVar;
Misha Brukman3070e2f2004-10-21 01:42:02 +0000299 abort();
300 }
301 }
302 }
303 if (MO.isPCRelative()) { // Global variable reference
Misha Brukmand4b4a992004-10-23 23:47:34 +0000304 rv = (rv - MCE.getCurrentPCValue()) >> 2;
Misha Brukman3070e2f2004-10-21 01:42:02 +0000305 }
Misha Brukmanc982cfa2004-10-14 06:39:56 +0000306 } else if (MO.isMachineBasicBlock()) {
Misha Brukman3070e2f2004-10-21 01:42:02 +0000307 const BasicBlock *BB = MO.getMachineBasicBlock()->getBasicBlock();
308 unsigned* CurrPC = (unsigned*)(intptr_t)MCE.getCurrentPCValue();
309 BBRefs.push_back(std::make_pair(BB, std::make_pair(CurrPC, &MI)));
Misha Brukmanc982cfa2004-10-14 06:39:56 +0000310 } else if (MO.isConstantPoolIndex()) {
Misha Brukman3070e2f2004-10-21 01:42:02 +0000311 unsigned index = MO.getConstantPoolIndex();
312 rv = MCE.getConstantPoolEntryAddress(index);
313 } else if (MO.isFrameIndex()) {
314 std::cerr << "PPC32CodeEmitter: error: Frame index unhandled!\n";
315 abort();
Misha Brukmanc982cfa2004-10-14 06:39:56 +0000316 } else {
317 std::cerr << "ERROR: Unknown type of MachineOperand: " << MO << "\n";
318 abort();
319 }
320
Misha Brukmana4df3502004-10-23 18:28:01 +0000321 // Special treatment for global symbols: constants and vars
322 if (MO.isConstantPoolIndex() || MO.isGlobalAddress()) {
323 unsigned Opcode = MI.getOpcode();
324 int64_t MBBLoc = BBLocations[MI.getParent()->getBasicBlock()];
325 if (Opcode == PPC::LOADHiAddr) {
326 // LoadHiAddr wants hi16(addr - mbb)
327 rv = (rv - MBBLoc) >> 16;
328 } else if (Opcode == PPC::LWZ || Opcode == PPC::LA ||
329 Opcode == PPC::LFS || Opcode == PPC::LFD) {
330 // These load opcodes want lo16(addr - mbb)
331 rv = (rv - MBBLoc) & 0xffff;
332 }
333 }
334
Misha Brukmanc982cfa2004-10-14 06:39:56 +0000335 return rv;
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000336}
337
Misha Brukmand37faba2004-10-14 06:07:25 +0000338
Misha Brukman3070e2f2004-10-21 01:42:02 +0000339void *PPC32JITInfo::getJITStubForFunction(Function *F, MachineCodeEmitter &MCE){
340 return (void*)((unsigned long)getResolver(MCE).getLazyResolver(F));
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000341}
342
Misha Brukman3d9a6c22004-08-11 00:09:42 +0000343void PPC32JITInfo::replaceMachineCodeForFunction (void *Old, void *New) {
Misha Brukmand37faba2004-10-14 06:07:25 +0000344 std::cerr << "PPC32JITInfo::replaceMachineCodeForFunction not implemented\n";
345 abort();
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000346}
347
Misha Brukmand37faba2004-10-14 06:07:25 +0000348#include "PPC32GenCodeEmitter.inc"
Misha Brukmanb05daff2004-08-09 23:03:59 +0000349
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000350} // end llvm namespace
351