blob: 4bc58d215a9900f8b548af18a0d00f750f570c58 [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"
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 {
Nick Lewycky492d06e2009-10-25 06:33:48 +000057 class PPCAsmPrinter : public AsmPrinter {
Bill Wendling4f405312009-02-24 08:30:20 +000058 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);
Chris Lattner213703c2009-09-13 20:19:22 +0000122 static const char *getRegisterName(unsigned RegNo);
Chris Lattner92221692009-09-13 20:08:00 +0000123
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000124
125 void printMachineInstruction(const MachineInstr *MI);
126 void printOp(const MachineOperand &MO);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000127
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000128 /// stripRegisterPrefix - This method strips the character prefix from a
129 /// register name so that only the number is left. Used by for linux asm.
130 const char *stripRegisterPrefix(const char *RegName) {
131 switch (RegName[0]) {
132 case 'r':
133 case 'f':
134 case 'v': return RegName + 1;
135 case 'c': if (RegName[1] == 'r') return RegName + 2;
136 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000137
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000138 return RegName;
139 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000140
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000141 /// printRegister - Print register according to target requirements.
142 ///
143 void printRegister(const MachineOperand &MO, bool R0AsZero) {
144 unsigned RegNo = MO.getReg();
Dan Gohman1e57df32008-02-10 18:45:23 +0000145 assert(TargetRegisterInfo::isPhysicalRegister(RegNo) && "Not physreg??");
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000146
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000147 // If we should use 0 for R0.
148 if (R0AsZero && RegNo == PPC::R0) {
149 O << "0";
150 return;
151 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000152
Chris Lattnerf0a25de2009-09-13 20:31:40 +0000153 const char *RegName = getRegisterName(RegNo);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000154 // Linux assembler (Others?) does not take register mnemonics.
155 // FIXME - What about special registers used in mfspr/mtspr?
156 if (!Subtarget.isDarwin()) RegName = stripRegisterPrefix(RegName);
157 O << RegName;
158 }
159
160 void printOperand(const MachineInstr *MI, unsigned OpNo) {
161 const MachineOperand &MO = MI->getOperand(OpNo);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000162 if (MO.isReg()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000163 printRegister(MO, false);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000164 } else if (MO.isImm()) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000165 O << MO.getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000166 } else {
167 printOp(MO);
168 }
169 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000170
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000171 bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
172 unsigned AsmVariant, const char *ExtraCode);
173 bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
174 unsigned AsmVariant, const char *ExtraCode);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000175
176
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000177 void printS5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000178 char value = MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000179 value = (value << (32-5)) >> (32-5);
180 O << (int)value;
181 }
182 void printU5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000183 unsigned char value = MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000184 assert(value <= 31 && "Invalid u5imm argument!");
185 O << (unsigned int)value;
186 }
187 void printU6ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000188 unsigned char value = MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000189 assert(value <= 63 && "Invalid u6imm argument!");
190 O << (unsigned int)value;
191 }
192 void printS16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000193 O << (short)MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000194 }
195 void printU16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000196 O << (unsigned short)MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000197 }
198 void printS16X4ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000199 if (MI->getOperand(OpNo).isImm()) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000200 O << (short)(MI->getOperand(OpNo).getImm()*4);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000201 } else {
202 O << "lo16(";
203 printOp(MI->getOperand(OpNo));
204 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng477013c2007-10-14 05:57:21 +0000205 O << "-\"L" << getFunctionNumber() << "$pb\")";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000206 else
207 O << ')';
208 }
209 }
210 void printBranchOperand(const MachineInstr *MI, unsigned OpNo) {
211 // Branches can take an immediate operand. This is used by the branch
212 // selection pass to print $+8, an eight byte displacement from the PC.
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000213 if (MI->getOperand(OpNo).isImm()) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000214 O << "$+" << MI->getOperand(OpNo).getImm()*4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000215 } else {
216 printOp(MI->getOperand(OpNo));
217 }
218 }
219 void printCallOperand(const MachineInstr *MI, unsigned OpNo) {
220 const MachineOperand &MO = MI->getOperand(OpNo);
221 if (TM.getRelocationModel() != Reloc::Static) {
222 if (MO.getType() == MachineOperand::MO_GlobalAddress) {
223 GlobalValue *GV = MO.getGlobal();
Chris Lattner0fd4feb2009-07-02 16:08:53 +0000224 if (GV->isDeclaration() || GV->isWeakForLinker()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000225 // Dynamically-resolved functions need a stub for the function.
Chris Lattner9ea6e2a2009-07-15 02:28:57 +0000226 FnStubInfo &FnInfo = FnStubs[Mang->getMangledName(GV)];
227 FnInfo.Init(GV, Mang);
228 O << FnInfo.Stub;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000229 return;
230 }
231 }
232 if (MO.getType() == MachineOperand::MO_ExternalSymbol) {
Chris Lattner9ea6e2a2009-07-15 02:28:57 +0000233 FnStubInfo &FnInfo =FnStubs[Mang->makeNameProper(MO.getSymbolName())];
234 FnInfo.Init(MO.getSymbolName(), Mang);
235 O << FnInfo.Stub;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000236 return;
237 }
238 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000239
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000240 printOp(MI->getOperand(OpNo));
241 }
242 void printAbsAddrOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000243 O << (int)MI->getOperand(OpNo).getImm()*4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000244 }
245 void printPICLabel(const MachineInstr *MI, unsigned OpNo) {
Evan Cheng477013c2007-10-14 05:57:21 +0000246 O << "\"L" << getFunctionNumber() << "$pb\"\n";
247 O << "\"L" << getFunctionNumber() << "$pb\":";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000248 }
249 void printSymbolHi(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000250 if (MI->getOperand(OpNo).isImm()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000251 printS16ImmOperand(MI, OpNo);
252 } else {
253 if (Subtarget.isDarwin()) O << "ha16(";
254 printOp(MI->getOperand(OpNo));
255 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng477013c2007-10-14 05:57:21 +0000256 O << "-\"L" << getFunctionNumber() << "$pb\"";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000257 if (Subtarget.isDarwin())
258 O << ')';
259 else
260 O << "@ha";
261 }
262 }
263 void printSymbolLo(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000264 if (MI->getOperand(OpNo).isImm()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000265 printS16ImmOperand(MI, OpNo);
266 } else {
267 if (Subtarget.isDarwin()) O << "lo16(";
268 printOp(MI->getOperand(OpNo));
269 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng477013c2007-10-14 05:57:21 +0000270 O << "-\"L" << getFunctionNumber() << "$pb\"";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000271 if (Subtarget.isDarwin())
272 O << ')';
273 else
274 O << "@l";
275 }
276 }
277 void printcrbitm(const MachineInstr *MI, unsigned OpNo) {
278 unsigned CCReg = MI->getOperand(OpNo).getReg();
279 unsigned RegNo = enumRegToMachineReg(CCReg);
280 O << (0x80 >> RegNo);
281 }
282 // The new addressing mode printers.
283 void printMemRegImm(const MachineInstr *MI, unsigned OpNo) {
284 printSymbolLo(MI, OpNo);
285 O << '(';
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000286 if (MI->getOperand(OpNo+1).isReg() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000287 MI->getOperand(OpNo+1).getReg() == PPC::R0)
288 O << "0";
289 else
290 printOperand(MI, OpNo+1);
291 O << ')';
292 }
293 void printMemRegImmShifted(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000294 if (MI->getOperand(OpNo).isImm())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000295 printS16X4ImmOperand(MI, OpNo);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000296 else
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000297 printSymbolLo(MI, OpNo);
298 O << '(';
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000299 if (MI->getOperand(OpNo+1).isReg() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000300 MI->getOperand(OpNo+1).getReg() == PPC::R0)
301 O << "0";
302 else
303 printOperand(MI, OpNo+1);
304 O << ')';
305 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000306
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000307 void printMemRegReg(const MachineInstr *MI, unsigned OpNo) {
308 // When used as the base register, r0 reads constant zero rather than
309 // the value contained in the register. For this reason, the darwin
310 // assembler requires that we print r0 as 0 (no r) when used as the base.
311 const MachineOperand &MO = MI->getOperand(OpNo);
312 printRegister(MO, true);
313 O << ", ";
314 printOperand(MI, OpNo+1);
315 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000316
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000317 void printTOCEntryLabel(const MachineInstr *MI, unsigned OpNo) {
318 const MachineOperand &MO = MI->getOperand(OpNo);
319
320 assert(MO.getType() == MachineOperand::MO_GlobalAddress);
321
322 GlobalValue *GV = MO.getGlobal();
323
324 std::string Name = Mang->getMangledName(GV);
325
326 // Map symbol -> label of TOC entry.
327 if (TOC.count(Name) == 0) {
328 std::string Label;
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000329 Label += MAI->getPrivateGlobalPrefix();
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000330 Label += "C";
331 Label += utostr(LabelID++);
332
333 TOC[Name] = Label;
334 }
335
336 O << TOC[Name] << "@toc";
337 }
338
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000339 void printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000340 const char *Modifier);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000341
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000342 virtual bool runOnMachineFunction(MachineFunction &F) = 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000343 };
344
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000345 /// PPCLinuxAsmPrinter - PowerPC assembly printer, customized for Linux
Nick Lewycky492d06e2009-10-25 06:33:48 +0000346 class 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
Nick Lewycky492d06e2009-10-25 06:33:48 +0000371 class 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);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000383 bool doFinalization(Module &M);
Bob Wilsonb5f835e2009-09-30 22:06:26 +0000384 void EmitStartOfAsmFile(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 Lattnerc6f802d2009-09-13 17:14:04 +0000406 GetMBBSymbol(MO.getMBB()->getNumber())->print(O, MAI);
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
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000462/// PrintAsmOperand - Print out an operand for an inline asm expression.
463///
464bool PPCAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000465 unsigned AsmVariant,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000466 const char *ExtraCode) {
467 // Does this asm operand have a single letter operand modifier?
468 if (ExtraCode && ExtraCode[0]) {
469 if (ExtraCode[1] != 0) return true; // Unknown modifier.
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000470
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000471 switch (ExtraCode[0]) {
472 default: return true; // Unknown modifier.
473 case 'c': // Don't print "$" before a global var name or constant.
474 // PPC never has a prefix.
475 printOperand(MI, OpNo);
476 return false;
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000477 case 'L': // Write second word of DImode reference.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000478 // Verify that this operand has two consecutive registers.
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000479 if (!MI->getOperand(OpNo).isReg() ||
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000480 OpNo+1 == MI->getNumOperands() ||
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000481 !MI->getOperand(OpNo+1).isReg())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000482 return true;
483 ++OpNo; // Return the high-part.
484 break;
485 case 'I':
486 // Write 'i' if an integer constant, otherwise nothing. Used to print
487 // addi vs add, etc.
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000488 if (MI->getOperand(OpNo).isImm())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000489 O << "i";
490 return false;
491 }
492 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000493
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000494 printOperand(MI, OpNo);
495 return false;
496}
497
Dale Johannesen0a42b9662009-08-18 00:18:39 +0000498// At the moment, all inline asm memory operands are a single register.
499// In any case, the output of this routine should always be just one
500// assembler operand.
501
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000502bool PPCAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000503 unsigned AsmVariant,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000504 const char *ExtraCode) {
505 if (ExtraCode && ExtraCode[0])
506 return true; // Unknown modifier.
Dale Johannesen0a42b9662009-08-18 00:18:39 +0000507 assert (MI->getOperand(OpNo).isReg());
Dale Johannesen5e699502009-08-26 18:10:32 +0000508 O << "0(";
Dale Johannesen0a42b9662009-08-18 00:18:39 +0000509 printOperand(MI, OpNo);
Dale Johannesen5e699502009-08-26 18:10:32 +0000510 O << ")";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000511 return false;
512}
513
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000514void PPCAsmPrinter::printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000515 const char *Modifier) {
516 assert(Modifier && "Must specify 'cc' or 'reg' as predicate op modifier!");
517 unsigned Code = MI->getOperand(OpNo).getImm();
518 if (!strcmp(Modifier, "cc")) {
519 switch ((PPC::Predicate)Code) {
520 case PPC::PRED_ALWAYS: return; // Don't print anything for always.
521 case PPC::PRED_LT: O << "lt"; return;
522 case PPC::PRED_LE: O << "le"; return;
523 case PPC::PRED_EQ: O << "eq"; return;
524 case PPC::PRED_GE: O << "ge"; return;
525 case PPC::PRED_GT: O << "gt"; return;
526 case PPC::PRED_NE: O << "ne"; return;
527 case PPC::PRED_UN: O << "un"; return;
528 case PPC::PRED_NU: O << "nu"; return;
529 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000530
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000531 } else {
532 assert(!strcmp(Modifier, "reg") &&
533 "Need to specify 'cc' or 'reg' as predicate op modifier!");
534 // Don't print the register for 'always'.
535 if (Code == PPC::PRED_ALWAYS) return;
536 printOperand(MI, OpNo+1);
537 }
538}
539
540
541/// printMachineInstruction -- Print out a single PowerPC MI in Darwin syntax to
542/// the current output stream.
543///
544void PPCAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
545 ++EmittedInsts;
Chris Lattnere34788c2009-09-09 20:34:59 +0000546
Devang Patel5450fc12009-10-06 02:19:11 +0000547 processDebugLoc(MI, true);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000548
549 // Check for slwi/srwi mnemonics.
550 if (MI->getOpcode() == PPC::RLWINM) {
551 bool FoundMnemonic = false;
Chris Lattnera96056a2007-12-30 20:49:49 +0000552 unsigned char SH = MI->getOperand(2).getImm();
553 unsigned char MB = MI->getOperand(3).getImm();
554 unsigned char ME = MI->getOperand(4).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000555 if (SH <= 31 && MB == 0 && ME == (31-SH)) {
Nate Begemanbd5cdf12008-02-05 08:49:09 +0000556 O << "\tslwi "; FoundMnemonic = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000557 }
558 if (SH <= 31 && MB == (32-SH) && ME == 31) {
Nate Begemanbd5cdf12008-02-05 08:49:09 +0000559 O << "\tsrwi "; FoundMnemonic = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000560 SH = 32-SH;
561 }
562 if (FoundMnemonic) {
563 printOperand(MI, 0);
564 O << ", ";
565 printOperand(MI, 1);
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000566 O << ", " << (unsigned int)SH << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000567 return;
568 }
569 } else if (MI->getOpcode() == PPC::OR || MI->getOpcode() == PPC::OR8) {
570 if (MI->getOperand(1).getReg() == MI->getOperand(2).getReg()) {
Nate Begemanbd5cdf12008-02-05 08:49:09 +0000571 O << "\tmr ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000572 printOperand(MI, 0);
573 O << ", ";
574 printOperand(MI, 1);
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000575 O << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000576 return;
577 }
578 } else if (MI->getOpcode() == PPC::RLDICR) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000579 unsigned char SH = MI->getOperand(2).getImm();
580 unsigned char ME = MI->getOperand(3).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000581 // rldicr RA, RS, SH, 63-SH == sldi RA, RS, SH
582 if (63-SH == ME) {
Nate Begemanbd5cdf12008-02-05 08:49:09 +0000583 O << "\tsldi ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000584 printOperand(MI, 0);
585 O << ", ";
586 printOperand(MI, 1);
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000587 O << ", " << (unsigned int)SH << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000588 return;
589 }
590 }
591
Chris Lattner7d337492009-08-08 00:05:42 +0000592 printInstruction(MI);
Chris Lattner32d4cc72009-09-09 23:14:36 +0000593
594 if (VerboseAsm && !MI->getDebugLoc().isUnknown())
595 EmitComments(*MI);
596 O << '\n';
Devang Patel5450fc12009-10-06 02:19:11 +0000597
598 processDebugLoc(MI, false);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000599}
600
601/// runOnMachineFunction - This uses the printMachineInstruction()
602/// method to print assembly for each instruction.
603///
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000604bool PPCLinuxAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Bill Wendling4f405312009-02-24 08:30:20 +0000605 this->MF = &MF;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000606
607 SetupMachineFunction(MF);
608 O << "\n\n";
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000609
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000610 // Print out constants referenced by the function
611 EmitConstantPool(MF.getConstantPool());
612
613 // Print out labels for the function.
614 const Function *F = MF.getFunction();
Chris Lattner73266f92009-08-19 05:49:37 +0000615 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang, TM));
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000616
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000617 switch (F->getLinkage()) {
Edwin Törökbd448e32009-07-14 16:55:14 +0000618 default: llvm_unreachable("Unknown linkage type!");
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000619 case Function::PrivateLinkage:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000620 case Function::InternalLinkage: // Symbols default to internal.
621 break;
622 case Function::ExternalLinkage:
623 O << "\t.global\t" << CurrentFnName << '\n'
624 << "\t.type\t" << CurrentFnName << ", @function\n";
625 break;
Dale Johannesenda551282009-08-24 01:03:42 +0000626 case Function::LinkerPrivateLinkage:
Duncan Sands19d161f2009-03-07 15:45:40 +0000627 case Function::WeakAnyLinkage:
628 case Function::WeakODRLinkage:
629 case Function::LinkOnceAnyLinkage:
630 case Function::LinkOnceODRLinkage:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000631 O << "\t.global\t" << CurrentFnName << '\n';
632 O << "\t.weak\t" << CurrentFnName << '\n';
633 break;
634 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000635
Anton Korobeynikov78d69aa2008-08-08 18:25:07 +0000636 printVisibility(CurrentFnName, F->getVisibility());
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000637
Bill Wendling25a8ae32009-06-30 22:38:32 +0000638 EmitAlignment(MF.getAlignment(), F);
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000639
640 if (Subtarget.isPPC64()) {
641 // Emit an official procedure descriptor.
642 // FIXME 64-bit SVR4: Use MCSection here?
643 O << "\t.section\t\".opd\",\"aw\"\n";
644 O << "\t.align 3\n";
645 O << CurrentFnName << ":\n";
646 O << "\t.quad .L." << CurrentFnName << ",.TOC.@tocbase\n";
647 O << "\t.previous\n";
648 O << ".L." << CurrentFnName << ":\n";
649 } else {
650 O << CurrentFnName << ":\n";
651 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000652
653 // Emit pre-function debug information.
Devang Patelaa1e8432009-01-08 23:40:34 +0000654 DW->BeginFunction(&MF);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000655
656 // Print out code for the function.
657 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
658 I != E; ++I) {
659 // Print a label for the basic block.
660 if (I != MF.begin()) {
Chris Lattner2faa4ef2009-09-13 18:25:37 +0000661 EmitBasicBlockStart(I);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000662 }
663 for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
664 II != E; ++II) {
665 // Print the assembly for the instruction.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000666 printMachineInstruction(II);
667 }
668 }
669
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000670 O << "\t.size\t" << CurrentFnName << ",.-" << CurrentFnName << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000671
672 // Print out jump tables referenced by the function.
673 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000674
Chris Lattner73266f92009-08-19 05:49:37 +0000675 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang, TM));
Dale Johannesendd9e1c92008-12-03 19:33:10 +0000676
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000677 // Emit post-function debug information.
Devang Patelaa1e8432009-01-08 23:40:34 +0000678 DW->EndFunction(&MF);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000679
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000680 // We didn't modify anything.
681 return false;
682}
683
Chris Lattnerae982212009-07-21 18:38:57 +0000684void PPCLinuxAsmPrinter::PrintGlobalVariable(const GlobalVariable *GVar) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000685 const TargetData *TD = TM.getTargetData();
686
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000687 if (!GVar->hasInitializer())
688 return; // External global require no code
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000689
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000690 // Check to see if this is a special global used by LLVM, if so, emit it.
691 if (EmitSpecialLLVMGlobal(GVar))
692 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000693
Chris Lattnerb3cdde62009-07-14 18:17:16 +0000694 std::string name = Mang->getMangledName(GVar);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000695
Anton Korobeynikov78d69aa2008-08-08 18:25:07 +0000696 printVisibility(name, GVar->getVisibility());
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000697
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000698 Constant *C = GVar->getInitializer();
699 const Type *Type = C->getType();
Duncan Sandsec4f97d2009-05-09 07:06:46 +0000700 unsigned Size = TD->getTypeAllocSize(Type);
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000701 unsigned Align = TD->getPreferredAlignmentLog(GVar);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000702
Chris Lattner73266f92009-08-19 05:49:37 +0000703 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(GVar, Mang,
704 TM));
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000705
706 if (C->isNullValue() && /* FIXME: Verify correct */
707 !GVar->hasSection() &&
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000708 (GVar->hasLocalLinkage() || GVar->hasExternalLinkage() ||
Duncan Sands19d161f2009-03-07 15:45:40 +0000709 GVar->isWeakForLinker())) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000710 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000711
712 if (GVar->hasExternalLinkage()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000713 O << "\t.global " << name << '\n';
714 O << "\t.type " << name << ", @object\n";
Nick Lewycky3246a9c2007-07-25 03:48:45 +0000715 O << name << ":\n";
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000716 O << "\t.zero " << Size << '\n';
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000717 } else if (GVar->hasLocalLinkage()) {
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000718 O << MAI->getLCOMMDirective() << name << ',' << Size;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000719 } else {
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000720 O << ".comm " << name << ',' << Size;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000721 }
Evan Cheng11db8142009-03-24 00:17:40 +0000722 if (VerboseAsm) {
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000723 O << "\t\t" << MAI->getCommentString() << " '";
Dan Gohman2aa282f2009-08-13 01:36:44 +0000724 WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
Evan Cheng11db8142009-03-24 00:17:40 +0000725 O << "'";
726 }
727 O << '\n';
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000728 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000729 }
730
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000731 switch (GVar->getLinkage()) {
Duncan Sands19d161f2009-03-07 15:45:40 +0000732 case GlobalValue::LinkOnceAnyLinkage:
733 case GlobalValue::LinkOnceODRLinkage:
734 case GlobalValue::WeakAnyLinkage:
735 case GlobalValue::WeakODRLinkage:
Duncan Sandsb95df792009-03-11 20:14:15 +0000736 case GlobalValue::CommonLinkage:
Dale Johannesenda551282009-08-24 01:03:42 +0000737 case GlobalValue::LinkerPrivateLinkage:
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000738 O << "\t.global " << name << '\n'
739 << "\t.type " << name << ", @object\n"
740 << "\t.weak " << name << '\n';
741 break;
742 case GlobalValue::AppendingLinkage:
743 // FIXME: appending linkage variables should go into a section of
744 // their name or something. For now, just emit them as external.
745 case GlobalValue::ExternalLinkage:
746 // If external or appending, declare as a global symbol
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000747 O << "\t.global " << name << '\n'
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000748 << "\t.type " << name << ", @object\n";
749 // FALL THROUGH
750 case GlobalValue::InternalLinkage:
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000751 case GlobalValue::PrivateLinkage:
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000752 break;
753 default:
Edwin Törökbd448e32009-07-14 16:55:14 +0000754 llvm_unreachable("Unknown linkage type!");
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000755 }
756
757 EmitAlignment(Align, GVar);
Evan Cheng11db8142009-03-24 00:17:40 +0000758 O << name << ":";
759 if (VerboseAsm) {
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000760 O << "\t\t\t\t" << MAI->getCommentString() << " '";
Dan Gohman2aa282f2009-08-13 01:36:44 +0000761 WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
Evan Cheng11db8142009-03-24 00:17:40 +0000762 O << "'";
763 }
764 O << '\n';
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000765
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000766 EmitGlobalConstant(C);
767 O << '\n';
768}
769
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000770bool PPCLinuxAsmPrinter::doFinalization(Module &M) {
771 const TargetData *TD = TM.getTargetData();
772
773 bool isPPC64 = TD->getPointerSizeInBits() == 64;
774
775 if (isPPC64 && !TOC.empty()) {
776 // FIXME 64-bit SVR4: Use MCSection here?
777 O << "\t.section\t\".toc\",\"aw\"\n";
778
779 for (StringMap<std::string>::iterator I = TOC.begin(), E = TOC.end();
780 I != E; ++I) {
781 O << I->second << ":\n";
782 O << "\t.tc " << I->getKeyData() << "[TC]," << I->getKeyData() << '\n';
783 }
784 }
785
786 return AsmPrinter::doFinalization(M);
787}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000788
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000789/// runOnMachineFunction - This uses the printMachineInstruction()
790/// method to print assembly for each instruction.
791///
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000792bool PPCDarwinAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Bill Wendling4f405312009-02-24 08:30:20 +0000793 this->MF = &MF;
794
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000795 SetupMachineFunction(MF);
796 O << "\n\n";
Dale Johannesenfb3ac732007-11-20 23:24:42 +0000797
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000798 // Print out constants referenced by the function
799 EmitConstantPool(MF.getConstantPool());
800
801 // Print out labels for the function.
802 const Function *F = MF.getFunction();
Chris Lattner73266f92009-08-19 05:49:37 +0000803 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang, TM));
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000804
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000805 switch (F->getLinkage()) {
Edwin Törökbd448e32009-07-14 16:55:14 +0000806 default: llvm_unreachable("Unknown linkage type!");
evancheng47ae8142009-01-25 06:32:01 +0000807 case Function::PrivateLinkage:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000808 case Function::InternalLinkage: // Symbols default to internal.
809 break;
810 case Function::ExternalLinkage:
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000811 O << "\t.globl\t" << CurrentFnName << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000812 break;
Duncan Sands19d161f2009-03-07 15:45:40 +0000813 case Function::WeakAnyLinkage:
814 case Function::WeakODRLinkage:
815 case Function::LinkOnceAnyLinkage:
816 case Function::LinkOnceODRLinkage:
Dale Johannesenda551282009-08-24 01:03:42 +0000817 case Function::LinkerPrivateLinkage:
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000818 O << "\t.globl\t" << CurrentFnName << '\n';
819 O << "\t.weak_definition\t" << CurrentFnName << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000820 break;
821 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000822
Anton Korobeynikov78d69aa2008-08-08 18:25:07 +0000823 printVisibility(CurrentFnName, F->getVisibility());
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000824
Bill Wendling25a8ae32009-06-30 22:38:32 +0000825 EmitAlignment(MF.getAlignment(), F);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000826 O << CurrentFnName << ":\n";
827
828 // Emit pre-function debug information.
Devang Patelaa1e8432009-01-08 23:40:34 +0000829 DW->BeginFunction(&MF);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000830
Bill Wendling36ccaea2008-01-26 06:51:24 +0000831 // If the function is empty, then we need to emit *something*. Otherwise, the
832 // function's label might be associated with something that it wasn't meant to
833 // be associated with. We emit a noop in this situation.
834 MachineFunction::iterator I = MF.begin();
835
Bill Wendlingb5880a72008-01-26 09:03:52 +0000836 if (++I == MF.end() && MF.front().empty())
837 O << "\tnop\n";
Bill Wendling36ccaea2008-01-26 06:51:24 +0000838
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000839 // Print out code for the function.
840 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
841 I != E; ++I) {
842 // Print a label for the basic block.
843 if (I != MF.begin()) {
Chris Lattner2faa4ef2009-09-13 18:25:37 +0000844 EmitBasicBlockStart(I);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000845 }
Bill Wendling36ccaea2008-01-26 06:51:24 +0000846 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
847 II != IE; ++II) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000848 // Print the assembly for the instruction.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000849 printMachineInstruction(II);
850 }
851 }
852
853 // Print out jump tables referenced by the function.
854 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000855
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000856 // Emit post-function debug information.
Devang Patelaa1e8432009-01-08 23:40:34 +0000857 DW->EndFunction(&MF);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000858
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000859 // We didn't modify anything.
860 return false;
861}
862
863
Bob Wilsonb5f835e2009-09-30 22:06:26 +0000864void PPCDarwinAsmPrinter::EmitStartOfAsmFile(Module &M) {
Dan Gohman12300e12008-03-25 21:45:14 +0000865 static const char *const CPUDirectives[] = {
Dale Johannesen161badc2008-02-14 23:35:16 +0000866 "",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000867 "ppc",
868 "ppc601",
869 "ppc602",
870 "ppc603",
871 "ppc7400",
872 "ppc750",
873 "ppc970",
874 "ppc64"
875 };
876
877 unsigned Directive = Subtarget.getDarwinDirective();
878 if (Subtarget.isGigaProcessor() && Directive < PPC::DIR_970)
879 Directive = PPC::DIR_970;
880 if (Subtarget.hasAltivec() && Directive < PPC::DIR_7400)
881 Directive = PPC::DIR_7400;
882 if (Subtarget.isPPC64() && Directive < PPC::DIR_970)
883 Directive = PPC::DIR_64;
884 assert(Directive <= PPC::DIR_64 && "Directive out of range.");
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000885 O << "\t.machine " << CPUDirectives[Directive] << '\n';
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000886
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000887 // Prime text sections so they are adjacent. This reduces the likelihood a
888 // large data or debug section causes a branch to exceed 16M limit.
Chris Lattnerf4815552009-08-03 22:52:21 +0000889 TargetLoweringObjectFileMachO &TLOFMacho =
890 static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
Chris Lattner73266f92009-08-19 05:49:37 +0000891 OutStreamer.SwitchSection(TLOFMacho.getTextCoalSection());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000892 if (TM.getRelocationModel() == Reloc::PIC_) {
Chris Lattner73266f92009-08-19 05:49:37 +0000893 OutStreamer.SwitchSection(
894 TLOFMacho.getMachOSection("__TEXT", "__picsymbolstub1",
895 MCSectionMachO::S_SYMBOL_STUBS |
896 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
897 32, SectionKind::getText()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000898 } else if (TM.getRelocationModel() == Reloc::DynamicNoPIC) {
Chris Lattner73266f92009-08-19 05:49:37 +0000899 OutStreamer.SwitchSection(
900 TLOFMacho.getMachOSection("__TEXT","__symbol_stub1",
901 MCSectionMachO::S_SYMBOL_STUBS |
902 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
903 16, SectionKind::getText()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000904 }
Chris Lattner73266f92009-08-19 05:49:37 +0000905 OutStreamer.SwitchSection(getObjFileLowering().getTextSection());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000906}
907
Chris Lattnerae982212009-07-21 18:38:57 +0000908void PPCDarwinAsmPrinter::PrintGlobalVariable(const GlobalVariable *GVar) {
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000909 const TargetData *TD = TM.getTargetData();
910
911 if (!GVar->hasInitializer())
912 return; // External global require no code
913
914 // Check to see if this is a special global used by LLVM, if so, emit it.
915 if (EmitSpecialLLVMGlobal(GVar)) {
916 if (TM.getRelocationModel() == Reloc::Static) {
Daniel Dunbare03513b2009-07-25 23:55:21 +0000917 if (GVar->getName() == "llvm.global_ctors")
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000918 O << ".reference .constructors_used\n";
Daniel Dunbare03513b2009-07-25 23:55:21 +0000919 else if (GVar->getName() == "llvm.global_dtors")
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000920 O << ".reference .destructors_used\n";
921 }
922 return;
923 }
924
Chris Lattnerb3cdde62009-07-14 18:17:16 +0000925 std::string name = Mang->getMangledName(GVar);
Anton Korobeynikov78d69aa2008-08-08 18:25:07 +0000926 printVisibility(name, GVar->getVisibility());
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000927
928 Constant *C = GVar->getInitializer();
929 const Type *Type = C->getType();
Duncan Sandsec4f97d2009-05-09 07:06:46 +0000930 unsigned Size = TD->getTypeAllocSize(Type);
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000931 unsigned Align = TD->getPreferredAlignmentLog(GVar);
932
Chris Lattnere6ad12f2009-07-31 18:48:30 +0000933 const MCSection *TheSection =
Chris Lattner2931fe42009-07-29 05:09:30 +0000934 getObjFileLowering().SectionForGlobal(GVar, Mang, TM);
Chris Lattner73266f92009-08-19 05:49:37 +0000935 OutStreamer.SwitchSection(TheSection);
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000936
Chris Lattnerdb727932009-08-04 05:35:56 +0000937 /// FIXME: Drive this off the section!
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000938 if (C->isNullValue() && /* FIXME: Verify correct */
939 !GVar->hasSection() &&
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000940 (GVar->hasLocalLinkage() || GVar->hasExternalLinkage() ||
Duncan Sands19d161f2009-03-07 15:45:40 +0000941 GVar->isWeakForLinker()) &&
Chris Lattner87bc69b2009-07-24 04:08:17 +0000942 // Don't put things that should go in the cstring section into "comm".
Chris Lattnerd8310522009-07-27 05:32:16 +0000943 !TheSection->getKind().isMergeableCString()) {
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000944 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
945
946 if (GVar->hasExternalLinkage()) {
947 O << "\t.globl " << name << '\n';
948 O << "\t.zerofill __DATA, __common, " << name << ", "
949 << Size << ", " << Align;
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000950 } else if (GVar->hasLocalLinkage()) {
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000951 O << MAI->getLCOMMDirective() << name << ',' << Size << ',' << Align;
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000952 } else if (!GVar->hasCommonLinkage()) {
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000953 O << "\t.globl " << name << '\n'
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000954 << MAI->getWeakDefDirective() << name << '\n';
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000955 EmitAlignment(Align, GVar);
Evan Cheng11db8142009-03-24 00:17:40 +0000956 O << name << ":";
957 if (VerboseAsm) {
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000958 O << "\t\t\t\t" << MAI->getCommentString() << " ";
Dan Gohman2aa282f2009-08-13 01:36:44 +0000959 WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
Evan Cheng11db8142009-03-24 00:17:40 +0000960 }
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000961 O << '\n';
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000962 EmitGlobalConstant(C);
963 return;
964 } else {
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000965 O << ".comm " << name << ',' << Size;
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000966 // Darwin 9 and above support aligned common data.
967 if (Subtarget.isDarwin9())
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000968 O << ',' << Align;
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000969 }
Evan Cheng11db8142009-03-24 00:17:40 +0000970 if (VerboseAsm) {
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000971 O << "\t\t" << MAI->getCommentString() << " '";
Dan Gohman2aa282f2009-08-13 01:36:44 +0000972 WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
Evan Cheng11db8142009-03-24 00:17:40 +0000973 O << "'";
974 }
975 O << '\n';
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000976 return;
977 }
978
979 switch (GVar->getLinkage()) {
Duncan Sands19d161f2009-03-07 15:45:40 +0000980 case GlobalValue::LinkOnceAnyLinkage:
981 case GlobalValue::LinkOnceODRLinkage:
982 case GlobalValue::WeakAnyLinkage:
983 case GlobalValue::WeakODRLinkage:
Duncan Sandsb95df792009-03-11 20:14:15 +0000984 case GlobalValue::CommonLinkage:
Dale Johannesenda551282009-08-24 01:03:42 +0000985 case GlobalValue::LinkerPrivateLinkage:
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000986 O << "\t.globl " << name << '\n'
987 << "\t.weak_definition " << name << '\n';
988 break;
989 case GlobalValue::AppendingLinkage:
990 // FIXME: appending linkage variables should go into a section of
991 // their name or something. For now, just emit them as external.
992 case GlobalValue::ExternalLinkage:
993 // If external or appending, declare as a global symbol
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000994 O << "\t.globl " << name << '\n';
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000995 // FALL THROUGH
996 case GlobalValue::InternalLinkage:
evancheng47ae8142009-01-25 06:32:01 +0000997 case GlobalValue::PrivateLinkage:
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000998 break;
999 default:
Edwin Törökbd448e32009-07-14 16:55:14 +00001000 llvm_unreachable("Unknown linkage type!");
Anton Korobeynikov248e9c52008-08-08 18:23:25 +00001001 }
1002
1003 EmitAlignment(Align, GVar);
Evan Cheng11db8142009-03-24 00:17:40 +00001004 O << name << ":";
1005 if (VerboseAsm) {
Chris Lattnera5ef4d32009-08-22 21:43:10 +00001006 O << "\t\t\t\t" << MAI->getCommentString() << " '";
Dan Gohman2aa282f2009-08-13 01:36:44 +00001007 WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
Evan Cheng11db8142009-03-24 00:17:40 +00001008 O << "'";
1009 }
1010 O << '\n';
Anton Korobeynikov248e9c52008-08-08 18:23:25 +00001011
Anton Korobeynikov248e9c52008-08-08 18:23:25 +00001012 EmitGlobalConstant(C);
1013 O << '\n';
1014}
1015
Anton Korobeynikov28f86d12008-08-08 18:22:59 +00001016bool PPCDarwinAsmPrinter::doFinalization(Module &M) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001017 const TargetData *TD = TM.getTargetData();
1018
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001019 bool isPPC64 = TD->getPointerSizeInBits() == 64;
1020
Chris Lattnerf4815552009-08-03 22:52:21 +00001021 // Darwin/PPC always uses mach-o.
1022 TargetLoweringObjectFileMachO &TLOFMacho =
1023 static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
1024
Chris Lattner72a676a2009-08-10 01:39:42 +00001025
1026 const MCSection *LSPSection = 0;
1027 if (!FnStubs.empty()) // .lazy_symbol_pointer
1028 LSPSection = TLOFMacho.getLazySymbolPointerSection();
1029
1030
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001031 // Output stubs for dynamically-linked functions
Chris Lattner189198f2009-07-15 00:55:58 +00001032 if (TM.getRelocationModel() == Reloc::PIC_ && !FnStubs.empty()) {
Chris Lattnerf4815552009-08-03 22:52:21 +00001033 const MCSection *StubSection =
Chris Lattner72a676a2009-08-10 01:39:42 +00001034 TLOFMacho.getMachOSection("__TEXT", "__picsymbolstub1",
1035 MCSectionMachO::S_SYMBOL_STUBS |
1036 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
1037 32, SectionKind::getText());
1038 for (StringMap<FnStubInfo>::iterator I = FnStubs.begin(), E = FnStubs.end();
Chris Lattner83cf1ec2009-07-15 01:14:44 +00001039 I != E; ++I) {
Chris Lattner73266f92009-08-19 05:49:37 +00001040 OutStreamer.SwitchSection(StubSection);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001041 EmitAlignment(4);
Chris Lattnerdc4cce62009-07-15 02:33:19 +00001042 const FnStubInfo &Info = I->second;
Chris Lattnerdc4cce62009-07-15 02:33:19 +00001043 O << Info.Stub << ":\n";
1044 O << "\t.indirect_symbol " << I->getKeyData() << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001045 O << "\tmflr r0\n";
Chris Lattner63e910f2009-07-15 02:56:53 +00001046 O << "\tbcl 20,31," << Info.AnonSymbol << '\n';
1047 O << Info.AnonSymbol << ":\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001048 O << "\tmflr r11\n";
Chris Lattner63e910f2009-07-15 02:56:53 +00001049 O << "\taddis r11,r11,ha16(" << Info.LazyPtr << "-" << Info.AnonSymbol;
Evan Chenga65854f2008-12-05 01:06:39 +00001050 O << ")\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001051 O << "\tmtlr r0\n";
Chris Lattner63e910f2009-07-15 02:56:53 +00001052 O << (isPPC64 ? "\tldu" : "\tlwzu") << " r12,lo16(";
1053 O << Info.LazyPtr << "-" << Info.AnonSymbol << ")(r11)\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001054 O << "\tmtctr r12\n";
1055 O << "\tbctr\n";
Chris Lattnerc0a7f1d2009-07-16 01:23:26 +00001056
Chris Lattner73266f92009-08-19 05:49:37 +00001057 OutStreamer.SwitchSection(LSPSection);
Chris Lattnerdc4cce62009-07-15 02:33:19 +00001058 O << Info.LazyPtr << ":\n";
1059 O << "\t.indirect_symbol " << I->getKeyData() << '\n';
Chris Lattnerbaa12da2009-07-15 02:36:21 +00001060 O << (isPPC64 ? "\t.quad" : "\t.long") << " dyld_stub_binding_helper\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001061 }
Chris Lattner189198f2009-07-15 00:55:58 +00001062 } else if (!FnStubs.empty()) {
Chris Lattner72a676a2009-08-10 01:39:42 +00001063 const MCSection *StubSection =
1064 TLOFMacho.getMachOSection("__TEXT","__symbol_stub1",
1065 MCSectionMachO::S_SYMBOL_STUBS |
1066 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
1067 16, SectionKind::getText());
Chris Lattnerf4815552009-08-03 22:52:21 +00001068
Chris Lattner9ea6e2a2009-07-15 02:28:57 +00001069 for (StringMap<FnStubInfo>::iterator I = FnStubs.begin(), E = FnStubs.end();
Chris Lattner83cf1ec2009-07-15 01:14:44 +00001070 I != E; ++I) {
Chris Lattner73266f92009-08-19 05:49:37 +00001071 OutStreamer.SwitchSection(StubSection);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001072 EmitAlignment(4);
Chris Lattnerdc4cce62009-07-15 02:33:19 +00001073 const FnStubInfo &Info = I->second;
1074 O << Info.Stub << ":\n";
1075 O << "\t.indirect_symbol " << I->getKeyData() << '\n';
1076 O << "\tlis r11,ha16(" << Info.LazyPtr << ")\n";
Chris Lattnerbaa12da2009-07-15 02:36:21 +00001077 O << (isPPC64 ? "\tldu" : "\tlwzu") << " r12,lo16(";
Chris Lattnerdc4cce62009-07-15 02:33:19 +00001078 O << Info.LazyPtr << ")(r11)\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001079 O << "\tmtctr r12\n";
1080 O << "\tbctr\n";
Chris Lattner73266f92009-08-19 05:49:37 +00001081 OutStreamer.SwitchSection(LSPSection);
Chris Lattnerdc4cce62009-07-15 02:33:19 +00001082 O << Info.LazyPtr << ":\n";
1083 O << "\t.indirect_symbol " << I->getKeyData() << '\n';
Chris Lattnerbaa12da2009-07-15 02:36:21 +00001084 O << (isPPC64 ? "\t.quad" : "\t.long") << " dyld_stub_binding_helper\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001085 }
1086 }
1087
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +00001088 O << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001089
Chris Lattnera5ef4d32009-08-22 21:43:10 +00001090 if (MAI->doesSupportExceptionHandling() && MMI) {
Dale Johannesenfb3ac732007-11-20 23:24:42 +00001091 // Add the (possibly multiple) personalities to the set of global values.
Dale Johannesen85535762008-04-02 00:25:04 +00001092 // Only referenced functions get into the Personalities list.
Chris Lattner2424eac2009-06-24 19:09:55 +00001093 const std::vector<Function *> &Personalities = MMI->getPersonalities();
Dale Johannesenfb3ac732007-11-20 23:24:42 +00001094 for (std::vector<Function *>::const_iterator I = Personalities.begin(),
Chris Lattner83cf1ec2009-07-15 01:14:44 +00001095 E = Personalities.end(); I != E; ++I) {
1096 if (*I)
1097 GVStubs[Mang->getMangledName(*I)] =
Chris Lattner65353d52009-07-15 01:16:38 +00001098 Mang->getMangledName(*I, "$non_lazy_ptr", true);
Chris Lattner83cf1ec2009-07-15 01:14:44 +00001099 }
Dale Johannesenfb3ac732007-11-20 23:24:42 +00001100 }
1101
Chris Lattnerf4815552009-08-03 22:52:21 +00001102 // Output macho stubs for external and common global variables.
Dan Gohman3f7d94b2007-10-03 19:26:29 +00001103 if (!GVStubs.empty()) {
Chris Lattner72a676a2009-08-10 01:39:42 +00001104 // Switch with ".non_lazy_symbol_pointer" directive.
Chris Lattner73266f92009-08-19 05:49:37 +00001105 OutStreamer.SwitchSection(TLOFMacho.getNonLazySymbolPointerSection());
Chris Lattner2d61eaa2009-08-10 17:58:51 +00001106 EmitAlignment(isPPC64 ? 3 : 2);
1107
Chris Lattner83cf1ec2009-07-15 01:14:44 +00001108 for (StringMap<std::string>::iterator I = GVStubs.begin(),
1109 E = GVStubs.end(); I != E; ++I) {
1110 O << I->second << ":\n";
1111 O << "\t.indirect_symbol " << I->getKeyData() << '\n';
1112 O << (isPPC64 ? "\t.quad\t0\n" : "\t.long\t0\n");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001113 }
1114 }
1115
Evan Chenga65854f2008-12-05 01:06:39 +00001116 if (!HiddenGVStubs.empty()) {
Chris Lattner73266f92009-08-19 05:49:37 +00001117 OutStreamer.SwitchSection(getObjFileLowering().getDataSection());
Chris Lattner83cf1ec2009-07-15 01:14:44 +00001118 EmitAlignment(isPPC64 ? 3 : 2);
1119 for (StringMap<std::string>::iterator I = HiddenGVStubs.begin(),
1120 E = HiddenGVStubs.end(); I != E; ++I) {
1121 O << I->second << ":\n";
1122 O << (isPPC64 ? "\t.quad\t" : "\t.long\t") << I->getKeyData() << '\n';
Evan Chenga65854f2008-12-05 01:06:39 +00001123 }
1124 }
1125
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001126 // Funny Darwin hack: This flag tells the linker that no global symbols
1127 // contain code that falls through to other global symbols (e.g. the obvious
1128 // implementation of multiple entry points). If this doesn't occur, the
1129 // linker can safely perform dead code stripping. Since LLVM never generates
1130 // code that does this, it is always safe to set.
Chris Lattnerfe284f72009-10-19 18:03:08 +00001131 OutStreamer.EmitAssemblerFlag(MCStreamer::SubsectionsViaSymbols);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001132
Dan Gohman4a558a32007-07-25 19:33:14 +00001133 return AsmPrinter::doFinalization(M);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001134}
1135
1136
1137
1138/// createPPCAsmPrinterPass - Returns a pass that prints the PPC assembly code
1139/// for a MachineFunction to the given output stream, in a format that the
1140/// Darwin assembler can deal with.
1141///
Daniel Dunbar4cb63652009-08-13 23:48:47 +00001142static AsmPrinter *createPPCAsmPrinterPass(formatted_raw_ostream &o,
1143 TargetMachine &tm,
Chris Lattner621c44d2009-08-22 20:48:53 +00001144 const MCAsmInfo *tai,
Daniel Dunbar4cb63652009-08-13 23:48:47 +00001145 bool verbose) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001146 const PPCSubtarget *Subtarget = &tm.getSubtarget<PPCSubtarget>();
1147
Chris Lattnerae982212009-07-21 18:38:57 +00001148 if (Subtarget->isDarwin())
Daniel Dunbaref5abb42009-08-13 19:38:51 +00001149 return new PPCDarwinAsmPrinter(o, tm, tai, verbose);
1150 return new PPCLinuxAsmPrinter(o, tm, tai, verbose);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001151}
Anton Korobeynikov01c0e9f2008-08-17 13:54:28 +00001152
Bob Wilsonebbc1c42009-06-23 23:59:40 +00001153// Force static initialization.
Daniel Dunbarfe5939f2009-07-15 20:24:03 +00001154extern "C" void LLVMInitializePowerPCAsmPrinter() {
Daniel Dunbarfe5939f2009-07-15 20:24:03 +00001155 TargetRegistry::RegisterAsmPrinter(ThePPC32Target, createPPCAsmPrinterPass);
Daniel Dunbarfe5939f2009-07-15 20:24:03 +00001156 TargetRegistry::RegisterAsmPrinter(ThePPC64Target, createPPCAsmPrinterPass);
1157}