blob: 704a439db26fa3084af37510fcdff5e957f14488 [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 Lattner7f1ac7f2009-08-10 18:15:01 +000034#include "llvm/MC/MCSectionMachO.h"
Chris Lattner73266f92009-08-19 05:49:37 +000035#include "llvm/MC/MCStreamer.h"
Chris Lattner621c44d2009-08-22 20:48:53 +000036#include "llvm/MC/MCAsmInfo.h"
Chris Lattnere6ad12f2009-07-31 18:48:30 +000037#include "llvm/Target/TargetLoweringObjectFile.h"
38#include "llvm/Target/TargetRegisterInfo.h"
39#include "llvm/Target/TargetInstrInfo.h"
40#include "llvm/Target/TargetOptions.h"
41#include "llvm/Target/TargetRegistry.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000042#include "llvm/Support/Mangler.h"
43#include "llvm/Support/MathExtras.h"
44#include "llvm/Support/CommandLine.h"
45#include "llvm/Support/Debug.h"
Edwin Török4d9756a2009-07-08 20:53:28 +000046#include "llvm/Support/ErrorHandling.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000047#include "llvm/Support/Compiler.h"
David Greene302008d2009-07-14 20:18:05 +000048#include "llvm/Support/FormattedStream.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000049#include "llvm/ADT/Statistic.h"
50#include "llvm/ADT/StringExtras.h"
Evan Chenga65854f2008-12-05 01:06:39 +000051#include "llvm/ADT/StringSet.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000052using namespace llvm;
53
54STATISTIC(EmittedInsts, "Number of machine instrs printed");
55
56namespace {
Bill Wendling4f405312009-02-24 08:30:20 +000057 class VISIBILITY_HIDDEN PPCAsmPrinter : public AsmPrinter {
58 protected:
Chris Lattner9ea6e2a2009-07-15 02:28:57 +000059 struct FnStubInfo {
60 std::string Stub, LazyPtr, AnonSymbol;
61
62 FnStubInfo() {}
63
64 void Init(const GlobalValue *GV, Mangler *Mang) {
65 // Already initialized.
66 if (!Stub.empty()) return;
67 Stub = Mang->getMangledName(GV, "$stub", true);
68 LazyPtr = Mang->getMangledName(GV, "$lazy_ptr", true);
69 AnonSymbol = Mang->getMangledName(GV, "$stub$tmp", true);
70 }
71
72 void Init(const std::string &GV, Mangler *Mang) {
73 // Already initialized.
74 if (!Stub.empty()) return;
Bill Wendling41a07852009-07-20 01:03:30 +000075 Stub = Mang->makeNameProper(GV + "$stub",
Bill Wendlinge4699112009-07-20 19:41:27 +000076 Mangler::Private);
Bill Wendling41a07852009-07-20 01:03:30 +000077 LazyPtr = Mang->makeNameProper(GV + "$lazy_ptr",
Bill Wendlinge4699112009-07-20 19:41:27 +000078 Mangler::Private);
Bill Wendling41a07852009-07-20 01:03:30 +000079 AnonSymbol = Mang->makeNameProper(GV + "$stub$tmp",
Bill Wendlinge4699112009-07-20 19:41:27 +000080 Mangler::Private);
Chris Lattner9ea6e2a2009-07-15 02:28:57 +000081 }
82 };
83
84 StringMap<FnStubInfo> FnStubs;
Tilmann Scheller72cf2812009-08-15 11:54:46 +000085 StringMap<std::string> GVStubs, HiddenGVStubs, TOC;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000086 const PPCSubtarget &Subtarget;
Tilmann Scheller72cf2812009-08-15 11:54:46 +000087 uint64_t LabelID;
Bill Wendling4f405312009-02-24 08:30:20 +000088 public:
David Greene302008d2009-07-14 20:18:05 +000089 explicit PPCAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
Chris Lattner621c44d2009-08-22 20:48:53 +000090 const MCAsmInfo *T, bool V)
Daniel Dunbarb10d2222009-07-01 01:48:54 +000091 : AsmPrinter(O, TM, T, V),
Tilmann Scheller72cf2812009-08-15 11:54:46 +000092 Subtarget(TM.getSubtarget<PPCSubtarget>()), LabelID(0) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +000093
94 virtual const char *getPassName() const {
95 return "PowerPC Assembly Printer";
96 }
97
98 PPCTargetMachine &getTM() {
99 return static_cast<PPCTargetMachine&>(TM);
100 }
101
102 unsigned enumRegToMachineReg(unsigned enumReg) {
103 switch (enumReg) {
Edwin Törökbd448e32009-07-14 16:55:14 +0000104 default: llvm_unreachable("Unhandled register!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000105 case PPC::CR0: return 0;
106 case PPC::CR1: return 1;
107 case PPC::CR2: return 2;
108 case PPC::CR3: return 3;
109 case PPC::CR4: return 4;
110 case PPC::CR5: return 5;
111 case PPC::CR6: return 6;
112 case PPC::CR7: return 7;
113 }
Edwin Törökbd448e32009-07-14 16:55:14 +0000114 llvm_unreachable(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000115 }
116
117 /// printInstruction - This method is automatically generated by tablegen
118 /// from the instruction set description. This method returns true if the
119 /// machine instruction was sufficiently described to print it, otherwise it
120 /// returns false.
Chris Lattnerddb259a2009-08-08 01:32:19 +0000121 void printInstruction(const MachineInstr *MI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000122
123 void printMachineInstruction(const MachineInstr *MI);
124 void printOp(const MachineOperand &MO);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000125
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000126 /// stripRegisterPrefix - This method strips the character prefix from a
127 /// register name so that only the number is left. Used by for linux asm.
128 const char *stripRegisterPrefix(const char *RegName) {
129 switch (RegName[0]) {
130 case 'r':
131 case 'f':
132 case 'v': return RegName + 1;
133 case 'c': if (RegName[1] == 'r') return RegName + 2;
134 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000135
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000136 return RegName;
137 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000138
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000139 /// printRegister - Print register according to target requirements.
140 ///
141 void printRegister(const MachineOperand &MO, bool R0AsZero) {
142 unsigned RegNo = MO.getReg();
Dan Gohman1e57df32008-02-10 18:45:23 +0000143 assert(TargetRegisterInfo::isPhysicalRegister(RegNo) && "Not physreg??");
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000144
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000145 // If we should use 0 for R0.
146 if (R0AsZero && RegNo == PPC::R0) {
147 O << "0";
148 return;
149 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000150
Bill Wendling8eeb9792008-02-26 21:11:01 +0000151 const char *RegName = TM.getRegisterInfo()->get(RegNo).AsmName;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000152 // Linux assembler (Others?) does not take register mnemonics.
153 // FIXME - What about special registers used in mfspr/mtspr?
154 if (!Subtarget.isDarwin()) RegName = stripRegisterPrefix(RegName);
155 O << RegName;
156 }
157
158 void printOperand(const MachineInstr *MI, unsigned OpNo) {
159 const MachineOperand &MO = MI->getOperand(OpNo);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000160 if (MO.isReg()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000161 printRegister(MO, false);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000162 } else if (MO.isImm()) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000163 O << MO.getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000164 } else {
165 printOp(MO);
166 }
167 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000168
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000169 bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
170 unsigned AsmVariant, const char *ExtraCode);
171 bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
172 unsigned AsmVariant, const char *ExtraCode);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000173
174
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000175 void printS5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000176 char value = MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000177 value = (value << (32-5)) >> (32-5);
178 O << (int)value;
179 }
180 void printU5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000181 unsigned char value = MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000182 assert(value <= 31 && "Invalid u5imm argument!");
183 O << (unsigned int)value;
184 }
185 void printU6ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000186 unsigned char value = MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000187 assert(value <= 63 && "Invalid u6imm argument!");
188 O << (unsigned int)value;
189 }
190 void printS16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000191 O << (short)MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000192 }
193 void printU16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000194 O << (unsigned short)MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000195 }
196 void printS16X4ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000197 if (MI->getOperand(OpNo).isImm()) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000198 O << (short)(MI->getOperand(OpNo).getImm()*4);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000199 } else {
200 O << "lo16(";
201 printOp(MI->getOperand(OpNo));
202 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng477013c2007-10-14 05:57:21 +0000203 O << "-\"L" << getFunctionNumber() << "$pb\")";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000204 else
205 O << ')';
206 }
207 }
208 void printBranchOperand(const MachineInstr *MI, unsigned OpNo) {
209 // Branches can take an immediate operand. This is used by the branch
210 // selection pass to print $+8, an eight byte displacement from the PC.
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000211 if (MI->getOperand(OpNo).isImm()) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000212 O << "$+" << MI->getOperand(OpNo).getImm()*4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000213 } else {
214 printOp(MI->getOperand(OpNo));
215 }
216 }
217 void printCallOperand(const MachineInstr *MI, unsigned OpNo) {
218 const MachineOperand &MO = MI->getOperand(OpNo);
219 if (TM.getRelocationModel() != Reloc::Static) {
220 if (MO.getType() == MachineOperand::MO_GlobalAddress) {
221 GlobalValue *GV = MO.getGlobal();
Chris Lattner0fd4feb2009-07-02 16:08:53 +0000222 if (GV->isDeclaration() || GV->isWeakForLinker()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000223 // Dynamically-resolved functions need a stub for the function.
Chris Lattner9ea6e2a2009-07-15 02:28:57 +0000224 FnStubInfo &FnInfo = FnStubs[Mang->getMangledName(GV)];
225 FnInfo.Init(GV, Mang);
226 O << FnInfo.Stub;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000227 return;
228 }
229 }
230 if (MO.getType() == MachineOperand::MO_ExternalSymbol) {
Chris Lattner9ea6e2a2009-07-15 02:28:57 +0000231 FnStubInfo &FnInfo =FnStubs[Mang->makeNameProper(MO.getSymbolName())];
232 FnInfo.Init(MO.getSymbolName(), Mang);
233 O << FnInfo.Stub;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000234 return;
235 }
236 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000237
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000238 printOp(MI->getOperand(OpNo));
239 }
240 void printAbsAddrOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000241 O << (int)MI->getOperand(OpNo).getImm()*4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000242 }
243 void printPICLabel(const MachineInstr *MI, unsigned OpNo) {
Evan Cheng477013c2007-10-14 05:57:21 +0000244 O << "\"L" << getFunctionNumber() << "$pb\"\n";
245 O << "\"L" << getFunctionNumber() << "$pb\":";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000246 }
247 void printSymbolHi(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000248 if (MI->getOperand(OpNo).isImm()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000249 printS16ImmOperand(MI, OpNo);
250 } else {
251 if (Subtarget.isDarwin()) O << "ha16(";
252 printOp(MI->getOperand(OpNo));
253 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng477013c2007-10-14 05:57:21 +0000254 O << "-\"L" << getFunctionNumber() << "$pb\"";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000255 if (Subtarget.isDarwin())
256 O << ')';
257 else
258 O << "@ha";
259 }
260 }
261 void printSymbolLo(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000262 if (MI->getOperand(OpNo).isImm()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000263 printS16ImmOperand(MI, OpNo);
264 } else {
265 if (Subtarget.isDarwin()) O << "lo16(";
266 printOp(MI->getOperand(OpNo));
267 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng477013c2007-10-14 05:57:21 +0000268 O << "-\"L" << getFunctionNumber() << "$pb\"";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000269 if (Subtarget.isDarwin())
270 O << ')';
271 else
272 O << "@l";
273 }
274 }
275 void printcrbitm(const MachineInstr *MI, unsigned OpNo) {
276 unsigned CCReg = MI->getOperand(OpNo).getReg();
277 unsigned RegNo = enumRegToMachineReg(CCReg);
278 O << (0x80 >> RegNo);
279 }
280 // The new addressing mode printers.
281 void printMemRegImm(const MachineInstr *MI, unsigned OpNo) {
282 printSymbolLo(MI, OpNo);
283 O << '(';
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000284 if (MI->getOperand(OpNo+1).isReg() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000285 MI->getOperand(OpNo+1).getReg() == PPC::R0)
286 O << "0";
287 else
288 printOperand(MI, OpNo+1);
289 O << ')';
290 }
291 void printMemRegImmShifted(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000292 if (MI->getOperand(OpNo).isImm())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000293 printS16X4ImmOperand(MI, OpNo);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000294 else
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000295 printSymbolLo(MI, OpNo);
296 O << '(';
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000297 if (MI->getOperand(OpNo+1).isReg() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000298 MI->getOperand(OpNo+1).getReg() == PPC::R0)
299 O << "0";
300 else
301 printOperand(MI, OpNo+1);
302 O << ')';
303 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000304
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000305 void printMemRegReg(const MachineInstr *MI, unsigned OpNo) {
306 // When used as the base register, r0 reads constant zero rather than
307 // the value contained in the register. For this reason, the darwin
308 // assembler requires that we print r0 as 0 (no r) when used as the base.
309 const MachineOperand &MO = MI->getOperand(OpNo);
310 printRegister(MO, true);
311 O << ", ";
312 printOperand(MI, OpNo+1);
313 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000314
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000315 void printTOCEntryLabel(const MachineInstr *MI, unsigned OpNo) {
316 const MachineOperand &MO = MI->getOperand(OpNo);
317
318 assert(MO.getType() == MachineOperand::MO_GlobalAddress);
319
320 GlobalValue *GV = MO.getGlobal();
321
322 std::string Name = Mang->getMangledName(GV);
323
324 // Map symbol -> label of TOC entry.
325 if (TOC.count(Name) == 0) {
326 std::string Label;
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000327 Label += MAI->getPrivateGlobalPrefix();
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000328 Label += "C";
329 Label += utostr(LabelID++);
330
331 TOC[Name] = Label;
332 }
333
334 O << TOC[Name] << "@toc";
335 }
336
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000337 void printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000338 const char *Modifier);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000339
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000340 virtual bool runOnMachineFunction(MachineFunction &F) = 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000341
342 virtual void EmitExternalGlobal(const GlobalVariable *GV);
343 };
344
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000345 /// PPCLinuxAsmPrinter - PowerPC assembly printer, customized for Linux
Bill Wendling4f405312009-02-24 08:30:20 +0000346 class VISIBILITY_HIDDEN PPCLinuxAsmPrinter : public PPCAsmPrinter {
Bill Wendling4f405312009-02-24 08:30:20 +0000347 public:
Daniel Dunbarfe5939f2009-07-15 20:24:03 +0000348 explicit PPCLinuxAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
Chris Lattner621c44d2009-08-22 20:48:53 +0000349 const MCAsmInfo *T, bool V)
Daniel Dunbarb10d2222009-07-01 01:48:54 +0000350 : PPCAsmPrinter(O, TM, T, V){}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000351
352 virtual const char *getPassName() const {
353 return "Linux PPC Assembly Printer";
354 }
355
356 bool runOnMachineFunction(MachineFunction &F);
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000357 bool doFinalization(Module &M);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000358
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000359 void getAnalysisUsage(AnalysisUsage &AU) const {
360 AU.setPreservesAll();
361 AU.addRequired<MachineModuleInfo>();
Devang Patelaa1e8432009-01-08 23:40:34 +0000362 AU.addRequired<DwarfWriter>();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000363 PPCAsmPrinter::getAnalysisUsage(AU);
364 }
365
Chris Lattnerae982212009-07-21 18:38:57 +0000366 void PrintGlobalVariable(const GlobalVariable *GVar);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000367 };
368
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000369 /// PPCDarwinAsmPrinter - PowerPC assembly printer, customized for Darwin/Mac
370 /// OS X
Bill Wendling4f405312009-02-24 08:30:20 +0000371 class VISIBILITY_HIDDEN PPCDarwinAsmPrinter : public PPCAsmPrinter {
David Greene302008d2009-07-14 20:18:05 +0000372 formatted_raw_ostream &OS;
Bill Wendling4f405312009-02-24 08:30:20 +0000373 public:
Daniel Dunbarfe5939f2009-07-15 20:24:03 +0000374 explicit PPCDarwinAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
Chris Lattner621c44d2009-08-22 20:48:53 +0000375 const MCAsmInfo *T, bool V)
Daniel Dunbarb10d2222009-07-01 01:48:54 +0000376 : PPCAsmPrinter(O, TM, T, V), OS(O) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000377
378 virtual const char *getPassName() const {
379 return "Darwin PPC Assembly Printer";
380 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000381
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000382 bool runOnMachineFunction(MachineFunction &F);
383 bool doInitialization(Module &M);
384 bool doFinalization(Module &M);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000385
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000386 void getAnalysisUsage(AnalysisUsage &AU) const {
387 AU.setPreservesAll();
388 AU.addRequired<MachineModuleInfo>();
Devang Patelaa1e8432009-01-08 23:40:34 +0000389 AU.addRequired<DwarfWriter>();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000390 PPCAsmPrinter::getAnalysisUsage(AU);
391 }
392
Chris Lattnerae982212009-07-21 18:38:57 +0000393 void PrintGlobalVariable(const GlobalVariable *GVar);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000394 };
395} // end of anonymous namespace
396
397// Include the auto-generated portion of the assembly writer
398#include "PPCGenAsmWriter.inc"
399
400void PPCAsmPrinter::printOp(const MachineOperand &MO) {
401 switch (MO.getType()) {
402 case MachineOperand::MO_Immediate:
Edwin Törökbd448e32009-07-14 16:55:14 +0000403 llvm_unreachable("printOp() does not handle immediate values");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000404
405 case MachineOperand::MO_MachineBasicBlock:
Chris Lattner6017d482007-12-30 23:10:15 +0000406 printBasicBlockLabel(MO.getMBB());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000407 return;
408 case MachineOperand::MO_JumpTableIndex:
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000409 O << MAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
Chris Lattner6017d482007-12-30 23:10:15 +0000410 << '_' << MO.getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000411 // FIXME: PIC relocation model
412 return;
413 case MachineOperand::MO_ConstantPoolIndex:
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000414 O << MAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber()
Chris Lattner6017d482007-12-30 23:10:15 +0000415 << '_' << MO.getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000416 return;
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000417 case MachineOperand::MO_ExternalSymbol: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000418 // Computing the address of an external symbol, not calling it.
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000419 std::string Name(MAI->getGlobalPrefix());
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000420 Name += MO.getSymbolName();
421
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000422 if (TM.getRelocationModel() != Reloc::Static) {
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000423 GVStubs[Name] = Name+"$non_lazy_ptr";
424 Name += "$non_lazy_ptr";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000425 }
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000426 O << Name;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000427 return;
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000428 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000429 case MachineOperand::MO_GlobalAddress: {
430 // Computing the address of a global symbol, not calling it.
431 GlobalValue *GV = MO.getGlobal();
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000432 std::string Name;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000433
434 // External or weakly linked global variables need non-lazily-resolved stubs
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000435 if (TM.getRelocationModel() != Reloc::Static &&
436 (GV->isDeclaration() || GV->isWeakForLinker())) {
437 if (!GV->hasHiddenVisibility()) {
438 Name = Mang->getMangledName(GV, "$non_lazy_ptr", true);
439 GVStubs[Mang->getMangledName(GV)] = Name;
440 } else if (GV->isDeclaration() || GV->hasCommonLinkage() ||
441 GV->hasAvailableExternallyLinkage()) {
442 Name = Mang->getMangledName(GV, "$non_lazy_ptr", true);
443 HiddenGVStubs[Mang->getMangledName(GV)] = Name;
444 } else {
445 Name = Mang->getMangledName(GV);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000446 }
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000447 } else {
448 Name = Mang->getMangledName(GV);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000449 }
450 O << Name;
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000451
Anton Korobeynikov440f23d2008-11-22 16:15:34 +0000452 printOffset(MO.getOffset());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000453 return;
454 }
455
456 default:
457 O << "<unknown operand type: " << MO.getType() << ">";
458 return;
459 }
460}
461
462/// EmitExternalGlobal - In this case we need to use the indirect symbol.
463///
464void PPCAsmPrinter::EmitExternalGlobal(const GlobalVariable *GV) {
Bill Wendling26a8ab92009-04-10 00:12:49 +0000465 std::string Name;
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000466
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000467 if (TM.getRelocationModel() != Reloc::Static) {
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000468 Name = Mang->getMangledName(GV, "$non_lazy_ptr", true);
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000469 } else {
470 Name = Mang->getMangledName(GV);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000471 }
472 O << Name;
473}
474
475/// PrintAsmOperand - Print out an operand for an inline asm expression.
476///
477bool PPCAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000478 unsigned AsmVariant,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000479 const char *ExtraCode) {
480 // Does this asm operand have a single letter operand modifier?
481 if (ExtraCode && ExtraCode[0]) {
482 if (ExtraCode[1] != 0) return true; // Unknown modifier.
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000483
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000484 switch (ExtraCode[0]) {
485 default: return true; // Unknown modifier.
486 case 'c': // Don't print "$" before a global var name or constant.
487 // PPC never has a prefix.
488 printOperand(MI, OpNo);
489 return false;
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000490 case 'L': // Write second word of DImode reference.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000491 // Verify that this operand has two consecutive registers.
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000492 if (!MI->getOperand(OpNo).isReg() ||
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000493 OpNo+1 == MI->getNumOperands() ||
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000494 !MI->getOperand(OpNo+1).isReg())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000495 return true;
496 ++OpNo; // Return the high-part.
497 break;
498 case 'I':
499 // Write 'i' if an integer constant, otherwise nothing. Used to print
500 // addi vs add, etc.
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000501 if (MI->getOperand(OpNo).isImm())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000502 O << "i";
503 return false;
504 }
505 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000506
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000507 printOperand(MI, OpNo);
508 return false;
509}
510
Dale Johannesen0a42b9662009-08-18 00:18:39 +0000511// At the moment, all inline asm memory operands are a single register.
512// In any case, the output of this routine should always be just one
513// assembler operand.
514
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000515bool PPCAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000516 unsigned AsmVariant,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000517 const char *ExtraCode) {
518 if (ExtraCode && ExtraCode[0])
519 return true; // Unknown modifier.
Dale Johannesen0a42b9662009-08-18 00:18:39 +0000520 assert (MI->getOperand(OpNo).isReg());
Dale Johannesen5e699502009-08-26 18:10:32 +0000521 O << "0(";
Dale Johannesen0a42b9662009-08-18 00:18:39 +0000522 printOperand(MI, OpNo);
Dale Johannesen5e699502009-08-26 18:10:32 +0000523 O << ")";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000524 return false;
525}
526
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000527void PPCAsmPrinter::printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000528 const char *Modifier) {
529 assert(Modifier && "Must specify 'cc' or 'reg' as predicate op modifier!");
530 unsigned Code = MI->getOperand(OpNo).getImm();
531 if (!strcmp(Modifier, "cc")) {
532 switch ((PPC::Predicate)Code) {
533 case PPC::PRED_ALWAYS: return; // Don't print anything for always.
534 case PPC::PRED_LT: O << "lt"; return;
535 case PPC::PRED_LE: O << "le"; return;
536 case PPC::PRED_EQ: O << "eq"; return;
537 case PPC::PRED_GE: O << "ge"; return;
538 case PPC::PRED_GT: O << "gt"; return;
539 case PPC::PRED_NE: O << "ne"; return;
540 case PPC::PRED_UN: O << "un"; return;
541 case PPC::PRED_NU: O << "nu"; return;
542 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000543
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000544 } else {
545 assert(!strcmp(Modifier, "reg") &&
546 "Need to specify 'cc' or 'reg' as predicate op modifier!");
547 // Don't print the register for 'always'.
548 if (Code == PPC::PRED_ALWAYS) return;
549 printOperand(MI, OpNo+1);
550 }
551}
552
553
554/// printMachineInstruction -- Print out a single PowerPC MI in Darwin syntax to
555/// the current output stream.
556///
557void PPCAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
558 ++EmittedInsts;
559
560 // Check for slwi/srwi mnemonics.
561 if (MI->getOpcode() == PPC::RLWINM) {
562 bool FoundMnemonic = false;
Chris Lattnera96056a2007-12-30 20:49:49 +0000563 unsigned char SH = MI->getOperand(2).getImm();
564 unsigned char MB = MI->getOperand(3).getImm();
565 unsigned char ME = MI->getOperand(4).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000566 if (SH <= 31 && MB == 0 && ME == (31-SH)) {
Nate Begemanbd5cdf12008-02-05 08:49:09 +0000567 O << "\tslwi "; FoundMnemonic = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000568 }
569 if (SH <= 31 && MB == (32-SH) && ME == 31) {
Nate Begemanbd5cdf12008-02-05 08:49:09 +0000570 O << "\tsrwi "; FoundMnemonic = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000571 SH = 32-SH;
572 }
573 if (FoundMnemonic) {
574 printOperand(MI, 0);
575 O << ", ";
576 printOperand(MI, 1);
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000577 O << ", " << (unsigned int)SH << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000578 return;
579 }
580 } else if (MI->getOpcode() == PPC::OR || MI->getOpcode() == PPC::OR8) {
581 if (MI->getOperand(1).getReg() == MI->getOperand(2).getReg()) {
Nate Begemanbd5cdf12008-02-05 08:49:09 +0000582 O << "\tmr ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000583 printOperand(MI, 0);
584 O << ", ";
585 printOperand(MI, 1);
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000586 O << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000587 return;
588 }
589 } else if (MI->getOpcode() == PPC::RLDICR) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000590 unsigned char SH = MI->getOperand(2).getImm();
591 unsigned char ME = MI->getOperand(3).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000592 // rldicr RA, RS, SH, 63-SH == sldi RA, RS, SH
593 if (63-SH == ME) {
Nate Begemanbd5cdf12008-02-05 08:49:09 +0000594 O << "\tsldi ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000595 printOperand(MI, 0);
596 O << ", ";
597 printOperand(MI, 1);
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000598 O << ", " << (unsigned int)SH << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000599 return;
600 }
601 }
602
Chris Lattner7d337492009-08-08 00:05:42 +0000603 printInstruction(MI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000604}
605
606/// runOnMachineFunction - This uses the printMachineInstruction()
607/// method to print assembly for each instruction.
608///
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000609bool PPCLinuxAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Bill Wendling4f405312009-02-24 08:30:20 +0000610 this->MF = &MF;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000611
612 SetupMachineFunction(MF);
613 O << "\n\n";
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000614
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000615 // Print out constants referenced by the function
616 EmitConstantPool(MF.getConstantPool());
617
618 // Print out labels for the function.
619 const Function *F = MF.getFunction();
Chris Lattner73266f92009-08-19 05:49:37 +0000620 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang, TM));
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000621
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000622 switch (F->getLinkage()) {
Edwin Törökbd448e32009-07-14 16:55:14 +0000623 default: llvm_unreachable("Unknown linkage type!");
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000624 case Function::PrivateLinkage:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000625 case Function::InternalLinkage: // Symbols default to internal.
626 break;
627 case Function::ExternalLinkage:
628 O << "\t.global\t" << CurrentFnName << '\n'
629 << "\t.type\t" << CurrentFnName << ", @function\n";
630 break;
Dale Johannesenda551282009-08-24 01:03:42 +0000631 case Function::LinkerPrivateLinkage:
Duncan Sands19d161f2009-03-07 15:45:40 +0000632 case Function::WeakAnyLinkage:
633 case Function::WeakODRLinkage:
634 case Function::LinkOnceAnyLinkage:
635 case Function::LinkOnceODRLinkage:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000636 O << "\t.global\t" << CurrentFnName << '\n';
637 O << "\t.weak\t" << CurrentFnName << '\n';
638 break;
639 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000640
Anton Korobeynikov78d69aa2008-08-08 18:25:07 +0000641 printVisibility(CurrentFnName, F->getVisibility());
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000642
Bill Wendling25a8ae32009-06-30 22:38:32 +0000643 EmitAlignment(MF.getAlignment(), F);
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000644
645 if (Subtarget.isPPC64()) {
646 // Emit an official procedure descriptor.
647 // FIXME 64-bit SVR4: Use MCSection here?
648 O << "\t.section\t\".opd\",\"aw\"\n";
649 O << "\t.align 3\n";
650 O << CurrentFnName << ":\n";
651 O << "\t.quad .L." << CurrentFnName << ",.TOC.@tocbase\n";
652 O << "\t.previous\n";
653 O << ".L." << CurrentFnName << ":\n";
654 } else {
655 O << CurrentFnName << ":\n";
656 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000657
658 // Emit pre-function debug information.
Devang Patelaa1e8432009-01-08 23:40:34 +0000659 DW->BeginFunction(&MF);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000660
661 // Print out code for the function.
662 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
663 I != E; ++I) {
664 // Print a label for the basic block.
665 if (I != MF.begin()) {
Evan Cheng45c1edb2008-02-28 00:43:03 +0000666 printBasicBlockLabel(I, true, true);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000667 O << '\n';
668 }
669 for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
670 II != E; ++II) {
671 // Print the assembly for the instruction.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000672 printMachineInstruction(II);
673 }
674 }
675
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000676 O << "\t.size\t" << CurrentFnName << ",.-" << CurrentFnName << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000677
678 // Print out jump tables referenced by the function.
679 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000680
Chris Lattner73266f92009-08-19 05:49:37 +0000681 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang, TM));
Dale Johannesendd9e1c92008-12-03 19:33:10 +0000682
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000683 // Emit post-function debug information.
Devang Patelaa1e8432009-01-08 23:40:34 +0000684 DW->EndFunction(&MF);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000685
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000686 // We didn't modify anything.
687 return false;
688}
689
Chris Lattnerae982212009-07-21 18:38:57 +0000690void PPCLinuxAsmPrinter::PrintGlobalVariable(const GlobalVariable *GVar) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000691 const TargetData *TD = TM.getTargetData();
692
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000693 if (!GVar->hasInitializer())
694 return; // External global require no code
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000695
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000696 // Check to see if this is a special global used by LLVM, if so, emit it.
697 if (EmitSpecialLLVMGlobal(GVar))
698 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000699
Chris Lattnerb3cdde62009-07-14 18:17:16 +0000700 std::string name = Mang->getMangledName(GVar);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000701
Anton Korobeynikov78d69aa2008-08-08 18:25:07 +0000702 printVisibility(name, GVar->getVisibility());
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000703
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000704 Constant *C = GVar->getInitializer();
705 const Type *Type = C->getType();
Duncan Sandsec4f97d2009-05-09 07:06:46 +0000706 unsigned Size = TD->getTypeAllocSize(Type);
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000707 unsigned Align = TD->getPreferredAlignmentLog(GVar);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000708
Chris Lattner73266f92009-08-19 05:49:37 +0000709 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(GVar, Mang,
710 TM));
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000711
712 if (C->isNullValue() && /* FIXME: Verify correct */
713 !GVar->hasSection() &&
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000714 (GVar->hasLocalLinkage() || GVar->hasExternalLinkage() ||
Duncan Sands19d161f2009-03-07 15:45:40 +0000715 GVar->isWeakForLinker())) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000716 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000717
718 if (GVar->hasExternalLinkage()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000719 O << "\t.global " << name << '\n';
720 O << "\t.type " << name << ", @object\n";
Nick Lewycky3246a9c2007-07-25 03:48:45 +0000721 O << name << ":\n";
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000722 O << "\t.zero " << Size << '\n';
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000723 } else if (GVar->hasLocalLinkage()) {
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000724 O << MAI->getLCOMMDirective() << name << ',' << Size;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000725 } else {
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000726 O << ".comm " << name << ',' << Size;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000727 }
Evan Cheng11db8142009-03-24 00:17:40 +0000728 if (VerboseAsm) {
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000729 O << "\t\t" << MAI->getCommentString() << " '";
Dan Gohman2aa282f2009-08-13 01:36:44 +0000730 WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
Evan Cheng11db8142009-03-24 00:17:40 +0000731 O << "'";
732 }
733 O << '\n';
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000734 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000735 }
736
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000737 switch (GVar->getLinkage()) {
Duncan Sands19d161f2009-03-07 15:45:40 +0000738 case GlobalValue::LinkOnceAnyLinkage:
739 case GlobalValue::LinkOnceODRLinkage:
740 case GlobalValue::WeakAnyLinkage:
741 case GlobalValue::WeakODRLinkage:
Duncan Sandsb95df792009-03-11 20:14:15 +0000742 case GlobalValue::CommonLinkage:
Dale Johannesenda551282009-08-24 01:03:42 +0000743 case GlobalValue::LinkerPrivateLinkage:
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000744 O << "\t.global " << name << '\n'
745 << "\t.type " << name << ", @object\n"
746 << "\t.weak " << name << '\n';
747 break;
748 case GlobalValue::AppendingLinkage:
749 // FIXME: appending linkage variables should go into a section of
750 // their name or something. For now, just emit them as external.
751 case GlobalValue::ExternalLinkage:
752 // If external or appending, declare as a global symbol
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000753 O << "\t.global " << name << '\n'
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000754 << "\t.type " << name << ", @object\n";
755 // FALL THROUGH
756 case GlobalValue::InternalLinkage:
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000757 case GlobalValue::PrivateLinkage:
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000758 break;
759 default:
Edwin Törökbd448e32009-07-14 16:55:14 +0000760 llvm_unreachable("Unknown linkage type!");
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000761 }
762
763 EmitAlignment(Align, GVar);
Evan Cheng11db8142009-03-24 00:17:40 +0000764 O << name << ":";
765 if (VerboseAsm) {
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000766 O << "\t\t\t\t" << MAI->getCommentString() << " '";
Dan Gohman2aa282f2009-08-13 01:36:44 +0000767 WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
Evan Cheng11db8142009-03-24 00:17:40 +0000768 O << "'";
769 }
770 O << '\n';
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000771
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000772 EmitGlobalConstant(C);
773 O << '\n';
774}
775
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000776bool PPCLinuxAsmPrinter::doFinalization(Module &M) {
777 const TargetData *TD = TM.getTargetData();
778
779 bool isPPC64 = TD->getPointerSizeInBits() == 64;
780
781 if (isPPC64 && !TOC.empty()) {
782 // FIXME 64-bit SVR4: Use MCSection here?
783 O << "\t.section\t\".toc\",\"aw\"\n";
784
785 for (StringMap<std::string>::iterator I = TOC.begin(), E = TOC.end();
786 I != E; ++I) {
787 O << I->second << ":\n";
788 O << "\t.tc " << I->getKeyData() << "[TC]," << I->getKeyData() << '\n';
789 }
790 }
791
792 return AsmPrinter::doFinalization(M);
793}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000794
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000795/// runOnMachineFunction - This uses the printMachineInstruction()
796/// method to print assembly for each instruction.
797///
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000798bool PPCDarwinAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Bill Wendling4f405312009-02-24 08:30:20 +0000799 this->MF = &MF;
800
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000801 SetupMachineFunction(MF);
802 O << "\n\n";
Dale Johannesenfb3ac732007-11-20 23:24:42 +0000803
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000804 // Print out constants referenced by the function
805 EmitConstantPool(MF.getConstantPool());
806
807 // Print out labels for the function.
808 const Function *F = MF.getFunction();
Chris Lattner73266f92009-08-19 05:49:37 +0000809 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang, TM));
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000810
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000811 switch (F->getLinkage()) {
Edwin Törökbd448e32009-07-14 16:55:14 +0000812 default: llvm_unreachable("Unknown linkage type!");
evancheng47ae8142009-01-25 06:32:01 +0000813 case Function::PrivateLinkage:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000814 case Function::InternalLinkage: // Symbols default to internal.
815 break;
816 case Function::ExternalLinkage:
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000817 O << "\t.globl\t" << CurrentFnName << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000818 break;
Duncan Sands19d161f2009-03-07 15:45:40 +0000819 case Function::WeakAnyLinkage:
820 case Function::WeakODRLinkage:
821 case Function::LinkOnceAnyLinkage:
822 case Function::LinkOnceODRLinkage:
Dale Johannesenda551282009-08-24 01:03:42 +0000823 case Function::LinkerPrivateLinkage:
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000824 O << "\t.globl\t" << CurrentFnName << '\n';
825 O << "\t.weak_definition\t" << CurrentFnName << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000826 break;
827 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000828
Anton Korobeynikov78d69aa2008-08-08 18:25:07 +0000829 printVisibility(CurrentFnName, F->getVisibility());
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000830
Bill Wendling25a8ae32009-06-30 22:38:32 +0000831 EmitAlignment(MF.getAlignment(), F);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000832 O << CurrentFnName << ":\n";
833
834 // Emit pre-function debug information.
Devang Patelaa1e8432009-01-08 23:40:34 +0000835 DW->BeginFunction(&MF);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000836
Bill Wendling36ccaea2008-01-26 06:51:24 +0000837 // If the function is empty, then we need to emit *something*. Otherwise, the
838 // function's label might be associated with something that it wasn't meant to
839 // be associated with. We emit a noop in this situation.
840 MachineFunction::iterator I = MF.begin();
841
Bill Wendlingb5880a72008-01-26 09:03:52 +0000842 if (++I == MF.end() && MF.front().empty())
843 O << "\tnop\n";
Bill Wendling36ccaea2008-01-26 06:51:24 +0000844
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000845 // Print out code for the function.
846 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
847 I != E; ++I) {
848 // Print a label for the basic block.
849 if (I != MF.begin()) {
Evan Cheng11db8142009-03-24 00:17:40 +0000850 printBasicBlockLabel(I, true, true, VerboseAsm);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000851 O << '\n';
852 }
Bill Wendling36ccaea2008-01-26 06:51:24 +0000853 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
854 II != IE; ++II) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000855 // Print the assembly for the instruction.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000856 printMachineInstruction(II);
857 }
858 }
859
860 // Print out jump tables referenced by the function.
861 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000862
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000863 // Emit post-function debug information.
Devang Patelaa1e8432009-01-08 23:40:34 +0000864 DW->EndFunction(&MF);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000865
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000866 // We didn't modify anything.
867 return false;
868}
869
870
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000871bool PPCDarwinAsmPrinter::doInitialization(Module &M) {
Dan Gohman12300e12008-03-25 21:45:14 +0000872 static const char *const CPUDirectives[] = {
Dale Johannesen161badc2008-02-14 23:35:16 +0000873 "",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000874 "ppc",
875 "ppc601",
876 "ppc602",
877 "ppc603",
878 "ppc7400",
879 "ppc750",
880 "ppc970",
881 "ppc64"
882 };
883
884 unsigned Directive = Subtarget.getDarwinDirective();
885 if (Subtarget.isGigaProcessor() && Directive < PPC::DIR_970)
886 Directive = PPC::DIR_970;
887 if (Subtarget.hasAltivec() && Directive < PPC::DIR_7400)
888 Directive = PPC::DIR_7400;
889 if (Subtarget.isPPC64() && Directive < PPC::DIR_970)
890 Directive = PPC::DIR_64;
891 assert(Directive <= PPC::DIR_64 && "Directive out of range.");
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000892 O << "\t.machine " << CPUDirectives[Directive] << '\n';
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000893
Dan Gohman4a558a32007-07-25 19:33:14 +0000894 bool Result = AsmPrinter::doInitialization(M);
Devang Patelc20079e2009-06-20 01:00:07 +0000895 assert(MMI);
Dale Johannesen58e0eeb2008-07-09 20:43:39 +0000896
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000897 // Prime text sections so they are adjacent. This reduces the likelihood a
898 // large data or debug section causes a branch to exceed 16M limit.
Chris Lattnerf4815552009-08-03 22:52:21 +0000899 TargetLoweringObjectFileMachO &TLOFMacho =
900 static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
Chris Lattner73266f92009-08-19 05:49:37 +0000901 OutStreamer.SwitchSection(TLOFMacho.getTextCoalSection());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000902 if (TM.getRelocationModel() == Reloc::PIC_) {
Chris Lattner73266f92009-08-19 05:49:37 +0000903 OutStreamer.SwitchSection(
904 TLOFMacho.getMachOSection("__TEXT", "__picsymbolstub1",
905 MCSectionMachO::S_SYMBOL_STUBS |
906 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
907 32, SectionKind::getText()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000908 } else if (TM.getRelocationModel() == Reloc::DynamicNoPIC) {
Chris Lattner73266f92009-08-19 05:49:37 +0000909 OutStreamer.SwitchSection(
910 TLOFMacho.getMachOSection("__TEXT","__symbol_stub1",
911 MCSectionMachO::S_SYMBOL_STUBS |
912 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
913 16, SectionKind::getText()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000914 }
Chris Lattner73266f92009-08-19 05:49:37 +0000915 OutStreamer.SwitchSection(getObjFileLowering().getTextSection());
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000916
Dan Gohman4a558a32007-07-25 19:33:14 +0000917 return Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000918}
919
Chris Lattnerae982212009-07-21 18:38:57 +0000920void PPCDarwinAsmPrinter::PrintGlobalVariable(const GlobalVariable *GVar) {
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000921 const TargetData *TD = TM.getTargetData();
922
923 if (!GVar->hasInitializer())
924 return; // External global require no code
925
926 // Check to see if this is a special global used by LLVM, if so, emit it.
927 if (EmitSpecialLLVMGlobal(GVar)) {
928 if (TM.getRelocationModel() == Reloc::Static) {
Daniel Dunbare03513b2009-07-25 23:55:21 +0000929 if (GVar->getName() == "llvm.global_ctors")
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000930 O << ".reference .constructors_used\n";
Daniel Dunbare03513b2009-07-25 23:55:21 +0000931 else if (GVar->getName() == "llvm.global_dtors")
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000932 O << ".reference .destructors_used\n";
933 }
934 return;
935 }
936
Chris Lattnerb3cdde62009-07-14 18:17:16 +0000937 std::string name = Mang->getMangledName(GVar);
Anton Korobeynikov78d69aa2008-08-08 18:25:07 +0000938 printVisibility(name, GVar->getVisibility());
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000939
940 Constant *C = GVar->getInitializer();
941 const Type *Type = C->getType();
Duncan Sandsec4f97d2009-05-09 07:06:46 +0000942 unsigned Size = TD->getTypeAllocSize(Type);
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000943 unsigned Align = TD->getPreferredAlignmentLog(GVar);
944
Chris Lattnere6ad12f2009-07-31 18:48:30 +0000945 const MCSection *TheSection =
Chris Lattner2931fe42009-07-29 05:09:30 +0000946 getObjFileLowering().SectionForGlobal(GVar, Mang, TM);
Chris Lattner73266f92009-08-19 05:49:37 +0000947 OutStreamer.SwitchSection(TheSection);
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000948
Chris Lattnerdb727932009-08-04 05:35:56 +0000949 /// FIXME: Drive this off the section!
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000950 if (C->isNullValue() && /* FIXME: Verify correct */
951 !GVar->hasSection() &&
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000952 (GVar->hasLocalLinkage() || GVar->hasExternalLinkage() ||
Duncan Sands19d161f2009-03-07 15:45:40 +0000953 GVar->isWeakForLinker()) &&
Chris Lattner87bc69b2009-07-24 04:08:17 +0000954 // Don't put things that should go in the cstring section into "comm".
Chris Lattnerd8310522009-07-27 05:32:16 +0000955 !TheSection->getKind().isMergeableCString()) {
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000956 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
957
958 if (GVar->hasExternalLinkage()) {
959 O << "\t.globl " << name << '\n';
960 O << "\t.zerofill __DATA, __common, " << name << ", "
961 << Size << ", " << Align;
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000962 } else if (GVar->hasLocalLinkage()) {
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000963 O << MAI->getLCOMMDirective() << name << ',' << Size << ',' << Align;
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000964 } else if (!GVar->hasCommonLinkage()) {
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000965 O << "\t.globl " << name << '\n'
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000966 << MAI->getWeakDefDirective() << name << '\n';
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000967 EmitAlignment(Align, GVar);
Evan Cheng11db8142009-03-24 00:17:40 +0000968 O << name << ":";
969 if (VerboseAsm) {
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000970 O << "\t\t\t\t" << MAI->getCommentString() << " ";
Dan Gohman2aa282f2009-08-13 01:36:44 +0000971 WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
Evan Cheng11db8142009-03-24 00:17:40 +0000972 }
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000973 O << '\n';
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000974 EmitGlobalConstant(C);
975 return;
976 } else {
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000977 O << ".comm " << name << ',' << Size;
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000978 // Darwin 9 and above support aligned common data.
979 if (Subtarget.isDarwin9())
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000980 O << ',' << Align;
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000981 }
Evan Cheng11db8142009-03-24 00:17:40 +0000982 if (VerboseAsm) {
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000983 O << "\t\t" << MAI->getCommentString() << " '";
Dan Gohman2aa282f2009-08-13 01:36:44 +0000984 WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
Evan Cheng11db8142009-03-24 00:17:40 +0000985 O << "'";
986 }
987 O << '\n';
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000988 return;
989 }
990
991 switch (GVar->getLinkage()) {
Duncan Sands19d161f2009-03-07 15:45:40 +0000992 case GlobalValue::LinkOnceAnyLinkage:
993 case GlobalValue::LinkOnceODRLinkage:
994 case GlobalValue::WeakAnyLinkage:
995 case GlobalValue::WeakODRLinkage:
Duncan Sandsb95df792009-03-11 20:14:15 +0000996 case GlobalValue::CommonLinkage:
Dale Johannesenda551282009-08-24 01:03:42 +0000997 case GlobalValue::LinkerPrivateLinkage:
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000998 O << "\t.globl " << name << '\n'
999 << "\t.weak_definition " << name << '\n';
1000 break;
1001 case GlobalValue::AppendingLinkage:
1002 // FIXME: appending linkage variables should go into a section of
1003 // their name or something. For now, just emit them as external.
1004 case GlobalValue::ExternalLinkage:
1005 // If external or appending, declare as a global symbol
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +00001006 O << "\t.globl " << name << '\n';
Anton Korobeynikov248e9c52008-08-08 18:23:25 +00001007 // FALL THROUGH
1008 case GlobalValue::InternalLinkage:
evancheng47ae8142009-01-25 06:32:01 +00001009 case GlobalValue::PrivateLinkage:
Anton Korobeynikov248e9c52008-08-08 18:23:25 +00001010 break;
1011 default:
Edwin Törökbd448e32009-07-14 16:55:14 +00001012 llvm_unreachable("Unknown linkage type!");
Anton Korobeynikov248e9c52008-08-08 18:23:25 +00001013 }
1014
1015 EmitAlignment(Align, GVar);
Evan Cheng11db8142009-03-24 00:17:40 +00001016 O << name << ":";
1017 if (VerboseAsm) {
Chris Lattnera5ef4d32009-08-22 21:43:10 +00001018 O << "\t\t\t\t" << MAI->getCommentString() << " '";
Dan Gohman2aa282f2009-08-13 01:36:44 +00001019 WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
Evan Cheng11db8142009-03-24 00:17:40 +00001020 O << "'";
1021 }
1022 O << '\n';
Anton Korobeynikov248e9c52008-08-08 18:23:25 +00001023
Anton Korobeynikov248e9c52008-08-08 18:23:25 +00001024 EmitGlobalConstant(C);
1025 O << '\n';
1026}
1027
Anton Korobeynikov28f86d12008-08-08 18:22:59 +00001028bool PPCDarwinAsmPrinter::doFinalization(Module &M) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001029 const TargetData *TD = TM.getTargetData();
1030
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001031 bool isPPC64 = TD->getPointerSizeInBits() == 64;
1032
Chris Lattnerf4815552009-08-03 22:52:21 +00001033 // Darwin/PPC always uses mach-o.
1034 TargetLoweringObjectFileMachO &TLOFMacho =
1035 static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
1036
Chris Lattner72a676a2009-08-10 01:39:42 +00001037
1038 const MCSection *LSPSection = 0;
1039 if (!FnStubs.empty()) // .lazy_symbol_pointer
1040 LSPSection = TLOFMacho.getLazySymbolPointerSection();
1041
1042
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001043 // Output stubs for dynamically-linked functions
Chris Lattner189198f2009-07-15 00:55:58 +00001044 if (TM.getRelocationModel() == Reloc::PIC_ && !FnStubs.empty()) {
Chris Lattnerf4815552009-08-03 22:52:21 +00001045 const MCSection *StubSection =
Chris Lattner72a676a2009-08-10 01:39:42 +00001046 TLOFMacho.getMachOSection("__TEXT", "__picsymbolstub1",
1047 MCSectionMachO::S_SYMBOL_STUBS |
1048 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
1049 32, SectionKind::getText());
1050 for (StringMap<FnStubInfo>::iterator I = FnStubs.begin(), E = FnStubs.end();
Chris Lattner83cf1ec2009-07-15 01:14:44 +00001051 I != E; ++I) {
Chris Lattner73266f92009-08-19 05:49:37 +00001052 OutStreamer.SwitchSection(StubSection);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001053 EmitAlignment(4);
Chris Lattnerdc4cce62009-07-15 02:33:19 +00001054 const FnStubInfo &Info = I->second;
Chris Lattnerdc4cce62009-07-15 02:33:19 +00001055 O << Info.Stub << ":\n";
1056 O << "\t.indirect_symbol " << I->getKeyData() << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001057 O << "\tmflr r0\n";
Chris Lattner63e910f2009-07-15 02:56:53 +00001058 O << "\tbcl 20,31," << Info.AnonSymbol << '\n';
1059 O << Info.AnonSymbol << ":\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001060 O << "\tmflr r11\n";
Chris Lattner63e910f2009-07-15 02:56:53 +00001061 O << "\taddis r11,r11,ha16(" << Info.LazyPtr << "-" << Info.AnonSymbol;
Evan Chenga65854f2008-12-05 01:06:39 +00001062 O << ")\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001063 O << "\tmtlr r0\n";
Chris Lattner63e910f2009-07-15 02:56:53 +00001064 O << (isPPC64 ? "\tldu" : "\tlwzu") << " r12,lo16(";
1065 O << Info.LazyPtr << "-" << Info.AnonSymbol << ")(r11)\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001066 O << "\tmtctr r12\n";
1067 O << "\tbctr\n";
Chris Lattnerc0a7f1d2009-07-16 01:23:26 +00001068
Chris Lattner73266f92009-08-19 05:49:37 +00001069 OutStreamer.SwitchSection(LSPSection);
Chris Lattnerdc4cce62009-07-15 02:33:19 +00001070 O << Info.LazyPtr << ":\n";
1071 O << "\t.indirect_symbol " << I->getKeyData() << '\n';
Chris Lattnerbaa12da2009-07-15 02:36:21 +00001072 O << (isPPC64 ? "\t.quad" : "\t.long") << " dyld_stub_binding_helper\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001073 }
Chris Lattner189198f2009-07-15 00:55:58 +00001074 } else if (!FnStubs.empty()) {
Chris Lattner72a676a2009-08-10 01:39:42 +00001075 const MCSection *StubSection =
1076 TLOFMacho.getMachOSection("__TEXT","__symbol_stub1",
1077 MCSectionMachO::S_SYMBOL_STUBS |
1078 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
1079 16, SectionKind::getText());
Chris Lattnerf4815552009-08-03 22:52:21 +00001080
Chris Lattner9ea6e2a2009-07-15 02:28:57 +00001081 for (StringMap<FnStubInfo>::iterator I = FnStubs.begin(), E = FnStubs.end();
Chris Lattner83cf1ec2009-07-15 01:14:44 +00001082 I != E; ++I) {
Chris Lattner73266f92009-08-19 05:49:37 +00001083 OutStreamer.SwitchSection(StubSection);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001084 EmitAlignment(4);
Chris Lattnerdc4cce62009-07-15 02:33:19 +00001085 const FnStubInfo &Info = I->second;
1086 O << Info.Stub << ":\n";
1087 O << "\t.indirect_symbol " << I->getKeyData() << '\n';
1088 O << "\tlis r11,ha16(" << Info.LazyPtr << ")\n";
Chris Lattnerbaa12da2009-07-15 02:36:21 +00001089 O << (isPPC64 ? "\tldu" : "\tlwzu") << " r12,lo16(";
Chris Lattnerdc4cce62009-07-15 02:33:19 +00001090 O << Info.LazyPtr << ")(r11)\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001091 O << "\tmtctr r12\n";
1092 O << "\tbctr\n";
Chris Lattner73266f92009-08-19 05:49:37 +00001093 OutStreamer.SwitchSection(LSPSection);
Chris Lattnerdc4cce62009-07-15 02:33:19 +00001094 O << Info.LazyPtr << ":\n";
1095 O << "\t.indirect_symbol " << I->getKeyData() << '\n';
Chris Lattnerbaa12da2009-07-15 02:36:21 +00001096 O << (isPPC64 ? "\t.quad" : "\t.long") << " dyld_stub_binding_helper\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001097 }
1098 }
1099
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +00001100 O << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001101
Chris Lattnera5ef4d32009-08-22 21:43:10 +00001102 if (MAI->doesSupportExceptionHandling() && MMI) {
Dale Johannesenfb3ac732007-11-20 23:24:42 +00001103 // Add the (possibly multiple) personalities to the set of global values.
Dale Johannesen85535762008-04-02 00:25:04 +00001104 // Only referenced functions get into the Personalities list.
Chris Lattner2424eac2009-06-24 19:09:55 +00001105 const std::vector<Function *> &Personalities = MMI->getPersonalities();
Dale Johannesenfb3ac732007-11-20 23:24:42 +00001106 for (std::vector<Function *>::const_iterator I = Personalities.begin(),
Chris Lattner83cf1ec2009-07-15 01:14:44 +00001107 E = Personalities.end(); I != E; ++I) {
1108 if (*I)
1109 GVStubs[Mang->getMangledName(*I)] =
Chris Lattner65353d52009-07-15 01:16:38 +00001110 Mang->getMangledName(*I, "$non_lazy_ptr", true);
Chris Lattner83cf1ec2009-07-15 01:14:44 +00001111 }
Dale Johannesenfb3ac732007-11-20 23:24:42 +00001112 }
1113
Chris Lattnerf4815552009-08-03 22:52:21 +00001114 // Output macho stubs for external and common global variables.
Dan Gohman3f7d94b2007-10-03 19:26:29 +00001115 if (!GVStubs.empty()) {
Chris Lattner72a676a2009-08-10 01:39:42 +00001116 // Switch with ".non_lazy_symbol_pointer" directive.
Chris Lattner73266f92009-08-19 05:49:37 +00001117 OutStreamer.SwitchSection(TLOFMacho.getNonLazySymbolPointerSection());
Chris Lattner2d61eaa2009-08-10 17:58:51 +00001118 EmitAlignment(isPPC64 ? 3 : 2);
1119
Chris Lattner83cf1ec2009-07-15 01:14:44 +00001120 for (StringMap<std::string>::iterator I = GVStubs.begin(),
1121 E = GVStubs.end(); I != E; ++I) {
1122 O << I->second << ":\n";
1123 O << "\t.indirect_symbol " << I->getKeyData() << '\n';
1124 O << (isPPC64 ? "\t.quad\t0\n" : "\t.long\t0\n");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001125 }
1126 }
1127
Evan Chenga65854f2008-12-05 01:06:39 +00001128 if (!HiddenGVStubs.empty()) {
Chris Lattner73266f92009-08-19 05:49:37 +00001129 OutStreamer.SwitchSection(getObjFileLowering().getDataSection());
Chris Lattner83cf1ec2009-07-15 01:14:44 +00001130 EmitAlignment(isPPC64 ? 3 : 2);
1131 for (StringMap<std::string>::iterator I = HiddenGVStubs.begin(),
1132 E = HiddenGVStubs.end(); I != E; ++I) {
1133 O << I->second << ":\n";
1134 O << (isPPC64 ? "\t.quad\t" : "\t.long\t") << I->getKeyData() << '\n';
Evan Chenga65854f2008-12-05 01:06:39 +00001135 }
1136 }
1137
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001138 // Funny Darwin hack: This flag tells the linker that no global symbols
1139 // contain code that falls through to other global symbols (e.g. the obvious
1140 // implementation of multiple entry points). If this doesn't occur, the
1141 // linker can safely perform dead code stripping. Since LLVM never generates
1142 // code that does this, it is always safe to set.
1143 O << "\t.subsections_via_symbols\n";
1144
Dan Gohman4a558a32007-07-25 19:33:14 +00001145 return AsmPrinter::doFinalization(M);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001146}
1147
1148
1149
1150/// createPPCAsmPrinterPass - Returns a pass that prints the PPC assembly code
1151/// for a MachineFunction to the given output stream, in a format that the
1152/// Darwin assembler can deal with.
1153///
Daniel Dunbar4cb63652009-08-13 23:48:47 +00001154static AsmPrinter *createPPCAsmPrinterPass(formatted_raw_ostream &o,
1155 TargetMachine &tm,
Chris Lattner621c44d2009-08-22 20:48:53 +00001156 const MCAsmInfo *tai,
Daniel Dunbar4cb63652009-08-13 23:48:47 +00001157 bool verbose) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001158 const PPCSubtarget *Subtarget = &tm.getSubtarget<PPCSubtarget>();
1159
Chris Lattnerae982212009-07-21 18:38:57 +00001160 if (Subtarget->isDarwin())
Daniel Dunbaref5abb42009-08-13 19:38:51 +00001161 return new PPCDarwinAsmPrinter(o, tm, tai, verbose);
1162 return new PPCLinuxAsmPrinter(o, tm, tai, verbose);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001163}
Anton Korobeynikov01c0e9f2008-08-17 13:54:28 +00001164
Bob Wilsonebbc1c42009-06-23 23:59:40 +00001165// Force static initialization.
Daniel Dunbarfe5939f2009-07-15 20:24:03 +00001166extern "C" void LLVMInitializePowerPCAsmPrinter() {
Daniel Dunbarfe5939f2009-07-15 20:24:03 +00001167 TargetRegistry::RegisterAsmPrinter(ThePPC32Target, createPPCAsmPrinterPass);
Daniel Dunbarfe5939f2009-07-15 20:24:03 +00001168 TargetRegistry::RegisterAsmPrinter(ThePPC64Target, createPPCAsmPrinterPass);
1169}