blob: 38bf1ea61924d921b8230e141bb714a7cd6061dc [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"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000030#include "llvm/CodeGen/MachineFunctionPass.h"
31#include "llvm/CodeGen/MachineInstr.h"
Bill Wendling36ccaea2008-01-26 06:51:24 +000032#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattnerc2cfe152010-01-20 21:16:14 +000033#include "llvm/CodeGen/MachineModuleInfoImpls.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 Lattner31a54742010-01-16 21:57:06 +000039#include "llvm/Target/Mangler.h"
Chris Lattnere6ad12f2009-07-31 18:48:30 +000040#include "llvm/Target/TargetLoweringObjectFile.h"
41#include "llvm/Target/TargetRegisterInfo.h"
42#include "llvm/Target/TargetInstrInfo.h"
43#include "llvm/Target/TargetOptions.h"
44#include "llvm/Target/TargetRegistry.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000045#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 Lattnera6f2a102010-01-16 18:37:32 +000073 Stub = Printer->GetSymbolWithGlobalValueBase(GV, "$stub");
74 LazyPtr = Printer->GetSymbolWithGlobalValueBase(GV, "$lazy_ptr");
75 AnonSymbol = Printer->GetSymbolWithGlobalValueBase(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 Lattnerc2cfe152010-01-20 21:16:14 +000098 DenseMap<const MCSymbol*, const MCSymbol*> 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 Lattnerce409842010-01-17 21:43:43 +0000241 O << *FnInfo.Stub;
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 Lattnerce409842010-01-17 21:43:43 +0000249 O << *FnInfo.Stub;
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 Lattnerce409842010-01-17 21:43:43 +0000345 O << *TOCEntry << "@toc";
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000346 }
347
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000348 void printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000349 const char *Modifier);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000350
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000351 virtual bool runOnMachineFunction(MachineFunction &F) = 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000352 };
353
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000354 /// PPCLinuxAsmPrinter - PowerPC assembly printer, customized for Linux
Nick Lewycky492d06e2009-10-25 06:33:48 +0000355 class PPCLinuxAsmPrinter : public PPCAsmPrinter {
Bill Wendling4f405312009-02-24 08:30:20 +0000356 public:
Daniel Dunbarfe5939f2009-07-15 20:24:03 +0000357 explicit PPCLinuxAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
Chris Lattner621c44d2009-08-22 20:48:53 +0000358 const MCAsmInfo *T, bool V)
Daniel Dunbarb10d2222009-07-01 01:48:54 +0000359 : PPCAsmPrinter(O, TM, T, V){}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000360
361 virtual const char *getPassName() const {
362 return "Linux PPC Assembly Printer";
363 }
364
365 bool runOnMachineFunction(MachineFunction &F);
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000366 bool doFinalization(Module &M);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000367
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000368 void getAnalysisUsage(AnalysisUsage &AU) const {
369 AU.setPreservesAll();
370 AU.addRequired<MachineModuleInfo>();
Devang Patelaa1e8432009-01-08 23:40:34 +0000371 AU.addRequired<DwarfWriter>();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000372 PPCAsmPrinter::getAnalysisUsage(AU);
373 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000374 };
375
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000376 /// PPCDarwinAsmPrinter - PowerPC assembly printer, customized for Darwin/Mac
377 /// OS X
Nick Lewycky492d06e2009-10-25 06:33:48 +0000378 class PPCDarwinAsmPrinter : public PPCAsmPrinter {
David Greene302008d2009-07-14 20:18:05 +0000379 formatted_raw_ostream &OS;
Bill Wendling4f405312009-02-24 08:30:20 +0000380 public:
Daniel Dunbarfe5939f2009-07-15 20:24:03 +0000381 explicit PPCDarwinAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
Chris Lattner621c44d2009-08-22 20:48:53 +0000382 const MCAsmInfo *T, bool V)
Daniel Dunbarb10d2222009-07-01 01:48:54 +0000383 : PPCAsmPrinter(O, TM, T, V), OS(O) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000384
385 virtual const char *getPassName() const {
386 return "Darwin PPC Assembly Printer";
387 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000388
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000389 bool runOnMachineFunction(MachineFunction &F);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000390 bool doFinalization(Module &M);
Bob Wilsonb5f835e2009-09-30 22:06:26 +0000391 void EmitStartOfAsmFile(Module &M);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000392
Chris Lattner5b187502010-01-20 21:19:44 +0000393 void EmitFunctionStubs();
394
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000395 void getAnalysisUsage(AnalysisUsage &AU) const {
396 AU.setPreservesAll();
397 AU.addRequired<MachineModuleInfo>();
Devang Patelaa1e8432009-01-08 23:40:34 +0000398 AU.addRequired<DwarfWriter>();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000399 PPCAsmPrinter::getAnalysisUsage(AU);
400 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000401 };
402} // end of anonymous namespace
403
404// Include the auto-generated portion of the assembly writer
405#include "PPCGenAsmWriter.inc"
406
407void PPCAsmPrinter::printOp(const MachineOperand &MO) {
408 switch (MO.getType()) {
409 case MachineOperand::MO_Immediate:
Edwin Törökbd448e32009-07-14 16:55:14 +0000410 llvm_unreachable("printOp() does not handle immediate values");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000411
412 case MachineOperand::MO_MachineBasicBlock:
Chris Lattnerce409842010-01-17 21:43:43 +0000413 O << *GetMBBSymbol(MO.getMBB()->getNumber());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000414 return;
415 case MachineOperand::MO_JumpTableIndex:
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000416 O << MAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
Chris Lattner6017d482007-12-30 23:10:15 +0000417 << '_' << MO.getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000418 // FIXME: PIC relocation model
419 return;
420 case MachineOperand::MO_ConstantPoolIndex:
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000421 O << MAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber()
Chris Lattner6017d482007-12-30 23:10:15 +0000422 << '_' << MO.getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000423 return;
Bob Wilsone8cbca92009-11-04 21:31:18 +0000424 case MachineOperand::MO_BlockAddress:
Chris Lattnerce409842010-01-17 21:43:43 +0000425 O << *GetBlockAddressSymbol(MO.getBlockAddress());
Bob Wilsone8cbca92009-11-04 21:31:18 +0000426 return;
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000427 case MachineOperand::MO_ExternalSymbol: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000428 // Computing the address of an external symbol, not calling it.
Chris Lattnerc3009922010-01-16 02:09:06 +0000429 if (TM.getRelocationModel() == Reloc::Static) {
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000430 O << *GetExternalSymbolSymbol(MO.getSymbolName());
Chris Lattnerc3009922010-01-16 02:09:06 +0000431 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000432 }
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000433
Chris Lattnerc3009922010-01-16 02:09:06 +0000434 const MCSymbol *NLPSym =
435 OutContext.GetOrCreateSymbol(StringRef(MAI->getGlobalPrefix())+
436 MO.getSymbolName()+"$non_lazy_ptr");
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000437 const MCSymbol *&StubSym =
438 MMI->getObjFileInfo<MachineModuleInfoMachO>().getGVStubEntry(NLPSym);
439 if (StubSym == 0)
440 StubSym = GetExternalSymbolSymbol(MO.getSymbolName());
441
Chris Lattnerce409842010-01-17 21:43:43 +0000442 O << *NLPSym;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000443 return;
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000444 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000445 case MachineOperand::MO_GlobalAddress: {
446 // Computing the address of a global symbol, not calling it.
447 GlobalValue *GV = MO.getGlobal();
Chris Lattner5eeaf2a2010-01-16 02:00:23 +0000448 MCSymbol *SymToPrint;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000449
450 // External or weakly linked global variables need non-lazily-resolved stubs
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000451 if (TM.getRelocationModel() != Reloc::Static &&
452 (GV->isDeclaration() || GV->isWeakForLinker())) {
453 if (!GV->hasHiddenVisibility()) {
Chris Lattnera6f2a102010-01-16 18:37:32 +0000454 SymToPrint = GetSymbolWithGlobalValueBase(GV, "$non_lazy_ptr");
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000455 const MCSymbol *&StubSym =
456 MMI->getObjFileInfo<MachineModuleInfoMachO>().getGVStubEntry(SymToPrint);
457 if (StubSym == 0)
458 StubSym = GetGlobalValueSymbol(GV);
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000459 } else if (GV->isDeclaration() || GV->hasCommonLinkage() ||
460 GV->hasAvailableExternallyLinkage()) {
Chris Lattnera6f2a102010-01-16 18:37:32 +0000461 SymToPrint = GetSymbolWithGlobalValueBase(GV, "$non_lazy_ptr");
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000462
463 const MCSymbol *&StubSym =
464 MMI->getObjFileInfo<MachineModuleInfoMachO>().
465 getHiddenGVStubEntry(SymToPrint);
466 if (StubSym == 0)
467 StubSym = GetGlobalValueSymbol(GV);
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000468 } else {
Chris Lattner5eeaf2a2010-01-16 02:00:23 +0000469 SymToPrint = GetGlobalValueSymbol(GV);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000470 }
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000471 } else {
Chris Lattner5eeaf2a2010-01-16 02:00:23 +0000472 SymToPrint = GetGlobalValueSymbol(GV);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000473 }
Chris Lattner5eeaf2a2010-01-16 02:00:23 +0000474
Chris Lattnerce409842010-01-17 21:43:43 +0000475 O << *SymToPrint;
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000476
Anton Korobeynikov440f23d2008-11-22 16:15:34 +0000477 printOffset(MO.getOffset());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000478 return;
479 }
480
481 default:
482 O << "<unknown operand type: " << MO.getType() << ">";
483 return;
484 }
485}
486
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000487/// PrintAsmOperand - Print out an operand for an inline asm expression.
488///
489bool PPCAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000490 unsigned AsmVariant,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000491 const char *ExtraCode) {
492 // Does this asm operand have a single letter operand modifier?
493 if (ExtraCode && ExtraCode[0]) {
494 if (ExtraCode[1] != 0) return true; // Unknown modifier.
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000495
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000496 switch (ExtraCode[0]) {
497 default: return true; // Unknown modifier.
498 case 'c': // Don't print "$" before a global var name or constant.
499 // PPC never has a prefix.
500 printOperand(MI, OpNo);
501 return false;
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000502 case 'L': // Write second word of DImode reference.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000503 // Verify that this operand has two consecutive registers.
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000504 if (!MI->getOperand(OpNo).isReg() ||
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000505 OpNo+1 == MI->getNumOperands() ||
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000506 !MI->getOperand(OpNo+1).isReg())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000507 return true;
508 ++OpNo; // Return the high-part.
509 break;
510 case 'I':
511 // Write 'i' if an integer constant, otherwise nothing. Used to print
512 // addi vs add, etc.
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000513 if (MI->getOperand(OpNo).isImm())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000514 O << "i";
515 return false;
516 }
517 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000518
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000519 printOperand(MI, OpNo);
520 return false;
521}
522
Dale Johannesen0a42b9662009-08-18 00:18:39 +0000523// At the moment, all inline asm memory operands are a single register.
524// In any case, the output of this routine should always be just one
525// assembler operand.
526
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000527bool PPCAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000528 unsigned AsmVariant,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000529 const char *ExtraCode) {
530 if (ExtraCode && ExtraCode[0])
531 return true; // Unknown modifier.
Dale Johannesen0a42b9662009-08-18 00:18:39 +0000532 assert (MI->getOperand(OpNo).isReg());
Dale Johannesen5e699502009-08-26 18:10:32 +0000533 O << "0(";
Dale Johannesen0a42b9662009-08-18 00:18:39 +0000534 printOperand(MI, OpNo);
Dale Johannesen5e699502009-08-26 18:10:32 +0000535 O << ")";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000536 return false;
537}
538
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000539void PPCAsmPrinter::printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000540 const char *Modifier) {
541 assert(Modifier && "Must specify 'cc' or 'reg' as predicate op modifier!");
542 unsigned Code = MI->getOperand(OpNo).getImm();
543 if (!strcmp(Modifier, "cc")) {
544 switch ((PPC::Predicate)Code) {
545 case PPC::PRED_ALWAYS: return; // Don't print anything for always.
546 case PPC::PRED_LT: O << "lt"; return;
547 case PPC::PRED_LE: O << "le"; return;
548 case PPC::PRED_EQ: O << "eq"; return;
549 case PPC::PRED_GE: O << "ge"; return;
550 case PPC::PRED_GT: O << "gt"; return;
551 case PPC::PRED_NE: O << "ne"; return;
552 case PPC::PRED_UN: O << "un"; return;
553 case PPC::PRED_NU: O << "nu"; return;
554 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000555
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000556 } else {
557 assert(!strcmp(Modifier, "reg") &&
558 "Need to specify 'cc' or 'reg' as predicate op modifier!");
559 // Don't print the register for 'always'.
560 if (Code == PPC::PRED_ALWAYS) return;
561 printOperand(MI, OpNo+1);
562 }
563}
564
565
566/// printMachineInstruction -- Print out a single PowerPC MI in Darwin syntax to
567/// the current output stream.
568///
569void PPCAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
570 ++EmittedInsts;
Chris Lattnere34788c2009-09-09 20:34:59 +0000571
Devang Patel5450fc12009-10-06 02:19:11 +0000572 processDebugLoc(MI, true);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000573
574 // Check for slwi/srwi mnemonics.
Dale Johannesen760acc02010-01-06 02:20:18 +0000575 bool useSubstituteMnemonic = false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000576 if (MI->getOpcode() == PPC::RLWINM) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000577 unsigned char SH = MI->getOperand(2).getImm();
578 unsigned char MB = MI->getOperand(3).getImm();
579 unsigned char ME = MI->getOperand(4).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000580 if (SH <= 31 && MB == 0 && ME == (31-SH)) {
Dale Johannesen760acc02010-01-06 02:20:18 +0000581 O << "\tslwi "; useSubstituteMnemonic = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000582 }
583 if (SH <= 31 && MB == (32-SH) && ME == 31) {
Dale Johannesen760acc02010-01-06 02:20:18 +0000584 O << "\tsrwi "; useSubstituteMnemonic = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000585 SH = 32-SH;
586 }
Dale Johannesen760acc02010-01-06 02:20:18 +0000587 if (useSubstituteMnemonic) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000588 printOperand(MI, 0);
589 O << ", ";
590 printOperand(MI, 1);
Dale Johannesen760acc02010-01-06 02:20:18 +0000591 O << ", " << (unsigned int)SH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000592 }
593 } else if (MI->getOpcode() == PPC::OR || MI->getOpcode() == PPC::OR8) {
594 if (MI->getOperand(1).getReg() == MI->getOperand(2).getReg()) {
Dale Johannesen760acc02010-01-06 02:20:18 +0000595 useSubstituteMnemonic = true;
Nate Begemanbd5cdf12008-02-05 08:49:09 +0000596 O << "\tmr ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000597 printOperand(MI, 0);
598 O << ", ";
599 printOperand(MI, 1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000600 }
601 } else if (MI->getOpcode() == PPC::RLDICR) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000602 unsigned char SH = MI->getOperand(2).getImm();
603 unsigned char ME = MI->getOperand(3).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000604 // rldicr RA, RS, SH, 63-SH == sldi RA, RS, SH
605 if (63-SH == ME) {
Dale Johannesen760acc02010-01-06 02:20:18 +0000606 useSubstituteMnemonic = true;
Nate Begemanbd5cdf12008-02-05 08:49:09 +0000607 O << "\tsldi ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000608 printOperand(MI, 0);
609 O << ", ";
610 printOperand(MI, 1);
Dale Johannesen760acc02010-01-06 02:20:18 +0000611 O << ", " << (unsigned int)SH;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000612 }
613 }
614
Dale Johannesen760acc02010-01-06 02:20:18 +0000615 if (!useSubstituteMnemonic)
616 printInstruction(MI);
617
David Greeneca9b04b2009-11-13 21:34:57 +0000618 if (VerboseAsm)
Chris Lattner32d4cc72009-09-09 23:14:36 +0000619 EmitComments(*MI);
620 O << '\n';
Devang Patel5450fc12009-10-06 02:19:11 +0000621
622 processDebugLoc(MI, false);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000623}
624
625/// runOnMachineFunction - This uses the printMachineInstruction()
626/// method to print assembly for each instruction.
627///
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000628bool PPCLinuxAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Bill Wendling4f405312009-02-24 08:30:20 +0000629 this->MF = &MF;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000630
631 SetupMachineFunction(MF);
632 O << "\n\n";
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000633
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000634 // Print out constants referenced by the function
635 EmitConstantPool(MF.getConstantPool());
636
637 // Print out labels for the function.
638 const Function *F = MF.getFunction();
Chris Lattner73266f92009-08-19 05:49:37 +0000639 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang, TM));
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000640
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000641 switch (F->getLinkage()) {
Edwin Törökbd448e32009-07-14 16:55:14 +0000642 default: llvm_unreachable("Unknown linkage type!");
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000643 case Function::PrivateLinkage:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000644 case Function::InternalLinkage: // Symbols default to internal.
645 break;
646 case Function::ExternalLinkage:
Chris Lattnerce409842010-01-17 21:43:43 +0000647 O << "\t.global\t" << *CurrentFnSym << '\n' << "\t.type\t";
648 O << *CurrentFnSym << ", @function\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000649 break;
Dale Johannesenda551282009-08-24 01:03:42 +0000650 case Function::LinkerPrivateLinkage:
Duncan Sands19d161f2009-03-07 15:45:40 +0000651 case Function::WeakAnyLinkage:
652 case Function::WeakODRLinkage:
653 case Function::LinkOnceAnyLinkage:
654 case Function::LinkOnceODRLinkage:
Chris Lattnerce409842010-01-17 21:43:43 +0000655 O << "\t.global\t" << *CurrentFnSym << '\n';
656 O << "\t.weak\t" << *CurrentFnSym << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000657 break;
658 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000659
Chris Lattner651adf32010-01-16 00:21:18 +0000660 printVisibility(CurrentFnSym, F->getVisibility());
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000661
Bill Wendling25a8ae32009-06-30 22:38:32 +0000662 EmitAlignment(MF.getAlignment(), F);
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000663
664 if (Subtarget.isPPC64()) {
665 // Emit an official procedure descriptor.
Chris Lattner651adf32010-01-16 00:21:18 +0000666 // FIXME 64-bit SVR4: Use MCSection here!
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000667 O << "\t.section\t\".opd\",\"aw\"\n";
668 O << "\t.align 3\n";
Chris Lattnerce409842010-01-17 21:43:43 +0000669 O << *CurrentFnSym << ":\n";
670 O << "\t.quad .L." << *CurrentFnSym << ",.TOC.@tocbase\n";
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000671 O << "\t.previous\n";
Chris Lattnerce409842010-01-17 21:43:43 +0000672 O << ".L." << *CurrentFnSym << ":\n";
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000673 } else {
Chris Lattnerce409842010-01-17 21:43:43 +0000674 O << *CurrentFnSym << ":\n";
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000675 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000676
677 // Emit pre-function debug information.
Devang Patelaa1e8432009-01-08 23:40:34 +0000678 DW->BeginFunction(&MF);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000679
680 // Print out code for the function.
681 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
682 I != E; ++I) {
683 // Print a label for the basic block.
684 if (I != MF.begin()) {
Chris Lattner2faa4ef2009-09-13 18:25:37 +0000685 EmitBasicBlockStart(I);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000686 }
687 for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
688 II != E; ++II) {
689 // Print the assembly for the instruction.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000690 printMachineInstruction(II);
691 }
692 }
693
Chris Lattnerce409842010-01-17 21:43:43 +0000694 O << "\t.size\t" << *CurrentFnSym << ",.-" << *CurrentFnSym << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000695
Chris Lattner73266f92009-08-19 05:49:37 +0000696 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang, TM));
Dale Johannesendd9e1c92008-12-03 19:33:10 +0000697
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000698 // Emit post-function debug information.
Devang Patelaa1e8432009-01-08 23:40:34 +0000699 DW->EndFunction(&MF);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000700
Bill Wendling6fb58e12009-11-09 21:20:14 +0000701 // Print out jump tables referenced by the function.
702 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
703
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000704 // We didn't modify anything.
705 return false;
706}
707
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000708bool PPCLinuxAsmPrinter::doFinalization(Module &M) {
709 const TargetData *TD = TM.getTargetData();
710
711 bool isPPC64 = TD->getPointerSizeInBits() == 64;
712
713 if (isPPC64 && !TOC.empty()) {
714 // FIXME 64-bit SVR4: Use MCSection here?
715 O << "\t.section\t\".toc\",\"aw\"\n";
716
Chris Lattner5eeaf2a2010-01-16 02:00:23 +0000717 // FIXME: This is nondeterminstic!
Chris Lattnerc3009922010-01-16 02:09:06 +0000718 for (DenseMap<const MCSymbol*, const MCSymbol*>::iterator I = TOC.begin(),
719 E = TOC.end(); I != E; ++I) {
Chris Lattnerce409842010-01-17 21:43:43 +0000720 O << *I->second << ":\n";
721 O << "\t.tc " << *I->first << "[TC]," << *I->first << '\n';
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000722 }
723 }
724
725 return AsmPrinter::doFinalization(M);
726}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000727
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000728/// runOnMachineFunction - This uses the printMachineInstruction()
729/// method to print assembly for each instruction.
730///
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000731bool PPCDarwinAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Bill Wendling4f405312009-02-24 08:30:20 +0000732 this->MF = &MF;
733
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000734 SetupMachineFunction(MF);
735 O << "\n\n";
Dale Johannesenfb3ac732007-11-20 23:24:42 +0000736
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000737 // Print out constants referenced by the function
738 EmitConstantPool(MF.getConstantPool());
739
740 // Print out labels for the function.
741 const Function *F = MF.getFunction();
Chris Lattner73266f92009-08-19 05:49:37 +0000742 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang, TM));
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000743
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000744 switch (F->getLinkage()) {
Edwin Törökbd448e32009-07-14 16:55:14 +0000745 default: llvm_unreachable("Unknown linkage type!");
evancheng47ae8142009-01-25 06:32:01 +0000746 case Function::PrivateLinkage:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000747 case Function::InternalLinkage: // Symbols default to internal.
748 break;
749 case Function::ExternalLinkage:
Chris Lattnerce409842010-01-17 21:43:43 +0000750 O << "\t.globl\t" << *CurrentFnSym << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000751 break;
Duncan Sands19d161f2009-03-07 15:45:40 +0000752 case Function::WeakAnyLinkage:
753 case Function::WeakODRLinkage:
754 case Function::LinkOnceAnyLinkage:
755 case Function::LinkOnceODRLinkage:
Dale Johannesenda551282009-08-24 01:03:42 +0000756 case Function::LinkerPrivateLinkage:
Chris Lattnerce409842010-01-17 21:43:43 +0000757 O << "\t.globl\t" << *CurrentFnSym << '\n';
758 O << "\t.weak_definition\t" << *CurrentFnSym << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000759 break;
760 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000761
Chris Lattner651adf32010-01-16 00:21:18 +0000762 printVisibility(CurrentFnSym, F->getVisibility());
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000763
Bill Wendling25a8ae32009-06-30 22:38:32 +0000764 EmitAlignment(MF.getAlignment(), F);
Chris Lattnerce409842010-01-17 21:43:43 +0000765 O << *CurrentFnSym << ":\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000766
767 // Emit pre-function debug information.
Devang Patelaa1e8432009-01-08 23:40:34 +0000768 DW->BeginFunction(&MF);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000769
Bill Wendling36ccaea2008-01-26 06:51:24 +0000770 // If the function is empty, then we need to emit *something*. Otherwise, the
771 // function's label might be associated with something that it wasn't meant to
772 // be associated with. We emit a noop in this situation.
773 MachineFunction::iterator I = MF.begin();
774
Bill Wendlingb5880a72008-01-26 09:03:52 +0000775 if (++I == MF.end() && MF.front().empty())
776 O << "\tnop\n";
Bill Wendling36ccaea2008-01-26 06:51:24 +0000777
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000778 // Print out code for the function.
779 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
780 I != E; ++I) {
781 // Print a label for the basic block.
782 if (I != MF.begin()) {
Chris Lattner2faa4ef2009-09-13 18:25:37 +0000783 EmitBasicBlockStart(I);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000784 }
Bill Wendling36ccaea2008-01-26 06:51:24 +0000785 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
786 II != IE; ++II) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000787 // Print the assembly for the instruction.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000788 printMachineInstruction(II);
789 }
790 }
791
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000792 // Emit post-function debug information.
Devang Patelaa1e8432009-01-08 23:40:34 +0000793 DW->EndFunction(&MF);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000794
Bill Wendling5019fe02009-11-09 21:45:26 +0000795 // Print out jump tables referenced by the function.
796 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
797
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000798 // We didn't modify anything.
799 return false;
800}
801
802
Bob Wilsonb5f835e2009-09-30 22:06:26 +0000803void PPCDarwinAsmPrinter::EmitStartOfAsmFile(Module &M) {
Dan Gohman12300e12008-03-25 21:45:14 +0000804 static const char *const CPUDirectives[] = {
Dale Johannesen161badc2008-02-14 23:35:16 +0000805 "",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000806 "ppc",
807 "ppc601",
808 "ppc602",
809 "ppc603",
810 "ppc7400",
811 "ppc750",
812 "ppc970",
813 "ppc64"
814 };
815
816 unsigned Directive = Subtarget.getDarwinDirective();
817 if (Subtarget.isGigaProcessor() && Directive < PPC::DIR_970)
818 Directive = PPC::DIR_970;
819 if (Subtarget.hasAltivec() && Directive < PPC::DIR_7400)
820 Directive = PPC::DIR_7400;
821 if (Subtarget.isPPC64() && Directive < PPC::DIR_970)
822 Directive = PPC::DIR_64;
823 assert(Directive <= PPC::DIR_64 && "Directive out of range.");
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000824 O << "\t.machine " << CPUDirectives[Directive] << '\n';
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000825
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000826 // Prime text sections so they are adjacent. This reduces the likelihood a
827 // large data or debug section causes a branch to exceed 16M limit.
Chris Lattnerf4815552009-08-03 22:52:21 +0000828 TargetLoweringObjectFileMachO &TLOFMacho =
829 static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
Chris Lattner73266f92009-08-19 05:49:37 +0000830 OutStreamer.SwitchSection(TLOFMacho.getTextCoalSection());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000831 if (TM.getRelocationModel() == Reloc::PIC_) {
Chris Lattner73266f92009-08-19 05:49:37 +0000832 OutStreamer.SwitchSection(
833 TLOFMacho.getMachOSection("__TEXT", "__picsymbolstub1",
834 MCSectionMachO::S_SYMBOL_STUBS |
835 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
836 32, SectionKind::getText()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000837 } else if (TM.getRelocationModel() == Reloc::DynamicNoPIC) {
Chris Lattner73266f92009-08-19 05:49:37 +0000838 OutStreamer.SwitchSection(
839 TLOFMacho.getMachOSection("__TEXT","__symbol_stub1",
840 MCSectionMachO::S_SYMBOL_STUBS |
841 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
842 16, SectionKind::getText()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000843 }
Chris Lattner73266f92009-08-19 05:49:37 +0000844 OutStreamer.SwitchSection(getObjFileLowering().getTextSection());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000845}
846
Chris Lattner5b187502010-01-20 21:19:44 +0000847void PPCDarwinAsmPrinter::EmitFunctionStubs() {
848 bool isPPC64 = TM.getTargetData()->getPointerSizeInBits() == 64;
849
Chris Lattnerf4815552009-08-03 22:52:21 +0000850 TargetLoweringObjectFileMachO &TLOFMacho =
851 static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
Chris Lattner5b187502010-01-20 21:19:44 +0000852
853 // .lazy_symbol_pointer
854 const MCSection *LSPSection = TLOFMacho.getLazySymbolPointerSection();
Chris Lattner72a676a2009-08-10 01:39:42 +0000855
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000856 // Output stubs for dynamically-linked functions
Chris Lattner5b187502010-01-20 21:19:44 +0000857 if (TM.getRelocationModel() == Reloc::PIC_) {
Chris Lattnerf4815552009-08-03 22:52:21 +0000858 const MCSection *StubSection =
Chris Lattner5b187502010-01-20 21:19:44 +0000859 TLOFMacho.getMachOSection("__TEXT", "__picsymbolstub1",
860 MCSectionMachO::S_SYMBOL_STUBS |
861 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
862 32, SectionKind::getText());
Chris Lattner5eeaf2a2010-01-16 02:00:23 +0000863 // FIXME: This is emitting in nondeterminstic order!
864 for (DenseMap<const MCSymbol*, FnStubInfo>::iterator I =
Chris Lattner5b187502010-01-20 21:19:44 +0000865 FnStubs.begin(), E = FnStubs.end(); I != E; ++I) {
Chris Lattner73266f92009-08-19 05:49:37 +0000866 OutStreamer.SwitchSection(StubSection);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000867 EmitAlignment(4);
Chris Lattnerdc4cce62009-07-15 02:33:19 +0000868 const FnStubInfo &Info = I->second;
Chris Lattnerce409842010-01-17 21:43:43 +0000869 O << *Info.Stub << ":\n";
870 O << "\t.indirect_symbol " << *I->first << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000871 O << "\tmflr r0\n";
Chris Lattnerce409842010-01-17 21:43:43 +0000872 O << "\tbcl 20,31," << *Info.AnonSymbol << '\n';
873 O << *Info.AnonSymbol << ":\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000874 O << "\tmflr r11\n";
Chris Lattnerce409842010-01-17 21:43:43 +0000875 O << "\taddis r11,r11,ha16(" << *Info.LazyPtr << '-' << *Info.AnonSymbol
Chris Lattner5b187502010-01-20 21:19:44 +0000876 << ")\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000877 O << "\tmtlr r0\n";
Chris Lattnerce409842010-01-17 21:43:43 +0000878 O << (isPPC64 ? "\tldu" : "\tlwzu") << " r12,lo16(" << *Info.LazyPtr
Chris Lattner5b187502010-01-20 21:19:44 +0000879 << '-' << *Info.AnonSymbol << ")(r11)\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000880 O << "\tmtctr r12\n";
881 O << "\tbctr\n";
Chris Lattnerc0a7f1d2009-07-16 01:23:26 +0000882
Chris Lattner73266f92009-08-19 05:49:37 +0000883 OutStreamer.SwitchSection(LSPSection);
Chris Lattnerce409842010-01-17 21:43:43 +0000884 O << *Info.LazyPtr << ":\n";
885 O << "\t.indirect_symbol " << *I->first << '\n';
Chris Lattnerbaa12da2009-07-15 02:36:21 +0000886 O << (isPPC64 ? "\t.quad" : "\t.long") << " dyld_stub_binding_helper\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000887 }
Chris Lattner5b187502010-01-20 21:19:44 +0000888 O << '\n';
889 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000890 }
Chris Lattner5b187502010-01-20 21:19:44 +0000891
892 const MCSection *StubSection =
893 TLOFMacho.getMachOSection("__TEXT","__symbol_stub1",
894 MCSectionMachO::S_SYMBOL_STUBS |
895 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
896 16, SectionKind::getText());
897
898 // FIXME: This is emitting in nondeterminstic order!
899 for (DenseMap<const MCSymbol*, FnStubInfo>::iterator I = FnStubs.begin(),
900 E = FnStubs.end(); I != E; ++I) {
901 OutStreamer.SwitchSection(StubSection);
902 EmitAlignment(4);
903 const FnStubInfo &Info = I->second;
904 O << *Info.Stub << ":\n";
905 O << "\t.indirect_symbol " << *I->first << '\n';
906 O << "\tlis r11,ha16(" << *Info.LazyPtr << ")\n";
907 O << (isPPC64 ? "\tldu" : "\tlwzu") << " r12,lo16(" << *Info.LazyPtr
908 << ")(r11)\n";
909 O << "\tmtctr r12\n";
910 O << "\tbctr\n";
911 OutStreamer.SwitchSection(LSPSection);
912 O << *Info.LazyPtr << ":\n";
913 O << "\t.indirect_symbol " << *I->first << '\n';
914 O << (isPPC64 ? "\t.quad" : "\t.long") << " dyld_stub_binding_helper\n";
915 }
916
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000917 O << '\n';
Chris Lattner5b187502010-01-20 21:19:44 +0000918}
919
920
921bool PPCDarwinAsmPrinter::doFinalization(Module &M) {
922 bool isPPC64 = TM.getTargetData()->getPointerSizeInBits() == 64;
923
924 // Darwin/PPC always uses mach-o.
925 TargetLoweringObjectFileMachO &TLOFMacho =
926 static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
927 MachineModuleInfoMachO &MMIMacho =
928 MMI->getObjFileInfo<MachineModuleInfoMachO>();
929
930 if (!FnStubs.empty())
931 EmitFunctionStubs();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000932
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000933 if (MAI->doesSupportExceptionHandling() && MMI) {
Dale Johannesenfb3ac732007-11-20 23:24:42 +0000934 // Add the (possibly multiple) personalities to the set of global values.
Dale Johannesen85535762008-04-02 00:25:04 +0000935 // Only referenced functions get into the Personalities list.
Chris Lattner2424eac2009-06-24 19:09:55 +0000936 const std::vector<Function *> &Personalities = MMI->getPersonalities();
Dale Johannesenfb3ac732007-11-20 23:24:42 +0000937 for (std::vector<Function *>::const_iterator I = Personalities.begin(),
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000938 E = Personalities.end(); I != E; ++I) {
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000939 if (*I) {
940 const MCSymbol *NLPSym =
Chris Lattnera6f2a102010-01-16 18:37:32 +0000941 GetSymbolWithGlobalValueBase(*I, "$non_lazy_ptr");
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000942 const MCSymbol *&StubSym = MMIMacho.getGVStubEntry(NLPSym);
943 StubSym = GetGlobalValueSymbol(*I);
944 }
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000945 }
Dale Johannesenfb3ac732007-11-20 23:24:42 +0000946 }
947
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000948 // Output stubs for dynamically-linked functions.
949 MachineModuleInfoMachO::SymbolListTy Stubs = MMIMacho.GetGVStubList();
950
Chris Lattnerf4815552009-08-03 22:52:21 +0000951 // Output macho stubs for external and common global variables.
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000952 if (!Stubs.empty()) {
Chris Lattner72a676a2009-08-10 01:39:42 +0000953 // Switch with ".non_lazy_symbol_pointer" directive.
Chris Lattner73266f92009-08-19 05:49:37 +0000954 OutStreamer.SwitchSection(TLOFMacho.getNonLazySymbolPointerSection());
Chris Lattner2d61eaa2009-08-10 17:58:51 +0000955 EmitAlignment(isPPC64 ? 3 : 2);
956
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000957 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
958 O << *Stubs[i].first << ":\n";
959 O << "\t.indirect_symbol " << *Stubs[i].second << '\n';
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000960 O << (isPPC64 ? "\t.quad\t0\n" : "\t.long\t0\n");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000961 }
962 }
963
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000964 Stubs = MMIMacho.GetHiddenGVStubList();
965 if (!Stubs.empty()) {
Chris Lattner73266f92009-08-19 05:49:37 +0000966 OutStreamer.SwitchSection(getObjFileLowering().getDataSection());
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000967 EmitAlignment(isPPC64 ? 3 : 2);
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000968
969 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
970 O << *Stubs[i].first << ":\n";
971 O << (isPPC64 ? "\t.quad\t" : "\t.long\t") << *Stubs[i].second << '\n';
Evan Chenga65854f2008-12-05 01:06:39 +0000972 }
973 }
974
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000975 // Funny Darwin hack: This flag tells the linker that no global symbols
976 // contain code that falls through to other global symbols (e.g. the obvious
977 // implementation of multiple entry points). If this doesn't occur, the
978 // linker can safely perform dead code stripping. Since LLVM never generates
979 // code that does this, it is always safe to set.
Chris Lattnerfe284f72009-10-19 18:03:08 +0000980 OutStreamer.EmitAssemblerFlag(MCStreamer::SubsectionsViaSymbols);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000981
Dan Gohman4a558a32007-07-25 19:33:14 +0000982 return AsmPrinter::doFinalization(M);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000983}
984
985
986
987/// createPPCAsmPrinterPass - Returns a pass that prints the PPC assembly code
988/// for a MachineFunction to the given output stream, in a format that the
989/// Darwin assembler can deal with.
990///
Daniel Dunbar4cb63652009-08-13 23:48:47 +0000991static AsmPrinter *createPPCAsmPrinterPass(formatted_raw_ostream &o,
992 TargetMachine &tm,
Chris Lattner621c44d2009-08-22 20:48:53 +0000993 const MCAsmInfo *tai,
Daniel Dunbar4cb63652009-08-13 23:48:47 +0000994 bool verbose) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000995 const PPCSubtarget *Subtarget = &tm.getSubtarget<PPCSubtarget>();
996
Chris Lattnerae982212009-07-21 18:38:57 +0000997 if (Subtarget->isDarwin())
Daniel Dunbaref5abb42009-08-13 19:38:51 +0000998 return new PPCDarwinAsmPrinter(o, tm, tai, verbose);
999 return new PPCLinuxAsmPrinter(o, tm, tai, verbose);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001000}
Anton Korobeynikov01c0e9f2008-08-17 13:54:28 +00001001
Bob Wilsonebbc1c42009-06-23 23:59:40 +00001002// Force static initialization.
Daniel Dunbarfe5939f2009-07-15 20:24:03 +00001003extern "C" void LLVMInitializePowerPCAsmPrinter() {
Daniel Dunbarfe5939f2009-07-15 20:24:03 +00001004 TargetRegistry::RegisterAsmPrinter(ThePPC32Target, createPPCAsmPrinterPass);
Daniel Dunbarfe5939f2009-07-15 20:24:03 +00001005 TargetRegistry::RegisterAsmPrinter(ThePPC64Target, createPPCAsmPrinterPass);
1006}