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 "llvm/MC/MCInst.h"
17 #include "X86ATTAsmPrinter.h"
18 #include "llvm/Target/TargetAsmInfo.h"
19 #include "llvm/Support/ErrorHandling.h"
20 #include "llvm/Support/FormattedStream.h"
23 // Include the auto-generated portion of the assembly writer.
24 #define MachineInstr MCInst
25 #define NO_ASM_WRITER_BOILERPLATE
26 #include "X86GenAsmWriter.inc"
29 void X86ATTAsmPrinter::printSSECC(const MCInst
*MI
, unsigned Op
) {
30 switch (MI
->getOperand(Op
).getImm()) {
31 default: llvm_unreachable("Invalid ssecc argument!");
32 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;
44 void X86ATTAsmPrinter::printPICLabel(const MCInst
*MI
, unsigned Op
) {
45 llvm_unreachable("This is only used for MOVPC32r,"
46 "should lower before asm printing!");
50 /// 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.
53 void X86ATTAsmPrinter::print_pcrel_imm(const MCInst
*MI
, unsigned OpNo
) {
54 const MCOperand
&Op
= MI
->getOperand(OpNo
);
58 else if (Op
.isMBBLabel())
59 // FIXME: Keep in sync with printBasicBlockLabel. printBasicBlockLabel
60 // should eventually call into this code, not the other way around.
61 O
<< TAI
->getPrivateGlobalPrefix() << "BB" << Op
.getMBBLabelFunction()
62 << '_' << Op
.getMBBLabelBlock();
64 llvm_unreachable("Unknown pcrel immediate operand");
68 void X86ATTAsmPrinter::printOperand(const MCInst
*MI
, unsigned OpNo
,
69 const char *Modifier
) {
70 assert(Modifier
== 0 && "Modifiers should not be used");
72 const MCOperand
&Op
= MI
->getOperand(OpNo
);
75 unsigned Reg
= Op
.getReg();
77 if (Modifier
&& strncmp(Modifier
, "subreg", strlen("subreg")) == 0) {
78 MVT VT
= (strcmp(Modifier
+6,"64") == 0) ?
79 MVT::i64
: ((strcmp(Modifier
+6, "32") == 0) ? MVT::i32
:
80 ((strcmp(Modifier
+6,"16") == 0) ? MVT::i16
: MVT::i8
));
81 Reg
= getX86SubSuperRegister(Reg
, VT
);
84 O
<< TRI
->getAsmName(Reg
);
86 } else if (Op
.isImm()) {
87 //if (!Modifier || (strcmp(Modifier, "debug") && strcmp(Modifier, "mem")))
93 O
<< "<<UNKNOWN OPERAND KIND>>";
96 void X86ATTAsmPrinter::printLeaMemReference(const MCInst
*MI
, unsigned Op
) {
98 const MCOperand
&BaseReg
= MI
->getOperand(Op
);
99 const MCOperand
&IndexReg
= MI
->getOperand(Op
+2);
100 const MCOperand
&DispSpec
= MI
->getOperand(Op
+3);
102 if (DispSpec
.isImm()) {
103 int64_t DispVal
= DispSpec
.getImm();
104 if (DispVal
|| (!IndexReg
.getReg() && !BaseReg
.getReg()))
107 llvm_unreachable("non-immediate displacement for LEA?");
108 //assert(DispSpec.isGlobal() || DispSpec.isCPI() ||
109 // DispSpec.isJTI() || DispSpec.isSymbol());
110 //printOperand(MI, Op+3, "mem");
113 if (IndexReg
.getReg() || BaseReg
.getReg()) {
114 // There are cases where we can end up with ESP/RSP in the indexreg slot.
115 // If this happens, swap the base/index register to support assemblers that
116 // don't work when the index is *SP.
117 // FIXME: REMOVE THIS.
118 assert(IndexReg
.getReg() != X86::ESP
&& IndexReg
.getReg() != X86::RSP
);
121 if (BaseReg
.getReg())
122 printOperand(MI
, Op
);
124 if (IndexReg
.getReg()) {
126 printOperand(MI
, Op
+2);
127 unsigned ScaleVal
= MI
->getOperand(Op
+1).getImm();
129 O
<< ',' << ScaleVal
;
135 void X86ATTAsmPrinter::printMemReference(const MCInst
*MI
, unsigned Op
) {
136 const MCOperand
&Segment
= MI
->getOperand(Op
+4);
137 if (Segment
.getReg()) {
138 printOperand(MI
, Op
+4);
141 printLeaMemReference(MI
, Op
);