blob: a553a7c19a057aea506aebc09d6b5541fdc85245 [file] [log] [blame]
Chris Lattnerb3c85472009-09-20 07:28:26 +00001//===-- X86IntelInstPrinter.cpp - AT&T assembly instruction printing ------===//
Chris Lattnere895c612009-09-20 07:17:49 +00002//
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 "X86IntelInstPrinter.h"
Chris Lattner6aa928d2010-08-28 20:42:31 +000017#include "X86InstComments.h"
Chris Lattnere895c612009-09-20 07:17:49 +000018#include "llvm/MC/MCInst.h"
19#include "llvm/MC/MCAsmInfo.h"
20#include "llvm/MC/MCExpr.h"
21#include "llvm/Support/ErrorHandling.h"
22#include "llvm/Support/FormattedStream.h"
23#include "X86GenInstrNames.inc"
24using namespace llvm;
25
26// Include the auto-generated portion of the assembly writer.
Chris Lattner0d7b0aa2010-02-11 22:57:32 +000027#define GET_INSTRUCTION_NAME
Chris Lattnere895c612009-09-20 07:17:49 +000028#include "X86GenAsmWriter1.inc"
Chris Lattnere895c612009-09-20 07:17:49 +000029
Chris Lattnerd3740872010-04-04 05:04:31 +000030void X86IntelInstPrinter::printInst(const MCInst *MI, raw_ostream &OS) {
31 printInstruction(MI, OS);
Chris Lattner6aa928d2010-08-28 20:42:31 +000032
33 // If verbose assembly is enabled, we can print some informative comments.
34 if (CommentStream)
35 EmitAnyX86InstComments(MI, *CommentStream, getRegisterName);
Chris Lattner35c33bd2010-04-04 04:47:45 +000036}
Chris Lattner0d7b0aa2010-02-11 22:57:32 +000037StringRef X86IntelInstPrinter::getOpcodeName(unsigned Opcode) const {
38 return getInstructionName(Opcode);
39}
Chris Lattnere895c612009-09-20 07:17:49 +000040
Chris Lattner35c33bd2010-04-04 04:47:45 +000041void X86IntelInstPrinter::printSSECC(const MCInst *MI, unsigned Op,
42 raw_ostream &O) {
Chris Lattnere895c612009-09-20 07:17:49 +000043 switch (MI->getOperand(Op).getImm()) {
Chris Lattner35c33bd2010-04-04 04:47:45 +000044 default: assert(0 && "Invalid ssecc argument!");
Chris Lattnere895c612009-09-20 07:17:49 +000045 case 0: O << "eq"; break;
46 case 1: O << "lt"; break;
47 case 2: O << "le"; break;
48 case 3: O << "unord"; break;
49 case 4: O << "neq"; break;
50 case 5: O << "nlt"; break;
51 case 6: O << "nle"; break;
52 case 7: O << "ord"; break;
53 }
54}
55
Chris Lattnere895c612009-09-20 07:17:49 +000056/// print_pcrel_imm - This is used to print an immediate value that ends up
Chris Lattner70576412009-09-20 07:47:59 +000057/// being encoded as a pc-relative value.
Chris Lattner35c33bd2010-04-04 04:47:45 +000058void X86IntelInstPrinter::print_pcrel_imm(const MCInst *MI, unsigned OpNo,
59 raw_ostream &O) {
Chris Lattnere895c612009-09-20 07:17:49 +000060 const MCOperand &Op = MI->getOperand(OpNo);
61 if (Op.isImm())
62 O << Op.getImm();
63 else {
64 assert(Op.isExpr() && "unknown pcrel immediate operand");
Chris Lattner8cb9a3b2010-01-18 00:37:40 +000065 O << *Op.getExpr();
Chris Lattnere895c612009-09-20 07:17:49 +000066 }
67}
68
69static void PrintRegName(raw_ostream &O, StringRef RegName) {
70 for (unsigned i = 0, e = RegName.size(); i != e; ++i)
71 O << (char)toupper(RegName[i]);
72}
73
74void X86IntelInstPrinter::printOperand(const MCInst *MI, unsigned OpNo,
Chris Lattner35c33bd2010-04-04 04:47:45 +000075 raw_ostream &O) {
Chris Lattnere895c612009-09-20 07:17:49 +000076 const MCOperand &Op = MI->getOperand(OpNo);
77 if (Op.isReg()) {
78 PrintRegName(O, getRegisterName(Op.getReg()));
79 } else if (Op.isImm()) {
80 O << Op.getImm();
81 } else {
82 assert(Op.isExpr() && "unknown operand kind in printOperand");
Chris Lattner8cb9a3b2010-01-18 00:37:40 +000083 O << *Op.getExpr();
Chris Lattnere895c612009-09-20 07:17:49 +000084 }
85}
86
Chris Lattner599b5312010-07-08 23:46:44 +000087void X86IntelInstPrinter::printMemReference(const MCInst *MI, unsigned Op,
88 raw_ostream &O) {
Chris Lattnere895c612009-09-20 07:17:49 +000089 const MCOperand &BaseReg = MI->getOperand(Op);
90 unsigned ScaleVal = MI->getOperand(Op+1).getImm();
91 const MCOperand &IndexReg = MI->getOperand(Op+2);
92 const MCOperand &DispSpec = MI->getOperand(Op+3);
Chris Lattner599b5312010-07-08 23:46:44 +000093 const MCOperand &SegReg = MI->getOperand(Op+4);
94
95 // If this has a segment register, print it.
96 if (SegReg.getReg()) {
97 printOperand(MI, Op+4, O);
98 O << ':';
99 }
Chris Lattnere895c612009-09-20 07:17:49 +0000100
101 O << '[';
102
103 bool NeedPlus = false;
104 if (BaseReg.getReg()) {
Chris Lattner35c33bd2010-04-04 04:47:45 +0000105 printOperand(MI, Op, O);
Chris Lattnere895c612009-09-20 07:17:49 +0000106 NeedPlus = true;
107 }
108
109 if (IndexReg.getReg()) {
110 if (NeedPlus) O << " + ";
111 if (ScaleVal != 1)
112 O << ScaleVal << '*';
Chris Lattner35c33bd2010-04-04 04:47:45 +0000113 printOperand(MI, Op+2, O);
Chris Lattnere895c612009-09-20 07:17:49 +0000114 NeedPlus = true;
115 }
116
Chris Lattner599b5312010-07-08 23:46:44 +0000117
Chris Lattnere895c612009-09-20 07:17:49 +0000118 if (!DispSpec.isImm()) {
119 if (NeedPlus) O << " + ";
120 assert(DispSpec.isExpr() && "non-immediate displacement for LEA?");
Chris Lattner8cb9a3b2010-01-18 00:37:40 +0000121 O << *DispSpec.getExpr();
Chris Lattnere895c612009-09-20 07:17:49 +0000122 } else {
123 int64_t DispVal = DispSpec.getImm();
124 if (DispVal || (!IndexReg.getReg() && !BaseReg.getReg())) {
125 if (NeedPlus) {
126 if (DispVal > 0)
127 O << " + ";
128 else {
129 O << " - ";
130 DispVal = -DispVal;
131 }
132 }
133 O << DispVal;
134 }
135 }
136
137 O << ']';
138}