blob: 7a3c550d83d8591e734df3e59218bbc763108e1c [file] [log] [blame]
Andrew Lenharth0934ae02005-07-22 20:52:16 +00001//===-- Alpha/AlphaCodeEmitter.cpp - Convert Alpha code to machine code ---===//
2//
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//
10// This file contains the pass that transforms the Alpha machine instructions
11// into relocatable machine code.
12//
13//===----------------------------------------------------------------------===//
14
15#include "AlphaTargetMachine.h"
16#include "AlphaRelocations.h"
17#include "Alpha.h"
18#include "llvm/PassManager.h"
19#include "llvm/CodeGen/MachineCodeEmitter.h"
20#include "llvm/CodeGen/MachineFunctionPass.h"
21#include "llvm/CodeGen/MachineInstr.h"
22#include "llvm/CodeGen/Passes.h"
23#include "llvm/Function.h"
24#include "llvm/Support/Debug.h"
25#include "llvm/ADT/Statistic.h"
Chris Lattner2c2c6c62006-01-22 23:41:00 +000026#include <iostream>
Andrew Lenharth0934ae02005-07-22 20:52:16 +000027using namespace llvm;
28
29namespace {
30 Statistic<>
31 NumEmitted("alpha-emitter", "Number of machine instructions emitted");
32}
33
34namespace {
35 class AlphaCodeEmitter : public MachineFunctionPass {
36 const AlphaInstrInfo *II;
Evan Cheng55fc2802006-07-25 20:40:54 +000037 TargetMachine &TM;
Andrew Lenharth0934ae02005-07-22 20:52:16 +000038 MachineCodeEmitter &MCE;
Andrew Lenharth0934ae02005-07-22 20:52:16 +000039
40 /// getMachineOpValue - evaluates the MachineOperand of a given MachineInstr
41 ///
42 int getMachineOpValue(MachineInstr &MI, MachineOperand &MO);
43
44 public:
Evan Cheng55fc2802006-07-25 20:40:54 +000045 explicit AlphaCodeEmitter(TargetMachine &tm, MachineCodeEmitter &mce)
46 : II(0), TM(tm), MCE(mce) {}
47 AlphaCodeEmitter(TargetMachine &tm, MachineCodeEmitter &mce,
48 const AlphaInstrInfo& ii)
49 : II(&ii), TM(tm), MCE(mce) {}
Andrew Lenharth0934ae02005-07-22 20:52:16 +000050
51 bool runOnMachineFunction(MachineFunction &MF);
52
53 virtual const char *getPassName() const {
54 return "Alpha Machine Code Emitter";
55 }
56
57 void emitInstruction(const MachineInstr &MI);
58
Andrew Lenharth0934ae02005-07-22 20:52:16 +000059 /// getBinaryCodeForInstr - This function, generated by the
60 /// CodeEmitterGenerator using TableGen, produces the binary encoding for
61 /// machine instructions.
62 ///
63 unsigned getBinaryCodeForInstr(MachineInstr &MI);
64
65 private:
66 void emitBasicBlock(MachineBasicBlock &MBB);
67
68 };
69}
70
71/// createAlphaCodeEmitterPass - Return a pass that emits the collected Alpha code
72/// to the specified MCE object.
Evan Cheng55fc2802006-07-25 20:40:54 +000073FunctionPass *llvm::createAlphaCodeEmitterPass(AlphaTargetMachine &TM,
74 MachineCodeEmitter &MCE) {
75 return new AlphaCodeEmitter(TM, MCE);
Andrew Lenharth0934ae02005-07-22 20:52:16 +000076}
77
78bool AlphaCodeEmitter::runOnMachineFunction(MachineFunction &MF) {
79 II = ((AlphaTargetMachine&)MF.getTarget()).getInstrInfo();
80
Chris Lattner43b429b2006-05-02 18:27:26 +000081 do {
Chris Lattner43b429b2006-05-02 18:27:26 +000082 MCE.startFunction(MF);
Chris Lattner43b429b2006-05-02 18:27:26 +000083 for (MachineFunction::iterator I = MF.begin(), E = MF.end(); I != E; ++I)
84 emitBasicBlock(*I);
85 } while (MCE.finishFunction(MF));
Andrew Lenharth0934ae02005-07-22 20:52:16 +000086
Andrew Lenharth0934ae02005-07-22 20:52:16 +000087 return false;
88}
89
90void AlphaCodeEmitter::emitBasicBlock(MachineBasicBlock &MBB) {
Chris Lattnerb4432f32006-05-03 17:10:41 +000091 MCE.StartMachineBasicBlock(&MBB);
Andrew Lenharth0934ae02005-07-22 20:52:16 +000092 for (MachineBasicBlock::iterator I = MBB.begin(), E = MBB.end();
93 I != E; ++I) {
94 MachineInstr &MI = *I;
95 unsigned Opcode = MI.getOpcode();
96 switch(MI.getOpcode()) {
97 default:
Chris Lattnerd3f0aef2006-05-02 19:14:47 +000098 MCE.emitWordLE(getBinaryCodeForInstr(*I));
Andrew Lenharth0934ae02005-07-22 20:52:16 +000099 break;
100 case Alpha::ALTENT:
101 case Alpha::PCLABEL:
102 case Alpha::MEMLABEL:
Andrew Lenharth50b37842005-11-22 04:20:06 +0000103 case Alpha::IDEF_I:
104 case Alpha::IDEF_F32:
105 case Alpha::IDEF_F64:
Andrew Lenharth0934ae02005-07-22 20:52:16 +0000106 break; //skip these
107 }
108 }
109}
110
111static unsigned getAlphaRegNumber(unsigned Reg) {
112 switch (Reg) {
113 case Alpha::R0 : case Alpha::F0 : return 0;
114 case Alpha::R1 : case Alpha::F1 : return 1;
115 case Alpha::R2 : case Alpha::F2 : return 2;
116 case Alpha::R3 : case Alpha::F3 : return 3;
117 case Alpha::R4 : case Alpha::F4 : return 4;
118 case Alpha::R5 : case Alpha::F5 : return 5;
119 case Alpha::R6 : case Alpha::F6 : return 6;
120 case Alpha::R7 : case Alpha::F7 : return 7;
121 case Alpha::R8 : case Alpha::F8 : return 8;
122 case Alpha::R9 : case Alpha::F9 : return 9;
123 case Alpha::R10 : case Alpha::F10 : return 10;
124 case Alpha::R11 : case Alpha::F11 : return 11;
125 case Alpha::R12 : case Alpha::F12 : return 12;
126 case Alpha::R13 : case Alpha::F13 : return 13;
127 case Alpha::R14 : case Alpha::F14 : return 14;
128 case Alpha::R15 : case Alpha::F15 : return 15;
129 case Alpha::R16 : case Alpha::F16 : return 16;
130 case Alpha::R17 : case Alpha::F17 : return 17;
131 case Alpha::R18 : case Alpha::F18 : return 18;
132 case Alpha::R19 : case Alpha::F19 : return 19;
133 case Alpha::R20 : case Alpha::F20 : return 20;
134 case Alpha::R21 : case Alpha::F21 : return 21;
135 case Alpha::R22 : case Alpha::F22 : return 22;
136 case Alpha::R23 : case Alpha::F23 : return 23;
137 case Alpha::R24 : case Alpha::F24 : return 24;
138 case Alpha::R25 : case Alpha::F25 : return 25;
139 case Alpha::R26 : case Alpha::F26 : return 26;
140 case Alpha::R27 : case Alpha::F27 : return 27;
141 case Alpha::R28 : case Alpha::F28 : return 28;
142 case Alpha::R29 : case Alpha::F29 : return 29;
143 case Alpha::R30 : case Alpha::F30 : return 30;
144 case Alpha::R31 : case Alpha::F31 : return 31;
145 default:
146 assert(0 && "Unhandled reg");
147 abort();
148 }
149}
150
151int AlphaCodeEmitter::getMachineOpValue(MachineInstr &MI, MachineOperand &MO) {
152
153 int rv = 0; // Return value; defaults to 0 for unhandled cases
154 // or things that get fixed up later by the JIT.
155
156 if (MO.isRegister()) {
157 rv = getAlphaRegNumber(MO.getReg());
158 } else if (MO.isImmediate()) {
159 rv = MO.getImmedValue();
Jeff Cohen00b168892005-07-27 06:12:32 +0000160 } else if (MO.isGlobalAddress() || MO.isExternalSymbol()
Andrew Lenharth0934ae02005-07-22 20:52:16 +0000161 || MO.isConstantPoolIndex()) {
162 DEBUG(std::cerr << MO << " is a relocated op for " << MI << "\n";);
Jeff Cohen00b168892005-07-27 06:12:32 +0000163 bool isExternal = MO.isExternalSymbol() ||
164 (MO.isGlobalAddress() &&
Andrew Lenharth0934ae02005-07-22 20:52:16 +0000165 ( MO.getGlobal()->hasWeakLinkage() ||
166 MO.getGlobal()->isExternal()) );
167 unsigned Reloc = 0;
168 int Offset = 0;
Andrew Lenhartha4433e12005-07-28 12:45:20 +0000169 bool useGOT = false;
Andrew Lenharth0934ae02005-07-22 20:52:16 +0000170 switch (MI.getOpcode()) {
Andrew Lenharth98169be2005-07-28 18:14:47 +0000171 case Alpha::BSR:
172 Reloc = Alpha::reloc_bsr;
173 break;
Andrew Lenharth0934ae02005-07-22 20:52:16 +0000174 case Alpha::LDLr:
175 case Alpha::LDQr:
176 case Alpha::LDBUr:
177 case Alpha::LDWUr:
178 case Alpha::LDSr:
179 case Alpha::LDTr:
180 case Alpha::LDAr:
Andrew Lenharth81b5a3c2005-11-16 21:15:53 +0000181 case Alpha::STQr:
182 case Alpha::STLr:
183 case Alpha::STWr:
184 case Alpha::STBr:
185 case Alpha::STSr:
186 case Alpha::STTr:
Andrew Lenharth0934ae02005-07-22 20:52:16 +0000187 Reloc = Alpha::reloc_gprellow;
188 break;
189 case Alpha::LDAHr:
190 Reloc = Alpha::reloc_gprelhigh;
191 break;
192 case Alpha::LDQl:
193 Reloc = Alpha::reloc_literal;
Andrew Lenhartha4433e12005-07-28 12:45:20 +0000194 useGOT = true;
Andrew Lenharth0934ae02005-07-22 20:52:16 +0000195 break;
196 case Alpha::LDAg:
197 case Alpha::LDAHg:
198 Reloc = Alpha::reloc_gpdist;
199 Offset = MI.getOperand(3).getImmedValue();
200 break;
201 default:
202 assert(0 && "unknown relocatable instruction");
203 abort();
204 }
205 if (MO.isGlobalAddress())
Chris Lattner5a032de2006-05-03 20:30:20 +0000206 MCE.addRelocation(MachineRelocation::getGV(MCE.getCurrentPCOffset(),
Andrew Lenharth0934ae02005-07-22 20:52:16 +0000207 Reloc, MO.getGlobal(), Offset,
Andrew Lenhartha4433e12005-07-28 12:45:20 +0000208 false, useGOT));
Andrew Lenharth0934ae02005-07-22 20:52:16 +0000209 else if (MO.isExternalSymbol())
Chris Lattner5a032de2006-05-03 20:30:20 +0000210 MCE.addRelocation(MachineRelocation::getExtSym(MCE.getCurrentPCOffset(),
Andrew Lenharth0934ae02005-07-22 20:52:16 +0000211 Reloc, MO.getSymbolName(), Offset,
212 true));
213 else
Chris Lattner5a032de2006-05-03 20:30:20 +0000214 MCE.addRelocation(MachineRelocation::getConstPool(MCE.getCurrentPCOffset(),
Jeff Cohen00b168892005-07-27 06:12:32 +0000215 Reloc, MO.getConstantPoolIndex(),
Andrew Lenharth0934ae02005-07-22 20:52:16 +0000216 Offset));
217 } else if (MO.isMachineBasicBlock()) {
Evan Cheng55fc2802006-07-25 20:40:54 +0000218 TM.getJITInfo()->addBBRef(MO.getMachineBasicBlock(),
219 MCE.getCurrentPCValue());
Andrew Lenharth0934ae02005-07-22 20:52:16 +0000220 }else {
221 std::cerr << "ERROR: Unknown type of MachineOperand: " << MO << "\n";
222 abort();
223 }
224
225 return rv;
226}
227
228
229#include "AlphaGenCodeEmitter.inc"
230