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