Be crazy and assert in case of unsupported modifier passed.
[oota-llvm.git] / lib / Target / MSP430 / AsmPrinter / MSP430InstPrinter.cpp
1 //===-- MSP430InstPrinter.cpp - Convert MSP430 MCInst to assembly syntax --===//
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 class prints an MSP430 MCInst to a .s file.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #define DEBUG_TYPE "asm-printer"
15 #include "MSP430InstrInfo.h"
16 #include "MSP430InstPrinter.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 "MSP430GenInstrNames.inc"
23 using namespace llvm;
24
25
26 // Include the auto-generated portion of the assembly writer.
27 #define MachineInstr MCInst
28 #define MSP430AsmPrinter MSP430InstPrinter  // FIXME: REMOVE.
29 #define NO_ASM_WRITER_BOILERPLATE
30 #include "MSP430GenAsmWriter.inc"
31 #undef MachineInstr
32 #undef MSP430AsmPrinter
33
34 void MSP430InstPrinter::printInst(const MCInst *MI) {
35   printInstruction(MI);
36 }
37
38 void MSP430InstPrinter::printPCRelImmOperand(const MCInst *MI, unsigned OpNo) {
39   const MCOperand &Op = MI->getOperand(OpNo);
40   if (Op.isImm())
41     O << Op.getImm();
42   else {
43     assert(Op.isExpr() && "unknown pcrel immediate operand");
44     Op.getExpr()->print(O, &MAI);
45   }
46 }
47
48 void MSP430InstPrinter::printOperand(const MCInst *MI, unsigned OpNo,
49                                      const char *Modifier) {
50   assert((Modifier == 0 || Modifier[0] == 0) && "No modifiers supported");
51   const MCOperand &Op = MI->getOperand(OpNo);
52   if (Op.isReg()) {
53     O << getRegisterName(Op.getReg());
54   } else if (Op.isImm()) {
55     O << '#' << Op.getImm();
56   } else {
57     assert(Op.isExpr() && "unknown operand kind in printOperand");
58     O << '#';
59     Op.getExpr()->print(O, &MAI);
60   }
61 }
62
63 void MSP430InstPrinter::printSrcMemOperand(const MCInst *MI, unsigned OpNo,
64                                            const char *Modifier) {
65   const MCOperand &Base = MI->getOperand(OpNo);
66   const MCOperand &Disp = MI->getOperand(OpNo+1);
67
68   // FIXME: move global to displacement field!
69   if (Base.isExpr()) {
70     O << '&';
71     Base.getExpr()->print(O, &MAI);
72   } else if (Disp.isImm() && !Base.isReg())
73     printOperand(MI, OpNo);
74   else if (Base.isReg()) {
75     if (Disp.getImm()) {
76       O << Disp.getImm() << '(';
77       printOperand(MI, OpNo);
78       O << ')';
79     } else {
80       O << '@';
81       printOperand(MI, OpNo);
82     }
83   } else {
84     Base.dump();
85     Disp.dump();
86     llvm_unreachable("Unsupported memory operand");
87   }
88 }
89
90 void MSP430InstPrinter::printCCOperand(const MCInst *MI, unsigned OpNo) {
91   unsigned CC = MI->getOperand(OpNo).getImm();
92
93   switch (CC) {
94   default:
95    llvm_unreachable("Unsupported CC code");
96    break;
97   case MSP430::COND_E:
98    O << "eq";
99    break;
100   case MSP430::COND_NE:
101    O << "ne";
102    break;
103   case MSP430::COND_HS:
104    O << "hs";
105    break;
106   case MSP430::COND_LO:
107    O << "lo";
108    break;
109   case MSP430::COND_GE:
110    O << "ge";
111    break;
112   case MSP430::COND_L:
113    O << 'l';
114    break;
115   }
116 }