c74b97af308d274bad1a640ec45076a9589d4480
[oota-llvm.git] / lib / Target / X86 / AsmPrinter / X86ATTInstPrinter.cpp
1 //===-- 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 "X86ATTInstPrinter.h"
17 #include "llvm/MC/MCInst.h"
18 #include "llvm/MC/MCAsmInfo.h"
19 #include "llvm/MC/MCExpr.h"
20 #include "llvm/Support/ErrorHandling.h"
21 #include "llvm/Support/FormattedStream.h"
22 #include "X86GenInstrNames.inc"
23 using namespace llvm;
24
25 // Include the auto-generated portion of the assembly writer.
26 #define MachineInstr MCInst
27 #define NO_ASM_WRITER_BOILERPLATE
28 #include "X86GenAsmWriter.inc"
29 #undef MachineInstr
30
31 void X86ATTInstPrinter::printInst(const MCInst *MI) { printInstruction(MI); }
32
33 void X86ATTInstPrinter::printSSECC(const MCInst *MI, unsigned Op) {
34   switch (MI->getOperand(Op).getImm()) {
35   default: llvm_unreachable("Invalid ssecc argument!");
36   case 0: O << "eq"; break;
37   case 1: O << "lt"; break;
38   case 2: O << "le"; break;
39   case 3: O << "unord"; break;
40   case 4: O << "neq"; break;
41   case 5: O << "nlt"; break;
42   case 6: O << "nle"; break;
43   case 7: O << "ord"; break;
44   }
45 }
46
47 /// print_pcrel_imm - This is used to print an immediate value that ends up
48 /// being encoded as a pc-relative value (e.g. for jumps and calls).  These
49 /// print slightly differently than normal immediates.  For example, a $ is not
50 /// emitted.
51 void X86ATTInstPrinter::print_pcrel_imm(const MCInst *MI, unsigned OpNo) {
52   const MCOperand &Op = MI->getOperand(OpNo);
53   if (Op.isImm())
54     // Print this as a signed 32-bit value.
55     O << (int)Op.getImm();
56   else {
57     assert(Op.isExpr() && "unknown pcrel immediate operand");
58     Op.getExpr()->print(O, &MAI);
59   }
60 }
61
62 void X86ATTInstPrinter::printOperand(const MCInst *MI, unsigned OpNo) {
63   
64   const MCOperand &Op = MI->getOperand(OpNo);
65   if (Op.isReg()) {
66     O << '%' << getRegisterName(Op.getReg());
67   } else if (Op.isImm()) {
68     O << '$' << Op.getImm();
69   } else {
70     assert(Op.isExpr() && "unknown operand kind in printOperand");
71     O << '$';
72     Op.getExpr()->print(O, &MAI);
73   }
74 }
75
76 void X86ATTInstPrinter::printLeaMemReference(const MCInst *MI, unsigned Op) {
77   const MCOperand &BaseReg  = MI->getOperand(Op);
78   const MCOperand &IndexReg = MI->getOperand(Op+2);
79   const MCOperand &DispSpec = MI->getOperand(Op+3);
80   
81   if (DispSpec.isImm()) {
82     int64_t DispVal = DispSpec.getImm();
83     if (DispVal || (!IndexReg.getReg() && !BaseReg.getReg()))
84       O << DispVal;
85   } else {
86     assert(DispSpec.isExpr() && "non-immediate displacement for LEA?");
87     DispSpec.getExpr()->print(O, &MAI);
88   }
89   
90   if (IndexReg.getReg() || BaseReg.getReg()) {
91     O << '(';
92     if (BaseReg.getReg())
93       printOperand(MI, Op);
94     
95     if (IndexReg.getReg()) {
96       O << ',';
97       printOperand(MI, Op+2);
98       unsigned ScaleVal = MI->getOperand(Op+1).getImm();
99       if (ScaleVal != 1)
100         O << ',' << ScaleVal;
101     }
102     O << ')';
103   }
104 }
105
106 void X86ATTInstPrinter::printMemReference(const MCInst *MI, unsigned Op) {
107   // If this has a segment register, print it.
108   if (MI->getOperand(Op+4).getReg()) {
109     printOperand(MI, Op+4);
110     O << ':';
111   }
112   printLeaMemReference(MI, Op);
113 }