blob: a0fba86fa6b2368f5539ccb0210cce8e36fafe42 [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"
30#include "llvm/CodeGen/MachineModuleInfo.h"
31#include "llvm/CodeGen/MachineFunctionPass.h"
32#include "llvm/CodeGen/MachineInstr.h"
Bill Wendling36ccaea2008-01-26 06:51:24 +000033#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattnerc6f802d2009-09-13 17:14:04 +000034#include "llvm/MC/MCAsmInfo.h"
Chris Lattner7f1ac7f2009-08-10 18:15:01 +000035#include "llvm/MC/MCSectionMachO.h"
Chris Lattner73266f92009-08-19 05:49:37 +000036#include "llvm/MC/MCStreamer.h"
Chris Lattnerc6f802d2009-09-13 17:14:04 +000037#include "llvm/MC/MCSymbol.h"
Chris Lattnere6ad12f2009-07-31 18:48:30 +000038#include "llvm/Target/TargetLoweringObjectFile.h"
39#include "llvm/Target/TargetRegisterInfo.h"
40#include "llvm/Target/TargetInstrInfo.h"
41#include "llvm/Target/TargetOptions.h"
42#include "llvm/Target/TargetRegistry.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000043#include "llvm/Support/Mangler.h"
44#include "llvm/Support/MathExtras.h"
45#include "llvm/Support/CommandLine.h"
46#include "llvm/Support/Debug.h"
Edwin Török4d9756a2009-07-08 20:53:28 +000047#include "llvm/Support/ErrorHandling.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000048#include "llvm/Support/Compiler.h"
David Greene302008d2009-07-14 20:18:05 +000049#include "llvm/Support/FormattedStream.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000050#include "llvm/ADT/Statistic.h"
51#include "llvm/ADT/StringExtras.h"
Evan Chenga65854f2008-12-05 01:06:39 +000052#include "llvm/ADT/StringSet.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000053using namespace llvm;
54
55STATISTIC(EmittedInsts, "Number of machine instrs printed");
56
57namespace {
Bill Wendling4f405312009-02-24 08:30:20 +000058 class VISIBILITY_HIDDEN PPCAsmPrinter : public AsmPrinter {
59 protected:
Chris Lattner9ea6e2a2009-07-15 02:28:57 +000060 struct FnStubInfo {
61 std::string Stub, LazyPtr, AnonSymbol;
62
63 FnStubInfo() {}
64
65 void Init(const GlobalValue *GV, Mangler *Mang) {
66 // Already initialized.
67 if (!Stub.empty()) return;
68 Stub = Mang->getMangledName(GV, "$stub", true);
69 LazyPtr = Mang->getMangledName(GV, "$lazy_ptr", true);
70 AnonSymbol = Mang->getMangledName(GV, "$stub$tmp", true);
71 }
72
73 void Init(const std::string &GV, Mangler *Mang) {
74 // Already initialized.
75 if (!Stub.empty()) return;
Bill Wendling41a07852009-07-20 01:03:30 +000076 Stub = Mang->makeNameProper(GV + "$stub",
Bill Wendlinge4699112009-07-20 19:41:27 +000077 Mangler::Private);
Bill Wendling41a07852009-07-20 01:03:30 +000078 LazyPtr = Mang->makeNameProper(GV + "$lazy_ptr",
Bill Wendlinge4699112009-07-20 19:41:27 +000079 Mangler::Private);
Bill Wendling41a07852009-07-20 01:03:30 +000080 AnonSymbol = Mang->makeNameProper(GV + "$stub$tmp",
Bill Wendlinge4699112009-07-20 19:41:27 +000081 Mangler::Private);
Chris Lattner9ea6e2a2009-07-15 02:28:57 +000082 }
83 };
84
85 StringMap<FnStubInfo> FnStubs;
Tilmann Scheller72cf2812009-08-15 11:54:46 +000086 StringMap<std::string> GVStubs, HiddenGVStubs, TOC;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000087 const PPCSubtarget &Subtarget;
Tilmann Scheller72cf2812009-08-15 11:54:46 +000088 uint64_t LabelID;
Bill Wendling4f405312009-02-24 08:30:20 +000089 public:
David Greene302008d2009-07-14 20:18:05 +000090 explicit PPCAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
Chris Lattner621c44d2009-08-22 20:48:53 +000091 const MCAsmInfo *T, bool V)
Daniel Dunbarb10d2222009-07-01 01:48:54 +000092 : AsmPrinter(O, TM, T, V),
Tilmann Scheller72cf2812009-08-15 11:54:46 +000093 Subtarget(TM.getSubtarget<PPCSubtarget>()), LabelID(0) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +000094
95 virtual const char *getPassName() const {
96 return "PowerPC Assembly Printer";
97 }
98
99 PPCTargetMachine &getTM() {
100 return static_cast<PPCTargetMachine&>(TM);
101 }
102
103 unsigned enumRegToMachineReg(unsigned enumReg) {
104 switch (enumReg) {
Edwin Törökbd448e32009-07-14 16:55:14 +0000105 default: llvm_unreachable("Unhandled register!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000106 case PPC::CR0: return 0;
107 case PPC::CR1: return 1;
108 case PPC::CR2: return 2;
109 case PPC::CR3: return 3;
110 case PPC::CR4: return 4;
111 case PPC::CR5: return 5;
112 case PPC::CR6: return 6;
113 case PPC::CR7: return 7;
114 }
Edwin Törökbd448e32009-07-14 16:55:14 +0000115 llvm_unreachable(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000116 }
117
118 /// printInstruction - This method is automatically generated by tablegen
119 /// from the instruction set description. This method returns true if the
120 /// machine instruction was sufficiently described to print it, otherwise it
121 /// returns false.
Chris Lattnerddb259a2009-08-08 01:32:19 +0000122 void printInstruction(const MachineInstr *MI);
Chris Lattner213703c2009-09-13 20:19:22 +0000123 static const char *getRegisterName(unsigned RegNo);
Chris Lattner92221692009-09-13 20:08:00 +0000124
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000125
126 void printMachineInstruction(const MachineInstr *MI);
127 void printOp(const MachineOperand &MO);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000128
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000129 /// stripRegisterPrefix - This method strips the character prefix from a
130 /// register name so that only the number is left. Used by for linux asm.
131 const char *stripRegisterPrefix(const char *RegName) {
132 switch (RegName[0]) {
133 case 'r':
134 case 'f':
135 case 'v': return RegName + 1;
136 case 'c': if (RegName[1] == 'r') return RegName + 2;
137 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000138
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000139 return RegName;
140 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000141
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000142 /// printRegister - Print register according to target requirements.
143 ///
144 void printRegister(const MachineOperand &MO, bool R0AsZero) {
145 unsigned RegNo = MO.getReg();
Dan Gohman1e57df32008-02-10 18:45:23 +0000146 assert(TargetRegisterInfo::isPhysicalRegister(RegNo) && "Not physreg??");
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000147
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000148 // If we should use 0 for R0.
149 if (R0AsZero && RegNo == PPC::R0) {
150 O << "0";
151 return;
152 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000153
Chris Lattnerf0a25de2009-09-13 20:31:40 +0000154 const char *RegName = getRegisterName(RegNo);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000155 // Linux assembler (Others?) does not take register mnemonics.
156 // FIXME - What about special registers used in mfspr/mtspr?
157 if (!Subtarget.isDarwin()) RegName = stripRegisterPrefix(RegName);
158 O << RegName;
159 }
160
161 void printOperand(const MachineInstr *MI, unsigned OpNo) {
162 const MachineOperand &MO = MI->getOperand(OpNo);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000163 if (MO.isReg()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000164 printRegister(MO, false);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000165 } else if (MO.isImm()) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000166 O << MO.getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000167 } else {
168 printOp(MO);
169 }
170 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000171
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000172 bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
173 unsigned AsmVariant, const char *ExtraCode);
174 bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
175 unsigned AsmVariant, const char *ExtraCode);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000176
177
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000178 void printS5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000179 char value = MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000180 value = (value << (32-5)) >> (32-5);
181 O << (int)value;
182 }
183 void printU5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000184 unsigned char value = MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000185 assert(value <= 31 && "Invalid u5imm argument!");
186 O << (unsigned int)value;
187 }
188 void printU6ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000189 unsigned char value = MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000190 assert(value <= 63 && "Invalid u6imm argument!");
191 O << (unsigned int)value;
192 }
193 void printS16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000194 O << (short)MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000195 }
196 void printU16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000197 O << (unsigned short)MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000198 }
199 void printS16X4ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000200 if (MI->getOperand(OpNo).isImm()) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000201 O << (short)(MI->getOperand(OpNo).getImm()*4);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000202 } else {
203 O << "lo16(";
204 printOp(MI->getOperand(OpNo));
205 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng477013c2007-10-14 05:57:21 +0000206 O << "-\"L" << getFunctionNumber() << "$pb\")";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000207 else
208 O << ')';
209 }
210 }
211 void printBranchOperand(const MachineInstr *MI, unsigned OpNo) {
212 // Branches can take an immediate operand. This is used by the branch
213 // selection pass to print $+8, an eight byte displacement from the PC.
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000214 if (MI->getOperand(OpNo).isImm()) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000215 O << "$+" << MI->getOperand(OpNo).getImm()*4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000216 } else {
217 printOp(MI->getOperand(OpNo));
218 }
219 }
220 void printCallOperand(const MachineInstr *MI, unsigned OpNo) {
221 const MachineOperand &MO = MI->getOperand(OpNo);
222 if (TM.getRelocationModel() != Reloc::Static) {
223 if (MO.getType() == MachineOperand::MO_GlobalAddress) {
224 GlobalValue *GV = MO.getGlobal();
Chris Lattner0fd4feb2009-07-02 16:08:53 +0000225 if (GV->isDeclaration() || GV->isWeakForLinker()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000226 // Dynamically-resolved functions need a stub for the function.
Chris Lattner9ea6e2a2009-07-15 02:28:57 +0000227 FnStubInfo &FnInfo = FnStubs[Mang->getMangledName(GV)];
228 FnInfo.Init(GV, Mang);
229 O << FnInfo.Stub;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000230 return;
231 }
232 }
233 if (MO.getType() == MachineOperand::MO_ExternalSymbol) {
Chris Lattner9ea6e2a2009-07-15 02:28:57 +0000234 FnStubInfo &FnInfo =FnStubs[Mang->makeNameProper(MO.getSymbolName())];
235 FnInfo.Init(MO.getSymbolName(), Mang);
236 O << FnInfo.Stub;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000237 return;
238 }
239 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000240
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000241 printOp(MI->getOperand(OpNo));
242 }
243 void printAbsAddrOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000244 O << (int)MI->getOperand(OpNo).getImm()*4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000245 }
246 void printPICLabel(const MachineInstr *MI, unsigned OpNo) {
Evan Cheng477013c2007-10-14 05:57:21 +0000247 O << "\"L" << getFunctionNumber() << "$pb\"\n";
248 O << "\"L" << getFunctionNumber() << "$pb\":";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000249 }
250 void printSymbolHi(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000251 if (MI->getOperand(OpNo).isImm()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000252 printS16ImmOperand(MI, OpNo);
253 } else {
254 if (Subtarget.isDarwin()) O << "ha16(";
255 printOp(MI->getOperand(OpNo));
256 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng477013c2007-10-14 05:57:21 +0000257 O << "-\"L" << getFunctionNumber() << "$pb\"";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000258 if (Subtarget.isDarwin())
259 O << ')';
260 else
261 O << "@ha";
262 }
263 }
264 void printSymbolLo(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000265 if (MI->getOperand(OpNo).isImm()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000266 printS16ImmOperand(MI, OpNo);
267 } else {
268 if (Subtarget.isDarwin()) O << "lo16(";
269 printOp(MI->getOperand(OpNo));
270 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng477013c2007-10-14 05:57:21 +0000271 O << "-\"L" << getFunctionNumber() << "$pb\"";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000272 if (Subtarget.isDarwin())
273 O << ')';
274 else
275 O << "@l";
276 }
277 }
278 void printcrbitm(const MachineInstr *MI, unsigned OpNo) {
279 unsigned CCReg = MI->getOperand(OpNo).getReg();
280 unsigned RegNo = enumRegToMachineReg(CCReg);
281 O << (0x80 >> RegNo);
282 }
283 // The new addressing mode printers.
284 void printMemRegImm(const MachineInstr *MI, unsigned OpNo) {
285 printSymbolLo(MI, OpNo);
286 O << '(';
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000287 if (MI->getOperand(OpNo+1).isReg() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000288 MI->getOperand(OpNo+1).getReg() == PPC::R0)
289 O << "0";
290 else
291 printOperand(MI, OpNo+1);
292 O << ')';
293 }
294 void printMemRegImmShifted(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000295 if (MI->getOperand(OpNo).isImm())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000296 printS16X4ImmOperand(MI, OpNo);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000297 else
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000298 printSymbolLo(MI, OpNo);
299 O << '(';
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000300 if (MI->getOperand(OpNo+1).isReg() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000301 MI->getOperand(OpNo+1).getReg() == PPC::R0)
302 O << "0";
303 else
304 printOperand(MI, OpNo+1);
305 O << ')';
306 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000307
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000308 void printMemRegReg(const MachineInstr *MI, unsigned OpNo) {
309 // When used as the base register, r0 reads constant zero rather than
310 // the value contained in the register. For this reason, the darwin
311 // assembler requires that we print r0 as 0 (no r) when used as the base.
312 const MachineOperand &MO = MI->getOperand(OpNo);
313 printRegister(MO, true);
314 O << ", ";
315 printOperand(MI, OpNo+1);
316 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000317
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000318 void printTOCEntryLabel(const MachineInstr *MI, unsigned OpNo) {
319 const MachineOperand &MO = MI->getOperand(OpNo);
320
321 assert(MO.getType() == MachineOperand::MO_GlobalAddress);
322
323 GlobalValue *GV = MO.getGlobal();
324
325 std::string Name = Mang->getMangledName(GV);
326
327 // Map symbol -> label of TOC entry.
328 if (TOC.count(Name) == 0) {
329 std::string Label;
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000330 Label += MAI->getPrivateGlobalPrefix();
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000331 Label += "C";
332 Label += utostr(LabelID++);
333
334 TOC[Name] = Label;
335 }
336
337 O << TOC[Name] << "@toc";
338 }
339
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000340 void printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000341 const char *Modifier);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000342
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000343 virtual bool runOnMachineFunction(MachineFunction &F) = 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000344 };
345
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000346 /// PPCLinuxAsmPrinter - PowerPC assembly printer, customized for Linux
Bill Wendling4f405312009-02-24 08:30:20 +0000347 class VISIBILITY_HIDDEN PPCLinuxAsmPrinter : public PPCAsmPrinter {
Bill Wendling4f405312009-02-24 08:30:20 +0000348 public:
Daniel Dunbarfe5939f2009-07-15 20:24:03 +0000349 explicit PPCLinuxAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
Chris Lattner621c44d2009-08-22 20:48:53 +0000350 const MCAsmInfo *T, bool V)
Daniel Dunbarb10d2222009-07-01 01:48:54 +0000351 : PPCAsmPrinter(O, TM, T, V){}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000352
353 virtual const char *getPassName() const {
354 return "Linux PPC Assembly Printer";
355 }
356
357 bool runOnMachineFunction(MachineFunction &F);
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000358 bool doFinalization(Module &M);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000359
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000360 void getAnalysisUsage(AnalysisUsage &AU) const {
361 AU.setPreservesAll();
362 AU.addRequired<MachineModuleInfo>();
Devang Patelaa1e8432009-01-08 23:40:34 +0000363 AU.addRequired<DwarfWriter>();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000364 PPCAsmPrinter::getAnalysisUsage(AU);
365 }
366
Chris Lattnerae982212009-07-21 18:38:57 +0000367 void PrintGlobalVariable(const GlobalVariable *GVar);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000368 };
369
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000370 /// PPCDarwinAsmPrinter - PowerPC assembly printer, customized for Darwin/Mac
371 /// OS X
Bill Wendling4f405312009-02-24 08:30:20 +0000372 class VISIBILITY_HIDDEN PPCDarwinAsmPrinter : public PPCAsmPrinter {
David Greene302008d2009-07-14 20:18:05 +0000373 formatted_raw_ostream &OS;
Bill Wendling4f405312009-02-24 08:30:20 +0000374 public:
Daniel Dunbarfe5939f2009-07-15 20:24:03 +0000375 explicit PPCDarwinAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
Chris Lattner621c44d2009-08-22 20:48:53 +0000376 const MCAsmInfo *T, bool V)
Daniel Dunbarb10d2222009-07-01 01:48:54 +0000377 : PPCAsmPrinter(O, TM, T, V), OS(O) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000378
379 virtual const char *getPassName() const {
380 return "Darwin PPC Assembly Printer";
381 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000382
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000383 bool runOnMachineFunction(MachineFunction &F);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000384 bool doFinalization(Module &M);
Bob Wilsonb5f835e2009-09-30 22:06:26 +0000385 void EmitStartOfAsmFile(Module &M);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000386
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000387 void getAnalysisUsage(AnalysisUsage &AU) const {
388 AU.setPreservesAll();
389 AU.addRequired<MachineModuleInfo>();
Devang Patelaa1e8432009-01-08 23:40:34 +0000390 AU.addRequired<DwarfWriter>();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000391 PPCAsmPrinter::getAnalysisUsage(AU);
392 }
393
Chris Lattnerae982212009-07-21 18:38:57 +0000394 void PrintGlobalVariable(const GlobalVariable *GVar);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000395 };
396} // end of anonymous namespace
397
398// Include the auto-generated portion of the assembly writer
399#include "PPCGenAsmWriter.inc"
400
401void PPCAsmPrinter::printOp(const MachineOperand &MO) {
402 switch (MO.getType()) {
403 case MachineOperand::MO_Immediate:
Edwin Törökbd448e32009-07-14 16:55:14 +0000404 llvm_unreachable("printOp() does not handle immediate values");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000405
406 case MachineOperand::MO_MachineBasicBlock:
Chris Lattnerc6f802d2009-09-13 17:14:04 +0000407 GetMBBSymbol(MO.getMBB()->getNumber())->print(O, MAI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000408 return;
409 case MachineOperand::MO_JumpTableIndex:
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000410 O << MAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
Chris Lattner6017d482007-12-30 23:10:15 +0000411 << '_' << MO.getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000412 // FIXME: PIC relocation model
413 return;
414 case MachineOperand::MO_ConstantPoolIndex:
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000415 O << MAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber()
Chris Lattner6017d482007-12-30 23:10:15 +0000416 << '_' << MO.getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000417 return;
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000418 case MachineOperand::MO_ExternalSymbol: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000419 // Computing the address of an external symbol, not calling it.
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000420 std::string Name(MAI->getGlobalPrefix());
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000421 Name += MO.getSymbolName();
422
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000423 if (TM.getRelocationModel() != Reloc::Static) {
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000424 GVStubs[Name] = Name+"$non_lazy_ptr";
425 Name += "$non_lazy_ptr";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000426 }
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000427 O << Name;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000428 return;
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000429 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000430 case MachineOperand::MO_GlobalAddress: {
431 // Computing the address of a global symbol, not calling it.
432 GlobalValue *GV = MO.getGlobal();
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000433 std::string Name;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000434
435 // External or weakly linked global variables need non-lazily-resolved stubs
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000436 if (TM.getRelocationModel() != Reloc::Static &&
437 (GV->isDeclaration() || GV->isWeakForLinker())) {
438 if (!GV->hasHiddenVisibility()) {
439 Name = Mang->getMangledName(GV, "$non_lazy_ptr", true);
440 GVStubs[Mang->getMangledName(GV)] = Name;
441 } else if (GV->isDeclaration() || GV->hasCommonLinkage() ||
442 GV->hasAvailableExternallyLinkage()) {
443 Name = Mang->getMangledName(GV, "$non_lazy_ptr", true);
444 HiddenGVStubs[Mang->getMangledName(GV)] = Name;
445 } else {
446 Name = Mang->getMangledName(GV);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000447 }
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000448 } else {
449 Name = Mang->getMangledName(GV);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000450 }
451 O << Name;
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000452
Anton Korobeynikov440f23d2008-11-22 16:15:34 +0000453 printOffset(MO.getOffset());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000454 return;
455 }
456
457 default:
458 O << "<unknown operand type: " << MO.getType() << ">";
459 return;
460 }
461}
462
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000463/// PrintAsmOperand - Print out an operand for an inline asm expression.
464///
465bool PPCAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000466 unsigned AsmVariant,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000467 const char *ExtraCode) {
468 // Does this asm operand have a single letter operand modifier?
469 if (ExtraCode && ExtraCode[0]) {
470 if (ExtraCode[1] != 0) return true; // Unknown modifier.
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000471
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000472 switch (ExtraCode[0]) {
473 default: return true; // Unknown modifier.
474 case 'c': // Don't print "$" before a global var name or constant.
475 // PPC never has a prefix.
476 printOperand(MI, OpNo);
477 return false;
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000478 case 'L': // Write second word of DImode reference.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000479 // Verify that this operand has two consecutive registers.
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000480 if (!MI->getOperand(OpNo).isReg() ||
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000481 OpNo+1 == MI->getNumOperands() ||
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000482 !MI->getOperand(OpNo+1).isReg())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000483 return true;
484 ++OpNo; // Return the high-part.
485 break;
486 case 'I':
487 // Write 'i' if an integer constant, otherwise nothing. Used to print
488 // addi vs add, etc.
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000489 if (MI->getOperand(OpNo).isImm())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000490 O << "i";
491 return false;
492 }
493 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000494
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000495 printOperand(MI, OpNo);
496 return false;
497}
498
Dale Johannesen0a42b9662009-08-18 00:18:39 +0000499// At the moment, all inline asm memory operands are a single register.
500// In any case, the output of this routine should always be just one
501// assembler operand.
502
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000503bool PPCAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000504 unsigned AsmVariant,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000505 const char *ExtraCode) {
506 if (ExtraCode && ExtraCode[0])
507 return true; // Unknown modifier.
Dale Johannesen0a42b9662009-08-18 00:18:39 +0000508 assert (MI->getOperand(OpNo).isReg());
Dale Johannesen5e699502009-08-26 18:10:32 +0000509 O << "0(";
Dale Johannesen0a42b9662009-08-18 00:18:39 +0000510 printOperand(MI, OpNo);
Dale Johannesen5e699502009-08-26 18:10:32 +0000511 O << ")";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000512 return false;
513}
514
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000515void PPCAsmPrinter::printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000516 const char *Modifier) {
517 assert(Modifier && "Must specify 'cc' or 'reg' as predicate op modifier!");
518 unsigned Code = MI->getOperand(OpNo).getImm();
519 if (!strcmp(Modifier, "cc")) {
520 switch ((PPC::Predicate)Code) {
521 case PPC::PRED_ALWAYS: return; // Don't print anything for always.
522 case PPC::PRED_LT: O << "lt"; return;
523 case PPC::PRED_LE: O << "le"; return;
524 case PPC::PRED_EQ: O << "eq"; return;
525 case PPC::PRED_GE: O << "ge"; return;
526 case PPC::PRED_GT: O << "gt"; return;
527 case PPC::PRED_NE: O << "ne"; return;
528 case PPC::PRED_UN: O << "un"; return;
529 case PPC::PRED_NU: O << "nu"; return;
530 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000531
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000532 } else {
533 assert(!strcmp(Modifier, "reg") &&
534 "Need to specify 'cc' or 'reg' as predicate op modifier!");
535 // Don't print the register for 'always'.
536 if (Code == PPC::PRED_ALWAYS) return;
537 printOperand(MI, OpNo+1);
538 }
539}
540
541
542/// printMachineInstruction -- Print out a single PowerPC MI in Darwin syntax to
543/// the current output stream.
544///
545void PPCAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
546 ++EmittedInsts;
Chris Lattnere34788c2009-09-09 20:34:59 +0000547
Devang Patel5450fc12009-10-06 02:19:11 +0000548 processDebugLoc(MI, true);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000549
550 // Check for slwi/srwi mnemonics.
551 if (MI->getOpcode() == PPC::RLWINM) {
552 bool FoundMnemonic = false;
Chris Lattnera96056a2007-12-30 20:49:49 +0000553 unsigned char SH = MI->getOperand(2).getImm();
554 unsigned char MB = MI->getOperand(3).getImm();
555 unsigned char ME = MI->getOperand(4).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000556 if (SH <= 31 && MB == 0 && ME == (31-SH)) {
Nate Begemanbd5cdf12008-02-05 08:49:09 +0000557 O << "\tslwi "; FoundMnemonic = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000558 }
559 if (SH <= 31 && MB == (32-SH) && ME == 31) {
Nate Begemanbd5cdf12008-02-05 08:49:09 +0000560 O << "\tsrwi "; FoundMnemonic = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000561 SH = 32-SH;
562 }
563 if (FoundMnemonic) {
564 printOperand(MI, 0);
565 O << ", ";
566 printOperand(MI, 1);
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000567 O << ", " << (unsigned int)SH << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000568 return;
569 }
570 } else if (MI->getOpcode() == PPC::OR || MI->getOpcode() == PPC::OR8) {
571 if (MI->getOperand(1).getReg() == MI->getOperand(2).getReg()) {
Nate Begemanbd5cdf12008-02-05 08:49:09 +0000572 O << "\tmr ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000573 printOperand(MI, 0);
574 O << ", ";
575 printOperand(MI, 1);
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000576 O << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000577 return;
578 }
579 } else if (MI->getOpcode() == PPC::RLDICR) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000580 unsigned char SH = MI->getOperand(2).getImm();
581 unsigned char ME = MI->getOperand(3).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000582 // rldicr RA, RS, SH, 63-SH == sldi RA, RS, SH
583 if (63-SH == ME) {
Nate Begemanbd5cdf12008-02-05 08:49:09 +0000584 O << "\tsldi ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000585 printOperand(MI, 0);
586 O << ", ";
587 printOperand(MI, 1);
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000588 O << ", " << (unsigned int)SH << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000589 return;
590 }
591 }
592
Chris Lattner7d337492009-08-08 00:05:42 +0000593 printInstruction(MI);
Chris Lattner32d4cc72009-09-09 23:14:36 +0000594
595 if (VerboseAsm && !MI->getDebugLoc().isUnknown())
596 EmitComments(*MI);
597 O << '\n';
Devang Patel5450fc12009-10-06 02:19:11 +0000598
599 processDebugLoc(MI, false);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000600}
601
602/// runOnMachineFunction - This uses the printMachineInstruction()
603/// method to print assembly for each instruction.
604///
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000605bool PPCLinuxAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Bill Wendling4f405312009-02-24 08:30:20 +0000606 this->MF = &MF;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000607
608 SetupMachineFunction(MF);
609 O << "\n\n";
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000610
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000611 // Print out constants referenced by the function
612 EmitConstantPool(MF.getConstantPool());
613
614 // Print out labels for the function.
615 const Function *F = MF.getFunction();
Chris Lattner73266f92009-08-19 05:49:37 +0000616 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang, TM));
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000617
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000618 switch (F->getLinkage()) {
Edwin Törökbd448e32009-07-14 16:55:14 +0000619 default: llvm_unreachable("Unknown linkage type!");
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000620 case Function::PrivateLinkage:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000621 case Function::InternalLinkage: // Symbols default to internal.
622 break;
623 case Function::ExternalLinkage:
624 O << "\t.global\t" << CurrentFnName << '\n'
625 << "\t.type\t" << CurrentFnName << ", @function\n";
626 break;
Dale Johannesenda551282009-08-24 01:03:42 +0000627 case Function::LinkerPrivateLinkage:
Duncan Sands19d161f2009-03-07 15:45:40 +0000628 case Function::WeakAnyLinkage:
629 case Function::WeakODRLinkage:
630 case Function::LinkOnceAnyLinkage:
631 case Function::LinkOnceODRLinkage:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000632 O << "\t.global\t" << CurrentFnName << '\n';
633 O << "\t.weak\t" << CurrentFnName << '\n';
634 break;
635 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000636
Anton Korobeynikov78d69aa2008-08-08 18:25:07 +0000637 printVisibility(CurrentFnName, F->getVisibility());
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000638
Bill Wendling25a8ae32009-06-30 22:38:32 +0000639 EmitAlignment(MF.getAlignment(), F);
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000640
641 if (Subtarget.isPPC64()) {
642 // Emit an official procedure descriptor.
643 // FIXME 64-bit SVR4: Use MCSection here?
644 O << "\t.section\t\".opd\",\"aw\"\n";
645 O << "\t.align 3\n";
646 O << CurrentFnName << ":\n";
647 O << "\t.quad .L." << CurrentFnName << ",.TOC.@tocbase\n";
648 O << "\t.previous\n";
649 O << ".L." << CurrentFnName << ":\n";
650 } else {
651 O << CurrentFnName << ":\n";
652 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000653
654 // Emit pre-function debug information.
Devang Patelaa1e8432009-01-08 23:40:34 +0000655 DW->BeginFunction(&MF);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000656
657 // Print out code for the function.
658 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
659 I != E; ++I) {
660 // Print a label for the basic block.
661 if (I != MF.begin()) {
Chris Lattner2faa4ef2009-09-13 18:25:37 +0000662 EmitBasicBlockStart(I);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000663 }
664 for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
665 II != E; ++II) {
666 // Print the assembly for the instruction.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000667 printMachineInstruction(II);
668 }
669 }
670
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000671 O << "\t.size\t" << CurrentFnName << ",.-" << CurrentFnName << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000672
673 // Print out jump tables referenced by the function.
674 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000675
Chris Lattner73266f92009-08-19 05:49:37 +0000676 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang, TM));
Dale Johannesendd9e1c92008-12-03 19:33:10 +0000677
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000678 // Emit post-function debug information.
Devang Patelaa1e8432009-01-08 23:40:34 +0000679 DW->EndFunction(&MF);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000680
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000681 // We didn't modify anything.
682 return false;
683}
684
Chris Lattnerae982212009-07-21 18:38:57 +0000685void PPCLinuxAsmPrinter::PrintGlobalVariable(const GlobalVariable *GVar) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000686 const TargetData *TD = TM.getTargetData();
687
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000688 if (!GVar->hasInitializer())
689 return; // External global require no code
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000690
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000691 // Check to see if this is a special global used by LLVM, if so, emit it.
692 if (EmitSpecialLLVMGlobal(GVar))
693 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000694
Chris Lattnerb3cdde62009-07-14 18:17:16 +0000695 std::string name = Mang->getMangledName(GVar);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000696
Anton Korobeynikov78d69aa2008-08-08 18:25:07 +0000697 printVisibility(name, GVar->getVisibility());
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000698
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000699 Constant *C = GVar->getInitializer();
700 const Type *Type = C->getType();
Duncan Sandsec4f97d2009-05-09 07:06:46 +0000701 unsigned Size = TD->getTypeAllocSize(Type);
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000702 unsigned Align = TD->getPreferredAlignmentLog(GVar);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000703
Chris Lattner73266f92009-08-19 05:49:37 +0000704 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(GVar, Mang,
705 TM));
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000706
707 if (C->isNullValue() && /* FIXME: Verify correct */
708 !GVar->hasSection() &&
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000709 (GVar->hasLocalLinkage() || GVar->hasExternalLinkage() ||
Duncan Sands19d161f2009-03-07 15:45:40 +0000710 GVar->isWeakForLinker())) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000711 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000712
713 if (GVar->hasExternalLinkage()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000714 O << "\t.global " << name << '\n';
715 O << "\t.type " << name << ", @object\n";
Nick Lewycky3246a9c2007-07-25 03:48:45 +0000716 O << name << ":\n";
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000717 O << "\t.zero " << Size << '\n';
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000718 } else if (GVar->hasLocalLinkage()) {
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000719 O << MAI->getLCOMMDirective() << name << ',' << Size;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000720 } else {
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000721 O << ".comm " << name << ',' << Size;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000722 }
Evan Cheng11db8142009-03-24 00:17:40 +0000723 if (VerboseAsm) {
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000724 O << "\t\t" << MAI->getCommentString() << " '";
Dan Gohman2aa282f2009-08-13 01:36:44 +0000725 WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
Evan Cheng11db8142009-03-24 00:17:40 +0000726 O << "'";
727 }
728 O << '\n';
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000729 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000730 }
731
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000732 switch (GVar->getLinkage()) {
Duncan Sands19d161f2009-03-07 15:45:40 +0000733 case GlobalValue::LinkOnceAnyLinkage:
734 case GlobalValue::LinkOnceODRLinkage:
735 case GlobalValue::WeakAnyLinkage:
736 case GlobalValue::WeakODRLinkage:
Duncan Sandsb95df792009-03-11 20:14:15 +0000737 case GlobalValue::CommonLinkage:
Dale Johannesenda551282009-08-24 01:03:42 +0000738 case GlobalValue::LinkerPrivateLinkage:
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000739 O << "\t.global " << name << '\n'
740 << "\t.type " << name << ", @object\n"
741 << "\t.weak " << name << '\n';
742 break;
743 case GlobalValue::AppendingLinkage:
744 // FIXME: appending linkage variables should go into a section of
745 // their name or something. For now, just emit them as external.
746 case GlobalValue::ExternalLinkage:
747 // If external or appending, declare as a global symbol
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000748 O << "\t.global " << name << '\n'
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000749 << "\t.type " << name << ", @object\n";
750 // FALL THROUGH
751 case GlobalValue::InternalLinkage:
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000752 case GlobalValue::PrivateLinkage:
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000753 break;
754 default:
Edwin Törökbd448e32009-07-14 16:55:14 +0000755 llvm_unreachable("Unknown linkage type!");
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000756 }
757
758 EmitAlignment(Align, GVar);
Evan Cheng11db8142009-03-24 00:17:40 +0000759 O << name << ":";
760 if (VerboseAsm) {
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000761 O << "\t\t\t\t" << MAI->getCommentString() << " '";
Dan Gohman2aa282f2009-08-13 01:36:44 +0000762 WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
Evan Cheng11db8142009-03-24 00:17:40 +0000763 O << "'";
764 }
765 O << '\n';
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000766
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000767 EmitGlobalConstant(C);
768 O << '\n';
769}
770
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000771bool PPCLinuxAsmPrinter::doFinalization(Module &M) {
772 const TargetData *TD = TM.getTargetData();
773
774 bool isPPC64 = TD->getPointerSizeInBits() == 64;
775
776 if (isPPC64 && !TOC.empty()) {
777 // FIXME 64-bit SVR4: Use MCSection here?
778 O << "\t.section\t\".toc\",\"aw\"\n";
779
780 for (StringMap<std::string>::iterator I = TOC.begin(), E = TOC.end();
781 I != E; ++I) {
782 O << I->second << ":\n";
783 O << "\t.tc " << I->getKeyData() << "[TC]," << I->getKeyData() << '\n';
784 }
785 }
786
787 return AsmPrinter::doFinalization(M);
788}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000789
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000790/// runOnMachineFunction - This uses the printMachineInstruction()
791/// method to print assembly for each instruction.
792///
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000793bool PPCDarwinAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Bill Wendling4f405312009-02-24 08:30:20 +0000794 this->MF = &MF;
795
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000796 SetupMachineFunction(MF);
797 O << "\n\n";
Dale Johannesenfb3ac732007-11-20 23:24:42 +0000798
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000799 // Print out constants referenced by the function
800 EmitConstantPool(MF.getConstantPool());
801
802 // Print out labels for the function.
803 const Function *F = MF.getFunction();
Chris Lattner73266f92009-08-19 05:49:37 +0000804 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang, TM));
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000805
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000806 switch (F->getLinkage()) {
Edwin Törökbd448e32009-07-14 16:55:14 +0000807 default: llvm_unreachable("Unknown linkage type!");
evancheng47ae8142009-01-25 06:32:01 +0000808 case Function::PrivateLinkage:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000809 case Function::InternalLinkage: // Symbols default to internal.
810 break;
811 case Function::ExternalLinkage:
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000812 O << "\t.globl\t" << CurrentFnName << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000813 break;
Duncan Sands19d161f2009-03-07 15:45:40 +0000814 case Function::WeakAnyLinkage:
815 case Function::WeakODRLinkage:
816 case Function::LinkOnceAnyLinkage:
817 case Function::LinkOnceODRLinkage:
Dale Johannesenda551282009-08-24 01:03:42 +0000818 case Function::LinkerPrivateLinkage:
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000819 O << "\t.globl\t" << CurrentFnName << '\n';
820 O << "\t.weak_definition\t" << CurrentFnName << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000821 break;
822 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000823
Anton Korobeynikov78d69aa2008-08-08 18:25:07 +0000824 printVisibility(CurrentFnName, F->getVisibility());
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000825
Bill Wendling25a8ae32009-06-30 22:38:32 +0000826 EmitAlignment(MF.getAlignment(), F);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000827 O << CurrentFnName << ":\n";
828
829 // Emit pre-function debug information.
Devang Patelaa1e8432009-01-08 23:40:34 +0000830 DW->BeginFunction(&MF);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000831
Bill Wendling36ccaea2008-01-26 06:51:24 +0000832 // If the function is empty, then we need to emit *something*. Otherwise, the
833 // function's label might be associated with something that it wasn't meant to
834 // be associated with. We emit a noop in this situation.
835 MachineFunction::iterator I = MF.begin();
836
Bill Wendlingb5880a72008-01-26 09:03:52 +0000837 if (++I == MF.end() && MF.front().empty())
838 O << "\tnop\n";
Bill Wendling36ccaea2008-01-26 06:51:24 +0000839
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000840 // Print out code for the function.
841 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
842 I != E; ++I) {
843 // Print a label for the basic block.
844 if (I != MF.begin()) {
Chris Lattner2faa4ef2009-09-13 18:25:37 +0000845 EmitBasicBlockStart(I);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000846 }
Bill Wendling36ccaea2008-01-26 06:51:24 +0000847 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
848 II != IE; ++II) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000849 // Print the assembly for the instruction.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000850 printMachineInstruction(II);
851 }
852 }
853
854 // Print out jump tables referenced by the function.
855 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000856
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000857 // Emit post-function debug information.
Devang Patelaa1e8432009-01-08 23:40:34 +0000858 DW->EndFunction(&MF);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000859
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000860 // We didn't modify anything.
861 return false;
862}
863
864
Bob Wilsonb5f835e2009-09-30 22:06:26 +0000865void PPCDarwinAsmPrinter::EmitStartOfAsmFile(Module &M) {
Dan Gohman12300e12008-03-25 21:45:14 +0000866 static const char *const CPUDirectives[] = {
Dale Johannesen161badc2008-02-14 23:35:16 +0000867 "",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000868 "ppc",
869 "ppc601",
870 "ppc602",
871 "ppc603",
872 "ppc7400",
873 "ppc750",
874 "ppc970",
875 "ppc64"
876 };
877
878 unsigned Directive = Subtarget.getDarwinDirective();
879 if (Subtarget.isGigaProcessor() && Directive < PPC::DIR_970)
880 Directive = PPC::DIR_970;
881 if (Subtarget.hasAltivec() && Directive < PPC::DIR_7400)
882 Directive = PPC::DIR_7400;
883 if (Subtarget.isPPC64() && Directive < PPC::DIR_970)
884 Directive = PPC::DIR_64;
885 assert(Directive <= PPC::DIR_64 && "Directive out of range.");
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000886 O << "\t.machine " << CPUDirectives[Directive] << '\n';
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000887
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000888 // Prime text sections so they are adjacent. This reduces the likelihood a
889 // large data or debug section causes a branch to exceed 16M limit.
Chris Lattnerf4815552009-08-03 22:52:21 +0000890 TargetLoweringObjectFileMachO &TLOFMacho =
891 static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
Chris Lattner73266f92009-08-19 05:49:37 +0000892 OutStreamer.SwitchSection(TLOFMacho.getTextCoalSection());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000893 if (TM.getRelocationModel() == Reloc::PIC_) {
Chris Lattner73266f92009-08-19 05:49:37 +0000894 OutStreamer.SwitchSection(
895 TLOFMacho.getMachOSection("__TEXT", "__picsymbolstub1",
896 MCSectionMachO::S_SYMBOL_STUBS |
897 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
898 32, SectionKind::getText()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000899 } else if (TM.getRelocationModel() == Reloc::DynamicNoPIC) {
Chris Lattner73266f92009-08-19 05:49:37 +0000900 OutStreamer.SwitchSection(
901 TLOFMacho.getMachOSection("__TEXT","__symbol_stub1",
902 MCSectionMachO::S_SYMBOL_STUBS |
903 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
904 16, SectionKind::getText()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000905 }
Chris Lattner73266f92009-08-19 05:49:37 +0000906 OutStreamer.SwitchSection(getObjFileLowering().getTextSection());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000907}
908
Chris Lattnerae982212009-07-21 18:38:57 +0000909void PPCDarwinAsmPrinter::PrintGlobalVariable(const GlobalVariable *GVar) {
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000910 const TargetData *TD = TM.getTargetData();
911
912 if (!GVar->hasInitializer())
913 return; // External global require no code
914
915 // Check to see if this is a special global used by LLVM, if so, emit it.
916 if (EmitSpecialLLVMGlobal(GVar)) {
917 if (TM.getRelocationModel() == Reloc::Static) {
Daniel Dunbare03513b2009-07-25 23:55:21 +0000918 if (GVar->getName() == "llvm.global_ctors")
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000919 O << ".reference .constructors_used\n";
Daniel Dunbare03513b2009-07-25 23:55:21 +0000920 else if (GVar->getName() == "llvm.global_dtors")
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000921 O << ".reference .destructors_used\n";
922 }
923 return;
924 }
925
Chris Lattnerb3cdde62009-07-14 18:17:16 +0000926 std::string name = Mang->getMangledName(GVar);
Anton Korobeynikov78d69aa2008-08-08 18:25:07 +0000927 printVisibility(name, GVar->getVisibility());
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000928
929 Constant *C = GVar->getInitializer();
930 const Type *Type = C->getType();
Duncan Sandsec4f97d2009-05-09 07:06:46 +0000931 unsigned Size = TD->getTypeAllocSize(Type);
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000932 unsigned Align = TD->getPreferredAlignmentLog(GVar);
933
Chris Lattnere6ad12f2009-07-31 18:48:30 +0000934 const MCSection *TheSection =
Chris Lattner2931fe42009-07-29 05:09:30 +0000935 getObjFileLowering().SectionForGlobal(GVar, Mang, TM);
Chris Lattner73266f92009-08-19 05:49:37 +0000936 OutStreamer.SwitchSection(TheSection);
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000937
Chris Lattnerdb727932009-08-04 05:35:56 +0000938 /// FIXME: Drive this off the section!
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000939 if (C->isNullValue() && /* FIXME: Verify correct */
940 !GVar->hasSection() &&
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000941 (GVar->hasLocalLinkage() || GVar->hasExternalLinkage() ||
Duncan Sands19d161f2009-03-07 15:45:40 +0000942 GVar->isWeakForLinker()) &&
Chris Lattner87bc69b2009-07-24 04:08:17 +0000943 // Don't put things that should go in the cstring section into "comm".
Chris Lattnerd8310522009-07-27 05:32:16 +0000944 !TheSection->getKind().isMergeableCString()) {
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000945 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
946
947 if (GVar->hasExternalLinkage()) {
948 O << "\t.globl " << name << '\n';
949 O << "\t.zerofill __DATA, __common, " << name << ", "
950 << Size << ", " << Align;
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000951 } else if (GVar->hasLocalLinkage()) {
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000952 O << MAI->getLCOMMDirective() << name << ',' << Size << ',' << Align;
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000953 } else if (!GVar->hasCommonLinkage()) {
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000954 O << "\t.globl " << name << '\n'
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000955 << MAI->getWeakDefDirective() << name << '\n';
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000956 EmitAlignment(Align, GVar);
Evan Cheng11db8142009-03-24 00:17:40 +0000957 O << name << ":";
958 if (VerboseAsm) {
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000959 O << "\t\t\t\t" << MAI->getCommentString() << " ";
Dan Gohman2aa282f2009-08-13 01:36:44 +0000960 WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
Evan Cheng11db8142009-03-24 00:17:40 +0000961 }
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000962 O << '\n';
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000963 EmitGlobalConstant(C);
964 return;
965 } else {
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000966 O << ".comm " << name << ',' << Size;
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000967 // Darwin 9 and above support aligned common data.
968 if (Subtarget.isDarwin9())
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000969 O << ',' << Align;
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000970 }
Evan Cheng11db8142009-03-24 00:17:40 +0000971 if (VerboseAsm) {
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000972 O << "\t\t" << MAI->getCommentString() << " '";
Dan Gohman2aa282f2009-08-13 01:36:44 +0000973 WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
Evan Cheng11db8142009-03-24 00:17:40 +0000974 O << "'";
975 }
976 O << '\n';
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000977 return;
978 }
979
980 switch (GVar->getLinkage()) {
Duncan Sands19d161f2009-03-07 15:45:40 +0000981 case GlobalValue::LinkOnceAnyLinkage:
982 case GlobalValue::LinkOnceODRLinkage:
983 case GlobalValue::WeakAnyLinkage:
984 case GlobalValue::WeakODRLinkage:
Duncan Sandsb95df792009-03-11 20:14:15 +0000985 case GlobalValue::CommonLinkage:
Dale Johannesenda551282009-08-24 01:03:42 +0000986 case GlobalValue::LinkerPrivateLinkage:
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000987 O << "\t.globl " << name << '\n'
988 << "\t.weak_definition " << name << '\n';
989 break;
990 case GlobalValue::AppendingLinkage:
991 // FIXME: appending linkage variables should go into a section of
992 // their name or something. For now, just emit them as external.
993 case GlobalValue::ExternalLinkage:
994 // If external or appending, declare as a global symbol
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000995 O << "\t.globl " << name << '\n';
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000996 // FALL THROUGH
997 case GlobalValue::InternalLinkage:
evancheng47ae8142009-01-25 06:32:01 +0000998 case GlobalValue::PrivateLinkage:
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000999 break;
1000 default:
Edwin Törökbd448e32009-07-14 16:55:14 +00001001 llvm_unreachable("Unknown linkage type!");
Anton Korobeynikov248e9c52008-08-08 18:23:25 +00001002 }
1003
1004 EmitAlignment(Align, GVar);
Evan Cheng11db8142009-03-24 00:17:40 +00001005 O << name << ":";
1006 if (VerboseAsm) {
Chris Lattnera5ef4d32009-08-22 21:43:10 +00001007 O << "\t\t\t\t" << MAI->getCommentString() << " '";
Dan Gohman2aa282f2009-08-13 01:36:44 +00001008 WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
Evan Cheng11db8142009-03-24 00:17:40 +00001009 O << "'";
1010 }
1011 O << '\n';
Anton Korobeynikov248e9c52008-08-08 18:23:25 +00001012
Anton Korobeynikov248e9c52008-08-08 18:23:25 +00001013 EmitGlobalConstant(C);
1014 O << '\n';
1015}
1016
Anton Korobeynikov28f86d12008-08-08 18:22:59 +00001017bool PPCDarwinAsmPrinter::doFinalization(Module &M) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001018 const TargetData *TD = TM.getTargetData();
1019
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001020 bool isPPC64 = TD->getPointerSizeInBits() == 64;
1021
Chris Lattnerf4815552009-08-03 22:52:21 +00001022 // Darwin/PPC always uses mach-o.
1023 TargetLoweringObjectFileMachO &TLOFMacho =
1024 static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
1025
Chris Lattner72a676a2009-08-10 01:39:42 +00001026
1027 const MCSection *LSPSection = 0;
1028 if (!FnStubs.empty()) // .lazy_symbol_pointer
1029 LSPSection = TLOFMacho.getLazySymbolPointerSection();
1030
1031
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001032 // Output stubs for dynamically-linked functions
Chris Lattner189198f2009-07-15 00:55:58 +00001033 if (TM.getRelocationModel() == Reloc::PIC_ && !FnStubs.empty()) {
Chris Lattnerf4815552009-08-03 22:52:21 +00001034 const MCSection *StubSection =
Chris Lattner72a676a2009-08-10 01:39:42 +00001035 TLOFMacho.getMachOSection("__TEXT", "__picsymbolstub1",
1036 MCSectionMachO::S_SYMBOL_STUBS |
1037 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
1038 32, SectionKind::getText());
1039 for (StringMap<FnStubInfo>::iterator I = FnStubs.begin(), E = FnStubs.end();
Chris Lattner83cf1ec2009-07-15 01:14:44 +00001040 I != E; ++I) {
Chris Lattner73266f92009-08-19 05:49:37 +00001041 OutStreamer.SwitchSection(StubSection);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001042 EmitAlignment(4);
Chris Lattnerdc4cce62009-07-15 02:33:19 +00001043 const FnStubInfo &Info = I->second;
Chris Lattnerdc4cce62009-07-15 02:33:19 +00001044 O << Info.Stub << ":\n";
1045 O << "\t.indirect_symbol " << I->getKeyData() << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001046 O << "\tmflr r0\n";
Chris Lattner63e910f2009-07-15 02:56:53 +00001047 O << "\tbcl 20,31," << Info.AnonSymbol << '\n';
1048 O << Info.AnonSymbol << ":\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001049 O << "\tmflr r11\n";
Chris Lattner63e910f2009-07-15 02:56:53 +00001050 O << "\taddis r11,r11,ha16(" << Info.LazyPtr << "-" << Info.AnonSymbol;
Evan Chenga65854f2008-12-05 01:06:39 +00001051 O << ")\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001052 O << "\tmtlr r0\n";
Chris Lattner63e910f2009-07-15 02:56:53 +00001053 O << (isPPC64 ? "\tldu" : "\tlwzu") << " r12,lo16(";
1054 O << Info.LazyPtr << "-" << Info.AnonSymbol << ")(r11)\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001055 O << "\tmtctr r12\n";
1056 O << "\tbctr\n";
Chris Lattnerc0a7f1d2009-07-16 01:23:26 +00001057
Chris Lattner73266f92009-08-19 05:49:37 +00001058 OutStreamer.SwitchSection(LSPSection);
Chris Lattnerdc4cce62009-07-15 02:33:19 +00001059 O << Info.LazyPtr << ":\n";
1060 O << "\t.indirect_symbol " << I->getKeyData() << '\n';
Chris Lattnerbaa12da2009-07-15 02:36:21 +00001061 O << (isPPC64 ? "\t.quad" : "\t.long") << " dyld_stub_binding_helper\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001062 }
Chris Lattner189198f2009-07-15 00:55:58 +00001063 } else if (!FnStubs.empty()) {
Chris Lattner72a676a2009-08-10 01:39:42 +00001064 const MCSection *StubSection =
1065 TLOFMacho.getMachOSection("__TEXT","__symbol_stub1",
1066 MCSectionMachO::S_SYMBOL_STUBS |
1067 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
1068 16, SectionKind::getText());
Chris Lattnerf4815552009-08-03 22:52:21 +00001069
Chris Lattner9ea6e2a2009-07-15 02:28:57 +00001070 for (StringMap<FnStubInfo>::iterator I = FnStubs.begin(), E = FnStubs.end();
Chris Lattner83cf1ec2009-07-15 01:14:44 +00001071 I != E; ++I) {
Chris Lattner73266f92009-08-19 05:49:37 +00001072 OutStreamer.SwitchSection(StubSection);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001073 EmitAlignment(4);
Chris Lattnerdc4cce62009-07-15 02:33:19 +00001074 const FnStubInfo &Info = I->second;
1075 O << Info.Stub << ":\n";
1076 O << "\t.indirect_symbol " << I->getKeyData() << '\n';
1077 O << "\tlis r11,ha16(" << Info.LazyPtr << ")\n";
Chris Lattnerbaa12da2009-07-15 02:36:21 +00001078 O << (isPPC64 ? "\tldu" : "\tlwzu") << " r12,lo16(";
Chris Lattnerdc4cce62009-07-15 02:33:19 +00001079 O << Info.LazyPtr << ")(r11)\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001080 O << "\tmtctr r12\n";
1081 O << "\tbctr\n";
Chris Lattner73266f92009-08-19 05:49:37 +00001082 OutStreamer.SwitchSection(LSPSection);
Chris Lattnerdc4cce62009-07-15 02:33:19 +00001083 O << Info.LazyPtr << ":\n";
1084 O << "\t.indirect_symbol " << I->getKeyData() << '\n';
Chris Lattnerbaa12da2009-07-15 02:36:21 +00001085 O << (isPPC64 ? "\t.quad" : "\t.long") << " dyld_stub_binding_helper\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001086 }
1087 }
1088
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +00001089 O << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001090
Chris Lattnera5ef4d32009-08-22 21:43:10 +00001091 if (MAI->doesSupportExceptionHandling() && MMI) {
Dale Johannesenfb3ac732007-11-20 23:24:42 +00001092 // Add the (possibly multiple) personalities to the set of global values.
Dale Johannesen85535762008-04-02 00:25:04 +00001093 // Only referenced functions get into the Personalities list.
Chris Lattner2424eac2009-06-24 19:09:55 +00001094 const std::vector<Function *> &Personalities = MMI->getPersonalities();
Dale Johannesenfb3ac732007-11-20 23:24:42 +00001095 for (std::vector<Function *>::const_iterator I = Personalities.begin(),
Chris Lattner83cf1ec2009-07-15 01:14:44 +00001096 E = Personalities.end(); I != E; ++I) {
1097 if (*I)
1098 GVStubs[Mang->getMangledName(*I)] =
Chris Lattner65353d52009-07-15 01:16:38 +00001099 Mang->getMangledName(*I, "$non_lazy_ptr", true);
Chris Lattner83cf1ec2009-07-15 01:14:44 +00001100 }
Dale Johannesenfb3ac732007-11-20 23:24:42 +00001101 }
1102
Chris Lattnerf4815552009-08-03 22:52:21 +00001103 // Output macho stubs for external and common global variables.
Dan Gohman3f7d94b2007-10-03 19:26:29 +00001104 if (!GVStubs.empty()) {
Chris Lattner72a676a2009-08-10 01:39:42 +00001105 // Switch with ".non_lazy_symbol_pointer" directive.
Chris Lattner73266f92009-08-19 05:49:37 +00001106 OutStreamer.SwitchSection(TLOFMacho.getNonLazySymbolPointerSection());
Chris Lattner2d61eaa2009-08-10 17:58:51 +00001107 EmitAlignment(isPPC64 ? 3 : 2);
1108
Chris Lattner83cf1ec2009-07-15 01:14:44 +00001109 for (StringMap<std::string>::iterator I = GVStubs.begin(),
1110 E = GVStubs.end(); I != E; ++I) {
1111 O << I->second << ":\n";
1112 O << "\t.indirect_symbol " << I->getKeyData() << '\n';
1113 O << (isPPC64 ? "\t.quad\t0\n" : "\t.long\t0\n");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001114 }
1115 }
1116
Evan Chenga65854f2008-12-05 01:06:39 +00001117 if (!HiddenGVStubs.empty()) {
Chris Lattner73266f92009-08-19 05:49:37 +00001118 OutStreamer.SwitchSection(getObjFileLowering().getDataSection());
Chris Lattner83cf1ec2009-07-15 01:14:44 +00001119 EmitAlignment(isPPC64 ? 3 : 2);
1120 for (StringMap<std::string>::iterator I = HiddenGVStubs.begin(),
1121 E = HiddenGVStubs.end(); I != E; ++I) {
1122 O << I->second << ":\n";
1123 O << (isPPC64 ? "\t.quad\t" : "\t.long\t") << I->getKeyData() << '\n';
Evan Chenga65854f2008-12-05 01:06:39 +00001124 }
1125 }
1126
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001127 // Funny Darwin hack: This flag tells the linker that no global symbols
1128 // contain code that falls through to other global symbols (e.g. the obvious
1129 // implementation of multiple entry points). If this doesn't occur, the
1130 // linker can safely perform dead code stripping. Since LLVM never generates
1131 // code that does this, it is always safe to set.
1132 O << "\t.subsections_via_symbols\n";
1133
Dan Gohman4a558a32007-07-25 19:33:14 +00001134 return AsmPrinter::doFinalization(M);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001135}
1136
1137
1138
1139/// createPPCAsmPrinterPass - Returns a pass that prints the PPC assembly code
1140/// for a MachineFunction to the given output stream, in a format that the
1141/// Darwin assembler can deal with.
1142///
Daniel Dunbar4cb63652009-08-13 23:48:47 +00001143static AsmPrinter *createPPCAsmPrinterPass(formatted_raw_ostream &o,
1144 TargetMachine &tm,
Chris Lattner621c44d2009-08-22 20:48:53 +00001145 const MCAsmInfo *tai,
Daniel Dunbar4cb63652009-08-13 23:48:47 +00001146 bool verbose) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001147 const PPCSubtarget *Subtarget = &tm.getSubtarget<PPCSubtarget>();
1148
Chris Lattnerae982212009-07-21 18:38:57 +00001149 if (Subtarget->isDarwin())
Daniel Dunbaref5abb42009-08-13 19:38:51 +00001150 return new PPCDarwinAsmPrinter(o, tm, tai, verbose);
1151 return new PPCLinuxAsmPrinter(o, tm, tai, verbose);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001152}
Anton Korobeynikov01c0e9f2008-08-17 13:54:28 +00001153
Bob Wilsonebbc1c42009-06-23 23:59:40 +00001154// Force static initialization.
Daniel Dunbarfe5939f2009-07-15 20:24:03 +00001155extern "C" void LLVMInitializePowerPCAsmPrinter() {
Daniel Dunbarfe5939f2009-07-15 20:24:03 +00001156 TargetRegistry::RegisterAsmPrinter(ThePPC32Target, createPPCAsmPrinterPass);
Daniel Dunbarfe5939f2009-07-15 20:24:03 +00001157 TargetRegistry::RegisterAsmPrinter(ThePPC64Target, createPPCAsmPrinterPass);
1158}