blob: 6715181662ad2316714e70e216be35980f200256 [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"
Devang Patelf667ab42009-06-25 00:47:42 +000027#include "llvm/MDNode.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000028#include "llvm/Assembly/Writer.h"
29#include "llvm/CodeGen/AsmPrinter.h"
30#include "llvm/CodeGen/DwarfWriter.h"
31#include "llvm/CodeGen/MachineModuleInfo.h"
32#include "llvm/CodeGen/MachineFunctionPass.h"
33#include "llvm/CodeGen/MachineInstr.h"
Bill Wendling36ccaea2008-01-26 06:51:24 +000034#include "llvm/CodeGen/MachineInstrBuilder.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000035#include "llvm/Support/Mangler.h"
36#include "llvm/Support/MathExtras.h"
37#include "llvm/Support/CommandLine.h"
38#include "llvm/Support/Debug.h"
Edwin Török4d9756a2009-07-08 20:53:28 +000039#include "llvm/Support/ErrorHandling.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000040#include "llvm/Support/Compiler.h"
David Greene302008d2009-07-14 20:18:05 +000041#include "llvm/Support/FormattedStream.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000042#include "llvm/Target/TargetAsmInfo.h"
Dan Gohman1e57df32008-02-10 18:45:23 +000043#include "llvm/Target/TargetRegisterInfo.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000044#include "llvm/Target/TargetInstrInfo.h"
45#include "llvm/Target/TargetOptions.h"
46#include "llvm/ADT/Statistic.h"
47#include "llvm/ADT/StringExtras.h"
Evan Chenga65854f2008-12-05 01:06:39 +000048#include "llvm/ADT/StringSet.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000049using namespace llvm;
50
51STATISTIC(EmittedInsts, "Number of machine instrs printed");
52
53namespace {
Bill Wendling4f405312009-02-24 08:30:20 +000054 class VISIBILITY_HIDDEN PPCAsmPrinter : public AsmPrinter {
55 protected:
Evan Chenga65854f2008-12-05 01:06:39 +000056 StringSet<> FnStubs, GVStubs, HiddenGVStubs;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000057 const PPCSubtarget &Subtarget;
Bill Wendling4f405312009-02-24 08:30:20 +000058 public:
David Greene302008d2009-07-14 20:18:05 +000059 explicit PPCAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
Daniel Dunbarb10d2222009-07-01 01:48:54 +000060 const TargetAsmInfo *T, bool V)
61 : AsmPrinter(O, TM, T, V),
Bill Wendling4f405312009-02-24 08:30:20 +000062 Subtarget(TM.getSubtarget<PPCSubtarget>()) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +000063
64 virtual const char *getPassName() const {
65 return "PowerPC Assembly Printer";
66 }
67
68 PPCTargetMachine &getTM() {
69 return static_cast<PPCTargetMachine&>(TM);
70 }
71
72 unsigned enumRegToMachineReg(unsigned enumReg) {
73 switch (enumReg) {
Edwin Törökbd448e32009-07-14 16:55:14 +000074 default: llvm_unreachable("Unhandled register!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +000075 case PPC::CR0: return 0;
76 case PPC::CR1: return 1;
77 case PPC::CR2: return 2;
78 case PPC::CR3: return 3;
79 case PPC::CR4: return 4;
80 case PPC::CR5: return 5;
81 case PPC::CR6: return 6;
82 case PPC::CR7: return 7;
83 }
Edwin Törökbd448e32009-07-14 16:55:14 +000084 llvm_unreachable(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000085 }
86
87 /// printInstruction - This method is automatically generated by tablegen
88 /// from the instruction set description. This method returns true if the
89 /// machine instruction was sufficiently described to print it, otherwise it
90 /// returns false.
91 bool printInstruction(const MachineInstr *MI);
92
93 void printMachineInstruction(const MachineInstr *MI);
94 void printOp(const MachineOperand &MO);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +000095
Dan Gohmanf17a25c2007-07-18 16:29:46 +000096 /// stripRegisterPrefix - This method strips the character prefix from a
97 /// register name so that only the number is left. Used by for linux asm.
98 const char *stripRegisterPrefix(const char *RegName) {
99 switch (RegName[0]) {
100 case 'r':
101 case 'f':
102 case 'v': return RegName + 1;
103 case 'c': if (RegName[1] == 'r') return RegName + 2;
104 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000105
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000106 return RegName;
107 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000108
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000109 /// printRegister - Print register according to target requirements.
110 ///
111 void printRegister(const MachineOperand &MO, bool R0AsZero) {
112 unsigned RegNo = MO.getReg();
Dan Gohman1e57df32008-02-10 18:45:23 +0000113 assert(TargetRegisterInfo::isPhysicalRegister(RegNo) && "Not physreg??");
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000114
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000115 // If we should use 0 for R0.
116 if (R0AsZero && RegNo == PPC::R0) {
117 O << "0";
118 return;
119 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000120
Bill Wendling8eeb9792008-02-26 21:11:01 +0000121 const char *RegName = TM.getRegisterInfo()->get(RegNo).AsmName;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000122 // Linux assembler (Others?) does not take register mnemonics.
123 // FIXME - What about special registers used in mfspr/mtspr?
124 if (!Subtarget.isDarwin()) RegName = stripRegisterPrefix(RegName);
125 O << RegName;
126 }
127
128 void printOperand(const MachineInstr *MI, unsigned OpNo) {
129 const MachineOperand &MO = MI->getOperand(OpNo);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000130 if (MO.isReg()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000131 printRegister(MO, false);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000132 } else if (MO.isImm()) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000133 O << MO.getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000134 } else {
135 printOp(MO);
136 }
137 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000138
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000139 bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
140 unsigned AsmVariant, const char *ExtraCode);
141 bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
142 unsigned AsmVariant, const char *ExtraCode);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000143
144
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000145 void printS5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000146 char value = MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000147 value = (value << (32-5)) >> (32-5);
148 O << (int)value;
149 }
150 void printU5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000151 unsigned char value = MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000152 assert(value <= 31 && "Invalid u5imm argument!");
153 O << (unsigned int)value;
154 }
155 void printU6ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000156 unsigned char value = MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000157 assert(value <= 63 && "Invalid u6imm argument!");
158 O << (unsigned int)value;
159 }
160 void printS16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000161 O << (short)MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000162 }
163 void printU16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000164 O << (unsigned short)MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000165 }
166 void printS16X4ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000167 if (MI->getOperand(OpNo).isImm()) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000168 O << (short)(MI->getOperand(OpNo).getImm()*4);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000169 } else {
170 O << "lo16(";
171 printOp(MI->getOperand(OpNo));
172 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng477013c2007-10-14 05:57:21 +0000173 O << "-\"L" << getFunctionNumber() << "$pb\")";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000174 else
175 O << ')';
176 }
177 }
178 void printBranchOperand(const MachineInstr *MI, unsigned OpNo) {
179 // Branches can take an immediate operand. This is used by the branch
180 // selection pass to print $+8, an eight byte displacement from the PC.
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000181 if (MI->getOperand(OpNo).isImm()) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000182 O << "$+" << MI->getOperand(OpNo).getImm()*4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000183 } else {
184 printOp(MI->getOperand(OpNo));
185 }
186 }
187 void printCallOperand(const MachineInstr *MI, unsigned OpNo) {
188 const MachineOperand &MO = MI->getOperand(OpNo);
189 if (TM.getRelocationModel() != Reloc::Static) {
190 if (MO.getType() == MachineOperand::MO_GlobalAddress) {
191 GlobalValue *GV = MO.getGlobal();
Chris Lattner0fd4feb2009-07-02 16:08:53 +0000192 if (GV->isDeclaration() || GV->isWeakForLinker()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000193 // Dynamically-resolved functions need a stub for the function.
Chris Lattnerb3cdde62009-07-14 18:17:16 +0000194 std::string Name = Mang->getMangledName(GV);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000195 FnStubs.insert(Name);
Dale Johannesena21b5202008-05-19 21:38:18 +0000196 printSuffixedName(Name, "$stub");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000197 return;
198 }
199 }
200 if (MO.getType() == MachineOperand::MO_ExternalSymbol) {
201 std::string Name(TAI->getGlobalPrefix()); Name += MO.getSymbolName();
202 FnStubs.insert(Name);
Dale Johannesena21b5202008-05-19 21:38:18 +0000203 printSuffixedName(Name, "$stub");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000204 return;
205 }
206 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000207
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000208 printOp(MI->getOperand(OpNo));
209 }
210 void printAbsAddrOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000211 O << (int)MI->getOperand(OpNo).getImm()*4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000212 }
213 void printPICLabel(const MachineInstr *MI, unsigned OpNo) {
Evan Cheng477013c2007-10-14 05:57:21 +0000214 O << "\"L" << getFunctionNumber() << "$pb\"\n";
215 O << "\"L" << getFunctionNumber() << "$pb\":";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000216 }
217 void printSymbolHi(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000218 if (MI->getOperand(OpNo).isImm()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000219 printS16ImmOperand(MI, OpNo);
220 } else {
221 if (Subtarget.isDarwin()) O << "ha16(";
222 printOp(MI->getOperand(OpNo));
223 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng477013c2007-10-14 05:57:21 +0000224 O << "-\"L" << getFunctionNumber() << "$pb\"";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000225 if (Subtarget.isDarwin())
226 O << ')';
227 else
228 O << "@ha";
229 }
230 }
231 void printSymbolLo(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000232 if (MI->getOperand(OpNo).isImm()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000233 printS16ImmOperand(MI, OpNo);
234 } else {
235 if (Subtarget.isDarwin()) O << "lo16(";
236 printOp(MI->getOperand(OpNo));
237 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng477013c2007-10-14 05:57:21 +0000238 O << "-\"L" << getFunctionNumber() << "$pb\"";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000239 if (Subtarget.isDarwin())
240 O << ')';
241 else
242 O << "@l";
243 }
244 }
245 void printcrbitm(const MachineInstr *MI, unsigned OpNo) {
246 unsigned CCReg = MI->getOperand(OpNo).getReg();
247 unsigned RegNo = enumRegToMachineReg(CCReg);
248 O << (0x80 >> RegNo);
249 }
250 // The new addressing mode printers.
251 void printMemRegImm(const MachineInstr *MI, unsigned OpNo) {
252 printSymbolLo(MI, OpNo);
253 O << '(';
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000254 if (MI->getOperand(OpNo+1).isReg() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000255 MI->getOperand(OpNo+1).getReg() == PPC::R0)
256 O << "0";
257 else
258 printOperand(MI, OpNo+1);
259 O << ')';
260 }
261 void printMemRegImmShifted(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000262 if (MI->getOperand(OpNo).isImm())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000263 printS16X4ImmOperand(MI, OpNo);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000264 else
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000265 printSymbolLo(MI, OpNo);
266 O << '(';
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000267 if (MI->getOperand(OpNo+1).isReg() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000268 MI->getOperand(OpNo+1).getReg() == PPC::R0)
269 O << "0";
270 else
271 printOperand(MI, OpNo+1);
272 O << ')';
273 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000274
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000275 void printMemRegReg(const MachineInstr *MI, unsigned OpNo) {
276 // When used as the base register, r0 reads constant zero rather than
277 // the value contained in the register. For this reason, the darwin
278 // assembler requires that we print r0 as 0 (no r) when used as the base.
279 const MachineOperand &MO = MI->getOperand(OpNo);
280 printRegister(MO, true);
281 O << ", ";
282 printOperand(MI, OpNo+1);
283 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000284
285 void printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000286 const char *Modifier);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000287
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000288 virtual bool runOnMachineFunction(MachineFunction &F) = 0;
289 virtual bool doFinalization(Module &M) = 0;
290
291 virtual void EmitExternalGlobal(const GlobalVariable *GV);
292 };
293
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000294 /// PPCLinuxAsmPrinter - PowerPC assembly printer, customized for Linux
Bill Wendling4f405312009-02-24 08:30:20 +0000295 class VISIBILITY_HIDDEN PPCLinuxAsmPrinter : public PPCAsmPrinter {
Bill Wendling4f405312009-02-24 08:30:20 +0000296 public:
David Greene302008d2009-07-14 20:18:05 +0000297 explicit PPCLinuxAsmPrinter(formatted_raw_ostream &O, PPCTargetMachine &TM,
Daniel Dunbarb10d2222009-07-01 01:48:54 +0000298 const TargetAsmInfo *T, bool V)
299 : PPCAsmPrinter(O, TM, T, V){}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000300
301 virtual const char *getPassName() const {
302 return "Linux PPC Assembly Printer";
303 }
304
305 bool runOnMachineFunction(MachineFunction &F);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000306 bool doFinalization(Module &M);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000307
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000308 void getAnalysisUsage(AnalysisUsage &AU) const {
309 AU.setPreservesAll();
310 AU.addRequired<MachineModuleInfo>();
Devang Patelaa1e8432009-01-08 23:40:34 +0000311 AU.addRequired<DwarfWriter>();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000312 PPCAsmPrinter::getAnalysisUsage(AU);
313 }
314
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000315 void printModuleLevelGV(const GlobalVariable* GVar);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000316 };
317
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000318 /// PPCDarwinAsmPrinter - PowerPC assembly printer, customized for Darwin/Mac
319 /// OS X
Bill Wendling4f405312009-02-24 08:30:20 +0000320 class VISIBILITY_HIDDEN PPCDarwinAsmPrinter : public PPCAsmPrinter {
David Greene302008d2009-07-14 20:18:05 +0000321 formatted_raw_ostream &OS;
Bill Wendling4f405312009-02-24 08:30:20 +0000322 public:
David Greene302008d2009-07-14 20:18:05 +0000323 explicit PPCDarwinAsmPrinter(formatted_raw_ostream &O, PPCTargetMachine &TM,
Daniel Dunbarb10d2222009-07-01 01:48:54 +0000324 const TargetAsmInfo *T, bool V)
325 : PPCAsmPrinter(O, TM, T, V), OS(O) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000326
327 virtual const char *getPassName() const {
328 return "Darwin PPC Assembly Printer";
329 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000330
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000331 bool runOnMachineFunction(MachineFunction &F);
332 bool doInitialization(Module &M);
333 bool doFinalization(Module &M);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000334
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000335 void getAnalysisUsage(AnalysisUsage &AU) const {
336 AU.setPreservesAll();
337 AU.addRequired<MachineModuleInfo>();
Devang Patelaa1e8432009-01-08 23:40:34 +0000338 AU.addRequired<DwarfWriter>();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000339 PPCAsmPrinter::getAnalysisUsage(AU);
340 }
341
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000342 void printModuleLevelGV(const GlobalVariable* GVar);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000343 };
344} // end of anonymous namespace
345
346// Include the auto-generated portion of the assembly writer
347#include "PPCGenAsmWriter.inc"
348
349void PPCAsmPrinter::printOp(const MachineOperand &MO) {
350 switch (MO.getType()) {
351 case MachineOperand::MO_Immediate:
Edwin Törökbd448e32009-07-14 16:55:14 +0000352 llvm_unreachable("printOp() does not handle immediate values");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000353
354 case MachineOperand::MO_MachineBasicBlock:
Chris Lattner6017d482007-12-30 23:10:15 +0000355 printBasicBlockLabel(MO.getMBB());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000356 return;
357 case MachineOperand::MO_JumpTableIndex:
Evan Cheng477013c2007-10-14 05:57:21 +0000358 O << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
Chris Lattner6017d482007-12-30 23:10:15 +0000359 << '_' << MO.getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000360 // FIXME: PIC relocation model
361 return;
362 case MachineOperand::MO_ConstantPoolIndex:
Evan Cheng477013c2007-10-14 05:57:21 +0000363 O << TAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber()
Chris Lattner6017d482007-12-30 23:10:15 +0000364 << '_' << MO.getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000365 return;
366 case MachineOperand::MO_ExternalSymbol:
367 // Computing the address of an external symbol, not calling it.
368 if (TM.getRelocationModel() != Reloc::Static) {
Chris Lattner189198f2009-07-15 00:55:58 +0000369 std::string Name(TAI->getGlobalPrefix());
370 Name += MO.getSymbolName();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000371 GVStubs.insert(Name);
Dale Johannesena21b5202008-05-19 21:38:18 +0000372 printSuffixedName(Name, "$non_lazy_ptr");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000373 return;
374 }
375 O << TAI->getGlobalPrefix() << MO.getSymbolName();
376 return;
377 case MachineOperand::MO_GlobalAddress: {
378 // Computing the address of a global symbol, not calling it.
379 GlobalValue *GV = MO.getGlobal();
Chris Lattnerb3cdde62009-07-14 18:17:16 +0000380 std::string Name = Mang->getMangledName(GV);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000381
382 // External or weakly linked global variables need non-lazily-resolved stubs
383 if (TM.getRelocationModel() != Reloc::Static) {
Chris Lattner0fd4feb2009-07-02 16:08:53 +0000384 if (GV->isDeclaration() || GV->isWeakForLinker()) {
Chris Lattner189198f2009-07-15 00:55:58 +0000385 if (!GV->hasHiddenVisibility()) {
Evan Chenga65854f2008-12-05 01:06:39 +0000386 GVStubs.insert(Name);
387 printSuffixedName(Name, "$non_lazy_ptr");
Chris Lattner189198f2009-07-15 00:55:58 +0000388 } else if (GV->isDeclaration() || GV->hasCommonLinkage() ||
389 GV->hasAvailableExternallyLinkage()) {
390 HiddenGVStubs.insert(Name);
391 printSuffixedName(Name, "$non_lazy_ptr");
392 } else {
393 O << Name;
Evan Chenga65854f2008-12-05 01:06:39 +0000394 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000395 return;
396 }
397 }
398 O << Name;
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000399
Anton Korobeynikov440f23d2008-11-22 16:15:34 +0000400 printOffset(MO.getOffset());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000401 return;
402 }
403
404 default:
405 O << "<unknown operand type: " << MO.getType() << ">";
406 return;
407 }
408}
409
410/// EmitExternalGlobal - In this case we need to use the indirect symbol.
411///
412void PPCAsmPrinter::EmitExternalGlobal(const GlobalVariable *GV) {
Bill Wendling26a8ab92009-04-10 00:12:49 +0000413 std::string Name;
414 getGlobalLinkName(GV, Name);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000415 if (TM.getRelocationModel() != Reloc::Static) {
Evan Chenga65854f2008-12-05 01:06:39 +0000416 if (GV->hasHiddenVisibility())
417 HiddenGVStubs.insert(Name);
418 else
419 GVStubs.insert(Name);
Dale Johannesena21b5202008-05-19 21:38:18 +0000420 printSuffixedName(Name, "$non_lazy_ptr");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000421 return;
422 }
423 O << Name;
424}
425
426/// PrintAsmOperand - Print out an operand for an inline asm expression.
427///
428bool PPCAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000429 unsigned AsmVariant,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000430 const char *ExtraCode) {
431 // Does this asm operand have a single letter operand modifier?
432 if (ExtraCode && ExtraCode[0]) {
433 if (ExtraCode[1] != 0) return true; // Unknown modifier.
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000434
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000435 switch (ExtraCode[0]) {
436 default: return true; // Unknown modifier.
437 case 'c': // Don't print "$" before a global var name or constant.
438 // PPC never has a prefix.
439 printOperand(MI, OpNo);
440 return false;
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000441 case 'L': // Write second word of DImode reference.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000442 // Verify that this operand has two consecutive registers.
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000443 if (!MI->getOperand(OpNo).isReg() ||
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000444 OpNo+1 == MI->getNumOperands() ||
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000445 !MI->getOperand(OpNo+1).isReg())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000446 return true;
447 ++OpNo; // Return the high-part.
448 break;
449 case 'I':
450 // Write 'i' if an integer constant, otherwise nothing. Used to print
451 // addi vs add, etc.
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000452 if (MI->getOperand(OpNo).isImm())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000453 O << "i";
454 return false;
455 }
456 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000457
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000458 printOperand(MI, OpNo);
459 return false;
460}
461
462bool PPCAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000463 unsigned AsmVariant,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000464 const char *ExtraCode) {
465 if (ExtraCode && ExtraCode[0])
466 return true; // Unknown modifier.
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000467 if (MI->getOperand(OpNo).isReg())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000468 printMemRegReg(MI, OpNo);
469 else
470 printMemRegImm(MI, OpNo);
471 return false;
472}
473
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000474void PPCAsmPrinter::printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000475 const char *Modifier) {
476 assert(Modifier && "Must specify 'cc' or 'reg' as predicate op modifier!");
477 unsigned Code = MI->getOperand(OpNo).getImm();
478 if (!strcmp(Modifier, "cc")) {
479 switch ((PPC::Predicate)Code) {
480 case PPC::PRED_ALWAYS: return; // Don't print anything for always.
481 case PPC::PRED_LT: O << "lt"; return;
482 case PPC::PRED_LE: O << "le"; return;
483 case PPC::PRED_EQ: O << "eq"; return;
484 case PPC::PRED_GE: O << "ge"; return;
485 case PPC::PRED_GT: O << "gt"; return;
486 case PPC::PRED_NE: O << "ne"; return;
487 case PPC::PRED_UN: O << "un"; return;
488 case PPC::PRED_NU: O << "nu"; return;
489 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000490
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000491 } else {
492 assert(!strcmp(Modifier, "reg") &&
493 "Need to specify 'cc' or 'reg' as predicate op modifier!");
494 // Don't print the register for 'always'.
495 if (Code == PPC::PRED_ALWAYS) return;
496 printOperand(MI, OpNo+1);
497 }
498}
499
500
501/// printMachineInstruction -- Print out a single PowerPC MI in Darwin syntax to
502/// the current output stream.
503///
504void PPCAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
505 ++EmittedInsts;
506
507 // Check for slwi/srwi mnemonics.
508 if (MI->getOpcode() == PPC::RLWINM) {
509 bool FoundMnemonic = false;
Chris Lattnera96056a2007-12-30 20:49:49 +0000510 unsigned char SH = MI->getOperand(2).getImm();
511 unsigned char MB = MI->getOperand(3).getImm();
512 unsigned char ME = MI->getOperand(4).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000513 if (SH <= 31 && MB == 0 && ME == (31-SH)) {
Nate Begemanbd5cdf12008-02-05 08:49:09 +0000514 O << "\tslwi "; FoundMnemonic = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000515 }
516 if (SH <= 31 && MB == (32-SH) && ME == 31) {
Nate Begemanbd5cdf12008-02-05 08:49:09 +0000517 O << "\tsrwi "; FoundMnemonic = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000518 SH = 32-SH;
519 }
520 if (FoundMnemonic) {
521 printOperand(MI, 0);
522 O << ", ";
523 printOperand(MI, 1);
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000524 O << ", " << (unsigned int)SH << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000525 return;
526 }
527 } else if (MI->getOpcode() == PPC::OR || MI->getOpcode() == PPC::OR8) {
528 if (MI->getOperand(1).getReg() == MI->getOperand(2).getReg()) {
Nate Begemanbd5cdf12008-02-05 08:49:09 +0000529 O << "\tmr ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000530 printOperand(MI, 0);
531 O << ", ";
532 printOperand(MI, 1);
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000533 O << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000534 return;
535 }
536 } else if (MI->getOpcode() == PPC::RLDICR) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000537 unsigned char SH = MI->getOperand(2).getImm();
538 unsigned char ME = MI->getOperand(3).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000539 // rldicr RA, RS, SH, 63-SH == sldi RA, RS, SH
540 if (63-SH == ME) {
Nate Begemanbd5cdf12008-02-05 08:49:09 +0000541 O << "\tsldi ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000542 printOperand(MI, 0);
543 O << ", ";
544 printOperand(MI, 1);
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000545 O << ", " << (unsigned int)SH << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000546 return;
547 }
548 }
549
550 if (printInstruction(MI))
551 return; // Printer was automatically generated
552
Edwin Törökbd448e32009-07-14 16:55:14 +0000553 llvm_unreachable("Unhandled instruction in asm writer!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000554}
555
556/// runOnMachineFunction - This uses the printMachineInstruction()
557/// method to print assembly for each instruction.
558///
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000559bool PPCLinuxAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Bill Wendling4f405312009-02-24 08:30:20 +0000560 this->MF = &MF;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000561
562 SetupMachineFunction(MF);
563 O << "\n\n";
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000564
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000565 // Print out constants referenced by the function
566 EmitConstantPool(MF.getConstantPool());
567
568 // Print out labels for the function.
569 const Function *F = MF.getFunction();
Anton Korobeynikov1a9edae2008-09-24 22:14:23 +0000570 SwitchToSection(TAI->SectionForGlobal(F));
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000571
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000572 switch (F->getLinkage()) {
Edwin Törökbd448e32009-07-14 16:55:14 +0000573 default: llvm_unreachable("Unknown linkage type!");
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000574 case Function::PrivateLinkage:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000575 case Function::InternalLinkage: // Symbols default to internal.
576 break;
577 case Function::ExternalLinkage:
578 O << "\t.global\t" << CurrentFnName << '\n'
579 << "\t.type\t" << CurrentFnName << ", @function\n";
580 break;
Duncan Sands19d161f2009-03-07 15:45:40 +0000581 case Function::WeakAnyLinkage:
582 case Function::WeakODRLinkage:
583 case Function::LinkOnceAnyLinkage:
584 case Function::LinkOnceODRLinkage:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000585 O << "\t.global\t" << CurrentFnName << '\n';
586 O << "\t.weak\t" << CurrentFnName << '\n';
587 break;
588 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000589
Anton Korobeynikov78d69aa2008-08-08 18:25:07 +0000590 printVisibility(CurrentFnName, F->getVisibility());
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000591
Bill Wendling25a8ae32009-06-30 22:38:32 +0000592 EmitAlignment(MF.getAlignment(), F);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000593 O << CurrentFnName << ":\n";
594
595 // Emit pre-function debug information.
Devang Patelaa1e8432009-01-08 23:40:34 +0000596 DW->BeginFunction(&MF);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000597
598 // Print out code for the function.
599 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
600 I != E; ++I) {
601 // Print a label for the basic block.
602 if (I != MF.begin()) {
Evan Cheng45c1edb2008-02-28 00:43:03 +0000603 printBasicBlockLabel(I, true, true);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000604 O << '\n';
605 }
606 for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
607 II != E; ++II) {
608 // Print the assembly for the instruction.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000609 printMachineInstruction(II);
610 }
611 }
612
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000613 O << "\t.size\t" << CurrentFnName << ",.-" << CurrentFnName << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000614
615 // Print out jump tables referenced by the function.
616 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000617
Dale Johannesendd9e1c92008-12-03 19:33:10 +0000618 SwitchToSection(TAI->SectionForGlobal(F));
619
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000620 // Emit post-function debug information.
Devang Patelaa1e8432009-01-08 23:40:34 +0000621 DW->EndFunction(&MF);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000622
Dan Gohmaneb94abd2008-11-07 19:49:17 +0000623 O.flush();
624
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000625 // We didn't modify anything.
626 return false;
627}
628
Chris Lattner2b638a72008-02-15 19:04:54 +0000629/// PrintUnmangledNameSafely - Print out the printable characters in the name.
Dan Gohman8387bb32009-03-03 02:55:14 +0000630/// Don't print things like \\n or \\0.
David Greene302008d2009-07-14 20:18:05 +0000631static void PrintUnmangledNameSafely(const Value *V, formatted_raw_ostream &OS) {
Chris Lattner2b638a72008-02-15 19:04:54 +0000632 for (const char *Name = V->getNameStart(), *E = Name+V->getNameLen();
633 Name != E; ++Name)
634 if (isprint(*Name))
635 OS << *Name;
636}
637
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000638void PPCLinuxAsmPrinter::printModuleLevelGV(const GlobalVariable* GVar) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000639 const TargetData *TD = TM.getTargetData();
640
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000641 if (!GVar->hasInitializer())
642 return; // External global require no code
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000643
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000644 // Check to see if this is a special global used by LLVM, if so, emit it.
645 if (EmitSpecialLLVMGlobal(GVar))
646 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000647
Chris Lattnerb3cdde62009-07-14 18:17:16 +0000648 std::string name = Mang->getMangledName(GVar);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000649
Anton Korobeynikov78d69aa2008-08-08 18:25:07 +0000650 printVisibility(name, GVar->getVisibility());
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000651
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000652 Constant *C = GVar->getInitializer();
Devang Patel880595f2009-06-26 02:26:12 +0000653 if (isa<MDNode>(C) || isa<MDString>(C))
Devang Patelf667ab42009-06-25 00:47:42 +0000654 return;
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000655 const Type *Type = C->getType();
Duncan Sandsec4f97d2009-05-09 07:06:46 +0000656 unsigned Size = TD->getTypeAllocSize(Type);
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000657 unsigned Align = TD->getPreferredAlignmentLog(GVar);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000658
Anton Korobeynikov1a9edae2008-09-24 22:14:23 +0000659 SwitchToSection(TAI->SectionForGlobal(GVar));
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000660
661 if (C->isNullValue() && /* FIXME: Verify correct */
662 !GVar->hasSection() &&
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000663 (GVar->hasLocalLinkage() || GVar->hasExternalLinkage() ||
Duncan Sands19d161f2009-03-07 15:45:40 +0000664 GVar->isWeakForLinker())) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000665 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000666
667 if (GVar->hasExternalLinkage()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000668 O << "\t.global " << name << '\n';
669 O << "\t.type " << name << ", @object\n";
Nick Lewycky3246a9c2007-07-25 03:48:45 +0000670 O << name << ":\n";
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000671 O << "\t.zero " << Size << '\n';
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000672 } else if (GVar->hasLocalLinkage()) {
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000673 O << TAI->getLCOMMDirective() << name << ',' << Size;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000674 } else {
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000675 O << ".comm " << name << ',' << Size;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000676 }
Evan Cheng11db8142009-03-24 00:17:40 +0000677 if (VerboseAsm) {
678 O << "\t\t" << TAI->getCommentString() << " '";
679 PrintUnmangledNameSafely(GVar, O);
680 O << "'";
681 }
682 O << '\n';
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000683 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000684 }
685
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000686 switch (GVar->getLinkage()) {
Duncan Sands19d161f2009-03-07 15:45:40 +0000687 case GlobalValue::LinkOnceAnyLinkage:
688 case GlobalValue::LinkOnceODRLinkage:
689 case GlobalValue::WeakAnyLinkage:
690 case GlobalValue::WeakODRLinkage:
Duncan Sandsb95df792009-03-11 20:14:15 +0000691 case GlobalValue::CommonLinkage:
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000692 O << "\t.global " << name << '\n'
693 << "\t.type " << name << ", @object\n"
694 << "\t.weak " << name << '\n';
695 break;
696 case GlobalValue::AppendingLinkage:
697 // FIXME: appending linkage variables should go into a section of
698 // their name or something. For now, just emit them as external.
699 case GlobalValue::ExternalLinkage:
700 // If external or appending, declare as a global symbol
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000701 O << "\t.global " << name << '\n'
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000702 << "\t.type " << name << ", @object\n";
703 // FALL THROUGH
704 case GlobalValue::InternalLinkage:
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000705 case GlobalValue::PrivateLinkage:
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000706 break;
707 default:
Edwin Törökbd448e32009-07-14 16:55:14 +0000708 llvm_unreachable("Unknown linkage type!");
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000709 }
710
711 EmitAlignment(Align, GVar);
Evan Cheng11db8142009-03-24 00:17:40 +0000712 O << name << ":";
713 if (VerboseAsm) {
714 O << "\t\t\t\t" << TAI->getCommentString() << " '";
715 PrintUnmangledNameSafely(GVar, O);
716 O << "'";
717 }
718 O << '\n';
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000719
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000720 EmitGlobalConstant(C);
721 O << '\n';
722}
723
724bool PPCLinuxAsmPrinter::doFinalization(Module &M) {
725 // Print out module-level global variables here.
726 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
727 I != E; ++I)
728 printModuleLevelGV(I);
729
Dan Gohman4a558a32007-07-25 19:33:14 +0000730 return AsmPrinter::doFinalization(M);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000731}
732
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000733/// runOnMachineFunction - This uses the printMachineInstruction()
734/// method to print assembly for each instruction.
735///
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000736bool PPCDarwinAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Bill Wendling4f405312009-02-24 08:30:20 +0000737 this->MF = &MF;
738
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000739 SetupMachineFunction(MF);
740 O << "\n\n";
Dale Johannesenfb3ac732007-11-20 23:24:42 +0000741
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000742 // Print out constants referenced by the function
743 EmitConstantPool(MF.getConstantPool());
744
745 // Print out labels for the function.
746 const Function *F = MF.getFunction();
Anton Korobeynikov1a9edae2008-09-24 22:14:23 +0000747 SwitchToSection(TAI->SectionForGlobal(F));
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000748
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000749 switch (F->getLinkage()) {
Edwin Törökbd448e32009-07-14 16:55:14 +0000750 default: llvm_unreachable("Unknown linkage type!");
evancheng47ae8142009-01-25 06:32:01 +0000751 case Function::PrivateLinkage:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000752 case Function::InternalLinkage: // Symbols default to internal.
753 break;
754 case Function::ExternalLinkage:
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000755 O << "\t.globl\t" << CurrentFnName << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000756 break;
Duncan Sands19d161f2009-03-07 15:45:40 +0000757 case Function::WeakAnyLinkage:
758 case Function::WeakODRLinkage:
759 case Function::LinkOnceAnyLinkage:
760 case Function::LinkOnceODRLinkage:
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000761 O << "\t.globl\t" << CurrentFnName << '\n';
762 O << "\t.weak_definition\t" << CurrentFnName << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000763 break;
764 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000765
Anton Korobeynikov78d69aa2008-08-08 18:25:07 +0000766 printVisibility(CurrentFnName, F->getVisibility());
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000767
Bill Wendling25a8ae32009-06-30 22:38:32 +0000768 EmitAlignment(MF.getAlignment(), F);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000769 O << CurrentFnName << ":\n";
770
771 // Emit pre-function debug information.
Devang Patelaa1e8432009-01-08 23:40:34 +0000772 DW->BeginFunction(&MF);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000773
Bill Wendling36ccaea2008-01-26 06:51:24 +0000774 // If the function is empty, then we need to emit *something*. Otherwise, the
775 // function's label might be associated with something that it wasn't meant to
776 // be associated with. We emit a noop in this situation.
777 MachineFunction::iterator I = MF.begin();
778
Bill Wendlingb5880a72008-01-26 09:03:52 +0000779 if (++I == MF.end() && MF.front().empty())
780 O << "\tnop\n";
Bill Wendling36ccaea2008-01-26 06:51:24 +0000781
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000782 // Print out code for the function.
783 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
784 I != E; ++I) {
785 // Print a label for the basic block.
786 if (I != MF.begin()) {
Evan Cheng11db8142009-03-24 00:17:40 +0000787 printBasicBlockLabel(I, true, true, VerboseAsm);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000788 O << '\n';
789 }
Bill Wendling36ccaea2008-01-26 06:51:24 +0000790 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
791 II != IE; ++II) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000792 // Print the assembly for the instruction.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000793 printMachineInstruction(II);
794 }
795 }
796
797 // Print out jump tables referenced by the function.
798 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000799
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000800 // Emit post-function debug information.
Devang Patelaa1e8432009-01-08 23:40:34 +0000801 DW->EndFunction(&MF);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000802
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000803 // We didn't modify anything.
804 return false;
805}
806
807
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000808bool PPCDarwinAsmPrinter::doInitialization(Module &M) {
Dan Gohman12300e12008-03-25 21:45:14 +0000809 static const char *const CPUDirectives[] = {
Dale Johannesen161badc2008-02-14 23:35:16 +0000810 "",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000811 "ppc",
812 "ppc601",
813 "ppc602",
814 "ppc603",
815 "ppc7400",
816 "ppc750",
817 "ppc970",
818 "ppc64"
819 };
820
821 unsigned Directive = Subtarget.getDarwinDirective();
822 if (Subtarget.isGigaProcessor() && Directive < PPC::DIR_970)
823 Directive = PPC::DIR_970;
824 if (Subtarget.hasAltivec() && Directive < PPC::DIR_7400)
825 Directive = PPC::DIR_7400;
826 if (Subtarget.isPPC64() && Directive < PPC::DIR_970)
827 Directive = PPC::DIR_64;
828 assert(Directive <= PPC::DIR_64 && "Directive out of range.");
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000829 O << "\t.machine " << CPUDirectives[Directive] << '\n';
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000830
Dan Gohman4a558a32007-07-25 19:33:14 +0000831 bool Result = AsmPrinter::doInitialization(M);
Devang Patelc20079e2009-06-20 01:00:07 +0000832 assert(MMI);
Dale Johannesen58e0eeb2008-07-09 20:43:39 +0000833
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000834 // Prime text sections so they are adjacent. This reduces the likelihood a
835 // large data or debug section causes a branch to exceed 16M limit.
Dale Johannesen3c788322008-01-11 00:54:37 +0000836 SwitchToTextSection("\t.section __TEXT,__textcoal_nt,coalesced,"
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000837 "pure_instructions");
838 if (TM.getRelocationModel() == Reloc::PIC_) {
Dale Johannesen3c788322008-01-11 00:54:37 +0000839 SwitchToTextSection("\t.section __TEXT,__picsymbolstub1,symbol_stubs,"
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000840 "pure_instructions,32");
841 } else if (TM.getRelocationModel() == Reloc::DynamicNoPIC) {
Dale Johannesen3c788322008-01-11 00:54:37 +0000842 SwitchToTextSection("\t.section __TEXT,__symbol_stub1,symbol_stubs,"
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000843 "pure_instructions,16");
844 }
Anton Korobeynikov55b94962008-09-24 22:15:21 +0000845 SwitchToSection(TAI->getTextSection());
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000846
Dan Gohman4a558a32007-07-25 19:33:14 +0000847 return Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000848}
849
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000850void PPCDarwinAsmPrinter::printModuleLevelGV(const GlobalVariable* GVar) {
851 const TargetData *TD = TM.getTargetData();
852
853 if (!GVar->hasInitializer())
854 return; // External global require no code
855
856 // Check to see if this is a special global used by LLVM, if so, emit it.
857 if (EmitSpecialLLVMGlobal(GVar)) {
858 if (TM.getRelocationModel() == Reloc::Static) {
859 if (GVar->getName() == "llvm.global_ctors")
860 O << ".reference .constructors_used\n";
861 else if (GVar->getName() == "llvm.global_dtors")
862 O << ".reference .destructors_used\n";
863 }
864 return;
865 }
866
Chris Lattnerb3cdde62009-07-14 18:17:16 +0000867 std::string name = Mang->getMangledName(GVar);
Anton Korobeynikov78d69aa2008-08-08 18:25:07 +0000868 printVisibility(name, GVar->getVisibility());
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000869
870 Constant *C = GVar->getInitializer();
871 const Type *Type = C->getType();
Duncan Sandsec4f97d2009-05-09 07:06:46 +0000872 unsigned Size = TD->getTypeAllocSize(Type);
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000873 unsigned Align = TD->getPreferredAlignmentLog(GVar);
874
Anton Korobeynikov1a9edae2008-09-24 22:14:23 +0000875 SwitchToSection(TAI->SectionForGlobal(GVar));
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000876
877 if (C->isNullValue() && /* FIXME: Verify correct */
878 !GVar->hasSection() &&
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000879 (GVar->hasLocalLinkage() || GVar->hasExternalLinkage() ||
Duncan Sands19d161f2009-03-07 15:45:40 +0000880 GVar->isWeakForLinker()) &&
Evan Chengcf84b142009-02-18 02:19:52 +0000881 TAI->SectionKindForGlobal(GVar) != SectionKind::RODataMergeStr) {
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000882 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
883
884 if (GVar->hasExternalLinkage()) {
885 O << "\t.globl " << name << '\n';
886 O << "\t.zerofill __DATA, __common, " << name << ", "
887 << Size << ", " << Align;
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000888 } else if (GVar->hasLocalLinkage()) {
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000889 O << TAI->getLCOMMDirective() << name << ',' << Size << ',' << Align;
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000890 } else if (!GVar->hasCommonLinkage()) {
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000891 O << "\t.globl " << name << '\n'
892 << TAI->getWeakDefDirective() << name << '\n';
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000893 EmitAlignment(Align, GVar);
Evan Cheng11db8142009-03-24 00:17:40 +0000894 O << name << ":";
895 if (VerboseAsm) {
896 O << "\t\t\t\t" << TAI->getCommentString() << " ";
897 PrintUnmangledNameSafely(GVar, O);
898 }
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000899 O << '\n';
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000900 EmitGlobalConstant(C);
901 return;
902 } else {
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000903 O << ".comm " << name << ',' << Size;
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000904 // Darwin 9 and above support aligned common data.
905 if (Subtarget.isDarwin9())
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000906 O << ',' << Align;
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000907 }
Evan Cheng11db8142009-03-24 00:17:40 +0000908 if (VerboseAsm) {
909 O << "\t\t" << TAI->getCommentString() << " '";
910 PrintUnmangledNameSafely(GVar, O);
911 O << "'";
912 }
913 O << '\n';
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000914 return;
915 }
916
917 switch (GVar->getLinkage()) {
Duncan Sands19d161f2009-03-07 15:45:40 +0000918 case GlobalValue::LinkOnceAnyLinkage:
919 case GlobalValue::LinkOnceODRLinkage:
920 case GlobalValue::WeakAnyLinkage:
921 case GlobalValue::WeakODRLinkage:
Duncan Sandsb95df792009-03-11 20:14:15 +0000922 case GlobalValue::CommonLinkage:
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000923 O << "\t.globl " << name << '\n'
924 << "\t.weak_definition " << name << '\n';
925 break;
926 case GlobalValue::AppendingLinkage:
927 // FIXME: appending linkage variables should go into a section of
928 // their name or something. For now, just emit them as external.
929 case GlobalValue::ExternalLinkage:
930 // If external or appending, declare as a global symbol
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000931 O << "\t.globl " << name << '\n';
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000932 // FALL THROUGH
933 case GlobalValue::InternalLinkage:
evancheng47ae8142009-01-25 06:32:01 +0000934 case GlobalValue::PrivateLinkage:
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000935 break;
936 default:
Edwin Törökbd448e32009-07-14 16:55:14 +0000937 llvm_unreachable("Unknown linkage type!");
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000938 }
939
940 EmitAlignment(Align, GVar);
Evan Cheng11db8142009-03-24 00:17:40 +0000941 O << name << ":";
942 if (VerboseAsm) {
943 O << "\t\t\t\t" << TAI->getCommentString() << " '";
944 PrintUnmangledNameSafely(GVar, O);
945 O << "'";
946 }
947 O << '\n';
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000948
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000949 EmitGlobalConstant(C);
950 O << '\n';
951}
952
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000953bool PPCDarwinAsmPrinter::doFinalization(Module &M) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000954 const TargetData *TD = TM.getTargetData();
955
956 // Print out module-level global variables here.
957 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000958 I != E; ++I)
959 printModuleLevelGV(I);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000960
961 bool isPPC64 = TD->getPointerSizeInBits() == 64;
962
963 // Output stubs for dynamically-linked functions
Chris Lattner189198f2009-07-15 00:55:58 +0000964 if (TM.getRelocationModel() == Reloc::PIC_ && !FnStubs.empty()) {
965 SwitchToTextSection("\t.section __TEXT,__picsymbolstub1,symbol_stubs,"
966 "pure_instructions,32");
Evan Chenga65854f2008-12-05 01:06:39 +0000967 for (StringSet<>::iterator i = FnStubs.begin(), e = FnStubs.end();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000968 i != e; ++i) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000969 EmitAlignment(4);
Evan Chenga65854f2008-12-05 01:06:39 +0000970 const char *p = i->getKeyData();
971 bool hasQuote = p[0]=='\"';
Dale Johannesena21b5202008-05-19 21:38:18 +0000972 printSuffixedName(p, "$stub");
973 O << ":\n";
Evan Chenga65854f2008-12-05 01:06:39 +0000974 O << "\t.indirect_symbol " << p << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000975 O << "\tmflr r0\n";
Evan Chenga65854f2008-12-05 01:06:39 +0000976 O << "\tbcl 20,31,";
977 if (hasQuote)
978 O << "\"L0$" << &p[1];
979 else
980 O << "L0$" << p;
981 O << '\n';
982 if (hasQuote)
983 O << "\"L0$" << &p[1];
984 else
985 O << "L0$" << p;
986 O << ":\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000987 O << "\tmflr r11\n";
Dale Johannesena21b5202008-05-19 21:38:18 +0000988 O << "\taddis r11,r11,ha16(";
989 printSuffixedName(p, "$lazy_ptr");
Evan Chenga65854f2008-12-05 01:06:39 +0000990 O << "-";
991 if (hasQuote)
992 O << "\"L0$" << &p[1];
993 else
994 O << "L0$" << p;
995 O << ")\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000996 O << "\tmtlr r0\n";
997 if (isPPC64)
Dale Johannesena21b5202008-05-19 21:38:18 +0000998 O << "\tldu r12,lo16(";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000999 else
Dale Johannesena21b5202008-05-19 21:38:18 +00001000 O << "\tlwzu r12,lo16(";
1001 printSuffixedName(p, "$lazy_ptr");
Evan Chenga65854f2008-12-05 01:06:39 +00001002 O << "-";
1003 if (hasQuote)
1004 O << "\"L0$" << &p[1];
1005 else
1006 O << "L0$" << p;
1007 O << ")(r11)\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001008 O << "\tmtctr r12\n";
1009 O << "\tbctr\n";
1010 SwitchToDataSection(".lazy_symbol_pointer");
Dale Johannesena21b5202008-05-19 21:38:18 +00001011 printSuffixedName(p, "$lazy_ptr");
1012 O << ":\n";
Evan Chenga65854f2008-12-05 01:06:39 +00001013 O << "\t.indirect_symbol " << p << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001014 if (isPPC64)
1015 O << "\t.quad dyld_stub_binding_helper\n";
1016 else
1017 O << "\t.long dyld_stub_binding_helper\n";
1018 }
Chris Lattner189198f2009-07-15 00:55:58 +00001019 } else if (!FnStubs.empty()) {
1020 SwitchToTextSection("\t.section __TEXT,__symbol_stub1,symbol_stubs,"
1021 "pure_instructions,16");
Evan Chenga65854f2008-12-05 01:06:39 +00001022 for (StringSet<>::iterator i = FnStubs.begin(), e = FnStubs.end();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001023 i != e; ++i) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001024 EmitAlignment(4);
Evan Chenga65854f2008-12-05 01:06:39 +00001025 const char *p = i->getKeyData();
Dale Johannesena21b5202008-05-19 21:38:18 +00001026 printSuffixedName(p, "$stub");
1027 O << ":\n";
Evan Chenga65854f2008-12-05 01:06:39 +00001028 O << "\t.indirect_symbol " << p << '\n';
Dale Johannesena21b5202008-05-19 21:38:18 +00001029 O << "\tlis r11,ha16(";
1030 printSuffixedName(p, "$lazy_ptr");
1031 O << ")\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001032 if (isPPC64)
Dale Johannesena21b5202008-05-19 21:38:18 +00001033 O << "\tldu r12,lo16(";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001034 else
Dale Johannesena21b5202008-05-19 21:38:18 +00001035 O << "\tlwzu r12,lo16(";
1036 printSuffixedName(p, "$lazy_ptr");
1037 O << ")(r11)\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001038 O << "\tmtctr r12\n";
1039 O << "\tbctr\n";
1040 SwitchToDataSection(".lazy_symbol_pointer");
Dale Johannesena21b5202008-05-19 21:38:18 +00001041 printSuffixedName(p, "$lazy_ptr");
1042 O << ":\n";
Evan Chenga65854f2008-12-05 01:06:39 +00001043 O << "\t.indirect_symbol " << p << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001044 if (isPPC64)
1045 O << "\t.quad dyld_stub_binding_helper\n";
1046 else
1047 O << "\t.long dyld_stub_binding_helper\n";
1048 }
1049 }
1050
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +00001051 O << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001052
Dale Johannesen85535762008-04-02 00:25:04 +00001053 if (TAI->doesSupportExceptionHandling() && MMI) {
Dale Johannesenfb3ac732007-11-20 23:24:42 +00001054 // Add the (possibly multiple) personalities to the set of global values.
Dale Johannesen85535762008-04-02 00:25:04 +00001055 // Only referenced functions get into the Personalities list.
Chris Lattner2424eac2009-06-24 19:09:55 +00001056 const std::vector<Function *> &Personalities = MMI->getPersonalities();
Dale Johannesenfb3ac732007-11-20 23:24:42 +00001057 for (std::vector<Function *>::const_iterator I = Personalities.begin(),
1058 E = Personalities.end(); I != E; ++I)
1059 if (*I) GVStubs.insert("_" + (*I)->getName());
1060 }
1061
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001062 // Output stubs for external and common global variables.
Dan Gohman3f7d94b2007-10-03 19:26:29 +00001063 if (!GVStubs.empty()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001064 SwitchToDataSection(".non_lazy_symbol_pointer");
Evan Chenga65854f2008-12-05 01:06:39 +00001065 for (StringSet<>::iterator i = GVStubs.begin(), e = GVStubs.end();
1066 i != e; ++i) {
1067 std::string p = i->getKeyData();
Dale Johannesena21b5202008-05-19 21:38:18 +00001068 printSuffixedName(p, "$non_lazy_ptr");
1069 O << ":\n";
Evan Chenga65854f2008-12-05 01:06:39 +00001070 O << "\t.indirect_symbol " << p << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001071 if (isPPC64)
1072 O << "\t.quad\t0\n";
1073 else
1074 O << "\t.long\t0\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001075 }
1076 }
1077
Evan Chenga65854f2008-12-05 01:06:39 +00001078 if (!HiddenGVStubs.empty()) {
1079 SwitchToSection(TAI->getDataSection());
1080 for (StringSet<>::iterator i = HiddenGVStubs.begin(), e = HiddenGVStubs.end();
1081 i != e; ++i) {
1082 std::string p = i->getKeyData();
1083 EmitAlignment(isPPC64 ? 3 : 2);
1084 printSuffixedName(p, "$non_lazy_ptr");
1085 O << ":\n";
1086 if (isPPC64)
1087 O << "\t.quad\t";
1088 else
1089 O << "\t.long\t";
1090 O << p << '\n';
1091 }
1092 }
1093
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001094 // Funny Darwin hack: This flag tells the linker that no global symbols
1095 // contain code that falls through to other global symbols (e.g. the obvious
1096 // implementation of multiple entry points). If this doesn't occur, the
1097 // linker can safely perform dead code stripping. Since LLVM never generates
1098 // code that does this, it is always safe to set.
1099 O << "\t.subsections_via_symbols\n";
1100
Dan Gohman4a558a32007-07-25 19:33:14 +00001101 return AsmPrinter::doFinalization(M);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001102}
1103
1104
1105
1106/// createPPCAsmPrinterPass - Returns a pass that prints the PPC assembly code
1107/// for a MachineFunction to the given output stream, in a format that the
1108/// Darwin assembler can deal with.
1109///
David Greene302008d2009-07-14 20:18:05 +00001110FunctionPass *llvm::createPPCAsmPrinterPass(formatted_raw_ostream &o,
Bill Wendling4f405312009-02-24 08:30:20 +00001111 PPCTargetMachine &tm,
Bill Wendling5ed22ac2009-04-29 23:29:43 +00001112 bool verbose) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001113 const PPCSubtarget *Subtarget = &tm.getSubtarget<PPCSubtarget>();
1114
1115 if (Subtarget->isDarwin()) {
Daniel Dunbarb10d2222009-07-01 01:48:54 +00001116 return new PPCDarwinAsmPrinter(o, tm, tm.getTargetAsmInfo(), verbose);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001117 } else {
Daniel Dunbarb10d2222009-07-01 01:48:54 +00001118 return new PPCLinuxAsmPrinter(o, tm, tm.getTargetAsmInfo(), verbose);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001119 }
1120}
Anton Korobeynikov01c0e9f2008-08-17 13:54:28 +00001121
1122namespace {
1123 static struct Register {
1124 Register() {
1125 PPCTargetMachine::registerAsmPrinter(createPPCAsmPrinterPass);
1126 }
1127 } Registrator;
1128}
Oscar Fuentes4f012352008-11-15 21:36:30 +00001129
1130extern "C" int PowerPCAsmPrinterForceLink;
1131int PowerPCAsmPrinterForceLink = 0;
Douglas Gregor1dc5ff42009-06-16 20:12:29 +00001132
Bob Wilsonebbc1c42009-06-23 23:59:40 +00001133// Force static initialization.
1134extern "C" void LLVMInitializePowerPCAsmPrinter() { }