blob: d505d381306dca722531d7b4fe33c23113e16999 [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 Lattner9bc87482010-01-13 19:00:57 +000035#include "llvm/MC/MCContext.h"
Chris Lattner7f1ac7f2009-08-10 18:15:01 +000036#include "llvm/MC/MCSectionMachO.h"
Chris Lattner73266f92009-08-19 05:49:37 +000037#include "llvm/MC/MCStreamer.h"
Chris Lattnerc6f802d2009-09-13 17:14:04 +000038#include "llvm/MC/MCSymbol.h"
Chris Lattnere6ad12f2009-07-31 18:48:30 +000039#include "llvm/Target/TargetLoweringObjectFile.h"
40#include "llvm/Target/TargetRegisterInfo.h"
41#include "llvm/Target/TargetInstrInfo.h"
42#include "llvm/Target/TargetOptions.h"
43#include "llvm/Target/TargetRegistry.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000044#include "llvm/Support/Mangler.h"
45#include "llvm/Support/MathExtras.h"
46#include "llvm/Support/CommandLine.h"
47#include "llvm/Support/Debug.h"
Edwin Török4d9756a2009-07-08 20:53:28 +000048#include "llvm/Support/ErrorHandling.h"
David Greene302008d2009-07-14 20:18:05 +000049#include "llvm/Support/FormattedStream.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000050#include "llvm/ADT/Statistic.h"
51#include "llvm/ADT/StringExtras.h"
Evan Chenga65854f2008-12-05 01:06:39 +000052#include "llvm/ADT/StringSet.h"
Chris Lattnera38b2872010-01-13 06:38:18 +000053#include "llvm/ADT/SmallString.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000054using namespace llvm;
55
56STATISTIC(EmittedInsts, "Number of machine instrs printed");
57
58namespace {
Nick Lewycky492d06e2009-10-25 06:33:48 +000059 class PPCAsmPrinter : public AsmPrinter {
Bill Wendling4f405312009-02-24 08:30:20 +000060 protected:
Chris Lattner9ea6e2a2009-07-15 02:28:57 +000061 struct FnStubInfo {
Chris Lattner1774fd32010-01-13 19:13:16 +000062 MCSymbol *Stub, *LazyPtr, *AnonSymbol;
Chris Lattner9ea6e2a2009-07-15 02:28:57 +000063
Chris Lattner9bc87482010-01-13 19:00:57 +000064 FnStubInfo() {
Chris Lattner1774fd32010-01-13 19:13:16 +000065 Stub = LazyPtr = AnonSymbol = 0;
Chris Lattner9bc87482010-01-13 19:00:57 +000066 }
Chris Lattner9ea6e2a2009-07-15 02:28:57 +000067
Chris Lattner1774fd32010-01-13 19:13:16 +000068 void Init(const GlobalValue *GV, Mangler *Mang, MCContext &Ctx) {
Chris Lattner9ea6e2a2009-07-15 02:28:57 +000069 // Already initialized.
Chris Lattner1774fd32010-01-13 19:13:16 +000070 if (Stub != 0) return;
Chris Lattner53087e52010-01-13 19:05:36 +000071
72 // Get the names.
Chris Lattner1774fd32010-01-13 19:13:16 +000073 SmallString<128> TmpStr;
74 Mang->getNameWithPrefix(TmpStr, GV, true);
75 MakeSymbols(TmpStr, Ctx);
Chris Lattner9ea6e2a2009-07-15 02:28:57 +000076 }
77
Chris Lattner9bc87482010-01-13 19:00:57 +000078 void Init(StringRef GVName, Mangler *Mang, MCContext &Ctx) {
Chris Lattner1774fd32010-01-13 19:13:16 +000079 assert(!GVName.empty() && "external symbol name shouldn't be empty");
80 if (Stub != 0) return; // Already initialized.
Chris Lattnerf80743e2010-01-13 07:56:59 +000081 // Get the names for the external symbol name.
Chris Lattnera38b2872010-01-13 06:38:18 +000082 SmallString<128> TmpStr;
Chris Lattner1774fd32010-01-13 19:13:16 +000083 Mang->getNameWithPrefix(TmpStr, GVName, Mangler::Private);
84 MakeSymbols(TmpStr, Ctx);
85 }
86
87 void MakeSymbols(SmallString<128> &TmpStr, MCContext &Ctx) {
88 TmpStr += "$stub";
89 Stub = Ctx.GetOrCreateSymbol(TmpStr.str());
Chris Lattner53087e52010-01-13 19:05:36 +000090 TmpStr.erase(TmpStr.end()-5, TmpStr.end()); // Remove $stub
91
92 TmpStr += "$lazy_ptr";
Chris Lattner1774fd32010-01-13 19:13:16 +000093 LazyPtr = Ctx.GetOrCreateSymbol(TmpStr.str());
Chris Lattner53087e52010-01-13 19:05:36 +000094 TmpStr.erase(TmpStr.end()-9, TmpStr.end()); // Remove $lazy_ptr
Chris Lattnera38b2872010-01-13 06:38:18 +000095
Chris Lattner53087e52010-01-13 19:05:36 +000096 TmpStr += "$stub$tmp";
Chris Lattner1774fd32010-01-13 19:13:16 +000097 AnonSymbol = Ctx.GetOrCreateSymbol(TmpStr.str());
Chris Lattner9ea6e2a2009-07-15 02:28:57 +000098 }
99 };
100
101 StringMap<FnStubInfo> FnStubs;
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000102 StringMap<std::string> GVStubs, HiddenGVStubs, TOC;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000103 const PPCSubtarget &Subtarget;
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000104 uint64_t LabelID;
Bill Wendling4f405312009-02-24 08:30:20 +0000105 public:
David Greene302008d2009-07-14 20:18:05 +0000106 explicit PPCAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
Chris Lattner621c44d2009-08-22 20:48:53 +0000107 const MCAsmInfo *T, bool V)
Daniel Dunbarb10d2222009-07-01 01:48:54 +0000108 : AsmPrinter(O, TM, T, V),
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000109 Subtarget(TM.getSubtarget<PPCSubtarget>()), LabelID(0) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000110
111 virtual const char *getPassName() const {
112 return "PowerPC Assembly Printer";
113 }
114
115 PPCTargetMachine &getTM() {
116 return static_cast<PPCTargetMachine&>(TM);
117 }
118
119 unsigned enumRegToMachineReg(unsigned enumReg) {
120 switch (enumReg) {
Edwin Törökbd448e32009-07-14 16:55:14 +0000121 default: llvm_unreachable("Unhandled register!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000122 case PPC::CR0: return 0;
123 case PPC::CR1: return 1;
124 case PPC::CR2: return 2;
125 case PPC::CR3: return 3;
126 case PPC::CR4: return 4;
127 case PPC::CR5: return 5;
128 case PPC::CR6: return 6;
129 case PPC::CR7: return 7;
130 }
Edwin Törökbd448e32009-07-14 16:55:14 +0000131 llvm_unreachable(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000132 }
133
134 /// printInstruction - This method is automatically generated by tablegen
135 /// from the instruction set description. This method returns true if the
136 /// machine instruction was sufficiently described to print it, otherwise it
137 /// returns false.
Chris Lattnerddb259a2009-08-08 01:32:19 +0000138 void printInstruction(const MachineInstr *MI);
Chris Lattner213703c2009-09-13 20:19:22 +0000139 static const char *getRegisterName(unsigned RegNo);
Chris Lattner92221692009-09-13 20:08:00 +0000140
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000141
142 void printMachineInstruction(const MachineInstr *MI);
143 void printOp(const MachineOperand &MO);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000144
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000145 /// stripRegisterPrefix - This method strips the character prefix from a
146 /// register name so that only the number is left. Used by for linux asm.
147 const char *stripRegisterPrefix(const char *RegName) {
148 switch (RegName[0]) {
149 case 'r':
150 case 'f':
151 case 'v': return RegName + 1;
152 case 'c': if (RegName[1] == 'r') return RegName + 2;
153 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000154
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000155 return RegName;
156 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000157
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000158 /// printRegister - Print register according to target requirements.
159 ///
160 void printRegister(const MachineOperand &MO, bool R0AsZero) {
161 unsigned RegNo = MO.getReg();
Dan Gohman1e57df32008-02-10 18:45:23 +0000162 assert(TargetRegisterInfo::isPhysicalRegister(RegNo) && "Not physreg??");
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000163
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000164 // If we should use 0 for R0.
165 if (R0AsZero && RegNo == PPC::R0) {
166 O << "0";
167 return;
168 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000169
Chris Lattnerf0a25de2009-09-13 20:31:40 +0000170 const char *RegName = getRegisterName(RegNo);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000171 // Linux assembler (Others?) does not take register mnemonics.
172 // FIXME - What about special registers used in mfspr/mtspr?
173 if (!Subtarget.isDarwin()) RegName = stripRegisterPrefix(RegName);
174 O << RegName;
175 }
176
177 void printOperand(const MachineInstr *MI, unsigned OpNo) {
178 const MachineOperand &MO = MI->getOperand(OpNo);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000179 if (MO.isReg()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000180 printRegister(MO, false);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000181 } else if (MO.isImm()) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000182 O << MO.getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000183 } else {
184 printOp(MO);
185 }
186 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000187
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000188 bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
189 unsigned AsmVariant, const char *ExtraCode);
190 bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
191 unsigned AsmVariant, const char *ExtraCode);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000192
193
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000194 void printS5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000195 char value = MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000196 value = (value << (32-5)) >> (32-5);
197 O << (int)value;
198 }
199 void printU5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000200 unsigned char value = MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000201 assert(value <= 31 && "Invalid u5imm argument!");
202 O << (unsigned int)value;
203 }
204 void printU6ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000205 unsigned char value = MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000206 assert(value <= 63 && "Invalid u6imm argument!");
207 O << (unsigned int)value;
208 }
209 void printS16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000210 O << (short)MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000211 }
212 void printU16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000213 O << (unsigned short)MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000214 }
215 void printS16X4ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000216 if (MI->getOperand(OpNo).isImm()) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000217 O << (short)(MI->getOperand(OpNo).getImm()*4);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000218 } else {
219 O << "lo16(";
220 printOp(MI->getOperand(OpNo));
221 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng477013c2007-10-14 05:57:21 +0000222 O << "-\"L" << getFunctionNumber() << "$pb\")";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000223 else
224 O << ')';
225 }
226 }
227 void printBranchOperand(const MachineInstr *MI, unsigned OpNo) {
228 // Branches can take an immediate operand. This is used by the branch
229 // selection pass to print $+8, an eight byte displacement from the PC.
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000230 if (MI->getOperand(OpNo).isImm()) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000231 O << "$+" << MI->getOperand(OpNo).getImm()*4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000232 } else {
233 printOp(MI->getOperand(OpNo));
234 }
235 }
236 void printCallOperand(const MachineInstr *MI, unsigned OpNo) {
237 const MachineOperand &MO = MI->getOperand(OpNo);
238 if (TM.getRelocationModel() != Reloc::Static) {
239 if (MO.getType() == MachineOperand::MO_GlobalAddress) {
240 GlobalValue *GV = MO.getGlobal();
Chris Lattner0fd4feb2009-07-02 16:08:53 +0000241 if (GV->isDeclaration() || GV->isWeakForLinker()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000242 // Dynamically-resolved functions need a stub for the function.
Chris Lattner9ea6e2a2009-07-15 02:28:57 +0000243 FnStubInfo &FnInfo = FnStubs[Mang->getMangledName(GV)];
Chris Lattner1774fd32010-01-13 19:13:16 +0000244 FnInfo.Init(GV, Mang, OutContext);
245 FnInfo.Stub->print(O, MAI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000246 return;
247 }
248 }
249 if (MO.getType() == MachineOperand::MO_ExternalSymbol) {
Chris Lattnera38b2872010-01-13 06:38:18 +0000250 SmallString<128> MangledName;
Chris Lattnerf80743e2010-01-13 07:56:59 +0000251 Mang->getNameWithPrefix(MangledName, MO.getSymbolName());
Chris Lattnera38b2872010-01-13 06:38:18 +0000252 FnStubInfo &FnInfo = FnStubs[MangledName.str()];
Chris Lattner9bc87482010-01-13 19:00:57 +0000253 FnInfo.Init(MO.getSymbolName(), Mang, OutContext);
Chris Lattner1774fd32010-01-13 19:13:16 +0000254 FnInfo.Stub->print(O, MAI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000255 return;
256 }
257 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000258
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000259 printOp(MI->getOperand(OpNo));
260 }
261 void printAbsAddrOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000262 O << (int)MI->getOperand(OpNo).getImm()*4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000263 }
264 void printPICLabel(const MachineInstr *MI, unsigned OpNo) {
Evan Cheng477013c2007-10-14 05:57:21 +0000265 O << "\"L" << getFunctionNumber() << "$pb\"\n";
266 O << "\"L" << getFunctionNumber() << "$pb\":";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000267 }
268 void printSymbolHi(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000269 if (MI->getOperand(OpNo).isImm()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000270 printS16ImmOperand(MI, OpNo);
271 } else {
272 if (Subtarget.isDarwin()) O << "ha16(";
273 printOp(MI->getOperand(OpNo));
274 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng477013c2007-10-14 05:57:21 +0000275 O << "-\"L" << getFunctionNumber() << "$pb\"";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000276 if (Subtarget.isDarwin())
277 O << ')';
278 else
279 O << "@ha";
280 }
281 }
282 void printSymbolLo(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000283 if (MI->getOperand(OpNo).isImm()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000284 printS16ImmOperand(MI, OpNo);
285 } else {
286 if (Subtarget.isDarwin()) O << "lo16(";
287 printOp(MI->getOperand(OpNo));
288 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng477013c2007-10-14 05:57:21 +0000289 O << "-\"L" << getFunctionNumber() << "$pb\"";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000290 if (Subtarget.isDarwin())
291 O << ')';
292 else
293 O << "@l";
294 }
295 }
296 void printcrbitm(const MachineInstr *MI, unsigned OpNo) {
297 unsigned CCReg = MI->getOperand(OpNo).getReg();
298 unsigned RegNo = enumRegToMachineReg(CCReg);
299 O << (0x80 >> RegNo);
300 }
301 // The new addressing mode printers.
302 void printMemRegImm(const MachineInstr *MI, unsigned OpNo) {
303 printSymbolLo(MI, OpNo);
304 O << '(';
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000305 if (MI->getOperand(OpNo+1).isReg() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000306 MI->getOperand(OpNo+1).getReg() == PPC::R0)
307 O << "0";
308 else
309 printOperand(MI, OpNo+1);
310 O << ')';
311 }
312 void printMemRegImmShifted(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000313 if (MI->getOperand(OpNo).isImm())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000314 printS16X4ImmOperand(MI, OpNo);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000315 else
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000316 printSymbolLo(MI, OpNo);
317 O << '(';
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000318 if (MI->getOperand(OpNo+1).isReg() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000319 MI->getOperand(OpNo+1).getReg() == PPC::R0)
320 O << "0";
321 else
322 printOperand(MI, OpNo+1);
323 O << ')';
324 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000325
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000326 void printMemRegReg(const MachineInstr *MI, unsigned OpNo) {
327 // When used as the base register, r0 reads constant zero rather than
328 // the value contained in the register. For this reason, the darwin
329 // assembler requires that we print r0 as 0 (no r) when used as the base.
330 const MachineOperand &MO = MI->getOperand(OpNo);
331 printRegister(MO, true);
332 O << ", ";
333 printOperand(MI, OpNo+1);
334 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000335
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000336 void printTOCEntryLabel(const MachineInstr *MI, unsigned OpNo) {
337 const MachineOperand &MO = MI->getOperand(OpNo);
338
339 assert(MO.getType() == MachineOperand::MO_GlobalAddress);
340
341 GlobalValue *GV = MO.getGlobal();
342
343 std::string Name = Mang->getMangledName(GV);
344
345 // Map symbol -> label of TOC entry.
346 if (TOC.count(Name) == 0) {
347 std::string Label;
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000348 Label += MAI->getPrivateGlobalPrefix();
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000349 Label += "C";
350 Label += utostr(LabelID++);
351
352 TOC[Name] = Label;
353 }
354
355 O << TOC[Name] << "@toc";
356 }
357
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000358 void printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000359 const char *Modifier);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000360
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000361 virtual bool runOnMachineFunction(MachineFunction &F) = 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000362 };
363
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000364 /// PPCLinuxAsmPrinter - PowerPC assembly printer, customized for Linux
Nick Lewycky492d06e2009-10-25 06:33:48 +0000365 class PPCLinuxAsmPrinter : public PPCAsmPrinter {
Bill Wendling4f405312009-02-24 08:30:20 +0000366 public:
Daniel Dunbarfe5939f2009-07-15 20:24:03 +0000367 explicit PPCLinuxAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
Chris Lattner621c44d2009-08-22 20:48:53 +0000368 const MCAsmInfo *T, bool V)
Daniel Dunbarb10d2222009-07-01 01:48:54 +0000369 : PPCAsmPrinter(O, TM, T, V){}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000370
371 virtual const char *getPassName() const {
372 return "Linux PPC Assembly Printer";
373 }
374
375 bool runOnMachineFunction(MachineFunction &F);
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000376 bool doFinalization(Module &M);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000377
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000378 void getAnalysisUsage(AnalysisUsage &AU) const {
379 AU.setPreservesAll();
380 AU.addRequired<MachineModuleInfo>();
Devang Patelaa1e8432009-01-08 23:40:34 +0000381 AU.addRequired<DwarfWriter>();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000382 PPCAsmPrinter::getAnalysisUsage(AU);
383 }
384
Chris Lattnerae982212009-07-21 18:38:57 +0000385 void PrintGlobalVariable(const GlobalVariable *GVar);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000386 };
387
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000388 /// PPCDarwinAsmPrinter - PowerPC assembly printer, customized for Darwin/Mac
389 /// OS X
Nick Lewycky492d06e2009-10-25 06:33:48 +0000390 class PPCDarwinAsmPrinter : public PPCAsmPrinter {
David Greene302008d2009-07-14 20:18:05 +0000391 formatted_raw_ostream &OS;
Bill Wendling4f405312009-02-24 08:30:20 +0000392 public:
Daniel Dunbarfe5939f2009-07-15 20:24:03 +0000393 explicit PPCDarwinAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
Chris Lattner621c44d2009-08-22 20:48:53 +0000394 const MCAsmInfo *T, bool V)
Daniel Dunbarb10d2222009-07-01 01:48:54 +0000395 : PPCAsmPrinter(O, TM, T, V), OS(O) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000396
397 virtual const char *getPassName() const {
398 return "Darwin PPC Assembly Printer";
399 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000400
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000401 bool runOnMachineFunction(MachineFunction &F);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000402 bool doFinalization(Module &M);
Bob Wilsonb5f835e2009-09-30 22:06:26 +0000403 void EmitStartOfAsmFile(Module &M);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000404
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000405 void getAnalysisUsage(AnalysisUsage &AU) const {
406 AU.setPreservesAll();
407 AU.addRequired<MachineModuleInfo>();
Devang Patelaa1e8432009-01-08 23:40:34 +0000408 AU.addRequired<DwarfWriter>();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000409 PPCAsmPrinter::getAnalysisUsage(AU);
410 }
411
Chris Lattnerae982212009-07-21 18:38:57 +0000412 void PrintGlobalVariable(const GlobalVariable *GVar);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000413 };
414} // end of anonymous namespace
415
416// Include the auto-generated portion of the assembly writer
417#include "PPCGenAsmWriter.inc"
418
419void PPCAsmPrinter::printOp(const MachineOperand &MO) {
420 switch (MO.getType()) {
421 case MachineOperand::MO_Immediate:
Edwin Törökbd448e32009-07-14 16:55:14 +0000422 llvm_unreachable("printOp() does not handle immediate values");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000423
424 case MachineOperand::MO_MachineBasicBlock:
Chris Lattnerc6f802d2009-09-13 17:14:04 +0000425 GetMBBSymbol(MO.getMBB()->getNumber())->print(O, MAI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000426 return;
427 case MachineOperand::MO_JumpTableIndex:
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000428 O << MAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
Chris Lattner6017d482007-12-30 23:10:15 +0000429 << '_' << MO.getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000430 // FIXME: PIC relocation model
431 return;
432 case MachineOperand::MO_ConstantPoolIndex:
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000433 O << MAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber()
Chris Lattner6017d482007-12-30 23:10:15 +0000434 << '_' << MO.getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000435 return;
Bob Wilsone8cbca92009-11-04 21:31:18 +0000436 case MachineOperand::MO_BlockAddress:
437 GetBlockAddressSymbol(MO.getBlockAddress())->print(O, MAI);
438 return;
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000439 case MachineOperand::MO_ExternalSymbol: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000440 // Computing the address of an external symbol, not calling it.
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000441 std::string Name(MAI->getGlobalPrefix());
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000442 Name += MO.getSymbolName();
443
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000444 if (TM.getRelocationModel() != Reloc::Static) {
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000445 GVStubs[Name] = Name+"$non_lazy_ptr";
446 Name += "$non_lazy_ptr";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000447 }
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000448 O << Name;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000449 return;
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000450 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000451 case MachineOperand::MO_GlobalAddress: {
452 // Computing the address of a global symbol, not calling it.
453 GlobalValue *GV = MO.getGlobal();
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000454 std::string Name;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000455
456 // External or weakly linked global variables need non-lazily-resolved stubs
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000457 if (TM.getRelocationModel() != Reloc::Static &&
458 (GV->isDeclaration() || GV->isWeakForLinker())) {
459 if (!GV->hasHiddenVisibility()) {
460 Name = Mang->getMangledName(GV, "$non_lazy_ptr", true);
461 GVStubs[Mang->getMangledName(GV)] = Name;
462 } else if (GV->isDeclaration() || GV->hasCommonLinkage() ||
463 GV->hasAvailableExternallyLinkage()) {
464 Name = Mang->getMangledName(GV, "$non_lazy_ptr", true);
465 HiddenGVStubs[Mang->getMangledName(GV)] = Name;
466 } else {
467 Name = Mang->getMangledName(GV);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000468 }
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;
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000473
Anton Korobeynikov440f23d2008-11-22 16:15:34 +0000474 printOffset(MO.getOffset());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000475 return;
476 }
477
478 default:
479 O << "<unknown operand type: " << MO.getType() << ">";
480 return;
481 }
482}
483
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000484/// PrintAsmOperand - Print out an operand for an inline asm expression.
485///
486bool PPCAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000487 unsigned AsmVariant,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000488 const char *ExtraCode) {
489 // Does this asm operand have a single letter operand modifier?
490 if (ExtraCode && ExtraCode[0]) {
491 if (ExtraCode[1] != 0) return true; // Unknown modifier.
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000492
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000493 switch (ExtraCode[0]) {
494 default: return true; // Unknown modifier.
495 case 'c': // Don't print "$" before a global var name or constant.
496 // PPC never has a prefix.
497 printOperand(MI, OpNo);
498 return false;
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000499 case 'L': // Write second word of DImode reference.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000500 // Verify that this operand has two consecutive registers.
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000501 if (!MI->getOperand(OpNo).isReg() ||
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000502 OpNo+1 == MI->getNumOperands() ||
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000503 !MI->getOperand(OpNo+1).isReg())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000504 return true;
505 ++OpNo; // Return the high-part.
506 break;
507 case 'I':
508 // Write 'i' if an integer constant, otherwise nothing. Used to print
509 // addi vs add, etc.
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000510 if (MI->getOperand(OpNo).isImm())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000511 O << "i";
512 return false;
513 }
514 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000515
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000516 printOperand(MI, OpNo);
517 return false;
518}
519
Dale Johannesen0a42b9662009-08-18 00:18:39 +0000520// At the moment, all inline asm memory operands are a single register.
521// In any case, the output of this routine should always be just one
522// assembler operand.
523
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000524bool PPCAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000525 unsigned AsmVariant,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000526 const char *ExtraCode) {
527 if (ExtraCode && ExtraCode[0])
528 return true; // Unknown modifier.
Dale Johannesen0a42b9662009-08-18 00:18:39 +0000529 assert (MI->getOperand(OpNo).isReg());
Dale Johannesen5e699502009-08-26 18:10:32 +0000530 O << "0(";
Dale Johannesen0a42b9662009-08-18 00:18:39 +0000531 printOperand(MI, OpNo);
Dale Johannesen5e699502009-08-26 18:10:32 +0000532 O << ")";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000533 return false;
534}
535
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000536void PPCAsmPrinter::printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000537 const char *Modifier) {
538 assert(Modifier && "Must specify 'cc' or 'reg' as predicate op modifier!");
539 unsigned Code = MI->getOperand(OpNo).getImm();
540 if (!strcmp(Modifier, "cc")) {
541 switch ((PPC::Predicate)Code) {
542 case PPC::PRED_ALWAYS: return; // Don't print anything for always.
543 case PPC::PRED_LT: O << "lt"; return;
544 case PPC::PRED_LE: O << "le"; return;
545 case PPC::PRED_EQ: O << "eq"; return;
546 case PPC::PRED_GE: O << "ge"; return;
547 case PPC::PRED_GT: O << "gt"; return;
548 case PPC::PRED_NE: O << "ne"; return;
549 case PPC::PRED_UN: O << "un"; return;
550 case PPC::PRED_NU: O << "nu"; return;
551 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000552
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000553 } else {
554 assert(!strcmp(Modifier, "reg") &&
555 "Need to specify 'cc' or 'reg' as predicate op modifier!");
556 // Don't print the register for 'always'.
557 if (Code == PPC::PRED_ALWAYS) return;
558 printOperand(MI, OpNo+1);
559 }
560}
561
562
563/// printMachineInstruction -- Print out a single PowerPC MI in Darwin syntax to
564/// the current output stream.
565///
566void PPCAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
567 ++EmittedInsts;
Chris Lattnere34788c2009-09-09 20:34:59 +0000568
Devang Patel5450fc12009-10-06 02:19:11 +0000569 processDebugLoc(MI, true);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000570
571 // Check for slwi/srwi mnemonics.
Dale Johannesen760acc02010-01-06 02:20:18 +0000572 bool useSubstituteMnemonic = false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000573 if (MI->getOpcode() == PPC::RLWINM) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000574 unsigned char SH = MI->getOperand(2).getImm();
575 unsigned char MB = MI->getOperand(3).getImm();
576 unsigned char ME = MI->getOperand(4).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000577 if (SH <= 31 && MB == 0 && ME == (31-SH)) {
Dale Johannesen760acc02010-01-06 02:20:18 +0000578 O << "\tslwi "; useSubstituteMnemonic = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000579 }
580 if (SH <= 31 && MB == (32-SH) && ME == 31) {
Dale Johannesen760acc02010-01-06 02:20:18 +0000581 O << "\tsrwi "; useSubstituteMnemonic = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000582 SH = 32-SH;
583 }
Dale Johannesen760acc02010-01-06 02:20:18 +0000584 if (useSubstituteMnemonic) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000585 printOperand(MI, 0);
586 O << ", ";
587 printOperand(MI, 1);
Dale Johannesen760acc02010-01-06 02:20:18 +0000588 O << ", " << (unsigned int)SH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000589 }
590 } else if (MI->getOpcode() == PPC::OR || MI->getOpcode() == PPC::OR8) {
591 if (MI->getOperand(1).getReg() == MI->getOperand(2).getReg()) {
Dale Johannesen760acc02010-01-06 02:20:18 +0000592 useSubstituteMnemonic = true;
Nate Begemanbd5cdf12008-02-05 08:49:09 +0000593 O << "\tmr ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000594 printOperand(MI, 0);
595 O << ", ";
596 printOperand(MI, 1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000597 }
598 } else if (MI->getOpcode() == PPC::RLDICR) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000599 unsigned char SH = MI->getOperand(2).getImm();
600 unsigned char ME = MI->getOperand(3).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000601 // rldicr RA, RS, SH, 63-SH == sldi RA, RS, SH
602 if (63-SH == ME) {
Dale Johannesen760acc02010-01-06 02:20:18 +0000603 useSubstituteMnemonic = true;
Nate Begemanbd5cdf12008-02-05 08:49:09 +0000604 O << "\tsldi ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000605 printOperand(MI, 0);
606 O << ", ";
607 printOperand(MI, 1);
Dale Johannesen760acc02010-01-06 02:20:18 +0000608 O << ", " << (unsigned int)SH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000609 }
610 }
611
Dale Johannesen760acc02010-01-06 02:20:18 +0000612 if (!useSubstituteMnemonic)
613 printInstruction(MI);
614
David Greeneca9b04b2009-11-13 21:34:57 +0000615 if (VerboseAsm)
Chris Lattner32d4cc72009-09-09 23:14:36 +0000616 EmitComments(*MI);
617 O << '\n';
Devang Patel5450fc12009-10-06 02:19:11 +0000618
619 processDebugLoc(MI, false);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000620}
621
622/// runOnMachineFunction - This uses the printMachineInstruction()
623/// method to print assembly for each instruction.
624///
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000625bool PPCLinuxAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Bill Wendling4f405312009-02-24 08:30:20 +0000626 this->MF = &MF;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000627
628 SetupMachineFunction(MF);
629 O << "\n\n";
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000630
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000631 // Print out constants referenced by the function
632 EmitConstantPool(MF.getConstantPool());
633
634 // Print out labels for the function.
635 const Function *F = MF.getFunction();
Chris Lattner73266f92009-08-19 05:49:37 +0000636 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang, TM));
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000637
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000638 switch (F->getLinkage()) {
Edwin Törökbd448e32009-07-14 16:55:14 +0000639 default: llvm_unreachable("Unknown linkage type!");
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000640 case Function::PrivateLinkage:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000641 case Function::InternalLinkage: // Symbols default to internal.
642 break;
643 case Function::ExternalLinkage:
644 O << "\t.global\t" << CurrentFnName << '\n'
645 << "\t.type\t" << CurrentFnName << ", @function\n";
646 break;
Dale Johannesenda551282009-08-24 01:03:42 +0000647 case Function::LinkerPrivateLinkage:
Duncan Sands19d161f2009-03-07 15:45:40 +0000648 case Function::WeakAnyLinkage:
649 case Function::WeakODRLinkage:
650 case Function::LinkOnceAnyLinkage:
651 case Function::LinkOnceODRLinkage:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000652 O << "\t.global\t" << CurrentFnName << '\n';
653 O << "\t.weak\t" << CurrentFnName << '\n';
654 break;
655 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000656
Anton Korobeynikov78d69aa2008-08-08 18:25:07 +0000657 printVisibility(CurrentFnName, F->getVisibility());
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000658
Bill Wendling25a8ae32009-06-30 22:38:32 +0000659 EmitAlignment(MF.getAlignment(), F);
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000660
661 if (Subtarget.isPPC64()) {
662 // Emit an official procedure descriptor.
663 // FIXME 64-bit SVR4: Use MCSection here?
664 O << "\t.section\t\".opd\",\"aw\"\n";
665 O << "\t.align 3\n";
666 O << CurrentFnName << ":\n";
667 O << "\t.quad .L." << CurrentFnName << ",.TOC.@tocbase\n";
668 O << "\t.previous\n";
669 O << ".L." << CurrentFnName << ":\n";
670 } else {
671 O << CurrentFnName << ":\n";
672 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000673
674 // Emit pre-function debug information.
Devang Patelaa1e8432009-01-08 23:40:34 +0000675 DW->BeginFunction(&MF);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000676
677 // Print out code for the function.
678 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
679 I != E; ++I) {
680 // Print a label for the basic block.
681 if (I != MF.begin()) {
Chris Lattner2faa4ef2009-09-13 18:25:37 +0000682 EmitBasicBlockStart(I);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000683 }
684 for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
685 II != E; ++II) {
686 // Print the assembly for the instruction.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000687 printMachineInstruction(II);
688 }
689 }
690
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000691 O << "\t.size\t" << CurrentFnName << ",.-" << CurrentFnName << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000692
Chris Lattner73266f92009-08-19 05:49:37 +0000693 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang, TM));
Dale Johannesendd9e1c92008-12-03 19:33:10 +0000694
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000695 // Emit post-function debug information.
Devang Patelaa1e8432009-01-08 23:40:34 +0000696 DW->EndFunction(&MF);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000697
Bill Wendling6fb58e12009-11-09 21:20:14 +0000698 // Print out jump tables referenced by the function.
699 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
700
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000701 // We didn't modify anything.
702 return false;
703}
704
Chris Lattnerae982212009-07-21 18:38:57 +0000705void PPCLinuxAsmPrinter::PrintGlobalVariable(const GlobalVariable *GVar) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000706 const TargetData *TD = TM.getTargetData();
707
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000708 if (!GVar->hasInitializer())
709 return; // External global require no code
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000710
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000711 // Check to see if this is a special global used by LLVM, if so, emit it.
712 if (EmitSpecialLLVMGlobal(GVar))
713 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000714
Chris Lattnerb3cdde62009-07-14 18:17:16 +0000715 std::string name = Mang->getMangledName(GVar);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000716
Anton Korobeynikov78d69aa2008-08-08 18:25:07 +0000717 printVisibility(name, GVar->getVisibility());
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000718
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000719 Constant *C = GVar->getInitializer();
720 const Type *Type = C->getType();
Duncan Sandsec4f97d2009-05-09 07:06:46 +0000721 unsigned Size = TD->getTypeAllocSize(Type);
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000722 unsigned Align = TD->getPreferredAlignmentLog(GVar);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000723
Chris Lattner73266f92009-08-19 05:49:37 +0000724 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(GVar, Mang,
725 TM));
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000726
727 if (C->isNullValue() && /* FIXME: Verify correct */
728 !GVar->hasSection() &&
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000729 (GVar->hasLocalLinkage() || GVar->hasExternalLinkage() ||
Duncan Sands19d161f2009-03-07 15:45:40 +0000730 GVar->isWeakForLinker())) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000731 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000732
733 if (GVar->hasExternalLinkage()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000734 O << "\t.global " << name << '\n';
735 O << "\t.type " << name << ", @object\n";
Nick Lewycky3246a9c2007-07-25 03:48:45 +0000736 O << name << ":\n";
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000737 O << "\t.zero " << Size << '\n';
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000738 } else if (GVar->hasLocalLinkage()) {
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000739 O << MAI->getLCOMMDirective() << name << ',' << Size;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000740 } else {
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000741 O << ".comm " << name << ',' << Size;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000742 }
Evan Cheng11db8142009-03-24 00:17:40 +0000743 if (VerboseAsm) {
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000744 O << "\t\t" << MAI->getCommentString() << " '";
Dan Gohman2aa282f2009-08-13 01:36:44 +0000745 WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
Evan Cheng11db8142009-03-24 00:17:40 +0000746 O << "'";
747 }
748 O << '\n';
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000749 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000750 }
751
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000752 switch (GVar->getLinkage()) {
Duncan Sands19d161f2009-03-07 15:45:40 +0000753 case GlobalValue::LinkOnceAnyLinkage:
754 case GlobalValue::LinkOnceODRLinkage:
755 case GlobalValue::WeakAnyLinkage:
756 case GlobalValue::WeakODRLinkage:
Duncan Sandsb95df792009-03-11 20:14:15 +0000757 case GlobalValue::CommonLinkage:
Dale Johannesenda551282009-08-24 01:03:42 +0000758 case GlobalValue::LinkerPrivateLinkage:
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000759 O << "\t.global " << name << '\n'
760 << "\t.type " << name << ", @object\n"
761 << "\t.weak " << name << '\n';
762 break;
763 case GlobalValue::AppendingLinkage:
764 // FIXME: appending linkage variables should go into a section of
765 // their name or something. For now, just emit them as external.
766 case GlobalValue::ExternalLinkage:
767 // If external or appending, declare as a global symbol
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000768 O << "\t.global " << name << '\n'
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000769 << "\t.type " << name << ", @object\n";
770 // FALL THROUGH
771 case GlobalValue::InternalLinkage:
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000772 case GlobalValue::PrivateLinkage:
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000773 break;
774 default:
Edwin Törökbd448e32009-07-14 16:55:14 +0000775 llvm_unreachable("Unknown linkage type!");
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000776 }
777
778 EmitAlignment(Align, GVar);
Evan Cheng11db8142009-03-24 00:17:40 +0000779 O << name << ":";
780 if (VerboseAsm) {
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000781 O << "\t\t\t\t" << MAI->getCommentString() << " '";
Dan Gohman2aa282f2009-08-13 01:36:44 +0000782 WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
Evan Cheng11db8142009-03-24 00:17:40 +0000783 O << "'";
784 }
785 O << '\n';
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000786
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000787 EmitGlobalConstant(C);
788 O << '\n';
789}
790
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000791bool PPCLinuxAsmPrinter::doFinalization(Module &M) {
792 const TargetData *TD = TM.getTargetData();
793
794 bool isPPC64 = TD->getPointerSizeInBits() == 64;
795
796 if (isPPC64 && !TOC.empty()) {
797 // FIXME 64-bit SVR4: Use MCSection here?
798 O << "\t.section\t\".toc\",\"aw\"\n";
799
800 for (StringMap<std::string>::iterator I = TOC.begin(), E = TOC.end();
801 I != E; ++I) {
802 O << I->second << ":\n";
803 O << "\t.tc " << I->getKeyData() << "[TC]," << I->getKeyData() << '\n';
804 }
805 }
806
807 return AsmPrinter::doFinalization(M);
808}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000809
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000810/// runOnMachineFunction - This uses the printMachineInstruction()
811/// method to print assembly for each instruction.
812///
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000813bool PPCDarwinAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Bill Wendling4f405312009-02-24 08:30:20 +0000814 this->MF = &MF;
815
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000816 SetupMachineFunction(MF);
817 O << "\n\n";
Dale Johannesenfb3ac732007-11-20 23:24:42 +0000818
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000819 // Print out constants referenced by the function
820 EmitConstantPool(MF.getConstantPool());
821
822 // Print out labels for the function.
823 const Function *F = MF.getFunction();
Chris Lattner73266f92009-08-19 05:49:37 +0000824 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang, TM));
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000825
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000826 switch (F->getLinkage()) {
Edwin Törökbd448e32009-07-14 16:55:14 +0000827 default: llvm_unreachable("Unknown linkage type!");
evancheng47ae8142009-01-25 06:32:01 +0000828 case Function::PrivateLinkage:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000829 case Function::InternalLinkage: // Symbols default to internal.
830 break;
831 case Function::ExternalLinkage:
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000832 O << "\t.globl\t" << CurrentFnName << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000833 break;
Duncan Sands19d161f2009-03-07 15:45:40 +0000834 case Function::WeakAnyLinkage:
835 case Function::WeakODRLinkage:
836 case Function::LinkOnceAnyLinkage:
837 case Function::LinkOnceODRLinkage:
Dale Johannesenda551282009-08-24 01:03:42 +0000838 case Function::LinkerPrivateLinkage:
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000839 O << "\t.globl\t" << CurrentFnName << '\n';
840 O << "\t.weak_definition\t" << CurrentFnName << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000841 break;
842 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000843
Anton Korobeynikov78d69aa2008-08-08 18:25:07 +0000844 printVisibility(CurrentFnName, F->getVisibility());
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000845
Bill Wendling25a8ae32009-06-30 22:38:32 +0000846 EmitAlignment(MF.getAlignment(), F);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000847 O << CurrentFnName << ":\n";
848
849 // Emit pre-function debug information.
Devang Patelaa1e8432009-01-08 23:40:34 +0000850 DW->BeginFunction(&MF);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000851
Bill Wendling36ccaea2008-01-26 06:51:24 +0000852 // If the function is empty, then we need to emit *something*. Otherwise, the
853 // function's label might be associated with something that it wasn't meant to
854 // be associated with. We emit a noop in this situation.
855 MachineFunction::iterator I = MF.begin();
856
Bill Wendlingb5880a72008-01-26 09:03:52 +0000857 if (++I == MF.end() && MF.front().empty())
858 O << "\tnop\n";
Bill Wendling36ccaea2008-01-26 06:51:24 +0000859
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000860 // Print out code for the function.
861 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
862 I != E; ++I) {
863 // Print a label for the basic block.
864 if (I != MF.begin()) {
Chris Lattner2faa4ef2009-09-13 18:25:37 +0000865 EmitBasicBlockStart(I);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000866 }
Bill Wendling36ccaea2008-01-26 06:51:24 +0000867 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
868 II != IE; ++II) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000869 // Print the assembly for the instruction.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000870 printMachineInstruction(II);
871 }
872 }
873
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000874 // Emit post-function debug information.
Devang Patelaa1e8432009-01-08 23:40:34 +0000875 DW->EndFunction(&MF);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000876
Bill Wendling5019fe02009-11-09 21:45:26 +0000877 // Print out jump tables referenced by the function.
878 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
879
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000880 // We didn't modify anything.
881 return false;
882}
883
884
Bob Wilsonb5f835e2009-09-30 22:06:26 +0000885void PPCDarwinAsmPrinter::EmitStartOfAsmFile(Module &M) {
Dan Gohman12300e12008-03-25 21:45:14 +0000886 static const char *const CPUDirectives[] = {
Dale Johannesen161badc2008-02-14 23:35:16 +0000887 "",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000888 "ppc",
889 "ppc601",
890 "ppc602",
891 "ppc603",
892 "ppc7400",
893 "ppc750",
894 "ppc970",
895 "ppc64"
896 };
897
898 unsigned Directive = Subtarget.getDarwinDirective();
899 if (Subtarget.isGigaProcessor() && Directive < PPC::DIR_970)
900 Directive = PPC::DIR_970;
901 if (Subtarget.hasAltivec() && Directive < PPC::DIR_7400)
902 Directive = PPC::DIR_7400;
903 if (Subtarget.isPPC64() && Directive < PPC::DIR_970)
904 Directive = PPC::DIR_64;
905 assert(Directive <= PPC::DIR_64 && "Directive out of range.");
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000906 O << "\t.machine " << CPUDirectives[Directive] << '\n';
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000907
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000908 // Prime text sections so they are adjacent. This reduces the likelihood a
909 // large data or debug section causes a branch to exceed 16M limit.
Chris Lattnerf4815552009-08-03 22:52:21 +0000910 TargetLoweringObjectFileMachO &TLOFMacho =
911 static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
Chris Lattner73266f92009-08-19 05:49:37 +0000912 OutStreamer.SwitchSection(TLOFMacho.getTextCoalSection());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000913 if (TM.getRelocationModel() == Reloc::PIC_) {
Chris Lattner73266f92009-08-19 05:49:37 +0000914 OutStreamer.SwitchSection(
915 TLOFMacho.getMachOSection("__TEXT", "__picsymbolstub1",
916 MCSectionMachO::S_SYMBOL_STUBS |
917 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
918 32, SectionKind::getText()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000919 } else if (TM.getRelocationModel() == Reloc::DynamicNoPIC) {
Chris Lattner73266f92009-08-19 05:49:37 +0000920 OutStreamer.SwitchSection(
921 TLOFMacho.getMachOSection("__TEXT","__symbol_stub1",
922 MCSectionMachO::S_SYMBOL_STUBS |
923 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
924 16, SectionKind::getText()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000925 }
Chris Lattner73266f92009-08-19 05:49:37 +0000926 OutStreamer.SwitchSection(getObjFileLowering().getTextSection());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000927}
928
Chris Lattnerae982212009-07-21 18:38:57 +0000929void PPCDarwinAsmPrinter::PrintGlobalVariable(const GlobalVariable *GVar) {
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000930 const TargetData *TD = TM.getTargetData();
931
932 if (!GVar->hasInitializer())
933 return; // External global require no code
934
935 // Check to see if this is a special global used by LLVM, if so, emit it.
936 if (EmitSpecialLLVMGlobal(GVar)) {
937 if (TM.getRelocationModel() == Reloc::Static) {
Daniel Dunbare03513b2009-07-25 23:55:21 +0000938 if (GVar->getName() == "llvm.global_ctors")
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000939 O << ".reference .constructors_used\n";
Daniel Dunbare03513b2009-07-25 23:55:21 +0000940 else if (GVar->getName() == "llvm.global_dtors")
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000941 O << ".reference .destructors_used\n";
942 }
943 return;
944 }
945
Chris Lattnerb3cdde62009-07-14 18:17:16 +0000946 std::string name = Mang->getMangledName(GVar);
Anton Korobeynikov78d69aa2008-08-08 18:25:07 +0000947 printVisibility(name, GVar->getVisibility());
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000948
949 Constant *C = GVar->getInitializer();
950 const Type *Type = C->getType();
Duncan Sandsec4f97d2009-05-09 07:06:46 +0000951 unsigned Size = TD->getTypeAllocSize(Type);
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000952 unsigned Align = TD->getPreferredAlignmentLog(GVar);
953
Chris Lattnere6ad12f2009-07-31 18:48:30 +0000954 const MCSection *TheSection =
Chris Lattner2931fe42009-07-29 05:09:30 +0000955 getObjFileLowering().SectionForGlobal(GVar, Mang, TM);
Chris Lattner73266f92009-08-19 05:49:37 +0000956 OutStreamer.SwitchSection(TheSection);
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000957
Chris Lattnerdb727932009-08-04 05:35:56 +0000958 /// FIXME: Drive this off the section!
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000959 if (C->isNullValue() && /* FIXME: Verify correct */
960 !GVar->hasSection() &&
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000961 (GVar->hasLocalLinkage() || GVar->hasExternalLinkage() ||
Duncan Sands19d161f2009-03-07 15:45:40 +0000962 GVar->isWeakForLinker()) &&
Chris Lattner87bc69b2009-07-24 04:08:17 +0000963 // Don't put things that should go in the cstring section into "comm".
Chris Lattnerd8310522009-07-27 05:32:16 +0000964 !TheSection->getKind().isMergeableCString()) {
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000965 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
966
967 if (GVar->hasExternalLinkage()) {
968 O << "\t.globl " << name << '\n';
969 O << "\t.zerofill __DATA, __common, " << name << ", "
970 << Size << ", " << Align;
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000971 } else if (GVar->hasLocalLinkage()) {
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000972 O << MAI->getLCOMMDirective() << name << ',' << Size << ',' << Align;
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000973 } else if (!GVar->hasCommonLinkage()) {
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000974 O << "\t.globl " << name << '\n'
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000975 << MAI->getWeakDefDirective() << name << '\n';
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000976 EmitAlignment(Align, GVar);
Evan Cheng11db8142009-03-24 00:17:40 +0000977 O << name << ":";
978 if (VerboseAsm) {
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000979 O << "\t\t\t\t" << MAI->getCommentString() << " ";
Dan Gohman2aa282f2009-08-13 01:36:44 +0000980 WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
Evan Cheng11db8142009-03-24 00:17:40 +0000981 }
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000982 O << '\n';
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000983 EmitGlobalConstant(C);
984 return;
985 } else {
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000986 O << ".comm " << name << ',' << Size;
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000987 // Darwin 9 and above support aligned common data.
988 if (Subtarget.isDarwin9())
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000989 O << ',' << Align;
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000990 }
Evan Cheng11db8142009-03-24 00:17:40 +0000991 if (VerboseAsm) {
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000992 O << "\t\t" << MAI->getCommentString() << " '";
Dan Gohman2aa282f2009-08-13 01:36:44 +0000993 WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
Evan Cheng11db8142009-03-24 00:17:40 +0000994 O << "'";
995 }
996 O << '\n';
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000997 return;
998 }
999
1000 switch (GVar->getLinkage()) {
Duncan Sands19d161f2009-03-07 15:45:40 +00001001 case GlobalValue::LinkOnceAnyLinkage:
1002 case GlobalValue::LinkOnceODRLinkage:
1003 case GlobalValue::WeakAnyLinkage:
1004 case GlobalValue::WeakODRLinkage:
Duncan Sandsb95df792009-03-11 20:14:15 +00001005 case GlobalValue::CommonLinkage:
Dale Johannesenda551282009-08-24 01:03:42 +00001006 case GlobalValue::LinkerPrivateLinkage:
Anton Korobeynikov248e9c52008-08-08 18:23:25 +00001007 O << "\t.globl " << name << '\n'
1008 << "\t.weak_definition " << name << '\n';
1009 break;
1010 case GlobalValue::AppendingLinkage:
1011 // FIXME: appending linkage variables should go into a section of
1012 // their name or something. For now, just emit them as external.
1013 case GlobalValue::ExternalLinkage:
1014 // If external or appending, declare as a global symbol
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +00001015 O << "\t.globl " << name << '\n';
Anton Korobeynikov248e9c52008-08-08 18:23:25 +00001016 // FALL THROUGH
1017 case GlobalValue::InternalLinkage:
evancheng47ae8142009-01-25 06:32:01 +00001018 case GlobalValue::PrivateLinkage:
Anton Korobeynikov248e9c52008-08-08 18:23:25 +00001019 break;
1020 default:
Edwin Törökbd448e32009-07-14 16:55:14 +00001021 llvm_unreachable("Unknown linkage type!");
Anton Korobeynikov248e9c52008-08-08 18:23:25 +00001022 }
1023
1024 EmitAlignment(Align, GVar);
Evan Cheng11db8142009-03-24 00:17:40 +00001025 O << name << ":";
1026 if (VerboseAsm) {
Chris Lattnera5ef4d32009-08-22 21:43:10 +00001027 O << "\t\t\t\t" << MAI->getCommentString() << " '";
Dan Gohman2aa282f2009-08-13 01:36:44 +00001028 WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
Evan Cheng11db8142009-03-24 00:17:40 +00001029 O << "'";
1030 }
1031 O << '\n';
Anton Korobeynikov248e9c52008-08-08 18:23:25 +00001032
Anton Korobeynikov248e9c52008-08-08 18:23:25 +00001033 EmitGlobalConstant(C);
1034 O << '\n';
1035}
1036
Anton Korobeynikov28f86d12008-08-08 18:22:59 +00001037bool PPCDarwinAsmPrinter::doFinalization(Module &M) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001038 const TargetData *TD = TM.getTargetData();
1039
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001040 bool isPPC64 = TD->getPointerSizeInBits() == 64;
1041
Chris Lattnerf4815552009-08-03 22:52:21 +00001042 // Darwin/PPC always uses mach-o.
1043 TargetLoweringObjectFileMachO &TLOFMacho =
1044 static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
1045
Chris Lattner72a676a2009-08-10 01:39:42 +00001046
1047 const MCSection *LSPSection = 0;
1048 if (!FnStubs.empty()) // .lazy_symbol_pointer
1049 LSPSection = TLOFMacho.getLazySymbolPointerSection();
1050
1051
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001052 // Output stubs for dynamically-linked functions
Chris Lattner189198f2009-07-15 00:55:58 +00001053 if (TM.getRelocationModel() == Reloc::PIC_ && !FnStubs.empty()) {
Chris Lattnerf4815552009-08-03 22:52:21 +00001054 const MCSection *StubSection =
Chris Lattner72a676a2009-08-10 01:39:42 +00001055 TLOFMacho.getMachOSection("__TEXT", "__picsymbolstub1",
1056 MCSectionMachO::S_SYMBOL_STUBS |
1057 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
1058 32, SectionKind::getText());
Chris Lattner9bc87482010-01-13 19:00:57 +00001059 for (StringMap<FnStubInfo>::iterator I = FnStubs.begin(), E = FnStubs.end();
Chris Lattner83cf1ec2009-07-15 01:14:44 +00001060 I != E; ++I) {
Chris Lattner73266f92009-08-19 05:49:37 +00001061 OutStreamer.SwitchSection(StubSection);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001062 EmitAlignment(4);
Chris Lattnerdc4cce62009-07-15 02:33:19 +00001063 const FnStubInfo &Info = I->second;
Chris Lattner1774fd32010-01-13 19:13:16 +00001064 Info.Stub->print(O, MAI);
Chris Lattner9bc87482010-01-13 19:00:57 +00001065 O << ":\n";
Chris Lattnerdc4cce62009-07-15 02:33:19 +00001066 O << "\t.indirect_symbol " << I->getKeyData() << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001067 O << "\tmflr r0\n";
Chris Lattner9bc87482010-01-13 19:00:57 +00001068 O << "\tbcl 20,31,";
Chris Lattner1774fd32010-01-13 19:13:16 +00001069 Info.AnonSymbol->print(O, MAI);
Chris Lattner9bc87482010-01-13 19:00:57 +00001070 O << '\n';
Chris Lattner1774fd32010-01-13 19:13:16 +00001071 Info.AnonSymbol->print(O, MAI);
Chris Lattner9bc87482010-01-13 19:00:57 +00001072 O << ":\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001073 O << "\tmflr r11\n";
Chris Lattner9bc87482010-01-13 19:00:57 +00001074 O << "\taddis r11,r11,ha16(";
Chris Lattner1774fd32010-01-13 19:13:16 +00001075 Info.LazyPtr->print(O, MAI);
Chris Lattner9bc87482010-01-13 19:00:57 +00001076 O << '-';
Chris Lattner1774fd32010-01-13 19:13:16 +00001077 Info.AnonSymbol->print(O, MAI);
Evan Chenga65854f2008-12-05 01:06:39 +00001078 O << ")\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001079 O << "\tmtlr r0\n";
Chris Lattner63e910f2009-07-15 02:56:53 +00001080 O << (isPPC64 ? "\tldu" : "\tlwzu") << " r12,lo16(";
Chris Lattner1774fd32010-01-13 19:13:16 +00001081 Info.LazyPtr->print(O, MAI);
Chris Lattner9bc87482010-01-13 19:00:57 +00001082 O << '-';
Chris Lattner1774fd32010-01-13 19:13:16 +00001083 Info.AnonSymbol->print(O, MAI);
Chris Lattner9bc87482010-01-13 19:00:57 +00001084 O << ")(r11)\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001085 O << "\tmtctr r12\n";
1086 O << "\tbctr\n";
Chris Lattnerc0a7f1d2009-07-16 01:23:26 +00001087
Chris Lattner73266f92009-08-19 05:49:37 +00001088 OutStreamer.SwitchSection(LSPSection);
Chris Lattner1774fd32010-01-13 19:13:16 +00001089 Info.LazyPtr->print(O, MAI);
Chris Lattner9bc87482010-01-13 19:00:57 +00001090 O << ":\n";
Chris Lattnerdc4cce62009-07-15 02:33:19 +00001091 O << "\t.indirect_symbol " << I->getKeyData() << '\n';
Chris Lattnerbaa12da2009-07-15 02:36:21 +00001092 O << (isPPC64 ? "\t.quad" : "\t.long") << " dyld_stub_binding_helper\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001093 }
Chris Lattner189198f2009-07-15 00:55:58 +00001094 } else if (!FnStubs.empty()) {
Chris Lattner72a676a2009-08-10 01:39:42 +00001095 const MCSection *StubSection =
1096 TLOFMacho.getMachOSection("__TEXT","__symbol_stub1",
1097 MCSectionMachO::S_SYMBOL_STUBS |
1098 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
1099 16, SectionKind::getText());
Chris Lattnerf4815552009-08-03 22:52:21 +00001100
Chris Lattner9ea6e2a2009-07-15 02:28:57 +00001101 for (StringMap<FnStubInfo>::iterator I = FnStubs.begin(), E = FnStubs.end();
Chris Lattner83cf1ec2009-07-15 01:14:44 +00001102 I != E; ++I) {
Chris Lattner73266f92009-08-19 05:49:37 +00001103 OutStreamer.SwitchSection(StubSection);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001104 EmitAlignment(4);
Chris Lattnerdc4cce62009-07-15 02:33:19 +00001105 const FnStubInfo &Info = I->second;
Chris Lattner1774fd32010-01-13 19:13:16 +00001106 Info.Stub->print(O, MAI);
Chris Lattner9bc87482010-01-13 19:00:57 +00001107 O << ":\n";
Chris Lattnerdc4cce62009-07-15 02:33:19 +00001108 O << "\t.indirect_symbol " << I->getKeyData() << '\n';
Chris Lattner9bc87482010-01-13 19:00:57 +00001109 O << "\tlis r11,ha16(";
Chris Lattner1774fd32010-01-13 19:13:16 +00001110 Info.LazyPtr->print(O, MAI);
Chris Lattner9bc87482010-01-13 19:00:57 +00001111 O << ")\n";
Chris Lattnerbaa12da2009-07-15 02:36:21 +00001112 O << (isPPC64 ? "\tldu" : "\tlwzu") << " r12,lo16(";
Chris Lattner1774fd32010-01-13 19:13:16 +00001113 Info.LazyPtr->print(O, MAI);
Chris Lattner9bc87482010-01-13 19:00:57 +00001114 O << ")(r11)\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001115 O << "\tmtctr r12\n";
1116 O << "\tbctr\n";
Chris Lattner73266f92009-08-19 05:49:37 +00001117 OutStreamer.SwitchSection(LSPSection);
Chris Lattner1774fd32010-01-13 19:13:16 +00001118 Info.LazyPtr->print(O, MAI);
Chris Lattner9bc87482010-01-13 19:00:57 +00001119 O << ":\n";
Chris Lattnerdc4cce62009-07-15 02:33:19 +00001120 O << "\t.indirect_symbol " << I->getKeyData() << '\n';
Chris Lattnerbaa12da2009-07-15 02:36:21 +00001121 O << (isPPC64 ? "\t.quad" : "\t.long") << " dyld_stub_binding_helper\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001122 }
1123 }
1124
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +00001125 O << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001126
Chris Lattnera5ef4d32009-08-22 21:43:10 +00001127 if (MAI->doesSupportExceptionHandling() && MMI) {
Dale Johannesenfb3ac732007-11-20 23:24:42 +00001128 // Add the (possibly multiple) personalities to the set of global values.
Dale Johannesen85535762008-04-02 00:25:04 +00001129 // Only referenced functions get into the Personalities list.
Chris Lattner2424eac2009-06-24 19:09:55 +00001130 const std::vector<Function *> &Personalities = MMI->getPersonalities();
Dale Johannesenfb3ac732007-11-20 23:24:42 +00001131 for (std::vector<Function *>::const_iterator I = Personalities.begin(),
Chris Lattner83cf1ec2009-07-15 01:14:44 +00001132 E = Personalities.end(); I != E; ++I) {
1133 if (*I)
1134 GVStubs[Mang->getMangledName(*I)] =
Chris Lattner65353d52009-07-15 01:16:38 +00001135 Mang->getMangledName(*I, "$non_lazy_ptr", true);
Chris Lattner83cf1ec2009-07-15 01:14:44 +00001136 }
Dale Johannesenfb3ac732007-11-20 23:24:42 +00001137 }
1138
Chris Lattnerf4815552009-08-03 22:52:21 +00001139 // Output macho stubs for external and common global variables.
Dan Gohman3f7d94b2007-10-03 19:26:29 +00001140 if (!GVStubs.empty()) {
Chris Lattner72a676a2009-08-10 01:39:42 +00001141 // Switch with ".non_lazy_symbol_pointer" directive.
Chris Lattner73266f92009-08-19 05:49:37 +00001142 OutStreamer.SwitchSection(TLOFMacho.getNonLazySymbolPointerSection());
Chris Lattner2d61eaa2009-08-10 17:58:51 +00001143 EmitAlignment(isPPC64 ? 3 : 2);
1144
Chris Lattner83cf1ec2009-07-15 01:14:44 +00001145 for (StringMap<std::string>::iterator I = GVStubs.begin(),
1146 E = GVStubs.end(); I != E; ++I) {
1147 O << I->second << ":\n";
1148 O << "\t.indirect_symbol " << I->getKeyData() << '\n';
1149 O << (isPPC64 ? "\t.quad\t0\n" : "\t.long\t0\n");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001150 }
1151 }
1152
Evan Chenga65854f2008-12-05 01:06:39 +00001153 if (!HiddenGVStubs.empty()) {
Chris Lattner73266f92009-08-19 05:49:37 +00001154 OutStreamer.SwitchSection(getObjFileLowering().getDataSection());
Chris Lattner83cf1ec2009-07-15 01:14:44 +00001155 EmitAlignment(isPPC64 ? 3 : 2);
1156 for (StringMap<std::string>::iterator I = HiddenGVStubs.begin(),
1157 E = HiddenGVStubs.end(); I != E; ++I) {
1158 O << I->second << ":\n";
1159 O << (isPPC64 ? "\t.quad\t" : "\t.long\t") << I->getKeyData() << '\n';
Evan Chenga65854f2008-12-05 01:06:39 +00001160 }
1161 }
1162
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001163 // Funny Darwin hack: This flag tells the linker that no global symbols
1164 // contain code that falls through to other global symbols (e.g. the obvious
1165 // implementation of multiple entry points). If this doesn't occur, the
1166 // linker can safely perform dead code stripping. Since LLVM never generates
1167 // code that does this, it is always safe to set.
Chris Lattnerfe284f72009-10-19 18:03:08 +00001168 OutStreamer.EmitAssemblerFlag(MCStreamer::SubsectionsViaSymbols);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001169
Dan Gohman4a558a32007-07-25 19:33:14 +00001170 return AsmPrinter::doFinalization(M);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001171}
1172
1173
1174
1175/// createPPCAsmPrinterPass - Returns a pass that prints the PPC assembly code
1176/// for a MachineFunction to the given output stream, in a format that the
1177/// Darwin assembler can deal with.
1178///
Daniel Dunbar4cb63652009-08-13 23:48:47 +00001179static AsmPrinter *createPPCAsmPrinterPass(formatted_raw_ostream &o,
1180 TargetMachine &tm,
Chris Lattner621c44d2009-08-22 20:48:53 +00001181 const MCAsmInfo *tai,
Daniel Dunbar4cb63652009-08-13 23:48:47 +00001182 bool verbose) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001183 const PPCSubtarget *Subtarget = &tm.getSubtarget<PPCSubtarget>();
1184
Chris Lattnerae982212009-07-21 18:38:57 +00001185 if (Subtarget->isDarwin())
Daniel Dunbaref5abb42009-08-13 19:38:51 +00001186 return new PPCDarwinAsmPrinter(o, tm, tai, verbose);
1187 return new PPCLinuxAsmPrinter(o, tm, tai, verbose);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001188}
Anton Korobeynikov01c0e9f2008-08-17 13:54:28 +00001189
Bob Wilsonebbc1c42009-06-23 23:59:40 +00001190// Force static initialization.
Daniel Dunbarfe5939f2009-07-15 20:24:03 +00001191extern "C" void LLVMInitializePowerPCAsmPrinter() {
Daniel Dunbarfe5939f2009-07-15 20:24:03 +00001192 TargetRegistry::RegisterAsmPrinter(ThePPC32Target, createPPCAsmPrinterPass);
Daniel Dunbarfe5939f2009-07-15 20:24:03 +00001193 TargetRegistry::RegisterAsmPrinter(ThePPC64Target, createPPCAsmPrinterPass);
1194}