blob: f09a42a70392ed70f78f202eb42b26b171d51ab9 [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 "PPC32TargetMachine.h"
Chris Lattnere94c5172004-11-23 05:59:53 +000016#include "PPC32Relocations.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 Brukman3d9a6c22004-08-11 00:09:42 +000027 class PPC32CodeEmitter : public MachineFunctionPass {
Misha Brukmanb05daff2004-08-09 23:03:59 +000028 TargetMachine &TM;
29 MachineCodeEmitter &MCE;
30
Chris Lattnere94c5172004-11-23 05:59:53 +000031 /// MovePCtoLROffset - When/if we see a MovePCtoLR instruction, we record
32 /// its address in the function into this pointer.
33 void *MovePCtoLROffset;
34
Misha Brukman3070e2f2004-10-21 01:42:02 +000035 // Tracks which instruction references which BasicBlock
36 std::vector<std::pair<const BasicBlock*,
37 std::pair<unsigned*,MachineInstr*> > > BBRefs;
38 // Tracks where each BasicBlock starts
39 std::map<const BasicBlock*, long> BBLocations;
40
41 /// getMachineOpValue - evaluates the MachineOperand of a given MachineInstr
42 ///
Chris Lattnere94c5172004-11-23 05:59:53 +000043 int getMachineOpValue(MachineInstr &MI, MachineOperand &MO);
Misha Brukman3070e2f2004-10-21 01:42:02 +000044
Misha Brukmanb05daff2004-08-09 23:03:59 +000045 public:
Misha Brukman3d9a6c22004-08-11 00:09:42 +000046 PPC32CodeEmitter(TargetMachine &T, MachineCodeEmitter &M)
Misha Brukmanb05daff2004-08-09 23:03:59 +000047 : TM(T), MCE(M) {}
48
49 const char *getPassName() const { return "PowerPC Machine Code Emitter"; }
50
51 /// runOnMachineFunction - emits the given MachineFunction to memory
52 ///
53 bool runOnMachineFunction(MachineFunction &MF);
54
55 /// emitBasicBlock - emits the given MachineBasicBlock to memory
56 ///
57 void emitBasicBlock(MachineBasicBlock &MBB);
58
59 /// emitWord - write a 32-bit word to memory at the current PC
60 ///
61 void emitWord(unsigned w) { MCE.emitWord(w); }
Misha Brukmand37faba2004-10-14 06:07:25 +000062
63 /// getValueBit - return the particular bit of Val
64 ///
65 unsigned getValueBit(int64_t Val, unsigned bit) { return (Val >> bit) & 1; }
Misha Brukmanb05daff2004-08-09 23:03:59 +000066
Misha Brukman3070e2f2004-10-21 01:42:02 +000067 /// getBinaryCodeForInstr - This function, generated by the
68 /// CodeEmitterGenerator using TableGen, produces the binary encoding for
69 /// machine instructions.
Misha Brukmanb05daff2004-08-09 23:03:59 +000070 ///
Misha Brukmand37faba2004-10-14 06:07:25 +000071 unsigned getBinaryCodeForInstr(MachineInstr &MI);
Misha Brukmanb05daff2004-08-09 23:03:59 +000072 };
73}
74
Misha Brukman5dfe3a92004-06-21 16:55:25 +000075/// addPassesToEmitMachineCode - Add passes to the specified pass manager to get
76/// machine code emitted. This uses a MachineCodeEmitter object to handle
77/// actually outputting the machine code and resolving things like the address
78/// of functions. This method should returns true if machine code emission is
79/// not supported.
80///
Misha Brukman3d9a6c22004-08-11 00:09:42 +000081bool PPC32TargetMachine::addPassesToEmitMachineCode(FunctionPassManager &PM,
82 MachineCodeEmitter &MCE) {
Misha Brukmanb05daff2004-08-09 23:03:59 +000083 // Machine code emitter pass for PowerPC
Misha Brukman9691a892004-10-21 03:07:38 +000084 PM.add(new PPC32CodeEmitter(*this, MCE));
Misha Brukmand37faba2004-10-14 06:07:25 +000085 // Delete machine code for this function after emitting it
Misha Brukmanb05daff2004-08-09 23:03:59 +000086 PM.add(createMachineCodeDeleter());
Misha Brukmanc982cfa2004-10-14 06:39:56 +000087 return false;
Misha Brukmanb05daff2004-08-09 23:03:59 +000088}
89
Misha Brukman3d9a6c22004-08-11 00:09:42 +000090bool PPC32CodeEmitter::runOnMachineFunction(MachineFunction &MF) {
Chris Lattnere94c5172004-11-23 05:59:53 +000091 MovePCtoLROffset = 0;
Misha Brukmanb05daff2004-08-09 23:03:59 +000092 MCE.startFunction(MF);
93 MCE.emitConstantPool(MF.getConstantPool());
Misha Brukman3070e2f2004-10-21 01:42:02 +000094 for (MachineFunction::iterator BB = MF.begin(), E = MF.end(); BB != E; ++BB)
95 emitBasicBlock(*BB);
Misha Brukmanb05daff2004-08-09 23:03:59 +000096 MCE.finishFunction(MF);
Misha Brukman3070e2f2004-10-21 01:42:02 +000097
98 // Resolve branches to BasicBlocks for the entire function
99 for (unsigned i = 0, e = BBRefs.size(); i != e; ++i) {
Chris Lattnere94c5172004-11-23 05:59:53 +0000100 intptr_t Location = BBLocations[BBRefs[i].first];
Misha Brukman3070e2f2004-10-21 01:42:02 +0000101 unsigned *Ref = BBRefs[i].second.first;
102 MachineInstr *MI = BBRefs[i].second.second;
Chris Lattnere94c5172004-11-23 05:59:53 +0000103 DEBUG(std::cerr << "Fixup @ " << (void*)Ref << " to " << (void*)Location
104 << " in instr: " << *MI);
Misha Brukman3070e2f2004-10-21 01:42:02 +0000105 for (unsigned ii = 0, ee = MI->getNumOperands(); ii != ee; ++ii) {
106 MachineOperand &op = MI->getOperand(ii);
107 if (op.isPCRelativeDisp()) {
108 // the instruction's branch target is made such that it branches to
109 // PC + (branchTarget * 4), so undo that arithmetic here:
110 // Location is the target of the branch
111 // Ref is the location of the instruction, and hence the PC
112 int64_t branchTarget = (Location - (long)Ref) >> 2;
113 MI->SetMachineOperandConst(ii, MachineOperand::MO_SignExtendedImmed,
114 branchTarget);
115 unsigned fixedInstr = PPC32CodeEmitter::getBinaryCodeForInstr(*MI);
116 MCE.emitWordAt(fixedInstr, Ref);
117 break;
118 }
119 }
120 }
121 BBRefs.clear();
122 BBLocations.clear();
123
Misha Brukmanb05daff2004-08-09 23:03:59 +0000124 return false;
125}
126
Misha Brukman3d9a6c22004-08-11 00:09:42 +0000127void PPC32CodeEmitter::emitBasicBlock(MachineBasicBlock &MBB) {
Misha Brukmana4df3502004-10-23 18:28:01 +0000128 BBLocations[MBB.getBasicBlock()] = MCE.getCurrentPCValue();
129 for (MachineBasicBlock::iterator I = MBB.begin(), E = MBB.end(); I != E; ++I){
130 MachineInstr &MI = *I;
131 unsigned Opcode = MI.getOpcode();
Chris Lattnere94c5172004-11-23 05:59:53 +0000132 switch (MI.getOpcode()) {
133 default:
Misha Brukmand4b4a992004-10-23 23:47:34 +0000134 emitWord(getBinaryCodeForInstr(*I));
Chris Lattnere94c5172004-11-23 05:59:53 +0000135 break;
136 case PPC::IMPLICIT_DEF:
137 break; // pseudo opcode, no side effects
138 case PPC::MovePCtoLR:
139 assert(MovePCtoLROffset == 0 &&
140 "Multiple MovePCtoLR instructions in the function?");
141 MovePCtoLROffset = (void*)(intptr_t)MCE.getCurrentPCValue();
142 emitWord(0x48000005); // bl 1
143 break;
144 }
Misha Brukmana4df3502004-10-23 18:28:01 +0000145 }
Misha Brukmanb05daff2004-08-09 23:03:59 +0000146}
147
Misha Brukmana4df3502004-10-23 18:28:01 +0000148static unsigned enumRegToMachineReg(unsigned enumReg) {
149 switch (enumReg) {
Chris Lattner9ba12352004-11-23 18:59:59 +0000150 case PPC::R0 : case PPC::F0 : case PPC::CR0: return 0;
151 case PPC::R1 : case PPC::F1 : case PPC::CR1: return 1;
152 case PPC::R2 : case PPC::F2 : case PPC::CR2: return 2;
153 case PPC::R3 : case PPC::F3 : case PPC::CR3: return 3;
154 case PPC::R4 : case PPC::F4 : case PPC::CR4: return 4;
155 case PPC::R5 : case PPC::F5 : case PPC::CR5: return 5;
156 case PPC::R6 : case PPC::F6 : case PPC::CR6: return 6;
157 case PPC::R7 : case PPC::F7 : case PPC::CR7: return 7;
Misha Brukmana4df3502004-10-23 18:28:01 +0000158 case PPC::R8 : case PPC::F8 : return 8;
159 case PPC::R9 : case PPC::F9 : return 9;
160 case PPC::R10: case PPC::F10: return 10;
161 case PPC::R11: case PPC::F11: return 11;
162 case PPC::R12: case PPC::F12: return 12;
163 case PPC::R13: case PPC::F13: return 13;
164 case PPC::R14: case PPC::F14: return 14;
165 case PPC::R15: case PPC::F15: return 15;
166 case PPC::R16: case PPC::F16: return 16;
167 case PPC::R17: case PPC::F17: return 17;
168 case PPC::R18: case PPC::F18: return 18;
169 case PPC::R19: case PPC::F19: return 19;
170 case PPC::R20: case PPC::F20: return 20;
171 case PPC::R21: case PPC::F21: return 21;
172 case PPC::R22: case PPC::F22: return 22;
173 case PPC::R23: case PPC::F23: return 23;
174 case PPC::R24: case PPC::F24: return 24;
175 case PPC::R25: case PPC::F25: return 25;
176 case PPC::R26: case PPC::F26: return 26;
177 case PPC::R27: case PPC::F27: return 27;
178 case PPC::R28: case PPC::F28: return 28;
179 case PPC::R29: case PPC::F29: return 29;
180 case PPC::R30: case PPC::F30: return 30;
181 case PPC::R31: case PPC::F31: return 31;
182 default:
183 std::cerr << "Unhandled reg in enumRegToRealReg!\n";
184 abort();
185 }
186}
187
Chris Lattnere94c5172004-11-23 05:59:53 +0000188int PPC32CodeEmitter::getMachineOpValue(MachineInstr &MI, MachineOperand &MO) {
189
190 int rv = 0; // Return value; defaults to 0 for unhandled cases
Misha Brukmanc982cfa2004-10-14 06:39:56 +0000191 // or things that get fixed up later by the JIT.
Misha Brukman3070e2f2004-10-21 01:42:02 +0000192 if (MO.isRegister()) {
Misha Brukmana4df3502004-10-23 18:28:01 +0000193 rv = enumRegToMachineReg(MO.getReg());
Misha Brukmanc982cfa2004-10-14 06:39:56 +0000194 } else if (MO.isImmediate()) {
195 rv = MO.getImmedValue();
Misha Brukmanc982cfa2004-10-14 06:39:56 +0000196 } else if (MO.isGlobalAddress()) {
Chris Lattnerd7fa35c2004-11-23 15:56:38 +0000197 unsigned Reloc = 0;
Chris Lattnere94c5172004-11-23 05:59:53 +0000198 if (MI.getOpcode() == PPC::CALLpcrel)
199 Reloc = PPC::reloc_pcrel_bx;
200 else if (MI.getOpcode() == PPC::LOADHiAddr) {
201 Reloc = PPC::reloc_absolute_loadhi;
202 } else if (MI.getOpcode() == PPC::LA) {
203 Reloc = PPC::reloc_absolute_la;
204 } else {
205 assert(0 && "Unknown instruction for relocation!");
206 }
207 MCE.addRelocation(MachineRelocation(MCE.getCurrentPCOffset(),
208 Reloc, MO.getGlobal(),
209 -((intptr_t)MovePCtoLROffset+4)));
Misha Brukmanc982cfa2004-10-14 06:39:56 +0000210 } else if (MO.isMachineBasicBlock()) {
Misha Brukman3070e2f2004-10-21 01:42:02 +0000211 const BasicBlock *BB = MO.getMachineBasicBlock()->getBasicBlock();
212 unsigned* CurrPC = (unsigned*)(intptr_t)MCE.getCurrentPCValue();
213 BBRefs.push_back(std::make_pair(BB, std::make_pair(CurrPC, &MI)));
Misha Brukmanc982cfa2004-10-14 06:39:56 +0000214 } else if (MO.isConstantPoolIndex()) {
Misha Brukman3070e2f2004-10-21 01:42:02 +0000215 unsigned index = MO.getConstantPoolIndex();
216 rv = MCE.getConstantPoolEntryAddress(index);
Misha Brukmanc982cfa2004-10-14 06:39:56 +0000217 } else {
218 std::cerr << "ERROR: Unknown type of MachineOperand: " << MO << "\n";
219 abort();
220 }
221
Misha Brukmana4df3502004-10-23 18:28:01 +0000222 // Special treatment for global symbols: constants and vars
Chris Lattner7598bba2004-11-23 06:56:31 +0000223 if ((MO.isConstantPoolIndex() || MO.isGlobalAddress()) &&
224 MI.getOpcode() != PPC::CALLpcrel) {
Misha Brukmana4df3502004-10-23 18:28:01 +0000225 unsigned Opcode = MI.getOpcode();
Chris Lattnere94c5172004-11-23 05:59:53 +0000226 assert(MovePCtoLROffset && "MovePCtoLR not seen yet?");
227
Misha Brukmana4df3502004-10-23 18:28:01 +0000228 if (Opcode == PPC::LOADHiAddr) {
Chris Lattnere94c5172004-11-23 05:59:53 +0000229 // LoadHiAddr wants hi16(addr - &MovePCtoLR)
230 rv >>= 16;
Misha Brukmana4df3502004-10-23 18:28:01 +0000231 } else if (Opcode == PPC::LWZ || Opcode == PPC::LA ||
232 Opcode == PPC::LFS || Opcode == PPC::LFD) {
Chris Lattnere94c5172004-11-23 05:59:53 +0000233 // These load opcodes want lo16(addr - &MovePCtoLR)
234 rv &= 0xffff;
Misha Brukmana4df3502004-10-23 18:28:01 +0000235 }
236 }
Misha Brukmanc982cfa2004-10-14 06:39:56 +0000237 return rv;
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000238}
239
Misha Brukmand37faba2004-10-14 06:07:25 +0000240#include "PPC32GenCodeEmitter.inc"
Misha Brukmanb05daff2004-08-09 23:03:59 +0000241