1 //===-- X86ATTInstPrinter.cpp - AT&T assembly instruction printing --------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file includes code for rendering MCInst instances as AT&T-style
13 //===----------------------------------------------------------------------===//
15 #define DEBUG_TYPE "asm-printer"
16 #include "X86ATTInstPrinter.h"
17 #include "X86InstComments.h"
18 #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/Format.h"
23 #include "llvm/Support/FormattedStream.h"
24 #include "X86GenInstrNames.inc"
27 // Include the auto-generated portion of the assembly writer.
28 #define GET_INSTRUCTION_NAME
29 #include "X86GenAsmWriter.inc"
31 void X86ATTInstPrinter::printInst(const MCInst
*MI
, raw_ostream
&OS
) {
32 printInstruction(MI
, OS
);
34 // If verbose assembly is enabled, we can print some informative comments.
36 EmitAnyX86InstComments(MI
, *CommentStream
, getRegisterName
);
38 StringRef
X86ATTInstPrinter::getOpcodeName(unsigned Opcode
) const {
39 return getInstructionName(Opcode
);
43 void X86ATTInstPrinter::printSSECC(const MCInst
*MI
, unsigned Op
,
45 switch (MI
->getOperand(Op
).getImm()) {
46 default: assert(0 && "Invalid ssecc argument!");
47 case 0: O
<< "eq"; break;
48 case 1: O
<< "lt"; break;
49 case 2: O
<< "le"; break;
50 case 3: O
<< "unord"; break;
51 case 4: O
<< "neq"; break;
52 case 5: O
<< "nlt"; break;
53 case 6: O
<< "nle"; break;
54 case 7: O
<< "ord"; break;
58 /// print_pcrel_imm - This is used to print an immediate value that ends up
59 /// being encoded as a pc-relative value (e.g. for jumps and calls). These
60 /// print slightly differently than normal immediates. For example, a $ is not
62 void X86ATTInstPrinter::print_pcrel_imm(const MCInst
*MI
, unsigned OpNo
,
64 const MCOperand
&Op
= MI
->getOperand(OpNo
);
66 // Print this as a signed 32-bit value.
67 O
<< (int)Op
.getImm();
69 assert(Op
.isExpr() && "unknown pcrel immediate operand");
74 void X86ATTInstPrinter::printOperand(const MCInst
*MI
, unsigned OpNo
,
76 const MCOperand
&Op
= MI
->getOperand(OpNo
);
78 O
<< '%' << getRegisterName(Op
.getReg());
79 } else if (Op
.isImm()) {
80 O
<< '$' << Op
.getImm();
82 if (CommentStream
&& (Op
.getImm() > 255 || Op
.getImm() < -256))
83 *CommentStream
<< format("imm = 0x%llX\n", (long long)Op
.getImm());
86 assert(Op
.isExpr() && "unknown operand kind in printOperand");
87 O
<< '$' << *Op
.getExpr();
91 void X86ATTInstPrinter::printMemReference(const MCInst
*MI
, unsigned Op
,
93 const MCOperand
&BaseReg
= MI
->getOperand(Op
);
94 const MCOperand
&IndexReg
= MI
->getOperand(Op
+2);
95 const MCOperand
&DispSpec
= MI
->getOperand(Op
+3);
96 const MCOperand
&SegReg
= MI
->getOperand(Op
+4);
98 // If this has a segment register, print it.
99 if (SegReg
.getReg()) {
100 printOperand(MI
, Op
+4, O
);
104 if (DispSpec
.isImm()) {
105 int64_t DispVal
= DispSpec
.getImm();
106 if (DispVal
|| (!IndexReg
.getReg() && !BaseReg
.getReg()))
109 assert(DispSpec
.isExpr() && "non-immediate displacement for LEA?");
110 O
<< *DispSpec
.getExpr();
113 if (IndexReg
.getReg() || BaseReg
.getReg()) {
115 if (BaseReg
.getReg())
116 printOperand(MI
, Op
, O
);
118 if (IndexReg
.getReg()) {
120 printOperand(MI
, Op
+2, O
);
121 unsigned ScaleVal
= MI
->getOperand(Op
+1).getImm();
123 O
<< ',' << ScaleVal
;