blob: c606112c2c6732b0524f7b53ff07247f2d215ce8 [file] [log] [blame]
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +00001//===-- 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/ADT/Statistic.h"
31#include "llvm/Support/Compiler.h"
32#include "llvm/Support/Mangler.h"
33#include "llvm/Support/raw_ostream.h"
34
35using namespace llvm;
36
37STATISTIC(EmittedInsts, "Number of machine instrs printed");
38
39namespace {
40 class VISIBILITY_HIDDEN MSP430AsmPrinter : public AsmPrinter {
41 public:
42 MSP430AsmPrinter(raw_ostream &O, MSP430TargetMachine &TM,
43 const TargetAsmInfo *TAI, bool Fast, bool Verbose)
44 : AsmPrinter(O, TM, TAI, Fast, Verbose) {}
45
46 virtual const char *getPassName() const {
47 return "MSP430 Assembly Printer";
48 }
49
Anton Korobeynikov36b6e532009-05-03 13:06:03 +000050 void printOperand(const MachineInstr *MI, int OpNum,
51 const char* Modifier = 0);
52 void printSrcMemOperand(const MachineInstr *MI, int OpNum,
53 const char* Modifier = 0);
Anton Korobeynikov8b528e52009-05-03 13:12:23 +000054 void printCCOperand(const MachineInstr *MI, int OpNum);
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000055 bool printInstruction(const MachineInstr *MI); // autogenerated.
56 void printMachineInstruction(const MachineInstr * MI);
Anton Korobeynikov6130fc82009-05-03 13:17:11 +000057
58 void emitFunctionHeader(const MachineFunction &MF);
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000059 bool runOnMachineFunction(MachineFunction &F);
60 bool doInitialization(Module &M);
61 bool doFinalization(Module &M);
62
63 void getAnalysisUsage(AnalysisUsage &AU) const {
64 AsmPrinter::getAnalysisUsage(AU);
65 AU.setPreservesAll();
66 }
67 };
68} // end of anonymous namespace
69
70#include "MSP430GenAsmWriter.inc"
71
72/// createMSP430CodePrinterPass - Returns a pass that prints the MSP430
73/// assembly code for a MachineFunction to the given output stream,
74/// using the given target machine description. This should work
75/// regardless of whether the function is in SSA form.
76///
77FunctionPass *llvm::createMSP430CodePrinterPass(raw_ostream &o,
78 MSP430TargetMachine &tm,
79 bool fast, bool verbose) {
80 return new MSP430AsmPrinter(o, tm, tm.getTargetAsmInfo(), fast, verbose);
81}
82
83bool MSP430AsmPrinter::doInitialization(Module &M) {
84 Mang = new Mangler(M, "", TAI->getPrivateGlobalPrefix());
85 return false; // success
86}
87
88
89bool MSP430AsmPrinter::doFinalization(Module &M) {
90 return AsmPrinter::doFinalization(M);
91}
92
Anton Korobeynikov6130fc82009-05-03 13:17:11 +000093void MSP430AsmPrinter::emitFunctionHeader(const MachineFunction &MF) {
94 const Function *F = MF.getFunction();
95
96 SwitchToSection(TAI->SectionForGlobal(F));
97
98 unsigned FnAlign = 4;
99 if (F->hasFnAttr(Attribute::OptimizeForSize))
100 FnAlign = 1;
101
102 EmitAlignment(FnAlign, F);
103
104 switch (F->getLinkage()) {
105 default: assert(0 && "Unknown linkage type!");
106 case Function::InternalLinkage: // Symbols default to internal.
107 case Function::PrivateLinkage:
108 break;
109 case Function::ExternalLinkage:
110 O << "\t.globl\t" << CurrentFnName << '\n';
111 break;
112 case Function::LinkOnceAnyLinkage:
113 case Function::LinkOnceODRLinkage:
114 case Function::WeakAnyLinkage:
115 case Function::WeakODRLinkage:
116 O << "\t.weak\t" << CurrentFnName << '\n';
117 break;
118 }
119
120 printVisibility(CurrentFnName, F->getVisibility());
121
122 O << "\t.type\t" << CurrentFnName << ",@function\n"
123 << CurrentFnName << ":\n";
124}
125
Anton Korobeynikov09c42f52009-05-03 13:01:41 +0000126bool MSP430AsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Anton Korobeynikov6130fc82009-05-03 13:17:11 +0000127 SetupMachineFunction(MF);
Anton Korobeynikov1394db02009-05-03 13:17:31 +0000128 O << "\n\n";
Anton Korobeynikov6130fc82009-05-03 13:17:11 +0000129
130 // Print the 'header' of function
131 emitFunctionHeader(MF);
132
Anton Korobeynikov09c42f52009-05-03 13:01:41 +0000133 // Print out code for the function.
134 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
135 I != E; ++I) {
136 // Print a label for the basic block.
Anton Korobeynikov1394db02009-05-03 13:17:31 +0000137 if (!VerboseAsm && (I->pred_empty() || I->isOnlyReachableByFallthrough())) {
138 // This is an entry block or a block that's only reachable via a
139 // fallthrough edge. In non-VerboseAsm mode, don't print the label.
140 } else {
141 printBasicBlockLabel(I, true, true, VerboseAsm);
Anton Korobeynikov09c42f52009-05-03 13:01:41 +0000142 O << '\n';
143 }
144
145 for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
Anton Korobeynikov1394db02009-05-03 13:17:31 +0000146 II != E; ++II)
Anton Korobeynikov09c42f52009-05-03 13:01:41 +0000147 // Print the assembly for the instruction.
Anton Korobeynikov09c42f52009-05-03 13:01:41 +0000148 printMachineInstruction(II);
Anton Korobeynikov09c42f52009-05-03 13:01:41 +0000149 }
150
Anton Korobeynikov6130fc82009-05-03 13:17:11 +0000151 if (TAI->hasDotTypeDotSizeDirective())
152 O << "\t.size\t" << CurrentFnName << ", .-" << CurrentFnName << '\n';
153
154 O.flush();
155
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +0000156 // We didn't modify anything
157 return false;
158}
159
Anton Korobeynikov1df221f2009-05-03 13:02:04 +0000160void MSP430AsmPrinter::printMachineInstruction(const MachineInstr *MI) {
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +0000161 ++EmittedInsts;
162
163 // Call the autogenerated instruction printer routines.
164 if (printInstruction(MI))
165 return;
166
167 assert(0 && "Should not happen");
168}
Anton Korobeynikov1df221f2009-05-03 13:02:04 +0000169
Anton Korobeynikov36b6e532009-05-03 13:06:03 +0000170void MSP430AsmPrinter::printOperand(const MachineInstr *MI, int OpNum,
171 const char* Modifier) {
Anton Korobeynikov1df221f2009-05-03 13:02:04 +0000172 const MachineOperand &MO = MI->getOperand(OpNum);
173 switch (MO.getType()) {
174 case MachineOperand::MO_Register:
Anton Korobeynikov3c2684d2009-05-03 13:08:13 +0000175 assert (TargetRegisterInfo::isPhysicalRegister(MO.getReg()) &&
176 "Virtual registers should be already mapped!");
177 O << TM.getRegisterInfo()->get(MO.getReg()).AsmName;
178 return;
Anton Korobeynikov1df221f2009-05-03 13:02:04 +0000179 case MachineOperand::MO_Immediate:
Anton Korobeynikov36b6e532009-05-03 13:06:03 +0000180 if (!Modifier || strcmp(Modifier, "nohash"))
181 O << '#';
182 O << MO.getImm();
Anton Korobeynikov3c2684d2009-05-03 13:08:13 +0000183 return;
Anton Korobeynikov1df221f2009-05-03 13:02:04 +0000184 case MachineOperand::MO_MachineBasicBlock:
185 printBasicBlockLabel(MO.getMBB());
Anton Korobeynikov3c2684d2009-05-03 13:08:13 +0000186 return;
187 case MachineOperand::MO_GlobalAddress: {
188 bool isMemOp = Modifier && !strcmp(Modifier, "mem");
189 bool isCallOp = Modifier && !strcmp(Modifier, "call");
190 std::string Name = Mang->getValueName(MO.getGlobal());
191 assert(MO.getOffset() == 0 && "No offsets allowed!");
192
193 if (isCallOp)
194 O << '#';
195 else if (isMemOp)
196 O << '&';
197
198 O << Name;
199
200 return;
201 }
Anton Korobeynikov5d59f682009-05-03 13:14:46 +0000202 case MachineOperand::MO_ExternalSymbol: {
203 bool isCallOp = Modifier && !strcmp(Modifier, "call");
204 std::string Name(TAI->getGlobalPrefix());
205 Name += MO.getSymbolName();
206 if (isCallOp)
207 O << '#';
208 O << Name;
209 return;
210 }
Anton Korobeynikov1df221f2009-05-03 13:02:04 +0000211 default:
212 assert(0 && "Not implemented yet!");
213 }
214}
Anton Korobeynikov36b6e532009-05-03 13:06:03 +0000215
216void MSP430AsmPrinter::printSrcMemOperand(const MachineInstr *MI, int OpNum,
217 const char* Modifier) {
Anton Korobeynikovcf14ae52009-05-03 13:09:40 +0000218 const MachineOperand &Base = MI->getOperand(OpNum);
219 const MachineOperand &Disp = MI->getOperand(OpNum+1);
Anton Korobeynikov36b6e532009-05-03 13:06:03 +0000220
Anton Korobeynikovcf14ae52009-05-03 13:09:40 +0000221 if (Base.isGlobal())
Anton Korobeynikov1deea5f2009-05-03 13:09:10 +0000222 printOperand(MI, OpNum, "mem");
223 else if (Disp.isImm() && !Base.getReg())
224 printOperand(MI, OpNum);
225 else if (Base.getReg()) {
226 if (Disp.getImm()) {
Anton Korobeynikovcf14ae52009-05-03 13:09:40 +0000227 printOperand(MI, OpNum + 1, "nohash");
Anton Korobeynikov1deea5f2009-05-03 13:09:10 +0000228 O << '(';
Anton Korobeynikovcf14ae52009-05-03 13:09:40 +0000229 printOperand(MI, OpNum);
Anton Korobeynikov1deea5f2009-05-03 13:09:10 +0000230 O << ')';
231 } else {
232 O << '@';
Anton Korobeynikovcf14ae52009-05-03 13:09:40 +0000233 printOperand(MI, OpNum);
Anton Korobeynikov1deea5f2009-05-03 13:09:10 +0000234 }
235 } else
236 assert(0 && "Unsupported memory operand");
Anton Korobeynikov36b6e532009-05-03 13:06:03 +0000237}
238
Anton Korobeynikov8b528e52009-05-03 13:12:23 +0000239void MSP430AsmPrinter::printCCOperand(const MachineInstr *MI, int OpNum) {
240 unsigned CC = MI->getOperand(OpNum).getImm();
241
242 switch (CC) {
243 default:
244 assert(0 && "Unsupported CC code");
245 break;
246 case MSP430::COND_E:
Anton Korobeynikovd9e89f62009-05-03 13:16:54 +0000247 O << "eq";
Anton Korobeynikov8b528e52009-05-03 13:12:23 +0000248 break;
249 case MSP430::COND_NE:
250 O << "ne";
251 break;
252 case MSP430::COND_HS:
253 O << "hs";
254 break;
255 case MSP430::COND_LO:
256 O << "lo";
257 break;
258 case MSP430::COND_GE:
259 O << "ge";
260 break;
261 case MSP430::COND_L:
262 O << 'l';
263 break;
264 }
265}