blob: ff87960d27d917f55645b686c0e4f0dd9186a67b [file] [log] [blame]
Chris Lattnerfadc83c2009-06-19 00:47:59 +00001//===-- X86ATTInstPrinter.cpp - AT&T assembly instruction printing --------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file includes code for rendering MCInst instances as AT&T-style
11// assembly.
12//
13//===----------------------------------------------------------------------===//
14
15#define DEBUG_TYPE "asm-printer"
16#include "llvm/MC/MCInst.h"
17#include "X86ATTAsmPrinter.h"
Chris Lattneraf76e592009-08-22 20:48:53 +000018#include "llvm/MC/MCAsmInfo.h"
Torok Edwinab7c09b2009-07-08 18:01:40 +000019#include "llvm/Support/ErrorHandling.h"
David Greene71847812009-07-14 20:18:05 +000020#include "llvm/Support/FormattedStream.h"
Chris Lattnerfadc83c2009-06-19 00:47:59 +000021using namespace llvm;
22
Chris Lattnerd5fb7902009-06-19 23:59:57 +000023// Include the auto-generated portion of the assembly writer.
24#define MachineInstr MCInst
25#define NO_ASM_WRITER_BOILERPLATE
26#include "X86GenAsmWriter.inc"
27#undef MachineInstr
28
29void X86ATTAsmPrinter::printSSECC(const MCInst *MI, unsigned Op) {
Chris Lattnerc1243062009-06-20 07:03:18 +000030 switch (MI->getOperand(Op).getImm()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000031 default: llvm_unreachable("Invalid ssecc argument!");
Chris Lattnerf38c03af2009-06-20 00:49:26 +000032 case 0: O << "eq"; break;
33 case 1: O << "lt"; break;
34 case 2: O << "le"; break;
35 case 3: O << "unord"; break;
36 case 4: O << "neq"; break;
37 case 5: O << "nlt"; break;
38 case 6: O << "nle"; break;
39 case 7: O << "ord"; break;
Chris Lattnerd5fb7902009-06-19 23:59:57 +000040 }
41}
42
43
44void X86ATTAsmPrinter::printPICLabel(const MCInst *MI, unsigned Op) {
Torok Edwinc23197a2009-07-14 16:55:14 +000045 llvm_unreachable("This is only used for MOVPC32r,"
Torok Edwin481d15a2009-07-14 12:22:58 +000046 "should lower before asm printing!");
Chris Lattnerd5fb7902009-06-19 23:59:57 +000047}
48
49
Chris Lattner7680e732009-06-20 19:34:09 +000050/// print_pcrel_imm - This is used to print an immediate value that ends up
51/// being encoded as a pc-relative value. These print slightly differently, for
52/// example, a $ is not emitted.
53void X86ATTAsmPrinter::print_pcrel_imm(const MCInst *MI, unsigned OpNo) {
54 const MCOperand &Op = MI->getOperand(OpNo);
55
56 if (Op.isImm())
57 O << Op.getImm();
Daniel Dunbar61466c52009-08-14 03:42:12 +000058 else if (Op.isMCValue())
59 Op.getMCValue().print(O);
Chris Lattner7680e732009-06-20 19:34:09 +000060 else if (Op.isMBBLabel())
61 // FIXME: Keep in sync with printBasicBlockLabel. printBasicBlockLabel
62 // should eventually call into this code, not the other way around.
63 O << TAI->getPrivateGlobalPrefix() << "BB" << Op.getMBBLabelFunction()
64 << '_' << Op.getMBBLabelBlock();
65 else
Torok Edwinc23197a2009-07-14 16:55:14 +000066 llvm_unreachable("Unknown pcrel immediate operand");
Chris Lattner7680e732009-06-20 19:34:09 +000067}
68
69
Chris Lattnerd5fb7902009-06-19 23:59:57 +000070void X86ATTAsmPrinter::printOperand(const MCInst *MI, unsigned OpNo,
Chris Lattner18c59872009-06-27 04:16:01 +000071 const char *Modifier) {
Chris Lattnerc1243062009-06-20 07:03:18 +000072 assert(Modifier == 0 && "Modifiers should not be used");
Chris Lattnerf38c03af2009-06-20 00:49:26 +000073
74 const MCOperand &Op = MI->getOperand(OpNo);
75 if (Op.isReg()) {
76 O << '%';
77 unsigned Reg = Op.getReg();
78#if 0
79 if (Modifier && strncmp(Modifier, "subreg", strlen("subreg")) == 0) {
Owen Andersone50ed302009-08-10 22:56:29 +000080 EVT VT = (strcmp(Modifier+6,"64") == 0) ?
81 EVT::i64 : ((strcmp(Modifier+6, "32") == 0) ? EVT::i32 :
82 ((strcmp(Modifier+6,"16") == 0) ? EVT::i16 : EVT::i8));
Chris Lattnerf38c03af2009-06-20 00:49:26 +000083 Reg = getX86SubSuperRegister(Reg, VT);
84 }
85#endif
86 O << TRI->getAsmName(Reg);
87 return;
88 } else if (Op.isImm()) {
Chris Lattner2f429e52009-06-21 01:48:49 +000089 //if (!Modifier || (strcmp(Modifier, "debug") && strcmp(Modifier, "mem")))
Chris Lattnerf38c03af2009-06-20 00:49:26 +000090 O << '$';
91 O << Op.getImm();
92 return;
Daniel Dunbar61466c52009-08-14 03:42:12 +000093 } else if (Op.isMCValue()) {
94 O << '$';
95 Op.getMCValue().print(O);
96 return;
Chris Lattnerf38c03af2009-06-20 00:49:26 +000097 }
98
99 O << "<<UNKNOWN OPERAND KIND>>";
Chris Lattnerd5fb7902009-06-19 23:59:57 +0000100}
101
Chris Lattnerc1243062009-06-20 07:03:18 +0000102void X86ATTAsmPrinter::printLeaMemReference(const MCInst *MI, unsigned Op) {
Chris Lattnerc1243062009-06-20 07:03:18 +0000103
Chris Lattnerf38c03af2009-06-20 00:49:26 +0000104 const MCOperand &BaseReg = MI->getOperand(Op);
105 const MCOperand &IndexReg = MI->getOperand(Op+2);
106 const MCOperand &DispSpec = MI->getOperand(Op+3);
107
Chris Lattnerf38c03af2009-06-20 00:49:26 +0000108 if (DispSpec.isImm()) {
109 int64_t DispVal = DispSpec.getImm();
110 if (DispVal || (!IndexReg.getReg() && !BaseReg.getReg()))
111 O << DispVal;
Daniel Dunbar61466c52009-08-14 03:42:12 +0000112 } else if (DispSpec.isMCValue()) {
113 DispSpec.getMCValue().print(O);
Chris Lattnerf38c03af2009-06-20 00:49:26 +0000114 } else {
Torok Edwinc23197a2009-07-14 16:55:14 +0000115 llvm_unreachable("non-immediate displacement for LEA?");
Chris Lattnerf38c03af2009-06-20 00:49:26 +0000116 //assert(DispSpec.isGlobal() || DispSpec.isCPI() ||
117 // DispSpec.isJTI() || DispSpec.isSymbol());
Chris Lattner18c59872009-06-27 04:16:01 +0000118 //printOperand(MI, Op+3, "mem");
Chris Lattnerf38c03af2009-06-20 00:49:26 +0000119 }
120
121 if (IndexReg.getReg() || BaseReg.getReg()) {
Chris Lattnerf38c03af2009-06-20 00:49:26 +0000122 // There are cases where we can end up with ESP/RSP in the indexreg slot.
123 // If this happens, swap the base/index register to support assemblers that
124 // don't work when the index is *SP.
125 // FIXME: REMOVE THIS.
Chris Lattnerdc479f62009-06-20 07:59:10 +0000126 assert(IndexReg.getReg() != X86::ESP && IndexReg.getReg() != X86::RSP);
Chris Lattnerf38c03af2009-06-20 00:49:26 +0000127
128 O << '(';
129 if (BaseReg.getReg())
Chris Lattnerdc479f62009-06-20 07:59:10 +0000130 printOperand(MI, Op);
Chris Lattnerf38c03af2009-06-20 00:49:26 +0000131
132 if (IndexReg.getReg()) {
133 O << ',';
Chris Lattnerdc479f62009-06-20 07:59:10 +0000134 printOperand(MI, Op+2);
Chris Lattner7f8217f2009-06-20 08:13:12 +0000135 unsigned ScaleVal = MI->getOperand(Op+1).getImm();
136 if (ScaleVal != 1)
Chris Lattnerf38c03af2009-06-20 00:49:26 +0000137 O << ',' << ScaleVal;
138 }
139 O << ')';
140 }
Chris Lattnerd5fb7902009-06-19 23:59:57 +0000141}
142
Chris Lattnerc1243062009-06-20 07:03:18 +0000143void X86ATTAsmPrinter::printMemReference(const MCInst *MI, unsigned Op) {
Chris Lattnerad48be02009-06-20 00:50:32 +0000144 const MCOperand &Segment = MI->getOperand(Op+4);
Chris Lattnerf38c03af2009-06-20 00:49:26 +0000145 if (Segment.getReg()) {
Chris Lattnerc1243062009-06-20 07:03:18 +0000146 printOperand(MI, Op+4);
Chris Lattnerf38c03af2009-06-20 00:49:26 +0000147 O << ':';
148 }
Chris Lattnerc1243062009-06-20 07:03:18 +0000149 printLeaMemReference(MI, Op);
Chris Lattnerd5fb7902009-06-19 23:59:57 +0000150}