blob: 565f31d4a568e6bd7a00c1318da71699d1995c68 [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:
Chris Lattner83cf1ec2009-07-15 01:14:44 +000056 StringSet<> FnStubs;
57 StringMap<std::string> GVStubs, HiddenGVStubs;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000058 const PPCSubtarget &Subtarget;
Bill Wendling4f405312009-02-24 08:30:20 +000059 public:
David Greene302008d2009-07-14 20:18:05 +000060 explicit PPCAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
Daniel Dunbarb10d2222009-07-01 01:48:54 +000061 const TargetAsmInfo *T, bool V)
62 : AsmPrinter(O, TM, T, V),
Bill Wendling4f405312009-02-24 08:30:20 +000063 Subtarget(TM.getSubtarget<PPCSubtarget>()) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +000064
65 virtual const char *getPassName() const {
66 return "PowerPC Assembly Printer";
67 }
68
69 PPCTargetMachine &getTM() {
70 return static_cast<PPCTargetMachine&>(TM);
71 }
72
73 unsigned enumRegToMachineReg(unsigned enumReg) {
74 switch (enumReg) {
Edwin Törökbd448e32009-07-14 16:55:14 +000075 default: llvm_unreachable("Unhandled register!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +000076 case PPC::CR0: return 0;
77 case PPC::CR1: return 1;
78 case PPC::CR2: return 2;
79 case PPC::CR3: return 3;
80 case PPC::CR4: return 4;
81 case PPC::CR5: return 5;
82 case PPC::CR6: return 6;
83 case PPC::CR7: return 7;
84 }
Edwin Törökbd448e32009-07-14 16:55:14 +000085 llvm_unreachable(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000086 }
87
88 /// printInstruction - This method is automatically generated by tablegen
89 /// from the instruction set description. This method returns true if the
90 /// machine instruction was sufficiently described to print it, otherwise it
91 /// returns false.
92 bool printInstruction(const MachineInstr *MI);
93
94 void printMachineInstruction(const MachineInstr *MI);
95 void printOp(const MachineOperand &MO);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +000096
Dan Gohmanf17a25c2007-07-18 16:29:46 +000097 /// stripRegisterPrefix - This method strips the character prefix from a
98 /// register name so that only the number is left. Used by for linux asm.
99 const char *stripRegisterPrefix(const char *RegName) {
100 switch (RegName[0]) {
101 case 'r':
102 case 'f':
103 case 'v': return RegName + 1;
104 case 'c': if (RegName[1] == 'r') return RegName + 2;
105 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000106
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000107 return RegName;
108 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000109
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000110 /// printRegister - Print register according to target requirements.
111 ///
112 void printRegister(const MachineOperand &MO, bool R0AsZero) {
113 unsigned RegNo = MO.getReg();
Dan Gohman1e57df32008-02-10 18:45:23 +0000114 assert(TargetRegisterInfo::isPhysicalRegister(RegNo) && "Not physreg??");
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000115
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000116 // If we should use 0 for R0.
117 if (R0AsZero && RegNo == PPC::R0) {
118 O << "0";
119 return;
120 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000121
Bill Wendling8eeb9792008-02-26 21:11:01 +0000122 const char *RegName = TM.getRegisterInfo()->get(RegNo).AsmName;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000123 // Linux assembler (Others?) does not take register mnemonics.
124 // FIXME - What about special registers used in mfspr/mtspr?
125 if (!Subtarget.isDarwin()) RegName = stripRegisterPrefix(RegName);
126 O << RegName;
127 }
128
129 void printOperand(const MachineInstr *MI, unsigned OpNo) {
130 const MachineOperand &MO = MI->getOperand(OpNo);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000131 if (MO.isReg()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000132 printRegister(MO, false);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000133 } else if (MO.isImm()) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000134 O << MO.getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000135 } else {
136 printOp(MO);
137 }
138 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000139
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000140 bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
141 unsigned AsmVariant, const char *ExtraCode);
142 bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
143 unsigned AsmVariant, const char *ExtraCode);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000144
145
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000146 void printS5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000147 char value = MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000148 value = (value << (32-5)) >> (32-5);
149 O << (int)value;
150 }
151 void printU5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000152 unsigned char value = MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000153 assert(value <= 31 && "Invalid u5imm argument!");
154 O << (unsigned int)value;
155 }
156 void printU6ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000157 unsigned char value = MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000158 assert(value <= 63 && "Invalid u6imm argument!");
159 O << (unsigned int)value;
160 }
161 void printS16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000162 O << (short)MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000163 }
164 void printU16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000165 O << (unsigned short)MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000166 }
167 void printS16X4ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000168 if (MI->getOperand(OpNo).isImm()) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000169 O << (short)(MI->getOperand(OpNo).getImm()*4);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000170 } else {
171 O << "lo16(";
172 printOp(MI->getOperand(OpNo));
173 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng477013c2007-10-14 05:57:21 +0000174 O << "-\"L" << getFunctionNumber() << "$pb\")";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000175 else
176 O << ')';
177 }
178 }
179 void printBranchOperand(const MachineInstr *MI, unsigned OpNo) {
180 // Branches can take an immediate operand. This is used by the branch
181 // selection pass to print $+8, an eight byte displacement from the PC.
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000182 if (MI->getOperand(OpNo).isImm()) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000183 O << "$+" << MI->getOperand(OpNo).getImm()*4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000184 } else {
185 printOp(MI->getOperand(OpNo));
186 }
187 }
188 void printCallOperand(const MachineInstr *MI, unsigned OpNo) {
189 const MachineOperand &MO = MI->getOperand(OpNo);
190 if (TM.getRelocationModel() != Reloc::Static) {
191 if (MO.getType() == MachineOperand::MO_GlobalAddress) {
192 GlobalValue *GV = MO.getGlobal();
Chris Lattner0fd4feb2009-07-02 16:08:53 +0000193 if (GV->isDeclaration() || GV->isWeakForLinker()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000194 // Dynamically-resolved functions need a stub for the function.
Chris Lattnerb3cdde62009-07-14 18:17:16 +0000195 std::string Name = Mang->getMangledName(GV);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000196 FnStubs.insert(Name);
Dale Johannesena21b5202008-05-19 21:38:18 +0000197 printSuffixedName(Name, "$stub");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000198 return;
199 }
200 }
201 if (MO.getType() == MachineOperand::MO_ExternalSymbol) {
202 std::string Name(TAI->getGlobalPrefix()); Name += MO.getSymbolName();
203 FnStubs.insert(Name);
Dale Johannesena21b5202008-05-19 21:38:18 +0000204 printSuffixedName(Name, "$stub");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000205 return;
206 }
207 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000208
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000209 printOp(MI->getOperand(OpNo));
210 }
211 void printAbsAddrOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000212 O << (int)MI->getOperand(OpNo).getImm()*4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000213 }
214 void printPICLabel(const MachineInstr *MI, unsigned OpNo) {
Evan Cheng477013c2007-10-14 05:57:21 +0000215 O << "\"L" << getFunctionNumber() << "$pb\"\n";
216 O << "\"L" << getFunctionNumber() << "$pb\":";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000217 }
218 void printSymbolHi(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000219 if (MI->getOperand(OpNo).isImm()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000220 printS16ImmOperand(MI, OpNo);
221 } else {
222 if (Subtarget.isDarwin()) O << "ha16(";
223 printOp(MI->getOperand(OpNo));
224 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng477013c2007-10-14 05:57:21 +0000225 O << "-\"L" << getFunctionNumber() << "$pb\"";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000226 if (Subtarget.isDarwin())
227 O << ')';
228 else
229 O << "@ha";
230 }
231 }
232 void printSymbolLo(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000233 if (MI->getOperand(OpNo).isImm()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000234 printS16ImmOperand(MI, OpNo);
235 } else {
236 if (Subtarget.isDarwin()) O << "lo16(";
237 printOp(MI->getOperand(OpNo));
238 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng477013c2007-10-14 05:57:21 +0000239 O << "-\"L" << getFunctionNumber() << "$pb\"";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000240 if (Subtarget.isDarwin())
241 O << ')';
242 else
243 O << "@l";
244 }
245 }
246 void printcrbitm(const MachineInstr *MI, unsigned OpNo) {
247 unsigned CCReg = MI->getOperand(OpNo).getReg();
248 unsigned RegNo = enumRegToMachineReg(CCReg);
249 O << (0x80 >> RegNo);
250 }
251 // The new addressing mode printers.
252 void printMemRegImm(const MachineInstr *MI, unsigned OpNo) {
253 printSymbolLo(MI, OpNo);
254 O << '(';
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000255 if (MI->getOperand(OpNo+1).isReg() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000256 MI->getOperand(OpNo+1).getReg() == PPC::R0)
257 O << "0";
258 else
259 printOperand(MI, OpNo+1);
260 O << ')';
261 }
262 void printMemRegImmShifted(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000263 if (MI->getOperand(OpNo).isImm())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000264 printS16X4ImmOperand(MI, OpNo);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000265 else
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000266 printSymbolLo(MI, OpNo);
267 O << '(';
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000268 if (MI->getOperand(OpNo+1).isReg() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000269 MI->getOperand(OpNo+1).getReg() == PPC::R0)
270 O << "0";
271 else
272 printOperand(MI, OpNo+1);
273 O << ')';
274 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000275
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000276 void printMemRegReg(const MachineInstr *MI, unsigned OpNo) {
277 // When used as the base register, r0 reads constant zero rather than
278 // the value contained in the register. For this reason, the darwin
279 // assembler requires that we print r0 as 0 (no r) when used as the base.
280 const MachineOperand &MO = MI->getOperand(OpNo);
281 printRegister(MO, true);
282 O << ", ";
283 printOperand(MI, OpNo+1);
284 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000285
286 void printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000287 const char *Modifier);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000288
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000289 virtual bool runOnMachineFunction(MachineFunction &F) = 0;
290 virtual bool doFinalization(Module &M) = 0;
291
292 virtual void EmitExternalGlobal(const GlobalVariable *GV);
293 };
294
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000295 /// PPCLinuxAsmPrinter - PowerPC assembly printer, customized for Linux
Bill Wendling4f405312009-02-24 08:30:20 +0000296 class VISIBILITY_HIDDEN PPCLinuxAsmPrinter : public PPCAsmPrinter {
Bill Wendling4f405312009-02-24 08:30:20 +0000297 public:
David Greene302008d2009-07-14 20:18:05 +0000298 explicit PPCLinuxAsmPrinter(formatted_raw_ostream &O, PPCTargetMachine &TM,
Daniel Dunbarb10d2222009-07-01 01:48:54 +0000299 const TargetAsmInfo *T, bool V)
300 : PPCAsmPrinter(O, TM, T, V){}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000301
302 virtual const char *getPassName() const {
303 return "Linux PPC Assembly Printer";
304 }
305
306 bool runOnMachineFunction(MachineFunction &F);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000307 bool doFinalization(Module &M);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000308
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000309 void getAnalysisUsage(AnalysisUsage &AU) const {
310 AU.setPreservesAll();
311 AU.addRequired<MachineModuleInfo>();
Devang Patelaa1e8432009-01-08 23:40:34 +0000312 AU.addRequired<DwarfWriter>();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000313 PPCAsmPrinter::getAnalysisUsage(AU);
314 }
315
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000316 void printModuleLevelGV(const GlobalVariable* GVar);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000317 };
318
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000319 /// PPCDarwinAsmPrinter - PowerPC assembly printer, customized for Darwin/Mac
320 /// OS X
Bill Wendling4f405312009-02-24 08:30:20 +0000321 class VISIBILITY_HIDDEN PPCDarwinAsmPrinter : public PPCAsmPrinter {
David Greene302008d2009-07-14 20:18:05 +0000322 formatted_raw_ostream &OS;
Bill Wendling4f405312009-02-24 08:30:20 +0000323 public:
David Greene302008d2009-07-14 20:18:05 +0000324 explicit PPCDarwinAsmPrinter(formatted_raw_ostream &O, PPCTargetMachine &TM,
Daniel Dunbarb10d2222009-07-01 01:48:54 +0000325 const TargetAsmInfo *T, bool V)
326 : PPCAsmPrinter(O, TM, T, V), OS(O) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000327
328 virtual const char *getPassName() const {
329 return "Darwin PPC Assembly Printer";
330 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000331
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000332 bool runOnMachineFunction(MachineFunction &F);
333 bool doInitialization(Module &M);
334 bool doFinalization(Module &M);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000335
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000336 void getAnalysisUsage(AnalysisUsage &AU) const {
337 AU.setPreservesAll();
338 AU.addRequired<MachineModuleInfo>();
Devang Patelaa1e8432009-01-08 23:40:34 +0000339 AU.addRequired<DwarfWriter>();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000340 PPCAsmPrinter::getAnalysisUsage(AU);
341 }
342
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000343 void printModuleLevelGV(const GlobalVariable* GVar);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000344 };
345} // end of anonymous namespace
346
347// Include the auto-generated portion of the assembly writer
348#include "PPCGenAsmWriter.inc"
349
350void PPCAsmPrinter::printOp(const MachineOperand &MO) {
351 switch (MO.getType()) {
352 case MachineOperand::MO_Immediate:
Edwin Törökbd448e32009-07-14 16:55:14 +0000353 llvm_unreachable("printOp() does not handle immediate values");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000354
355 case MachineOperand::MO_MachineBasicBlock:
Chris Lattner6017d482007-12-30 23:10:15 +0000356 printBasicBlockLabel(MO.getMBB());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000357 return;
358 case MachineOperand::MO_JumpTableIndex:
Evan Cheng477013c2007-10-14 05:57:21 +0000359 O << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
Chris Lattner6017d482007-12-30 23:10:15 +0000360 << '_' << MO.getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000361 // FIXME: PIC relocation model
362 return;
363 case MachineOperand::MO_ConstantPoolIndex:
Evan Cheng477013c2007-10-14 05:57:21 +0000364 O << TAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber()
Chris Lattner6017d482007-12-30 23:10:15 +0000365 << '_' << MO.getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000366 return;
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000367 case MachineOperand::MO_ExternalSymbol: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000368 // Computing the address of an external symbol, not calling it.
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000369 std::string Name(TAI->getGlobalPrefix());
370 Name += MO.getSymbolName();
371
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000372 if (TM.getRelocationModel() != Reloc::Static) {
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000373 GVStubs[Name] = Name+"$non_lazy_ptr";
374 Name += "$non_lazy_ptr";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000375 }
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000376 O << Name;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000377 return;
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000378 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000379 case MachineOperand::MO_GlobalAddress: {
380 // Computing the address of a global symbol, not calling it.
381 GlobalValue *GV = MO.getGlobal();
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000382 std::string Name;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000383
384 // External or weakly linked global variables need non-lazily-resolved stubs
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000385 if (TM.getRelocationModel() != Reloc::Static &&
386 (GV->isDeclaration() || GV->isWeakForLinker())) {
387 if (!GV->hasHiddenVisibility()) {
388 Name = Mang->getMangledName(GV, "$non_lazy_ptr", true);
389 GVStubs[Mang->getMangledName(GV)] = Name;
390 } else if (GV->isDeclaration() || GV->hasCommonLinkage() ||
391 GV->hasAvailableExternallyLinkage()) {
392 Name = Mang->getMangledName(GV, "$non_lazy_ptr", true);
393 HiddenGVStubs[Mang->getMangledName(GV)] = Name;
394 } else {
395 Name = Mang->getMangledName(GV);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000396 }
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000397 } else {
398 Name = Mang->getMangledName(GV);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000399 }
400 O << Name;
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000401
Anton Korobeynikov440f23d2008-11-22 16:15:34 +0000402 printOffset(MO.getOffset());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000403 return;
404 }
405
406 default:
407 O << "<unknown operand type: " << MO.getType() << ">";
408 return;
409 }
410}
411
412/// EmitExternalGlobal - In this case we need to use the indirect symbol.
413///
414void PPCAsmPrinter::EmitExternalGlobal(const GlobalVariable *GV) {
Bill Wendling26a8ab92009-04-10 00:12:49 +0000415 std::string Name;
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000416
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000417 if (TM.getRelocationModel() != Reloc::Static) {
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000418 Name = Mang->getMangledName(GV, "$non_lazy_ptr", true);
419
Evan Chenga65854f2008-12-05 01:06:39 +0000420 if (GV->hasHiddenVisibility())
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000421 HiddenGVStubs[Mang->getMangledName(GV)] = Name;
Evan Chenga65854f2008-12-05 01:06:39 +0000422 else
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000423 GVStubs[Mang->getMangledName(GV)] = Name;
424 } else {
425 Name = Mang->getMangledName(GV);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000426 }
427 O << Name;
428}
429
430/// PrintAsmOperand - Print out an operand for an inline asm expression.
431///
432bool PPCAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000433 unsigned AsmVariant,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000434 const char *ExtraCode) {
435 // Does this asm operand have a single letter operand modifier?
436 if (ExtraCode && ExtraCode[0]) {
437 if (ExtraCode[1] != 0) return true; // Unknown modifier.
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000438
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000439 switch (ExtraCode[0]) {
440 default: return true; // Unknown modifier.
441 case 'c': // Don't print "$" before a global var name or constant.
442 // PPC never has a prefix.
443 printOperand(MI, OpNo);
444 return false;
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000445 case 'L': // Write second word of DImode reference.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000446 // Verify that this operand has two consecutive registers.
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000447 if (!MI->getOperand(OpNo).isReg() ||
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000448 OpNo+1 == MI->getNumOperands() ||
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000449 !MI->getOperand(OpNo+1).isReg())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000450 return true;
451 ++OpNo; // Return the high-part.
452 break;
453 case 'I':
454 // Write 'i' if an integer constant, otherwise nothing. Used to print
455 // addi vs add, etc.
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000456 if (MI->getOperand(OpNo).isImm())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000457 O << "i";
458 return false;
459 }
460 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000461
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000462 printOperand(MI, OpNo);
463 return false;
464}
465
466bool PPCAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000467 unsigned AsmVariant,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000468 const char *ExtraCode) {
469 if (ExtraCode && ExtraCode[0])
470 return true; // Unknown modifier.
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000471 if (MI->getOperand(OpNo).isReg())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000472 printMemRegReg(MI, OpNo);
473 else
474 printMemRegImm(MI, OpNo);
475 return false;
476}
477
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000478void PPCAsmPrinter::printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000479 const char *Modifier) {
480 assert(Modifier && "Must specify 'cc' or 'reg' as predicate op modifier!");
481 unsigned Code = MI->getOperand(OpNo).getImm();
482 if (!strcmp(Modifier, "cc")) {
483 switch ((PPC::Predicate)Code) {
484 case PPC::PRED_ALWAYS: return; // Don't print anything for always.
485 case PPC::PRED_LT: O << "lt"; return;
486 case PPC::PRED_LE: O << "le"; return;
487 case PPC::PRED_EQ: O << "eq"; return;
488 case PPC::PRED_GE: O << "ge"; return;
489 case PPC::PRED_GT: O << "gt"; return;
490 case PPC::PRED_NE: O << "ne"; return;
491 case PPC::PRED_UN: O << "un"; return;
492 case PPC::PRED_NU: O << "nu"; return;
493 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000494
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000495 } else {
496 assert(!strcmp(Modifier, "reg") &&
497 "Need to specify 'cc' or 'reg' as predicate op modifier!");
498 // Don't print the register for 'always'.
499 if (Code == PPC::PRED_ALWAYS) return;
500 printOperand(MI, OpNo+1);
501 }
502}
503
504
505/// printMachineInstruction -- Print out a single PowerPC MI in Darwin syntax to
506/// the current output stream.
507///
508void PPCAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
509 ++EmittedInsts;
510
511 // Check for slwi/srwi mnemonics.
512 if (MI->getOpcode() == PPC::RLWINM) {
513 bool FoundMnemonic = false;
Chris Lattnera96056a2007-12-30 20:49:49 +0000514 unsigned char SH = MI->getOperand(2).getImm();
515 unsigned char MB = MI->getOperand(3).getImm();
516 unsigned char ME = MI->getOperand(4).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000517 if (SH <= 31 && MB == 0 && ME == (31-SH)) {
Nate Begemanbd5cdf12008-02-05 08:49:09 +0000518 O << "\tslwi "; FoundMnemonic = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000519 }
520 if (SH <= 31 && MB == (32-SH) && ME == 31) {
Nate Begemanbd5cdf12008-02-05 08:49:09 +0000521 O << "\tsrwi "; FoundMnemonic = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000522 SH = 32-SH;
523 }
524 if (FoundMnemonic) {
525 printOperand(MI, 0);
526 O << ", ";
527 printOperand(MI, 1);
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000528 O << ", " << (unsigned int)SH << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000529 return;
530 }
531 } else if (MI->getOpcode() == PPC::OR || MI->getOpcode() == PPC::OR8) {
532 if (MI->getOperand(1).getReg() == MI->getOperand(2).getReg()) {
Nate Begemanbd5cdf12008-02-05 08:49:09 +0000533 O << "\tmr ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000534 printOperand(MI, 0);
535 O << ", ";
536 printOperand(MI, 1);
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000537 O << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000538 return;
539 }
540 } else if (MI->getOpcode() == PPC::RLDICR) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000541 unsigned char SH = MI->getOperand(2).getImm();
542 unsigned char ME = MI->getOperand(3).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000543 // rldicr RA, RS, SH, 63-SH == sldi RA, RS, SH
544 if (63-SH == ME) {
Nate Begemanbd5cdf12008-02-05 08:49:09 +0000545 O << "\tsldi ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000546 printOperand(MI, 0);
547 O << ", ";
548 printOperand(MI, 1);
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000549 O << ", " << (unsigned int)SH << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000550 return;
551 }
552 }
553
554 if (printInstruction(MI))
555 return; // Printer was automatically generated
556
Edwin Törökbd448e32009-07-14 16:55:14 +0000557 llvm_unreachable("Unhandled instruction in asm writer!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000558}
559
560/// runOnMachineFunction - This uses the printMachineInstruction()
561/// method to print assembly for each instruction.
562///
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000563bool PPCLinuxAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Bill Wendling4f405312009-02-24 08:30:20 +0000564 this->MF = &MF;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000565
566 SetupMachineFunction(MF);
567 O << "\n\n";
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000568
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000569 // Print out constants referenced by the function
570 EmitConstantPool(MF.getConstantPool());
571
572 // Print out labels for the function.
573 const Function *F = MF.getFunction();
Anton Korobeynikov1a9edae2008-09-24 22:14:23 +0000574 SwitchToSection(TAI->SectionForGlobal(F));
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000575
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000576 switch (F->getLinkage()) {
Edwin Törökbd448e32009-07-14 16:55:14 +0000577 default: llvm_unreachable("Unknown linkage type!");
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000578 case Function::PrivateLinkage:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000579 case Function::InternalLinkage: // Symbols default to internal.
580 break;
581 case Function::ExternalLinkage:
582 O << "\t.global\t" << CurrentFnName << '\n'
583 << "\t.type\t" << CurrentFnName << ", @function\n";
584 break;
Duncan Sands19d161f2009-03-07 15:45:40 +0000585 case Function::WeakAnyLinkage:
586 case Function::WeakODRLinkage:
587 case Function::LinkOnceAnyLinkage:
588 case Function::LinkOnceODRLinkage:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000589 O << "\t.global\t" << CurrentFnName << '\n';
590 O << "\t.weak\t" << CurrentFnName << '\n';
591 break;
592 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000593
Anton Korobeynikov78d69aa2008-08-08 18:25:07 +0000594 printVisibility(CurrentFnName, F->getVisibility());
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000595
Bill Wendling25a8ae32009-06-30 22:38:32 +0000596 EmitAlignment(MF.getAlignment(), F);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000597 O << CurrentFnName << ":\n";
598
599 // Emit pre-function debug information.
Devang Patelaa1e8432009-01-08 23:40:34 +0000600 DW->BeginFunction(&MF);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000601
602 // Print out code for the function.
603 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
604 I != E; ++I) {
605 // Print a label for the basic block.
606 if (I != MF.begin()) {
Evan Cheng45c1edb2008-02-28 00:43:03 +0000607 printBasicBlockLabel(I, true, true);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000608 O << '\n';
609 }
610 for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
611 II != E; ++II) {
612 // Print the assembly for the instruction.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000613 printMachineInstruction(II);
614 }
615 }
616
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000617 O << "\t.size\t" << CurrentFnName << ",.-" << CurrentFnName << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000618
619 // Print out jump tables referenced by the function.
620 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000621
Dale Johannesendd9e1c92008-12-03 19:33:10 +0000622 SwitchToSection(TAI->SectionForGlobal(F));
623
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000624 // Emit post-function debug information.
Devang Patelaa1e8432009-01-08 23:40:34 +0000625 DW->EndFunction(&MF);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000626
Dan Gohmaneb94abd2008-11-07 19:49:17 +0000627 O.flush();
628
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000629 // We didn't modify anything.
630 return false;
631}
632
Chris Lattner2b638a72008-02-15 19:04:54 +0000633/// PrintUnmangledNameSafely - Print out the printable characters in the name.
Dan Gohman8387bb32009-03-03 02:55:14 +0000634/// Don't print things like \\n or \\0.
David Greene302008d2009-07-14 20:18:05 +0000635static void PrintUnmangledNameSafely(const Value *V, formatted_raw_ostream &OS) {
Chris Lattner2b638a72008-02-15 19:04:54 +0000636 for (const char *Name = V->getNameStart(), *E = Name+V->getNameLen();
637 Name != E; ++Name)
638 if (isprint(*Name))
639 OS << *Name;
640}
641
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000642void PPCLinuxAsmPrinter::printModuleLevelGV(const GlobalVariable* GVar) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000643 const TargetData *TD = TM.getTargetData();
644
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000645 if (!GVar->hasInitializer())
646 return; // External global require no code
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000647
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000648 // Check to see if this is a special global used by LLVM, if so, emit it.
649 if (EmitSpecialLLVMGlobal(GVar))
650 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000651
Chris Lattnerb3cdde62009-07-14 18:17:16 +0000652 std::string name = Mang->getMangledName(GVar);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000653
Anton Korobeynikov78d69aa2008-08-08 18:25:07 +0000654 printVisibility(name, GVar->getVisibility());
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000655
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000656 Constant *C = GVar->getInitializer();
Devang Patel880595f2009-06-26 02:26:12 +0000657 if (isa<MDNode>(C) || isa<MDString>(C))
Devang Patelf667ab42009-06-25 00:47:42 +0000658 return;
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000659 const Type *Type = C->getType();
Duncan Sandsec4f97d2009-05-09 07:06:46 +0000660 unsigned Size = TD->getTypeAllocSize(Type);
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000661 unsigned Align = TD->getPreferredAlignmentLog(GVar);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000662
Anton Korobeynikov1a9edae2008-09-24 22:14:23 +0000663 SwitchToSection(TAI->SectionForGlobal(GVar));
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000664
665 if (C->isNullValue() && /* FIXME: Verify correct */
666 !GVar->hasSection() &&
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000667 (GVar->hasLocalLinkage() || GVar->hasExternalLinkage() ||
Duncan Sands19d161f2009-03-07 15:45:40 +0000668 GVar->isWeakForLinker())) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000669 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000670
671 if (GVar->hasExternalLinkage()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000672 O << "\t.global " << name << '\n';
673 O << "\t.type " << name << ", @object\n";
Nick Lewycky3246a9c2007-07-25 03:48:45 +0000674 O << name << ":\n";
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000675 O << "\t.zero " << Size << '\n';
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000676 } else if (GVar->hasLocalLinkage()) {
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000677 O << TAI->getLCOMMDirective() << name << ',' << Size;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000678 } else {
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000679 O << ".comm " << name << ',' << Size;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000680 }
Evan Cheng11db8142009-03-24 00:17:40 +0000681 if (VerboseAsm) {
682 O << "\t\t" << TAI->getCommentString() << " '";
683 PrintUnmangledNameSafely(GVar, O);
684 O << "'";
685 }
686 O << '\n';
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000687 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000688 }
689
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000690 switch (GVar->getLinkage()) {
Duncan Sands19d161f2009-03-07 15:45:40 +0000691 case GlobalValue::LinkOnceAnyLinkage:
692 case GlobalValue::LinkOnceODRLinkage:
693 case GlobalValue::WeakAnyLinkage:
694 case GlobalValue::WeakODRLinkage:
Duncan Sandsb95df792009-03-11 20:14:15 +0000695 case GlobalValue::CommonLinkage:
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000696 O << "\t.global " << name << '\n'
697 << "\t.type " << name << ", @object\n"
698 << "\t.weak " << name << '\n';
699 break;
700 case GlobalValue::AppendingLinkage:
701 // FIXME: appending linkage variables should go into a section of
702 // their name or something. For now, just emit them as external.
703 case GlobalValue::ExternalLinkage:
704 // If external or appending, declare as a global symbol
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000705 O << "\t.global " << name << '\n'
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000706 << "\t.type " << name << ", @object\n";
707 // FALL THROUGH
708 case GlobalValue::InternalLinkage:
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000709 case GlobalValue::PrivateLinkage:
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000710 break;
711 default:
Edwin Törökbd448e32009-07-14 16:55:14 +0000712 llvm_unreachable("Unknown linkage type!");
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000713 }
714
715 EmitAlignment(Align, GVar);
Evan Cheng11db8142009-03-24 00:17:40 +0000716 O << name << ":";
717 if (VerboseAsm) {
718 O << "\t\t\t\t" << TAI->getCommentString() << " '";
719 PrintUnmangledNameSafely(GVar, O);
720 O << "'";
721 }
722 O << '\n';
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000723
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000724 EmitGlobalConstant(C);
725 O << '\n';
726}
727
728bool PPCLinuxAsmPrinter::doFinalization(Module &M) {
729 // Print out module-level global variables here.
730 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
731 I != E; ++I)
732 printModuleLevelGV(I);
733
Dan Gohman4a558a32007-07-25 19:33:14 +0000734 return AsmPrinter::doFinalization(M);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000735}
736
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000737/// runOnMachineFunction - This uses the printMachineInstruction()
738/// method to print assembly for each instruction.
739///
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000740bool PPCDarwinAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Bill Wendling4f405312009-02-24 08:30:20 +0000741 this->MF = &MF;
742
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000743 SetupMachineFunction(MF);
744 O << "\n\n";
Dale Johannesenfb3ac732007-11-20 23:24:42 +0000745
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000746 // Print out constants referenced by the function
747 EmitConstantPool(MF.getConstantPool());
748
749 // Print out labels for the function.
750 const Function *F = MF.getFunction();
Anton Korobeynikov1a9edae2008-09-24 22:14:23 +0000751 SwitchToSection(TAI->SectionForGlobal(F));
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000752
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000753 switch (F->getLinkage()) {
Edwin Törökbd448e32009-07-14 16:55:14 +0000754 default: llvm_unreachable("Unknown linkage type!");
evancheng47ae8142009-01-25 06:32:01 +0000755 case Function::PrivateLinkage:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000756 case Function::InternalLinkage: // Symbols default to internal.
757 break;
758 case Function::ExternalLinkage:
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000759 O << "\t.globl\t" << CurrentFnName << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000760 break;
Duncan Sands19d161f2009-03-07 15:45:40 +0000761 case Function::WeakAnyLinkage:
762 case Function::WeakODRLinkage:
763 case Function::LinkOnceAnyLinkage:
764 case Function::LinkOnceODRLinkage:
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000765 O << "\t.globl\t" << CurrentFnName << '\n';
766 O << "\t.weak_definition\t" << CurrentFnName << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000767 break;
768 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000769
Anton Korobeynikov78d69aa2008-08-08 18:25:07 +0000770 printVisibility(CurrentFnName, F->getVisibility());
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000771
Bill Wendling25a8ae32009-06-30 22:38:32 +0000772 EmitAlignment(MF.getAlignment(), F);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000773 O << CurrentFnName << ":\n";
774
775 // Emit pre-function debug information.
Devang Patelaa1e8432009-01-08 23:40:34 +0000776 DW->BeginFunction(&MF);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000777
Bill Wendling36ccaea2008-01-26 06:51:24 +0000778 // If the function is empty, then we need to emit *something*. Otherwise, the
779 // function's label might be associated with something that it wasn't meant to
780 // be associated with. We emit a noop in this situation.
781 MachineFunction::iterator I = MF.begin();
782
Bill Wendlingb5880a72008-01-26 09:03:52 +0000783 if (++I == MF.end() && MF.front().empty())
784 O << "\tnop\n";
Bill Wendling36ccaea2008-01-26 06:51:24 +0000785
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000786 // Print out code for the function.
787 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
788 I != E; ++I) {
789 // Print a label for the basic block.
790 if (I != MF.begin()) {
Evan Cheng11db8142009-03-24 00:17:40 +0000791 printBasicBlockLabel(I, true, true, VerboseAsm);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000792 O << '\n';
793 }
Bill Wendling36ccaea2008-01-26 06:51:24 +0000794 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
795 II != IE; ++II) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000796 // Print the assembly for the instruction.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000797 printMachineInstruction(II);
798 }
799 }
800
801 // Print out jump tables referenced by the function.
802 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000803
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000804 // Emit post-function debug information.
Devang Patelaa1e8432009-01-08 23:40:34 +0000805 DW->EndFunction(&MF);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000806
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000807 // We didn't modify anything.
808 return false;
809}
810
811
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000812bool PPCDarwinAsmPrinter::doInitialization(Module &M) {
Dan Gohman12300e12008-03-25 21:45:14 +0000813 static const char *const CPUDirectives[] = {
Dale Johannesen161badc2008-02-14 23:35:16 +0000814 "",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000815 "ppc",
816 "ppc601",
817 "ppc602",
818 "ppc603",
819 "ppc7400",
820 "ppc750",
821 "ppc970",
822 "ppc64"
823 };
824
825 unsigned Directive = Subtarget.getDarwinDirective();
826 if (Subtarget.isGigaProcessor() && Directive < PPC::DIR_970)
827 Directive = PPC::DIR_970;
828 if (Subtarget.hasAltivec() && Directive < PPC::DIR_7400)
829 Directive = PPC::DIR_7400;
830 if (Subtarget.isPPC64() && Directive < PPC::DIR_970)
831 Directive = PPC::DIR_64;
832 assert(Directive <= PPC::DIR_64 && "Directive out of range.");
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000833 O << "\t.machine " << CPUDirectives[Directive] << '\n';
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000834
Dan Gohman4a558a32007-07-25 19:33:14 +0000835 bool Result = AsmPrinter::doInitialization(M);
Devang Patelc20079e2009-06-20 01:00:07 +0000836 assert(MMI);
Dale Johannesen58e0eeb2008-07-09 20:43:39 +0000837
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000838 // Prime text sections so they are adjacent. This reduces the likelihood a
839 // large data or debug section causes a branch to exceed 16M limit.
Dale Johannesen3c788322008-01-11 00:54:37 +0000840 SwitchToTextSection("\t.section __TEXT,__textcoal_nt,coalesced,"
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000841 "pure_instructions");
842 if (TM.getRelocationModel() == Reloc::PIC_) {
Dale Johannesen3c788322008-01-11 00:54:37 +0000843 SwitchToTextSection("\t.section __TEXT,__picsymbolstub1,symbol_stubs,"
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000844 "pure_instructions,32");
845 } else if (TM.getRelocationModel() == Reloc::DynamicNoPIC) {
Dale Johannesen3c788322008-01-11 00:54:37 +0000846 SwitchToTextSection("\t.section __TEXT,__symbol_stub1,symbol_stubs,"
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000847 "pure_instructions,16");
848 }
Anton Korobeynikov55b94962008-09-24 22:15:21 +0000849 SwitchToSection(TAI->getTextSection());
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000850
Dan Gohman4a558a32007-07-25 19:33:14 +0000851 return Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000852}
853
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000854void PPCDarwinAsmPrinter::printModuleLevelGV(const GlobalVariable* GVar) {
855 const TargetData *TD = TM.getTargetData();
856
857 if (!GVar->hasInitializer())
858 return; // External global require no code
859
860 // Check to see if this is a special global used by LLVM, if so, emit it.
861 if (EmitSpecialLLVMGlobal(GVar)) {
862 if (TM.getRelocationModel() == Reloc::Static) {
863 if (GVar->getName() == "llvm.global_ctors")
864 O << ".reference .constructors_used\n";
865 else if (GVar->getName() == "llvm.global_dtors")
866 O << ".reference .destructors_used\n";
867 }
868 return;
869 }
870
Chris Lattnerb3cdde62009-07-14 18:17:16 +0000871 std::string name = Mang->getMangledName(GVar);
Anton Korobeynikov78d69aa2008-08-08 18:25:07 +0000872 printVisibility(name, GVar->getVisibility());
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000873
874 Constant *C = GVar->getInitializer();
875 const Type *Type = C->getType();
Duncan Sandsec4f97d2009-05-09 07:06:46 +0000876 unsigned Size = TD->getTypeAllocSize(Type);
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000877 unsigned Align = TD->getPreferredAlignmentLog(GVar);
878
Anton Korobeynikov1a9edae2008-09-24 22:14:23 +0000879 SwitchToSection(TAI->SectionForGlobal(GVar));
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000880
881 if (C->isNullValue() && /* FIXME: Verify correct */
882 !GVar->hasSection() &&
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000883 (GVar->hasLocalLinkage() || GVar->hasExternalLinkage() ||
Duncan Sands19d161f2009-03-07 15:45:40 +0000884 GVar->isWeakForLinker()) &&
Evan Chengcf84b142009-02-18 02:19:52 +0000885 TAI->SectionKindForGlobal(GVar) != SectionKind::RODataMergeStr) {
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000886 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
887
888 if (GVar->hasExternalLinkage()) {
889 O << "\t.globl " << name << '\n';
890 O << "\t.zerofill __DATA, __common, " << name << ", "
891 << Size << ", " << Align;
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000892 } else if (GVar->hasLocalLinkage()) {
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000893 O << TAI->getLCOMMDirective() << name << ',' << Size << ',' << Align;
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000894 } else if (!GVar->hasCommonLinkage()) {
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000895 O << "\t.globl " << name << '\n'
896 << TAI->getWeakDefDirective() << name << '\n';
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000897 EmitAlignment(Align, GVar);
Evan Cheng11db8142009-03-24 00:17:40 +0000898 O << name << ":";
899 if (VerboseAsm) {
900 O << "\t\t\t\t" << TAI->getCommentString() << " ";
901 PrintUnmangledNameSafely(GVar, O);
902 }
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000903 O << '\n';
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000904 EmitGlobalConstant(C);
905 return;
906 } else {
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000907 O << ".comm " << name << ',' << Size;
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000908 // Darwin 9 and above support aligned common data.
909 if (Subtarget.isDarwin9())
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000910 O << ',' << Align;
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000911 }
Evan Cheng11db8142009-03-24 00:17:40 +0000912 if (VerboseAsm) {
913 O << "\t\t" << TAI->getCommentString() << " '";
914 PrintUnmangledNameSafely(GVar, O);
915 O << "'";
916 }
917 O << '\n';
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000918 return;
919 }
920
921 switch (GVar->getLinkage()) {
Duncan Sands19d161f2009-03-07 15:45:40 +0000922 case GlobalValue::LinkOnceAnyLinkage:
923 case GlobalValue::LinkOnceODRLinkage:
924 case GlobalValue::WeakAnyLinkage:
925 case GlobalValue::WeakODRLinkage:
Duncan Sandsb95df792009-03-11 20:14:15 +0000926 case GlobalValue::CommonLinkage:
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000927 O << "\t.globl " << name << '\n'
928 << "\t.weak_definition " << name << '\n';
929 break;
930 case GlobalValue::AppendingLinkage:
931 // FIXME: appending linkage variables should go into a section of
932 // their name or something. For now, just emit them as external.
933 case GlobalValue::ExternalLinkage:
934 // If external or appending, declare as a global symbol
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000935 O << "\t.globl " << name << '\n';
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000936 // FALL THROUGH
937 case GlobalValue::InternalLinkage:
evancheng47ae8142009-01-25 06:32:01 +0000938 case GlobalValue::PrivateLinkage:
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000939 break;
940 default:
Edwin Törökbd448e32009-07-14 16:55:14 +0000941 llvm_unreachable("Unknown linkage type!");
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000942 }
943
944 EmitAlignment(Align, GVar);
Evan Cheng11db8142009-03-24 00:17:40 +0000945 O << name << ":";
946 if (VerboseAsm) {
947 O << "\t\t\t\t" << TAI->getCommentString() << " '";
948 PrintUnmangledNameSafely(GVar, O);
949 O << "'";
950 }
951 O << '\n';
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000952
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000953 EmitGlobalConstant(C);
954 O << '\n';
955}
956
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000957bool PPCDarwinAsmPrinter::doFinalization(Module &M) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000958 const TargetData *TD = TM.getTargetData();
959
960 // Print out module-level global variables here.
961 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000962 I != E; ++I)
963 printModuleLevelGV(I);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000964
965 bool isPPC64 = TD->getPointerSizeInBits() == 64;
966
967 // Output stubs for dynamically-linked functions
Chris Lattner189198f2009-07-15 00:55:58 +0000968 if (TM.getRelocationModel() == Reloc::PIC_ && !FnStubs.empty()) {
969 SwitchToTextSection("\t.section __TEXT,__picsymbolstub1,symbol_stubs,"
970 "pure_instructions,32");
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000971 for (StringSet<>::iterator I = FnStubs.begin(), E = FnStubs.end();
972 I != E; ++I) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000973 EmitAlignment(4);
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000974 const char *p = I->getKeyData();
Evan Chenga65854f2008-12-05 01:06:39 +0000975 bool hasQuote = p[0]=='\"';
Dale Johannesena21b5202008-05-19 21:38:18 +0000976 printSuffixedName(p, "$stub");
977 O << ":\n";
Evan Chenga65854f2008-12-05 01:06:39 +0000978 O << "\t.indirect_symbol " << p << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000979 O << "\tmflr r0\n";
Evan Chenga65854f2008-12-05 01:06:39 +0000980 O << "\tbcl 20,31,";
981 if (hasQuote)
982 O << "\"L0$" << &p[1];
983 else
984 O << "L0$" << p;
985 O << '\n';
986 if (hasQuote)
987 O << "\"L0$" << &p[1];
988 else
989 O << "L0$" << p;
990 O << ":\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000991 O << "\tmflr r11\n";
Dale Johannesena21b5202008-05-19 21:38:18 +0000992 O << "\taddis r11,r11,ha16(";
993 printSuffixedName(p, "$lazy_ptr");
Evan Chenga65854f2008-12-05 01:06:39 +0000994 O << "-";
995 if (hasQuote)
996 O << "\"L0$" << &p[1];
997 else
998 O << "L0$" << p;
999 O << ")\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001000 O << "\tmtlr r0\n";
1001 if (isPPC64)
Dale Johannesena21b5202008-05-19 21:38:18 +00001002 O << "\tldu r12,lo16(";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001003 else
Dale Johannesena21b5202008-05-19 21:38:18 +00001004 O << "\tlwzu r12,lo16(";
1005 printSuffixedName(p, "$lazy_ptr");
Evan Chenga65854f2008-12-05 01:06:39 +00001006 O << "-";
1007 if (hasQuote)
1008 O << "\"L0$" << &p[1];
1009 else
1010 O << "L0$" << p;
1011 O << ")(r11)\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001012 O << "\tmtctr r12\n";
1013 O << "\tbctr\n";
1014 SwitchToDataSection(".lazy_symbol_pointer");
Dale Johannesena21b5202008-05-19 21:38:18 +00001015 printSuffixedName(p, "$lazy_ptr");
1016 O << ":\n";
Evan Chenga65854f2008-12-05 01:06:39 +00001017 O << "\t.indirect_symbol " << p << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001018 if (isPPC64)
1019 O << "\t.quad dyld_stub_binding_helper\n";
1020 else
1021 O << "\t.long dyld_stub_binding_helper\n";
1022 }
Chris Lattner189198f2009-07-15 00:55:58 +00001023 } else if (!FnStubs.empty()) {
1024 SwitchToTextSection("\t.section __TEXT,__symbol_stub1,symbol_stubs,"
1025 "pure_instructions,16");
Chris Lattner83cf1ec2009-07-15 01:14:44 +00001026 for (StringSet<>::iterator I = FnStubs.begin(), E = FnStubs.end();
1027 I != E; ++I) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001028 EmitAlignment(4);
Chris Lattner83cf1ec2009-07-15 01:14:44 +00001029 const char *p = I->getKeyData();
Dale Johannesena21b5202008-05-19 21:38:18 +00001030 printSuffixedName(p, "$stub");
1031 O << ":\n";
Evan Chenga65854f2008-12-05 01:06:39 +00001032 O << "\t.indirect_symbol " << p << '\n';
Dale Johannesena21b5202008-05-19 21:38:18 +00001033 O << "\tlis r11,ha16(";
1034 printSuffixedName(p, "$lazy_ptr");
1035 O << ")\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001036 if (isPPC64)
Dale Johannesena21b5202008-05-19 21:38:18 +00001037 O << "\tldu r12,lo16(";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001038 else
Dale Johannesena21b5202008-05-19 21:38:18 +00001039 O << "\tlwzu r12,lo16(";
1040 printSuffixedName(p, "$lazy_ptr");
1041 O << ")(r11)\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001042 O << "\tmtctr r12\n";
1043 O << "\tbctr\n";
1044 SwitchToDataSection(".lazy_symbol_pointer");
Dale Johannesena21b5202008-05-19 21:38:18 +00001045 printSuffixedName(p, "$lazy_ptr");
1046 O << ":\n";
Evan Chenga65854f2008-12-05 01:06:39 +00001047 O << "\t.indirect_symbol " << p << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001048 if (isPPC64)
1049 O << "\t.quad dyld_stub_binding_helper\n";
1050 else
1051 O << "\t.long dyld_stub_binding_helper\n";
1052 }
1053 }
1054
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +00001055 O << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001056
Dale Johannesen85535762008-04-02 00:25:04 +00001057 if (TAI->doesSupportExceptionHandling() && MMI) {
Dale Johannesenfb3ac732007-11-20 23:24:42 +00001058 // Add the (possibly multiple) personalities to the set of global values.
Dale Johannesen85535762008-04-02 00:25:04 +00001059 // Only referenced functions get into the Personalities list.
Chris Lattner2424eac2009-06-24 19:09:55 +00001060 const std::vector<Function *> &Personalities = MMI->getPersonalities();
Dale Johannesenfb3ac732007-11-20 23:24:42 +00001061 for (std::vector<Function *>::const_iterator I = Personalities.begin(),
Chris Lattner83cf1ec2009-07-15 01:14:44 +00001062 E = Personalities.end(); I != E; ++I) {
1063 if (*I)
1064 GVStubs[Mang->getMangledName(*I)] =
1065 Mang->getMangledName(*I, "$non_lazy_ptr", true);;
1066 }
Dale Johannesenfb3ac732007-11-20 23:24:42 +00001067 }
1068
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001069 // Output stubs for external and common global variables.
Dan Gohman3f7d94b2007-10-03 19:26:29 +00001070 if (!GVStubs.empty()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001071 SwitchToDataSection(".non_lazy_symbol_pointer");
Chris Lattner83cf1ec2009-07-15 01:14:44 +00001072 for (StringMap<std::string>::iterator I = GVStubs.begin(),
1073 E = GVStubs.end(); I != E; ++I) {
1074 O << I->second << ":\n";
1075 O << "\t.indirect_symbol " << I->getKeyData() << '\n';
1076 O << (isPPC64 ? "\t.quad\t0\n" : "\t.long\t0\n");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001077 }
1078 }
1079
Evan Chenga65854f2008-12-05 01:06:39 +00001080 if (!HiddenGVStubs.empty()) {
1081 SwitchToSection(TAI->getDataSection());
Chris Lattner83cf1ec2009-07-15 01:14:44 +00001082 EmitAlignment(isPPC64 ? 3 : 2);
1083 for (StringMap<std::string>::iterator I = HiddenGVStubs.begin(),
1084 E = HiddenGVStubs.end(); I != E; ++I) {
1085 O << I->second << ":\n";
1086 O << (isPPC64 ? "\t.quad\t" : "\t.long\t") << I->getKeyData() << '\n';
Evan Chenga65854f2008-12-05 01:06:39 +00001087 }
1088 }
1089
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001090 // Funny Darwin hack: This flag tells the linker that no global symbols
1091 // contain code that falls through to other global symbols (e.g. the obvious
1092 // implementation of multiple entry points). If this doesn't occur, the
1093 // linker can safely perform dead code stripping. Since LLVM never generates
1094 // code that does this, it is always safe to set.
1095 O << "\t.subsections_via_symbols\n";
1096
Dan Gohman4a558a32007-07-25 19:33:14 +00001097 return AsmPrinter::doFinalization(M);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001098}
1099
1100
1101
1102/// createPPCAsmPrinterPass - Returns a pass that prints the PPC assembly code
1103/// for a MachineFunction to the given output stream, in a format that the
1104/// Darwin assembler can deal with.
1105///
David Greene302008d2009-07-14 20:18:05 +00001106FunctionPass *llvm::createPPCAsmPrinterPass(formatted_raw_ostream &o,
Bill Wendling4f405312009-02-24 08:30:20 +00001107 PPCTargetMachine &tm,
Bill Wendling5ed22ac2009-04-29 23:29:43 +00001108 bool verbose) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001109 const PPCSubtarget *Subtarget = &tm.getSubtarget<PPCSubtarget>();
1110
1111 if (Subtarget->isDarwin()) {
Daniel Dunbarb10d2222009-07-01 01:48:54 +00001112 return new PPCDarwinAsmPrinter(o, tm, tm.getTargetAsmInfo(), verbose);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001113 } else {
Daniel Dunbarb10d2222009-07-01 01:48:54 +00001114 return new PPCLinuxAsmPrinter(o, tm, tm.getTargetAsmInfo(), verbose);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001115 }
1116}
Anton Korobeynikov01c0e9f2008-08-17 13:54:28 +00001117
1118namespace {
1119 static struct Register {
1120 Register() {
1121 PPCTargetMachine::registerAsmPrinter(createPPCAsmPrinterPass);
1122 }
1123 } Registrator;
1124}
Oscar Fuentes4f012352008-11-15 21:36:30 +00001125
1126extern "C" int PowerPCAsmPrinterForceLink;
1127int PowerPCAsmPrinterForceLink = 0;
Douglas Gregor1dc5ff42009-06-16 20:12:29 +00001128
Bob Wilsonebbc1c42009-06-23 23:59:40 +00001129// Force static initialization.
1130extern "C" void LLVMInitializePowerPCAsmPrinter() { }