blob: 08b0de593d9b771b35596e18cddf1c7b5d0821f2 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- PPCAsmPrinter.cpp - Print machine instrs to PowerPC assembly --------=//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file contains a printer that converts from our internal representation
11// of machine-dependent LLVM code to PowerPC assembly language. This printer is
12// the output mechanism used by `llc'.
13//
14// Documentation at http://developer.apple.com/documentation/DeveloperTools/
15// Reference/Assembler/ASMIntroduction/chapter_1_section_1.html
16//
17//===----------------------------------------------------------------------===//
18
19#define DEBUG_TYPE "asmprinter"
20#include "PPC.h"
21#include "PPCPredicates.h"
22#include "PPCTargetMachine.h"
23#include "PPCSubtarget.h"
24#include "llvm/Constants.h"
25#include "llvm/DerivedTypes.h"
26#include "llvm/Module.h"
27#include "llvm/Assembly/Writer.h"
28#include "llvm/CodeGen/AsmPrinter.h"
29#include "llvm/CodeGen/DwarfWriter.h"
30#include "llvm/CodeGen/MachineModuleInfo.h"
31#include "llvm/CodeGen/MachineFunctionPass.h"
32#include "llvm/CodeGen/MachineInstr.h"
Bill Wendling36ccaea2008-01-26 06:51:24 +000033#include "llvm/CodeGen/MachineInstrBuilder.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000034#include "llvm/Support/Mangler.h"
35#include "llvm/Support/MathExtras.h"
36#include "llvm/Support/CommandLine.h"
37#include "llvm/Support/Debug.h"
38#include "llvm/Support/Compiler.h"
Owen Anderson847b99b2008-08-21 00:14:44 +000039#include "llvm/Support/raw_ostream.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000040#include "llvm/Target/TargetAsmInfo.h"
Dan Gohman1e57df32008-02-10 18:45:23 +000041#include "llvm/Target/TargetRegisterInfo.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000042#include "llvm/Target/TargetInstrInfo.h"
43#include "llvm/Target/TargetOptions.h"
44#include "llvm/ADT/Statistic.h"
45#include "llvm/ADT/StringExtras.h"
Evan Chenga65854f2008-12-05 01:06:39 +000046#include "llvm/ADT/StringSet.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000047using namespace llvm;
48
49STATISTIC(EmittedInsts, "Number of machine instrs printed");
50
51namespace {
Bill Wendling4f405312009-02-24 08:30:20 +000052 class VISIBILITY_HIDDEN PPCAsmPrinter : public AsmPrinter {
53 protected:
Evan Chenga65854f2008-12-05 01:06:39 +000054 StringSet<> FnStubs, GVStubs, HiddenGVStubs;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000055 const PPCSubtarget &Subtarget;
Bill Wendling4f405312009-02-24 08:30:20 +000056 public:
Bill Wendling58ed5d22009-04-29 00:15:41 +000057 explicit PPCAsmPrinter(raw_ostream &O, TargetMachine &TM,
Bill Wendling5ed22ac2009-04-29 23:29:43 +000058 const TargetAsmInfo *T, CodeGenOpt::Level OL,
59 bool V)
Bill Wendling58ed5d22009-04-29 00:15:41 +000060 : AsmPrinter(O, TM, T, OL, V),
Bill Wendling4f405312009-02-24 08:30:20 +000061 Subtarget(TM.getSubtarget<PPCSubtarget>()) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +000062
63 virtual const char *getPassName() const {
64 return "PowerPC Assembly Printer";
65 }
66
67 PPCTargetMachine &getTM() {
68 return static_cast<PPCTargetMachine&>(TM);
69 }
70
71 unsigned enumRegToMachineReg(unsigned enumReg) {
72 switch (enumReg) {
73 default: assert(0 && "Unhandled register!"); break;
74 case PPC::CR0: return 0;
75 case PPC::CR1: return 1;
76 case PPC::CR2: return 2;
77 case PPC::CR3: return 3;
78 case PPC::CR4: return 4;
79 case PPC::CR5: return 5;
80 case PPC::CR6: return 6;
81 case PPC::CR7: return 7;
82 }
83 abort();
84 }
85
86 /// printInstruction - This method is automatically generated by tablegen
87 /// from the instruction set description. This method returns true if the
88 /// machine instruction was sufficiently described to print it, otherwise it
89 /// returns false.
90 bool printInstruction(const MachineInstr *MI);
91
92 void printMachineInstruction(const MachineInstr *MI);
93 void printOp(const MachineOperand &MO);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +000094
Dan Gohmanf17a25c2007-07-18 16:29:46 +000095 /// stripRegisterPrefix - This method strips the character prefix from a
96 /// register name so that only the number is left. Used by for linux asm.
97 const char *stripRegisterPrefix(const char *RegName) {
98 switch (RegName[0]) {
99 case 'r':
100 case 'f':
101 case 'v': return RegName + 1;
102 case 'c': if (RegName[1] == 'r') return RegName + 2;
103 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000104
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000105 return RegName;
106 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000107
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000108 /// printRegister - Print register according to target requirements.
109 ///
110 void printRegister(const MachineOperand &MO, bool R0AsZero) {
111 unsigned RegNo = MO.getReg();
Dan Gohman1e57df32008-02-10 18:45:23 +0000112 assert(TargetRegisterInfo::isPhysicalRegister(RegNo) && "Not physreg??");
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000113
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000114 // If we should use 0 for R0.
115 if (R0AsZero && RegNo == PPC::R0) {
116 O << "0";
117 return;
118 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000119
Bill Wendling8eeb9792008-02-26 21:11:01 +0000120 const char *RegName = TM.getRegisterInfo()->get(RegNo).AsmName;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000121 // Linux assembler (Others?) does not take register mnemonics.
122 // FIXME - What about special registers used in mfspr/mtspr?
123 if (!Subtarget.isDarwin()) RegName = stripRegisterPrefix(RegName);
124 O << RegName;
125 }
126
127 void printOperand(const MachineInstr *MI, unsigned OpNo) {
128 const MachineOperand &MO = MI->getOperand(OpNo);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000129 if (MO.isReg()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000130 printRegister(MO, false);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000131 } else if (MO.isImm()) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000132 O << MO.getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000133 } else {
134 printOp(MO);
135 }
136 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000137
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000138 bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
139 unsigned AsmVariant, const char *ExtraCode);
140 bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
141 unsigned AsmVariant, const char *ExtraCode);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000142
143
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000144 void printS5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000145 char value = MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000146 value = (value << (32-5)) >> (32-5);
147 O << (int)value;
148 }
149 void printU5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000150 unsigned char value = MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000151 assert(value <= 31 && "Invalid u5imm argument!");
152 O << (unsigned int)value;
153 }
154 void printU6ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000155 unsigned char value = MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000156 assert(value <= 63 && "Invalid u6imm argument!");
157 O << (unsigned int)value;
158 }
159 void printS16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000160 O << (short)MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000161 }
162 void printU16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000163 O << (unsigned short)MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000164 }
165 void printS16X4ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000166 if (MI->getOperand(OpNo).isImm()) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000167 O << (short)(MI->getOperand(OpNo).getImm()*4);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000168 } else {
169 O << "lo16(";
170 printOp(MI->getOperand(OpNo));
171 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng477013c2007-10-14 05:57:21 +0000172 O << "-\"L" << getFunctionNumber() << "$pb\")";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000173 else
174 O << ')';
175 }
176 }
177 void printBranchOperand(const MachineInstr *MI, unsigned OpNo) {
178 // Branches can take an immediate operand. This is used by the branch
179 // selection pass to print $+8, an eight byte displacement from the PC.
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000180 if (MI->getOperand(OpNo).isImm()) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000181 O << "$+" << MI->getOperand(OpNo).getImm()*4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000182 } else {
183 printOp(MI->getOperand(OpNo));
184 }
185 }
186 void printCallOperand(const MachineInstr *MI, unsigned OpNo) {
187 const MachineOperand &MO = MI->getOperand(OpNo);
188 if (TM.getRelocationModel() != Reloc::Static) {
189 if (MO.getType() == MachineOperand::MO_GlobalAddress) {
190 GlobalValue *GV = MO.getGlobal();
191 if (((GV->isDeclaration() || GV->hasWeakLinkage() ||
Dale Johannesen49c44122008-05-14 20:12:51 +0000192 GV->hasLinkOnceLinkage() || GV->hasCommonLinkage()))) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000193 // Dynamically-resolved functions need a stub for the function.
194 std::string Name = Mang->getValueName(GV);
195 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 {
Devang Patelaa1e8432009-01-08 23:40:34 +0000296 DwarfWriter *DW;
Dale Johannesen2f6aa072008-07-09 21:24:07 +0000297 MachineModuleInfo *MMI;
Bill Wendling4f405312009-02-24 08:30:20 +0000298 public:
Bill Wendling58ed5d22009-04-29 00:15:41 +0000299 explicit PPCLinuxAsmPrinter(raw_ostream &O, PPCTargetMachine &TM,
Bill Wendling5ed22ac2009-04-29 23:29:43 +0000300 const TargetAsmInfo *T, CodeGenOpt::Level OL,
301 bool V)
Bill Wendling58ed5d22009-04-29 00:15:41 +0000302 : PPCAsmPrinter(O, TM, T, OL, V), DW(0), MMI(0) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000303
304 virtual const char *getPassName() const {
305 return "Linux PPC Assembly Printer";
306 }
307
308 bool runOnMachineFunction(MachineFunction &F);
309 bool doInitialization(Module &M);
310 bool doFinalization(Module &M);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000311
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000312 void getAnalysisUsage(AnalysisUsage &AU) const {
313 AU.setPreservesAll();
314 AU.addRequired<MachineModuleInfo>();
Devang Patelaa1e8432009-01-08 23:40:34 +0000315 AU.addRequired<DwarfWriter>();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000316 PPCAsmPrinter::getAnalysisUsage(AU);
317 }
318
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000319 void printModuleLevelGV(const GlobalVariable* GVar);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000320 };
321
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000322 /// PPCDarwinAsmPrinter - PowerPC assembly printer, customized for Darwin/Mac
323 /// OS X
Bill Wendling4f405312009-02-24 08:30:20 +0000324 class VISIBILITY_HIDDEN PPCDarwinAsmPrinter : public PPCAsmPrinter {
Devang Patelaa1e8432009-01-08 23:40:34 +0000325 DwarfWriter *DW;
Dale Johannesenfb3ac732007-11-20 23:24:42 +0000326 MachineModuleInfo *MMI;
Devang Patelaa1e8432009-01-08 23:40:34 +0000327 raw_ostream &OS;
Bill Wendling4f405312009-02-24 08:30:20 +0000328 public:
Bill Wendling58ed5d22009-04-29 00:15:41 +0000329 explicit PPCDarwinAsmPrinter(raw_ostream &O, PPCTargetMachine &TM,
Bill Wendling5ed22ac2009-04-29 23:29:43 +0000330 const TargetAsmInfo *T, CodeGenOpt::Level OL,
331 bool V)
Bill Wendling58ed5d22009-04-29 00:15:41 +0000332 : PPCAsmPrinter(O, TM, T, OL, V), DW(0), MMI(0), OS(O) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000333
334 virtual const char *getPassName() const {
335 return "Darwin PPC Assembly Printer";
336 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000337
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000338 bool runOnMachineFunction(MachineFunction &F);
339 bool doInitialization(Module &M);
340 bool doFinalization(Module &M);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000341
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000342 void getAnalysisUsage(AnalysisUsage &AU) const {
343 AU.setPreservesAll();
344 AU.addRequired<MachineModuleInfo>();
Devang Patelaa1e8432009-01-08 23:40:34 +0000345 AU.addRequired<DwarfWriter>();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000346 PPCAsmPrinter::getAnalysisUsage(AU);
347 }
348
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000349 void printModuleLevelGV(const GlobalVariable* GVar);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000350 };
351} // end of anonymous namespace
352
353// Include the auto-generated portion of the assembly writer
354#include "PPCGenAsmWriter.inc"
355
356void PPCAsmPrinter::printOp(const MachineOperand &MO) {
357 switch (MO.getType()) {
358 case MachineOperand::MO_Immediate:
359 cerr << "printOp() does not handle immediate values\n";
360 abort();
361 return;
362
363 case MachineOperand::MO_MachineBasicBlock:
Chris Lattner6017d482007-12-30 23:10:15 +0000364 printBasicBlockLabel(MO.getMBB());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000365 return;
366 case MachineOperand::MO_JumpTableIndex:
Evan Cheng477013c2007-10-14 05:57:21 +0000367 O << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
Chris Lattner6017d482007-12-30 23:10:15 +0000368 << '_' << MO.getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000369 // FIXME: PIC relocation model
370 return;
371 case MachineOperand::MO_ConstantPoolIndex:
Evan Cheng477013c2007-10-14 05:57:21 +0000372 O << TAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber()
Chris Lattner6017d482007-12-30 23:10:15 +0000373 << '_' << MO.getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000374 return;
375 case MachineOperand::MO_ExternalSymbol:
376 // Computing the address of an external symbol, not calling it.
377 if (TM.getRelocationModel() != Reloc::Static) {
378 std::string Name(TAI->getGlobalPrefix()); Name += MO.getSymbolName();
379 GVStubs.insert(Name);
Dale Johannesena21b5202008-05-19 21:38:18 +0000380 printSuffixedName(Name, "$non_lazy_ptr");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000381 return;
382 }
383 O << TAI->getGlobalPrefix() << MO.getSymbolName();
384 return;
385 case MachineOperand::MO_GlobalAddress: {
386 // Computing the address of a global symbol, not calling it.
387 GlobalValue *GV = MO.getGlobal();
388 std::string Name = Mang->getValueName(GV);
389
390 // External or weakly linked global variables need non-lazily-resolved stubs
391 if (TM.getRelocationModel() != Reloc::Static) {
Duncan Sands19d161f2009-03-07 15:45:40 +0000392 if (GV->isDeclaration() || GV->isWeakForLinker()) {
Evan Chenga65854f2008-12-05 01:06:39 +0000393 if (GV->hasHiddenVisibility()) {
394 if (!GV->isDeclaration() && !GV->hasCommonLinkage())
395 O << Name;
396 else {
397 HiddenGVStubs.insert(Name);
398 printSuffixedName(Name, "$non_lazy_ptr");
399 }
400 } else {
401 GVStubs.insert(Name);
402 printSuffixedName(Name, "$non_lazy_ptr");
403 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000404 return;
405 }
406 }
407 O << Name;
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000408
Anton Korobeynikov440f23d2008-11-22 16:15:34 +0000409 printOffset(MO.getOffset());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000410 return;
411 }
412
413 default:
414 O << "<unknown operand type: " << MO.getType() << ">";
415 return;
416 }
417}
418
419/// EmitExternalGlobal - In this case we need to use the indirect symbol.
420///
421void PPCAsmPrinter::EmitExternalGlobal(const GlobalVariable *GV) {
Bill Wendling26a8ab92009-04-10 00:12:49 +0000422 std::string Name;
423 getGlobalLinkName(GV, Name);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000424 if (TM.getRelocationModel() != Reloc::Static) {
Evan Chenga65854f2008-12-05 01:06:39 +0000425 if (GV->hasHiddenVisibility())
426 HiddenGVStubs.insert(Name);
427 else
428 GVStubs.insert(Name);
Dale Johannesena21b5202008-05-19 21:38:18 +0000429 printSuffixedName(Name, "$non_lazy_ptr");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000430 return;
431 }
432 O << Name;
433}
434
435/// PrintAsmOperand - Print out an operand for an inline asm expression.
436///
437bool PPCAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000438 unsigned AsmVariant,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000439 const char *ExtraCode) {
440 // Does this asm operand have a single letter operand modifier?
441 if (ExtraCode && ExtraCode[0]) {
442 if (ExtraCode[1] != 0) return true; // Unknown modifier.
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000443
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000444 switch (ExtraCode[0]) {
445 default: return true; // Unknown modifier.
446 case 'c': // Don't print "$" before a global var name or constant.
447 // PPC never has a prefix.
448 printOperand(MI, OpNo);
449 return false;
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000450 case 'L': // Write second word of DImode reference.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000451 // Verify that this operand has two consecutive registers.
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000452 if (!MI->getOperand(OpNo).isReg() ||
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000453 OpNo+1 == MI->getNumOperands() ||
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000454 !MI->getOperand(OpNo+1).isReg())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000455 return true;
456 ++OpNo; // Return the high-part.
457 break;
458 case 'I':
459 // Write 'i' if an integer constant, otherwise nothing. Used to print
460 // addi vs add, etc.
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000461 if (MI->getOperand(OpNo).isImm())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000462 O << "i";
463 return false;
464 }
465 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000466
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000467 printOperand(MI, OpNo);
468 return false;
469}
470
471bool PPCAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000472 unsigned AsmVariant,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000473 const char *ExtraCode) {
474 if (ExtraCode && ExtraCode[0])
475 return true; // Unknown modifier.
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000476 if (MI->getOperand(OpNo).isReg())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000477 printMemRegReg(MI, OpNo);
478 else
479 printMemRegImm(MI, OpNo);
480 return false;
481}
482
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000483void PPCAsmPrinter::printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000484 const char *Modifier) {
485 assert(Modifier && "Must specify 'cc' or 'reg' as predicate op modifier!");
486 unsigned Code = MI->getOperand(OpNo).getImm();
487 if (!strcmp(Modifier, "cc")) {
488 switch ((PPC::Predicate)Code) {
489 case PPC::PRED_ALWAYS: return; // Don't print anything for always.
490 case PPC::PRED_LT: O << "lt"; return;
491 case PPC::PRED_LE: O << "le"; return;
492 case PPC::PRED_EQ: O << "eq"; return;
493 case PPC::PRED_GE: O << "ge"; return;
494 case PPC::PRED_GT: O << "gt"; return;
495 case PPC::PRED_NE: O << "ne"; return;
496 case PPC::PRED_UN: O << "un"; return;
497 case PPC::PRED_NU: O << "nu"; return;
498 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000499
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000500 } else {
501 assert(!strcmp(Modifier, "reg") &&
502 "Need to specify 'cc' or 'reg' as predicate op modifier!");
503 // Don't print the register for 'always'.
504 if (Code == PPC::PRED_ALWAYS) return;
505 printOperand(MI, OpNo+1);
506 }
507}
508
509
510/// printMachineInstruction -- Print out a single PowerPC MI in Darwin syntax to
511/// the current output stream.
512///
513void PPCAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
514 ++EmittedInsts;
515
516 // Check for slwi/srwi mnemonics.
517 if (MI->getOpcode() == PPC::RLWINM) {
518 bool FoundMnemonic = false;
Chris Lattnera96056a2007-12-30 20:49:49 +0000519 unsigned char SH = MI->getOperand(2).getImm();
520 unsigned char MB = MI->getOperand(3).getImm();
521 unsigned char ME = MI->getOperand(4).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000522 if (SH <= 31 && MB == 0 && ME == (31-SH)) {
Nate Begemanbd5cdf12008-02-05 08:49:09 +0000523 O << "\tslwi "; FoundMnemonic = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000524 }
525 if (SH <= 31 && MB == (32-SH) && ME == 31) {
Nate Begemanbd5cdf12008-02-05 08:49:09 +0000526 O << "\tsrwi "; FoundMnemonic = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000527 SH = 32-SH;
528 }
529 if (FoundMnemonic) {
530 printOperand(MI, 0);
531 O << ", ";
532 printOperand(MI, 1);
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000533 O << ", " << (unsigned int)SH << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000534 return;
535 }
536 } else if (MI->getOpcode() == PPC::OR || MI->getOpcode() == PPC::OR8) {
537 if (MI->getOperand(1).getReg() == MI->getOperand(2).getReg()) {
Nate Begemanbd5cdf12008-02-05 08:49:09 +0000538 O << "\tmr ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000539 printOperand(MI, 0);
540 O << ", ";
541 printOperand(MI, 1);
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000542 O << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000543 return;
544 }
545 } else if (MI->getOpcode() == PPC::RLDICR) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000546 unsigned char SH = MI->getOperand(2).getImm();
547 unsigned char ME = MI->getOperand(3).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000548 // rldicr RA, RS, SH, 63-SH == sldi RA, RS, SH
549 if (63-SH == ME) {
Nate Begemanbd5cdf12008-02-05 08:49:09 +0000550 O << "\tsldi ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000551 printOperand(MI, 0);
552 O << ", ";
553 printOperand(MI, 1);
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000554 O << ", " << (unsigned int)SH << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000555 return;
556 }
557 }
558
559 if (printInstruction(MI))
560 return; // Printer was automatically generated
561
562 assert(0 && "Unhandled instruction in asm writer!");
563 abort();
564 return;
565}
566
567/// runOnMachineFunction - This uses the printMachineInstruction()
568/// method to print assembly for each instruction.
569///
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000570bool PPCLinuxAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Bill Wendling4f405312009-02-24 08:30:20 +0000571 this->MF = &MF;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000572
573 SetupMachineFunction(MF);
574 O << "\n\n";
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000575
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000576 // Print out constants referenced by the function
577 EmitConstantPool(MF.getConstantPool());
578
579 // Print out labels for the function.
580 const Function *F = MF.getFunction();
Anton Korobeynikov1a9edae2008-09-24 22:14:23 +0000581 SwitchToSection(TAI->SectionForGlobal(F));
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000582
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000583 switch (F->getLinkage()) {
584 default: assert(0 && "Unknown linkage type!");
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000585 case Function::PrivateLinkage:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000586 case Function::InternalLinkage: // Symbols default to internal.
587 break;
588 case Function::ExternalLinkage:
589 O << "\t.global\t" << CurrentFnName << '\n'
590 << "\t.type\t" << CurrentFnName << ", @function\n";
591 break;
Duncan Sands19d161f2009-03-07 15:45:40 +0000592 case Function::WeakAnyLinkage:
593 case Function::WeakODRLinkage:
594 case Function::LinkOnceAnyLinkage:
595 case Function::LinkOnceODRLinkage:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000596 O << "\t.global\t" << CurrentFnName << '\n';
597 O << "\t.weak\t" << CurrentFnName << '\n';
598 break;
599 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000600
Anton Korobeynikov78d69aa2008-08-08 18:25:07 +0000601 printVisibility(CurrentFnName, F->getVisibility());
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000602
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000603 EmitAlignment(2, F);
604 O << CurrentFnName << ":\n";
605
606 // Emit pre-function debug information.
Devang Patelaa1e8432009-01-08 23:40:34 +0000607 DW->BeginFunction(&MF);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000608
609 // Print out code for the function.
610 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
611 I != E; ++I) {
612 // Print a label for the basic block.
613 if (I != MF.begin()) {
Evan Cheng45c1edb2008-02-28 00:43:03 +0000614 printBasicBlockLabel(I, true, true);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000615 O << '\n';
616 }
617 for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
618 II != E; ++II) {
619 // Print the assembly for the instruction.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000620 printMachineInstruction(II);
621 }
622 }
623
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000624 O << "\t.size\t" << CurrentFnName << ",.-" << CurrentFnName << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000625
626 // Print out jump tables referenced by the function.
627 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000628
Dale Johannesendd9e1c92008-12-03 19:33:10 +0000629 SwitchToSection(TAI->SectionForGlobal(F));
630
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000631 // Emit post-function debug information.
Devang Patelaa1e8432009-01-08 23:40:34 +0000632 DW->EndFunction(&MF);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000633
Dan Gohmaneb94abd2008-11-07 19:49:17 +0000634 O.flush();
635
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000636 // We didn't modify anything.
637 return false;
638}
639
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000640bool PPCLinuxAsmPrinter::doInitialization(Module &M) {
Dan Gohman4a558a32007-07-25 19:33:14 +0000641 bool Result = AsmPrinter::doInitialization(M);
Duncan Sands4e0d6a72009-01-28 13:14:17 +0000642 DW = getAnalysisIfAvailable<DwarfWriter>();
Devang Patelc20079e2009-06-20 01:00:07 +0000643 MMI = getAnalysisIfAvailable<MachineModuleInfo>();
644 assert(MMI);
Anton Korobeynikov55b94962008-09-24 22:15:21 +0000645 SwitchToSection(TAI->getTextSection());
Dan Gohman4a558a32007-07-25 19:33:14 +0000646 return Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000647}
648
Chris Lattner2b638a72008-02-15 19:04:54 +0000649/// PrintUnmangledNameSafely - Print out the printable characters in the name.
Dan Gohman8387bb32009-03-03 02:55:14 +0000650/// Don't print things like \\n or \\0.
Owen Anderson847b99b2008-08-21 00:14:44 +0000651static void PrintUnmangledNameSafely(const Value *V, raw_ostream &OS) {
Chris Lattner2b638a72008-02-15 19:04:54 +0000652 for (const char *Name = V->getNameStart(), *E = Name+V->getNameLen();
653 Name != E; ++Name)
654 if (isprint(*Name))
655 OS << *Name;
656}
657
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000658void PPCLinuxAsmPrinter::printModuleLevelGV(const GlobalVariable* GVar) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000659 const TargetData *TD = TM.getTargetData();
660
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000661 if (!GVar->hasInitializer())
662 return; // External global require no code
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000663
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000664 // Check to see if this is a special global used by LLVM, if so, emit it.
665 if (EmitSpecialLLVMGlobal(GVar))
666 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000667
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000668 std::string name = Mang->getValueName(GVar);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000669
Anton Korobeynikov78d69aa2008-08-08 18:25:07 +0000670 printVisibility(name, GVar->getVisibility());
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000671
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000672 Constant *C = GVar->getInitializer();
673 const Type *Type = C->getType();
Duncan Sandsec4f97d2009-05-09 07:06:46 +0000674 unsigned Size = TD->getTypeAllocSize(Type);
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000675 unsigned Align = TD->getPreferredAlignmentLog(GVar);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000676
Anton Korobeynikov1a9edae2008-09-24 22:14:23 +0000677 SwitchToSection(TAI->SectionForGlobal(GVar));
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000678
679 if (C->isNullValue() && /* FIXME: Verify correct */
680 !GVar->hasSection() &&
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000681 (GVar->hasLocalLinkage() || GVar->hasExternalLinkage() ||
Duncan Sands19d161f2009-03-07 15:45:40 +0000682 GVar->isWeakForLinker())) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000683 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000684
685 if (GVar->hasExternalLinkage()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000686 O << "\t.global " << name << '\n';
687 O << "\t.type " << name << ", @object\n";
Nick Lewycky3246a9c2007-07-25 03:48:45 +0000688 O << name << ":\n";
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000689 O << "\t.zero " << Size << '\n';
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000690 } else if (GVar->hasLocalLinkage()) {
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000691 O << TAI->getLCOMMDirective() << name << ',' << Size;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000692 } else {
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000693 O << ".comm " << name << ',' << Size;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000694 }
Evan Cheng11db8142009-03-24 00:17:40 +0000695 if (VerboseAsm) {
696 O << "\t\t" << TAI->getCommentString() << " '";
697 PrintUnmangledNameSafely(GVar, O);
698 O << "'";
699 }
700 O << '\n';
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000701 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000702 }
703
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000704 switch (GVar->getLinkage()) {
Duncan Sands19d161f2009-03-07 15:45:40 +0000705 case GlobalValue::LinkOnceAnyLinkage:
706 case GlobalValue::LinkOnceODRLinkage:
707 case GlobalValue::WeakAnyLinkage:
708 case GlobalValue::WeakODRLinkage:
Duncan Sandsb95df792009-03-11 20:14:15 +0000709 case GlobalValue::CommonLinkage:
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000710 O << "\t.global " << name << '\n'
711 << "\t.type " << name << ", @object\n"
712 << "\t.weak " << name << '\n';
713 break;
714 case GlobalValue::AppendingLinkage:
715 // FIXME: appending linkage variables should go into a section of
716 // their name or something. For now, just emit them as external.
717 case GlobalValue::ExternalLinkage:
718 // If external or appending, declare as a global symbol
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000719 O << "\t.global " << name << '\n'
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000720 << "\t.type " << name << ", @object\n";
721 // FALL THROUGH
722 case GlobalValue::InternalLinkage:
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000723 case GlobalValue::PrivateLinkage:
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000724 break;
725 default:
726 cerr << "Unknown linkage type!";
727 abort();
728 }
729
730 EmitAlignment(Align, GVar);
Evan Cheng11db8142009-03-24 00:17:40 +0000731 O << name << ":";
732 if (VerboseAsm) {
733 O << "\t\t\t\t" << TAI->getCommentString() << " '";
734 PrintUnmangledNameSafely(GVar, O);
735 O << "'";
736 }
737 O << '\n';
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000738
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000739 EmitGlobalConstant(C);
740 O << '\n';
741}
742
743bool PPCLinuxAsmPrinter::doFinalization(Module &M) {
744 // Print out module-level global variables here.
745 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
746 I != E; ++I)
747 printModuleLevelGV(I);
748
Dan Gohman4a558a32007-07-25 19:33:14 +0000749 return AsmPrinter::doFinalization(M);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000750}
751
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000752/// runOnMachineFunction - This uses the printMachineInstruction()
753/// method to print assembly for each instruction.
754///
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000755bool PPCDarwinAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Bill Wendling4f405312009-02-24 08:30:20 +0000756 this->MF = &MF;
757
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000758 SetupMachineFunction(MF);
759 O << "\n\n";
Dale Johannesenfb3ac732007-11-20 23:24:42 +0000760
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000761 // Print out constants referenced by the function
762 EmitConstantPool(MF.getConstantPool());
763
764 // Print out labels for the function.
765 const Function *F = MF.getFunction();
Anton Korobeynikov1a9edae2008-09-24 22:14:23 +0000766 SwitchToSection(TAI->SectionForGlobal(F));
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000767
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000768 switch (F->getLinkage()) {
769 default: assert(0 && "Unknown linkage type!");
evancheng47ae8142009-01-25 06:32:01 +0000770 case Function::PrivateLinkage:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000771 case Function::InternalLinkage: // Symbols default to internal.
772 break;
773 case Function::ExternalLinkage:
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000774 O << "\t.globl\t" << CurrentFnName << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000775 break;
Duncan Sands19d161f2009-03-07 15:45:40 +0000776 case Function::WeakAnyLinkage:
777 case Function::WeakODRLinkage:
778 case Function::LinkOnceAnyLinkage:
779 case Function::LinkOnceODRLinkage:
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000780 O << "\t.globl\t" << CurrentFnName << '\n';
781 O << "\t.weak_definition\t" << CurrentFnName << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000782 break;
783 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000784
Anton Korobeynikov78d69aa2008-08-08 18:25:07 +0000785 printVisibility(CurrentFnName, F->getVisibility());
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000786
Devang Patel93698d92008-10-01 23:18:38 +0000787 EmitAlignment(F->hasFnAttr(Attribute::OptimizeForSize) ? 2 : 4, F);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000788 O << CurrentFnName << ":\n";
789
790 // Emit pre-function debug information.
Devang Patelaa1e8432009-01-08 23:40:34 +0000791 DW->BeginFunction(&MF);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000792
Bill Wendling36ccaea2008-01-26 06:51:24 +0000793 // If the function is empty, then we need to emit *something*. Otherwise, the
794 // function's label might be associated with something that it wasn't meant to
795 // be associated with. We emit a noop in this situation.
796 MachineFunction::iterator I = MF.begin();
797
Bill Wendlingb5880a72008-01-26 09:03:52 +0000798 if (++I == MF.end() && MF.front().empty())
799 O << "\tnop\n";
Bill Wendling36ccaea2008-01-26 06:51:24 +0000800
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000801 // Print out code for the function.
802 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
803 I != E; ++I) {
804 // Print a label for the basic block.
805 if (I != MF.begin()) {
Evan Cheng11db8142009-03-24 00:17:40 +0000806 printBasicBlockLabel(I, true, true, VerboseAsm);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000807 O << '\n';
808 }
Bill Wendling36ccaea2008-01-26 06:51:24 +0000809 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
810 II != IE; ++II) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000811 // Print the assembly for the instruction.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000812 printMachineInstruction(II);
813 }
814 }
815
816 // Print out jump tables referenced by the function.
817 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000818
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000819 // Emit post-function debug information.
Devang Patelaa1e8432009-01-08 23:40:34 +0000820 DW->EndFunction(&MF);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000821
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000822 // We didn't modify anything.
823 return false;
824}
825
826
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000827bool PPCDarwinAsmPrinter::doInitialization(Module &M) {
Dan Gohman12300e12008-03-25 21:45:14 +0000828 static const char *const CPUDirectives[] = {
Dale Johannesen161badc2008-02-14 23:35:16 +0000829 "",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000830 "ppc",
831 "ppc601",
832 "ppc602",
833 "ppc603",
834 "ppc7400",
835 "ppc750",
836 "ppc970",
837 "ppc64"
838 };
839
840 unsigned Directive = Subtarget.getDarwinDirective();
841 if (Subtarget.isGigaProcessor() && Directive < PPC::DIR_970)
842 Directive = PPC::DIR_970;
843 if (Subtarget.hasAltivec() && Directive < PPC::DIR_7400)
844 Directive = PPC::DIR_7400;
845 if (Subtarget.isPPC64() && Directive < PPC::DIR_970)
846 Directive = PPC::DIR_64;
847 assert(Directive <= PPC::DIR_64 && "Directive out of range.");
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000848 O << "\t.machine " << CPUDirectives[Directive] << '\n';
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000849
Dan Gohman4a558a32007-07-25 19:33:14 +0000850 bool Result = AsmPrinter::doInitialization(M);
Duncan Sands4e0d6a72009-01-28 13:14:17 +0000851 DW = getAnalysisIfAvailable<DwarfWriter>();
Devang Patelc20079e2009-06-20 01:00:07 +0000852 MMI = getAnalysisIfAvailable<MachineModuleInfo>();
853 assert(MMI);
Dale Johannesen58e0eeb2008-07-09 20:43:39 +0000854
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000855 // Prime text sections so they are adjacent. This reduces the likelihood a
856 // large data or debug section causes a branch to exceed 16M limit.
Dale Johannesen3c788322008-01-11 00:54:37 +0000857 SwitchToTextSection("\t.section __TEXT,__textcoal_nt,coalesced,"
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000858 "pure_instructions");
859 if (TM.getRelocationModel() == Reloc::PIC_) {
Dale Johannesen3c788322008-01-11 00:54:37 +0000860 SwitchToTextSection("\t.section __TEXT,__picsymbolstub1,symbol_stubs,"
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000861 "pure_instructions,32");
862 } else if (TM.getRelocationModel() == Reloc::DynamicNoPIC) {
Dale Johannesen3c788322008-01-11 00:54:37 +0000863 SwitchToTextSection("\t.section __TEXT,__symbol_stub1,symbol_stubs,"
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000864 "pure_instructions,16");
865 }
Anton Korobeynikov55b94962008-09-24 22:15:21 +0000866 SwitchToSection(TAI->getTextSection());
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000867
Dan Gohman4a558a32007-07-25 19:33:14 +0000868 return Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000869}
870
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000871void PPCDarwinAsmPrinter::printModuleLevelGV(const GlobalVariable* GVar) {
872 const TargetData *TD = TM.getTargetData();
873
874 if (!GVar->hasInitializer())
875 return; // External global require no code
876
877 // Check to see if this is a special global used by LLVM, if so, emit it.
878 if (EmitSpecialLLVMGlobal(GVar)) {
879 if (TM.getRelocationModel() == Reloc::Static) {
880 if (GVar->getName() == "llvm.global_ctors")
881 O << ".reference .constructors_used\n";
882 else if (GVar->getName() == "llvm.global_dtors")
883 O << ".reference .destructors_used\n";
884 }
885 return;
886 }
887
888 std::string name = Mang->getValueName(GVar);
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000889
Anton Korobeynikov78d69aa2008-08-08 18:25:07 +0000890 printVisibility(name, GVar->getVisibility());
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000891
892 Constant *C = GVar->getInitializer();
893 const Type *Type = C->getType();
Duncan Sandsec4f97d2009-05-09 07:06:46 +0000894 unsigned Size = TD->getTypeAllocSize(Type);
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000895 unsigned Align = TD->getPreferredAlignmentLog(GVar);
896
Anton Korobeynikov1a9edae2008-09-24 22:14:23 +0000897 SwitchToSection(TAI->SectionForGlobal(GVar));
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000898
899 if (C->isNullValue() && /* FIXME: Verify correct */
900 !GVar->hasSection() &&
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000901 (GVar->hasLocalLinkage() || GVar->hasExternalLinkage() ||
Duncan Sands19d161f2009-03-07 15:45:40 +0000902 GVar->isWeakForLinker()) &&
Evan Chengcf84b142009-02-18 02:19:52 +0000903 TAI->SectionKindForGlobal(GVar) != SectionKind::RODataMergeStr) {
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000904 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
905
906 if (GVar->hasExternalLinkage()) {
907 O << "\t.globl " << name << '\n';
908 O << "\t.zerofill __DATA, __common, " << name << ", "
909 << Size << ", " << Align;
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000910 } else if (GVar->hasLocalLinkage()) {
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000911 O << TAI->getLCOMMDirective() << name << ',' << Size << ',' << Align;
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000912 } else if (!GVar->hasCommonLinkage()) {
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000913 O << "\t.globl " << name << '\n'
914 << TAI->getWeakDefDirective() << name << '\n';
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000915 EmitAlignment(Align, GVar);
Evan Cheng11db8142009-03-24 00:17:40 +0000916 O << name << ":";
917 if (VerboseAsm) {
918 O << "\t\t\t\t" << TAI->getCommentString() << " ";
919 PrintUnmangledNameSafely(GVar, O);
920 }
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000921 O << '\n';
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000922 EmitGlobalConstant(C);
923 return;
924 } else {
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000925 O << ".comm " << name << ',' << Size;
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000926 // Darwin 9 and above support aligned common data.
927 if (Subtarget.isDarwin9())
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000928 O << ',' << Align;
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000929 }
Evan Cheng11db8142009-03-24 00:17:40 +0000930 if (VerboseAsm) {
931 O << "\t\t" << TAI->getCommentString() << " '";
932 PrintUnmangledNameSafely(GVar, O);
933 O << "'";
934 }
935 O << '\n';
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000936 return;
937 }
938
939 switch (GVar->getLinkage()) {
Duncan Sands19d161f2009-03-07 15:45:40 +0000940 case GlobalValue::LinkOnceAnyLinkage:
941 case GlobalValue::LinkOnceODRLinkage:
942 case GlobalValue::WeakAnyLinkage:
943 case GlobalValue::WeakODRLinkage:
Duncan Sandsb95df792009-03-11 20:14:15 +0000944 case GlobalValue::CommonLinkage:
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000945 O << "\t.globl " << name << '\n'
946 << "\t.weak_definition " << name << '\n';
947 break;
948 case GlobalValue::AppendingLinkage:
949 // FIXME: appending linkage variables should go into a section of
950 // their name or something. For now, just emit them as external.
951 case GlobalValue::ExternalLinkage:
952 // If external or appending, declare as a global symbol
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000953 O << "\t.globl " << name << '\n';
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000954 // FALL THROUGH
955 case GlobalValue::InternalLinkage:
evancheng47ae8142009-01-25 06:32:01 +0000956 case GlobalValue::PrivateLinkage:
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000957 break;
958 default:
959 cerr << "Unknown linkage type!";
960 abort();
961 }
962
963 EmitAlignment(Align, GVar);
Evan Cheng11db8142009-03-24 00:17:40 +0000964 O << name << ":";
965 if (VerboseAsm) {
966 O << "\t\t\t\t" << TAI->getCommentString() << " '";
967 PrintUnmangledNameSafely(GVar, O);
968 O << "'";
969 }
970 O << '\n';
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000971
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000972 EmitGlobalConstant(C);
973 O << '\n';
974}
975
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000976bool PPCDarwinAsmPrinter::doFinalization(Module &M) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000977 const TargetData *TD = TM.getTargetData();
978
979 // Print out module-level global variables here.
980 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000981 I != E; ++I)
982 printModuleLevelGV(I);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000983
984 bool isPPC64 = TD->getPointerSizeInBits() == 64;
985
986 // Output stubs for dynamically-linked functions
987 if (TM.getRelocationModel() == Reloc::PIC_) {
Evan Chenga65854f2008-12-05 01:06:39 +0000988 for (StringSet<>::iterator i = FnStubs.begin(), e = FnStubs.end();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000989 i != e; ++i) {
Dale Johannesen3c788322008-01-11 00:54:37 +0000990 SwitchToTextSection("\t.section __TEXT,__picsymbolstub1,symbol_stubs,"
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000991 "pure_instructions,32");
992 EmitAlignment(4);
Evan Chenga65854f2008-12-05 01:06:39 +0000993 const char *p = i->getKeyData();
994 bool hasQuote = p[0]=='\"';
Dale Johannesena21b5202008-05-19 21:38:18 +0000995 printSuffixedName(p, "$stub");
996 O << ":\n";
Evan Chenga65854f2008-12-05 01:06:39 +0000997 O << "\t.indirect_symbol " << p << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000998 O << "\tmflr r0\n";
Evan Chenga65854f2008-12-05 01:06:39 +0000999 O << "\tbcl 20,31,";
1000 if (hasQuote)
1001 O << "\"L0$" << &p[1];
1002 else
1003 O << "L0$" << p;
1004 O << '\n';
1005 if (hasQuote)
1006 O << "\"L0$" << &p[1];
1007 else
1008 O << "L0$" << p;
1009 O << ":\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001010 O << "\tmflr r11\n";
Dale Johannesena21b5202008-05-19 21:38:18 +00001011 O << "\taddis r11,r11,ha16(";
1012 printSuffixedName(p, "$lazy_ptr");
Evan Chenga65854f2008-12-05 01:06:39 +00001013 O << "-";
1014 if (hasQuote)
1015 O << "\"L0$" << &p[1];
1016 else
1017 O << "L0$" << p;
1018 O << ")\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001019 O << "\tmtlr r0\n";
1020 if (isPPC64)
Dale Johannesena21b5202008-05-19 21:38:18 +00001021 O << "\tldu r12,lo16(";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001022 else
Dale Johannesena21b5202008-05-19 21:38:18 +00001023 O << "\tlwzu r12,lo16(";
1024 printSuffixedName(p, "$lazy_ptr");
Evan Chenga65854f2008-12-05 01:06:39 +00001025 O << "-";
1026 if (hasQuote)
1027 O << "\"L0$" << &p[1];
1028 else
1029 O << "L0$" << p;
1030 O << ")(r11)\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001031 O << "\tmtctr r12\n";
1032 O << "\tbctr\n";
1033 SwitchToDataSection(".lazy_symbol_pointer");
Dale Johannesena21b5202008-05-19 21:38:18 +00001034 printSuffixedName(p, "$lazy_ptr");
1035 O << ":\n";
Evan Chenga65854f2008-12-05 01:06:39 +00001036 O << "\t.indirect_symbol " << p << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001037 if (isPPC64)
1038 O << "\t.quad dyld_stub_binding_helper\n";
1039 else
1040 O << "\t.long dyld_stub_binding_helper\n";
1041 }
1042 } else {
Evan Chenga65854f2008-12-05 01:06:39 +00001043 for (StringSet<>::iterator i = FnStubs.begin(), e = FnStubs.end();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001044 i != e; ++i) {
Dale Johannesen3c788322008-01-11 00:54:37 +00001045 SwitchToTextSection("\t.section __TEXT,__symbol_stub1,symbol_stubs,"
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001046 "pure_instructions,16");
1047 EmitAlignment(4);
Evan Chenga65854f2008-12-05 01:06:39 +00001048 const char *p = i->getKeyData();
Dale Johannesena21b5202008-05-19 21:38:18 +00001049 printSuffixedName(p, "$stub");
1050 O << ":\n";
Evan Chenga65854f2008-12-05 01:06:39 +00001051 O << "\t.indirect_symbol " << p << '\n';
Dale Johannesena21b5202008-05-19 21:38:18 +00001052 O << "\tlis r11,ha16(";
1053 printSuffixedName(p, "$lazy_ptr");
1054 O << ")\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001055 if (isPPC64)
Dale Johannesena21b5202008-05-19 21:38:18 +00001056 O << "\tldu r12,lo16(";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001057 else
Dale Johannesena21b5202008-05-19 21:38:18 +00001058 O << "\tlwzu r12,lo16(";
1059 printSuffixedName(p, "$lazy_ptr");
1060 O << ")(r11)\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001061 O << "\tmtctr r12\n";
1062 O << "\tbctr\n";
1063 SwitchToDataSection(".lazy_symbol_pointer");
Dale Johannesena21b5202008-05-19 21:38:18 +00001064 printSuffixedName(p, "$lazy_ptr");
1065 O << ":\n";
Evan Chenga65854f2008-12-05 01:06:39 +00001066 O << "\t.indirect_symbol " << p << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001067 if (isPPC64)
1068 O << "\t.quad dyld_stub_binding_helper\n";
1069 else
1070 O << "\t.long dyld_stub_binding_helper\n";
1071 }
1072 }
1073
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +00001074 O << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001075
Dale Johannesen85535762008-04-02 00:25:04 +00001076 if (TAI->doesSupportExceptionHandling() && MMI) {
Dale Johannesenfb3ac732007-11-20 23:24:42 +00001077 // Add the (possibly multiple) personalities to the set of global values.
Dale Johannesen85535762008-04-02 00:25:04 +00001078 // Only referenced functions get into the Personalities list.
Dale Johannesenfb3ac732007-11-20 23:24:42 +00001079 const std::vector<Function *>& Personalities = MMI->getPersonalities();
1080
1081 for (std::vector<Function *>::const_iterator I = Personalities.begin(),
1082 E = Personalities.end(); I != E; ++I)
1083 if (*I) GVStubs.insert("_" + (*I)->getName());
1084 }
1085
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001086 // Output stubs for external and common global variables.
Dan Gohman3f7d94b2007-10-03 19:26:29 +00001087 if (!GVStubs.empty()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001088 SwitchToDataSection(".non_lazy_symbol_pointer");
Evan Chenga65854f2008-12-05 01:06:39 +00001089 for (StringSet<>::iterator i = GVStubs.begin(), e = GVStubs.end();
1090 i != e; ++i) {
1091 std::string p = i->getKeyData();
Dale Johannesena21b5202008-05-19 21:38:18 +00001092 printSuffixedName(p, "$non_lazy_ptr");
1093 O << ":\n";
Evan Chenga65854f2008-12-05 01:06:39 +00001094 O << "\t.indirect_symbol " << p << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001095 if (isPPC64)
1096 O << "\t.quad\t0\n";
1097 else
1098 O << "\t.long\t0\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001099 }
1100 }
1101
Evan Chenga65854f2008-12-05 01:06:39 +00001102 if (!HiddenGVStubs.empty()) {
1103 SwitchToSection(TAI->getDataSection());
1104 for (StringSet<>::iterator i = HiddenGVStubs.begin(), e = HiddenGVStubs.end();
1105 i != e; ++i) {
1106 std::string p = i->getKeyData();
1107 EmitAlignment(isPPC64 ? 3 : 2);
1108 printSuffixedName(p, "$non_lazy_ptr");
1109 O << ":\n";
1110 if (isPPC64)
1111 O << "\t.quad\t";
1112 else
1113 O << "\t.long\t";
1114 O << p << '\n';
1115 }
1116 }
1117
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001118 // Funny Darwin hack: This flag tells the linker that no global symbols
1119 // contain code that falls through to other global symbols (e.g. the obvious
1120 // implementation of multiple entry points). If this doesn't occur, the
1121 // linker can safely perform dead code stripping. Since LLVM never generates
1122 // code that does this, it is always safe to set.
1123 O << "\t.subsections_via_symbols\n";
1124
Dan Gohman4a558a32007-07-25 19:33:14 +00001125 return AsmPrinter::doFinalization(M);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001126}
1127
1128
1129
1130/// createPPCAsmPrinterPass - Returns a pass that prints the PPC assembly code
1131/// for a MachineFunction to the given output stream, in a format that the
1132/// Darwin assembler can deal with.
1133///
Owen Anderson847b99b2008-08-21 00:14:44 +00001134FunctionPass *llvm::createPPCAsmPrinterPass(raw_ostream &o,
Bill Wendling4f405312009-02-24 08:30:20 +00001135 PPCTargetMachine &tm,
Bill Wendling5ed22ac2009-04-29 23:29:43 +00001136 CodeGenOpt::Level OptLevel,
1137 bool verbose) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001138 const PPCSubtarget *Subtarget = &tm.getSubtarget<PPCSubtarget>();
1139
1140 if (Subtarget->isDarwin()) {
Bill Wendling58ed5d22009-04-29 00:15:41 +00001141 return new PPCDarwinAsmPrinter(o, tm, tm.getTargetAsmInfo(),
1142 OptLevel, verbose);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001143 } else {
Bill Wendling58ed5d22009-04-29 00:15:41 +00001144 return new PPCLinuxAsmPrinter(o, tm, tm.getTargetAsmInfo(),
1145 OptLevel, verbose);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001146 }
1147}
Anton Korobeynikov01c0e9f2008-08-17 13:54:28 +00001148
1149namespace {
1150 static struct Register {
1151 Register() {
1152 PPCTargetMachine::registerAsmPrinter(createPPCAsmPrinterPass);
1153 }
1154 } Registrator;
1155}
Oscar Fuentes4f012352008-11-15 21:36:30 +00001156
1157extern "C" int PowerPCAsmPrinterForceLink;
1158int PowerPCAsmPrinterForceLink = 0;
Douglas Gregor1dc5ff42009-06-16 20:12:29 +00001159
Bob Wilsonebbc1c42009-06-23 23:59:40 +00001160// Force static initialization.
1161extern "C" void LLVMInitializePowerPCAsmPrinter() { }