blob: 385172dc0de36b6d3648e0dbb47f8e23dee4123f [file] [log] [blame]
Chris Lattner72614082002-10-25 22:55:53 +00001//===-- X86/Printer.cpp - Convert X86 code to human readable rep. ---------===//
2//
3// This file contains a printer that converts from our internal representation
4// of LLVM code to a nice human readable form that is suitable for debuggging.
5//
6//===----------------------------------------------------------------------===//
7
8#include "X86.h"
Brian Gaeke6559bb92002-11-14 22:32:30 +00009#include "X86InstrInfo.h"
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000010#include "llvm/Pass.h"
Brian Gaeke6559bb92002-11-14 22:32:30 +000011#include "llvm/Function.h"
12#include "llvm/Target/TargetMachine.h"
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000013#include "llvm/CodeGen/MachineFunction.h"
Chris Lattnerdbb61c62002-11-17 22:53:13 +000014#include "llvm/CodeGen/MachineInstr.h"
Chris Lattner233ad712002-11-21 01:33:44 +000015#include "Support/Statistic.h"
Chris Lattner72614082002-10-25 22:55:53 +000016
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000017namespace {
18 struct Printer : public FunctionPass {
19 TargetMachine &TM;
20 std::ostream &O;
Chris Lattner72614082002-10-25 22:55:53 +000021
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000022 Printer(TargetMachine &tm, std::ostream &o) : TM(tm), O(o) {}
23
Chris Lattnerf0eb7be2002-12-15 21:13:40 +000024 virtual const char *getPassName() const {
25 return "X86 Assembly Printer";
26 }
27
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000028 bool runOnFunction(Function &F);
29 };
30}
31
Chris Lattnerdbb61c62002-11-17 22:53:13 +000032/// createX86CodePrinterPass - Print out the specified machine code function to
33/// the specified stream. This function should work regardless of whether or
34/// not the function is in SSA form or not.
35///
36Pass *createX86CodePrinterPass(TargetMachine &TM, std::ostream &O) {
37 return new Printer(TM, O);
38}
39
40
Brian Gaeke6559bb92002-11-14 22:32:30 +000041/// runOnFunction - This uses the X86InstructionInfo::print method
42/// to print assembly for each instruction.
43bool Printer::runOnFunction (Function & F)
44{
45 static unsigned bbnumber = 0;
46 MachineFunction & MF = MachineFunction::get (&F);
47 const MachineInstrInfo & MII = TM.getInstrInfo ();
Brian Gaeke6559bb92002-11-14 22:32:30 +000048
Brian Gaeke6559bb92002-11-14 22:32:30 +000049 // Print out labels for the function.
50 O << "\t.globl\t" << F.getName () << "\n";
51 O << "\t.type\t" << F.getName () << ", @function\n";
52 O << F.getName () << ":\n";
53
54 // Print out code for the function.
55 for (MachineFunction::const_iterator bb_i = MF.begin (), bb_e = MF.end ();
56 bb_i != bb_e; ++bb_i)
57 {
58 // Print a label for the basic block.
59 O << ".BB" << bbnumber++ << ":\n";
60 for (MachineBasicBlock::const_iterator i_i = bb_i->begin (), i_e =
61 bb_i->end (); i_i != i_e; ++i_i)
62 {
63 // Print the assembly for the instruction.
64 O << "\t";
Chris Lattner927dd092002-11-17 23:20:37 +000065 MII.print(*i_i, O, TM);
Brian Gaeke6559bb92002-11-14 22:32:30 +000066 }
67 }
68
69 // We didn't modify anything.
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000070 return false;
71}
72
Chris Lattner3d3067b2002-11-21 20:44:15 +000073static bool isScale(const MachineOperand &MO) {
Chris Lattnerd9096832002-12-15 08:01:39 +000074 return MO.isImmediate() &&
Chris Lattner3d3067b2002-11-21 20:44:15 +000075 (MO.getImmedValue() == 1 || MO.getImmedValue() == 2 ||
76 MO.getImmedValue() == 4 || MO.getImmedValue() == 8);
77}
78
79static bool isMem(const MachineInstr *MI, unsigned Op) {
80 return Op+4 <= MI->getNumOperands() &&
Chris Lattnerd9096832002-12-15 08:01:39 +000081 MI->getOperand(Op ).isRegister() &&isScale(MI->getOperand(Op+1)) &&
82 MI->getOperand(Op+2).isRegister() &&MI->getOperand(Op+3).isImmediate();
Chris Lattner3d3067b2002-11-21 20:44:15 +000083}
84
Chris Lattnerf9f60882002-11-18 06:56:51 +000085static void printOp(std::ostream &O, const MachineOperand &MO,
86 const MRegisterInfo &RI) {
87 switch (MO.getType()) {
88 case MachineOperand::MO_VirtualRegister:
Chris Lattnerac573f62002-12-04 17:32:52 +000089 if (Value *V = MO.getVRegValueOrNull()) {
Chris Lattnerdbf30f72002-12-04 06:45:19 +000090 O << "<" << V->getName() << ">";
91 return;
92 }
Misha Brukmane1f0d812002-11-20 18:56:41 +000093 case MachineOperand::MO_MachineRegister:
Chris Lattnerf9f60882002-11-18 06:56:51 +000094 if (MO.getReg() < MRegisterInfo::FirstVirtualRegister)
95 O << RI.get(MO.getReg()).Name;
96 else
97 O << "%reg" << MO.getReg();
98 return;
Chris Lattner77875d82002-11-21 02:00:20 +000099
100 case MachineOperand::MO_SignExtendedImmed:
101 case MachineOperand::MO_UnextendedImmed:
102 O << (int)MO.getImmedValue();
103 return;
Chris Lattnerf8bafe82002-12-01 23:25:59 +0000104 case MachineOperand::MO_PCRelativeDisp:
Chris Lattnerea1ddab2002-12-03 06:34:06 +0000105 O << "<" << MO.getVRegValue()->getName() << ">";
Chris Lattnerf8bafe82002-12-01 23:25:59 +0000106 return;
Chris Lattnerf9f60882002-11-18 06:56:51 +0000107 default:
108 O << "<unknown op ty>"; return;
109 }
110}
111
Brian Gaeke86764d72002-12-05 08:30:40 +0000112static const std::string sizePtr (const MachineInstrDescriptor &Desc) {
Chris Lattnera0f38c82002-12-13 03:51:55 +0000113 switch (Desc.TSFlags & X86II::ArgMask) {
114 case X86II::Arg8: return "BYTE PTR";
115 case X86II::Arg16: return "WORD PTR";
116 case X86II::Arg32: return "DWORD PTR";
117 case X86II::Arg64: return "QWORD PTR";
118 case X86II::Arg80: return "XWORD PTR";
119 case X86II::Arg128: return "128BIT PTR"; // dunno what the real one is
Brian Gaeke86764d72002-12-05 08:30:40 +0000120 default: return "<SIZE?> PTR"; // crack being smoked
121 }
122}
123
Chris Lattner3d3067b2002-11-21 20:44:15 +0000124static void printMemReference(std::ostream &O, const MachineInstr *MI,
125 unsigned Op, const MRegisterInfo &RI) {
126 assert(isMem(MI, Op) && "Invalid memory reference!");
127 const MachineOperand &BaseReg = MI->getOperand(Op);
128 const MachineOperand &Scale = MI->getOperand(Op+1);
129 const MachineOperand &IndexReg = MI->getOperand(Op+2);
130 const MachineOperand &Disp = MI->getOperand(Op+3);
131
132 O << "[";
133 bool NeedPlus = false;
134 if (BaseReg.getReg()) {
135 printOp(O, BaseReg, RI);
136 NeedPlus = true;
137 }
138
139 if (IndexReg.getReg()) {
140 if (NeedPlus) O << " + ";
Brian Gaeke95780cc2002-12-13 07:56:18 +0000141 if (Scale.getImmedValue() != 1)
142 O << Scale.getImmedValue() << "*";
Chris Lattner3d3067b2002-11-21 20:44:15 +0000143 printOp(O, IndexReg, RI);
144 NeedPlus = true;
145 }
146
147 if (Disp.getImmedValue()) {
148 if (NeedPlus) O << " + ";
149 printOp(O, Disp, RI);
150 }
151 O << "]";
152}
153
Chris Lattnerdbb61c62002-11-17 22:53:13 +0000154// print - Print out an x86 instruction in intel syntax
Chris Lattner927dd092002-11-17 23:20:37 +0000155void X86InstrInfo::print(const MachineInstr *MI, std::ostream &O,
156 const TargetMachine &TM) const {
Chris Lattnerf9f60882002-11-18 06:56:51 +0000157 unsigned Opcode = MI->getOpcode();
158 const MachineInstrDescriptor &Desc = get(Opcode);
159
Chris Lattner3faae2d2002-12-13 09:59:26 +0000160 if (Opcode == X86::PHI) {
161 printOp(O, MI->getOperand(0), RI);
162 O << " = phi ";
163 for (unsigned i = 1, e = MI->getNumOperands(); i != e; i+=2) {
164 if (i != 1) O << ", ";
165 O << "[";
166 printOp(O, MI->getOperand(i), RI);
167 O << ", ";
168 printOp(O, MI->getOperand(i+1), RI);
169 O << "]";
170 }
171 O << "\n";
172 return;
173 }
174
175
Chris Lattnerf9f60882002-11-18 06:56:51 +0000176 switch (Desc.TSFlags & X86II::FormMask) {
Chris Lattnerf9f60882002-11-18 06:56:51 +0000177 case X86II::RawFrm:
Chris Lattnerf8bafe82002-12-01 23:25:59 +0000178 // The accepted forms of Raw instructions are:
179 // 1. nop - No operand required
180 // 2. jmp foo - PC relative displacement operand
181 //
182 assert(MI->getNumOperands() == 0 ||
Chris Lattnerd9096832002-12-15 08:01:39 +0000183 (MI->getNumOperands() == 1 && MI->getOperand(0).isPCRelativeDisp())&&
Chris Lattnerf8bafe82002-12-01 23:25:59 +0000184 "Illegal raw instruction!");
Chris Lattnerf9f60882002-11-18 06:56:51 +0000185 O << getName(MI->getOpCode()) << " ";
186
Chris Lattnerf8bafe82002-12-01 23:25:59 +0000187 if (MI->getNumOperands() == 1) {
188 printOp(O, MI->getOperand(0), RI);
Chris Lattnerf9f60882002-11-18 06:56:51 +0000189 }
190 O << "\n";
191 return;
192
Chris Lattner77875d82002-11-21 02:00:20 +0000193 case X86II::AddRegFrm: {
194 // There are currently two forms of acceptable AddRegFrm instructions.
195 // Either the instruction JUST takes a single register (like inc, dec, etc),
196 // or it takes a register and an immediate of the same size as the register
Chris Lattnerdbf30f72002-12-04 06:45:19 +0000197 // (move immediate f.e.). Note that this immediate value might be stored as
198 // an LLVM value, to represent, for example, loading the address of a global
Chris Lattnerfacc9fb2002-12-23 23:46:00 +0000199 // into a register. The initial register might be duplicated if this is a
200 // M_2_ADDR_REG instruction
Chris Lattner77875d82002-11-21 02:00:20 +0000201 //
Chris Lattnerd9096832002-12-15 08:01:39 +0000202 assert(MI->getOperand(0).isRegister() &&
Chris Lattner77875d82002-11-21 02:00:20 +0000203 (MI->getNumOperands() == 1 ||
Chris Lattnerdbf30f72002-12-04 06:45:19 +0000204 (MI->getNumOperands() == 2 &&
Chris Lattner6d669442002-12-04 17:28:40 +0000205 (MI->getOperand(1).getVRegValueOrNull() ||
Chris Lattnerfacc9fb2002-12-23 23:46:00 +0000206 MI->getOperand(1).isImmediate() ||
207 MI->getOperand(1).isRegister()))) &&
Chris Lattner77875d82002-11-21 02:00:20 +0000208 "Illegal form for AddRegFrm instruction!");
Chris Lattnerf9f60882002-11-18 06:56:51 +0000209
Chris Lattner77875d82002-11-21 02:00:20 +0000210 unsigned Reg = MI->getOperand(0).getReg();
Chris Lattner77875d82002-11-21 02:00:20 +0000211
Chris Lattner77875d82002-11-21 02:00:20 +0000212 O << getName(MI->getOpCode()) << " ";
213 printOp(O, MI->getOperand(0), RI);
Chris Lattnerfacc9fb2002-12-23 23:46:00 +0000214 if (MI->getNumOperands() == 2 && !MI->getOperand(1).isRegister()) {
Chris Lattner77875d82002-11-21 02:00:20 +0000215 O << ", ";
Chris Lattner675dd2c2002-11-21 17:09:01 +0000216 printOp(O, MI->getOperand(1), RI);
Chris Lattner77875d82002-11-21 02:00:20 +0000217 }
218 O << "\n";
219 return;
220 }
Chris Lattner233ad712002-11-21 01:33:44 +0000221 case X86II::MRMDestReg: {
Chris Lattnerf9f60882002-11-18 06:56:51 +0000222 // There are two acceptable forms of MRMDestReg instructions, those with 3
223 // and 2 operands:
224 //
225 // 3 Operands: in this form, the first two registers (the destination, and
226 // the first operand) should be the same, post register allocation. The 3rd
227 // operand is an additional input. This should be for things like add
228 // instructions.
229 //
230 // 2 Operands: this is for things like mov that do not read a second input
231 //
Chris Lattnerd9096832002-12-15 08:01:39 +0000232 assert(MI->getOperand(0).isRegister() &&
Chris Lattner644e1ab2002-11-21 00:30:01 +0000233 (MI->getNumOperands() == 2 ||
Chris Lattnerd9096832002-12-15 08:01:39 +0000234 (MI->getNumOperands() == 3 && MI->getOperand(1).isRegister())) &&
235 MI->getOperand(MI->getNumOperands()-1).isRegister()
Misha Brukmane1f0d812002-11-20 18:56:41 +0000236 && "Bad format for MRMDestReg!");
Chris Lattnerf9f60882002-11-18 06:56:51 +0000237 if (MI->getNumOperands() == 3 &&
238 MI->getOperand(0).getReg() != MI->getOperand(1).getReg())
239 O << "**";
240
Chris Lattnerf9f60882002-11-18 06:56:51 +0000241 O << getName(MI->getOpCode()) << " ";
242 printOp(O, MI->getOperand(0), RI);
243 O << ", ";
244 printOp(O, MI->getOperand(MI->getNumOperands()-1), RI);
245 O << "\n";
246 return;
Chris Lattner233ad712002-11-21 01:33:44 +0000247 }
Chris Lattner18042332002-11-21 21:03:39 +0000248
249 case X86II::MRMDestMem: {
250 // These instructions are the same as MRMDestReg, but instead of having a
251 // register reference for the mod/rm field, it's a memory reference.
252 //
253 assert(isMem(MI, 0) && MI->getNumOperands() == 4+1 &&
Chris Lattnerd9096832002-12-15 08:01:39 +0000254 MI->getOperand(4).isRegister() && "Bad format for MRMDestMem!");
Chris Lattner18042332002-11-21 21:03:39 +0000255
Brian Gaeke86764d72002-12-05 08:30:40 +0000256 O << getName(MI->getOpCode()) << " " << sizePtr (Desc) << " ";
Chris Lattner18042332002-11-21 21:03:39 +0000257 printMemReference(O, MI, 0, RI);
258 O << ", ";
259 printOp(O, MI->getOperand(4), RI);
260 O << "\n";
261 return;
262 }
263
Chris Lattner233ad712002-11-21 01:33:44 +0000264 case X86II::MRMSrcReg: {
Chris Lattner644e1ab2002-11-21 00:30:01 +0000265 // There is a two forms that are acceptable for MRMSrcReg instructions,
266 // those with 3 and 2 operands:
267 //
268 // 3 Operands: in this form, the last register (the second input) is the
269 // ModR/M input. The first two operands should be the same, post register
270 // allocation. This is for things like: add r32, r/m32
271 //
272 // 2 Operands: this is for things like mov that do not read a second input
273 //
Chris Lattnerd9096832002-12-15 08:01:39 +0000274 assert(MI->getOperand(0).isRegister() &&
275 MI->getOperand(1).isRegister() &&
Chris Lattner644e1ab2002-11-21 00:30:01 +0000276 (MI->getNumOperands() == 2 ||
Chris Lattnerd9096832002-12-15 08:01:39 +0000277 (MI->getNumOperands() == 3 && MI->getOperand(2).isRegister()))
Chris Lattner644e1ab2002-11-21 00:30:01 +0000278 && "Bad format for MRMDestReg!");
279 if (MI->getNumOperands() == 3 &&
280 MI->getOperand(0).getReg() != MI->getOperand(1).getReg())
281 O << "**";
282
Chris Lattner644e1ab2002-11-21 00:30:01 +0000283 O << getName(MI->getOpCode()) << " ";
284 printOp(O, MI->getOperand(0), RI);
285 O << ", ";
286 printOp(O, MI->getOperand(MI->getNumOperands()-1), RI);
287 O << "\n";
288 return;
Chris Lattner233ad712002-11-21 01:33:44 +0000289 }
Chris Lattner675dd2c2002-11-21 17:09:01 +0000290
Chris Lattner3d3067b2002-11-21 20:44:15 +0000291 case X86II::MRMSrcMem: {
292 // These instructions are the same as MRMSrcReg, but instead of having a
293 // register reference for the mod/rm field, it's a memory reference.
Chris Lattner18042332002-11-21 21:03:39 +0000294 //
Chris Lattnerd9096832002-12-15 08:01:39 +0000295 assert(MI->getOperand(0).isRegister() &&
Chris Lattner3d3067b2002-11-21 20:44:15 +0000296 (MI->getNumOperands() == 1+4 && isMem(MI, 1)) ||
Chris Lattnerd9096832002-12-15 08:01:39 +0000297 (MI->getNumOperands() == 2+4 && MI->getOperand(1).isRegister() &&
Chris Lattner3d3067b2002-11-21 20:44:15 +0000298 isMem(MI, 2))
299 && "Bad format for MRMDestReg!");
300 if (MI->getNumOperands() == 2+4 &&
301 MI->getOperand(0).getReg() != MI->getOperand(1).getReg())
302 O << "**";
303
Chris Lattner3d3067b2002-11-21 20:44:15 +0000304 O << getName(MI->getOpCode()) << " ";
305 printOp(O, MI->getOperand(0), RI);
Brian Gaeke86764d72002-12-05 08:30:40 +0000306 O << ", " << sizePtr (Desc) << " ";
Chris Lattner3d3067b2002-11-21 20:44:15 +0000307 printMemReference(O, MI, MI->getNumOperands()-4, RI);
308 O << "\n";
309 return;
310 }
311
Chris Lattner675dd2c2002-11-21 17:09:01 +0000312 case X86II::MRMS0r: case X86II::MRMS1r:
313 case X86II::MRMS2r: case X86II::MRMS3r:
314 case X86II::MRMS4r: case X86II::MRMS5r:
315 case X86II::MRMS6r: case X86II::MRMS7r: {
Chris Lattner675dd2c2002-11-21 17:09:01 +0000316 // In this form, the following are valid formats:
317 // 1. sete r
Chris Lattner1d53ce42002-11-21 23:30:00 +0000318 // 2. cmp reg, immediate
Chris Lattner675dd2c2002-11-21 17:09:01 +0000319 // 2. shl rdest, rinput <implicit CL or 1>
320 // 3. sbb rdest, rinput, immediate [rdest = rinput]
321 //
322 assert(MI->getNumOperands() > 0 && MI->getNumOperands() < 4 &&
Chris Lattnerd9096832002-12-15 08:01:39 +0000323 MI->getOperand(0).isRegister() && "Bad MRMSxR format!");
Chris Lattner1d53ce42002-11-21 23:30:00 +0000324 assert((MI->getNumOperands() != 2 ||
Chris Lattnerd9096832002-12-15 08:01:39 +0000325 MI->getOperand(1).isRegister() || MI->getOperand(1).isImmediate())&&
Chris Lattner675dd2c2002-11-21 17:09:01 +0000326 "Bad MRMSxR format!");
Chris Lattner1d53ce42002-11-21 23:30:00 +0000327 assert((MI->getNumOperands() < 3 ||
Chris Lattnerd9096832002-12-15 08:01:39 +0000328 (MI->getOperand(1).isRegister() && MI->getOperand(2).isImmediate())) &&
Chris Lattner675dd2c2002-11-21 17:09:01 +0000329 "Bad MRMSxR format!");
330
Chris Lattnerd9096832002-12-15 08:01:39 +0000331 if (MI->getNumOperands() > 1 && MI->getOperand(1).isRegister() &&
Chris Lattner675dd2c2002-11-21 17:09:01 +0000332 MI->getOperand(0).getReg() != MI->getOperand(1).getReg())
333 O << "**";
334
Chris Lattner675dd2c2002-11-21 17:09:01 +0000335 O << getName(MI->getOpCode()) << " ";
336 printOp(O, MI->getOperand(0), RI);
Chris Lattnerd9096832002-12-15 08:01:39 +0000337 if (MI->getOperand(MI->getNumOperands()-1).isImmediate()) {
Chris Lattner675dd2c2002-11-21 17:09:01 +0000338 O << ", ";
Chris Lattner1d53ce42002-11-21 23:30:00 +0000339 printOp(O, MI->getOperand(MI->getNumOperands()-1), RI);
Chris Lattner675dd2c2002-11-21 17:09:01 +0000340 }
341 O << "\n";
342
343 return;
344 }
345
Chris Lattnerf9f60882002-11-18 06:56:51 +0000346 default:
Chris Lattner77875d82002-11-21 02:00:20 +0000347 O << "\t\t\t-"; MI->print(O, TM); break;
Chris Lattnerf9f60882002-11-18 06:56:51 +0000348 }
Chris Lattner72614082002-10-25 22:55:53 +0000349}