blob: 4da53774d72b546b612eb1e35592ea2239cf10b8 [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:
57 PPCAsmPrinter(raw_ostream &O, TargetMachine &TM,
58 const TargetAsmInfo *T, bool F)
59 : AsmPrinter(O, TM, T, F),
60 Subtarget(TM.getSubtarget<PPCSubtarget>()) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +000061
62 virtual const char *getPassName() const {
63 return "PowerPC Assembly Printer";
64 }
65
66 PPCTargetMachine &getTM() {
67 return static_cast<PPCTargetMachine&>(TM);
68 }
69
70 unsigned enumRegToMachineReg(unsigned enumReg) {
71 switch (enumReg) {
72 default: assert(0 && "Unhandled register!"); break;
73 case PPC::CR0: return 0;
74 case PPC::CR1: return 1;
75 case PPC::CR2: return 2;
76 case PPC::CR3: return 3;
77 case PPC::CR4: return 4;
78 case PPC::CR5: return 5;
79 case PPC::CR6: return 6;
80 case PPC::CR7: return 7;
81 }
82 abort();
83 }
84
85 /// printInstruction - This method is automatically generated by tablegen
86 /// from the instruction set description. This method returns true if the
87 /// machine instruction was sufficiently described to print it, otherwise it
88 /// returns false.
89 bool printInstruction(const MachineInstr *MI);
90
91 void printMachineInstruction(const MachineInstr *MI);
92 void printOp(const MachineOperand &MO);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +000093
Dan Gohmanf17a25c2007-07-18 16:29:46 +000094 /// stripRegisterPrefix - This method strips the character prefix from a
95 /// register name so that only the number is left. Used by for linux asm.
96 const char *stripRegisterPrefix(const char *RegName) {
97 switch (RegName[0]) {
98 case 'r':
99 case 'f':
100 case 'v': return RegName + 1;
101 case 'c': if (RegName[1] == 'r') return RegName + 2;
102 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000103
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000104 return RegName;
105 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000106
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000107 /// printRegister - Print register according to target requirements.
108 ///
109 void printRegister(const MachineOperand &MO, bool R0AsZero) {
110 unsigned RegNo = MO.getReg();
Dan Gohman1e57df32008-02-10 18:45:23 +0000111 assert(TargetRegisterInfo::isPhysicalRegister(RegNo) && "Not physreg??");
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000112
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000113 // If we should use 0 for R0.
114 if (R0AsZero && RegNo == PPC::R0) {
115 O << "0";
116 return;
117 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000118
Bill Wendling8eeb9792008-02-26 21:11:01 +0000119 const char *RegName = TM.getRegisterInfo()->get(RegNo).AsmName;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000120 // Linux assembler (Others?) does not take register mnemonics.
121 // FIXME - What about special registers used in mfspr/mtspr?
122 if (!Subtarget.isDarwin()) RegName = stripRegisterPrefix(RegName);
123 O << RegName;
124 }
125
126 void printOperand(const MachineInstr *MI, unsigned OpNo) {
127 const MachineOperand &MO = MI->getOperand(OpNo);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000128 if (MO.isReg()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000129 printRegister(MO, false);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000130 } else if (MO.isImm()) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000131 O << MO.getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000132 } else {
133 printOp(MO);
134 }
135 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000136
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000137 bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
138 unsigned AsmVariant, const char *ExtraCode);
139 bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
140 unsigned AsmVariant, const char *ExtraCode);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000141
142
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000143 void printS5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000144 char value = MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000145 value = (value << (32-5)) >> (32-5);
146 O << (int)value;
147 }
148 void printU5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000149 unsigned char value = MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000150 assert(value <= 31 && "Invalid u5imm argument!");
151 O << (unsigned int)value;
152 }
153 void printU6ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000154 unsigned char value = MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000155 assert(value <= 63 && "Invalid u6imm argument!");
156 O << (unsigned int)value;
157 }
158 void printS16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000159 O << (short)MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000160 }
161 void printU16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000162 O << (unsigned short)MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000163 }
164 void printS16X4ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000165 if (MI->getOperand(OpNo).isImm()) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000166 O << (short)(MI->getOperand(OpNo).getImm()*4);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000167 } else {
168 O << "lo16(";
169 printOp(MI->getOperand(OpNo));
170 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng477013c2007-10-14 05:57:21 +0000171 O << "-\"L" << getFunctionNumber() << "$pb\")";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000172 else
173 O << ')';
174 }
175 }
176 void printBranchOperand(const MachineInstr *MI, unsigned OpNo) {
177 // Branches can take an immediate operand. This is used by the branch
178 // selection pass to print $+8, an eight byte displacement from the PC.
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000179 if (MI->getOperand(OpNo).isImm()) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000180 O << "$+" << MI->getOperand(OpNo).getImm()*4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000181 } else {
182 printOp(MI->getOperand(OpNo));
183 }
184 }
185 void printCallOperand(const MachineInstr *MI, unsigned OpNo) {
186 const MachineOperand &MO = MI->getOperand(OpNo);
187 if (TM.getRelocationModel() != Reloc::Static) {
188 if (MO.getType() == MachineOperand::MO_GlobalAddress) {
189 GlobalValue *GV = MO.getGlobal();
190 if (((GV->isDeclaration() || GV->hasWeakLinkage() ||
Dale Johannesen49c44122008-05-14 20:12:51 +0000191 GV->hasLinkOnceLinkage() || GV->hasCommonLinkage()))) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000192 // Dynamically-resolved functions need a stub for the function.
193 std::string Name = Mang->getValueName(GV);
194 FnStubs.insert(Name);
Dale Johannesena21b5202008-05-19 21:38:18 +0000195 printSuffixedName(Name, "$stub");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000196 if (GV->hasExternalWeakLinkage())
197 ExtWeakSymbols.insert(GV);
198 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 {
Devang Patelaa1e8432009-01-08 23:40:34 +0000297 DwarfWriter *DW;
Dale Johannesen2f6aa072008-07-09 21:24:07 +0000298 MachineModuleInfo *MMI;
Bill Wendling4f405312009-02-24 08:30:20 +0000299 public:
Owen Anderson847b99b2008-08-21 00:14:44 +0000300 PPCLinuxAsmPrinter(raw_ostream &O, PPCTargetMachine &TM,
Bill Wendling4f405312009-02-24 08:30:20 +0000301 const TargetAsmInfo *T, bool F)
302 : PPCAsmPrinter(O, TM, T, F), 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:
Owen Anderson847b99b2008-08-21 00:14:44 +0000329 PPCDarwinAsmPrinter(raw_ostream &O, PPCTargetMachine &TM,
Bill Wendling4f405312009-02-24 08:30:20 +0000330 const TargetAsmInfo *T, bool F)
331 : PPCAsmPrinter(O, TM, T, F), DW(0), MMI(0), OS(O) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000332
333 virtual const char *getPassName() const {
334 return "Darwin PPC Assembly Printer";
335 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000336
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000337 bool runOnMachineFunction(MachineFunction &F);
338 bool doInitialization(Module &M);
339 bool doFinalization(Module &M);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000340
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000341 void getAnalysisUsage(AnalysisUsage &AU) const {
342 AU.setPreservesAll();
343 AU.addRequired<MachineModuleInfo>();
Devang Patelaa1e8432009-01-08 23:40:34 +0000344 AU.addRequired<DwarfWriter>();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000345 PPCAsmPrinter::getAnalysisUsage(AU);
346 }
347
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000348 void printModuleLevelGV(const GlobalVariable* GVar);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000349 };
350} // end of anonymous namespace
351
352// Include the auto-generated portion of the assembly writer
353#include "PPCGenAsmWriter.inc"
354
355void PPCAsmPrinter::printOp(const MachineOperand &MO) {
356 switch (MO.getType()) {
357 case MachineOperand::MO_Immediate:
358 cerr << "printOp() does not handle immediate values\n";
359 abort();
360 return;
361
362 case MachineOperand::MO_MachineBasicBlock:
Chris Lattner6017d482007-12-30 23:10:15 +0000363 printBasicBlockLabel(MO.getMBB());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000364 return;
365 case MachineOperand::MO_JumpTableIndex:
Evan Cheng477013c2007-10-14 05:57:21 +0000366 O << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
Chris Lattner6017d482007-12-30 23:10:15 +0000367 << '_' << MO.getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000368 // FIXME: PIC relocation model
369 return;
370 case MachineOperand::MO_ConstantPoolIndex:
Evan Cheng477013c2007-10-14 05:57:21 +0000371 O << TAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber()
Chris Lattner6017d482007-12-30 23:10:15 +0000372 << '_' << MO.getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000373 return;
374 case MachineOperand::MO_ExternalSymbol:
375 // Computing the address of an external symbol, not calling it.
376 if (TM.getRelocationModel() != Reloc::Static) {
377 std::string Name(TAI->getGlobalPrefix()); Name += MO.getSymbolName();
378 GVStubs.insert(Name);
Dale Johannesena21b5202008-05-19 21:38:18 +0000379 printSuffixedName(Name, "$non_lazy_ptr");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000380 return;
381 }
382 O << TAI->getGlobalPrefix() << MO.getSymbolName();
383 return;
384 case MachineOperand::MO_GlobalAddress: {
385 // Computing the address of a global symbol, not calling it.
386 GlobalValue *GV = MO.getGlobal();
387 std::string Name = Mang->getValueName(GV);
388
389 // External or weakly linked global variables need non-lazily-resolved stubs
390 if (TM.getRelocationModel() != Reloc::Static) {
Duncan Sands19d161f2009-03-07 15:45:40 +0000391 if (GV->isDeclaration() || GV->isWeakForLinker()) {
Evan Chenga65854f2008-12-05 01:06:39 +0000392 if (GV->hasHiddenVisibility()) {
393 if (!GV->isDeclaration() && !GV->hasCommonLinkage())
394 O << Name;
395 else {
396 HiddenGVStubs.insert(Name);
397 printSuffixedName(Name, "$non_lazy_ptr");
398 }
399 } else {
400 GVStubs.insert(Name);
401 printSuffixedName(Name, "$non_lazy_ptr");
402 }
Dale Johannesencaf11182008-05-16 20:09:25 +0000403 if (GV->hasExternalWeakLinkage())
404 ExtWeakSymbols.insert(GV);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000405 return;
406 }
407 }
408 O << Name;
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000409
Anton Korobeynikov440f23d2008-11-22 16:15:34 +0000410 printOffset(MO.getOffset());
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000411
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000412 if (GV->hasExternalWeakLinkage())
413 ExtWeakSymbols.insert(GV);
414 return;
415 }
416
417 default:
418 O << "<unknown operand type: " << MO.getType() << ">";
419 return;
420 }
421}
422
423/// EmitExternalGlobal - In this case we need to use the indirect symbol.
424///
425void PPCAsmPrinter::EmitExternalGlobal(const GlobalVariable *GV) {
426 std::string Name = getGlobalLinkName(GV);
427 if (TM.getRelocationModel() != Reloc::Static) {
Evan Chenga65854f2008-12-05 01:06:39 +0000428 if (GV->hasHiddenVisibility())
429 HiddenGVStubs.insert(Name);
430 else
431 GVStubs.insert(Name);
Dale Johannesena21b5202008-05-19 21:38:18 +0000432 printSuffixedName(Name, "$non_lazy_ptr");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000433 return;
434 }
435 O << Name;
436}
437
438/// PrintAsmOperand - Print out an operand for an inline asm expression.
439///
440bool PPCAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000441 unsigned AsmVariant,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000442 const char *ExtraCode) {
443 // Does this asm operand have a single letter operand modifier?
444 if (ExtraCode && ExtraCode[0]) {
445 if (ExtraCode[1] != 0) return true; // Unknown modifier.
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000446
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000447 switch (ExtraCode[0]) {
448 default: return true; // Unknown modifier.
449 case 'c': // Don't print "$" before a global var name or constant.
450 // PPC never has a prefix.
451 printOperand(MI, OpNo);
452 return false;
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000453 case 'L': // Write second word of DImode reference.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000454 // Verify that this operand has two consecutive registers.
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000455 if (!MI->getOperand(OpNo).isReg() ||
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000456 OpNo+1 == MI->getNumOperands() ||
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000457 !MI->getOperand(OpNo+1).isReg())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000458 return true;
459 ++OpNo; // Return the high-part.
460 break;
461 case 'I':
462 // Write 'i' if an integer constant, otherwise nothing. Used to print
463 // addi vs add, etc.
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000464 if (MI->getOperand(OpNo).isImm())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000465 O << "i";
466 return false;
467 }
468 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000469
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000470 printOperand(MI, OpNo);
471 return false;
472}
473
474bool PPCAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000475 unsigned AsmVariant,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000476 const char *ExtraCode) {
477 if (ExtraCode && ExtraCode[0])
478 return true; // Unknown modifier.
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000479 if (MI->getOperand(OpNo).isReg())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000480 printMemRegReg(MI, OpNo);
481 else
482 printMemRegImm(MI, OpNo);
483 return false;
484}
485
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000486void PPCAsmPrinter::printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000487 const char *Modifier) {
488 assert(Modifier && "Must specify 'cc' or 'reg' as predicate op modifier!");
489 unsigned Code = MI->getOperand(OpNo).getImm();
490 if (!strcmp(Modifier, "cc")) {
491 switch ((PPC::Predicate)Code) {
492 case PPC::PRED_ALWAYS: return; // Don't print anything for always.
493 case PPC::PRED_LT: O << "lt"; return;
494 case PPC::PRED_LE: O << "le"; return;
495 case PPC::PRED_EQ: O << "eq"; return;
496 case PPC::PRED_GE: O << "ge"; return;
497 case PPC::PRED_GT: O << "gt"; return;
498 case PPC::PRED_NE: O << "ne"; return;
499 case PPC::PRED_UN: O << "un"; return;
500 case PPC::PRED_NU: O << "nu"; return;
501 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000502
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000503 } else {
504 assert(!strcmp(Modifier, "reg") &&
505 "Need to specify 'cc' or 'reg' as predicate op modifier!");
506 // Don't print the register for 'always'.
507 if (Code == PPC::PRED_ALWAYS) return;
508 printOperand(MI, OpNo+1);
509 }
510}
511
512
513/// printMachineInstruction -- Print out a single PowerPC MI in Darwin syntax to
514/// the current output stream.
515///
516void PPCAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
517 ++EmittedInsts;
518
519 // Check for slwi/srwi mnemonics.
520 if (MI->getOpcode() == PPC::RLWINM) {
521 bool FoundMnemonic = false;
Chris Lattnera96056a2007-12-30 20:49:49 +0000522 unsigned char SH = MI->getOperand(2).getImm();
523 unsigned char MB = MI->getOperand(3).getImm();
524 unsigned char ME = MI->getOperand(4).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000525 if (SH <= 31 && MB == 0 && ME == (31-SH)) {
Nate Begemanbd5cdf12008-02-05 08:49:09 +0000526 O << "\tslwi "; FoundMnemonic = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000527 }
528 if (SH <= 31 && MB == (32-SH) && ME == 31) {
Nate Begemanbd5cdf12008-02-05 08:49:09 +0000529 O << "\tsrwi "; FoundMnemonic = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000530 SH = 32-SH;
531 }
532 if (FoundMnemonic) {
533 printOperand(MI, 0);
534 O << ", ";
535 printOperand(MI, 1);
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000536 O << ", " << (unsigned int)SH << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000537 return;
538 }
539 } else if (MI->getOpcode() == PPC::OR || MI->getOpcode() == PPC::OR8) {
540 if (MI->getOperand(1).getReg() == MI->getOperand(2).getReg()) {
Nate Begemanbd5cdf12008-02-05 08:49:09 +0000541 O << "\tmr ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000542 printOperand(MI, 0);
543 O << ", ";
544 printOperand(MI, 1);
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000545 O << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000546 return;
547 }
548 } else if (MI->getOpcode() == PPC::RLDICR) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000549 unsigned char SH = MI->getOperand(2).getImm();
550 unsigned char ME = MI->getOperand(3).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000551 // rldicr RA, RS, SH, 63-SH == sldi RA, RS, SH
552 if (63-SH == ME) {
Nate Begemanbd5cdf12008-02-05 08:49:09 +0000553 O << "\tsldi ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000554 printOperand(MI, 0);
555 O << ", ";
556 printOperand(MI, 1);
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000557 O << ", " << (unsigned int)SH << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000558 return;
559 }
560 }
561
562 if (printInstruction(MI))
563 return; // Printer was automatically generated
564
565 assert(0 && "Unhandled instruction in asm writer!");
566 abort();
567 return;
568}
569
570/// runOnMachineFunction - This uses the printMachineInstruction()
571/// method to print assembly for each instruction.
572///
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000573bool PPCLinuxAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Bill Wendling4f405312009-02-24 08:30:20 +0000574 this->MF = &MF;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000575
576 SetupMachineFunction(MF);
577 O << "\n\n";
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000578
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000579 // Print out constants referenced by the function
580 EmitConstantPool(MF.getConstantPool());
581
582 // Print out labels for the function.
583 const Function *F = MF.getFunction();
Anton Korobeynikov1a9edae2008-09-24 22:14:23 +0000584 SwitchToSection(TAI->SectionForGlobal(F));
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000585
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000586 switch (F->getLinkage()) {
587 default: assert(0 && "Unknown linkage type!");
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000588 case Function::PrivateLinkage:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000589 case Function::InternalLinkage: // Symbols default to internal.
590 break;
591 case Function::ExternalLinkage:
592 O << "\t.global\t" << CurrentFnName << '\n'
593 << "\t.type\t" << CurrentFnName << ", @function\n";
594 break;
Duncan Sands19d161f2009-03-07 15:45:40 +0000595 case Function::WeakAnyLinkage:
596 case Function::WeakODRLinkage:
597 case Function::LinkOnceAnyLinkage:
598 case Function::LinkOnceODRLinkage:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000599 O << "\t.global\t" << CurrentFnName << '\n';
600 O << "\t.weak\t" << CurrentFnName << '\n';
601 break;
602 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000603
Anton Korobeynikov78d69aa2008-08-08 18:25:07 +0000604 printVisibility(CurrentFnName, F->getVisibility());
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000605
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000606 EmitAlignment(2, F);
607 O << CurrentFnName << ":\n";
608
609 // Emit pre-function debug information.
Devang Patelaa1e8432009-01-08 23:40:34 +0000610 DW->BeginFunction(&MF);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000611
612 // Print out code for the function.
613 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
614 I != E; ++I) {
615 // Print a label for the basic block.
616 if (I != MF.begin()) {
Evan Cheng45c1edb2008-02-28 00:43:03 +0000617 printBasicBlockLabel(I, true, true);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000618 O << '\n';
619 }
620 for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
621 II != E; ++II) {
622 // Print the assembly for the instruction.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000623 printMachineInstruction(II);
624 }
625 }
626
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000627 O << "\t.size\t" << CurrentFnName << ",.-" << CurrentFnName << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000628
629 // Print out jump tables referenced by the function.
630 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000631
Dale Johannesendd9e1c92008-12-03 19:33:10 +0000632 SwitchToSection(TAI->SectionForGlobal(F));
633
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000634 // Emit post-function debug information.
Devang Patelaa1e8432009-01-08 23:40:34 +0000635 DW->EndFunction(&MF);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000636
Dan Gohmaneb94abd2008-11-07 19:49:17 +0000637 O.flush();
638
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000639 // We didn't modify anything.
640 return false;
641}
642
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000643bool PPCLinuxAsmPrinter::doInitialization(Module &M) {
Dan Gohman4a558a32007-07-25 19:33:14 +0000644 bool Result = AsmPrinter::doInitialization(M);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000645
Dale Johannesen2f6aa072008-07-09 21:24:07 +0000646 // Emit initial debug information.
Duncan Sands4e0d6a72009-01-28 13:14:17 +0000647 MMI = getAnalysisIfAvailable<MachineModuleInfo>();
Dale Johannesen2f6aa072008-07-09 21:24:07 +0000648 assert(MMI);
Duncan Sands4e0d6a72009-01-28 13:14:17 +0000649 DW = getAnalysisIfAvailable<DwarfWriter>();
Devang Patelaa1e8432009-01-08 23:40:34 +0000650 assert(DW && "DwarfWriter is not available");
651 DW->BeginModule(&M, MMI, O, this, TAI);
Dale Johannesen2f6aa072008-07-09 21:24:07 +0000652
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000653 // GNU as handles section names wrapped in quotes
654 Mang->setUseQuotes(true);
655
Anton Korobeynikov55b94962008-09-24 22:15:21 +0000656 SwitchToSection(TAI->getTextSection());
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000657
Dan Gohman4a558a32007-07-25 19:33:14 +0000658 return Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000659}
660
Chris Lattner2b638a72008-02-15 19:04:54 +0000661/// PrintUnmangledNameSafely - Print out the printable characters in the name.
Dan Gohman8387bb32009-03-03 02:55:14 +0000662/// Don't print things like \\n or \\0.
Owen Anderson847b99b2008-08-21 00:14:44 +0000663static void PrintUnmangledNameSafely(const Value *V, raw_ostream &OS) {
Chris Lattner2b638a72008-02-15 19:04:54 +0000664 for (const char *Name = V->getNameStart(), *E = Name+V->getNameLen();
665 Name != E; ++Name)
666 if (isprint(*Name))
667 OS << *Name;
668}
669
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000670void PPCLinuxAsmPrinter::printModuleLevelGV(const GlobalVariable* GVar) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000671 const TargetData *TD = TM.getTargetData();
672
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000673 if (!GVar->hasInitializer())
674 return; // External global require no code
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000675
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000676 // Check to see if this is a special global used by LLVM, if so, emit it.
677 if (EmitSpecialLLVMGlobal(GVar))
678 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000679
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000680 std::string name = Mang->getValueName(GVar);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000681
Anton Korobeynikov78d69aa2008-08-08 18:25:07 +0000682 printVisibility(name, GVar->getVisibility());
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000683
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000684 Constant *C = GVar->getInitializer();
685 const Type *Type = C->getType();
Duncan Sandsd68f13b2009-01-12 20:38:59 +0000686 unsigned Size = TD->getTypePaddedSize(Type);
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000687 unsigned Align = TD->getPreferredAlignmentLog(GVar);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000688
Anton Korobeynikov1a9edae2008-09-24 22:14:23 +0000689 SwitchToSection(TAI->SectionForGlobal(GVar));
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000690
691 if (C->isNullValue() && /* FIXME: Verify correct */
692 !GVar->hasSection() &&
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000693 (GVar->hasLocalLinkage() || GVar->hasExternalLinkage() ||
Duncan Sands19d161f2009-03-07 15:45:40 +0000694 GVar->isWeakForLinker())) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000695 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000696
697 if (GVar->hasExternalLinkage()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000698 O << "\t.global " << name << '\n';
699 O << "\t.type " << name << ", @object\n";
Nick Lewycky3246a9c2007-07-25 03:48:45 +0000700 O << name << ":\n";
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000701 O << "\t.zero " << Size << '\n';
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000702 } else if (GVar->hasLocalLinkage()) {
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000703 O << TAI->getLCOMMDirective() << name << ',' << Size;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000704 } else {
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000705 O << ".comm " << name << ',' << Size;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000706 }
Chris Lattner2b638a72008-02-15 19:04:54 +0000707 O << "\t\t" << TAI->getCommentString() << " '";
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000708 PrintUnmangledNameSafely(GVar, O);
Chris Lattner2b638a72008-02-15 19:04:54 +0000709 O << "'\n";
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000710 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000711 }
712
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000713 switch (GVar->getLinkage()) {
Duncan Sands19d161f2009-03-07 15:45:40 +0000714 case GlobalValue::LinkOnceAnyLinkage:
715 case GlobalValue::LinkOnceODRLinkage:
716 case GlobalValue::WeakAnyLinkage:
717 case GlobalValue::WeakODRLinkage:
718 case GlobalValue::CommonAnyLinkage:
719 case GlobalValue::CommonODRLinkage:
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000720 O << "\t.global " << name << '\n'
721 << "\t.type " << name << ", @object\n"
722 << "\t.weak " << name << '\n';
723 break;
724 case GlobalValue::AppendingLinkage:
725 // FIXME: appending linkage variables should go into a section of
726 // their name or something. For now, just emit them as external.
727 case GlobalValue::ExternalLinkage:
728 // If external or appending, declare as a global symbol
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000729 O << "\t.global " << name << '\n'
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000730 << "\t.type " << name << ", @object\n";
731 // FALL THROUGH
732 case GlobalValue::InternalLinkage:
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000733 case GlobalValue::PrivateLinkage:
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000734 break;
735 default:
736 cerr << "Unknown linkage type!";
737 abort();
738 }
739
740 EmitAlignment(Align, GVar);
741 O << name << ":\t\t\t\t" << TAI->getCommentString() << " '";
742 PrintUnmangledNameSafely(GVar, O);
743 O << "'\n";
744
745 // If the initializer is a extern weak symbol, remember to emit the weak
746 // reference!
747 if (const GlobalValue *GV = dyn_cast<GlobalValue>(C))
748 if (GV->hasExternalWeakLinkage())
749 ExtWeakSymbols.insert(GV);
750
751 EmitGlobalConstant(C);
752 O << '\n';
753}
754
755bool PPCLinuxAsmPrinter::doFinalization(Module &M) {
756 // Print out module-level global variables here.
757 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
758 I != E; ++I)
759 printModuleLevelGV(I);
760
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000761 // TODO
762
763 // Emit initial debug information.
Devang Patelaa1e8432009-01-08 23:40:34 +0000764 DW->EndModule();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000765
Dan Gohman4a558a32007-07-25 19:33:14 +0000766 return AsmPrinter::doFinalization(M);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000767}
768
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000769/// runOnMachineFunction - This uses the printMachineInstruction()
770/// method to print assembly for each instruction.
771///
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000772bool PPCDarwinAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Bill Wendling4f405312009-02-24 08:30:20 +0000773 this->MF = &MF;
774
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000775 SetupMachineFunction(MF);
776 O << "\n\n";
Dale Johannesenfb3ac732007-11-20 23:24:42 +0000777
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000778 // Print out constants referenced by the function
779 EmitConstantPool(MF.getConstantPool());
780
781 // Print out labels for the function.
782 const Function *F = MF.getFunction();
Anton Korobeynikov1a9edae2008-09-24 22:14:23 +0000783 SwitchToSection(TAI->SectionForGlobal(F));
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000784
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000785 switch (F->getLinkage()) {
786 default: assert(0 && "Unknown linkage type!");
evancheng47ae8142009-01-25 06:32:01 +0000787 case Function::PrivateLinkage:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000788 case Function::InternalLinkage: // Symbols default to internal.
789 break;
790 case Function::ExternalLinkage:
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000791 O << "\t.globl\t" << CurrentFnName << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000792 break;
Duncan Sands19d161f2009-03-07 15:45:40 +0000793 case Function::WeakAnyLinkage:
794 case Function::WeakODRLinkage:
795 case Function::LinkOnceAnyLinkage:
796 case Function::LinkOnceODRLinkage:
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000797 O << "\t.globl\t" << CurrentFnName << '\n';
798 O << "\t.weak_definition\t" << CurrentFnName << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000799 break;
800 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000801
Anton Korobeynikov78d69aa2008-08-08 18:25:07 +0000802 printVisibility(CurrentFnName, F->getVisibility());
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000803
Devang Patel93698d92008-10-01 23:18:38 +0000804 EmitAlignment(F->hasFnAttr(Attribute::OptimizeForSize) ? 2 : 4, F);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000805 O << CurrentFnName << ":\n";
806
807 // Emit pre-function debug information.
Devang Patelaa1e8432009-01-08 23:40:34 +0000808 DW->BeginFunction(&MF);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000809
Bill Wendling36ccaea2008-01-26 06:51:24 +0000810 // If the function is empty, then we need to emit *something*. Otherwise, the
811 // function's label might be associated with something that it wasn't meant to
812 // be associated with. We emit a noop in this situation.
813 MachineFunction::iterator I = MF.begin();
814
Bill Wendlingb5880a72008-01-26 09:03:52 +0000815 if (++I == MF.end() && MF.front().empty())
816 O << "\tnop\n";
Bill Wendling36ccaea2008-01-26 06:51:24 +0000817
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000818 // Print out code for the function.
819 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
820 I != E; ++I) {
821 // Print a label for the basic block.
822 if (I != MF.begin()) {
Evan Cheng45c1edb2008-02-28 00:43:03 +0000823 printBasicBlockLabel(I, true, true);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000824 O << '\n';
825 }
Bill Wendling36ccaea2008-01-26 06:51:24 +0000826 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
827 II != IE; ++II) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000828 // Print the assembly for the instruction.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000829 printMachineInstruction(II);
830 }
831 }
832
833 // Print out jump tables referenced by the function.
834 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000835
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000836 // Emit post-function debug information.
Devang Patelaa1e8432009-01-08 23:40:34 +0000837 DW->EndFunction(&MF);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000838
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000839 // We didn't modify anything.
840 return false;
841}
842
843
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000844bool PPCDarwinAsmPrinter::doInitialization(Module &M) {
Dan Gohman12300e12008-03-25 21:45:14 +0000845 static const char *const CPUDirectives[] = {
Dale Johannesen161badc2008-02-14 23:35:16 +0000846 "",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000847 "ppc",
848 "ppc601",
849 "ppc602",
850 "ppc603",
851 "ppc7400",
852 "ppc750",
853 "ppc970",
854 "ppc64"
855 };
856
857 unsigned Directive = Subtarget.getDarwinDirective();
858 if (Subtarget.isGigaProcessor() && Directive < PPC::DIR_970)
859 Directive = PPC::DIR_970;
860 if (Subtarget.hasAltivec() && Directive < PPC::DIR_7400)
861 Directive = PPC::DIR_7400;
862 if (Subtarget.isPPC64() && Directive < PPC::DIR_970)
863 Directive = PPC::DIR_64;
864 assert(Directive <= PPC::DIR_64 && "Directive out of range.");
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000865 O << "\t.machine " << CPUDirectives[Directive] << '\n';
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000866
Dan Gohman4a558a32007-07-25 19:33:14 +0000867 bool Result = AsmPrinter::doInitialization(M);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000868
Dale Johannesen58e0eeb2008-07-09 20:43:39 +0000869 // Emit initial debug information.
Dale Johannesen58e0eeb2008-07-09 20:43:39 +0000870 // We need this for Personality functions.
871 // AsmPrinter::doInitialization should have done this analysis.
Duncan Sands4e0d6a72009-01-28 13:14:17 +0000872 MMI = getAnalysisIfAvailable<MachineModuleInfo>();
Dale Johannesen58e0eeb2008-07-09 20:43:39 +0000873 assert(MMI);
Duncan Sands4e0d6a72009-01-28 13:14:17 +0000874 DW = getAnalysisIfAvailable<DwarfWriter>();
Devang Patelaa1e8432009-01-08 23:40:34 +0000875 assert(DW && "DwarfWriter is not available");
876 DW->BeginModule(&M, MMI, O, this, TAI);
Dale Johannesen58e0eeb2008-07-09 20:43:39 +0000877
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000878 // Darwin wants symbols to be quoted if they have complex names.
879 Mang->setUseQuotes(true);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000880
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000881 // Prime text sections so they are adjacent. This reduces the likelihood a
882 // large data or debug section causes a branch to exceed 16M limit.
Dale Johannesen3c788322008-01-11 00:54:37 +0000883 SwitchToTextSection("\t.section __TEXT,__textcoal_nt,coalesced,"
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000884 "pure_instructions");
885 if (TM.getRelocationModel() == Reloc::PIC_) {
Dale Johannesen3c788322008-01-11 00:54:37 +0000886 SwitchToTextSection("\t.section __TEXT,__picsymbolstub1,symbol_stubs,"
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000887 "pure_instructions,32");
888 } else if (TM.getRelocationModel() == Reloc::DynamicNoPIC) {
Dale Johannesen3c788322008-01-11 00:54:37 +0000889 SwitchToTextSection("\t.section __TEXT,__symbol_stub1,symbol_stubs,"
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000890 "pure_instructions,16");
891 }
Anton Korobeynikov55b94962008-09-24 22:15:21 +0000892 SwitchToSection(TAI->getTextSection());
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000893
Dan Gohman4a558a32007-07-25 19:33:14 +0000894 return Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000895}
896
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000897void PPCDarwinAsmPrinter::printModuleLevelGV(const GlobalVariable* GVar) {
898 const TargetData *TD = TM.getTargetData();
899
900 if (!GVar->hasInitializer())
901 return; // External global require no code
902
903 // Check to see if this is a special global used by LLVM, if so, emit it.
904 if (EmitSpecialLLVMGlobal(GVar)) {
905 if (TM.getRelocationModel() == Reloc::Static) {
906 if (GVar->getName() == "llvm.global_ctors")
907 O << ".reference .constructors_used\n";
908 else if (GVar->getName() == "llvm.global_dtors")
909 O << ".reference .destructors_used\n";
910 }
911 return;
912 }
913
914 std::string name = Mang->getValueName(GVar);
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000915
Anton Korobeynikov78d69aa2008-08-08 18:25:07 +0000916 printVisibility(name, GVar->getVisibility());
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000917
918 Constant *C = GVar->getInitializer();
919 const Type *Type = C->getType();
Duncan Sandsd68f13b2009-01-12 20:38:59 +0000920 unsigned Size = TD->getTypePaddedSize(Type);
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000921 unsigned Align = TD->getPreferredAlignmentLog(GVar);
922
Anton Korobeynikov1a9edae2008-09-24 22:14:23 +0000923 SwitchToSection(TAI->SectionForGlobal(GVar));
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000924
925 if (C->isNullValue() && /* FIXME: Verify correct */
926 !GVar->hasSection() &&
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000927 (GVar->hasLocalLinkage() || GVar->hasExternalLinkage() ||
Duncan Sands19d161f2009-03-07 15:45:40 +0000928 GVar->isWeakForLinker()) &&
Evan Chengcf84b142009-02-18 02:19:52 +0000929 TAI->SectionKindForGlobal(GVar) != SectionKind::RODataMergeStr) {
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000930 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
931
932 if (GVar->hasExternalLinkage()) {
933 O << "\t.globl " << name << '\n';
934 O << "\t.zerofill __DATA, __common, " << name << ", "
935 << Size << ", " << Align;
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000936 } else if (GVar->hasLocalLinkage()) {
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000937 O << TAI->getLCOMMDirective() << name << ',' << Size << ',' << Align;
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000938 } else if (!GVar->hasCommonLinkage()) {
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000939 O << "\t.globl " << name << '\n'
940 << TAI->getWeakDefDirective() << name << '\n';
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000941 EmitAlignment(Align, GVar);
942 O << name << ":\t\t\t\t" << TAI->getCommentString() << " ";
943 PrintUnmangledNameSafely(GVar, O);
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000944 O << '\n';
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000945 EmitGlobalConstant(C);
946 return;
947 } else {
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000948 O << ".comm " << name << ',' << Size;
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000949 // Darwin 9 and above support aligned common data.
950 if (Subtarget.isDarwin9())
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000951 O << ',' << Align;
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000952 }
953 O << "\t\t" << TAI->getCommentString() << " '";
954 PrintUnmangledNameSafely(GVar, O);
955 O << "'\n";
956 return;
957 }
958
959 switch (GVar->getLinkage()) {
Duncan Sands19d161f2009-03-07 15:45:40 +0000960 case GlobalValue::LinkOnceAnyLinkage:
961 case GlobalValue::LinkOnceODRLinkage:
962 case GlobalValue::WeakAnyLinkage:
963 case GlobalValue::WeakODRLinkage:
964 case GlobalValue::CommonAnyLinkage:
965 case GlobalValue::CommonODRLinkage:
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000966 O << "\t.globl " << name << '\n'
967 << "\t.weak_definition " << name << '\n';
968 break;
969 case GlobalValue::AppendingLinkage:
970 // FIXME: appending linkage variables should go into a section of
971 // their name or something. For now, just emit them as external.
972 case GlobalValue::ExternalLinkage:
973 // If external or appending, declare as a global symbol
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000974 O << "\t.globl " << name << '\n';
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000975 // FALL THROUGH
976 case GlobalValue::InternalLinkage:
evancheng47ae8142009-01-25 06:32:01 +0000977 case GlobalValue::PrivateLinkage:
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000978 break;
979 default:
980 cerr << "Unknown linkage type!";
981 abort();
982 }
983
984 EmitAlignment(Align, GVar);
985 O << name << ":\t\t\t\t" << TAI->getCommentString() << " '";
986 PrintUnmangledNameSafely(GVar, O);
987 O << "'\n";
988
989 // If the initializer is a extern weak symbol, remember to emit the weak
990 // reference!
991 if (const GlobalValue *GV = dyn_cast<GlobalValue>(C))
992 if (GV->hasExternalWeakLinkage())
993 ExtWeakSymbols.insert(GV);
994
995 EmitGlobalConstant(C);
996 O << '\n';
997}
998
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000999bool PPCDarwinAsmPrinter::doFinalization(Module &M) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001000 const TargetData *TD = TM.getTargetData();
1001
1002 // Print out module-level global variables here.
1003 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
Anton Korobeynikov248e9c52008-08-08 18:23:25 +00001004 I != E; ++I)
1005 printModuleLevelGV(I);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001006
1007 bool isPPC64 = TD->getPointerSizeInBits() == 64;
1008
1009 // Output stubs for dynamically-linked functions
1010 if (TM.getRelocationModel() == Reloc::PIC_) {
Evan Chenga65854f2008-12-05 01:06:39 +00001011 for (StringSet<>::iterator i = FnStubs.begin(), e = FnStubs.end();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001012 i != e; ++i) {
Dale Johannesen3c788322008-01-11 00:54:37 +00001013 SwitchToTextSection("\t.section __TEXT,__picsymbolstub1,symbol_stubs,"
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001014 "pure_instructions,32");
1015 EmitAlignment(4);
Evan Chenga65854f2008-12-05 01:06:39 +00001016 const char *p = i->getKeyData();
1017 bool hasQuote = p[0]=='\"';
Dale Johannesena21b5202008-05-19 21:38:18 +00001018 printSuffixedName(p, "$stub");
1019 O << ":\n";
Evan Chenga65854f2008-12-05 01:06:39 +00001020 O << "\t.indirect_symbol " << p << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001021 O << "\tmflr r0\n";
Evan Chenga65854f2008-12-05 01:06:39 +00001022 O << "\tbcl 20,31,";
1023 if (hasQuote)
1024 O << "\"L0$" << &p[1];
1025 else
1026 O << "L0$" << p;
1027 O << '\n';
1028 if (hasQuote)
1029 O << "\"L0$" << &p[1];
1030 else
1031 O << "L0$" << p;
1032 O << ":\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001033 O << "\tmflr r11\n";
Dale Johannesena21b5202008-05-19 21:38:18 +00001034 O << "\taddis r11,r11,ha16(";
1035 printSuffixedName(p, "$lazy_ptr");
Evan Chenga65854f2008-12-05 01:06:39 +00001036 O << "-";
1037 if (hasQuote)
1038 O << "\"L0$" << &p[1];
1039 else
1040 O << "L0$" << p;
1041 O << ")\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001042 O << "\tmtlr r0\n";
1043 if (isPPC64)
Dale Johannesena21b5202008-05-19 21:38:18 +00001044 O << "\tldu r12,lo16(";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001045 else
Dale Johannesena21b5202008-05-19 21:38:18 +00001046 O << "\tlwzu r12,lo16(";
1047 printSuffixedName(p, "$lazy_ptr");
Evan Chenga65854f2008-12-05 01:06:39 +00001048 O << "-";
1049 if (hasQuote)
1050 O << "\"L0$" << &p[1];
1051 else
1052 O << "L0$" << p;
1053 O << ")(r11)\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001054 O << "\tmtctr r12\n";
1055 O << "\tbctr\n";
1056 SwitchToDataSection(".lazy_symbol_pointer");
Dale Johannesena21b5202008-05-19 21:38:18 +00001057 printSuffixedName(p, "$lazy_ptr");
1058 O << ":\n";
Evan Chenga65854f2008-12-05 01:06:39 +00001059 O << "\t.indirect_symbol " << p << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001060 if (isPPC64)
1061 O << "\t.quad dyld_stub_binding_helper\n";
1062 else
1063 O << "\t.long dyld_stub_binding_helper\n";
1064 }
1065 } else {
Evan Chenga65854f2008-12-05 01:06:39 +00001066 for (StringSet<>::iterator i = FnStubs.begin(), e = FnStubs.end();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001067 i != e; ++i) {
Dale Johannesen3c788322008-01-11 00:54:37 +00001068 SwitchToTextSection("\t.section __TEXT,__symbol_stub1,symbol_stubs,"
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001069 "pure_instructions,16");
1070 EmitAlignment(4);
Evan Chenga65854f2008-12-05 01:06:39 +00001071 const char *p = i->getKeyData();
Dale Johannesena21b5202008-05-19 21:38:18 +00001072 printSuffixedName(p, "$stub");
1073 O << ":\n";
Evan Chenga65854f2008-12-05 01:06:39 +00001074 O << "\t.indirect_symbol " << p << '\n';
Dale Johannesena21b5202008-05-19 21:38:18 +00001075 O << "\tlis r11,ha16(";
1076 printSuffixedName(p, "$lazy_ptr");
1077 O << ")\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001078 if (isPPC64)
Dale Johannesena21b5202008-05-19 21:38:18 +00001079 O << "\tldu r12,lo16(";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001080 else
Dale Johannesena21b5202008-05-19 21:38:18 +00001081 O << "\tlwzu r12,lo16(";
1082 printSuffixedName(p, "$lazy_ptr");
1083 O << ")(r11)\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001084 O << "\tmtctr r12\n";
1085 O << "\tbctr\n";
1086 SwitchToDataSection(".lazy_symbol_pointer");
Dale Johannesena21b5202008-05-19 21:38:18 +00001087 printSuffixedName(p, "$lazy_ptr");
1088 O << ":\n";
Evan Chenga65854f2008-12-05 01:06:39 +00001089 O << "\t.indirect_symbol " << p << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001090 if (isPPC64)
1091 O << "\t.quad dyld_stub_binding_helper\n";
1092 else
1093 O << "\t.long dyld_stub_binding_helper\n";
1094 }
1095 }
1096
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +00001097 O << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001098
Dale Johannesen85535762008-04-02 00:25:04 +00001099 if (TAI->doesSupportExceptionHandling() && MMI) {
Dale Johannesenfb3ac732007-11-20 23:24:42 +00001100 // Add the (possibly multiple) personalities to the set of global values.
Dale Johannesen85535762008-04-02 00:25:04 +00001101 // Only referenced functions get into the Personalities list.
Dale Johannesenfb3ac732007-11-20 23:24:42 +00001102 const std::vector<Function *>& Personalities = MMI->getPersonalities();
1103
1104 for (std::vector<Function *>::const_iterator I = Personalities.begin(),
1105 E = Personalities.end(); I != E; ++I)
1106 if (*I) GVStubs.insert("_" + (*I)->getName());
1107 }
1108
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001109 // Output stubs for external and common global variables.
Dan Gohman3f7d94b2007-10-03 19:26:29 +00001110 if (!GVStubs.empty()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001111 SwitchToDataSection(".non_lazy_symbol_pointer");
Evan Chenga65854f2008-12-05 01:06:39 +00001112 for (StringSet<>::iterator i = GVStubs.begin(), e = GVStubs.end();
1113 i != e; ++i) {
1114 std::string p = i->getKeyData();
Dale Johannesena21b5202008-05-19 21:38:18 +00001115 printSuffixedName(p, "$non_lazy_ptr");
1116 O << ":\n";
Evan Chenga65854f2008-12-05 01:06:39 +00001117 O << "\t.indirect_symbol " << p << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001118 if (isPPC64)
1119 O << "\t.quad\t0\n";
1120 else
1121 O << "\t.long\t0\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001122 }
1123 }
1124
Evan Chenga65854f2008-12-05 01:06:39 +00001125 if (!HiddenGVStubs.empty()) {
1126 SwitchToSection(TAI->getDataSection());
1127 for (StringSet<>::iterator i = HiddenGVStubs.begin(), e = HiddenGVStubs.end();
1128 i != e; ++i) {
1129 std::string p = i->getKeyData();
1130 EmitAlignment(isPPC64 ? 3 : 2);
1131 printSuffixedName(p, "$non_lazy_ptr");
1132 O << ":\n";
1133 if (isPPC64)
1134 O << "\t.quad\t";
1135 else
1136 O << "\t.long\t";
1137 O << p << '\n';
1138 }
1139 }
1140
1141
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001142 // Emit initial debug information.
Devang Patelaa1e8432009-01-08 23:40:34 +00001143 DW->EndModule();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001144
1145 // Funny Darwin hack: This flag tells the linker that no global symbols
1146 // contain code that falls through to other global symbols (e.g. the obvious
1147 // implementation of multiple entry points). If this doesn't occur, the
1148 // linker can safely perform dead code stripping. Since LLVM never generates
1149 // code that does this, it is always safe to set.
1150 O << "\t.subsections_via_symbols\n";
1151
Dan Gohman4a558a32007-07-25 19:33:14 +00001152 return AsmPrinter::doFinalization(M);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001153}
1154
1155
1156
1157/// createPPCAsmPrinterPass - Returns a pass that prints the PPC assembly code
1158/// for a MachineFunction to the given output stream, in a format that the
1159/// Darwin assembler can deal with.
1160///
Owen Anderson847b99b2008-08-21 00:14:44 +00001161FunctionPass *llvm::createPPCAsmPrinterPass(raw_ostream &o,
Bill Wendling4f405312009-02-24 08:30:20 +00001162 PPCTargetMachine &tm,
1163 bool fast) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001164 const PPCSubtarget *Subtarget = &tm.getSubtarget<PPCSubtarget>();
1165
1166 if (Subtarget->isDarwin()) {
Bill Wendling4f405312009-02-24 08:30:20 +00001167 return new PPCDarwinAsmPrinter(o, tm, tm.getTargetAsmInfo(), fast);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001168 } else {
Bill Wendling4f405312009-02-24 08:30:20 +00001169 return new PPCLinuxAsmPrinter(o, tm, tm.getTargetAsmInfo(), fast);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001170 }
1171}
Anton Korobeynikov01c0e9f2008-08-17 13:54:28 +00001172
1173namespace {
1174 static struct Register {
1175 Register() {
1176 PPCTargetMachine::registerAsmPrinter(createPPCAsmPrinterPass);
1177 }
1178 } Registrator;
1179}
Oscar Fuentes4f012352008-11-15 21:36:30 +00001180
1181extern "C" int PowerPCAsmPrinterForceLink;
1182int PowerPCAsmPrinterForceLink = 0;