untangle a TargetAsmInfo hack where ELFTargetAsmInfo would create a
[oota-llvm.git] / lib / Target / MSP430 / MSP430AsmPrinter.cpp
1 //===-- MSP430AsmPrinter.cpp - MSP430 LLVM assembly writer ----------------===//
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 contains a printer that converts from our internal representation
11 // of machine-dependent LLVM code to the MSP430 assembly language.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #define DEBUG_TYPE "asm-printer"
16 #include "MSP430.h"
17 #include "MSP430InstrInfo.h"
18 #include "MSP430TargetMachine.h"
19 #include "llvm/Constants.h"
20 #include "llvm/DerivedTypes.h"
21 #include "llvm/Module.h"
22 #include "llvm/CodeGen/AsmPrinter.h"
23 #include "llvm/CodeGen/DwarfWriter.h"
24 #include "llvm/CodeGen/MachineModuleInfo.h"
25 #include "llvm/CodeGen/MachineFunctionPass.h"
26 #include "llvm/CodeGen/MachineConstantPool.h"
27 #include "llvm/CodeGen/MachineInstr.h"
28 #include "llvm/Target/TargetAsmInfo.h"
29 #include "llvm/Target/TargetData.h"
30 #include "llvm/Target/TargetRegistry.h"
31 #include "llvm/ADT/Statistic.h"
32 #include "llvm/Support/Compiler.h"
33 #include "llvm/Support/FormattedStream.h"
34 #include "llvm/Support/Mangler.h"
35 #include "llvm/Support/ErrorHandling.h"
36
37 using namespace llvm;
38
39 STATISTIC(EmittedInsts, "Number of machine instrs printed");
40
41 namespace {
42   class VISIBILITY_HIDDEN MSP430AsmPrinter : public AsmPrinter {
43   public:
44     MSP430AsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
45                      const TargetAsmInfo *TAI, bool V)
46       : AsmPrinter(O, TM, TAI, V) {}
47
48     virtual const char *getPassName() const {
49       return "MSP430 Assembly Printer";
50     }
51
52     void printOperand(const MachineInstr *MI, int OpNum,
53                       const char* Modifier = 0);
54     void printSrcMemOperand(const MachineInstr *MI, int OpNum,
55                             const char* Modifier = 0);
56     void printCCOperand(const MachineInstr *MI, int OpNum);
57     bool printInstruction(const MachineInstr *MI);  // autogenerated.
58     void printMachineInstruction(const MachineInstr * MI);
59
60     void emitFunctionHeader(const MachineFunction &MF);
61     bool runOnMachineFunction(MachineFunction &F);
62
63     virtual void PrintGlobalVariable(const GlobalVariable *GV) {
64       // FIXME: No support for global variables?
65     }
66
67     void getAnalysisUsage(AnalysisUsage &AU) const {
68       AsmPrinter::getAnalysisUsage(AU);
69       AU.setPreservesAll();
70     }
71   };
72 } // end of anonymous namespace
73
74 #include "MSP430GenAsmWriter.inc"
75
76
77 void MSP430AsmPrinter::emitFunctionHeader(const MachineFunction &MF) {
78   const Function *F = MF.getFunction();
79
80   SwitchToSection(TAI->SectionForGlobal(F));
81
82   unsigned FnAlign = MF.getAlignment();
83   EmitAlignment(FnAlign, F);
84
85   switch (F->getLinkage()) {
86   default: llvm_unreachable("Unknown linkage type!");
87   case Function::InternalLinkage:  // Symbols default to internal.
88   case Function::PrivateLinkage:
89   case Function::LinkerPrivateLinkage:
90     break;
91   case Function::ExternalLinkage:
92     O << "\t.globl\t" << CurrentFnName << '\n';
93     break;
94   case Function::LinkOnceAnyLinkage:
95   case Function::LinkOnceODRLinkage:
96   case Function::WeakAnyLinkage:
97   case Function::WeakODRLinkage:
98     O << "\t.weak\t" << CurrentFnName << '\n';
99     break;
100   }
101
102   printVisibility(CurrentFnName, F->getVisibility());
103
104   O << "\t.type\t" << CurrentFnName << ",@function\n"
105     << CurrentFnName << ":\n";
106 }
107
108 bool MSP430AsmPrinter::runOnMachineFunction(MachineFunction &MF) {
109   SetupMachineFunction(MF);
110   O << "\n\n";
111
112   // Print the 'header' of function
113   emitFunctionHeader(MF);
114
115   // Print out code for the function.
116   for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
117        I != E; ++I) {
118     // Print a label for the basic block.
119     if (!VerboseAsm && (I->pred_empty() || I->isOnlyReachableByFallthrough())) {
120       // This is an entry block or a block that's only reachable via a
121       // fallthrough edge. In non-VerboseAsm mode, don't print the label.
122     } else {
123       printBasicBlockLabel(I, true, true, VerboseAsm);
124       O << '\n';
125     }
126
127     for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
128          II != E; ++II)
129       // Print the assembly for the instruction.
130       printMachineInstruction(II);
131   }
132
133   if (TAI->hasDotTypeDotSizeDirective())
134     O << "\t.size\t" << CurrentFnName << ", .-" << CurrentFnName << '\n';
135
136   O.flush();
137
138   // We didn't modify anything
139   return false;
140 }
141
142 void MSP430AsmPrinter::printMachineInstruction(const MachineInstr *MI) {
143   ++EmittedInsts;
144
145   // Call the autogenerated instruction printer routines.
146   if (printInstruction(MI))
147     return;
148
149   llvm_unreachable("Should not happen");
150 }
151
152 void MSP430AsmPrinter::printOperand(const MachineInstr *MI, int OpNum,
153                                     const char* Modifier) {
154   const MachineOperand &MO = MI->getOperand(OpNum);
155   switch (MO.getType()) {
156   case MachineOperand::MO_Register:
157     assert (TargetRegisterInfo::isPhysicalRegister(MO.getReg()) &&
158             "Virtual registers should be already mapped!");
159     O << TM.getRegisterInfo()->get(MO.getReg()).AsmName;
160     return;
161   case MachineOperand::MO_Immediate:
162     if (!Modifier || strcmp(Modifier, "nohash"))
163       O << '#';
164     O << MO.getImm();
165     return;
166   case MachineOperand::MO_MachineBasicBlock:
167     printBasicBlockLabel(MO.getMBB());
168     return;
169   case MachineOperand::MO_GlobalAddress: {
170     bool isMemOp  = Modifier && !strcmp(Modifier, "mem");
171     bool isCallOp = Modifier && !strcmp(Modifier, "call");
172     std::string Name = Mang->getMangledName(MO.getGlobal());
173     assert(MO.getOffset() == 0 && "No offsets allowed!");
174
175     if (isCallOp)
176       O << '#';
177     else if (isMemOp)
178       O << '&';
179
180     O << Name;
181
182     return;
183   }
184   case MachineOperand::MO_ExternalSymbol: {
185     bool isCallOp = Modifier && !strcmp(Modifier, "call");
186     std::string Name(TAI->getGlobalPrefix());
187     Name += MO.getSymbolName();
188     if (isCallOp)
189       O << '#';
190     O << Name;
191     return;
192   }
193   default:
194     llvm_unreachable("Not implemented yet!");
195   }
196 }
197
198 void MSP430AsmPrinter::printSrcMemOperand(const MachineInstr *MI, int OpNum,
199                                           const char* Modifier) {
200   const MachineOperand &Base = MI->getOperand(OpNum);
201   const MachineOperand &Disp = MI->getOperand(OpNum+1);
202
203   if (Base.isGlobal())
204     printOperand(MI, OpNum, "mem");
205   else if (Disp.isImm() && !Base.getReg())
206     printOperand(MI, OpNum);
207   else if (Base.getReg()) {
208     if (Disp.getImm()) {
209       printOperand(MI, OpNum + 1, "nohash");
210       O << '(';
211       printOperand(MI, OpNum);
212       O << ')';
213     } else {
214       O << '@';
215       printOperand(MI, OpNum);
216     }
217   } else
218     llvm_unreachable("Unsupported memory operand");
219 }
220
221 void MSP430AsmPrinter::printCCOperand(const MachineInstr *MI, int OpNum) {
222   unsigned CC = MI->getOperand(OpNum).getImm();
223
224   switch (CC) {
225   default:
226    llvm_unreachable("Unsupported CC code");
227    break;
228   case MSP430::COND_E:
229    O << "eq";
230    break;
231   case MSP430::COND_NE:
232    O << "ne";
233    break;
234   case MSP430::COND_HS:
235    O << "hs";
236    break;
237   case MSP430::COND_LO:
238    O << "lo";
239    break;
240   case MSP430::COND_GE:
241    O << "ge";
242    break;
243   case MSP430::COND_L:
244    O << 'l';
245    break;
246   }
247 }
248
249 extern "C" void LLVMInitializeMSP430Target() { 
250   // Register the target.
251   RegisterTargetMachine<MSP430TargetMachine> X(TheMSP430Target);
252   RegisterAsmPrinter<MSP430AsmPrinter> Y(TheMSP430Target);
253 }