blob: 3c7dfaf0f6e0d0a420b1a4b449ee4f7d84fddbf3 [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"
Anton Korobeynikov84d365c2010-02-15 22:37:53 +000034#include "llvm/CodeGen/TargetLoweringObjectFileImpl.h"
Chris Lattnerc6f802d2009-09-13 17:14:04 +000035#include "llvm/MC/MCAsmInfo.h"
Chris Lattner9bc87482010-01-13 19:00:57 +000036#include "llvm/MC/MCContext.h"
Chris Lattner7f1ac7f2009-08-10 18:15:01 +000037#include "llvm/MC/MCSectionMachO.h"
Chris Lattner73266f92009-08-19 05:49:37 +000038#include "llvm/MC/MCStreamer.h"
Chris Lattnerc6f802d2009-09-13 17:14:04 +000039#include "llvm/MC/MCSymbol.h"
Chris Lattner31a54742010-01-16 21:57:06 +000040#include "llvm/Target/Mangler.h"
Chris Lattnere6ad12f2009-07-31 18:48:30 +000041#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/StringExtras.h"
Evan Chenga65854f2008-12-05 01:06:39 +000051#include "llvm/ADT/StringSet.h"
Chris Lattnera38b2872010-01-13 06:38:18 +000052#include "llvm/ADT/SmallString.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000053using namespace llvm;
54
Dan Gohmanf17a25c2007-07-18 16:29:46 +000055namespace {
Nick Lewycky492d06e2009-10-25 06:33:48 +000056 class PPCAsmPrinter : public AsmPrinter {
Bill Wendling4f405312009-02-24 08:30:20 +000057 protected:
Chris Lattnerc2cfe152010-01-20 21:16:14 +000058 DenseMap<const MCSymbol*, const MCSymbol*> TOC;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000059 const PPCSubtarget &Subtarget;
Tilmann Scheller72cf2812009-08-15 11:54:46 +000060 uint64_t LabelID;
Bill Wendling4f405312009-02-24 08:30:20 +000061 public:
David Greene302008d2009-07-14 20:18:05 +000062 explicit PPCAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
Chris Lattner8d2970b2010-02-02 23:37:42 +000063 MCContext &Ctx, MCStreamer &Streamer,
64 const MCAsmInfo *T)
65 : AsmPrinter(O, TM, Ctx, Streamer, T),
Tilmann Scheller72cf2812009-08-15 11:54:46 +000066 Subtarget(TM.getSubtarget<PPCSubtarget>()), LabelID(0) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +000067
68 virtual const char *getPassName() const {
69 return "PowerPC Assembly Printer";
70 }
71
72 PPCTargetMachine &getTM() {
73 return static_cast<PPCTargetMachine&>(TM);
74 }
75
76 unsigned enumRegToMachineReg(unsigned enumReg) {
77 switch (enumReg) {
Edwin Törökbd448e32009-07-14 16:55:14 +000078 default: llvm_unreachable("Unhandled register!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +000079 case PPC::CR0: return 0;
80 case PPC::CR1: return 1;
81 case PPC::CR2: return 2;
82 case PPC::CR3: return 3;
83 case PPC::CR4: return 4;
84 case PPC::CR5: return 5;
85 case PPC::CR6: return 6;
86 case PPC::CR7: return 7;
87 }
Edwin Törökbd448e32009-07-14 16:55:14 +000088 llvm_unreachable(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000089 }
90
91 /// printInstruction - This method is automatically generated by tablegen
92 /// from the instruction set description. This method returns true if the
93 /// machine instruction was sufficiently described to print it, otherwise it
94 /// returns false.
Chris Lattnerddb259a2009-08-08 01:32:19 +000095 void printInstruction(const MachineInstr *MI);
Chris Lattner213703c2009-09-13 20:19:22 +000096 static const char *getRegisterName(unsigned RegNo);
Chris Lattner92221692009-09-13 20:08:00 +000097
Dan Gohmanf17a25c2007-07-18 16:29:46 +000098
Chris Lattner1d40b372010-01-28 01:28:58 +000099 virtual void EmitInstruction(const MachineInstr *MI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000100 void printOp(const MachineOperand &MO);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000101
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000102 /// stripRegisterPrefix - This method strips the character prefix from a
103 /// register name so that only the number is left. Used by for linux asm.
104 const char *stripRegisterPrefix(const char *RegName) {
105 switch (RegName[0]) {
106 case 'r':
107 case 'f':
108 case 'v': return RegName + 1;
109 case 'c': if (RegName[1] == 'r') return RegName + 2;
110 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000111
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000112 return RegName;
113 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000114
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000115 /// printRegister - Print register according to target requirements.
116 ///
117 void printRegister(const MachineOperand &MO, bool R0AsZero) {
118 unsigned RegNo = MO.getReg();
Dan Gohman1e57df32008-02-10 18:45:23 +0000119 assert(TargetRegisterInfo::isPhysicalRegister(RegNo) && "Not physreg??");
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000120
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000121 // If we should use 0 for R0.
122 if (R0AsZero && RegNo == PPC::R0) {
123 O << "0";
124 return;
125 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000126
Chris Lattnerf0a25de2009-09-13 20:31:40 +0000127 const char *RegName = getRegisterName(RegNo);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000128 // Linux assembler (Others?) does not take register mnemonics.
129 // FIXME - What about special registers used in mfspr/mtspr?
130 if (!Subtarget.isDarwin()) RegName = stripRegisterPrefix(RegName);
131 O << RegName;
132 }
133
134 void printOperand(const MachineInstr *MI, unsigned OpNo) {
135 const MachineOperand &MO = MI->getOperand(OpNo);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000136 if (MO.isReg()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000137 printRegister(MO, false);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000138 } else if (MO.isImm()) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000139 O << MO.getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000140 } else {
141 printOp(MO);
142 }
143 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000144
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000145 bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
146 unsigned AsmVariant, const char *ExtraCode);
147 bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
148 unsigned AsmVariant, const char *ExtraCode);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000149
150
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000151 void printS5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000152 char value = MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000153 value = (value << (32-5)) >> (32-5);
154 O << (int)value;
155 }
156 void printU5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000157 unsigned char value = MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000158 assert(value <= 31 && "Invalid u5imm argument!");
159 O << (unsigned int)value;
160 }
161 void printU6ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000162 unsigned char value = MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000163 assert(value <= 63 && "Invalid u6imm argument!");
164 O << (unsigned int)value;
165 }
166 void printS16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000167 O << (short)MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000168 }
169 void printU16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000170 O << (unsigned short)MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000171 }
172 void printS16X4ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000173 if (MI->getOperand(OpNo).isImm()) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000174 O << (short)(MI->getOperand(OpNo).getImm()*4);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000175 } else {
176 O << "lo16(";
177 printOp(MI->getOperand(OpNo));
178 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng477013c2007-10-14 05:57:21 +0000179 O << "-\"L" << getFunctionNumber() << "$pb\")";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000180 else
181 O << ')';
182 }
183 }
184 void printBranchOperand(const MachineInstr *MI, unsigned OpNo) {
185 // Branches can take an immediate operand. This is used by the branch
186 // selection pass to print $+8, an eight byte displacement from the PC.
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000187 if (MI->getOperand(OpNo).isImm()) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000188 O << "$+" << MI->getOperand(OpNo).getImm()*4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000189 } else {
190 printOp(MI->getOperand(OpNo));
191 }
192 }
193 void printCallOperand(const MachineInstr *MI, unsigned OpNo) {
194 const MachineOperand &MO = MI->getOperand(OpNo);
195 if (TM.getRelocationModel() != Reloc::Static) {
196 if (MO.getType() == MachineOperand::MO_GlobalAddress) {
197 GlobalValue *GV = MO.getGlobal();
Chris Lattner0fd4feb2009-07-02 16:08:53 +0000198 if (GV->isDeclaration() || GV->isWeakForLinker()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000199 // Dynamically-resolved functions need a stub for the function.
Chris Lattnerd5a83252010-01-20 21:36:48 +0000200 MCSymbol *Sym = GetSymbolWithGlobalValueBase(GV, "$stub");
Chris Lattner77653062010-02-03 06:18:30 +0000201 MCSymbol *&StubSym =
Chris Lattnerd5a83252010-01-20 21:36:48 +0000202 MMI->getObjFileInfo<MachineModuleInfoMachO>().getFnStubEntry(Sym);
203 if (StubSym == 0)
204 StubSym = GetGlobalValueSymbol(GV);
205 O << *Sym;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000206 return;
207 }
208 }
209 if (MO.getType() == MachineOperand::MO_ExternalSymbol) {
Chris Lattnerd5a83252010-01-20 21:36:48 +0000210 SmallString<128> TempNameStr;
211 TempNameStr += StringRef(MO.getSymbolName());
212 TempNameStr += StringRef("$stub");
213
Chris Lattner77653062010-02-03 06:18:30 +0000214 MCSymbol *Sym = GetExternalSymbolSymbol(TempNameStr.str());
215 MCSymbol *&StubSym =
Chris Lattnerd5a83252010-01-20 21:36:48 +0000216 MMI->getObjFileInfo<MachineModuleInfoMachO>().getFnStubEntry(Sym);
Chris Lattner27595f22010-01-21 20:43:39 +0000217 if (StubSym == 0)
Chris Lattner922f32f2010-01-21 19:58:19 +0000218 StubSym = GetExternalSymbolSymbol(MO.getSymbolName());
Chris Lattnerd5a83252010-01-20 21:36:48 +0000219 O << *Sym;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000220 return;
221 }
222 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000223
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000224 printOp(MI->getOperand(OpNo));
225 }
226 void printAbsAddrOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000227 O << (int)MI->getOperand(OpNo).getImm()*4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000228 }
229 void printPICLabel(const MachineInstr *MI, unsigned OpNo) {
Evan Cheng477013c2007-10-14 05:57:21 +0000230 O << "\"L" << getFunctionNumber() << "$pb\"\n";
231 O << "\"L" << getFunctionNumber() << "$pb\":";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000232 }
233 void printSymbolHi(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000234 if (MI->getOperand(OpNo).isImm()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000235 printS16ImmOperand(MI, OpNo);
236 } else {
237 if (Subtarget.isDarwin()) O << "ha16(";
238 printOp(MI->getOperand(OpNo));
239 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng477013c2007-10-14 05:57:21 +0000240 O << "-\"L" << getFunctionNumber() << "$pb\"";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000241 if (Subtarget.isDarwin())
242 O << ')';
243 else
244 O << "@ha";
245 }
246 }
247 void printSymbolLo(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000248 if (MI->getOperand(OpNo).isImm()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000249 printS16ImmOperand(MI, OpNo);
250 } else {
251 if (Subtarget.isDarwin()) O << "lo16(";
252 printOp(MI->getOperand(OpNo));
253 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng477013c2007-10-14 05:57:21 +0000254 O << "-\"L" << getFunctionNumber() << "$pb\"";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000255 if (Subtarget.isDarwin())
256 O << ')';
257 else
258 O << "@l";
259 }
260 }
261 void printcrbitm(const MachineInstr *MI, unsigned OpNo) {
262 unsigned CCReg = MI->getOperand(OpNo).getReg();
263 unsigned RegNo = enumRegToMachineReg(CCReg);
264 O << (0x80 >> RegNo);
265 }
266 // The new addressing mode printers.
267 void printMemRegImm(const MachineInstr *MI, unsigned OpNo) {
268 printSymbolLo(MI, OpNo);
269 O << '(';
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000270 if (MI->getOperand(OpNo+1).isReg() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000271 MI->getOperand(OpNo+1).getReg() == PPC::R0)
272 O << "0";
273 else
274 printOperand(MI, OpNo+1);
275 O << ')';
276 }
277 void printMemRegImmShifted(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000278 if (MI->getOperand(OpNo).isImm())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000279 printS16X4ImmOperand(MI, OpNo);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000280 else
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000281 printSymbolLo(MI, OpNo);
282 O << '(';
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000283 if (MI->getOperand(OpNo+1).isReg() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000284 MI->getOperand(OpNo+1).getReg() == PPC::R0)
285 O << "0";
286 else
287 printOperand(MI, OpNo+1);
288 O << ')';
289 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000290
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000291 void printMemRegReg(const MachineInstr *MI, unsigned OpNo) {
292 // When used as the base register, r0 reads constant zero rather than
293 // the value contained in the register. For this reason, the darwin
294 // assembler requires that we print r0 as 0 (no r) when used as the base.
295 const MachineOperand &MO = MI->getOperand(OpNo);
296 printRegister(MO, true);
297 O << ", ";
298 printOperand(MI, OpNo+1);
299 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000300
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000301 void printTOCEntryLabel(const MachineInstr *MI, unsigned OpNo) {
302 const MachineOperand &MO = MI->getOperand(OpNo);
303
304 assert(MO.getType() == MachineOperand::MO_GlobalAddress);
305
Chris Lattnerc3009922010-01-16 02:09:06 +0000306 const MCSymbol *Sym = GetGlobalValueSymbol(MO.getGlobal());
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000307
308 // Map symbol -> label of TOC entry.
Chris Lattnerc3009922010-01-16 02:09:06 +0000309 const MCSymbol *&TOCEntry = TOC[Sym];
310 if (TOCEntry == 0)
311 TOCEntry = OutContext.
Chris Lattner72121e42010-03-10 02:25:11 +0000312 GetOrCreateTemporarySymbol(StringRef(MAI->getPrivateGlobalPrefix()) +
313 "C" + Twine(LabelID++));
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000314
Chris Lattnerce409842010-01-17 21:43:43 +0000315 O << *TOCEntry << "@toc";
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000316 }
317
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000318 void printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000319 const char *Modifier);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000320 };
321
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000322 /// PPCLinuxAsmPrinter - PowerPC assembly printer, customized for Linux
Nick Lewycky492d06e2009-10-25 06:33:48 +0000323 class PPCLinuxAsmPrinter : public PPCAsmPrinter {
Bill Wendling4f405312009-02-24 08:30:20 +0000324 public:
Daniel Dunbarfe5939f2009-07-15 20:24:03 +0000325 explicit PPCLinuxAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
Chris Lattner8d2970b2010-02-02 23:37:42 +0000326 MCContext &Ctx, MCStreamer &Streamer,
327 const MCAsmInfo *T)
328 : PPCAsmPrinter(O, TM, Ctx, Streamer, T) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000329
330 virtual const char *getPassName() const {
331 return "Linux PPC Assembly Printer";
332 }
333
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000334 bool doFinalization(Module &M);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000335
Chris Lattneraec7a8a2010-01-27 07:21:55 +0000336 virtual void EmitFunctionEntryLabel();
337
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000338 void getAnalysisUsage(AnalysisUsage &AU) const {
339 AU.setPreservesAll();
340 AU.addRequired<MachineModuleInfo>();
Devang Patelaa1e8432009-01-08 23:40:34 +0000341 AU.addRequired<DwarfWriter>();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000342 PPCAsmPrinter::getAnalysisUsage(AU);
343 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000344 };
345
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000346 /// PPCDarwinAsmPrinter - PowerPC assembly printer, customized for Darwin/Mac
347 /// OS X
Nick Lewycky492d06e2009-10-25 06:33:48 +0000348 class PPCDarwinAsmPrinter : public PPCAsmPrinter {
David Greene302008d2009-07-14 20:18:05 +0000349 formatted_raw_ostream &OS;
Bill Wendling4f405312009-02-24 08:30:20 +0000350 public:
Daniel Dunbarfe5939f2009-07-15 20:24:03 +0000351 explicit PPCDarwinAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
Chris Lattner8d2970b2010-02-02 23:37:42 +0000352 MCContext &Ctx, MCStreamer &Streamer,
353 const MCAsmInfo *T)
354 : PPCAsmPrinter(O, TM, Ctx, Streamer, T), OS(O) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000355
356 virtual const char *getPassName() const {
357 return "Darwin PPC Assembly Printer";
358 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000359
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000360 bool doFinalization(Module &M);
Bob Wilsonb5f835e2009-09-30 22:06:26 +0000361 void EmitStartOfAsmFile(Module &M);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000362
Chris Lattnerd5a83252010-01-20 21:36:48 +0000363 void EmitFunctionStubs(const MachineModuleInfoMachO::SymbolListTy &Stubs);
Chris Lattner5b187502010-01-20 21:19:44 +0000364
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000365 void getAnalysisUsage(AnalysisUsage &AU) const {
366 AU.setPreservesAll();
367 AU.addRequired<MachineModuleInfo>();
Devang Patelaa1e8432009-01-08 23:40:34 +0000368 AU.addRequired<DwarfWriter>();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000369 PPCAsmPrinter::getAnalysisUsage(AU);
370 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000371 };
372} // end of anonymous namespace
373
374// Include the auto-generated portion of the assembly writer
375#include "PPCGenAsmWriter.inc"
376
377void PPCAsmPrinter::printOp(const MachineOperand &MO) {
378 switch (MO.getType()) {
379 case MachineOperand::MO_Immediate:
Edwin Törökbd448e32009-07-14 16:55:14 +0000380 llvm_unreachable("printOp() does not handle immediate values");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000381
382 case MachineOperand::MO_MachineBasicBlock:
Chris Lattner84d5ca92010-01-26 04:55:51 +0000383 O << *MO.getMBB()->getSymbol(OutContext);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000384 return;
385 case MachineOperand::MO_JumpTableIndex:
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000386 O << MAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
Chris Lattner6017d482007-12-30 23:10:15 +0000387 << '_' << MO.getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000388 // FIXME: PIC relocation model
389 return;
390 case MachineOperand::MO_ConstantPoolIndex:
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000391 O << MAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber()
Chris Lattner6017d482007-12-30 23:10:15 +0000392 << '_' << MO.getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000393 return;
Bob Wilsone8cbca92009-11-04 21:31:18 +0000394 case MachineOperand::MO_BlockAddress:
Chris Lattnerce409842010-01-17 21:43:43 +0000395 O << *GetBlockAddressSymbol(MO.getBlockAddress());
Bob Wilsone8cbca92009-11-04 21:31:18 +0000396 return;
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000397 case MachineOperand::MO_ExternalSymbol: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000398 // Computing the address of an external symbol, not calling it.
Chris Lattnerc3009922010-01-16 02:09:06 +0000399 if (TM.getRelocationModel() == Reloc::Static) {
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000400 O << *GetExternalSymbolSymbol(MO.getSymbolName());
Chris Lattnerc3009922010-01-16 02:09:06 +0000401 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000402 }
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000403
Chris Lattner77653062010-02-03 06:18:30 +0000404 MCSymbol *NLPSym =
Chris Lattnerc3009922010-01-16 02:09:06 +0000405 OutContext.GetOrCreateSymbol(StringRef(MAI->getGlobalPrefix())+
406 MO.getSymbolName()+"$non_lazy_ptr");
Chris Lattner77653062010-02-03 06:18:30 +0000407 MCSymbol *&StubSym =
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000408 MMI->getObjFileInfo<MachineModuleInfoMachO>().getGVStubEntry(NLPSym);
409 if (StubSym == 0)
410 StubSym = GetExternalSymbolSymbol(MO.getSymbolName());
411
Chris Lattnerce409842010-01-17 21:43:43 +0000412 O << *NLPSym;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000413 return;
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000414 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000415 case MachineOperand::MO_GlobalAddress: {
416 // Computing the address of a global symbol, not calling it.
417 GlobalValue *GV = MO.getGlobal();
Chris Lattner5eeaf2a2010-01-16 02:00:23 +0000418 MCSymbol *SymToPrint;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000419
420 // External or weakly linked global variables need non-lazily-resolved stubs
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000421 if (TM.getRelocationModel() != Reloc::Static &&
422 (GV->isDeclaration() || GV->isWeakForLinker())) {
423 if (!GV->hasHiddenVisibility()) {
Chris Lattnera6f2a102010-01-16 18:37:32 +0000424 SymToPrint = GetSymbolWithGlobalValueBase(GV, "$non_lazy_ptr");
Chris Lattner77653062010-02-03 06:18:30 +0000425 MCSymbol *&StubSym =
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000426 MMI->getObjFileInfo<MachineModuleInfoMachO>().getGVStubEntry(SymToPrint);
427 if (StubSym == 0)
428 StubSym = GetGlobalValueSymbol(GV);
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000429 } else if (GV->isDeclaration() || GV->hasCommonLinkage() ||
430 GV->hasAvailableExternallyLinkage()) {
Chris Lattnera6f2a102010-01-16 18:37:32 +0000431 SymToPrint = GetSymbolWithGlobalValueBase(GV, "$non_lazy_ptr");
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000432
Chris Lattner77653062010-02-03 06:18:30 +0000433 MCSymbol *&StubSym =
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000434 MMI->getObjFileInfo<MachineModuleInfoMachO>().
435 getHiddenGVStubEntry(SymToPrint);
436 if (StubSym == 0)
437 StubSym = GetGlobalValueSymbol(GV);
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000438 } else {
Chris Lattner5eeaf2a2010-01-16 02:00:23 +0000439 SymToPrint = GetGlobalValueSymbol(GV);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000440 }
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000441 } else {
Chris Lattner5eeaf2a2010-01-16 02:00:23 +0000442 SymToPrint = GetGlobalValueSymbol(GV);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000443 }
Chris Lattner5eeaf2a2010-01-16 02:00:23 +0000444
Chris Lattnerce409842010-01-17 21:43:43 +0000445 O << *SymToPrint;
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000446
Anton Korobeynikov440f23d2008-11-22 16:15:34 +0000447 printOffset(MO.getOffset());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000448 return;
449 }
450
451 default:
452 O << "<unknown operand type: " << MO.getType() << ">";
453 return;
454 }
455}
456
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000457/// PrintAsmOperand - Print out an operand for an inline asm expression.
458///
459bool PPCAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000460 unsigned AsmVariant,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000461 const char *ExtraCode) {
462 // Does this asm operand have a single letter operand modifier?
463 if (ExtraCode && ExtraCode[0]) {
464 if (ExtraCode[1] != 0) return true; // Unknown modifier.
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000465
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000466 switch (ExtraCode[0]) {
467 default: return true; // Unknown modifier.
468 case 'c': // Don't print "$" before a global var name or constant.
469 // PPC never has a prefix.
470 printOperand(MI, OpNo);
471 return false;
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000472 case 'L': // Write second word of DImode reference.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000473 // Verify that this operand has two consecutive registers.
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000474 if (!MI->getOperand(OpNo).isReg() ||
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000475 OpNo+1 == MI->getNumOperands() ||
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000476 !MI->getOperand(OpNo+1).isReg())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000477 return true;
478 ++OpNo; // Return the high-part.
479 break;
480 case 'I':
481 // Write 'i' if an integer constant, otherwise nothing. Used to print
482 // addi vs add, etc.
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000483 if (MI->getOperand(OpNo).isImm())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000484 O << "i";
485 return false;
486 }
487 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000488
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000489 printOperand(MI, OpNo);
490 return false;
491}
492
Dale Johannesen0a42b9662009-08-18 00:18:39 +0000493// At the moment, all inline asm memory operands are a single register.
494// In any case, the output of this routine should always be just one
495// assembler operand.
496
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000497bool PPCAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000498 unsigned AsmVariant,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000499 const char *ExtraCode) {
500 if (ExtraCode && ExtraCode[0])
501 return true; // Unknown modifier.
Dale Johannesen0a42b9662009-08-18 00:18:39 +0000502 assert (MI->getOperand(OpNo).isReg());
Dale Johannesen5e699502009-08-26 18:10:32 +0000503 O << "0(";
Dale Johannesen0a42b9662009-08-18 00:18:39 +0000504 printOperand(MI, OpNo);
Dale Johannesen5e699502009-08-26 18:10:32 +0000505 O << ")";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000506 return false;
507}
508
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000509void PPCAsmPrinter::printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000510 const char *Modifier) {
511 assert(Modifier && "Must specify 'cc' or 'reg' as predicate op modifier!");
512 unsigned Code = MI->getOperand(OpNo).getImm();
513 if (!strcmp(Modifier, "cc")) {
514 switch ((PPC::Predicate)Code) {
515 case PPC::PRED_ALWAYS: return; // Don't print anything for always.
516 case PPC::PRED_LT: O << "lt"; return;
517 case PPC::PRED_LE: O << "le"; return;
518 case PPC::PRED_EQ: O << "eq"; return;
519 case PPC::PRED_GE: O << "ge"; return;
520 case PPC::PRED_GT: O << "gt"; return;
521 case PPC::PRED_NE: O << "ne"; return;
522 case PPC::PRED_UN: O << "un"; return;
523 case PPC::PRED_NU: O << "nu"; return;
524 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000525
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000526 } else {
527 assert(!strcmp(Modifier, "reg") &&
528 "Need to specify 'cc' or 'reg' as predicate op modifier!");
529 // Don't print the register for 'always'.
530 if (Code == PPC::PRED_ALWAYS) return;
531 printOperand(MI, OpNo+1);
532 }
533}
534
535
Chris Lattner1d40b372010-01-28 01:28:58 +0000536/// EmitInstruction -- Print out a single PowerPC MI in Darwin syntax to
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000537/// the current output stream.
538///
Chris Lattner1d40b372010-01-28 01:28:58 +0000539void PPCAsmPrinter::EmitInstruction(const MachineInstr *MI) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000540 // Check for slwi/srwi mnemonics.
541 if (MI->getOpcode() == PPC::RLWINM) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000542 unsigned char SH = MI->getOperand(2).getImm();
543 unsigned char MB = MI->getOperand(3).getImm();
544 unsigned char ME = MI->getOperand(4).getImm();
Chris Lattner1d40b372010-01-28 01:28:58 +0000545 bool useSubstituteMnemonic = false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000546 if (SH <= 31 && MB == 0 && ME == (31-SH)) {
Dale Johannesen760acc02010-01-06 02:20:18 +0000547 O << "\tslwi "; useSubstituteMnemonic = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000548 }
549 if (SH <= 31 && MB == (32-SH) && ME == 31) {
Dale Johannesen760acc02010-01-06 02:20:18 +0000550 O << "\tsrwi "; useSubstituteMnemonic = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000551 SH = 32-SH;
552 }
Dale Johannesen760acc02010-01-06 02:20:18 +0000553 if (useSubstituteMnemonic) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000554 printOperand(MI, 0);
555 O << ", ";
556 printOperand(MI, 1);
Dale Johannesen760acc02010-01-06 02:20:18 +0000557 O << ", " << (unsigned int)SH;
Chris Lattner726d3972010-02-10 00:36:00 +0000558 OutStreamer.AddBlankLine();
Chris Lattner1d40b372010-01-28 01:28:58 +0000559 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000560 }
Chris Lattner1d40b372010-01-28 01:28:58 +0000561 }
562
563 if ((MI->getOpcode() == PPC::OR || MI->getOpcode() == PPC::OR8) &&
564 MI->getOperand(1).getReg() == MI->getOperand(2).getReg()) {
565 O << "\tmr ";
566 printOperand(MI, 0);
567 O << ", ";
568 printOperand(MI, 1);
Chris Lattner726d3972010-02-10 00:36:00 +0000569 OutStreamer.AddBlankLine();
Chris Lattner1d40b372010-01-28 01:28:58 +0000570 return;
571 }
572
573 if (MI->getOpcode() == PPC::RLDICR) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000574 unsigned char SH = MI->getOperand(2).getImm();
575 unsigned char ME = MI->getOperand(3).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000576 // rldicr RA, RS, SH, 63-SH == sldi RA, RS, SH
577 if (63-SH == ME) {
Nate Begemanbd5cdf12008-02-05 08:49:09 +0000578 O << "\tsldi ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000579 printOperand(MI, 0);
580 O << ", ";
581 printOperand(MI, 1);
Dale Johannesen760acc02010-01-06 02:20:18 +0000582 O << ", " << (unsigned int)SH;
Chris Lattner726d3972010-02-10 00:36:00 +0000583 OutStreamer.AddBlankLine();
Chris Lattner1d40b372010-01-28 01:28:58 +0000584 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000585 }
586 }
587
Chris Lattner1d40b372010-01-28 01:28:58 +0000588 printInstruction(MI);
Chris Lattner726d3972010-02-10 00:36:00 +0000589 OutStreamer.AddBlankLine();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000590}
591
Chris Lattneraec7a8a2010-01-27 07:21:55 +0000592void PPCLinuxAsmPrinter::EmitFunctionEntryLabel() {
593 if (!Subtarget.isPPC64()) // linux/ppc32 - Normal entry label.
594 return AsmPrinter::EmitFunctionEntryLabel();
595
596 // Emit an official procedure descriptor.
597 // FIXME 64-bit SVR4: Use MCSection here!
598 O << "\t.section\t\".opd\",\"aw\"\n";
599 O << "\t.align 3\n";
600 OutStreamer.EmitLabel(CurrentFnSym);
601 O << "\t.quad .L." << *CurrentFnSym << ",.TOC.@tocbase\n";
602 O << "\t.previous\n";
603 O << ".L." << *CurrentFnSym << ":\n";
604}
605
606
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000607bool PPCLinuxAsmPrinter::doFinalization(Module &M) {
608 const TargetData *TD = TM.getTargetData();
609
610 bool isPPC64 = TD->getPointerSizeInBits() == 64;
611
612 if (isPPC64 && !TOC.empty()) {
613 // FIXME 64-bit SVR4: Use MCSection here?
614 O << "\t.section\t\".toc\",\"aw\"\n";
615
Chris Lattner5eeaf2a2010-01-16 02:00:23 +0000616 // FIXME: This is nondeterminstic!
Chris Lattnerc3009922010-01-16 02:09:06 +0000617 for (DenseMap<const MCSymbol*, const MCSymbol*>::iterator I = TOC.begin(),
618 E = TOC.end(); I != E; ++I) {
Chris Lattnerce409842010-01-17 21:43:43 +0000619 O << *I->second << ":\n";
620 O << "\t.tc " << *I->first << "[TC]," << *I->first << '\n';
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000621 }
622 }
623
624 return AsmPrinter::doFinalization(M);
625}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000626
Bob Wilsonb5f835e2009-09-30 22:06:26 +0000627void PPCDarwinAsmPrinter::EmitStartOfAsmFile(Module &M) {
Dan Gohman12300e12008-03-25 21:45:14 +0000628 static const char *const CPUDirectives[] = {
Dale Johannesen161badc2008-02-14 23:35:16 +0000629 "",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000630 "ppc",
631 "ppc601",
632 "ppc602",
633 "ppc603",
634 "ppc7400",
635 "ppc750",
636 "ppc970",
637 "ppc64"
638 };
639
640 unsigned Directive = Subtarget.getDarwinDirective();
641 if (Subtarget.isGigaProcessor() && Directive < PPC::DIR_970)
642 Directive = PPC::DIR_970;
643 if (Subtarget.hasAltivec() && Directive < PPC::DIR_7400)
644 Directive = PPC::DIR_7400;
645 if (Subtarget.isPPC64() && Directive < PPC::DIR_970)
646 Directive = PPC::DIR_64;
647 assert(Directive <= PPC::DIR_64 && "Directive out of range.");
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000648 O << "\t.machine " << CPUDirectives[Directive] << '\n';
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000649
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000650 // Prime text sections so they are adjacent. This reduces the likelihood a
651 // large data or debug section causes a branch to exceed 16M limit.
Chris Lattnerf4815552009-08-03 22:52:21 +0000652 TargetLoweringObjectFileMachO &TLOFMacho =
653 static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
Chris Lattner73266f92009-08-19 05:49:37 +0000654 OutStreamer.SwitchSection(TLOFMacho.getTextCoalSection());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000655 if (TM.getRelocationModel() == Reloc::PIC_) {
Chris Lattner73266f92009-08-19 05:49:37 +0000656 OutStreamer.SwitchSection(
657 TLOFMacho.getMachOSection("__TEXT", "__picsymbolstub1",
658 MCSectionMachO::S_SYMBOL_STUBS |
659 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
660 32, SectionKind::getText()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000661 } else if (TM.getRelocationModel() == Reloc::DynamicNoPIC) {
Chris Lattner73266f92009-08-19 05:49:37 +0000662 OutStreamer.SwitchSection(
663 TLOFMacho.getMachOSection("__TEXT","__symbol_stub1",
664 MCSectionMachO::S_SYMBOL_STUBS |
665 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
666 16, SectionKind::getText()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000667 }
Chris Lattner73266f92009-08-19 05:49:37 +0000668 OutStreamer.SwitchSection(getObjFileLowering().getTextSection());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000669}
670
Chris Lattnerd5a83252010-01-20 21:36:48 +0000671static const MCSymbol *GetLazyPtr(const MCSymbol *Sym, MCContext &Ctx) {
672 // Remove $stub suffix, add $lazy_ptr.
673 SmallString<128> TmpStr(Sym->getName().begin(), Sym->getName().end()-5);
674 TmpStr += "$lazy_ptr";
Chris Lattner72121e42010-03-10 02:25:11 +0000675 return Ctx.GetOrCreateTemporarySymbol(TmpStr.str());
Chris Lattnerd5a83252010-01-20 21:36:48 +0000676}
677
678static const MCSymbol *GetAnonSym(const MCSymbol *Sym, MCContext &Ctx) {
679 // Add $tmp suffix to $stub, yielding $stub$tmp.
680 SmallString<128> TmpStr(Sym->getName().begin(), Sym->getName().end());
681 TmpStr += "$tmp";
Chris Lattner72121e42010-03-10 02:25:11 +0000682 return Ctx.GetOrCreateTemporarySymbol(TmpStr.str());
Chris Lattnerd5a83252010-01-20 21:36:48 +0000683}
684
685void PPCDarwinAsmPrinter::
686EmitFunctionStubs(const MachineModuleInfoMachO::SymbolListTy &Stubs) {
Chris Lattner5b187502010-01-20 21:19:44 +0000687 bool isPPC64 = TM.getTargetData()->getPointerSizeInBits() == 64;
688
Chris Lattnerf4815552009-08-03 22:52:21 +0000689 TargetLoweringObjectFileMachO &TLOFMacho =
690 static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
Chris Lattner5b187502010-01-20 21:19:44 +0000691
692 // .lazy_symbol_pointer
693 const MCSection *LSPSection = TLOFMacho.getLazySymbolPointerSection();
Chris Lattner72a676a2009-08-10 01:39:42 +0000694
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000695 // Output stubs for dynamically-linked functions
Chris Lattner5b187502010-01-20 21:19:44 +0000696 if (TM.getRelocationModel() == Reloc::PIC_) {
Chris Lattnerf4815552009-08-03 22:52:21 +0000697 const MCSection *StubSection =
Chris Lattner5b187502010-01-20 21:19:44 +0000698 TLOFMacho.getMachOSection("__TEXT", "__picsymbolstub1",
699 MCSectionMachO::S_SYMBOL_STUBS |
700 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
701 32, SectionKind::getText());
Chris Lattnerd5a83252010-01-20 21:36:48 +0000702 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
Chris Lattner73266f92009-08-19 05:49:37 +0000703 OutStreamer.SwitchSection(StubSection);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000704 EmitAlignment(4);
Chris Lattnerd5a83252010-01-20 21:36:48 +0000705
706 const MCSymbol *Stub = Stubs[i].first;
707 const MCSymbol *RawSym = Stubs[i].second;
708 const MCSymbol *LazyPtr = GetLazyPtr(Stub, OutContext);
709 const MCSymbol *AnonSymbol = GetAnonSym(Stub, OutContext);
710
711 O << *Stub << ":\n";
712 O << "\t.indirect_symbol " << *RawSym << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000713 O << "\tmflr r0\n";
Chris Lattnerd5a83252010-01-20 21:36:48 +0000714 O << "\tbcl 20,31," << *AnonSymbol << '\n';
715 O << *AnonSymbol << ":\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000716 O << "\tmflr r11\n";
Chris Lattnerd5a83252010-01-20 21:36:48 +0000717 O << "\taddis r11,r11,ha16(" << *LazyPtr << '-' << *AnonSymbol
Chris Lattner5b187502010-01-20 21:19:44 +0000718 << ")\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000719 O << "\tmtlr r0\n";
Chris Lattnerd5a83252010-01-20 21:36:48 +0000720 O << (isPPC64 ? "\tldu" : "\tlwzu") << " r12,lo16(" << *LazyPtr
721 << '-' << *AnonSymbol << ")(r11)\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000722 O << "\tmtctr r12\n";
723 O << "\tbctr\n";
Chris Lattnerc0a7f1d2009-07-16 01:23:26 +0000724
Chris Lattner73266f92009-08-19 05:49:37 +0000725 OutStreamer.SwitchSection(LSPSection);
Chris Lattnerd5a83252010-01-20 21:36:48 +0000726 O << *LazyPtr << ":\n";
727 O << "\t.indirect_symbol " << *RawSym << '\n';
Chris Lattnerbaa12da2009-07-15 02:36:21 +0000728 O << (isPPC64 ? "\t.quad" : "\t.long") << " dyld_stub_binding_helper\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000729 }
Chris Lattner5b187502010-01-20 21:19:44 +0000730 O << '\n';
731 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000732 }
Chris Lattner5b187502010-01-20 21:19:44 +0000733
734 const MCSection *StubSection =
735 TLOFMacho.getMachOSection("__TEXT","__symbol_stub1",
736 MCSectionMachO::S_SYMBOL_STUBS |
737 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
738 16, SectionKind::getText());
Chris Lattnerd5a83252010-01-20 21:36:48 +0000739 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
740 const MCSymbol *Stub = Stubs[i].first;
741 const MCSymbol *RawSym = Stubs[i].second;
742 const MCSymbol *LazyPtr = GetLazyPtr(Stub, OutContext);
743
Chris Lattner5b187502010-01-20 21:19:44 +0000744 OutStreamer.SwitchSection(StubSection);
745 EmitAlignment(4);
Chris Lattnerd5a83252010-01-20 21:36:48 +0000746 O << *Stub << ":\n";
747 O << "\t.indirect_symbol " << *RawSym << '\n';
748 O << "\tlis r11,ha16(" << *LazyPtr << ")\n";
749 O << (isPPC64 ? "\tldu" : "\tlwzu") << " r12,lo16(" << *LazyPtr
Chris Lattner5b187502010-01-20 21:19:44 +0000750 << ")(r11)\n";
751 O << "\tmtctr r12\n";
752 O << "\tbctr\n";
753 OutStreamer.SwitchSection(LSPSection);
Chris Lattnerd5a83252010-01-20 21:36:48 +0000754 O << *LazyPtr << ":\n";
755 O << "\t.indirect_symbol " << *RawSym << '\n';
Chris Lattner5b187502010-01-20 21:19:44 +0000756 O << (isPPC64 ? "\t.quad" : "\t.long") << " dyld_stub_binding_helper\n";
757 }
758
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000759 O << '\n';
Chris Lattner5b187502010-01-20 21:19:44 +0000760}
761
762
763bool PPCDarwinAsmPrinter::doFinalization(Module &M) {
764 bool isPPC64 = TM.getTargetData()->getPointerSizeInBits() == 64;
765
766 // Darwin/PPC always uses mach-o.
767 TargetLoweringObjectFileMachO &TLOFMacho =
768 static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
769 MachineModuleInfoMachO &MMIMacho =
770 MMI->getObjFileInfo<MachineModuleInfoMachO>();
771
Chris Lattnerd5a83252010-01-20 21:36:48 +0000772 MachineModuleInfoMachO::SymbolListTy Stubs = MMIMacho.GetFnStubList();
773 if (!Stubs.empty())
774 EmitFunctionStubs(Stubs);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000775
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000776 if (MAI->doesSupportExceptionHandling() && MMI) {
Dale Johannesenfb3ac732007-11-20 23:24:42 +0000777 // Add the (possibly multiple) personalities to the set of global values.
Dale Johannesen85535762008-04-02 00:25:04 +0000778 // Only referenced functions get into the Personalities list.
Chris Lattner2424eac2009-06-24 19:09:55 +0000779 const std::vector<Function *> &Personalities = MMI->getPersonalities();
Dale Johannesenfb3ac732007-11-20 23:24:42 +0000780 for (std::vector<Function *>::const_iterator I = Personalities.begin(),
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000781 E = Personalities.end(); I != E; ++I) {
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000782 if (*I) {
Chris Lattner77653062010-02-03 06:18:30 +0000783 MCSymbol *NLPSym = GetSymbolWithGlobalValueBase(*I, "$non_lazy_ptr");
784 MCSymbol *&StubSym = MMIMacho.getGVStubEntry(NLPSym);
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000785 StubSym = GetGlobalValueSymbol(*I);
786 }
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000787 }
Dale Johannesenfb3ac732007-11-20 23:24:42 +0000788 }
789
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000790 // Output stubs for dynamically-linked functions.
Chris Lattnerd5a83252010-01-20 21:36:48 +0000791 Stubs = MMIMacho.GetGVStubList();
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000792
Chris Lattnerf4815552009-08-03 22:52:21 +0000793 // Output macho stubs for external and common global variables.
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000794 if (!Stubs.empty()) {
Chris Lattner72a676a2009-08-10 01:39:42 +0000795 // Switch with ".non_lazy_symbol_pointer" directive.
Chris Lattner73266f92009-08-19 05:49:37 +0000796 OutStreamer.SwitchSection(TLOFMacho.getNonLazySymbolPointerSection());
Chris Lattner2d61eaa2009-08-10 17:58:51 +0000797 EmitAlignment(isPPC64 ? 3 : 2);
798
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000799 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
800 O << *Stubs[i].first << ":\n";
801 O << "\t.indirect_symbol " << *Stubs[i].second << '\n';
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000802 O << (isPPC64 ? "\t.quad\t0\n" : "\t.long\t0\n");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000803 }
804 }
805
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000806 Stubs = MMIMacho.GetHiddenGVStubList();
807 if (!Stubs.empty()) {
Chris Lattner73266f92009-08-19 05:49:37 +0000808 OutStreamer.SwitchSection(getObjFileLowering().getDataSection());
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000809 EmitAlignment(isPPC64 ? 3 : 2);
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000810
811 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
812 O << *Stubs[i].first << ":\n";
813 O << (isPPC64 ? "\t.quad\t" : "\t.long\t") << *Stubs[i].second << '\n';
Evan Chenga65854f2008-12-05 01:06:39 +0000814 }
815 }
816
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000817 // Funny Darwin hack: This flag tells the linker that no global symbols
818 // contain code that falls through to other global symbols (e.g. the obvious
819 // implementation of multiple entry points). If this doesn't occur, the
820 // linker can safely perform dead code stripping. Since LLVM never generates
821 // code that does this, it is always safe to set.
Chris Lattner2d7c8142010-01-23 06:39:22 +0000822 OutStreamer.EmitAssemblerFlag(MCAF_SubsectionsViaSymbols);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000823
Dan Gohman4a558a32007-07-25 19:33:14 +0000824 return AsmPrinter::doFinalization(M);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000825}
826
827
828
829/// createPPCAsmPrinterPass - Returns a pass that prints the PPC assembly code
830/// for a MachineFunction to the given output stream, in a format that the
831/// Darwin assembler can deal with.
832///
Daniel Dunbar4cb63652009-08-13 23:48:47 +0000833static AsmPrinter *createPPCAsmPrinterPass(formatted_raw_ostream &o,
834 TargetMachine &tm,
Chris Lattner8d2970b2010-02-02 23:37:42 +0000835 MCContext &Ctx, MCStreamer &Streamer,
836 const MCAsmInfo *tai) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000837 const PPCSubtarget *Subtarget = &tm.getSubtarget<PPCSubtarget>();
838
Chris Lattnerae982212009-07-21 18:38:57 +0000839 if (Subtarget->isDarwin())
Chris Lattner8d2970b2010-02-02 23:37:42 +0000840 return new PPCDarwinAsmPrinter(o, tm, Ctx, Streamer, tai);
841 return new PPCLinuxAsmPrinter(o, tm, Ctx, Streamer, tai);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000842}
Anton Korobeynikov01c0e9f2008-08-17 13:54:28 +0000843
Bob Wilsonebbc1c42009-06-23 23:59:40 +0000844// Force static initialization.
Daniel Dunbarfe5939f2009-07-15 20:24:03 +0000845extern "C" void LLVMInitializePowerPCAsmPrinter() {
Daniel Dunbarfe5939f2009-07-15 20:24:03 +0000846 TargetRegistry::RegisterAsmPrinter(ThePPC32Target, createPPCAsmPrinterPass);
Daniel Dunbarfe5939f2009-07-15 20:24:03 +0000847 TargetRegistry::RegisterAsmPrinter(ThePPC64Target, createPPCAsmPrinterPass);
848}