Fix part 1 of pr4682. PICADD is a 16-bit instruction even in thumb2 mode.
[llvm/avr.git] / lib / Target / X86 / AsmPrinter / X86ATTInstPrinter.cpp
blob23244792d1bc5991c8d435b1819b1c6c54285331
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.
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"
21 using namespace llvm;
23 // 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
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);
56 if (Op.isImm())
57 O << Op.getImm();
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();
63 else
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);
73 if (Op.isReg()) {
74 O << '%';
75 unsigned Reg = Op.getReg();
76 #if 0
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);
83 #endif
84 O << TRI->getAsmName(Reg);
85 return;
86 } else if (Op.isImm()) {
87 //if (!Modifier || (strcmp(Modifier, "debug") && strcmp(Modifier, "mem")))
88 O << '$';
89 O << Op.getImm();
90 return;
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()))
105 O << DispVal;
106 } else {
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);
120 O << '(';
121 if (BaseReg.getReg())
122 printOperand(MI, Op);
124 if (IndexReg.getReg()) {
125 O << ',';
126 printOperand(MI, Op+2);
127 unsigned ScaleVal = MI->getOperand(Op+1).getImm();
128 if (ScaleVal != 1)
129 O << ',' << ScaleVal;
131 O << ')';
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);
139 O << ':';
141 printLeaMemReference(MI, Op);