blob: ef171ddc649c52f3d9bb07e435ae081afc653cc5 [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 Lattner9f9fd9d2010-01-16 01:45:47 +000068 void Init(const GlobalValue *GV, AsmPrinter *Printer) {
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 Lattner9f9fd9d2010-01-16 01:45:47 +000073 Stub = Printer->GetPrivateGlobalValueSymbolStub(GV, "$stub");
74 LazyPtr = Printer->GetPrivateGlobalValueSymbolStub(GV, "$lazy_ptr");
75 AnonSymbol = Printer->GetPrivateGlobalValueSymbolStub(GV, "$stub$tmp");
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);
Chris Lattner1774fd32010-01-13 19:13:16 +000084 TmpStr += "$stub";
85 Stub = Ctx.GetOrCreateSymbol(TmpStr.str());
Chris Lattner53087e52010-01-13 19:05:36 +000086 TmpStr.erase(TmpStr.end()-5, TmpStr.end()); // Remove $stub
87
88 TmpStr += "$lazy_ptr";
Chris Lattner1774fd32010-01-13 19:13:16 +000089 LazyPtr = Ctx.GetOrCreateSymbol(TmpStr.str());
Chris Lattner53087e52010-01-13 19:05:36 +000090 TmpStr.erase(TmpStr.end()-9, TmpStr.end()); // Remove $lazy_ptr
Chris Lattnera38b2872010-01-13 06:38:18 +000091
Chris Lattner53087e52010-01-13 19:05:36 +000092 TmpStr += "$stub$tmp";
Chris Lattner1774fd32010-01-13 19:13:16 +000093 AnonSymbol = Ctx.GetOrCreateSymbol(TmpStr.str());
Chris Lattner9ea6e2a2009-07-15 02:28:57 +000094 }
95 };
96
Chris Lattner5eeaf2a2010-01-16 02:00:23 +000097 DenseMap<const MCSymbol*, FnStubInfo> FnStubs;
Chris Lattnerc3009922010-01-16 02:09:06 +000098 DenseMap<const MCSymbol*, const MCSymbol*> GVStubs, HiddenGVStubs, TOC;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000099 const PPCSubtarget &Subtarget;
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000100 uint64_t LabelID;
Bill Wendling4f405312009-02-24 08:30:20 +0000101 public:
David Greene302008d2009-07-14 20:18:05 +0000102 explicit PPCAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
Chris Lattner621c44d2009-08-22 20:48:53 +0000103 const MCAsmInfo *T, bool V)
Daniel Dunbarb10d2222009-07-01 01:48:54 +0000104 : AsmPrinter(O, TM, T, V),
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000105 Subtarget(TM.getSubtarget<PPCSubtarget>()), LabelID(0) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000106
107 virtual const char *getPassName() const {
108 return "PowerPC Assembly Printer";
109 }
110
111 PPCTargetMachine &getTM() {
112 return static_cast<PPCTargetMachine&>(TM);
113 }
114
115 unsigned enumRegToMachineReg(unsigned enumReg) {
116 switch (enumReg) {
Edwin Törökbd448e32009-07-14 16:55:14 +0000117 default: llvm_unreachable("Unhandled register!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000118 case PPC::CR0: return 0;
119 case PPC::CR1: return 1;
120 case PPC::CR2: return 2;
121 case PPC::CR3: return 3;
122 case PPC::CR4: return 4;
123 case PPC::CR5: return 5;
124 case PPC::CR6: return 6;
125 case PPC::CR7: return 7;
126 }
Edwin Törökbd448e32009-07-14 16:55:14 +0000127 llvm_unreachable(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000128 }
129
130 /// printInstruction - This method is automatically generated by tablegen
131 /// from the instruction set description. This method returns true if the
132 /// machine instruction was sufficiently described to print it, otherwise it
133 /// returns false.
Chris Lattnerddb259a2009-08-08 01:32:19 +0000134 void printInstruction(const MachineInstr *MI);
Chris Lattner213703c2009-09-13 20:19:22 +0000135 static const char *getRegisterName(unsigned RegNo);
Chris Lattner92221692009-09-13 20:08:00 +0000136
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000137
138 void printMachineInstruction(const MachineInstr *MI);
139 void printOp(const MachineOperand &MO);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000140
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000141 /// stripRegisterPrefix - This method strips the character prefix from a
142 /// register name so that only the number is left. Used by for linux asm.
143 const char *stripRegisterPrefix(const char *RegName) {
144 switch (RegName[0]) {
145 case 'r':
146 case 'f':
147 case 'v': return RegName + 1;
148 case 'c': if (RegName[1] == 'r') return RegName + 2;
149 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000150
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000151 return RegName;
152 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000153
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000154 /// printRegister - Print register according to target requirements.
155 ///
156 void printRegister(const MachineOperand &MO, bool R0AsZero) {
157 unsigned RegNo = MO.getReg();
Dan Gohman1e57df32008-02-10 18:45:23 +0000158 assert(TargetRegisterInfo::isPhysicalRegister(RegNo) && "Not physreg??");
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000159
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000160 // If we should use 0 for R0.
161 if (R0AsZero && RegNo == PPC::R0) {
162 O << "0";
163 return;
164 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000165
Chris Lattnerf0a25de2009-09-13 20:31:40 +0000166 const char *RegName = getRegisterName(RegNo);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000167 // Linux assembler (Others?) does not take register mnemonics.
168 // FIXME - What about special registers used in mfspr/mtspr?
169 if (!Subtarget.isDarwin()) RegName = stripRegisterPrefix(RegName);
170 O << RegName;
171 }
172
173 void printOperand(const MachineInstr *MI, unsigned OpNo) {
174 const MachineOperand &MO = MI->getOperand(OpNo);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000175 if (MO.isReg()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000176 printRegister(MO, false);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000177 } else if (MO.isImm()) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000178 O << MO.getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000179 } else {
180 printOp(MO);
181 }
182 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000183
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000184 bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
185 unsigned AsmVariant, const char *ExtraCode);
186 bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
187 unsigned AsmVariant, const char *ExtraCode);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000188
189
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000190 void printS5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000191 char value = MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000192 value = (value << (32-5)) >> (32-5);
193 O << (int)value;
194 }
195 void printU5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000196 unsigned char value = MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000197 assert(value <= 31 && "Invalid u5imm argument!");
198 O << (unsigned int)value;
199 }
200 void printU6ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000201 unsigned char value = MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000202 assert(value <= 63 && "Invalid u6imm argument!");
203 O << (unsigned int)value;
204 }
205 void printS16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000206 O << (short)MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000207 }
208 void printU16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000209 O << (unsigned short)MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000210 }
211 void printS16X4ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000212 if (MI->getOperand(OpNo).isImm()) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000213 O << (short)(MI->getOperand(OpNo).getImm()*4);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000214 } else {
215 O << "lo16(";
216 printOp(MI->getOperand(OpNo));
217 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng477013c2007-10-14 05:57:21 +0000218 O << "-\"L" << getFunctionNumber() << "$pb\")";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000219 else
220 O << ')';
221 }
222 }
223 void printBranchOperand(const MachineInstr *MI, unsigned OpNo) {
224 // Branches can take an immediate operand. This is used by the branch
225 // selection pass to print $+8, an eight byte displacement from the PC.
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000226 if (MI->getOperand(OpNo).isImm()) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000227 O << "$+" << MI->getOperand(OpNo).getImm()*4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000228 } else {
229 printOp(MI->getOperand(OpNo));
230 }
231 }
232 void printCallOperand(const MachineInstr *MI, unsigned OpNo) {
233 const MachineOperand &MO = MI->getOperand(OpNo);
234 if (TM.getRelocationModel() != Reloc::Static) {
235 if (MO.getType() == MachineOperand::MO_GlobalAddress) {
236 GlobalValue *GV = MO.getGlobal();
Chris Lattner0fd4feb2009-07-02 16:08:53 +0000237 if (GV->isDeclaration() || GV->isWeakForLinker()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000238 // Dynamically-resolved functions need a stub for the function.
Chris Lattner5eeaf2a2010-01-16 02:00:23 +0000239 FnStubInfo &FnInfo = FnStubs[GetGlobalValueSymbol(GV)];
Chris Lattner9f9fd9d2010-01-16 01:45:47 +0000240 FnInfo.Init(GV, this);
Chris Lattner1774fd32010-01-13 19:13:16 +0000241 FnInfo.Stub->print(O, MAI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000242 return;
243 }
244 }
245 if (MO.getType() == MachineOperand::MO_ExternalSymbol) {
Chris Lattner5eeaf2a2010-01-16 02:00:23 +0000246 FnStubInfo &FnInfo =
247 FnStubs[GetExternalSymbolSymbol(MO.getSymbolName())];
Chris Lattner9bc87482010-01-13 19:00:57 +0000248 FnInfo.Init(MO.getSymbolName(), Mang, OutContext);
Chris Lattner1774fd32010-01-13 19:13:16 +0000249 FnInfo.Stub->print(O, MAI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000250 return;
251 }
252 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000253
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000254 printOp(MI->getOperand(OpNo));
255 }
256 void printAbsAddrOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000257 O << (int)MI->getOperand(OpNo).getImm()*4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000258 }
259 void printPICLabel(const MachineInstr *MI, unsigned OpNo) {
Evan Cheng477013c2007-10-14 05:57:21 +0000260 O << "\"L" << getFunctionNumber() << "$pb\"\n";
261 O << "\"L" << getFunctionNumber() << "$pb\":";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000262 }
263 void printSymbolHi(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 << "ha16(";
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 << "@ha";
275 }
276 }
277 void printSymbolLo(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000278 if (MI->getOperand(OpNo).isImm()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000279 printS16ImmOperand(MI, OpNo);
280 } else {
281 if (Subtarget.isDarwin()) O << "lo16(";
282 printOp(MI->getOperand(OpNo));
283 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng477013c2007-10-14 05:57:21 +0000284 O << "-\"L" << getFunctionNumber() << "$pb\"";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000285 if (Subtarget.isDarwin())
286 O << ')';
287 else
288 O << "@l";
289 }
290 }
291 void printcrbitm(const MachineInstr *MI, unsigned OpNo) {
292 unsigned CCReg = MI->getOperand(OpNo).getReg();
293 unsigned RegNo = enumRegToMachineReg(CCReg);
294 O << (0x80 >> RegNo);
295 }
296 // The new addressing mode printers.
297 void printMemRegImm(const MachineInstr *MI, unsigned OpNo) {
298 printSymbolLo(MI, OpNo);
299 O << '(';
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000300 if (MI->getOperand(OpNo+1).isReg() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000301 MI->getOperand(OpNo+1).getReg() == PPC::R0)
302 O << "0";
303 else
304 printOperand(MI, OpNo+1);
305 O << ')';
306 }
307 void printMemRegImmShifted(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000308 if (MI->getOperand(OpNo).isImm())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000309 printS16X4ImmOperand(MI, OpNo);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000310 else
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000311 printSymbolLo(MI, OpNo);
312 O << '(';
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000313 if (MI->getOperand(OpNo+1).isReg() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000314 MI->getOperand(OpNo+1).getReg() == PPC::R0)
315 O << "0";
316 else
317 printOperand(MI, OpNo+1);
318 O << ')';
319 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000320
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000321 void printMemRegReg(const MachineInstr *MI, unsigned OpNo) {
322 // When used as the base register, r0 reads constant zero rather than
323 // the value contained in the register. For this reason, the darwin
324 // assembler requires that we print r0 as 0 (no r) when used as the base.
325 const MachineOperand &MO = MI->getOperand(OpNo);
326 printRegister(MO, true);
327 O << ", ";
328 printOperand(MI, OpNo+1);
329 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000330
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000331 void printTOCEntryLabel(const MachineInstr *MI, unsigned OpNo) {
332 const MachineOperand &MO = MI->getOperand(OpNo);
333
334 assert(MO.getType() == MachineOperand::MO_GlobalAddress);
335
Chris Lattnerc3009922010-01-16 02:09:06 +0000336 const MCSymbol *Sym = GetGlobalValueSymbol(MO.getGlobal());
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000337
338 // Map symbol -> label of TOC entry.
Chris Lattnerc3009922010-01-16 02:09:06 +0000339 const MCSymbol *&TOCEntry = TOC[Sym];
340 if (TOCEntry == 0)
341 TOCEntry = OutContext.
Chris Lattner5eeaf2a2010-01-16 02:00:23 +0000342 GetOrCreateSymbol(StringRef(MAI->getPrivateGlobalPrefix()) + "C" +
343 Twine(LabelID++));
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000344
Chris Lattnerc3009922010-01-16 02:09:06 +0000345 TOCEntry->print(O, MAI);
Chris Lattner5eeaf2a2010-01-16 02:00:23 +0000346 O << "@toc";
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000347 }
348
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000349 void printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000350 const char *Modifier);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000351
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000352 virtual bool runOnMachineFunction(MachineFunction &F) = 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000353 };
354
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000355 /// PPCLinuxAsmPrinter - PowerPC assembly printer, customized for Linux
Nick Lewycky492d06e2009-10-25 06:33:48 +0000356 class PPCLinuxAsmPrinter : public PPCAsmPrinter {
Bill Wendling4f405312009-02-24 08:30:20 +0000357 public:
Daniel Dunbarfe5939f2009-07-15 20:24:03 +0000358 explicit PPCLinuxAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
Chris Lattner621c44d2009-08-22 20:48:53 +0000359 const MCAsmInfo *T, bool V)
Daniel Dunbarb10d2222009-07-01 01:48:54 +0000360 : PPCAsmPrinter(O, TM, T, V){}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000361
362 virtual const char *getPassName() const {
363 return "Linux PPC Assembly Printer";
364 }
365
366 bool runOnMachineFunction(MachineFunction &F);
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000367 bool doFinalization(Module &M);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000368
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000369 void getAnalysisUsage(AnalysisUsage &AU) const {
370 AU.setPreservesAll();
371 AU.addRequired<MachineModuleInfo>();
Devang Patelaa1e8432009-01-08 23:40:34 +0000372 AU.addRequired<DwarfWriter>();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000373 PPCAsmPrinter::getAnalysisUsage(AU);
374 }
375
Chris Lattnerae982212009-07-21 18:38:57 +0000376 void PrintGlobalVariable(const GlobalVariable *GVar);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000377 };
378
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000379 /// PPCDarwinAsmPrinter - PowerPC assembly printer, customized for Darwin/Mac
380 /// OS X
Nick Lewycky492d06e2009-10-25 06:33:48 +0000381 class PPCDarwinAsmPrinter : public PPCAsmPrinter {
David Greene302008d2009-07-14 20:18:05 +0000382 formatted_raw_ostream &OS;
Bill Wendling4f405312009-02-24 08:30:20 +0000383 public:
Daniel Dunbarfe5939f2009-07-15 20:24:03 +0000384 explicit PPCDarwinAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
Chris Lattner621c44d2009-08-22 20:48:53 +0000385 const MCAsmInfo *T, bool V)
Daniel Dunbarb10d2222009-07-01 01:48:54 +0000386 : PPCAsmPrinter(O, TM, T, V), OS(O) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000387
388 virtual const char *getPassName() const {
389 return "Darwin PPC Assembly Printer";
390 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000391
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000392 bool runOnMachineFunction(MachineFunction &F);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000393 bool doFinalization(Module &M);
Bob Wilsonb5f835e2009-09-30 22:06:26 +0000394 void EmitStartOfAsmFile(Module &M);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000395
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000396 void getAnalysisUsage(AnalysisUsage &AU) const {
397 AU.setPreservesAll();
398 AU.addRequired<MachineModuleInfo>();
Devang Patelaa1e8432009-01-08 23:40:34 +0000399 AU.addRequired<DwarfWriter>();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000400 PPCAsmPrinter::getAnalysisUsage(AU);
401 }
402
Chris Lattnerae982212009-07-21 18:38:57 +0000403 void PrintGlobalVariable(const GlobalVariable *GVar);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000404 };
405} // end of anonymous namespace
406
407// Include the auto-generated portion of the assembly writer
408#include "PPCGenAsmWriter.inc"
409
410void PPCAsmPrinter::printOp(const MachineOperand &MO) {
411 switch (MO.getType()) {
412 case MachineOperand::MO_Immediate:
Edwin Törökbd448e32009-07-14 16:55:14 +0000413 llvm_unreachable("printOp() does not handle immediate values");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000414
415 case MachineOperand::MO_MachineBasicBlock:
Chris Lattnerc6f802d2009-09-13 17:14:04 +0000416 GetMBBSymbol(MO.getMBB()->getNumber())->print(O, MAI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000417 return;
418 case MachineOperand::MO_JumpTableIndex:
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000419 O << MAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
Chris Lattner6017d482007-12-30 23:10:15 +0000420 << '_' << MO.getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000421 // FIXME: PIC relocation model
422 return;
423 case MachineOperand::MO_ConstantPoolIndex:
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000424 O << MAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber()
Chris Lattner6017d482007-12-30 23:10:15 +0000425 << '_' << MO.getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000426 return;
Bob Wilsone8cbca92009-11-04 21:31:18 +0000427 case MachineOperand::MO_BlockAddress:
428 GetBlockAddressSymbol(MO.getBlockAddress())->print(O, MAI);
429 return;
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000430 case MachineOperand::MO_ExternalSymbol: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000431 // Computing the address of an external symbol, not calling it.
Chris Lattnerc3009922010-01-16 02:09:06 +0000432 const MCSymbol *SymName = GetExternalSymbolSymbol(MO.getSymbolName());
433 if (TM.getRelocationModel() == Reloc::Static) {
434 SymName->print(O, MAI);
435 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000436 }
Chris Lattnerc3009922010-01-16 02:09:06 +0000437 const MCSymbol *NLPSym =
438 OutContext.GetOrCreateSymbol(StringRef(MAI->getGlobalPrefix())+
439 MO.getSymbolName()+"$non_lazy_ptr");
440 GVStubs[SymName] = NLPSym;
441 NLPSym->print(O, MAI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000442 return;
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000443 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000444 case MachineOperand::MO_GlobalAddress: {
445 // Computing the address of a global symbol, not calling it.
446 GlobalValue *GV = MO.getGlobal();
Chris Lattner5eeaf2a2010-01-16 02:00:23 +0000447 MCSymbol *SymToPrint;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000448
449 // External or weakly linked global variables need non-lazily-resolved stubs
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000450 if (TM.getRelocationModel() != Reloc::Static &&
451 (GV->isDeclaration() || GV->isWeakForLinker())) {
452 if (!GV->hasHiddenVisibility()) {
Chris Lattner5eeaf2a2010-01-16 02:00:23 +0000453 SymToPrint = GetPrivateGlobalValueSymbolStub(GV, "$non_lazy_ptr");
Chris Lattnerc3009922010-01-16 02:09:06 +0000454 GVStubs[GetGlobalValueSymbol(GV)] = SymToPrint;
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000455 } else if (GV->isDeclaration() || GV->hasCommonLinkage() ||
456 GV->hasAvailableExternallyLinkage()) {
Chris Lattner5eeaf2a2010-01-16 02:00:23 +0000457 SymToPrint = GetPrivateGlobalValueSymbolStub(GV, "$non_lazy_ptr");
Chris Lattnerc3009922010-01-16 02:09:06 +0000458 HiddenGVStubs[GetGlobalValueSymbol(GV)] = SymToPrint;
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000459 } else {
Chris Lattner5eeaf2a2010-01-16 02:00:23 +0000460 SymToPrint = GetGlobalValueSymbol(GV);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000461 }
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000462 } else {
Chris Lattner5eeaf2a2010-01-16 02:00:23 +0000463 SymToPrint = GetGlobalValueSymbol(GV);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000464 }
Chris Lattner5eeaf2a2010-01-16 02:00:23 +0000465
466 SymToPrint->print(O, MAI);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000467
Anton Korobeynikov440f23d2008-11-22 16:15:34 +0000468 printOffset(MO.getOffset());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000469 return;
470 }
471
472 default:
473 O << "<unknown operand type: " << MO.getType() << ">";
474 return;
475 }
476}
477
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000478/// PrintAsmOperand - Print out an operand for an inline asm expression.
479///
480bool PPCAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000481 unsigned AsmVariant,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000482 const char *ExtraCode) {
483 // Does this asm operand have a single letter operand modifier?
484 if (ExtraCode && ExtraCode[0]) {
485 if (ExtraCode[1] != 0) return true; // Unknown modifier.
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000486
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000487 switch (ExtraCode[0]) {
488 default: return true; // Unknown modifier.
489 case 'c': // Don't print "$" before a global var name or constant.
490 // PPC never has a prefix.
491 printOperand(MI, OpNo);
492 return false;
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000493 case 'L': // Write second word of DImode reference.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000494 // Verify that this operand has two consecutive registers.
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000495 if (!MI->getOperand(OpNo).isReg() ||
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000496 OpNo+1 == MI->getNumOperands() ||
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000497 !MI->getOperand(OpNo+1).isReg())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000498 return true;
499 ++OpNo; // Return the high-part.
500 break;
501 case 'I':
502 // Write 'i' if an integer constant, otherwise nothing. Used to print
503 // addi vs add, etc.
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000504 if (MI->getOperand(OpNo).isImm())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000505 O << "i";
506 return false;
507 }
508 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000509
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000510 printOperand(MI, OpNo);
511 return false;
512}
513
Dale Johannesen0a42b9662009-08-18 00:18:39 +0000514// At the moment, all inline asm memory operands are a single register.
515// In any case, the output of this routine should always be just one
516// assembler operand.
517
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000518bool PPCAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000519 unsigned AsmVariant,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000520 const char *ExtraCode) {
521 if (ExtraCode && ExtraCode[0])
522 return true; // Unknown modifier.
Dale Johannesen0a42b9662009-08-18 00:18:39 +0000523 assert (MI->getOperand(OpNo).isReg());
Dale Johannesen5e699502009-08-26 18:10:32 +0000524 O << "0(";
Dale Johannesen0a42b9662009-08-18 00:18:39 +0000525 printOperand(MI, OpNo);
Dale Johannesen5e699502009-08-26 18:10:32 +0000526 O << ")";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000527 return false;
528}
529
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000530void PPCAsmPrinter::printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000531 const char *Modifier) {
532 assert(Modifier && "Must specify 'cc' or 'reg' as predicate op modifier!");
533 unsigned Code = MI->getOperand(OpNo).getImm();
534 if (!strcmp(Modifier, "cc")) {
535 switch ((PPC::Predicate)Code) {
536 case PPC::PRED_ALWAYS: return; // Don't print anything for always.
537 case PPC::PRED_LT: O << "lt"; return;
538 case PPC::PRED_LE: O << "le"; return;
539 case PPC::PRED_EQ: O << "eq"; return;
540 case PPC::PRED_GE: O << "ge"; return;
541 case PPC::PRED_GT: O << "gt"; return;
542 case PPC::PRED_NE: O << "ne"; return;
543 case PPC::PRED_UN: O << "un"; return;
544 case PPC::PRED_NU: O << "nu"; return;
545 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000546
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000547 } else {
548 assert(!strcmp(Modifier, "reg") &&
549 "Need to specify 'cc' or 'reg' as predicate op modifier!");
550 // Don't print the register for 'always'.
551 if (Code == PPC::PRED_ALWAYS) return;
552 printOperand(MI, OpNo+1);
553 }
554}
555
556
557/// printMachineInstruction -- Print out a single PowerPC MI in Darwin syntax to
558/// the current output stream.
559///
560void PPCAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
561 ++EmittedInsts;
Chris Lattnere34788c2009-09-09 20:34:59 +0000562
Devang Patel5450fc12009-10-06 02:19:11 +0000563 processDebugLoc(MI, true);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000564
565 // Check for slwi/srwi mnemonics.
Dale Johannesen760acc02010-01-06 02:20:18 +0000566 bool useSubstituteMnemonic = false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000567 if (MI->getOpcode() == PPC::RLWINM) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000568 unsigned char SH = MI->getOperand(2).getImm();
569 unsigned char MB = MI->getOperand(3).getImm();
570 unsigned char ME = MI->getOperand(4).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000571 if (SH <= 31 && MB == 0 && ME == (31-SH)) {
Dale Johannesen760acc02010-01-06 02:20:18 +0000572 O << "\tslwi "; useSubstituteMnemonic = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000573 }
574 if (SH <= 31 && MB == (32-SH) && ME == 31) {
Dale Johannesen760acc02010-01-06 02:20:18 +0000575 O << "\tsrwi "; useSubstituteMnemonic = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000576 SH = 32-SH;
577 }
Dale Johannesen760acc02010-01-06 02:20:18 +0000578 if (useSubstituteMnemonic) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000579 printOperand(MI, 0);
580 O << ", ";
581 printOperand(MI, 1);
Dale Johannesen760acc02010-01-06 02:20:18 +0000582 O << ", " << (unsigned int)SH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000583 }
584 } else if (MI->getOpcode() == PPC::OR || MI->getOpcode() == PPC::OR8) {
585 if (MI->getOperand(1).getReg() == MI->getOperand(2).getReg()) {
Dale Johannesen760acc02010-01-06 02:20:18 +0000586 useSubstituteMnemonic = true;
Nate Begemanbd5cdf12008-02-05 08:49:09 +0000587 O << "\tmr ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000588 printOperand(MI, 0);
589 O << ", ";
590 printOperand(MI, 1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000591 }
592 } else if (MI->getOpcode() == PPC::RLDICR) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000593 unsigned char SH = MI->getOperand(2).getImm();
594 unsigned char ME = MI->getOperand(3).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000595 // rldicr RA, RS, SH, 63-SH == sldi RA, RS, SH
596 if (63-SH == ME) {
Dale Johannesen760acc02010-01-06 02:20:18 +0000597 useSubstituteMnemonic = true;
Nate Begemanbd5cdf12008-02-05 08:49:09 +0000598 O << "\tsldi ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000599 printOperand(MI, 0);
600 O << ", ";
601 printOperand(MI, 1);
Dale Johannesen760acc02010-01-06 02:20:18 +0000602 O << ", " << (unsigned int)SH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000603 }
604 }
605
Dale Johannesen760acc02010-01-06 02:20:18 +0000606 if (!useSubstituteMnemonic)
607 printInstruction(MI);
608
David Greeneca9b04b2009-11-13 21:34:57 +0000609 if (VerboseAsm)
Chris Lattner32d4cc72009-09-09 23:14:36 +0000610 EmitComments(*MI);
611 O << '\n';
Devang Patel5450fc12009-10-06 02:19:11 +0000612
613 processDebugLoc(MI, false);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000614}
615
616/// runOnMachineFunction - This uses the printMachineInstruction()
617/// method to print assembly for each instruction.
618///
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000619bool PPCLinuxAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Bill Wendling4f405312009-02-24 08:30:20 +0000620 this->MF = &MF;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000621
622 SetupMachineFunction(MF);
623 O << "\n\n";
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000624
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000625 // Print out constants referenced by the function
626 EmitConstantPool(MF.getConstantPool());
627
628 // Print out labels for the function.
629 const Function *F = MF.getFunction();
Chris Lattner73266f92009-08-19 05:49:37 +0000630 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang, TM));
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000631
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000632 switch (F->getLinkage()) {
Edwin Törökbd448e32009-07-14 16:55:14 +0000633 default: llvm_unreachable("Unknown linkage type!");
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000634 case Function::PrivateLinkage:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000635 case Function::InternalLinkage: // Symbols default to internal.
636 break;
637 case Function::ExternalLinkage:
Chris Lattner651adf32010-01-16 00:21:18 +0000638 O << "\t.global\t";
639 CurrentFnSym->print(O, MAI);
640 O << '\n' << "\t.type\t";
641 CurrentFnSym->print(O, MAI);
642 O << ", @function\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000643 break;
Dale Johannesenda551282009-08-24 01:03:42 +0000644 case Function::LinkerPrivateLinkage:
Duncan Sands19d161f2009-03-07 15:45:40 +0000645 case Function::WeakAnyLinkage:
646 case Function::WeakODRLinkage:
647 case Function::LinkOnceAnyLinkage:
648 case Function::LinkOnceODRLinkage:
Chris Lattner651adf32010-01-16 00:21:18 +0000649 O << "\t.global\t";
650 CurrentFnSym->print(O, MAI);
651 O << '\n';
652 O << "\t.weak\t";
653 CurrentFnSym->print(O, MAI);
654 O << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000655 break;
656 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000657
Chris Lattner651adf32010-01-16 00:21:18 +0000658 printVisibility(CurrentFnSym, F->getVisibility());
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000659
Bill Wendling25a8ae32009-06-30 22:38:32 +0000660 EmitAlignment(MF.getAlignment(), F);
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000661
662 if (Subtarget.isPPC64()) {
663 // Emit an official procedure descriptor.
Chris Lattner651adf32010-01-16 00:21:18 +0000664 // FIXME 64-bit SVR4: Use MCSection here!
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000665 O << "\t.section\t\".opd\",\"aw\"\n";
666 O << "\t.align 3\n";
Chris Lattner651adf32010-01-16 00:21:18 +0000667 CurrentFnSym->print(O, MAI);
668 O << ":\n";
669 O << "\t.quad .L.";
670 CurrentFnSym->print(O, MAI);
671 O << ",.TOC.@tocbase\n";
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000672 O << "\t.previous\n";
Chris Lattner651adf32010-01-16 00:21:18 +0000673 O << ".L.";
674 CurrentFnSym->print(O, MAI);
675 O << ":\n";
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000676 } else {
Chris Lattner651adf32010-01-16 00:21:18 +0000677 CurrentFnSym->print(O, MAI);
678 O << ":\n";
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000679 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000680
681 // Emit pre-function debug information.
Devang Patelaa1e8432009-01-08 23:40:34 +0000682 DW->BeginFunction(&MF);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000683
684 // Print out code for the function.
685 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
686 I != E; ++I) {
687 // Print a label for the basic block.
688 if (I != MF.begin()) {
Chris Lattner2faa4ef2009-09-13 18:25:37 +0000689 EmitBasicBlockStart(I);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000690 }
691 for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
692 II != E; ++II) {
693 // Print the assembly for the instruction.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000694 printMachineInstruction(II);
695 }
696 }
697
Chris Lattner651adf32010-01-16 00:21:18 +0000698 O << "\t.size\t";
699 CurrentFnSym->print(O, MAI);
700 O << ",.-";
701 CurrentFnSym->print(O, MAI);
702 O << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000703
Chris Lattner73266f92009-08-19 05:49:37 +0000704 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang, TM));
Dale Johannesendd9e1c92008-12-03 19:33:10 +0000705
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000706 // Emit post-function debug information.
Devang Patelaa1e8432009-01-08 23:40:34 +0000707 DW->EndFunction(&MF);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000708
Bill Wendling6fb58e12009-11-09 21:20:14 +0000709 // Print out jump tables referenced by the function.
710 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
711
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000712 // We didn't modify anything.
713 return false;
714}
715
Chris Lattnerae982212009-07-21 18:38:57 +0000716void PPCLinuxAsmPrinter::PrintGlobalVariable(const GlobalVariable *GVar) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000717 const TargetData *TD = TM.getTargetData();
718
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000719 if (!GVar->hasInitializer())
720 return; // External global require no code
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000721
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000722 // Check to see if this is a special global used by LLVM, if so, emit it.
723 if (EmitSpecialLLVMGlobal(GVar))
724 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000725
Chris Lattner22b24952010-01-16 01:12:01 +0000726 MCSymbol *GVarSym = GetGlobalValueSymbol(GVar);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000727
Chris Lattner22b24952010-01-16 01:12:01 +0000728 printVisibility(GVarSym, GVar->getVisibility());
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000729
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000730 Constant *C = GVar->getInitializer();
731 const Type *Type = C->getType();
Duncan Sandsec4f97d2009-05-09 07:06:46 +0000732 unsigned Size = TD->getTypeAllocSize(Type);
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000733 unsigned Align = TD->getPreferredAlignmentLog(GVar);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000734
Chris Lattner73266f92009-08-19 05:49:37 +0000735 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(GVar, Mang,
736 TM));
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000737
738 if (C->isNullValue() && /* FIXME: Verify correct */
739 !GVar->hasSection() &&
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000740 (GVar->hasLocalLinkage() || GVar->hasExternalLinkage() ||
Duncan Sands19d161f2009-03-07 15:45:40 +0000741 GVar->isWeakForLinker())) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000742 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000743
744 if (GVar->hasExternalLinkage()) {
Chris Lattner22b24952010-01-16 01:12:01 +0000745 O << "\t.global ";
746 GVarSym->print(O, MAI);
747 O << '\n';
748 O << "\t.type ";
749 GVarSym->print(O, MAI);
750 O << ", @object\n";
751 GVarSym->print(O, MAI);
752 O << ":\n";
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000753 O << "\t.zero " << Size << '\n';
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000754 } else if (GVar->hasLocalLinkage()) {
Chris Lattner22b24952010-01-16 01:12:01 +0000755 O << MAI->getLCOMMDirective();
756 GVarSym->print(O, MAI);
757 O << ',' << Size;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000758 } else {
Chris Lattner22b24952010-01-16 01:12:01 +0000759 O << ".comm ";
760 GVarSym->print(O, MAI);
761 O << ',' << Size;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000762 }
Evan Cheng11db8142009-03-24 00:17:40 +0000763 if (VerboseAsm) {
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000764 O << "\t\t" << MAI->getCommentString() << " '";
Dan Gohman2aa282f2009-08-13 01:36:44 +0000765 WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
Evan Cheng11db8142009-03-24 00:17:40 +0000766 O << "'";
767 }
768 O << '\n';
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000769 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000770 }
771
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000772 switch (GVar->getLinkage()) {
Duncan Sands19d161f2009-03-07 15:45:40 +0000773 case GlobalValue::LinkOnceAnyLinkage:
774 case GlobalValue::LinkOnceODRLinkage:
775 case GlobalValue::WeakAnyLinkage:
776 case GlobalValue::WeakODRLinkage:
Duncan Sandsb95df792009-03-11 20:14:15 +0000777 case GlobalValue::CommonLinkage:
Dale Johannesenda551282009-08-24 01:03:42 +0000778 case GlobalValue::LinkerPrivateLinkage:
Chris Lattner22b24952010-01-16 01:12:01 +0000779 O << "\t.global ";
780 GVarSym->print(O, MAI);
781 O << "\n\t.type ";
782 GVarSym->print(O, MAI);
783 O << ", @object\n\t.weak ";
784 GVarSym->print(O, MAI);
785 O << '\n';
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000786 break;
787 case GlobalValue::AppendingLinkage:
788 // FIXME: appending linkage variables should go into a section of
789 // their name or something. For now, just emit them as external.
790 case GlobalValue::ExternalLinkage:
791 // If external or appending, declare as a global symbol
Chris Lattner22b24952010-01-16 01:12:01 +0000792 O << "\t.global ";
793 GVarSym->print(O, MAI);
794 O << "\n\t.type ";
795 GVarSym->print(O, MAI);
796 O << ", @object\n";
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000797 // FALL THROUGH
798 case GlobalValue::InternalLinkage:
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000799 case GlobalValue::PrivateLinkage:
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000800 break;
801 default:
Edwin Törökbd448e32009-07-14 16:55:14 +0000802 llvm_unreachable("Unknown linkage type!");
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000803 }
804
805 EmitAlignment(Align, GVar);
Chris Lattner22b24952010-01-16 01:12:01 +0000806 GVarSym->print(O, MAI);
807 O << ":";
Evan Cheng11db8142009-03-24 00:17:40 +0000808 if (VerboseAsm) {
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000809 O << "\t\t\t\t" << MAI->getCommentString() << " '";
Dan Gohman2aa282f2009-08-13 01:36:44 +0000810 WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
Evan Cheng11db8142009-03-24 00:17:40 +0000811 O << "'";
812 }
813 O << '\n';
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000814
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000815 EmitGlobalConstant(C);
816 O << '\n';
817}
818
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000819bool PPCLinuxAsmPrinter::doFinalization(Module &M) {
820 const TargetData *TD = TM.getTargetData();
821
822 bool isPPC64 = TD->getPointerSizeInBits() == 64;
823
824 if (isPPC64 && !TOC.empty()) {
825 // FIXME 64-bit SVR4: Use MCSection here?
826 O << "\t.section\t\".toc\",\"aw\"\n";
827
Chris Lattner5eeaf2a2010-01-16 02:00:23 +0000828 // FIXME: This is nondeterminstic!
Chris Lattnerc3009922010-01-16 02:09:06 +0000829 for (DenseMap<const MCSymbol*, const MCSymbol*>::iterator I = TOC.begin(),
830 E = TOC.end(); I != E; ++I) {
Chris Lattner5eeaf2a2010-01-16 02:00:23 +0000831 I->second->print(O, MAI);
832 O << ":\n";
Chris Lattnerc3009922010-01-16 02:09:06 +0000833 O << "\t.tc ";
834 I->first->print(O, MAI);
835 O << "[TC],";
836 I->first->print(O, MAI);
837 O << '\n';
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000838 }
839 }
840
841 return AsmPrinter::doFinalization(M);
842}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000843
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000844/// runOnMachineFunction - This uses the printMachineInstruction()
845/// method to print assembly for each instruction.
846///
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000847bool PPCDarwinAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Bill Wendling4f405312009-02-24 08:30:20 +0000848 this->MF = &MF;
849
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000850 SetupMachineFunction(MF);
851 O << "\n\n";
Dale Johannesenfb3ac732007-11-20 23:24:42 +0000852
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000853 // Print out constants referenced by the function
854 EmitConstantPool(MF.getConstantPool());
855
856 // Print out labels for the function.
857 const Function *F = MF.getFunction();
Chris Lattner73266f92009-08-19 05:49:37 +0000858 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang, TM));
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000859
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000860 switch (F->getLinkage()) {
Edwin Törökbd448e32009-07-14 16:55:14 +0000861 default: llvm_unreachable("Unknown linkage type!");
evancheng47ae8142009-01-25 06:32:01 +0000862 case Function::PrivateLinkage:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000863 case Function::InternalLinkage: // Symbols default to internal.
864 break;
865 case Function::ExternalLinkage:
Chris Lattner651adf32010-01-16 00:21:18 +0000866 O << "\t.globl\t";
867 CurrentFnSym->print(O, MAI);
868 O << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000869 break;
Duncan Sands19d161f2009-03-07 15:45:40 +0000870 case Function::WeakAnyLinkage:
871 case Function::WeakODRLinkage:
872 case Function::LinkOnceAnyLinkage:
873 case Function::LinkOnceODRLinkage:
Dale Johannesenda551282009-08-24 01:03:42 +0000874 case Function::LinkerPrivateLinkage:
Chris Lattner651adf32010-01-16 00:21:18 +0000875 O << "\t.globl\t";
876 CurrentFnSym->print(O, MAI);
877 O << '\n';
878 O << "\t.weak_definition\t";
879 CurrentFnSym->print(O, MAI);
880 O << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000881 break;
882 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000883
Chris Lattner651adf32010-01-16 00:21:18 +0000884 printVisibility(CurrentFnSym, F->getVisibility());
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000885
Bill Wendling25a8ae32009-06-30 22:38:32 +0000886 EmitAlignment(MF.getAlignment(), F);
Chris Lattner651adf32010-01-16 00:21:18 +0000887 CurrentFnSym->print(O, MAI);
888 O << ":\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000889
890 // Emit pre-function debug information.
Devang Patelaa1e8432009-01-08 23:40:34 +0000891 DW->BeginFunction(&MF);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000892
Bill Wendling36ccaea2008-01-26 06:51:24 +0000893 // If the function is empty, then we need to emit *something*. Otherwise, the
894 // function's label might be associated with something that it wasn't meant to
895 // be associated with. We emit a noop in this situation.
896 MachineFunction::iterator I = MF.begin();
897
Bill Wendlingb5880a72008-01-26 09:03:52 +0000898 if (++I == MF.end() && MF.front().empty())
899 O << "\tnop\n";
Bill Wendling36ccaea2008-01-26 06:51:24 +0000900
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000901 // Print out code for the function.
902 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
903 I != E; ++I) {
904 // Print a label for the basic block.
905 if (I != MF.begin()) {
Chris Lattner2faa4ef2009-09-13 18:25:37 +0000906 EmitBasicBlockStart(I);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000907 }
Bill Wendling36ccaea2008-01-26 06:51:24 +0000908 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
909 II != IE; ++II) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000910 // Print the assembly for the instruction.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000911 printMachineInstruction(II);
912 }
913 }
914
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000915 // Emit post-function debug information.
Devang Patelaa1e8432009-01-08 23:40:34 +0000916 DW->EndFunction(&MF);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000917
Bill Wendling5019fe02009-11-09 21:45:26 +0000918 // Print out jump tables referenced by the function.
919 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
920
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000921 // We didn't modify anything.
922 return false;
923}
924
925
Bob Wilsonb5f835e2009-09-30 22:06:26 +0000926void PPCDarwinAsmPrinter::EmitStartOfAsmFile(Module &M) {
Dan Gohman12300e12008-03-25 21:45:14 +0000927 static const char *const CPUDirectives[] = {
Dale Johannesen161badc2008-02-14 23:35:16 +0000928 "",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000929 "ppc",
930 "ppc601",
931 "ppc602",
932 "ppc603",
933 "ppc7400",
934 "ppc750",
935 "ppc970",
936 "ppc64"
937 };
938
939 unsigned Directive = Subtarget.getDarwinDirective();
940 if (Subtarget.isGigaProcessor() && Directive < PPC::DIR_970)
941 Directive = PPC::DIR_970;
942 if (Subtarget.hasAltivec() && Directive < PPC::DIR_7400)
943 Directive = PPC::DIR_7400;
944 if (Subtarget.isPPC64() && Directive < PPC::DIR_970)
945 Directive = PPC::DIR_64;
946 assert(Directive <= PPC::DIR_64 && "Directive out of range.");
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000947 O << "\t.machine " << CPUDirectives[Directive] << '\n';
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000948
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000949 // Prime text sections so they are adjacent. This reduces the likelihood a
950 // large data or debug section causes a branch to exceed 16M limit.
Chris Lattnerf4815552009-08-03 22:52:21 +0000951 TargetLoweringObjectFileMachO &TLOFMacho =
952 static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
Chris Lattner73266f92009-08-19 05:49:37 +0000953 OutStreamer.SwitchSection(TLOFMacho.getTextCoalSection());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000954 if (TM.getRelocationModel() == Reloc::PIC_) {
Chris Lattner73266f92009-08-19 05:49:37 +0000955 OutStreamer.SwitchSection(
956 TLOFMacho.getMachOSection("__TEXT", "__picsymbolstub1",
957 MCSectionMachO::S_SYMBOL_STUBS |
958 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
959 32, SectionKind::getText()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000960 } else if (TM.getRelocationModel() == Reloc::DynamicNoPIC) {
Chris Lattner73266f92009-08-19 05:49:37 +0000961 OutStreamer.SwitchSection(
962 TLOFMacho.getMachOSection("__TEXT","__symbol_stub1",
963 MCSectionMachO::S_SYMBOL_STUBS |
964 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
965 16, SectionKind::getText()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000966 }
Chris Lattner73266f92009-08-19 05:49:37 +0000967 OutStreamer.SwitchSection(getObjFileLowering().getTextSection());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000968}
969
Chris Lattnerae982212009-07-21 18:38:57 +0000970void PPCDarwinAsmPrinter::PrintGlobalVariable(const GlobalVariable *GVar) {
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000971 const TargetData *TD = TM.getTargetData();
972
973 if (!GVar->hasInitializer())
974 return; // External global require no code
975
976 // Check to see if this is a special global used by LLVM, if so, emit it.
977 if (EmitSpecialLLVMGlobal(GVar)) {
978 if (TM.getRelocationModel() == Reloc::Static) {
Daniel Dunbare03513b2009-07-25 23:55:21 +0000979 if (GVar->getName() == "llvm.global_ctors")
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000980 O << ".reference .constructors_used\n";
Daniel Dunbare03513b2009-07-25 23:55:21 +0000981 else if (GVar->getName() == "llvm.global_dtors")
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000982 O << ".reference .destructors_used\n";
983 }
984 return;
985 }
986
Chris Lattner22b24952010-01-16 01:12:01 +0000987 MCSymbol *GVarSym = GetGlobalValueSymbol(GVar);
988 printVisibility(GVarSym, GVar->getVisibility());
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000989
990 Constant *C = GVar->getInitializer();
991 const Type *Type = C->getType();
Duncan Sandsec4f97d2009-05-09 07:06:46 +0000992 unsigned Size = TD->getTypeAllocSize(Type);
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000993 unsigned Align = TD->getPreferredAlignmentLog(GVar);
994
Chris Lattnere6ad12f2009-07-31 18:48:30 +0000995 const MCSection *TheSection =
Chris Lattner2931fe42009-07-29 05:09:30 +0000996 getObjFileLowering().SectionForGlobal(GVar, Mang, TM);
Chris Lattner73266f92009-08-19 05:49:37 +0000997 OutStreamer.SwitchSection(TheSection);
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000998
Chris Lattnerdb727932009-08-04 05:35:56 +0000999 /// FIXME: Drive this off the section!
Anton Korobeynikov248e9c52008-08-08 18:23:25 +00001000 if (C->isNullValue() && /* FIXME: Verify correct */
1001 !GVar->hasSection() &&
Rafael Espindolaa168fc92009-01-15 20:18:42 +00001002 (GVar->hasLocalLinkage() || GVar->hasExternalLinkage() ||
Duncan Sands19d161f2009-03-07 15:45:40 +00001003 GVar->isWeakForLinker()) &&
Chris Lattner87bc69b2009-07-24 04:08:17 +00001004 // Don't put things that should go in the cstring section into "comm".
Chris Lattnerd8310522009-07-27 05:32:16 +00001005 !TheSection->getKind().isMergeableCString()) {
Anton Korobeynikov248e9c52008-08-08 18:23:25 +00001006 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
1007
1008 if (GVar->hasExternalLinkage()) {
Chris Lattner22b24952010-01-16 01:12:01 +00001009 O << "\t.globl ";
1010 GVarSym->print(O, MAI);
1011 O << '\n';
1012 O << "\t.zerofill __DATA, __common, ";
1013 GVarSym->print(O, MAI);
1014 O << ", " << Size << ", " << Align;
Rafael Espindolaa168fc92009-01-15 20:18:42 +00001015 } else if (GVar->hasLocalLinkage()) {
Chris Lattner22b24952010-01-16 01:12:01 +00001016 O << MAI->getLCOMMDirective();
1017 GVarSym->print(O, MAI);
1018 O << ',' << Size << ',' << Align;
Anton Korobeynikov248e9c52008-08-08 18:23:25 +00001019 } else if (!GVar->hasCommonLinkage()) {
Chris Lattner22b24952010-01-16 01:12:01 +00001020 O << "\t.globl ";
1021 GVarSym->print(O, MAI);
1022 O << '\n' << MAI->getWeakDefDirective();
1023 GVarSym->print(O, MAI);
1024 O << '\n';
Anton Korobeynikov248e9c52008-08-08 18:23:25 +00001025 EmitAlignment(Align, GVar);
Chris Lattner22b24952010-01-16 01:12:01 +00001026 GVarSym->print(O, MAI);
1027 O << ":";
Evan Cheng11db8142009-03-24 00:17:40 +00001028 if (VerboseAsm) {
Chris Lattnera5ef4d32009-08-22 21:43:10 +00001029 O << "\t\t\t\t" << MAI->getCommentString() << " ";
Dan Gohman2aa282f2009-08-13 01:36:44 +00001030 WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
Evan Cheng11db8142009-03-24 00:17:40 +00001031 }
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +00001032 O << '\n';
Anton Korobeynikov248e9c52008-08-08 18:23:25 +00001033 EmitGlobalConstant(C);
1034 return;
1035 } else {
Chris Lattner22b24952010-01-16 01:12:01 +00001036 O << ".comm ";
1037 GVarSym->print(O, MAI);
1038 O << ',' << Size;
Anton Korobeynikov248e9c52008-08-08 18:23:25 +00001039 // Darwin 9 and above support aligned common data.
1040 if (Subtarget.isDarwin9())
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +00001041 O << ',' << Align;
Anton Korobeynikov248e9c52008-08-08 18:23:25 +00001042 }
Evan Cheng11db8142009-03-24 00:17:40 +00001043 if (VerboseAsm) {
Chris Lattnera5ef4d32009-08-22 21:43:10 +00001044 O << "\t\t" << MAI->getCommentString() << " '";
Dan Gohman2aa282f2009-08-13 01:36:44 +00001045 WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
Evan Cheng11db8142009-03-24 00:17:40 +00001046 O << "'";
1047 }
1048 O << '\n';
Anton Korobeynikov248e9c52008-08-08 18:23:25 +00001049 return;
1050 }
1051
1052 switch (GVar->getLinkage()) {
Chris Lattner22b24952010-01-16 01:12:01 +00001053 case GlobalValue::LinkOnceAnyLinkage:
1054 case GlobalValue::LinkOnceODRLinkage:
1055 case GlobalValue::WeakAnyLinkage:
1056 case GlobalValue::WeakODRLinkage:
1057 case GlobalValue::CommonLinkage:
1058 case GlobalValue::LinkerPrivateLinkage:
1059 O << "\t.globl ";
1060 GVarSym->print(O, MAI);
1061 O << "\n\t.weak_definition ";
1062 GVarSym->print(O, MAI);
1063 O << '\n';
Anton Korobeynikov248e9c52008-08-08 18:23:25 +00001064 break;
Chris Lattner22b24952010-01-16 01:12:01 +00001065 case GlobalValue::AppendingLinkage:
Anton Korobeynikov248e9c52008-08-08 18:23:25 +00001066 // FIXME: appending linkage variables should go into a section of
1067 // their name or something. For now, just emit them as external.
Chris Lattner22b24952010-01-16 01:12:01 +00001068 case GlobalValue::ExternalLinkage:
Anton Korobeynikov248e9c52008-08-08 18:23:25 +00001069 // If external or appending, declare as a global symbol
Chris Lattner22b24952010-01-16 01:12:01 +00001070 O << "\t.globl ";
1071 GVarSym->print(O, MAI);
1072 O << '\n';
Anton Korobeynikov248e9c52008-08-08 18:23:25 +00001073 // FALL THROUGH
Chris Lattner22b24952010-01-16 01:12:01 +00001074 case GlobalValue::InternalLinkage:
1075 case GlobalValue::PrivateLinkage:
Anton Korobeynikov248e9c52008-08-08 18:23:25 +00001076 break;
Chris Lattner22b24952010-01-16 01:12:01 +00001077 default:
Edwin Törökbd448e32009-07-14 16:55:14 +00001078 llvm_unreachable("Unknown linkage type!");
Anton Korobeynikov248e9c52008-08-08 18:23:25 +00001079 }
1080
1081 EmitAlignment(Align, GVar);
Chris Lattner22b24952010-01-16 01:12:01 +00001082 GVarSym->print(O, MAI);
1083 O << ":";
Evan Cheng11db8142009-03-24 00:17:40 +00001084 if (VerboseAsm) {
Chris Lattnera5ef4d32009-08-22 21:43:10 +00001085 O << "\t\t\t\t" << MAI->getCommentString() << " '";
Dan Gohman2aa282f2009-08-13 01:36:44 +00001086 WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
Evan Cheng11db8142009-03-24 00:17:40 +00001087 O << "'";
1088 }
1089 O << '\n';
Anton Korobeynikov248e9c52008-08-08 18:23:25 +00001090
Anton Korobeynikov248e9c52008-08-08 18:23:25 +00001091 EmitGlobalConstant(C);
1092 O << '\n';
1093}
1094
Anton Korobeynikov28f86d12008-08-08 18:22:59 +00001095bool PPCDarwinAsmPrinter::doFinalization(Module &M) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001096 const TargetData *TD = TM.getTargetData();
1097
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001098 bool isPPC64 = TD->getPointerSizeInBits() == 64;
1099
Chris Lattnerf4815552009-08-03 22:52:21 +00001100 // Darwin/PPC always uses mach-o.
1101 TargetLoweringObjectFileMachO &TLOFMacho =
1102 static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
1103
Chris Lattner72a676a2009-08-10 01:39:42 +00001104
1105 const MCSection *LSPSection = 0;
1106 if (!FnStubs.empty()) // .lazy_symbol_pointer
1107 LSPSection = TLOFMacho.getLazySymbolPointerSection();
1108
1109
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001110 // Output stubs for dynamically-linked functions
Chris Lattner189198f2009-07-15 00:55:58 +00001111 if (TM.getRelocationModel() == Reloc::PIC_ && !FnStubs.empty()) {
Chris Lattnerf4815552009-08-03 22:52:21 +00001112 const MCSection *StubSection =
Chris Lattner72a676a2009-08-10 01:39:42 +00001113 TLOFMacho.getMachOSection("__TEXT", "__picsymbolstub1",
1114 MCSectionMachO::S_SYMBOL_STUBS |
1115 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
1116 32, SectionKind::getText());
Chris Lattner5eeaf2a2010-01-16 02:00:23 +00001117 // FIXME: This is emitting in nondeterminstic order!
1118 for (DenseMap<const MCSymbol*, FnStubInfo>::iterator I =
1119 FnStubs.begin(), E = FnStubs.end(); I != E; ++I) {
Chris Lattner73266f92009-08-19 05:49:37 +00001120 OutStreamer.SwitchSection(StubSection);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001121 EmitAlignment(4);
Chris Lattnerdc4cce62009-07-15 02:33:19 +00001122 const FnStubInfo &Info = I->second;
Chris Lattner1774fd32010-01-13 19:13:16 +00001123 Info.Stub->print(O, MAI);
Chris Lattner9bc87482010-01-13 19:00:57 +00001124 O << ":\n";
Chris Lattner5eeaf2a2010-01-16 02:00:23 +00001125 O << "\t.indirect_symbol ";
1126 I->first->print(O, MAI);
1127 O << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001128 O << "\tmflr r0\n";
Chris Lattner9bc87482010-01-13 19:00:57 +00001129 O << "\tbcl 20,31,";
Chris Lattner1774fd32010-01-13 19:13:16 +00001130 Info.AnonSymbol->print(O, MAI);
Chris Lattner9bc87482010-01-13 19:00:57 +00001131 O << '\n';
Chris Lattner1774fd32010-01-13 19:13:16 +00001132 Info.AnonSymbol->print(O, MAI);
Chris Lattner9bc87482010-01-13 19:00:57 +00001133 O << ":\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001134 O << "\tmflr r11\n";
Chris Lattner9bc87482010-01-13 19:00:57 +00001135 O << "\taddis r11,r11,ha16(";
Chris Lattner1774fd32010-01-13 19:13:16 +00001136 Info.LazyPtr->print(O, MAI);
Chris Lattner9bc87482010-01-13 19:00:57 +00001137 O << '-';
Chris Lattner1774fd32010-01-13 19:13:16 +00001138 Info.AnonSymbol->print(O, MAI);
Evan Chenga65854f2008-12-05 01:06:39 +00001139 O << ")\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001140 O << "\tmtlr r0\n";
Chris Lattner63e910f2009-07-15 02:56:53 +00001141 O << (isPPC64 ? "\tldu" : "\tlwzu") << " r12,lo16(";
Chris Lattner1774fd32010-01-13 19:13:16 +00001142 Info.LazyPtr->print(O, MAI);
Chris Lattner9bc87482010-01-13 19:00:57 +00001143 O << '-';
Chris Lattner1774fd32010-01-13 19:13:16 +00001144 Info.AnonSymbol->print(O, MAI);
Chris Lattner9bc87482010-01-13 19:00:57 +00001145 O << ")(r11)\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001146 O << "\tmtctr r12\n";
1147 O << "\tbctr\n";
Chris Lattnerc0a7f1d2009-07-16 01:23:26 +00001148
Chris Lattner73266f92009-08-19 05:49:37 +00001149 OutStreamer.SwitchSection(LSPSection);
Chris Lattner1774fd32010-01-13 19:13:16 +00001150 Info.LazyPtr->print(O, MAI);
Chris Lattner9bc87482010-01-13 19:00:57 +00001151 O << ":\n";
Chris Lattner5eeaf2a2010-01-16 02:00:23 +00001152 O << "\t.indirect_symbol ";
1153 I->first->print(O, MAI);
1154 O << '\n';
Chris Lattnerbaa12da2009-07-15 02:36:21 +00001155 O << (isPPC64 ? "\t.quad" : "\t.long") << " dyld_stub_binding_helper\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001156 }
Chris Lattner189198f2009-07-15 00:55:58 +00001157 } else if (!FnStubs.empty()) {
Chris Lattner72a676a2009-08-10 01:39:42 +00001158 const MCSection *StubSection =
1159 TLOFMacho.getMachOSection("__TEXT","__symbol_stub1",
1160 MCSectionMachO::S_SYMBOL_STUBS |
1161 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
1162 16, SectionKind::getText());
Chris Lattnerf4815552009-08-03 22:52:21 +00001163
Chris Lattner5eeaf2a2010-01-16 02:00:23 +00001164 // FIXME: This is emitting in nondeterminstic order!
1165 for (DenseMap<const MCSymbol*, FnStubInfo>::iterator I = FnStubs.begin(),
1166 E = FnStubs.end(); I != E; ++I) {
Chris Lattner73266f92009-08-19 05:49:37 +00001167 OutStreamer.SwitchSection(StubSection);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001168 EmitAlignment(4);
Chris Lattnerdc4cce62009-07-15 02:33:19 +00001169 const FnStubInfo &Info = I->second;
Chris Lattner1774fd32010-01-13 19:13:16 +00001170 Info.Stub->print(O, MAI);
Chris Lattner9bc87482010-01-13 19:00:57 +00001171 O << ":\n";
Chris Lattner5eeaf2a2010-01-16 02:00:23 +00001172 O << "\t.indirect_symbol ";
1173 I->first->print(O, MAI);
1174 O << '\n';
Chris Lattner9bc87482010-01-13 19:00:57 +00001175 O << "\tlis r11,ha16(";
Chris Lattner1774fd32010-01-13 19:13:16 +00001176 Info.LazyPtr->print(O, MAI);
Chris Lattner9bc87482010-01-13 19:00:57 +00001177 O << ")\n";
Chris Lattnerbaa12da2009-07-15 02:36:21 +00001178 O << (isPPC64 ? "\tldu" : "\tlwzu") << " r12,lo16(";
Chris Lattner1774fd32010-01-13 19:13:16 +00001179 Info.LazyPtr->print(O, MAI);
Chris Lattner9bc87482010-01-13 19:00:57 +00001180 O << ")(r11)\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001181 O << "\tmtctr r12\n";
1182 O << "\tbctr\n";
Chris Lattner73266f92009-08-19 05:49:37 +00001183 OutStreamer.SwitchSection(LSPSection);
Chris Lattner1774fd32010-01-13 19:13:16 +00001184 Info.LazyPtr->print(O, MAI);
Chris Lattner9bc87482010-01-13 19:00:57 +00001185 O << ":\n";
Chris Lattner5eeaf2a2010-01-16 02:00:23 +00001186 O << "\t.indirect_symbol ";
1187 I->first->print(O, MAI);
1188 O << '\n';
Chris Lattnerbaa12da2009-07-15 02:36:21 +00001189 O << (isPPC64 ? "\t.quad" : "\t.long") << " dyld_stub_binding_helper\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001190 }
1191 }
1192
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +00001193 O << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001194
Chris Lattnera5ef4d32009-08-22 21:43:10 +00001195 if (MAI->doesSupportExceptionHandling() && MMI) {
Dale Johannesenfb3ac732007-11-20 23:24:42 +00001196 // Add the (possibly multiple) personalities to the set of global values.
Dale Johannesen85535762008-04-02 00:25:04 +00001197 // Only referenced functions get into the Personalities list.
Chris Lattner2424eac2009-06-24 19:09:55 +00001198 const std::vector<Function *> &Personalities = MMI->getPersonalities();
Dale Johannesenfb3ac732007-11-20 23:24:42 +00001199 for (std::vector<Function *>::const_iterator I = Personalities.begin(),
Chris Lattner83cf1ec2009-07-15 01:14:44 +00001200 E = Personalities.end(); I != E; ++I) {
1201 if (*I)
Chris Lattnerc3009922010-01-16 02:09:06 +00001202 GVStubs[GetGlobalValueSymbol(*I)] =
Chris Lattner5eeaf2a2010-01-16 02:00:23 +00001203 GetPrivateGlobalValueSymbolStub(*I, "$non_lazy_ptr");
Chris Lattner83cf1ec2009-07-15 01:14:44 +00001204 }
Dale Johannesenfb3ac732007-11-20 23:24:42 +00001205 }
1206
Chris Lattnerf4815552009-08-03 22:52:21 +00001207 // Output macho stubs for external and common global variables.
Dan Gohman3f7d94b2007-10-03 19:26:29 +00001208 if (!GVStubs.empty()) {
Chris Lattner72a676a2009-08-10 01:39:42 +00001209 // Switch with ".non_lazy_symbol_pointer" directive.
Chris Lattner73266f92009-08-19 05:49:37 +00001210 OutStreamer.SwitchSection(TLOFMacho.getNonLazySymbolPointerSection());
Chris Lattner2d61eaa2009-08-10 17:58:51 +00001211 EmitAlignment(isPPC64 ? 3 : 2);
1212
Chris Lattner5eeaf2a2010-01-16 02:00:23 +00001213 // FIXME: This is nondeterminstic.
Chris Lattnerc3009922010-01-16 02:09:06 +00001214 for (DenseMap<const MCSymbol *, const MCSymbol *>::iterator
1215 I = GVStubs.begin(), E = GVStubs.end(); I != E; ++I) {
Chris Lattner5eeaf2a2010-01-16 02:00:23 +00001216 I->second->print(O, MAI);
1217 O << ":\n";
Chris Lattnerc3009922010-01-16 02:09:06 +00001218 O << "\t.indirect_symbol ";
1219 I->first->print(O, MAI);
1220 O << '\n';
Chris Lattner83cf1ec2009-07-15 01:14:44 +00001221 O << (isPPC64 ? "\t.quad\t0\n" : "\t.long\t0\n");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001222 }
1223 }
1224
Evan Chenga65854f2008-12-05 01:06:39 +00001225 if (!HiddenGVStubs.empty()) {
Chris Lattner73266f92009-08-19 05:49:37 +00001226 OutStreamer.SwitchSection(getObjFileLowering().getDataSection());
Chris Lattner83cf1ec2009-07-15 01:14:44 +00001227 EmitAlignment(isPPC64 ? 3 : 2);
Chris Lattner5eeaf2a2010-01-16 02:00:23 +00001228 // FIXME: This is nondeterminstic.
Chris Lattnerc3009922010-01-16 02:09:06 +00001229 for (DenseMap<const MCSymbol *, const MCSymbol *>::iterator
1230 I = HiddenGVStubs.begin(), E = HiddenGVStubs.end(); I != E; ++I) {
Chris Lattner5eeaf2a2010-01-16 02:00:23 +00001231 I->second->print(O, MAI);
1232 O << ":\n";
Chris Lattnerc3009922010-01-16 02:09:06 +00001233 O << (isPPC64 ? "\t.quad\t" : "\t.long\t");
1234 I->first->print(O, MAI);
1235 O << '\n';
Evan Chenga65854f2008-12-05 01:06:39 +00001236 }
1237 }
1238
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001239 // Funny Darwin hack: This flag tells the linker that no global symbols
1240 // contain code that falls through to other global symbols (e.g. the obvious
1241 // implementation of multiple entry points). If this doesn't occur, the
1242 // linker can safely perform dead code stripping. Since LLVM never generates
1243 // code that does this, it is always safe to set.
Chris Lattnerfe284f72009-10-19 18:03:08 +00001244 OutStreamer.EmitAssemblerFlag(MCStreamer::SubsectionsViaSymbols);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001245
Dan Gohman4a558a32007-07-25 19:33:14 +00001246 return AsmPrinter::doFinalization(M);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001247}
1248
1249
1250
1251/// createPPCAsmPrinterPass - Returns a pass that prints the PPC assembly code
1252/// for a MachineFunction to the given output stream, in a format that the
1253/// Darwin assembler can deal with.
1254///
Daniel Dunbar4cb63652009-08-13 23:48:47 +00001255static AsmPrinter *createPPCAsmPrinterPass(formatted_raw_ostream &o,
1256 TargetMachine &tm,
Chris Lattner621c44d2009-08-22 20:48:53 +00001257 const MCAsmInfo *tai,
Daniel Dunbar4cb63652009-08-13 23:48:47 +00001258 bool verbose) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001259 const PPCSubtarget *Subtarget = &tm.getSubtarget<PPCSubtarget>();
1260
Chris Lattnerae982212009-07-21 18:38:57 +00001261 if (Subtarget->isDarwin())
Daniel Dunbaref5abb42009-08-13 19:38:51 +00001262 return new PPCDarwinAsmPrinter(o, tm, tai, verbose);
1263 return new PPCLinuxAsmPrinter(o, tm, tai, verbose);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001264}
Anton Korobeynikov01c0e9f2008-08-17 13:54:28 +00001265
Bob Wilsonebbc1c42009-06-23 23:59:40 +00001266// Force static initialization.
Daniel Dunbarfe5939f2009-07-15 20:24:03 +00001267extern "C" void LLVMInitializePowerPCAsmPrinter() {
Daniel Dunbarfe5939f2009-07-15 20:24:03 +00001268 TargetRegistry::RegisterAsmPrinter(ThePPC32Target, createPPCAsmPrinterPass);
Daniel Dunbarfe5939f2009-07-15 20:24:03 +00001269 TargetRegistry::RegisterAsmPrinter(ThePPC64Target, createPPCAsmPrinterPass);
1270}