blob: 71b785bb4fe5ff2df6637d5e3f254ef6986e6f6b [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,
Anton Korobeynikov60871cb2009-05-03 13:19:42 +000043 const TargetAsmInfo *TAI,
44 CodeGenOpt::Level OL, bool V)
45 : AsmPrinter(O, TM, TAI, OL, V) {}
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000046
47 virtual const char *getPassName() const {
48 return "MSP430 Assembly Printer";
49 }
50
Anton Korobeynikov36b6e532009-05-03 13:06:03 +000051 void printOperand(const MachineInstr *MI, int OpNum,
52 const char* Modifier = 0);
53 void printSrcMemOperand(const MachineInstr *MI, int OpNum,
54 const char* Modifier = 0);
Anton Korobeynikov8b528e52009-05-03 13:12:23 +000055 void printCCOperand(const MachineInstr *MI, int OpNum);
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000056 bool printInstruction(const MachineInstr *MI); // autogenerated.
57 void printMachineInstruction(const MachineInstr * MI);
Anton Korobeynikov6130fc82009-05-03 13:17:11 +000058
59 void emitFunctionHeader(const MachineFunction &MF);
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000060 bool runOnMachineFunction(MachineFunction &F);
61 bool doInitialization(Module &M);
62 bool doFinalization(Module &M);
63
64 void getAnalysisUsage(AnalysisUsage &AU) const {
65 AsmPrinter::getAnalysisUsage(AU);
66 AU.setPreservesAll();
67 }
68 };
69} // end of anonymous namespace
70
71#include "MSP430GenAsmWriter.inc"
72
73/// createMSP430CodePrinterPass - Returns a pass that prints the MSP430
74/// assembly code for a MachineFunction to the given output stream,
75/// using the given target machine description. This should work
76/// regardless of whether the function is in SSA form.
77///
78FunctionPass *llvm::createMSP430CodePrinterPass(raw_ostream &o,
79 MSP430TargetMachine &tm,
Anton Korobeynikov60871cb2009-05-03 13:19:42 +000080 CodeGenOpt::Level OptLevel,
81 bool verbose) {
82 return new MSP430AsmPrinter(o, tm, tm.getTargetAsmInfo(), OptLevel, verbose);
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000083}
84
85bool MSP430AsmPrinter::doInitialization(Module &M) {
86 Mang = new Mangler(M, "", TAI->getPrivateGlobalPrefix());
87 return false; // success
88}
89
90
91bool MSP430AsmPrinter::doFinalization(Module &M) {
92 return AsmPrinter::doFinalization(M);
93}
94
Anton Korobeynikov6130fc82009-05-03 13:17:11 +000095void MSP430AsmPrinter::emitFunctionHeader(const MachineFunction &MF) {
96 const Function *F = MF.getFunction();
97
98 SwitchToSection(TAI->SectionForGlobal(F));
99
100 unsigned FnAlign = 4;
101 if (F->hasFnAttr(Attribute::OptimizeForSize))
102 FnAlign = 1;
103
104 EmitAlignment(FnAlign, F);
105
106 switch (F->getLinkage()) {
107 default: assert(0 && "Unknown linkage type!");
108 case Function::InternalLinkage: // Symbols default to internal.
109 case Function::PrivateLinkage:
110 break;
111 case Function::ExternalLinkage:
112 O << "\t.globl\t" << CurrentFnName << '\n';
113 break;
114 case Function::LinkOnceAnyLinkage:
115 case Function::LinkOnceODRLinkage:
116 case Function::WeakAnyLinkage:
117 case Function::WeakODRLinkage:
118 O << "\t.weak\t" << CurrentFnName << '\n';
119 break;
120 }
121
122 printVisibility(CurrentFnName, F->getVisibility());
123
124 O << "\t.type\t" << CurrentFnName << ",@function\n"
125 << CurrentFnName << ":\n";
126}
127
Anton Korobeynikov09c42f52009-05-03 13:01:41 +0000128bool MSP430AsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Anton Korobeynikov6130fc82009-05-03 13:17:11 +0000129 SetupMachineFunction(MF);
Anton Korobeynikov1394db02009-05-03 13:17:31 +0000130 O << "\n\n";
Anton Korobeynikov6130fc82009-05-03 13:17:11 +0000131
132 // Print the 'header' of function
133 emitFunctionHeader(MF);
134
Anton Korobeynikov09c42f52009-05-03 13:01:41 +0000135 // Print out code for the function.
136 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
137 I != E; ++I) {
138 // Print a label for the basic block.
Anton Korobeynikov1394db02009-05-03 13:17:31 +0000139 if (!VerboseAsm && (I->pred_empty() || I->isOnlyReachableByFallthrough())) {
140 // This is an entry block or a block that's only reachable via a
141 // fallthrough edge. In non-VerboseAsm mode, don't print the label.
142 } else {
143 printBasicBlockLabel(I, true, true, VerboseAsm);
Anton Korobeynikov09c42f52009-05-03 13:01:41 +0000144 O << '\n';
145 }
146
147 for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
Anton Korobeynikov1394db02009-05-03 13:17:31 +0000148 II != E; ++II)
Anton Korobeynikov09c42f52009-05-03 13:01:41 +0000149 // Print the assembly for the instruction.
Anton Korobeynikov09c42f52009-05-03 13:01:41 +0000150 printMachineInstruction(II);
Anton Korobeynikov09c42f52009-05-03 13:01:41 +0000151 }
152
Anton Korobeynikov6130fc82009-05-03 13:17:11 +0000153 if (TAI->hasDotTypeDotSizeDirective())
154 O << "\t.size\t" << CurrentFnName << ", .-" << CurrentFnName << '\n';
155
156 O.flush();
157
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +0000158 // We didn't modify anything
159 return false;
160}
161
Anton Korobeynikov1df221f2009-05-03 13:02:04 +0000162void MSP430AsmPrinter::printMachineInstruction(const MachineInstr *MI) {
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +0000163 ++EmittedInsts;
164
165 // Call the autogenerated instruction printer routines.
166 if (printInstruction(MI))
167 return;
168
169 assert(0 && "Should not happen");
170}
Anton Korobeynikov1df221f2009-05-03 13:02:04 +0000171
Anton Korobeynikov36b6e532009-05-03 13:06:03 +0000172void MSP430AsmPrinter::printOperand(const MachineInstr *MI, int OpNum,
173 const char* Modifier) {
Anton Korobeynikov1df221f2009-05-03 13:02:04 +0000174 const MachineOperand &MO = MI->getOperand(OpNum);
175 switch (MO.getType()) {
176 case MachineOperand::MO_Register:
Anton Korobeynikov3c2684d2009-05-03 13:08:13 +0000177 assert (TargetRegisterInfo::isPhysicalRegister(MO.getReg()) &&
178 "Virtual registers should be already mapped!");
179 O << TM.getRegisterInfo()->get(MO.getReg()).AsmName;
180 return;
Anton Korobeynikov1df221f2009-05-03 13:02:04 +0000181 case MachineOperand::MO_Immediate:
Anton Korobeynikov36b6e532009-05-03 13:06:03 +0000182 if (!Modifier || strcmp(Modifier, "nohash"))
183 O << '#';
184 O << MO.getImm();
Anton Korobeynikov3c2684d2009-05-03 13:08:13 +0000185 return;
Anton Korobeynikov1df221f2009-05-03 13:02:04 +0000186 case MachineOperand::MO_MachineBasicBlock:
187 printBasicBlockLabel(MO.getMBB());
Anton Korobeynikov3c2684d2009-05-03 13:08:13 +0000188 return;
189 case MachineOperand::MO_GlobalAddress: {
190 bool isMemOp = Modifier && !strcmp(Modifier, "mem");
191 bool isCallOp = Modifier && !strcmp(Modifier, "call");
192 std::string Name = Mang->getValueName(MO.getGlobal());
193 assert(MO.getOffset() == 0 && "No offsets allowed!");
194
195 if (isCallOp)
196 O << '#';
197 else if (isMemOp)
198 O << '&';
199
200 O << Name;
201
202 return;
203 }
Anton Korobeynikov5d59f682009-05-03 13:14:46 +0000204 case MachineOperand::MO_ExternalSymbol: {
205 bool isCallOp = Modifier && !strcmp(Modifier, "call");
206 std::string Name(TAI->getGlobalPrefix());
207 Name += MO.getSymbolName();
208 if (isCallOp)
209 O << '#';
210 O << Name;
211 return;
212 }
Anton Korobeynikov1df221f2009-05-03 13:02:04 +0000213 default:
214 assert(0 && "Not implemented yet!");
215 }
216}
Anton Korobeynikov36b6e532009-05-03 13:06:03 +0000217
218void MSP430AsmPrinter::printSrcMemOperand(const MachineInstr *MI, int OpNum,
219 const char* Modifier) {
Anton Korobeynikovcf14ae52009-05-03 13:09:40 +0000220 const MachineOperand &Base = MI->getOperand(OpNum);
221 const MachineOperand &Disp = MI->getOperand(OpNum+1);
Anton Korobeynikov36b6e532009-05-03 13:06:03 +0000222
Anton Korobeynikovcf14ae52009-05-03 13:09:40 +0000223 if (Base.isGlobal())
Anton Korobeynikov1deea5f2009-05-03 13:09:10 +0000224 printOperand(MI, OpNum, "mem");
225 else if (Disp.isImm() && !Base.getReg())
226 printOperand(MI, OpNum);
227 else if (Base.getReg()) {
228 if (Disp.getImm()) {
Anton Korobeynikovcf14ae52009-05-03 13:09:40 +0000229 printOperand(MI, OpNum + 1, "nohash");
Anton Korobeynikov1deea5f2009-05-03 13:09:10 +0000230 O << '(';
Anton Korobeynikovcf14ae52009-05-03 13:09:40 +0000231 printOperand(MI, OpNum);
Anton Korobeynikov1deea5f2009-05-03 13:09:10 +0000232 O << ')';
233 } else {
234 O << '@';
Anton Korobeynikovcf14ae52009-05-03 13:09:40 +0000235 printOperand(MI, OpNum);
Anton Korobeynikov1deea5f2009-05-03 13:09:10 +0000236 }
237 } else
238 assert(0 && "Unsupported memory operand");
Anton Korobeynikov36b6e532009-05-03 13:06:03 +0000239}
240
Anton Korobeynikov8b528e52009-05-03 13:12:23 +0000241void MSP430AsmPrinter::printCCOperand(const MachineInstr *MI, int OpNum) {
242 unsigned CC = MI->getOperand(OpNum).getImm();
243
244 switch (CC) {
245 default:
246 assert(0 && "Unsupported CC code");
247 break;
248 case MSP430::COND_E:
Anton Korobeynikovd9e89f62009-05-03 13:16:54 +0000249 O << "eq";
Anton Korobeynikov8b528e52009-05-03 13:12:23 +0000250 break;
251 case MSP430::COND_NE:
252 O << "ne";
253 break;
254 case MSP430::COND_HS:
255 O << "hs";
256 break;
257 case MSP430::COND_LO:
258 O << "lo";
259 break;
260 case MSP430::COND_GE:
261 O << "ge";
262 break;
263 case MSP430::COND_L:
264 O << 'l';
265 break;
266 }
267}