blob: 7dd5ae26dac42b357c17401ce65f6c207566fade [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");
Bill Wendlingce996512010-03-10 22:34:10 +0000201 MachineModuleInfoImpl::StubValueTy &StubSym =
Chris Lattnerd5a83252010-01-20 21:36:48 +0000202 MMI->getObjFileInfo<MachineModuleInfoMachO>().getFnStubEntry(Sym);
Bill Wendlingce996512010-03-10 22:34:10 +0000203 if (StubSym.getPointer() == 0)
204 StubSym = MachineModuleInfoImpl::
205 StubValueTy(GetGlobalValueSymbol(GV),!GV->hasInternalLinkage());
Chris Lattnerd5a83252010-01-20 21:36:48 +0000206 O << *Sym;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000207 return;
208 }
209 }
210 if (MO.getType() == MachineOperand::MO_ExternalSymbol) {
Chris Lattnerd5a83252010-01-20 21:36:48 +0000211 SmallString<128> TempNameStr;
212 TempNameStr += StringRef(MO.getSymbolName());
213 TempNameStr += StringRef("$stub");
214
Chris Lattner77653062010-02-03 06:18:30 +0000215 MCSymbol *Sym = GetExternalSymbolSymbol(TempNameStr.str());
Bill Wendlingce996512010-03-10 22:34:10 +0000216 MachineModuleInfoImpl::StubValueTy &StubSym =
Chris Lattnerd5a83252010-01-20 21:36:48 +0000217 MMI->getObjFileInfo<MachineModuleInfoMachO>().getFnStubEntry(Sym);
Bill Wendlingce996512010-03-10 22:34:10 +0000218 if (StubSym.getPointer() == 0)
219 StubSym = MachineModuleInfoImpl::
220 StubValueTy(GetExternalSymbolSymbol(MO.getSymbolName()), true);
Chris Lattnerd5a83252010-01-20 21:36:48 +0000221 O << *Sym;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000222 return;
223 }
224 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000225
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000226 printOp(MI->getOperand(OpNo));
227 }
228 void printAbsAddrOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000229 O << (int)MI->getOperand(OpNo).getImm()*4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000230 }
231 void printPICLabel(const MachineInstr *MI, unsigned OpNo) {
Evan Cheng477013c2007-10-14 05:57:21 +0000232 O << "\"L" << getFunctionNumber() << "$pb\"\n";
233 O << "\"L" << getFunctionNumber() << "$pb\":";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000234 }
235 void printSymbolHi(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000236 if (MI->getOperand(OpNo).isImm()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000237 printS16ImmOperand(MI, OpNo);
238 } else {
239 if (Subtarget.isDarwin()) O << "ha16(";
240 printOp(MI->getOperand(OpNo));
241 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng477013c2007-10-14 05:57:21 +0000242 O << "-\"L" << getFunctionNumber() << "$pb\"";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000243 if (Subtarget.isDarwin())
244 O << ')';
245 else
246 O << "@ha";
247 }
248 }
249 void printSymbolLo(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000250 if (MI->getOperand(OpNo).isImm()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000251 printS16ImmOperand(MI, OpNo);
252 } else {
253 if (Subtarget.isDarwin()) O << "lo16(";
254 printOp(MI->getOperand(OpNo));
255 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng477013c2007-10-14 05:57:21 +0000256 O << "-\"L" << getFunctionNumber() << "$pb\"";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000257 if (Subtarget.isDarwin())
258 O << ')';
259 else
260 O << "@l";
261 }
262 }
263 void printcrbitm(const MachineInstr *MI, unsigned OpNo) {
264 unsigned CCReg = MI->getOperand(OpNo).getReg();
265 unsigned RegNo = enumRegToMachineReg(CCReg);
266 O << (0x80 >> RegNo);
267 }
268 // The new addressing mode printers.
269 void printMemRegImm(const MachineInstr *MI, unsigned OpNo) {
270 printSymbolLo(MI, OpNo);
271 O << '(';
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000272 if (MI->getOperand(OpNo+1).isReg() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000273 MI->getOperand(OpNo+1).getReg() == PPC::R0)
274 O << "0";
275 else
276 printOperand(MI, OpNo+1);
277 O << ')';
278 }
279 void printMemRegImmShifted(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000280 if (MI->getOperand(OpNo).isImm())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000281 printS16X4ImmOperand(MI, OpNo);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000282 else
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000283 printSymbolLo(MI, OpNo);
284 O << '(';
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000285 if (MI->getOperand(OpNo+1).isReg() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000286 MI->getOperand(OpNo+1).getReg() == PPC::R0)
287 O << "0";
288 else
289 printOperand(MI, OpNo+1);
290 O << ')';
291 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000292
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000293 void printMemRegReg(const MachineInstr *MI, unsigned OpNo) {
294 // When used as the base register, r0 reads constant zero rather than
295 // the value contained in the register. For this reason, the darwin
296 // assembler requires that we print r0 as 0 (no r) when used as the base.
297 const MachineOperand &MO = MI->getOperand(OpNo);
298 printRegister(MO, true);
299 O << ", ";
300 printOperand(MI, OpNo+1);
301 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000302
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000303 void printTOCEntryLabel(const MachineInstr *MI, unsigned OpNo) {
304 const MachineOperand &MO = MI->getOperand(OpNo);
305
306 assert(MO.getType() == MachineOperand::MO_GlobalAddress);
307
Chris Lattnerc3009922010-01-16 02:09:06 +0000308 const MCSymbol *Sym = GetGlobalValueSymbol(MO.getGlobal());
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000309
310 // Map symbol -> label of TOC entry.
Chris Lattnerc3009922010-01-16 02:09:06 +0000311 const MCSymbol *&TOCEntry = TOC[Sym];
312 if (TOCEntry == 0)
313 TOCEntry = OutContext.
Chris Lattner72121e42010-03-10 02:25:11 +0000314 GetOrCreateTemporarySymbol(StringRef(MAI->getPrivateGlobalPrefix()) +
315 "C" + Twine(LabelID++));
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000316
Chris Lattnerce409842010-01-17 21:43:43 +0000317 O << *TOCEntry << "@toc";
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000318 }
319
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000320 void printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000321 const char *Modifier);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000322 };
323
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000324 /// PPCLinuxAsmPrinter - PowerPC assembly printer, customized for Linux
Nick Lewycky492d06e2009-10-25 06:33:48 +0000325 class PPCLinuxAsmPrinter : public PPCAsmPrinter {
Bill Wendling4f405312009-02-24 08:30:20 +0000326 public:
Daniel Dunbarfe5939f2009-07-15 20:24:03 +0000327 explicit PPCLinuxAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
Chris Lattner8d2970b2010-02-02 23:37:42 +0000328 MCContext &Ctx, MCStreamer &Streamer,
329 const MCAsmInfo *T)
330 : PPCAsmPrinter(O, TM, Ctx, Streamer, T) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000331
332 virtual const char *getPassName() const {
333 return "Linux PPC Assembly Printer";
334 }
335
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000336 bool doFinalization(Module &M);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000337
Chris Lattneraec7a8a2010-01-27 07:21:55 +0000338 virtual void EmitFunctionEntryLabel();
339
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000340 void getAnalysisUsage(AnalysisUsage &AU) const {
341 AU.setPreservesAll();
342 AU.addRequired<MachineModuleInfo>();
Devang Patelaa1e8432009-01-08 23:40:34 +0000343 AU.addRequired<DwarfWriter>();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000344 PPCAsmPrinter::getAnalysisUsage(AU);
345 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000346 };
347
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000348 /// PPCDarwinAsmPrinter - PowerPC assembly printer, customized for Darwin/Mac
349 /// OS X
Nick Lewycky492d06e2009-10-25 06:33:48 +0000350 class PPCDarwinAsmPrinter : public PPCAsmPrinter {
David Greene302008d2009-07-14 20:18:05 +0000351 formatted_raw_ostream &OS;
Bill Wendling4f405312009-02-24 08:30:20 +0000352 public:
Daniel Dunbarfe5939f2009-07-15 20:24:03 +0000353 explicit PPCDarwinAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
Chris Lattner8d2970b2010-02-02 23:37:42 +0000354 MCContext &Ctx, MCStreamer &Streamer,
355 const MCAsmInfo *T)
356 : PPCAsmPrinter(O, TM, Ctx, Streamer, T), OS(O) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000357
358 virtual const char *getPassName() const {
359 return "Darwin PPC Assembly Printer";
360 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000361
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000362 bool doFinalization(Module &M);
Bob Wilsonb5f835e2009-09-30 22:06:26 +0000363 void EmitStartOfAsmFile(Module &M);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000364
Chris Lattnerd5a83252010-01-20 21:36:48 +0000365 void EmitFunctionStubs(const MachineModuleInfoMachO::SymbolListTy &Stubs);
Chris Lattner5b187502010-01-20 21:19:44 +0000366
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000367 void getAnalysisUsage(AnalysisUsage &AU) const {
368 AU.setPreservesAll();
369 AU.addRequired<MachineModuleInfo>();
Devang Patelaa1e8432009-01-08 23:40:34 +0000370 AU.addRequired<DwarfWriter>();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000371 PPCAsmPrinter::getAnalysisUsage(AU);
372 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000373 };
374} // end of anonymous namespace
375
376// Include the auto-generated portion of the assembly writer
377#include "PPCGenAsmWriter.inc"
378
379void PPCAsmPrinter::printOp(const MachineOperand &MO) {
380 switch (MO.getType()) {
381 case MachineOperand::MO_Immediate:
Edwin Törökbd448e32009-07-14 16:55:14 +0000382 llvm_unreachable("printOp() does not handle immediate values");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000383
384 case MachineOperand::MO_MachineBasicBlock:
Chris Lattner84d5ca92010-01-26 04:55:51 +0000385 O << *MO.getMBB()->getSymbol(OutContext);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000386 return;
387 case MachineOperand::MO_JumpTableIndex:
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000388 O << MAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
Chris Lattner6017d482007-12-30 23:10:15 +0000389 << '_' << MO.getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000390 // FIXME: PIC relocation model
391 return;
392 case MachineOperand::MO_ConstantPoolIndex:
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000393 O << MAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber()
Chris Lattner6017d482007-12-30 23:10:15 +0000394 << '_' << MO.getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000395 return;
Bob Wilsone8cbca92009-11-04 21:31:18 +0000396 case MachineOperand::MO_BlockAddress:
Chris Lattnerce409842010-01-17 21:43:43 +0000397 O << *GetBlockAddressSymbol(MO.getBlockAddress());
Bob Wilsone8cbca92009-11-04 21:31:18 +0000398 return;
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000399 case MachineOperand::MO_ExternalSymbol: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000400 // Computing the address of an external symbol, not calling it.
Chris Lattnerc3009922010-01-16 02:09:06 +0000401 if (TM.getRelocationModel() == Reloc::Static) {
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000402 O << *GetExternalSymbolSymbol(MO.getSymbolName());
Chris Lattnerc3009922010-01-16 02:09:06 +0000403 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000404 }
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000405
Chris Lattner77653062010-02-03 06:18:30 +0000406 MCSymbol *NLPSym =
Chris Lattnerc3009922010-01-16 02:09:06 +0000407 OutContext.GetOrCreateSymbol(StringRef(MAI->getGlobalPrefix())+
408 MO.getSymbolName()+"$non_lazy_ptr");
Bill Wendlingce996512010-03-10 22:34:10 +0000409 MachineModuleInfoImpl::StubValueTy &StubSym =
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000410 MMI->getObjFileInfo<MachineModuleInfoMachO>().getGVStubEntry(NLPSym);
Bill Wendlingce996512010-03-10 22:34:10 +0000411 if (StubSym.getPointer() == 0)
412 StubSym = MachineModuleInfoImpl::
413 StubValueTy(GetExternalSymbolSymbol(MO.getSymbolName()), true);
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000414
Chris Lattnerce409842010-01-17 21:43:43 +0000415 O << *NLPSym;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000416 return;
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000417 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000418 case MachineOperand::MO_GlobalAddress: {
419 // Computing the address of a global symbol, not calling it.
420 GlobalValue *GV = MO.getGlobal();
Chris Lattner5eeaf2a2010-01-16 02:00:23 +0000421 MCSymbol *SymToPrint;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000422
423 // External or weakly linked global variables need non-lazily-resolved stubs
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000424 if (TM.getRelocationModel() != Reloc::Static &&
425 (GV->isDeclaration() || GV->isWeakForLinker())) {
426 if (!GV->hasHiddenVisibility()) {
Chris Lattnera6f2a102010-01-16 18:37:32 +0000427 SymToPrint = GetSymbolWithGlobalValueBase(GV, "$non_lazy_ptr");
Bill Wendlingce996512010-03-10 22:34:10 +0000428 MachineModuleInfoImpl::StubValueTy &StubSym =
429 MMI->getObjFileInfo<MachineModuleInfoMachO>()
430 .getGVStubEntry(SymToPrint);
431 if (StubSym.getPointer() == 0)
432 StubSym = MachineModuleInfoImpl::
433 StubValueTy(GetGlobalValueSymbol(GV), !GV->hasInternalLinkage());
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000434 } else if (GV->isDeclaration() || GV->hasCommonLinkage() ||
435 GV->hasAvailableExternallyLinkage()) {
Chris Lattnera6f2a102010-01-16 18:37:32 +0000436 SymToPrint = GetSymbolWithGlobalValueBase(GV, "$non_lazy_ptr");
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000437
Bill Wendlingce996512010-03-10 22:34:10 +0000438 MachineModuleInfoImpl::StubValueTy &StubSym =
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000439 MMI->getObjFileInfo<MachineModuleInfoMachO>().
440 getHiddenGVStubEntry(SymToPrint);
Bill Wendlingce996512010-03-10 22:34:10 +0000441 if (StubSym.getPointer() == 0)
442 StubSym = MachineModuleInfoImpl::
443 StubValueTy(GetGlobalValueSymbol(GV),
444 !GV->hasInternalLinkage());
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 Lattner83cf1ec2009-07-15 01:14:44 +0000448 } else {
Chris Lattner5eeaf2a2010-01-16 02:00:23 +0000449 SymToPrint = GetGlobalValueSymbol(GV);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000450 }
Chris Lattner5eeaf2a2010-01-16 02:00:23 +0000451
Chris Lattnerce409842010-01-17 21:43:43 +0000452 O << *SymToPrint;
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000453
Anton Korobeynikov440f23d2008-11-22 16:15:34 +0000454 printOffset(MO.getOffset());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000455 return;
456 }
457
458 default:
459 O << "<unknown operand type: " << MO.getType() << ">";
460 return;
461 }
462}
463
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000464/// PrintAsmOperand - Print out an operand for an inline asm expression.
465///
466bool PPCAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000467 unsigned AsmVariant,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000468 const char *ExtraCode) {
469 // Does this asm operand have a single letter operand modifier?
470 if (ExtraCode && ExtraCode[0]) {
471 if (ExtraCode[1] != 0) return true; // Unknown modifier.
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000472
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000473 switch (ExtraCode[0]) {
474 default: return true; // Unknown modifier.
475 case 'c': // Don't print "$" before a global var name or constant.
476 // PPC never has a prefix.
477 printOperand(MI, OpNo);
478 return false;
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000479 case 'L': // Write second word of DImode reference.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000480 // Verify that this operand has two consecutive registers.
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000481 if (!MI->getOperand(OpNo).isReg() ||
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000482 OpNo+1 == MI->getNumOperands() ||
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000483 !MI->getOperand(OpNo+1).isReg())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000484 return true;
485 ++OpNo; // Return the high-part.
486 break;
487 case 'I':
488 // Write 'i' if an integer constant, otherwise nothing. Used to print
489 // addi vs add, etc.
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000490 if (MI->getOperand(OpNo).isImm())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000491 O << "i";
492 return false;
493 }
494 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000495
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000496 printOperand(MI, OpNo);
497 return false;
498}
499
Dale Johannesen0a42b9662009-08-18 00:18:39 +0000500// At the moment, all inline asm memory operands are a single register.
501// In any case, the output of this routine should always be just one
502// assembler operand.
503
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000504bool PPCAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000505 unsigned AsmVariant,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000506 const char *ExtraCode) {
507 if (ExtraCode && ExtraCode[0])
508 return true; // Unknown modifier.
Dale Johannesen0a42b9662009-08-18 00:18:39 +0000509 assert (MI->getOperand(OpNo).isReg());
Dale Johannesen5e699502009-08-26 18:10:32 +0000510 O << "0(";
Dale Johannesen0a42b9662009-08-18 00:18:39 +0000511 printOperand(MI, OpNo);
Dale Johannesen5e699502009-08-26 18:10:32 +0000512 O << ")";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000513 return false;
514}
515
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000516void PPCAsmPrinter::printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000517 const char *Modifier) {
518 assert(Modifier && "Must specify 'cc' or 'reg' as predicate op modifier!");
519 unsigned Code = MI->getOperand(OpNo).getImm();
520 if (!strcmp(Modifier, "cc")) {
521 switch ((PPC::Predicate)Code) {
522 case PPC::PRED_ALWAYS: return; // Don't print anything for always.
523 case PPC::PRED_LT: O << "lt"; return;
524 case PPC::PRED_LE: O << "le"; return;
525 case PPC::PRED_EQ: O << "eq"; return;
526 case PPC::PRED_GE: O << "ge"; return;
527 case PPC::PRED_GT: O << "gt"; return;
528 case PPC::PRED_NE: O << "ne"; return;
529 case PPC::PRED_UN: O << "un"; return;
530 case PPC::PRED_NU: O << "nu"; return;
531 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000532
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000533 } else {
534 assert(!strcmp(Modifier, "reg") &&
535 "Need to specify 'cc' or 'reg' as predicate op modifier!");
536 // Don't print the register for 'always'.
537 if (Code == PPC::PRED_ALWAYS) return;
538 printOperand(MI, OpNo+1);
539 }
540}
541
542
Chris Lattner1d40b372010-01-28 01:28:58 +0000543/// EmitInstruction -- Print out a single PowerPC MI in Darwin syntax to
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000544/// the current output stream.
545///
Chris Lattner1d40b372010-01-28 01:28:58 +0000546void PPCAsmPrinter::EmitInstruction(const MachineInstr *MI) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000547 // Check for slwi/srwi mnemonics.
548 if (MI->getOpcode() == PPC::RLWINM) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000549 unsigned char SH = MI->getOperand(2).getImm();
550 unsigned char MB = MI->getOperand(3).getImm();
551 unsigned char ME = MI->getOperand(4).getImm();
Chris Lattner1d40b372010-01-28 01:28:58 +0000552 bool useSubstituteMnemonic = false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000553 if (SH <= 31 && MB == 0 && ME == (31-SH)) {
Dale Johannesen760acc02010-01-06 02:20:18 +0000554 O << "\tslwi "; useSubstituteMnemonic = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000555 }
556 if (SH <= 31 && MB == (32-SH) && ME == 31) {
Dale Johannesen760acc02010-01-06 02:20:18 +0000557 O << "\tsrwi "; useSubstituteMnemonic = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000558 SH = 32-SH;
559 }
Dale Johannesen760acc02010-01-06 02:20:18 +0000560 if (useSubstituteMnemonic) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000561 printOperand(MI, 0);
562 O << ", ";
563 printOperand(MI, 1);
Dale Johannesen760acc02010-01-06 02:20:18 +0000564 O << ", " << (unsigned int)SH;
Chris Lattner726d3972010-02-10 00:36:00 +0000565 OutStreamer.AddBlankLine();
Chris Lattner1d40b372010-01-28 01:28:58 +0000566 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000567 }
Chris Lattner1d40b372010-01-28 01:28:58 +0000568 }
569
570 if ((MI->getOpcode() == PPC::OR || MI->getOpcode() == PPC::OR8) &&
571 MI->getOperand(1).getReg() == MI->getOperand(2).getReg()) {
572 O << "\tmr ";
573 printOperand(MI, 0);
574 O << ", ";
575 printOperand(MI, 1);
Chris Lattner726d3972010-02-10 00:36:00 +0000576 OutStreamer.AddBlankLine();
Chris Lattner1d40b372010-01-28 01:28:58 +0000577 return;
578 }
579
580 if (MI->getOpcode() == PPC::RLDICR) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000581 unsigned char SH = MI->getOperand(2).getImm();
582 unsigned char ME = MI->getOperand(3).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000583 // rldicr RA, RS, SH, 63-SH == sldi RA, RS, SH
584 if (63-SH == ME) {
Nate Begemanbd5cdf12008-02-05 08:49:09 +0000585 O << "\tsldi ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000586 printOperand(MI, 0);
587 O << ", ";
588 printOperand(MI, 1);
Dale Johannesen760acc02010-01-06 02:20:18 +0000589 O << ", " << (unsigned int)SH;
Chris Lattner726d3972010-02-10 00:36:00 +0000590 OutStreamer.AddBlankLine();
Chris Lattner1d40b372010-01-28 01:28:58 +0000591 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000592 }
593 }
594
Chris Lattner1d40b372010-01-28 01:28:58 +0000595 printInstruction(MI);
Chris Lattner726d3972010-02-10 00:36:00 +0000596 OutStreamer.AddBlankLine();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000597}
598
Chris Lattneraec7a8a2010-01-27 07:21:55 +0000599void PPCLinuxAsmPrinter::EmitFunctionEntryLabel() {
600 if (!Subtarget.isPPC64()) // linux/ppc32 - Normal entry label.
601 return AsmPrinter::EmitFunctionEntryLabel();
602
603 // Emit an official procedure descriptor.
604 // FIXME 64-bit SVR4: Use MCSection here!
605 O << "\t.section\t\".opd\",\"aw\"\n";
606 O << "\t.align 3\n";
607 OutStreamer.EmitLabel(CurrentFnSym);
608 O << "\t.quad .L." << *CurrentFnSym << ",.TOC.@tocbase\n";
609 O << "\t.previous\n";
610 O << ".L." << *CurrentFnSym << ":\n";
611}
612
613
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000614bool PPCLinuxAsmPrinter::doFinalization(Module &M) {
615 const TargetData *TD = TM.getTargetData();
616
617 bool isPPC64 = TD->getPointerSizeInBits() == 64;
618
619 if (isPPC64 && !TOC.empty()) {
620 // FIXME 64-bit SVR4: Use MCSection here?
621 O << "\t.section\t\".toc\",\"aw\"\n";
622
Chris Lattner5eeaf2a2010-01-16 02:00:23 +0000623 // FIXME: This is nondeterminstic!
Chris Lattnerc3009922010-01-16 02:09:06 +0000624 for (DenseMap<const MCSymbol*, const MCSymbol*>::iterator I = TOC.begin(),
625 E = TOC.end(); I != E; ++I) {
Chris Lattnerce409842010-01-17 21:43:43 +0000626 O << *I->second << ":\n";
627 O << "\t.tc " << *I->first << "[TC]," << *I->first << '\n';
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000628 }
629 }
630
631 return AsmPrinter::doFinalization(M);
632}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000633
Bob Wilsonb5f835e2009-09-30 22:06:26 +0000634void PPCDarwinAsmPrinter::EmitStartOfAsmFile(Module &M) {
Dan Gohman12300e12008-03-25 21:45:14 +0000635 static const char *const CPUDirectives[] = {
Dale Johannesen161badc2008-02-14 23:35:16 +0000636 "",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000637 "ppc",
638 "ppc601",
639 "ppc602",
640 "ppc603",
641 "ppc7400",
642 "ppc750",
643 "ppc970",
644 "ppc64"
645 };
646
647 unsigned Directive = Subtarget.getDarwinDirective();
648 if (Subtarget.isGigaProcessor() && Directive < PPC::DIR_970)
649 Directive = PPC::DIR_970;
650 if (Subtarget.hasAltivec() && Directive < PPC::DIR_7400)
651 Directive = PPC::DIR_7400;
652 if (Subtarget.isPPC64() && Directive < PPC::DIR_970)
653 Directive = PPC::DIR_64;
654 assert(Directive <= PPC::DIR_64 && "Directive out of range.");
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000655 O << "\t.machine " << CPUDirectives[Directive] << '\n';
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000656
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000657 // Prime text sections so they are adjacent. This reduces the likelihood a
658 // large data or debug section causes a branch to exceed 16M limit.
Chris Lattnerf4815552009-08-03 22:52:21 +0000659 TargetLoweringObjectFileMachO &TLOFMacho =
660 static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
Chris Lattner73266f92009-08-19 05:49:37 +0000661 OutStreamer.SwitchSection(TLOFMacho.getTextCoalSection());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000662 if (TM.getRelocationModel() == Reloc::PIC_) {
Chris Lattner73266f92009-08-19 05:49:37 +0000663 OutStreamer.SwitchSection(
664 TLOFMacho.getMachOSection("__TEXT", "__picsymbolstub1",
665 MCSectionMachO::S_SYMBOL_STUBS |
666 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
667 32, SectionKind::getText()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000668 } else if (TM.getRelocationModel() == Reloc::DynamicNoPIC) {
Chris Lattner73266f92009-08-19 05:49:37 +0000669 OutStreamer.SwitchSection(
670 TLOFMacho.getMachOSection("__TEXT","__symbol_stub1",
671 MCSectionMachO::S_SYMBOL_STUBS |
672 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
673 16, SectionKind::getText()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000674 }
Chris Lattner73266f92009-08-19 05:49:37 +0000675 OutStreamer.SwitchSection(getObjFileLowering().getTextSection());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000676}
677
Chris Lattnerd5a83252010-01-20 21:36:48 +0000678static const MCSymbol *GetLazyPtr(const MCSymbol *Sym, MCContext &Ctx) {
679 // Remove $stub suffix, add $lazy_ptr.
680 SmallString<128> TmpStr(Sym->getName().begin(), Sym->getName().end()-5);
681 TmpStr += "$lazy_ptr";
Chris Lattner72121e42010-03-10 02:25:11 +0000682 return Ctx.GetOrCreateTemporarySymbol(TmpStr.str());
Chris Lattnerd5a83252010-01-20 21:36:48 +0000683}
684
685static const MCSymbol *GetAnonSym(const MCSymbol *Sym, MCContext &Ctx) {
686 // Add $tmp suffix to $stub, yielding $stub$tmp.
687 SmallString<128> TmpStr(Sym->getName().begin(), Sym->getName().end());
688 TmpStr += "$tmp";
Chris Lattner72121e42010-03-10 02:25:11 +0000689 return Ctx.GetOrCreateTemporarySymbol(TmpStr.str());
Chris Lattnerd5a83252010-01-20 21:36:48 +0000690}
691
692void PPCDarwinAsmPrinter::
693EmitFunctionStubs(const MachineModuleInfoMachO::SymbolListTy &Stubs) {
Chris Lattner5b187502010-01-20 21:19:44 +0000694 bool isPPC64 = TM.getTargetData()->getPointerSizeInBits() == 64;
695
Chris Lattnerf4815552009-08-03 22:52:21 +0000696 TargetLoweringObjectFileMachO &TLOFMacho =
697 static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
Chris Lattner5b187502010-01-20 21:19:44 +0000698
699 // .lazy_symbol_pointer
700 const MCSection *LSPSection = TLOFMacho.getLazySymbolPointerSection();
Chris Lattner72a676a2009-08-10 01:39:42 +0000701
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000702 // Output stubs for dynamically-linked functions
Chris Lattner5b187502010-01-20 21:19:44 +0000703 if (TM.getRelocationModel() == Reloc::PIC_) {
Chris Lattnerf4815552009-08-03 22:52:21 +0000704 const MCSection *StubSection =
Chris Lattner5b187502010-01-20 21:19:44 +0000705 TLOFMacho.getMachOSection("__TEXT", "__picsymbolstub1",
706 MCSectionMachO::S_SYMBOL_STUBS |
707 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
708 32, SectionKind::getText());
Chris Lattnerd5a83252010-01-20 21:36:48 +0000709 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
Chris Lattner73266f92009-08-19 05:49:37 +0000710 OutStreamer.SwitchSection(StubSection);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000711 EmitAlignment(4);
Chris Lattnerd5a83252010-01-20 21:36:48 +0000712
713 const MCSymbol *Stub = Stubs[i].first;
Bill Wendlingce996512010-03-10 22:34:10 +0000714 const MCSymbol *RawSym = Stubs[i].second.getPointer();
Chris Lattnerd5a83252010-01-20 21:36:48 +0000715 const MCSymbol *LazyPtr = GetLazyPtr(Stub, OutContext);
716 const MCSymbol *AnonSymbol = GetAnonSym(Stub, OutContext);
717
718 O << *Stub << ":\n";
719 O << "\t.indirect_symbol " << *RawSym << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000720 O << "\tmflr r0\n";
Chris Lattnerd5a83252010-01-20 21:36:48 +0000721 O << "\tbcl 20,31," << *AnonSymbol << '\n';
722 O << *AnonSymbol << ":\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000723 O << "\tmflr r11\n";
Chris Lattnerd5a83252010-01-20 21:36:48 +0000724 O << "\taddis r11,r11,ha16(" << *LazyPtr << '-' << *AnonSymbol
Chris Lattner5b187502010-01-20 21:19:44 +0000725 << ")\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000726 O << "\tmtlr r0\n";
Chris Lattnerd5a83252010-01-20 21:36:48 +0000727 O << (isPPC64 ? "\tldu" : "\tlwzu") << " r12,lo16(" << *LazyPtr
728 << '-' << *AnonSymbol << ")(r11)\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000729 O << "\tmtctr r12\n";
730 O << "\tbctr\n";
Chris Lattnerc0a7f1d2009-07-16 01:23:26 +0000731
Chris Lattner73266f92009-08-19 05:49:37 +0000732 OutStreamer.SwitchSection(LSPSection);
Chris Lattnerd5a83252010-01-20 21:36:48 +0000733 O << *LazyPtr << ":\n";
734 O << "\t.indirect_symbol " << *RawSym << '\n';
Chris Lattnerbaa12da2009-07-15 02:36:21 +0000735 O << (isPPC64 ? "\t.quad" : "\t.long") << " dyld_stub_binding_helper\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000736 }
Chris Lattner5b187502010-01-20 21:19:44 +0000737 O << '\n';
738 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000739 }
Chris Lattner5b187502010-01-20 21:19:44 +0000740
741 const MCSection *StubSection =
742 TLOFMacho.getMachOSection("__TEXT","__symbol_stub1",
743 MCSectionMachO::S_SYMBOL_STUBS |
744 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
745 16, SectionKind::getText());
Chris Lattnerd5a83252010-01-20 21:36:48 +0000746 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
747 const MCSymbol *Stub = Stubs[i].first;
Bill Wendlingce996512010-03-10 22:34:10 +0000748 const MCSymbol *RawSym = Stubs[i].second.getPointer();
Chris Lattnerd5a83252010-01-20 21:36:48 +0000749 const MCSymbol *LazyPtr = GetLazyPtr(Stub, OutContext);
750
Chris Lattner5b187502010-01-20 21:19:44 +0000751 OutStreamer.SwitchSection(StubSection);
752 EmitAlignment(4);
Chris Lattnerd5a83252010-01-20 21:36:48 +0000753 O << *Stub << ":\n";
754 O << "\t.indirect_symbol " << *RawSym << '\n';
755 O << "\tlis r11,ha16(" << *LazyPtr << ")\n";
756 O << (isPPC64 ? "\tldu" : "\tlwzu") << " r12,lo16(" << *LazyPtr
Chris Lattner5b187502010-01-20 21:19:44 +0000757 << ")(r11)\n";
758 O << "\tmtctr r12\n";
759 O << "\tbctr\n";
760 OutStreamer.SwitchSection(LSPSection);
Chris Lattnerd5a83252010-01-20 21:36:48 +0000761 O << *LazyPtr << ":\n";
762 O << "\t.indirect_symbol " << *RawSym << '\n';
Chris Lattner5b187502010-01-20 21:19:44 +0000763 O << (isPPC64 ? "\t.quad" : "\t.long") << " dyld_stub_binding_helper\n";
764 }
765
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000766 O << '\n';
Chris Lattner5b187502010-01-20 21:19:44 +0000767}
768
769
770bool PPCDarwinAsmPrinter::doFinalization(Module &M) {
771 bool isPPC64 = TM.getTargetData()->getPointerSizeInBits() == 64;
772
773 // Darwin/PPC always uses mach-o.
774 TargetLoweringObjectFileMachO &TLOFMacho =
775 static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
776 MachineModuleInfoMachO &MMIMacho =
777 MMI->getObjFileInfo<MachineModuleInfoMachO>();
778
Chris Lattnerd5a83252010-01-20 21:36:48 +0000779 MachineModuleInfoMachO::SymbolListTy Stubs = MMIMacho.GetFnStubList();
780 if (!Stubs.empty())
781 EmitFunctionStubs(Stubs);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000782
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000783 if (MAI->doesSupportExceptionHandling() && MMI) {
Dale Johannesenfb3ac732007-11-20 23:24:42 +0000784 // Add the (possibly multiple) personalities to the set of global values.
Dale Johannesen85535762008-04-02 00:25:04 +0000785 // Only referenced functions get into the Personalities list.
Chris Lattner2424eac2009-06-24 19:09:55 +0000786 const std::vector<Function *> &Personalities = MMI->getPersonalities();
Dale Johannesenfb3ac732007-11-20 23:24:42 +0000787 for (std::vector<Function *>::const_iterator I = Personalities.begin(),
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000788 E = Personalities.end(); I != E; ++I) {
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000789 if (*I) {
Chris Lattner77653062010-02-03 06:18:30 +0000790 MCSymbol *NLPSym = GetSymbolWithGlobalValueBase(*I, "$non_lazy_ptr");
Bill Wendlingce996512010-03-10 22:34:10 +0000791 MachineModuleInfoImpl::StubValueTy &StubSym =
792 MMIMacho.getGVStubEntry(NLPSym);
793 StubSym = MachineModuleInfoImpl::
794 StubValueTy(GetGlobalValueSymbol(*I), true);
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000795 }
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000796 }
Dale Johannesenfb3ac732007-11-20 23:24:42 +0000797 }
798
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000799 // Output stubs for dynamically-linked functions.
Chris Lattnerd5a83252010-01-20 21:36:48 +0000800 Stubs = MMIMacho.GetGVStubList();
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000801
Chris Lattnerf4815552009-08-03 22:52:21 +0000802 // Output macho stubs for external and common global variables.
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000803 if (!Stubs.empty()) {
Chris Lattner72a676a2009-08-10 01:39:42 +0000804 // Switch with ".non_lazy_symbol_pointer" directive.
Chris Lattner73266f92009-08-19 05:49:37 +0000805 OutStreamer.SwitchSection(TLOFMacho.getNonLazySymbolPointerSection());
Chris Lattner2d61eaa2009-08-10 17:58:51 +0000806 EmitAlignment(isPPC64 ? 3 : 2);
807
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000808 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
809 O << *Stubs[i].first << ":\n";
Bill Wendlingce996512010-03-10 22:34:10 +0000810 O << "\t.indirect_symbol " << *Stubs[i].second.getPointer() << '\n';
811 // FIXME: This should use the "GV is external" bit.
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000812 O << (isPPC64 ? "\t.quad\t0\n" : "\t.long\t0\n");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000813 }
814 }
815
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000816 Stubs = MMIMacho.GetHiddenGVStubList();
817 if (!Stubs.empty()) {
Chris Lattner73266f92009-08-19 05:49:37 +0000818 OutStreamer.SwitchSection(getObjFileLowering().getDataSection());
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000819 EmitAlignment(isPPC64 ? 3 : 2);
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000820
821 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
822 O << *Stubs[i].first << ":\n";
Bill Wendlingce996512010-03-10 22:34:10 +0000823 O << (isPPC64 ? "\t.quad\t" : "\t.long\t")
824 << *Stubs[i].second.getPointer() << '\n';
Evan Chenga65854f2008-12-05 01:06:39 +0000825 }
826 }
827
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000828 // Funny Darwin hack: This flag tells the linker that no global symbols
829 // contain code that falls through to other global symbols (e.g. the obvious
830 // implementation of multiple entry points). If this doesn't occur, the
831 // linker can safely perform dead code stripping. Since LLVM never generates
832 // code that does this, it is always safe to set.
Chris Lattner2d7c8142010-01-23 06:39:22 +0000833 OutStreamer.EmitAssemblerFlag(MCAF_SubsectionsViaSymbols);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000834
Dan Gohman4a558a32007-07-25 19:33:14 +0000835 return AsmPrinter::doFinalization(M);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000836}
837
838
839
840/// createPPCAsmPrinterPass - Returns a pass that prints the PPC assembly code
841/// for a MachineFunction to the given output stream, in a format that the
842/// Darwin assembler can deal with.
843///
Daniel Dunbar4cb63652009-08-13 23:48:47 +0000844static AsmPrinter *createPPCAsmPrinterPass(formatted_raw_ostream &o,
845 TargetMachine &tm,
Chris Lattner8d2970b2010-02-02 23:37:42 +0000846 MCContext &Ctx, MCStreamer &Streamer,
847 const MCAsmInfo *tai) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000848 const PPCSubtarget *Subtarget = &tm.getSubtarget<PPCSubtarget>();
849
Chris Lattnerae982212009-07-21 18:38:57 +0000850 if (Subtarget->isDarwin())
Chris Lattner8d2970b2010-02-02 23:37:42 +0000851 return new PPCDarwinAsmPrinter(o, tm, Ctx, Streamer, tai);
852 return new PPCLinuxAsmPrinter(o, tm, Ctx, Streamer, tai);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000853}
Anton Korobeynikov01c0e9f2008-08-17 13:54:28 +0000854
Bob Wilsonebbc1c42009-06-23 23:59:40 +0000855// Force static initialization.
Daniel Dunbarfe5939f2009-07-15 20:24:03 +0000856extern "C" void LLVMInitializePowerPCAsmPrinter() {
Daniel Dunbarfe5939f2009-07-15 20:24:03 +0000857 TargetRegistry::RegisterAsmPrinter(ThePPC32Target, createPPCAsmPrinterPass);
Daniel Dunbarfe5939f2009-07-15 20:24:03 +0000858 TargetRegistry::RegisterAsmPrinter(ThePPC64Target, createPPCAsmPrinterPass);
859}