blob: e37313823db29967f86de721494b0bec16513a52 [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);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000123
124 void printMachineInstruction(const MachineInstr *MI);
125 void printOp(const MachineOperand &MO);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000126
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000127 /// stripRegisterPrefix - This method strips the character prefix from a
128 /// register name so that only the number is left. Used by for linux asm.
129 const char *stripRegisterPrefix(const char *RegName) {
130 switch (RegName[0]) {
131 case 'r':
132 case 'f':
133 case 'v': return RegName + 1;
134 case 'c': if (RegName[1] == 'r') return RegName + 2;
135 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000136
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000137 return RegName;
138 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000139
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000140 /// printRegister - Print register according to target requirements.
141 ///
142 void printRegister(const MachineOperand &MO, bool R0AsZero) {
143 unsigned RegNo = MO.getReg();
Dan Gohman1e57df32008-02-10 18:45:23 +0000144 assert(TargetRegisterInfo::isPhysicalRegister(RegNo) && "Not physreg??");
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000145
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000146 // If we should use 0 for R0.
147 if (R0AsZero && RegNo == PPC::R0) {
148 O << "0";
149 return;
150 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000151
Bill Wendling8eeb9792008-02-26 21:11:01 +0000152 const char *RegName = TM.getRegisterInfo()->get(RegNo).AsmName;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000153 // Linux assembler (Others?) does not take register mnemonics.
154 // FIXME - What about special registers used in mfspr/mtspr?
155 if (!Subtarget.isDarwin()) RegName = stripRegisterPrefix(RegName);
156 O << RegName;
157 }
158
159 void printOperand(const MachineInstr *MI, unsigned OpNo) {
160 const MachineOperand &MO = MI->getOperand(OpNo);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000161 if (MO.isReg()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000162 printRegister(MO, false);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000163 } else if (MO.isImm()) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000164 O << MO.getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000165 } else {
166 printOp(MO);
167 }
168 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000169
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000170 bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
171 unsigned AsmVariant, const char *ExtraCode);
172 bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
173 unsigned AsmVariant, const char *ExtraCode);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000174
175
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000176 void printS5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000177 char value = MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000178 value = (value << (32-5)) >> (32-5);
179 O << (int)value;
180 }
181 void printU5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000182 unsigned char value = MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000183 assert(value <= 31 && "Invalid u5imm argument!");
184 O << (unsigned int)value;
185 }
186 void printU6ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000187 unsigned char value = MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000188 assert(value <= 63 && "Invalid u6imm argument!");
189 O << (unsigned int)value;
190 }
191 void printS16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000192 O << (short)MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000193 }
194 void printU16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000195 O << (unsigned short)MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000196 }
197 void printS16X4ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000198 if (MI->getOperand(OpNo).isImm()) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000199 O << (short)(MI->getOperand(OpNo).getImm()*4);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000200 } else {
201 O << "lo16(";
202 printOp(MI->getOperand(OpNo));
203 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng477013c2007-10-14 05:57:21 +0000204 O << "-\"L" << getFunctionNumber() << "$pb\")";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000205 else
206 O << ')';
207 }
208 }
209 void printBranchOperand(const MachineInstr *MI, unsigned OpNo) {
210 // Branches can take an immediate operand. This is used by the branch
211 // selection pass to print $+8, an eight byte displacement from the PC.
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000212 if (MI->getOperand(OpNo).isImm()) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000213 O << "$+" << MI->getOperand(OpNo).getImm()*4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000214 } else {
215 printOp(MI->getOperand(OpNo));
216 }
217 }
218 void printCallOperand(const MachineInstr *MI, unsigned OpNo) {
219 const MachineOperand &MO = MI->getOperand(OpNo);
220 if (TM.getRelocationModel() != Reloc::Static) {
221 if (MO.getType() == MachineOperand::MO_GlobalAddress) {
222 GlobalValue *GV = MO.getGlobal();
Chris Lattner0fd4feb2009-07-02 16:08:53 +0000223 if (GV->isDeclaration() || GV->isWeakForLinker()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000224 // Dynamically-resolved functions need a stub for the function.
Chris Lattner9ea6e2a2009-07-15 02:28:57 +0000225 FnStubInfo &FnInfo = FnStubs[Mang->getMangledName(GV)];
226 FnInfo.Init(GV, Mang);
227 O << FnInfo.Stub;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000228 return;
229 }
230 }
231 if (MO.getType() == MachineOperand::MO_ExternalSymbol) {
Chris Lattner9ea6e2a2009-07-15 02:28:57 +0000232 FnStubInfo &FnInfo =FnStubs[Mang->makeNameProper(MO.getSymbolName())];
233 FnInfo.Init(MO.getSymbolName(), Mang);
234 O << FnInfo.Stub;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000235 return;
236 }
237 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000238
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000239 printOp(MI->getOperand(OpNo));
240 }
241 void printAbsAddrOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000242 O << (int)MI->getOperand(OpNo).getImm()*4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000243 }
244 void printPICLabel(const MachineInstr *MI, unsigned OpNo) {
Evan Cheng477013c2007-10-14 05:57:21 +0000245 O << "\"L" << getFunctionNumber() << "$pb\"\n";
246 O << "\"L" << getFunctionNumber() << "$pb\":";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000247 }
248 void printSymbolHi(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000249 if (MI->getOperand(OpNo).isImm()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000250 printS16ImmOperand(MI, OpNo);
251 } else {
252 if (Subtarget.isDarwin()) O << "ha16(";
253 printOp(MI->getOperand(OpNo));
254 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng477013c2007-10-14 05:57:21 +0000255 O << "-\"L" << getFunctionNumber() << "$pb\"";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000256 if (Subtarget.isDarwin())
257 O << ')';
258 else
259 O << "@ha";
260 }
261 }
262 void printSymbolLo(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000263 if (MI->getOperand(OpNo).isImm()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000264 printS16ImmOperand(MI, OpNo);
265 } else {
266 if (Subtarget.isDarwin()) O << "lo16(";
267 printOp(MI->getOperand(OpNo));
268 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng477013c2007-10-14 05:57:21 +0000269 O << "-\"L" << getFunctionNumber() << "$pb\"";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000270 if (Subtarget.isDarwin())
271 O << ')';
272 else
273 O << "@l";
274 }
275 }
276 void printcrbitm(const MachineInstr *MI, unsigned OpNo) {
277 unsigned CCReg = MI->getOperand(OpNo).getReg();
278 unsigned RegNo = enumRegToMachineReg(CCReg);
279 O << (0x80 >> RegNo);
280 }
281 // The new addressing mode printers.
282 void printMemRegImm(const MachineInstr *MI, unsigned OpNo) {
283 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 }
292 void printMemRegImmShifted(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000293 if (MI->getOperand(OpNo).isImm())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000294 printS16X4ImmOperand(MI, OpNo);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000295 else
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000296 printSymbolLo(MI, OpNo);
297 O << '(';
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000298 if (MI->getOperand(OpNo+1).isReg() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000299 MI->getOperand(OpNo+1).getReg() == PPC::R0)
300 O << "0";
301 else
302 printOperand(MI, OpNo+1);
303 O << ')';
304 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000305
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000306 void printMemRegReg(const MachineInstr *MI, unsigned OpNo) {
307 // When used as the base register, r0 reads constant zero rather than
308 // the value contained in the register. For this reason, the darwin
309 // assembler requires that we print r0 as 0 (no r) when used as the base.
310 const MachineOperand &MO = MI->getOperand(OpNo);
311 printRegister(MO, true);
312 O << ", ";
313 printOperand(MI, OpNo+1);
314 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000315
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000316 void printTOCEntryLabel(const MachineInstr *MI, unsigned OpNo) {
317 const MachineOperand &MO = MI->getOperand(OpNo);
318
319 assert(MO.getType() == MachineOperand::MO_GlobalAddress);
320
321 GlobalValue *GV = MO.getGlobal();
322
323 std::string Name = Mang->getMangledName(GV);
324
325 // Map symbol -> label of TOC entry.
326 if (TOC.count(Name) == 0) {
327 std::string Label;
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000328 Label += MAI->getPrivateGlobalPrefix();
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000329 Label += "C";
330 Label += utostr(LabelID++);
331
332 TOC[Name] = Label;
333 }
334
335 O << TOC[Name] << "@toc";
336 }
337
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000338 void printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000339 const char *Modifier);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000340
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000341 virtual bool runOnMachineFunction(MachineFunction &F) = 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000342
343 virtual void EmitExternalGlobal(const GlobalVariable *GV);
344 };
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);
384 bool doInitialization(Module &M);
385 bool doFinalization(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
463/// EmitExternalGlobal - In this case we need to use the indirect symbol.
464///
465void PPCAsmPrinter::EmitExternalGlobal(const GlobalVariable *GV) {
Bill Wendling26a8ab92009-04-10 00:12:49 +0000466 std::string Name;
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000467
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000468 if (TM.getRelocationModel() != Reloc::Static) {
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000469 Name = Mang->getMangledName(GV, "$non_lazy_ptr", true);
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000470 } else {
471 Name = Mang->getMangledName(GV);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000472 }
473 O << Name;
474}
475
476/// PrintAsmOperand - Print out an operand for an inline asm expression.
477///
478bool PPCAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000479 unsigned AsmVariant,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000480 const char *ExtraCode) {
481 // Does this asm operand have a single letter operand modifier?
482 if (ExtraCode && ExtraCode[0]) {
483 if (ExtraCode[1] != 0) return true; // Unknown modifier.
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000484
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000485 switch (ExtraCode[0]) {
486 default: return true; // Unknown modifier.
487 case 'c': // Don't print "$" before a global var name or constant.
488 // PPC never has a prefix.
489 printOperand(MI, OpNo);
490 return false;
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000491 case 'L': // Write second word of DImode reference.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000492 // Verify that this operand has two consecutive registers.
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000493 if (!MI->getOperand(OpNo).isReg() ||
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000494 OpNo+1 == MI->getNumOperands() ||
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000495 !MI->getOperand(OpNo+1).isReg())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000496 return true;
497 ++OpNo; // Return the high-part.
498 break;
499 case 'I':
500 // Write 'i' if an integer constant, otherwise nothing. Used to print
501 // addi vs add, etc.
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000502 if (MI->getOperand(OpNo).isImm())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000503 O << "i";
504 return false;
505 }
506 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000507
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000508 printOperand(MI, OpNo);
509 return false;
510}
511
Dale Johannesen0a42b9662009-08-18 00:18:39 +0000512// At the moment, all inline asm memory operands are a single register.
513// In any case, the output of this routine should always be just one
514// assembler operand.
515
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000516bool PPCAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000517 unsigned AsmVariant,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000518 const char *ExtraCode) {
519 if (ExtraCode && ExtraCode[0])
520 return true; // Unknown modifier.
Dale Johannesen0a42b9662009-08-18 00:18:39 +0000521 assert (MI->getOperand(OpNo).isReg());
Dale Johannesen5e699502009-08-26 18:10:32 +0000522 O << "0(";
Dale Johannesen0a42b9662009-08-18 00:18:39 +0000523 printOperand(MI, OpNo);
Dale Johannesen5e699502009-08-26 18:10:32 +0000524 O << ")";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000525 return false;
526}
527
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000528void PPCAsmPrinter::printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000529 const char *Modifier) {
530 assert(Modifier && "Must specify 'cc' or 'reg' as predicate op modifier!");
531 unsigned Code = MI->getOperand(OpNo).getImm();
532 if (!strcmp(Modifier, "cc")) {
533 switch ((PPC::Predicate)Code) {
534 case PPC::PRED_ALWAYS: return; // Don't print anything for always.
535 case PPC::PRED_LT: O << "lt"; return;
536 case PPC::PRED_LE: O << "le"; return;
537 case PPC::PRED_EQ: O << "eq"; return;
538 case PPC::PRED_GE: O << "ge"; return;
539 case PPC::PRED_GT: O << "gt"; return;
540 case PPC::PRED_NE: O << "ne"; return;
541 case PPC::PRED_UN: O << "un"; return;
542 case PPC::PRED_NU: O << "nu"; return;
543 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000544
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000545 } else {
546 assert(!strcmp(Modifier, "reg") &&
547 "Need to specify 'cc' or 'reg' as predicate op modifier!");
548 // Don't print the register for 'always'.
549 if (Code == PPC::PRED_ALWAYS) return;
550 printOperand(MI, OpNo+1);
551 }
552}
553
554
555/// printMachineInstruction -- Print out a single PowerPC MI in Darwin syntax to
556/// the current output stream.
557///
558void PPCAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
559 ++EmittedInsts;
Chris Lattnere34788c2009-09-09 20:34:59 +0000560
561 processDebugLoc(MI->getDebugLoc());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000562
563 // Check for slwi/srwi mnemonics.
564 if (MI->getOpcode() == PPC::RLWINM) {
565 bool FoundMnemonic = false;
Chris Lattnera96056a2007-12-30 20:49:49 +0000566 unsigned char SH = MI->getOperand(2).getImm();
567 unsigned char MB = MI->getOperand(3).getImm();
568 unsigned char ME = MI->getOperand(4).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000569 if (SH <= 31 && MB == 0 && ME == (31-SH)) {
Nate Begemanbd5cdf12008-02-05 08:49:09 +0000570 O << "\tslwi "; FoundMnemonic = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000571 }
572 if (SH <= 31 && MB == (32-SH) && ME == 31) {
Nate Begemanbd5cdf12008-02-05 08:49:09 +0000573 O << "\tsrwi "; FoundMnemonic = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000574 SH = 32-SH;
575 }
576 if (FoundMnemonic) {
577 printOperand(MI, 0);
578 O << ", ";
579 printOperand(MI, 1);
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000580 O << ", " << (unsigned int)SH << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000581 return;
582 }
583 } else if (MI->getOpcode() == PPC::OR || MI->getOpcode() == PPC::OR8) {
584 if (MI->getOperand(1).getReg() == MI->getOperand(2).getReg()) {
Nate Begemanbd5cdf12008-02-05 08:49:09 +0000585 O << "\tmr ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000586 printOperand(MI, 0);
587 O << ", ";
588 printOperand(MI, 1);
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000589 O << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000590 return;
591 }
592 } else if (MI->getOpcode() == PPC::RLDICR) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000593 unsigned char SH = MI->getOperand(2).getImm();
594 unsigned char ME = MI->getOperand(3).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000595 // rldicr RA, RS, SH, 63-SH == sldi RA, RS, SH
596 if (63-SH == ME) {
Nate Begemanbd5cdf12008-02-05 08:49:09 +0000597 O << "\tsldi ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000598 printOperand(MI, 0);
599 O << ", ";
600 printOperand(MI, 1);
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000601 O << ", " << (unsigned int)SH << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000602 return;
603 }
604 }
605
Chris Lattner7d337492009-08-08 00:05:42 +0000606 printInstruction(MI);
Chris Lattner32d4cc72009-09-09 23:14:36 +0000607
608 if (VerboseAsm && !MI->getDebugLoc().isUnknown())
609 EmitComments(*MI);
610 O << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000611}
612
613/// runOnMachineFunction - This uses the printMachineInstruction()
614/// method to print assembly for each instruction.
615///
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000616bool PPCLinuxAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Bill Wendling4f405312009-02-24 08:30:20 +0000617 this->MF = &MF;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000618
619 SetupMachineFunction(MF);
620 O << "\n\n";
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000621
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000622 // Print out constants referenced by the function
623 EmitConstantPool(MF.getConstantPool());
624
625 // Print out labels for the function.
626 const Function *F = MF.getFunction();
Chris Lattner73266f92009-08-19 05:49:37 +0000627 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang, TM));
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000628
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000629 switch (F->getLinkage()) {
Edwin Törökbd448e32009-07-14 16:55:14 +0000630 default: llvm_unreachable("Unknown linkage type!");
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000631 case Function::PrivateLinkage:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000632 case Function::InternalLinkage: // Symbols default to internal.
633 break;
634 case Function::ExternalLinkage:
635 O << "\t.global\t" << CurrentFnName << '\n'
636 << "\t.type\t" << CurrentFnName << ", @function\n";
637 break;
Dale Johannesenda551282009-08-24 01:03:42 +0000638 case Function::LinkerPrivateLinkage:
Duncan Sands19d161f2009-03-07 15:45:40 +0000639 case Function::WeakAnyLinkage:
640 case Function::WeakODRLinkage:
641 case Function::LinkOnceAnyLinkage:
642 case Function::LinkOnceODRLinkage:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000643 O << "\t.global\t" << CurrentFnName << '\n';
644 O << "\t.weak\t" << CurrentFnName << '\n';
645 break;
646 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000647
Anton Korobeynikov78d69aa2008-08-08 18:25:07 +0000648 printVisibility(CurrentFnName, F->getVisibility());
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000649
Bill Wendling25a8ae32009-06-30 22:38:32 +0000650 EmitAlignment(MF.getAlignment(), F);
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000651
652 if (Subtarget.isPPC64()) {
653 // Emit an official procedure descriptor.
654 // FIXME 64-bit SVR4: Use MCSection here?
655 O << "\t.section\t\".opd\",\"aw\"\n";
656 O << "\t.align 3\n";
657 O << CurrentFnName << ":\n";
658 O << "\t.quad .L." << CurrentFnName << ",.TOC.@tocbase\n";
659 O << "\t.previous\n";
660 O << ".L." << CurrentFnName << ":\n";
661 } else {
662 O << CurrentFnName << ":\n";
663 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000664
665 // Emit pre-function debug information.
Devang Patelaa1e8432009-01-08 23:40:34 +0000666 DW->BeginFunction(&MF);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000667
668 // Print out code for the function.
669 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
670 I != E; ++I) {
671 // Print a label for the basic block.
672 if (I != MF.begin()) {
Evan Cheng45c1edb2008-02-28 00:43:03 +0000673 printBasicBlockLabel(I, true, true);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000674 O << '\n';
675 }
676 for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
677 II != E; ++II) {
678 // Print the assembly for the instruction.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000679 printMachineInstruction(II);
680 }
681 }
682
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000683 O << "\t.size\t" << CurrentFnName << ",.-" << CurrentFnName << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000684
685 // Print out jump tables referenced by the function.
686 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000687
Chris Lattner73266f92009-08-19 05:49:37 +0000688 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang, TM));
Dale Johannesendd9e1c92008-12-03 19:33:10 +0000689
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000690 // Emit post-function debug information.
Devang Patelaa1e8432009-01-08 23:40:34 +0000691 DW->EndFunction(&MF);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000692
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000693 // We didn't modify anything.
694 return false;
695}
696
Chris Lattnerae982212009-07-21 18:38:57 +0000697void PPCLinuxAsmPrinter::PrintGlobalVariable(const GlobalVariable *GVar) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000698 const TargetData *TD = TM.getTargetData();
699
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000700 if (!GVar->hasInitializer())
701 return; // External global require no code
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000702
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000703 // Check to see if this is a special global used by LLVM, if so, emit it.
704 if (EmitSpecialLLVMGlobal(GVar))
705 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000706
Chris Lattnerb3cdde62009-07-14 18:17:16 +0000707 std::string name = Mang->getMangledName(GVar);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000708
Anton Korobeynikov78d69aa2008-08-08 18:25:07 +0000709 printVisibility(name, GVar->getVisibility());
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000710
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000711 Constant *C = GVar->getInitializer();
712 const Type *Type = C->getType();
Duncan Sandsec4f97d2009-05-09 07:06:46 +0000713 unsigned Size = TD->getTypeAllocSize(Type);
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000714 unsigned Align = TD->getPreferredAlignmentLog(GVar);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000715
Chris Lattner73266f92009-08-19 05:49:37 +0000716 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(GVar, Mang,
717 TM));
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000718
719 if (C->isNullValue() && /* FIXME: Verify correct */
720 !GVar->hasSection() &&
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000721 (GVar->hasLocalLinkage() || GVar->hasExternalLinkage() ||
Duncan Sands19d161f2009-03-07 15:45:40 +0000722 GVar->isWeakForLinker())) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000723 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000724
725 if (GVar->hasExternalLinkage()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000726 O << "\t.global " << name << '\n';
727 O << "\t.type " << name << ", @object\n";
Nick Lewycky3246a9c2007-07-25 03:48:45 +0000728 O << name << ":\n";
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000729 O << "\t.zero " << Size << '\n';
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000730 } else if (GVar->hasLocalLinkage()) {
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000731 O << MAI->getLCOMMDirective() << name << ',' << Size;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000732 } else {
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000733 O << ".comm " << name << ',' << Size;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000734 }
Evan Cheng11db8142009-03-24 00:17:40 +0000735 if (VerboseAsm) {
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000736 O << "\t\t" << MAI->getCommentString() << " '";
Dan Gohman2aa282f2009-08-13 01:36:44 +0000737 WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
Evan Cheng11db8142009-03-24 00:17:40 +0000738 O << "'";
739 }
740 O << '\n';
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000741 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000742 }
743
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000744 switch (GVar->getLinkage()) {
Duncan Sands19d161f2009-03-07 15:45:40 +0000745 case GlobalValue::LinkOnceAnyLinkage:
746 case GlobalValue::LinkOnceODRLinkage:
747 case GlobalValue::WeakAnyLinkage:
748 case GlobalValue::WeakODRLinkage:
Duncan Sandsb95df792009-03-11 20:14:15 +0000749 case GlobalValue::CommonLinkage:
Dale Johannesenda551282009-08-24 01:03:42 +0000750 case GlobalValue::LinkerPrivateLinkage:
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000751 O << "\t.global " << name << '\n'
752 << "\t.type " << name << ", @object\n"
753 << "\t.weak " << name << '\n';
754 break;
755 case GlobalValue::AppendingLinkage:
756 // FIXME: appending linkage variables should go into a section of
757 // their name or something. For now, just emit them as external.
758 case GlobalValue::ExternalLinkage:
759 // If external or appending, declare as a global symbol
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000760 O << "\t.global " << name << '\n'
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000761 << "\t.type " << name << ", @object\n";
762 // FALL THROUGH
763 case GlobalValue::InternalLinkage:
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000764 case GlobalValue::PrivateLinkage:
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000765 break;
766 default:
Edwin Törökbd448e32009-07-14 16:55:14 +0000767 llvm_unreachable("Unknown linkage type!");
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000768 }
769
770 EmitAlignment(Align, GVar);
Evan Cheng11db8142009-03-24 00:17:40 +0000771 O << name << ":";
772 if (VerboseAsm) {
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000773 O << "\t\t\t\t" << MAI->getCommentString() << " '";
Dan Gohman2aa282f2009-08-13 01:36:44 +0000774 WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
Evan Cheng11db8142009-03-24 00:17:40 +0000775 O << "'";
776 }
777 O << '\n';
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000778
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000779 EmitGlobalConstant(C);
780 O << '\n';
781}
782
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000783bool PPCLinuxAsmPrinter::doFinalization(Module &M) {
784 const TargetData *TD = TM.getTargetData();
785
786 bool isPPC64 = TD->getPointerSizeInBits() == 64;
787
788 if (isPPC64 && !TOC.empty()) {
789 // FIXME 64-bit SVR4: Use MCSection here?
790 O << "\t.section\t\".toc\",\"aw\"\n";
791
792 for (StringMap<std::string>::iterator I = TOC.begin(), E = TOC.end();
793 I != E; ++I) {
794 O << I->second << ":\n";
795 O << "\t.tc " << I->getKeyData() << "[TC]," << I->getKeyData() << '\n';
796 }
797 }
798
799 return AsmPrinter::doFinalization(M);
800}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000801
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000802/// runOnMachineFunction - This uses the printMachineInstruction()
803/// method to print assembly for each instruction.
804///
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000805bool PPCDarwinAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Bill Wendling4f405312009-02-24 08:30:20 +0000806 this->MF = &MF;
807
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000808 SetupMachineFunction(MF);
809 O << "\n\n";
Dale Johannesenfb3ac732007-11-20 23:24:42 +0000810
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000811 // Print out constants referenced by the function
812 EmitConstantPool(MF.getConstantPool());
813
814 // Print out labels for the function.
815 const Function *F = MF.getFunction();
Chris Lattner73266f92009-08-19 05:49:37 +0000816 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang, TM));
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000817
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000818 switch (F->getLinkage()) {
Edwin Törökbd448e32009-07-14 16:55:14 +0000819 default: llvm_unreachable("Unknown linkage type!");
evancheng47ae8142009-01-25 06:32:01 +0000820 case Function::PrivateLinkage:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000821 case Function::InternalLinkage: // Symbols default to internal.
822 break;
823 case Function::ExternalLinkage:
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000824 O << "\t.globl\t" << CurrentFnName << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000825 break;
Duncan Sands19d161f2009-03-07 15:45:40 +0000826 case Function::WeakAnyLinkage:
827 case Function::WeakODRLinkage:
828 case Function::LinkOnceAnyLinkage:
829 case Function::LinkOnceODRLinkage:
Dale Johannesenda551282009-08-24 01:03:42 +0000830 case Function::LinkerPrivateLinkage:
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000831 O << "\t.globl\t" << CurrentFnName << '\n';
832 O << "\t.weak_definition\t" << CurrentFnName << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000833 break;
834 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000835
Anton Korobeynikov78d69aa2008-08-08 18:25:07 +0000836 printVisibility(CurrentFnName, F->getVisibility());
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000837
Bill Wendling25a8ae32009-06-30 22:38:32 +0000838 EmitAlignment(MF.getAlignment(), F);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000839 O << CurrentFnName << ":\n";
840
841 // Emit pre-function debug information.
Devang Patelaa1e8432009-01-08 23:40:34 +0000842 DW->BeginFunction(&MF);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000843
Bill Wendling36ccaea2008-01-26 06:51:24 +0000844 // If the function is empty, then we need to emit *something*. Otherwise, the
845 // function's label might be associated with something that it wasn't meant to
846 // be associated with. We emit a noop in this situation.
847 MachineFunction::iterator I = MF.begin();
848
Bill Wendlingb5880a72008-01-26 09:03:52 +0000849 if (++I == MF.end() && MF.front().empty())
850 O << "\tnop\n";
Bill Wendling36ccaea2008-01-26 06:51:24 +0000851
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000852 // Print out code for the function.
853 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
854 I != E; ++I) {
855 // Print a label for the basic block.
856 if (I != MF.begin()) {
Evan Cheng11db8142009-03-24 00:17:40 +0000857 printBasicBlockLabel(I, true, true, VerboseAsm);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000858 O << '\n';
859 }
Bill Wendling36ccaea2008-01-26 06:51:24 +0000860 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
861 II != IE; ++II) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000862 // Print the assembly for the instruction.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000863 printMachineInstruction(II);
864 }
865 }
866
867 // Print out jump tables referenced by the function.
868 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000869
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000870 // Emit post-function debug information.
Devang Patelaa1e8432009-01-08 23:40:34 +0000871 DW->EndFunction(&MF);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000872
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000873 // We didn't modify anything.
874 return false;
875}
876
877
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000878bool PPCDarwinAsmPrinter::doInitialization(Module &M) {
Dan Gohman12300e12008-03-25 21:45:14 +0000879 static const char *const CPUDirectives[] = {
Dale Johannesen161badc2008-02-14 23:35:16 +0000880 "",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000881 "ppc",
882 "ppc601",
883 "ppc602",
884 "ppc603",
885 "ppc7400",
886 "ppc750",
887 "ppc970",
888 "ppc64"
889 };
890
891 unsigned Directive = Subtarget.getDarwinDirective();
892 if (Subtarget.isGigaProcessor() && Directive < PPC::DIR_970)
893 Directive = PPC::DIR_970;
894 if (Subtarget.hasAltivec() && Directive < PPC::DIR_7400)
895 Directive = PPC::DIR_7400;
896 if (Subtarget.isPPC64() && Directive < PPC::DIR_970)
897 Directive = PPC::DIR_64;
898 assert(Directive <= PPC::DIR_64 && "Directive out of range.");
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000899 O << "\t.machine " << CPUDirectives[Directive] << '\n';
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000900
Dan Gohman4a558a32007-07-25 19:33:14 +0000901 bool Result = AsmPrinter::doInitialization(M);
Devang Patelc20079e2009-06-20 01:00:07 +0000902 assert(MMI);
Dale Johannesen58e0eeb2008-07-09 20:43:39 +0000903
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000904 // Prime text sections so they are adjacent. This reduces the likelihood a
905 // large data or debug section causes a branch to exceed 16M limit.
Chris Lattnerf4815552009-08-03 22:52:21 +0000906 TargetLoweringObjectFileMachO &TLOFMacho =
907 static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
Chris Lattner73266f92009-08-19 05:49:37 +0000908 OutStreamer.SwitchSection(TLOFMacho.getTextCoalSection());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000909 if (TM.getRelocationModel() == Reloc::PIC_) {
Chris Lattner73266f92009-08-19 05:49:37 +0000910 OutStreamer.SwitchSection(
911 TLOFMacho.getMachOSection("__TEXT", "__picsymbolstub1",
912 MCSectionMachO::S_SYMBOL_STUBS |
913 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
914 32, SectionKind::getText()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000915 } else if (TM.getRelocationModel() == Reloc::DynamicNoPIC) {
Chris Lattner73266f92009-08-19 05:49:37 +0000916 OutStreamer.SwitchSection(
917 TLOFMacho.getMachOSection("__TEXT","__symbol_stub1",
918 MCSectionMachO::S_SYMBOL_STUBS |
919 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
920 16, SectionKind::getText()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000921 }
Chris Lattner73266f92009-08-19 05:49:37 +0000922 OutStreamer.SwitchSection(getObjFileLowering().getTextSection());
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000923
Dan Gohman4a558a32007-07-25 19:33:14 +0000924 return Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000925}
926
Chris Lattnerae982212009-07-21 18:38:57 +0000927void PPCDarwinAsmPrinter::PrintGlobalVariable(const GlobalVariable *GVar) {
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000928 const TargetData *TD = TM.getTargetData();
929
930 if (!GVar->hasInitializer())
931 return; // External global require no code
932
933 // Check to see if this is a special global used by LLVM, if so, emit it.
934 if (EmitSpecialLLVMGlobal(GVar)) {
935 if (TM.getRelocationModel() == Reloc::Static) {
Daniel Dunbare03513b2009-07-25 23:55:21 +0000936 if (GVar->getName() == "llvm.global_ctors")
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000937 O << ".reference .constructors_used\n";
Daniel Dunbare03513b2009-07-25 23:55:21 +0000938 else if (GVar->getName() == "llvm.global_dtors")
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000939 O << ".reference .destructors_used\n";
940 }
941 return;
942 }
943
Chris Lattnerb3cdde62009-07-14 18:17:16 +0000944 std::string name = Mang->getMangledName(GVar);
Anton Korobeynikov78d69aa2008-08-08 18:25:07 +0000945 printVisibility(name, GVar->getVisibility());
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000946
947 Constant *C = GVar->getInitializer();
948 const Type *Type = C->getType();
Duncan Sandsec4f97d2009-05-09 07:06:46 +0000949 unsigned Size = TD->getTypeAllocSize(Type);
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000950 unsigned Align = TD->getPreferredAlignmentLog(GVar);
951
Chris Lattnere6ad12f2009-07-31 18:48:30 +0000952 const MCSection *TheSection =
Chris Lattner2931fe42009-07-29 05:09:30 +0000953 getObjFileLowering().SectionForGlobal(GVar, Mang, TM);
Chris Lattner73266f92009-08-19 05:49:37 +0000954 OutStreamer.SwitchSection(TheSection);
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000955
Chris Lattnerdb727932009-08-04 05:35:56 +0000956 /// FIXME: Drive this off the section!
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000957 if (C->isNullValue() && /* FIXME: Verify correct */
958 !GVar->hasSection() &&
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000959 (GVar->hasLocalLinkage() || GVar->hasExternalLinkage() ||
Duncan Sands19d161f2009-03-07 15:45:40 +0000960 GVar->isWeakForLinker()) &&
Chris Lattner87bc69b2009-07-24 04:08:17 +0000961 // Don't put things that should go in the cstring section into "comm".
Chris Lattnerd8310522009-07-27 05:32:16 +0000962 !TheSection->getKind().isMergeableCString()) {
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000963 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
964
965 if (GVar->hasExternalLinkage()) {
966 O << "\t.globl " << name << '\n';
967 O << "\t.zerofill __DATA, __common, " << name << ", "
968 << Size << ", " << Align;
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000969 } else if (GVar->hasLocalLinkage()) {
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000970 O << MAI->getLCOMMDirective() << name << ',' << Size << ',' << Align;
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000971 } else if (!GVar->hasCommonLinkage()) {
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000972 O << "\t.globl " << name << '\n'
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000973 << MAI->getWeakDefDirective() << name << '\n';
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000974 EmitAlignment(Align, GVar);
Evan Cheng11db8142009-03-24 00:17:40 +0000975 O << name << ":";
976 if (VerboseAsm) {
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000977 O << "\t\t\t\t" << MAI->getCommentString() << " ";
Dan Gohman2aa282f2009-08-13 01:36:44 +0000978 WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
Evan Cheng11db8142009-03-24 00:17:40 +0000979 }
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000980 O << '\n';
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000981 EmitGlobalConstant(C);
982 return;
983 } else {
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000984 O << ".comm " << name << ',' << Size;
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000985 // Darwin 9 and above support aligned common data.
986 if (Subtarget.isDarwin9())
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000987 O << ',' << Align;
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000988 }
Evan Cheng11db8142009-03-24 00:17:40 +0000989 if (VerboseAsm) {
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000990 O << "\t\t" << MAI->getCommentString() << " '";
Dan Gohman2aa282f2009-08-13 01:36:44 +0000991 WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
Evan Cheng11db8142009-03-24 00:17:40 +0000992 O << "'";
993 }
994 O << '\n';
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000995 return;
996 }
997
998 switch (GVar->getLinkage()) {
Duncan Sands19d161f2009-03-07 15:45:40 +0000999 case GlobalValue::LinkOnceAnyLinkage:
1000 case GlobalValue::LinkOnceODRLinkage:
1001 case GlobalValue::WeakAnyLinkage:
1002 case GlobalValue::WeakODRLinkage:
Duncan Sandsb95df792009-03-11 20:14:15 +00001003 case GlobalValue::CommonLinkage:
Dale Johannesenda551282009-08-24 01:03:42 +00001004 case GlobalValue::LinkerPrivateLinkage:
Anton Korobeynikov248e9c52008-08-08 18:23:25 +00001005 O << "\t.globl " << name << '\n'
1006 << "\t.weak_definition " << name << '\n';
1007 break;
1008 case GlobalValue::AppendingLinkage:
1009 // FIXME: appending linkage variables should go into a section of
1010 // their name or something. For now, just emit them as external.
1011 case GlobalValue::ExternalLinkage:
1012 // If external or appending, declare as a global symbol
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +00001013 O << "\t.globl " << name << '\n';
Anton Korobeynikov248e9c52008-08-08 18:23:25 +00001014 // FALL THROUGH
1015 case GlobalValue::InternalLinkage:
evancheng47ae8142009-01-25 06:32:01 +00001016 case GlobalValue::PrivateLinkage:
Anton Korobeynikov248e9c52008-08-08 18:23:25 +00001017 break;
1018 default:
Edwin Törökbd448e32009-07-14 16:55:14 +00001019 llvm_unreachable("Unknown linkage type!");
Anton Korobeynikov248e9c52008-08-08 18:23:25 +00001020 }
1021
1022 EmitAlignment(Align, GVar);
Evan Cheng11db8142009-03-24 00:17:40 +00001023 O << name << ":";
1024 if (VerboseAsm) {
Chris Lattnera5ef4d32009-08-22 21:43:10 +00001025 O << "\t\t\t\t" << MAI->getCommentString() << " '";
Dan Gohman2aa282f2009-08-13 01:36:44 +00001026 WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
Evan Cheng11db8142009-03-24 00:17:40 +00001027 O << "'";
1028 }
1029 O << '\n';
Anton Korobeynikov248e9c52008-08-08 18:23:25 +00001030
Anton Korobeynikov248e9c52008-08-08 18:23:25 +00001031 EmitGlobalConstant(C);
1032 O << '\n';
1033}
1034
Anton Korobeynikov28f86d12008-08-08 18:22:59 +00001035bool PPCDarwinAsmPrinter::doFinalization(Module &M) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001036 const TargetData *TD = TM.getTargetData();
1037
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001038 bool isPPC64 = TD->getPointerSizeInBits() == 64;
1039
Chris Lattnerf4815552009-08-03 22:52:21 +00001040 // Darwin/PPC always uses mach-o.
1041 TargetLoweringObjectFileMachO &TLOFMacho =
1042 static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
1043
Chris Lattner72a676a2009-08-10 01:39:42 +00001044
1045 const MCSection *LSPSection = 0;
1046 if (!FnStubs.empty()) // .lazy_symbol_pointer
1047 LSPSection = TLOFMacho.getLazySymbolPointerSection();
1048
1049
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001050 // Output stubs for dynamically-linked functions
Chris Lattner189198f2009-07-15 00:55:58 +00001051 if (TM.getRelocationModel() == Reloc::PIC_ && !FnStubs.empty()) {
Chris Lattnerf4815552009-08-03 22:52:21 +00001052 const MCSection *StubSection =
Chris Lattner72a676a2009-08-10 01:39:42 +00001053 TLOFMacho.getMachOSection("__TEXT", "__picsymbolstub1",
1054 MCSectionMachO::S_SYMBOL_STUBS |
1055 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
1056 32, SectionKind::getText());
1057 for (StringMap<FnStubInfo>::iterator I = FnStubs.begin(), E = FnStubs.end();
Chris Lattner83cf1ec2009-07-15 01:14:44 +00001058 I != E; ++I) {
Chris Lattner73266f92009-08-19 05:49:37 +00001059 OutStreamer.SwitchSection(StubSection);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001060 EmitAlignment(4);
Chris Lattnerdc4cce62009-07-15 02:33:19 +00001061 const FnStubInfo &Info = I->second;
Chris Lattnerdc4cce62009-07-15 02:33:19 +00001062 O << Info.Stub << ":\n";
1063 O << "\t.indirect_symbol " << I->getKeyData() << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001064 O << "\tmflr r0\n";
Chris Lattner63e910f2009-07-15 02:56:53 +00001065 O << "\tbcl 20,31," << Info.AnonSymbol << '\n';
1066 O << Info.AnonSymbol << ":\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001067 O << "\tmflr r11\n";
Chris Lattner63e910f2009-07-15 02:56:53 +00001068 O << "\taddis r11,r11,ha16(" << Info.LazyPtr << "-" << Info.AnonSymbol;
Evan Chenga65854f2008-12-05 01:06:39 +00001069 O << ")\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001070 O << "\tmtlr r0\n";
Chris Lattner63e910f2009-07-15 02:56:53 +00001071 O << (isPPC64 ? "\tldu" : "\tlwzu") << " r12,lo16(";
1072 O << Info.LazyPtr << "-" << Info.AnonSymbol << ")(r11)\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001073 O << "\tmtctr r12\n";
1074 O << "\tbctr\n";
Chris Lattnerc0a7f1d2009-07-16 01:23:26 +00001075
Chris Lattner73266f92009-08-19 05:49:37 +00001076 OutStreamer.SwitchSection(LSPSection);
Chris Lattnerdc4cce62009-07-15 02:33:19 +00001077 O << Info.LazyPtr << ":\n";
1078 O << "\t.indirect_symbol " << I->getKeyData() << '\n';
Chris Lattnerbaa12da2009-07-15 02:36:21 +00001079 O << (isPPC64 ? "\t.quad" : "\t.long") << " dyld_stub_binding_helper\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001080 }
Chris Lattner189198f2009-07-15 00:55:58 +00001081 } else if (!FnStubs.empty()) {
Chris Lattner72a676a2009-08-10 01:39:42 +00001082 const MCSection *StubSection =
1083 TLOFMacho.getMachOSection("__TEXT","__symbol_stub1",
1084 MCSectionMachO::S_SYMBOL_STUBS |
1085 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
1086 16, SectionKind::getText());
Chris Lattnerf4815552009-08-03 22:52:21 +00001087
Chris Lattner9ea6e2a2009-07-15 02:28:57 +00001088 for (StringMap<FnStubInfo>::iterator I = FnStubs.begin(), E = FnStubs.end();
Chris Lattner83cf1ec2009-07-15 01:14:44 +00001089 I != E; ++I) {
Chris Lattner73266f92009-08-19 05:49:37 +00001090 OutStreamer.SwitchSection(StubSection);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001091 EmitAlignment(4);
Chris Lattnerdc4cce62009-07-15 02:33:19 +00001092 const FnStubInfo &Info = I->second;
1093 O << Info.Stub << ":\n";
1094 O << "\t.indirect_symbol " << I->getKeyData() << '\n';
1095 O << "\tlis r11,ha16(" << Info.LazyPtr << ")\n";
Chris Lattnerbaa12da2009-07-15 02:36:21 +00001096 O << (isPPC64 ? "\tldu" : "\tlwzu") << " r12,lo16(";
Chris Lattnerdc4cce62009-07-15 02:33:19 +00001097 O << Info.LazyPtr << ")(r11)\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001098 O << "\tmtctr r12\n";
1099 O << "\tbctr\n";
Chris Lattner73266f92009-08-19 05:49:37 +00001100 OutStreamer.SwitchSection(LSPSection);
Chris Lattnerdc4cce62009-07-15 02:33:19 +00001101 O << Info.LazyPtr << ":\n";
1102 O << "\t.indirect_symbol " << I->getKeyData() << '\n';
Chris Lattnerbaa12da2009-07-15 02:36:21 +00001103 O << (isPPC64 ? "\t.quad" : "\t.long") << " dyld_stub_binding_helper\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001104 }
1105 }
1106
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +00001107 O << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001108
Chris Lattnera5ef4d32009-08-22 21:43:10 +00001109 if (MAI->doesSupportExceptionHandling() && MMI) {
Dale Johannesenfb3ac732007-11-20 23:24:42 +00001110 // Add the (possibly multiple) personalities to the set of global values.
Dale Johannesen85535762008-04-02 00:25:04 +00001111 // Only referenced functions get into the Personalities list.
Chris Lattner2424eac2009-06-24 19:09:55 +00001112 const std::vector<Function *> &Personalities = MMI->getPersonalities();
Dale Johannesenfb3ac732007-11-20 23:24:42 +00001113 for (std::vector<Function *>::const_iterator I = Personalities.begin(),
Chris Lattner83cf1ec2009-07-15 01:14:44 +00001114 E = Personalities.end(); I != E; ++I) {
1115 if (*I)
1116 GVStubs[Mang->getMangledName(*I)] =
Chris Lattner65353d52009-07-15 01:16:38 +00001117 Mang->getMangledName(*I, "$non_lazy_ptr", true);
Chris Lattner83cf1ec2009-07-15 01:14:44 +00001118 }
Dale Johannesenfb3ac732007-11-20 23:24:42 +00001119 }
1120
Chris Lattnerf4815552009-08-03 22:52:21 +00001121 // Output macho stubs for external and common global variables.
Dan Gohman3f7d94b2007-10-03 19:26:29 +00001122 if (!GVStubs.empty()) {
Chris Lattner72a676a2009-08-10 01:39:42 +00001123 // Switch with ".non_lazy_symbol_pointer" directive.
Chris Lattner73266f92009-08-19 05:49:37 +00001124 OutStreamer.SwitchSection(TLOFMacho.getNonLazySymbolPointerSection());
Chris Lattner2d61eaa2009-08-10 17:58:51 +00001125 EmitAlignment(isPPC64 ? 3 : 2);
1126
Chris Lattner83cf1ec2009-07-15 01:14:44 +00001127 for (StringMap<std::string>::iterator I = GVStubs.begin(),
1128 E = GVStubs.end(); I != E; ++I) {
1129 O << I->second << ":\n";
1130 O << "\t.indirect_symbol " << I->getKeyData() << '\n';
1131 O << (isPPC64 ? "\t.quad\t0\n" : "\t.long\t0\n");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001132 }
1133 }
1134
Evan Chenga65854f2008-12-05 01:06:39 +00001135 if (!HiddenGVStubs.empty()) {
Chris Lattner73266f92009-08-19 05:49:37 +00001136 OutStreamer.SwitchSection(getObjFileLowering().getDataSection());
Chris Lattner83cf1ec2009-07-15 01:14:44 +00001137 EmitAlignment(isPPC64 ? 3 : 2);
1138 for (StringMap<std::string>::iterator I = HiddenGVStubs.begin(),
1139 E = HiddenGVStubs.end(); I != E; ++I) {
1140 O << I->second << ":\n";
1141 O << (isPPC64 ? "\t.quad\t" : "\t.long\t") << I->getKeyData() << '\n';
Evan Chenga65854f2008-12-05 01:06:39 +00001142 }
1143 }
1144
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001145 // Funny Darwin hack: This flag tells the linker that no global symbols
1146 // contain code that falls through to other global symbols (e.g. the obvious
1147 // implementation of multiple entry points). If this doesn't occur, the
1148 // linker can safely perform dead code stripping. Since LLVM never generates
1149 // code that does this, it is always safe to set.
1150 O << "\t.subsections_via_symbols\n";
1151
Dan Gohman4a558a32007-07-25 19:33:14 +00001152 return AsmPrinter::doFinalization(M);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001153}
1154
1155
1156
1157/// createPPCAsmPrinterPass - Returns a pass that prints the PPC assembly code
1158/// for a MachineFunction to the given output stream, in a format that the
1159/// Darwin assembler can deal with.
1160///
Daniel Dunbar4cb63652009-08-13 23:48:47 +00001161static AsmPrinter *createPPCAsmPrinterPass(formatted_raw_ostream &o,
1162 TargetMachine &tm,
Chris Lattner621c44d2009-08-22 20:48:53 +00001163 const MCAsmInfo *tai,
Daniel Dunbar4cb63652009-08-13 23:48:47 +00001164 bool verbose) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001165 const PPCSubtarget *Subtarget = &tm.getSubtarget<PPCSubtarget>();
1166
Chris Lattnerae982212009-07-21 18:38:57 +00001167 if (Subtarget->isDarwin())
Daniel Dunbaref5abb42009-08-13 19:38:51 +00001168 return new PPCDarwinAsmPrinter(o, tm, tai, verbose);
1169 return new PPCLinuxAsmPrinter(o, tm, tai, verbose);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001170}
Anton Korobeynikov01c0e9f2008-08-17 13:54:28 +00001171
Bob Wilsonebbc1c42009-06-23 23:59:40 +00001172// Force static initialization.
Daniel Dunbarfe5939f2009-07-15 20:24:03 +00001173extern "C" void LLVMInitializePowerPCAsmPrinter() {
Daniel Dunbarfe5939f2009-07-15 20:24:03 +00001174 TargetRegistry::RegisterAsmPrinter(ThePPC32Target, createPPCAsmPrinterPass);
Daniel Dunbarfe5939f2009-07-15 20:24:03 +00001175 TargetRegistry::RegisterAsmPrinter(ThePPC64Target, createPPCAsmPrinterPass);
1176}