blob: 1337d60325ed867fbe8f0f03f1e5d9f2570dcf4c [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- PPCAsmPrinter.cpp - Print machine instrs to PowerPC assembly --------=//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file contains a printer that converts from our internal representation
11// of machine-dependent LLVM code to PowerPC assembly language. This printer is
12// the output mechanism used by `llc'.
13//
14// Documentation at http://developer.apple.com/documentation/DeveloperTools/
15// Reference/Assembler/ASMIntroduction/chapter_1_section_1.html
16//
17//===----------------------------------------------------------------------===//
18
19#define DEBUG_TYPE "asmprinter"
20#include "PPC.h"
21#include "PPCPredicates.h"
22#include "PPCTargetMachine.h"
23#include "PPCSubtarget.h"
24#include "llvm/Constants.h"
25#include "llvm/DerivedTypes.h"
26#include "llvm/Module.h"
27#include "llvm/Assembly/Writer.h"
28#include "llvm/CodeGen/AsmPrinter.h"
29#include "llvm/CodeGen/DwarfWriter.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000030#include "llvm/CodeGen/MachineFunctionPass.h"
31#include "llvm/CodeGen/MachineInstr.h"
Bill Wendling36ccaea2008-01-26 06:51:24 +000032#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattnerc2cfe152010-01-20 21:16:14 +000033#include "llvm/CodeGen/MachineModuleInfoImpls.h"
Chris Lattnerc6f802d2009-09-13 17:14:04 +000034#include "llvm/MC/MCAsmInfo.h"
Chris Lattner9bc87482010-01-13 19:00:57 +000035#include "llvm/MC/MCContext.h"
Chris Lattner7f1ac7f2009-08-10 18:15:01 +000036#include "llvm/MC/MCSectionMachO.h"
Chris Lattner73266f92009-08-19 05:49:37 +000037#include "llvm/MC/MCStreamer.h"
Chris Lattnerc6f802d2009-09-13 17:14:04 +000038#include "llvm/MC/MCSymbol.h"
Chris Lattner31a54742010-01-16 21:57:06 +000039#include "llvm/Target/Mangler.h"
Chris Lattnere6ad12f2009-07-31 18:48:30 +000040#include "llvm/Target/TargetLoweringObjectFile.h"
41#include "llvm/Target/TargetRegisterInfo.h"
42#include "llvm/Target/TargetInstrInfo.h"
43#include "llvm/Target/TargetOptions.h"
44#include "llvm/Target/TargetRegistry.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000045#include "llvm/Support/MathExtras.h"
46#include "llvm/Support/CommandLine.h"
47#include "llvm/Support/Debug.h"
Edwin Török4d9756a2009-07-08 20:53:28 +000048#include "llvm/Support/ErrorHandling.h"
David Greene302008d2009-07-14 20:18:05 +000049#include "llvm/Support/FormattedStream.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000050#include "llvm/ADT/Statistic.h"
51#include "llvm/ADT/StringExtras.h"
Evan Chenga65854f2008-12-05 01:06:39 +000052#include "llvm/ADT/StringSet.h"
Chris Lattnera38b2872010-01-13 06:38:18 +000053#include "llvm/ADT/SmallString.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000054using namespace llvm;
55
56STATISTIC(EmittedInsts, "Number of machine instrs printed");
57
58namespace {
Nick Lewycky492d06e2009-10-25 06:33:48 +000059 class PPCAsmPrinter : public AsmPrinter {
Bill Wendling4f405312009-02-24 08:30:20 +000060 protected:
Chris Lattnerc2cfe152010-01-20 21:16:14 +000061 DenseMap<const MCSymbol*, const MCSymbol*> TOC;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000062 const PPCSubtarget &Subtarget;
Tilmann Scheller72cf2812009-08-15 11:54:46 +000063 uint64_t LabelID;
Bill Wendling4f405312009-02-24 08:30:20 +000064 public:
David Greene302008d2009-07-14 20:18:05 +000065 explicit PPCAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
Chris Lattner621c44d2009-08-22 20:48:53 +000066 const MCAsmInfo *T, bool V)
Daniel Dunbarb10d2222009-07-01 01:48:54 +000067 : AsmPrinter(O, TM, T, V),
Tilmann Scheller72cf2812009-08-15 11:54:46 +000068 Subtarget(TM.getSubtarget<PPCSubtarget>()), LabelID(0) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +000069
70 virtual const char *getPassName() const {
71 return "PowerPC Assembly Printer";
72 }
73
74 PPCTargetMachine &getTM() {
75 return static_cast<PPCTargetMachine&>(TM);
76 }
77
78 unsigned enumRegToMachineReg(unsigned enumReg) {
79 switch (enumReg) {
Edwin Törökbd448e32009-07-14 16:55:14 +000080 default: llvm_unreachable("Unhandled register!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +000081 case PPC::CR0: return 0;
82 case PPC::CR1: return 1;
83 case PPC::CR2: return 2;
84 case PPC::CR3: return 3;
85 case PPC::CR4: return 4;
86 case PPC::CR5: return 5;
87 case PPC::CR6: return 6;
88 case PPC::CR7: return 7;
89 }
Edwin Törökbd448e32009-07-14 16:55:14 +000090 llvm_unreachable(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000091 }
92
93 /// printInstruction - This method is automatically generated by tablegen
94 /// from the instruction set description. This method returns true if the
95 /// machine instruction was sufficiently described to print it, otherwise it
96 /// returns false.
Chris Lattnerddb259a2009-08-08 01:32:19 +000097 void printInstruction(const MachineInstr *MI);
Chris Lattner213703c2009-09-13 20:19:22 +000098 static const char *getRegisterName(unsigned RegNo);
Chris Lattner92221692009-09-13 20:08:00 +000099
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000100
101 void printMachineInstruction(const MachineInstr *MI);
102 void printOp(const MachineOperand &MO);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000103
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000104 /// stripRegisterPrefix - This method strips the character prefix from a
105 /// register name so that only the number is left. Used by for linux asm.
106 const char *stripRegisterPrefix(const char *RegName) {
107 switch (RegName[0]) {
108 case 'r':
109 case 'f':
110 case 'v': return RegName + 1;
111 case 'c': if (RegName[1] == 'r') return RegName + 2;
112 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000113
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000114 return RegName;
115 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000116
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000117 /// printRegister - Print register according to target requirements.
118 ///
119 void printRegister(const MachineOperand &MO, bool R0AsZero) {
120 unsigned RegNo = MO.getReg();
Dan Gohman1e57df32008-02-10 18:45:23 +0000121 assert(TargetRegisterInfo::isPhysicalRegister(RegNo) && "Not physreg??");
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000122
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000123 // If we should use 0 for R0.
124 if (R0AsZero && RegNo == PPC::R0) {
125 O << "0";
126 return;
127 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000128
Chris Lattnerf0a25de2009-09-13 20:31:40 +0000129 const char *RegName = getRegisterName(RegNo);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000130 // Linux assembler (Others?) does not take register mnemonics.
131 // FIXME - What about special registers used in mfspr/mtspr?
132 if (!Subtarget.isDarwin()) RegName = stripRegisterPrefix(RegName);
133 O << RegName;
134 }
135
136 void printOperand(const MachineInstr *MI, unsigned OpNo) {
137 const MachineOperand &MO = MI->getOperand(OpNo);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000138 if (MO.isReg()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000139 printRegister(MO, false);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000140 } else if (MO.isImm()) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000141 O << MO.getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000142 } else {
143 printOp(MO);
144 }
145 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000146
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000147 bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
148 unsigned AsmVariant, const char *ExtraCode);
149 bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
150 unsigned AsmVariant, const char *ExtraCode);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000151
152
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000153 void printS5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000154 char value = MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000155 value = (value << (32-5)) >> (32-5);
156 O << (int)value;
157 }
158 void printU5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000159 unsigned char value = MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000160 assert(value <= 31 && "Invalid u5imm argument!");
161 O << (unsigned int)value;
162 }
163 void printU6ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000164 unsigned char value = MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000165 assert(value <= 63 && "Invalid u6imm argument!");
166 O << (unsigned int)value;
167 }
168 void printS16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000169 O << (short)MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000170 }
171 void printU16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000172 O << (unsigned short)MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000173 }
174 void printS16X4ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000175 if (MI->getOperand(OpNo).isImm()) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000176 O << (short)(MI->getOperand(OpNo).getImm()*4);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000177 } else {
178 O << "lo16(";
179 printOp(MI->getOperand(OpNo));
180 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng477013c2007-10-14 05:57:21 +0000181 O << "-\"L" << getFunctionNumber() << "$pb\")";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000182 else
183 O << ')';
184 }
185 }
186 void printBranchOperand(const MachineInstr *MI, unsigned OpNo) {
187 // Branches can take an immediate operand. This is used by the branch
188 // selection pass to print $+8, an eight byte displacement from the PC.
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000189 if (MI->getOperand(OpNo).isImm()) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000190 O << "$+" << MI->getOperand(OpNo).getImm()*4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000191 } else {
192 printOp(MI->getOperand(OpNo));
193 }
194 }
195 void printCallOperand(const MachineInstr *MI, unsigned OpNo) {
196 const MachineOperand &MO = MI->getOperand(OpNo);
197 if (TM.getRelocationModel() != Reloc::Static) {
198 if (MO.getType() == MachineOperand::MO_GlobalAddress) {
199 GlobalValue *GV = MO.getGlobal();
Chris Lattner0fd4feb2009-07-02 16:08:53 +0000200 if (GV->isDeclaration() || GV->isWeakForLinker()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000201 // Dynamically-resolved functions need a stub for the function.
Chris Lattnerd5a83252010-01-20 21:36:48 +0000202 MCSymbol *Sym = GetSymbolWithGlobalValueBase(GV, "$stub");
203 const MCSymbol *&StubSym =
204 MMI->getObjFileInfo<MachineModuleInfoMachO>().getFnStubEntry(Sym);
205 if (StubSym == 0)
206 StubSym = GetGlobalValueSymbol(GV);
207 O << *Sym;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000208 return;
209 }
210 }
211 if (MO.getType() == MachineOperand::MO_ExternalSymbol) {
Chris Lattnerd5a83252010-01-20 21:36:48 +0000212 SmallString<128> TempNameStr;
213 TempNameStr += StringRef(MO.getSymbolName());
214 TempNameStr += StringRef("$stub");
215
216 const MCSymbol *Sym = GetExternalSymbolSymbol(TempNameStr.str());
217 const MCSymbol *&StubSym =
218 MMI->getObjFileInfo<MachineModuleInfoMachO>().getFnStubEntry(Sym);
219 if (StubSym == 0) {
220 TempNameStr.erase(TempNameStr.end()-5, TempNameStr.end());
221 StubSym = OutContext.GetOrCreateSymbol(TempNameStr.str());
222 }
223 O << *Sym;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000224 return;
225 }
226 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000227
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000228 printOp(MI->getOperand(OpNo));
229 }
230 void printAbsAddrOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000231 O << (int)MI->getOperand(OpNo).getImm()*4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000232 }
233 void printPICLabel(const MachineInstr *MI, unsigned OpNo) {
Evan Cheng477013c2007-10-14 05:57:21 +0000234 O << "\"L" << getFunctionNumber() << "$pb\"\n";
235 O << "\"L" << getFunctionNumber() << "$pb\":";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000236 }
237 void printSymbolHi(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000238 if (MI->getOperand(OpNo).isImm()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000239 printS16ImmOperand(MI, OpNo);
240 } else {
241 if (Subtarget.isDarwin()) O << "ha16(";
242 printOp(MI->getOperand(OpNo));
243 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng477013c2007-10-14 05:57:21 +0000244 O << "-\"L" << getFunctionNumber() << "$pb\"";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000245 if (Subtarget.isDarwin())
246 O << ')';
247 else
248 O << "@ha";
249 }
250 }
251 void printSymbolLo(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000252 if (MI->getOperand(OpNo).isImm()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000253 printS16ImmOperand(MI, OpNo);
254 } else {
255 if (Subtarget.isDarwin()) O << "lo16(";
256 printOp(MI->getOperand(OpNo));
257 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng477013c2007-10-14 05:57:21 +0000258 O << "-\"L" << getFunctionNumber() << "$pb\"";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000259 if (Subtarget.isDarwin())
260 O << ')';
261 else
262 O << "@l";
263 }
264 }
265 void printcrbitm(const MachineInstr *MI, unsigned OpNo) {
266 unsigned CCReg = MI->getOperand(OpNo).getReg();
267 unsigned RegNo = enumRegToMachineReg(CCReg);
268 O << (0x80 >> RegNo);
269 }
270 // The new addressing mode printers.
271 void printMemRegImm(const MachineInstr *MI, unsigned OpNo) {
272 printSymbolLo(MI, OpNo);
273 O << '(';
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000274 if (MI->getOperand(OpNo+1).isReg() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000275 MI->getOperand(OpNo+1).getReg() == PPC::R0)
276 O << "0";
277 else
278 printOperand(MI, OpNo+1);
279 O << ')';
280 }
281 void printMemRegImmShifted(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000282 if (MI->getOperand(OpNo).isImm())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000283 printS16X4ImmOperand(MI, OpNo);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000284 else
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000285 printSymbolLo(MI, OpNo);
286 O << '(';
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000287 if (MI->getOperand(OpNo+1).isReg() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000288 MI->getOperand(OpNo+1).getReg() == PPC::R0)
289 O << "0";
290 else
291 printOperand(MI, OpNo+1);
292 O << ')';
293 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000294
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000295 void printMemRegReg(const MachineInstr *MI, unsigned OpNo) {
296 // When used as the base register, r0 reads constant zero rather than
297 // the value contained in the register. For this reason, the darwin
298 // assembler requires that we print r0 as 0 (no r) when used as the base.
299 const MachineOperand &MO = MI->getOperand(OpNo);
300 printRegister(MO, true);
301 O << ", ";
302 printOperand(MI, OpNo+1);
303 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000304
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000305 void printTOCEntryLabel(const MachineInstr *MI, unsigned OpNo) {
306 const MachineOperand &MO = MI->getOperand(OpNo);
307
308 assert(MO.getType() == MachineOperand::MO_GlobalAddress);
309
Chris Lattnerc3009922010-01-16 02:09:06 +0000310 const MCSymbol *Sym = GetGlobalValueSymbol(MO.getGlobal());
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000311
312 // Map symbol -> label of TOC entry.
Chris Lattnerc3009922010-01-16 02:09:06 +0000313 const MCSymbol *&TOCEntry = TOC[Sym];
314 if (TOCEntry == 0)
315 TOCEntry = OutContext.
Chris Lattner5eeaf2a2010-01-16 02:00:23 +0000316 GetOrCreateSymbol(StringRef(MAI->getPrivateGlobalPrefix()) + "C" +
317 Twine(LabelID++));
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000318
Chris Lattnerce409842010-01-17 21:43:43 +0000319 O << *TOCEntry << "@toc";
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000320 }
321
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000322 void printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000323 const char *Modifier);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000324
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000325 virtual bool runOnMachineFunction(MachineFunction &F) = 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000326 };
327
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000328 /// PPCLinuxAsmPrinter - PowerPC assembly printer, customized for Linux
Nick Lewycky492d06e2009-10-25 06:33:48 +0000329 class PPCLinuxAsmPrinter : public PPCAsmPrinter {
Bill Wendling4f405312009-02-24 08:30:20 +0000330 public:
Daniel Dunbarfe5939f2009-07-15 20:24:03 +0000331 explicit PPCLinuxAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
Chris Lattner621c44d2009-08-22 20:48:53 +0000332 const MCAsmInfo *T, bool V)
Daniel Dunbarb10d2222009-07-01 01:48:54 +0000333 : PPCAsmPrinter(O, TM, T, V){}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000334
335 virtual const char *getPassName() const {
336 return "Linux PPC Assembly Printer";
337 }
338
339 bool runOnMachineFunction(MachineFunction &F);
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000340 bool doFinalization(Module &M);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000341
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000342 void getAnalysisUsage(AnalysisUsage &AU) const {
343 AU.setPreservesAll();
344 AU.addRequired<MachineModuleInfo>();
Devang Patelaa1e8432009-01-08 23:40:34 +0000345 AU.addRequired<DwarfWriter>();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000346 PPCAsmPrinter::getAnalysisUsage(AU);
347 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000348 };
349
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000350 /// PPCDarwinAsmPrinter - PowerPC assembly printer, customized for Darwin/Mac
351 /// OS X
Nick Lewycky492d06e2009-10-25 06:33:48 +0000352 class PPCDarwinAsmPrinter : public PPCAsmPrinter {
David Greene302008d2009-07-14 20:18:05 +0000353 formatted_raw_ostream &OS;
Bill Wendling4f405312009-02-24 08:30:20 +0000354 public:
Daniel Dunbarfe5939f2009-07-15 20:24:03 +0000355 explicit PPCDarwinAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
Chris Lattner621c44d2009-08-22 20:48:53 +0000356 const MCAsmInfo *T, bool V)
Daniel Dunbarb10d2222009-07-01 01:48:54 +0000357 : PPCAsmPrinter(O, TM, T, V), OS(O) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000358
359 virtual const char *getPassName() const {
360 return "Darwin PPC Assembly Printer";
361 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000362
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000363 bool runOnMachineFunction(MachineFunction &F);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000364 bool doFinalization(Module &M);
Bob Wilsonb5f835e2009-09-30 22:06:26 +0000365 void EmitStartOfAsmFile(Module &M);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000366
Chris Lattnerd5a83252010-01-20 21:36:48 +0000367 void EmitFunctionStubs(const MachineModuleInfoMachO::SymbolListTy &Stubs);
Chris Lattner5b187502010-01-20 21:19:44 +0000368
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000369 void getAnalysisUsage(AnalysisUsage &AU) const {
370 AU.setPreservesAll();
371 AU.addRequired<MachineModuleInfo>();
Devang Patelaa1e8432009-01-08 23:40:34 +0000372 AU.addRequired<DwarfWriter>();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000373 PPCAsmPrinter::getAnalysisUsage(AU);
374 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000375 };
376} // end of anonymous namespace
377
378// Include the auto-generated portion of the assembly writer
379#include "PPCGenAsmWriter.inc"
380
381void PPCAsmPrinter::printOp(const MachineOperand &MO) {
382 switch (MO.getType()) {
383 case MachineOperand::MO_Immediate:
Edwin Törökbd448e32009-07-14 16:55:14 +0000384 llvm_unreachable("printOp() does not handle immediate values");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000385
386 case MachineOperand::MO_MachineBasicBlock:
Chris Lattnerce409842010-01-17 21:43:43 +0000387 O << *GetMBBSymbol(MO.getMBB()->getNumber());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000388 return;
389 case MachineOperand::MO_JumpTableIndex:
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000390 O << MAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
Chris Lattner6017d482007-12-30 23:10:15 +0000391 << '_' << MO.getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000392 // FIXME: PIC relocation model
393 return;
394 case MachineOperand::MO_ConstantPoolIndex:
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000395 O << MAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber()
Chris Lattner6017d482007-12-30 23:10:15 +0000396 << '_' << MO.getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000397 return;
Bob Wilsone8cbca92009-11-04 21:31:18 +0000398 case MachineOperand::MO_BlockAddress:
Chris Lattnerce409842010-01-17 21:43:43 +0000399 O << *GetBlockAddressSymbol(MO.getBlockAddress());
Bob Wilsone8cbca92009-11-04 21:31:18 +0000400 return;
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000401 case MachineOperand::MO_ExternalSymbol: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000402 // Computing the address of an external symbol, not calling it.
Chris Lattnerc3009922010-01-16 02:09:06 +0000403 if (TM.getRelocationModel() == Reloc::Static) {
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000404 O << *GetExternalSymbolSymbol(MO.getSymbolName());
Chris Lattnerc3009922010-01-16 02:09:06 +0000405 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000406 }
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000407
Chris Lattnerc3009922010-01-16 02:09:06 +0000408 const MCSymbol *NLPSym =
409 OutContext.GetOrCreateSymbol(StringRef(MAI->getGlobalPrefix())+
410 MO.getSymbolName()+"$non_lazy_ptr");
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000411 const MCSymbol *&StubSym =
412 MMI->getObjFileInfo<MachineModuleInfoMachO>().getGVStubEntry(NLPSym);
413 if (StubSym == 0)
414 StubSym = GetExternalSymbolSymbol(MO.getSymbolName());
415
Chris Lattnerce409842010-01-17 21:43:43 +0000416 O << *NLPSym;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000417 return;
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000418 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000419 case MachineOperand::MO_GlobalAddress: {
420 // Computing the address of a global symbol, not calling it.
421 GlobalValue *GV = MO.getGlobal();
Chris Lattner5eeaf2a2010-01-16 02:00:23 +0000422 MCSymbol *SymToPrint;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000423
424 // External or weakly linked global variables need non-lazily-resolved stubs
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000425 if (TM.getRelocationModel() != Reloc::Static &&
426 (GV->isDeclaration() || GV->isWeakForLinker())) {
427 if (!GV->hasHiddenVisibility()) {
Chris Lattnera6f2a102010-01-16 18:37:32 +0000428 SymToPrint = GetSymbolWithGlobalValueBase(GV, "$non_lazy_ptr");
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000429 const MCSymbol *&StubSym =
430 MMI->getObjFileInfo<MachineModuleInfoMachO>().getGVStubEntry(SymToPrint);
431 if (StubSym == 0)
432 StubSym = GetGlobalValueSymbol(GV);
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000433 } else if (GV->isDeclaration() || GV->hasCommonLinkage() ||
434 GV->hasAvailableExternallyLinkage()) {
Chris Lattnera6f2a102010-01-16 18:37:32 +0000435 SymToPrint = GetSymbolWithGlobalValueBase(GV, "$non_lazy_ptr");
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000436
437 const MCSymbol *&StubSym =
438 MMI->getObjFileInfo<MachineModuleInfoMachO>().
439 getHiddenGVStubEntry(SymToPrint);
440 if (StubSym == 0)
441 StubSym = GetGlobalValueSymbol(GV);
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000442 } else {
Chris Lattner5eeaf2a2010-01-16 02:00:23 +0000443 SymToPrint = GetGlobalValueSymbol(GV);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000444 }
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000445 } else {
Chris Lattner5eeaf2a2010-01-16 02:00:23 +0000446 SymToPrint = GetGlobalValueSymbol(GV);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000447 }
Chris Lattner5eeaf2a2010-01-16 02:00:23 +0000448
Chris Lattnerce409842010-01-17 21:43:43 +0000449 O << *SymToPrint;
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000450
Anton Korobeynikov440f23d2008-11-22 16:15:34 +0000451 printOffset(MO.getOffset());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000452 return;
453 }
454
455 default:
456 O << "<unknown operand type: " << MO.getType() << ">";
457 return;
458 }
459}
460
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000461/// PrintAsmOperand - Print out an operand for an inline asm expression.
462///
463bool PPCAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000464 unsigned AsmVariant,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000465 const char *ExtraCode) {
466 // Does this asm operand have a single letter operand modifier?
467 if (ExtraCode && ExtraCode[0]) {
468 if (ExtraCode[1] != 0) return true; // Unknown modifier.
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000469
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000470 switch (ExtraCode[0]) {
471 default: return true; // Unknown modifier.
472 case 'c': // Don't print "$" before a global var name or constant.
473 // PPC never has a prefix.
474 printOperand(MI, OpNo);
475 return false;
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000476 case 'L': // Write second word of DImode reference.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000477 // Verify that this operand has two consecutive registers.
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000478 if (!MI->getOperand(OpNo).isReg() ||
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000479 OpNo+1 == MI->getNumOperands() ||
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000480 !MI->getOperand(OpNo+1).isReg())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000481 return true;
482 ++OpNo; // Return the high-part.
483 break;
484 case 'I':
485 // Write 'i' if an integer constant, otherwise nothing. Used to print
486 // addi vs add, etc.
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000487 if (MI->getOperand(OpNo).isImm())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000488 O << "i";
489 return false;
490 }
491 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000492
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000493 printOperand(MI, OpNo);
494 return false;
495}
496
Dale Johannesen0a42b9662009-08-18 00:18:39 +0000497// At the moment, all inline asm memory operands are a single register.
498// In any case, the output of this routine should always be just one
499// assembler operand.
500
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000501bool PPCAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000502 unsigned AsmVariant,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000503 const char *ExtraCode) {
504 if (ExtraCode && ExtraCode[0])
505 return true; // Unknown modifier.
Dale Johannesen0a42b9662009-08-18 00:18:39 +0000506 assert (MI->getOperand(OpNo).isReg());
Dale Johannesen5e699502009-08-26 18:10:32 +0000507 O << "0(";
Dale Johannesen0a42b9662009-08-18 00:18:39 +0000508 printOperand(MI, OpNo);
Dale Johannesen5e699502009-08-26 18:10:32 +0000509 O << ")";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000510 return false;
511}
512
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000513void PPCAsmPrinter::printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000514 const char *Modifier) {
515 assert(Modifier && "Must specify 'cc' or 'reg' as predicate op modifier!");
516 unsigned Code = MI->getOperand(OpNo).getImm();
517 if (!strcmp(Modifier, "cc")) {
518 switch ((PPC::Predicate)Code) {
519 case PPC::PRED_ALWAYS: return; // Don't print anything for always.
520 case PPC::PRED_LT: O << "lt"; return;
521 case PPC::PRED_LE: O << "le"; return;
522 case PPC::PRED_EQ: O << "eq"; return;
523 case PPC::PRED_GE: O << "ge"; return;
524 case PPC::PRED_GT: O << "gt"; return;
525 case PPC::PRED_NE: O << "ne"; return;
526 case PPC::PRED_UN: O << "un"; return;
527 case PPC::PRED_NU: O << "nu"; return;
528 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000529
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000530 } else {
531 assert(!strcmp(Modifier, "reg") &&
532 "Need to specify 'cc' or 'reg' as predicate op modifier!");
533 // Don't print the register for 'always'.
534 if (Code == PPC::PRED_ALWAYS) return;
535 printOperand(MI, OpNo+1);
536 }
537}
538
539
540/// printMachineInstruction -- Print out a single PowerPC MI in Darwin syntax to
541/// the current output stream.
542///
543void PPCAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
544 ++EmittedInsts;
Chris Lattnere34788c2009-09-09 20:34:59 +0000545
Devang Patel5450fc12009-10-06 02:19:11 +0000546 processDebugLoc(MI, true);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000547
548 // Check for slwi/srwi mnemonics.
Dale Johannesen760acc02010-01-06 02:20:18 +0000549 bool useSubstituteMnemonic = false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000550 if (MI->getOpcode() == PPC::RLWINM) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000551 unsigned char SH = MI->getOperand(2).getImm();
552 unsigned char MB = MI->getOperand(3).getImm();
553 unsigned char ME = MI->getOperand(4).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000554 if (SH <= 31 && MB == 0 && ME == (31-SH)) {
Dale Johannesen760acc02010-01-06 02:20:18 +0000555 O << "\tslwi "; useSubstituteMnemonic = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000556 }
557 if (SH <= 31 && MB == (32-SH) && ME == 31) {
Dale Johannesen760acc02010-01-06 02:20:18 +0000558 O << "\tsrwi "; useSubstituteMnemonic = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000559 SH = 32-SH;
560 }
Dale Johannesen760acc02010-01-06 02:20:18 +0000561 if (useSubstituteMnemonic) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000562 printOperand(MI, 0);
563 O << ", ";
564 printOperand(MI, 1);
Dale Johannesen760acc02010-01-06 02:20:18 +0000565 O << ", " << (unsigned int)SH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000566 }
567 } else if (MI->getOpcode() == PPC::OR || MI->getOpcode() == PPC::OR8) {
568 if (MI->getOperand(1).getReg() == MI->getOperand(2).getReg()) {
Dale Johannesen760acc02010-01-06 02:20:18 +0000569 useSubstituteMnemonic = true;
Nate Begemanbd5cdf12008-02-05 08:49:09 +0000570 O << "\tmr ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000571 printOperand(MI, 0);
572 O << ", ";
573 printOperand(MI, 1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000574 }
575 } else if (MI->getOpcode() == PPC::RLDICR) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000576 unsigned char SH = MI->getOperand(2).getImm();
577 unsigned char ME = MI->getOperand(3).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000578 // rldicr RA, RS, SH, 63-SH == sldi RA, RS, SH
579 if (63-SH == ME) {
Dale Johannesen760acc02010-01-06 02:20:18 +0000580 useSubstituteMnemonic = true;
Nate Begemanbd5cdf12008-02-05 08:49:09 +0000581 O << "\tsldi ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000582 printOperand(MI, 0);
583 O << ", ";
584 printOperand(MI, 1);
Dale Johannesen760acc02010-01-06 02:20:18 +0000585 O << ", " << (unsigned int)SH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000586 }
587 }
588
Dale Johannesen760acc02010-01-06 02:20:18 +0000589 if (!useSubstituteMnemonic)
590 printInstruction(MI);
591
David Greeneca9b04b2009-11-13 21:34:57 +0000592 if (VerboseAsm)
Chris Lattner32d4cc72009-09-09 23:14:36 +0000593 EmitComments(*MI);
594 O << '\n';
Devang Patel5450fc12009-10-06 02:19:11 +0000595
596 processDebugLoc(MI, false);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000597}
598
599/// runOnMachineFunction - This uses the printMachineInstruction()
600/// method to print assembly for each instruction.
601///
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000602bool PPCLinuxAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Bill Wendling4f405312009-02-24 08:30:20 +0000603 this->MF = &MF;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000604
605 SetupMachineFunction(MF);
606 O << "\n\n";
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000607
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000608 // Print out constants referenced by the function
609 EmitConstantPool(MF.getConstantPool());
610
611 // Print out labels for the function.
612 const Function *F = MF.getFunction();
Chris Lattner73266f92009-08-19 05:49:37 +0000613 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang, TM));
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000614
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000615 switch (F->getLinkage()) {
Edwin Törökbd448e32009-07-14 16:55:14 +0000616 default: llvm_unreachable("Unknown linkage type!");
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000617 case Function::PrivateLinkage:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000618 case Function::InternalLinkage: // Symbols default to internal.
619 break;
620 case Function::ExternalLinkage:
Chris Lattnerce409842010-01-17 21:43:43 +0000621 O << "\t.global\t" << *CurrentFnSym << '\n' << "\t.type\t";
622 O << *CurrentFnSym << ", @function\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000623 break;
Dale Johannesenda551282009-08-24 01:03:42 +0000624 case Function::LinkerPrivateLinkage:
Duncan Sands19d161f2009-03-07 15:45:40 +0000625 case Function::WeakAnyLinkage:
626 case Function::WeakODRLinkage:
627 case Function::LinkOnceAnyLinkage:
628 case Function::LinkOnceODRLinkage:
Chris Lattnerce409842010-01-17 21:43:43 +0000629 O << "\t.global\t" << *CurrentFnSym << '\n';
630 O << "\t.weak\t" << *CurrentFnSym << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000631 break;
632 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000633
Chris Lattner651adf32010-01-16 00:21:18 +0000634 printVisibility(CurrentFnSym, F->getVisibility());
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000635
Bill Wendling25a8ae32009-06-30 22:38:32 +0000636 EmitAlignment(MF.getAlignment(), F);
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000637
638 if (Subtarget.isPPC64()) {
639 // Emit an official procedure descriptor.
Chris Lattner651adf32010-01-16 00:21:18 +0000640 // FIXME 64-bit SVR4: Use MCSection here!
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000641 O << "\t.section\t\".opd\",\"aw\"\n";
642 O << "\t.align 3\n";
Chris Lattnerce409842010-01-17 21:43:43 +0000643 O << *CurrentFnSym << ":\n";
644 O << "\t.quad .L." << *CurrentFnSym << ",.TOC.@tocbase\n";
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000645 O << "\t.previous\n";
Chris Lattnerce409842010-01-17 21:43:43 +0000646 O << ".L." << *CurrentFnSym << ":\n";
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000647 } else {
Chris Lattnerce409842010-01-17 21:43:43 +0000648 O << *CurrentFnSym << ":\n";
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000649 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000650
651 // Emit pre-function debug information.
Devang Patelaa1e8432009-01-08 23:40:34 +0000652 DW->BeginFunction(&MF);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000653
654 // Print out code for the function.
655 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
656 I != E; ++I) {
657 // Print a label for the basic block.
658 if (I != MF.begin()) {
Chris Lattner2faa4ef2009-09-13 18:25:37 +0000659 EmitBasicBlockStart(I);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000660 }
661 for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
662 II != E; ++II) {
663 // Print the assembly for the instruction.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000664 printMachineInstruction(II);
665 }
666 }
667
Chris Lattnerce409842010-01-17 21:43:43 +0000668 O << "\t.size\t" << *CurrentFnSym << ",.-" << *CurrentFnSym << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000669
Chris Lattner73266f92009-08-19 05:49:37 +0000670 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang, TM));
Dale Johannesendd9e1c92008-12-03 19:33:10 +0000671
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000672 // Emit post-function debug information.
Devang Patelaa1e8432009-01-08 23:40:34 +0000673 DW->EndFunction(&MF);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000674
Bill Wendling6fb58e12009-11-09 21:20:14 +0000675 // Print out jump tables referenced by the function.
676 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
677
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000678 // We didn't modify anything.
679 return false;
680}
681
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000682bool PPCLinuxAsmPrinter::doFinalization(Module &M) {
683 const TargetData *TD = TM.getTargetData();
684
685 bool isPPC64 = TD->getPointerSizeInBits() == 64;
686
687 if (isPPC64 && !TOC.empty()) {
688 // FIXME 64-bit SVR4: Use MCSection here?
689 O << "\t.section\t\".toc\",\"aw\"\n";
690
Chris Lattner5eeaf2a2010-01-16 02:00:23 +0000691 // FIXME: This is nondeterminstic!
Chris Lattnerc3009922010-01-16 02:09:06 +0000692 for (DenseMap<const MCSymbol*, const MCSymbol*>::iterator I = TOC.begin(),
693 E = TOC.end(); I != E; ++I) {
Chris Lattnerce409842010-01-17 21:43:43 +0000694 O << *I->second << ":\n";
695 O << "\t.tc " << *I->first << "[TC]," << *I->first << '\n';
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000696 }
697 }
698
699 return AsmPrinter::doFinalization(M);
700}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000701
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000702/// runOnMachineFunction - This uses the printMachineInstruction()
703/// method to print assembly for each instruction.
704///
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000705bool PPCDarwinAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Bill Wendling4f405312009-02-24 08:30:20 +0000706 this->MF = &MF;
707
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000708 SetupMachineFunction(MF);
709 O << "\n\n";
Dale Johannesenfb3ac732007-11-20 23:24:42 +0000710
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000711 // Print out constants referenced by the function
712 EmitConstantPool(MF.getConstantPool());
713
714 // Print out labels for the function.
715 const Function *F = MF.getFunction();
Chris Lattner73266f92009-08-19 05:49:37 +0000716 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang, TM));
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000717
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000718 switch (F->getLinkage()) {
Edwin Törökbd448e32009-07-14 16:55:14 +0000719 default: llvm_unreachable("Unknown linkage type!");
evancheng47ae8142009-01-25 06:32:01 +0000720 case Function::PrivateLinkage:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000721 case Function::InternalLinkage: // Symbols default to internal.
722 break;
723 case Function::ExternalLinkage:
Chris Lattnerce409842010-01-17 21:43:43 +0000724 O << "\t.globl\t" << *CurrentFnSym << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000725 break;
Duncan Sands19d161f2009-03-07 15:45:40 +0000726 case Function::WeakAnyLinkage:
727 case Function::WeakODRLinkage:
728 case Function::LinkOnceAnyLinkage:
729 case Function::LinkOnceODRLinkage:
Dale Johannesenda551282009-08-24 01:03:42 +0000730 case Function::LinkerPrivateLinkage:
Chris Lattnerce409842010-01-17 21:43:43 +0000731 O << "\t.globl\t" << *CurrentFnSym << '\n';
732 O << "\t.weak_definition\t" << *CurrentFnSym << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000733 break;
734 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000735
Chris Lattner651adf32010-01-16 00:21:18 +0000736 printVisibility(CurrentFnSym, F->getVisibility());
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000737
Bill Wendling25a8ae32009-06-30 22:38:32 +0000738 EmitAlignment(MF.getAlignment(), F);
Chris Lattnerce409842010-01-17 21:43:43 +0000739 O << *CurrentFnSym << ":\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000740
741 // Emit pre-function debug information.
Devang Patelaa1e8432009-01-08 23:40:34 +0000742 DW->BeginFunction(&MF);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000743
Bill Wendling36ccaea2008-01-26 06:51:24 +0000744 // If the function is empty, then we need to emit *something*. Otherwise, the
745 // function's label might be associated with something that it wasn't meant to
746 // be associated with. We emit a noop in this situation.
747 MachineFunction::iterator I = MF.begin();
748
Bill Wendlingb5880a72008-01-26 09:03:52 +0000749 if (++I == MF.end() && MF.front().empty())
750 O << "\tnop\n";
Bill Wendling36ccaea2008-01-26 06:51:24 +0000751
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000752 // Print out code for the function.
753 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
754 I != E; ++I) {
755 // Print a label for the basic block.
756 if (I != MF.begin()) {
Chris Lattner2faa4ef2009-09-13 18:25:37 +0000757 EmitBasicBlockStart(I);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000758 }
Bill Wendling36ccaea2008-01-26 06:51:24 +0000759 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
760 II != IE; ++II) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000761 // Print the assembly for the instruction.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000762 printMachineInstruction(II);
763 }
764 }
765
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000766 // Emit post-function debug information.
Devang Patelaa1e8432009-01-08 23:40:34 +0000767 DW->EndFunction(&MF);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000768
Bill Wendling5019fe02009-11-09 21:45:26 +0000769 // Print out jump tables referenced by the function.
770 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
771
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000772 // We didn't modify anything.
773 return false;
774}
775
776
Bob Wilsonb5f835e2009-09-30 22:06:26 +0000777void PPCDarwinAsmPrinter::EmitStartOfAsmFile(Module &M) {
Dan Gohman12300e12008-03-25 21:45:14 +0000778 static const char *const CPUDirectives[] = {
Dale Johannesen161badc2008-02-14 23:35:16 +0000779 "",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000780 "ppc",
781 "ppc601",
782 "ppc602",
783 "ppc603",
784 "ppc7400",
785 "ppc750",
786 "ppc970",
787 "ppc64"
788 };
789
790 unsigned Directive = Subtarget.getDarwinDirective();
791 if (Subtarget.isGigaProcessor() && Directive < PPC::DIR_970)
792 Directive = PPC::DIR_970;
793 if (Subtarget.hasAltivec() && Directive < PPC::DIR_7400)
794 Directive = PPC::DIR_7400;
795 if (Subtarget.isPPC64() && Directive < PPC::DIR_970)
796 Directive = PPC::DIR_64;
797 assert(Directive <= PPC::DIR_64 && "Directive out of range.");
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000798 O << "\t.machine " << CPUDirectives[Directive] << '\n';
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000799
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000800 // Prime text sections so they are adjacent. This reduces the likelihood a
801 // large data or debug section causes a branch to exceed 16M limit.
Chris Lattnerf4815552009-08-03 22:52:21 +0000802 TargetLoweringObjectFileMachO &TLOFMacho =
803 static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
Chris Lattner73266f92009-08-19 05:49:37 +0000804 OutStreamer.SwitchSection(TLOFMacho.getTextCoalSection());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000805 if (TM.getRelocationModel() == Reloc::PIC_) {
Chris Lattner73266f92009-08-19 05:49:37 +0000806 OutStreamer.SwitchSection(
807 TLOFMacho.getMachOSection("__TEXT", "__picsymbolstub1",
808 MCSectionMachO::S_SYMBOL_STUBS |
809 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
810 32, SectionKind::getText()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000811 } else if (TM.getRelocationModel() == Reloc::DynamicNoPIC) {
Chris Lattner73266f92009-08-19 05:49:37 +0000812 OutStreamer.SwitchSection(
813 TLOFMacho.getMachOSection("__TEXT","__symbol_stub1",
814 MCSectionMachO::S_SYMBOL_STUBS |
815 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
816 16, SectionKind::getText()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000817 }
Chris Lattner73266f92009-08-19 05:49:37 +0000818 OutStreamer.SwitchSection(getObjFileLowering().getTextSection());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000819}
820
Chris Lattnerd5a83252010-01-20 21:36:48 +0000821static const MCSymbol *GetLazyPtr(const MCSymbol *Sym, MCContext &Ctx) {
822 // Remove $stub suffix, add $lazy_ptr.
823 SmallString<128> TmpStr(Sym->getName().begin(), Sym->getName().end()-5);
824 TmpStr += "$lazy_ptr";
825 return Ctx.GetOrCreateSymbol(TmpStr.str());
826}
827
828static const MCSymbol *GetAnonSym(const MCSymbol *Sym, MCContext &Ctx) {
829 // Add $tmp suffix to $stub, yielding $stub$tmp.
830 SmallString<128> TmpStr(Sym->getName().begin(), Sym->getName().end());
831 TmpStr += "$tmp";
832 return Ctx.GetOrCreateSymbol(TmpStr.str());
833}
834
835void PPCDarwinAsmPrinter::
836EmitFunctionStubs(const MachineModuleInfoMachO::SymbolListTy &Stubs) {
Chris Lattner5b187502010-01-20 21:19:44 +0000837 bool isPPC64 = TM.getTargetData()->getPointerSizeInBits() == 64;
838
Chris Lattnerf4815552009-08-03 22:52:21 +0000839 TargetLoweringObjectFileMachO &TLOFMacho =
840 static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
Chris Lattner5b187502010-01-20 21:19:44 +0000841
842 // .lazy_symbol_pointer
843 const MCSection *LSPSection = TLOFMacho.getLazySymbolPointerSection();
Chris Lattner72a676a2009-08-10 01:39:42 +0000844
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000845 // Output stubs for dynamically-linked functions
Chris Lattner5b187502010-01-20 21:19:44 +0000846 if (TM.getRelocationModel() == Reloc::PIC_) {
Chris Lattnerf4815552009-08-03 22:52:21 +0000847 const MCSection *StubSection =
Chris Lattner5b187502010-01-20 21:19:44 +0000848 TLOFMacho.getMachOSection("__TEXT", "__picsymbolstub1",
849 MCSectionMachO::S_SYMBOL_STUBS |
850 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
851 32, SectionKind::getText());
Chris Lattnerd5a83252010-01-20 21:36:48 +0000852 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
Chris Lattner73266f92009-08-19 05:49:37 +0000853 OutStreamer.SwitchSection(StubSection);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000854 EmitAlignment(4);
Chris Lattnerd5a83252010-01-20 21:36:48 +0000855
856 const MCSymbol *Stub = Stubs[i].first;
857 const MCSymbol *RawSym = Stubs[i].second;
858 const MCSymbol *LazyPtr = GetLazyPtr(Stub, OutContext);
859 const MCSymbol *AnonSymbol = GetAnonSym(Stub, OutContext);
860
861 O << *Stub << ":\n";
862 O << "\t.indirect_symbol " << *RawSym << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000863 O << "\tmflr r0\n";
Chris Lattnerd5a83252010-01-20 21:36:48 +0000864 O << "\tbcl 20,31," << *AnonSymbol << '\n';
865 O << *AnonSymbol << ":\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000866 O << "\tmflr r11\n";
Chris Lattnerd5a83252010-01-20 21:36:48 +0000867 O << "\taddis r11,r11,ha16(" << *LazyPtr << '-' << *AnonSymbol
Chris Lattner5b187502010-01-20 21:19:44 +0000868 << ")\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000869 O << "\tmtlr r0\n";
Chris Lattnerd5a83252010-01-20 21:36:48 +0000870 O << (isPPC64 ? "\tldu" : "\tlwzu") << " r12,lo16(" << *LazyPtr
871 << '-' << *AnonSymbol << ")(r11)\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000872 O << "\tmtctr r12\n";
873 O << "\tbctr\n";
Chris Lattnerc0a7f1d2009-07-16 01:23:26 +0000874
Chris Lattner73266f92009-08-19 05:49:37 +0000875 OutStreamer.SwitchSection(LSPSection);
Chris Lattnerd5a83252010-01-20 21:36:48 +0000876 O << *LazyPtr << ":\n";
877 O << "\t.indirect_symbol " << *RawSym << '\n';
Chris Lattnerbaa12da2009-07-15 02:36:21 +0000878 O << (isPPC64 ? "\t.quad" : "\t.long") << " dyld_stub_binding_helper\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000879 }
Chris Lattner5b187502010-01-20 21:19:44 +0000880 O << '\n';
881 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000882 }
Chris Lattner5b187502010-01-20 21:19:44 +0000883
884 const MCSection *StubSection =
885 TLOFMacho.getMachOSection("__TEXT","__symbol_stub1",
886 MCSectionMachO::S_SYMBOL_STUBS |
887 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
888 16, SectionKind::getText());
Chris Lattnerd5a83252010-01-20 21:36:48 +0000889 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
890 const MCSymbol *Stub = Stubs[i].first;
891 const MCSymbol *RawSym = Stubs[i].second;
892 const MCSymbol *LazyPtr = GetLazyPtr(Stub, OutContext);
893
Chris Lattner5b187502010-01-20 21:19:44 +0000894 OutStreamer.SwitchSection(StubSection);
895 EmitAlignment(4);
Chris Lattnerd5a83252010-01-20 21:36:48 +0000896 O << *Stub << ":\n";
897 O << "\t.indirect_symbol " << *RawSym << '\n';
898 O << "\tlis r11,ha16(" << *LazyPtr << ")\n";
899 O << (isPPC64 ? "\tldu" : "\tlwzu") << " r12,lo16(" << *LazyPtr
Chris Lattner5b187502010-01-20 21:19:44 +0000900 << ")(r11)\n";
901 O << "\tmtctr r12\n";
902 O << "\tbctr\n";
903 OutStreamer.SwitchSection(LSPSection);
Chris Lattnerd5a83252010-01-20 21:36:48 +0000904 O << *LazyPtr << ":\n";
905 O << "\t.indirect_symbol " << *RawSym << '\n';
Chris Lattner5b187502010-01-20 21:19:44 +0000906 O << (isPPC64 ? "\t.quad" : "\t.long") << " dyld_stub_binding_helper\n";
907 }
908
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000909 O << '\n';
Chris Lattner5b187502010-01-20 21:19:44 +0000910}
911
912
913bool PPCDarwinAsmPrinter::doFinalization(Module &M) {
914 bool isPPC64 = TM.getTargetData()->getPointerSizeInBits() == 64;
915
916 // Darwin/PPC always uses mach-o.
917 TargetLoweringObjectFileMachO &TLOFMacho =
918 static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
919 MachineModuleInfoMachO &MMIMacho =
920 MMI->getObjFileInfo<MachineModuleInfoMachO>();
921
Chris Lattnerd5a83252010-01-20 21:36:48 +0000922 MachineModuleInfoMachO::SymbolListTy Stubs = MMIMacho.GetFnStubList();
923 if (!Stubs.empty())
924 EmitFunctionStubs(Stubs);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000925
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000926 if (MAI->doesSupportExceptionHandling() && MMI) {
Dale Johannesenfb3ac732007-11-20 23:24:42 +0000927 // Add the (possibly multiple) personalities to the set of global values.
Dale Johannesen85535762008-04-02 00:25:04 +0000928 // Only referenced functions get into the Personalities list.
Chris Lattner2424eac2009-06-24 19:09:55 +0000929 const std::vector<Function *> &Personalities = MMI->getPersonalities();
Dale Johannesenfb3ac732007-11-20 23:24:42 +0000930 for (std::vector<Function *>::const_iterator I = Personalities.begin(),
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000931 E = Personalities.end(); I != E; ++I) {
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000932 if (*I) {
933 const MCSymbol *NLPSym =
Chris Lattnera6f2a102010-01-16 18:37:32 +0000934 GetSymbolWithGlobalValueBase(*I, "$non_lazy_ptr");
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000935 const MCSymbol *&StubSym = MMIMacho.getGVStubEntry(NLPSym);
936 StubSym = GetGlobalValueSymbol(*I);
937 }
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000938 }
Dale Johannesenfb3ac732007-11-20 23:24:42 +0000939 }
940
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000941 // Output stubs for dynamically-linked functions.
Chris Lattnerd5a83252010-01-20 21:36:48 +0000942 Stubs = MMIMacho.GetGVStubList();
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000943
Chris Lattnerf4815552009-08-03 22:52:21 +0000944 // Output macho stubs for external and common global variables.
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000945 if (!Stubs.empty()) {
Chris Lattner72a676a2009-08-10 01:39:42 +0000946 // Switch with ".non_lazy_symbol_pointer" directive.
Chris Lattner73266f92009-08-19 05:49:37 +0000947 OutStreamer.SwitchSection(TLOFMacho.getNonLazySymbolPointerSection());
Chris Lattner2d61eaa2009-08-10 17:58:51 +0000948 EmitAlignment(isPPC64 ? 3 : 2);
949
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000950 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
951 O << *Stubs[i].first << ":\n";
952 O << "\t.indirect_symbol " << *Stubs[i].second << '\n';
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000953 O << (isPPC64 ? "\t.quad\t0\n" : "\t.long\t0\n");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000954 }
955 }
956
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000957 Stubs = MMIMacho.GetHiddenGVStubList();
958 if (!Stubs.empty()) {
Chris Lattner73266f92009-08-19 05:49:37 +0000959 OutStreamer.SwitchSection(getObjFileLowering().getDataSection());
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000960 EmitAlignment(isPPC64 ? 3 : 2);
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000961
962 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
963 O << *Stubs[i].first << ":\n";
964 O << (isPPC64 ? "\t.quad\t" : "\t.long\t") << *Stubs[i].second << '\n';
Evan Chenga65854f2008-12-05 01:06:39 +0000965 }
966 }
967
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000968 // Funny Darwin hack: This flag tells the linker that no global symbols
969 // contain code that falls through to other global symbols (e.g. the obvious
970 // implementation of multiple entry points). If this doesn't occur, the
971 // linker can safely perform dead code stripping. Since LLVM never generates
972 // code that does this, it is always safe to set.
Chris Lattnerfe284f72009-10-19 18:03:08 +0000973 OutStreamer.EmitAssemblerFlag(MCStreamer::SubsectionsViaSymbols);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000974
Dan Gohman4a558a32007-07-25 19:33:14 +0000975 return AsmPrinter::doFinalization(M);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000976}
977
978
979
980/// createPPCAsmPrinterPass - Returns a pass that prints the PPC assembly code
981/// for a MachineFunction to the given output stream, in a format that the
982/// Darwin assembler can deal with.
983///
Daniel Dunbar4cb63652009-08-13 23:48:47 +0000984static AsmPrinter *createPPCAsmPrinterPass(formatted_raw_ostream &o,
985 TargetMachine &tm,
Chris Lattner621c44d2009-08-22 20:48:53 +0000986 const MCAsmInfo *tai,
Daniel Dunbar4cb63652009-08-13 23:48:47 +0000987 bool verbose) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000988 const PPCSubtarget *Subtarget = &tm.getSubtarget<PPCSubtarget>();
989
Chris Lattnerae982212009-07-21 18:38:57 +0000990 if (Subtarget->isDarwin())
Daniel Dunbaref5abb42009-08-13 19:38:51 +0000991 return new PPCDarwinAsmPrinter(o, tm, tai, verbose);
992 return new PPCLinuxAsmPrinter(o, tm, tai, verbose);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000993}
Anton Korobeynikov01c0e9f2008-08-17 13:54:28 +0000994
Bob Wilsonebbc1c42009-06-23 23:59:40 +0000995// Force static initialization.
Daniel Dunbarfe5939f2009-07-15 20:24:03 +0000996extern "C" void LLVMInitializePowerPCAsmPrinter() {
Daniel Dunbarfe5939f2009-07-15 20:24:03 +0000997 TargetRegistry::RegisterAsmPrinter(ThePPC32Target, createPPCAsmPrinterPass);
Daniel Dunbarfe5939f2009-07-15 20:24:03 +0000998 TargetRegistry::RegisterAsmPrinter(ThePPC64Target, createPPCAsmPrinterPass);
999}