blob: 6a1451d5dcfd1fd61f114d24bd8b48a3210ce034 [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"
39#include "llvm/Target/TargetAsmInfo.h"
40#include "llvm/Target/MRegisterInfo.h"
41#include "llvm/Target/TargetInstrInfo.h"
42#include "llvm/Target/TargetOptions.h"
43#include "llvm/ADT/Statistic.h"
44#include "llvm/ADT/StringExtras.h"
45#include <set>
46using namespace llvm;
47
48STATISTIC(EmittedInsts, "Number of machine instrs printed");
49
50namespace {
51 struct VISIBILITY_HIDDEN PPCAsmPrinter : public AsmPrinter {
52 std::set<std::string> FnStubs, GVStubs;
53 const PPCSubtarget &Subtarget;
54
55 PPCAsmPrinter(std::ostream &O, TargetMachine &TM, const TargetAsmInfo *T)
56 : AsmPrinter(O, TM, T), Subtarget(TM.getSubtarget<PPCSubtarget>()) {
57 }
58
59 virtual const char *getPassName() const {
60 return "PowerPC Assembly Printer";
61 }
62
63 PPCTargetMachine &getTM() {
64 return static_cast<PPCTargetMachine&>(TM);
65 }
66
67 unsigned enumRegToMachineReg(unsigned enumReg) {
68 switch (enumReg) {
69 default: assert(0 && "Unhandled register!"); break;
70 case PPC::CR0: return 0;
71 case PPC::CR1: return 1;
72 case PPC::CR2: return 2;
73 case PPC::CR3: return 3;
74 case PPC::CR4: return 4;
75 case PPC::CR5: return 5;
76 case PPC::CR6: return 6;
77 case PPC::CR7: return 7;
78 }
79 abort();
80 }
81
82 /// printInstruction - This method is automatically generated by tablegen
83 /// from the instruction set description. This method returns true if the
84 /// machine instruction was sufficiently described to print it, otherwise it
85 /// returns false.
86 bool printInstruction(const MachineInstr *MI);
87
88 void printMachineInstruction(const MachineInstr *MI);
89 void printOp(const MachineOperand &MO);
90
91 /// stripRegisterPrefix - This method strips the character prefix from a
92 /// register name so that only the number is left. Used by for linux asm.
93 const char *stripRegisterPrefix(const char *RegName) {
94 switch (RegName[0]) {
95 case 'r':
96 case 'f':
97 case 'v': return RegName + 1;
98 case 'c': if (RegName[1] == 'r') return RegName + 2;
99 }
100
101 return RegName;
102 }
103
104 /// printRegister - Print register according to target requirements.
105 ///
106 void printRegister(const MachineOperand &MO, bool R0AsZero) {
107 unsigned RegNo = MO.getReg();
108 assert(MRegisterInfo::isPhysicalRegister(RegNo) && "Not physreg??");
109
110 // If we should use 0 for R0.
111 if (R0AsZero && RegNo == PPC::R0) {
112 O << "0";
113 return;
114 }
115
116 const char *RegName = TM.getRegisterInfo()->get(RegNo).Name;
117 // Linux assembler (Others?) does not take register mnemonics.
118 // FIXME - What about special registers used in mfspr/mtspr?
119 if (!Subtarget.isDarwin()) RegName = stripRegisterPrefix(RegName);
120 O << RegName;
121 }
122
123 void printOperand(const MachineInstr *MI, unsigned OpNo) {
124 const MachineOperand &MO = MI->getOperand(OpNo);
125 if (MO.isRegister()) {
126 printRegister(MO, false);
127 } else if (MO.isImmediate()) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000128 O << MO.getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000129 } else {
130 printOp(MO);
131 }
132 }
133
134 bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
135 unsigned AsmVariant, const char *ExtraCode);
136 bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
137 unsigned AsmVariant, const char *ExtraCode);
138
139
140 void printS5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000141 char value = MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000142 value = (value << (32-5)) >> (32-5);
143 O << (int)value;
144 }
145 void printU5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000146 unsigned char value = MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000147 assert(value <= 31 && "Invalid u5imm argument!");
148 O << (unsigned int)value;
149 }
150 void printU6ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000151 unsigned char value = MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000152 assert(value <= 63 && "Invalid u6imm argument!");
153 O << (unsigned int)value;
154 }
155 void printS16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000156 O << (short)MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000157 }
158 void printU16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000159 O << (unsigned short)MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000160 }
161 void printS16X4ImmOperand(const MachineInstr *MI, unsigned OpNo) {
162 if (MI->getOperand(OpNo).isImmediate()) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000163 O << (short)(MI->getOperand(OpNo).getImm()*4);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000164 } else {
165 O << "lo16(";
166 printOp(MI->getOperand(OpNo));
167 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng477013c2007-10-14 05:57:21 +0000168 O << "-\"L" << getFunctionNumber() << "$pb\")";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000169 else
170 O << ')';
171 }
172 }
173 void printBranchOperand(const MachineInstr *MI, unsigned OpNo) {
174 // Branches can take an immediate operand. This is used by the branch
175 // selection pass to print $+8, an eight byte displacement from the PC.
176 if (MI->getOperand(OpNo).isImmediate()) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000177 O << "$+" << MI->getOperand(OpNo).getImm()*4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000178 } else {
179 printOp(MI->getOperand(OpNo));
180 }
181 }
182 void printCallOperand(const MachineInstr *MI, unsigned OpNo) {
183 const MachineOperand &MO = MI->getOperand(OpNo);
184 if (TM.getRelocationModel() != Reloc::Static) {
185 if (MO.getType() == MachineOperand::MO_GlobalAddress) {
186 GlobalValue *GV = MO.getGlobal();
187 if (((GV->isDeclaration() || GV->hasWeakLinkage() ||
188 GV->hasLinkOnceLinkage()))) {
189 // Dynamically-resolved functions need a stub for the function.
190 std::string Name = Mang->getValueName(GV);
191 FnStubs.insert(Name);
192 O << "L" << Name << "$stub";
193 if (GV->hasExternalWeakLinkage())
194 ExtWeakSymbols.insert(GV);
195 return;
196 }
197 }
198 if (MO.getType() == MachineOperand::MO_ExternalSymbol) {
199 std::string Name(TAI->getGlobalPrefix()); Name += MO.getSymbolName();
200 FnStubs.insert(Name);
201 O << "L" << Name << "$stub";
202 return;
203 }
204 }
205
206 printOp(MI->getOperand(OpNo));
207 }
208 void printAbsAddrOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000209 O << (int)MI->getOperand(OpNo).getImm()*4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000210 }
211 void printPICLabel(const MachineInstr *MI, unsigned OpNo) {
Evan Cheng477013c2007-10-14 05:57:21 +0000212 O << "\"L" << getFunctionNumber() << "$pb\"\n";
213 O << "\"L" << getFunctionNumber() << "$pb\":";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000214 }
215 void printSymbolHi(const MachineInstr *MI, unsigned OpNo) {
216 if (MI->getOperand(OpNo).isImmediate()) {
217 printS16ImmOperand(MI, OpNo);
218 } else {
219 if (Subtarget.isDarwin()) O << "ha16(";
220 printOp(MI->getOperand(OpNo));
221 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng477013c2007-10-14 05:57:21 +0000222 O << "-\"L" << getFunctionNumber() << "$pb\"";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000223 if (Subtarget.isDarwin())
224 O << ')';
225 else
226 O << "@ha";
227 }
228 }
229 void printSymbolLo(const MachineInstr *MI, unsigned OpNo) {
230 if (MI->getOperand(OpNo).isImmediate()) {
231 printS16ImmOperand(MI, OpNo);
232 } else {
233 if (Subtarget.isDarwin()) O << "lo16(";
234 printOp(MI->getOperand(OpNo));
235 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng477013c2007-10-14 05:57:21 +0000236 O << "-\"L" << getFunctionNumber() << "$pb\"";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000237 if (Subtarget.isDarwin())
238 O << ')';
239 else
240 O << "@l";
241 }
242 }
243 void printcrbitm(const MachineInstr *MI, unsigned OpNo) {
244 unsigned CCReg = MI->getOperand(OpNo).getReg();
245 unsigned RegNo = enumRegToMachineReg(CCReg);
246 O << (0x80 >> RegNo);
247 }
248 // The new addressing mode printers.
249 void printMemRegImm(const MachineInstr *MI, unsigned OpNo) {
250 printSymbolLo(MI, OpNo);
251 O << '(';
252 if (MI->getOperand(OpNo+1).isRegister() &&
253 MI->getOperand(OpNo+1).getReg() == PPC::R0)
254 O << "0";
255 else
256 printOperand(MI, OpNo+1);
257 O << ')';
258 }
259 void printMemRegImmShifted(const MachineInstr *MI, unsigned OpNo) {
260 if (MI->getOperand(OpNo).isImmediate())
261 printS16X4ImmOperand(MI, OpNo);
262 else
263 printSymbolLo(MI, OpNo);
264 O << '(';
265 if (MI->getOperand(OpNo+1).isRegister() &&
266 MI->getOperand(OpNo+1).getReg() == PPC::R0)
267 O << "0";
268 else
269 printOperand(MI, OpNo+1);
270 O << ')';
271 }
272
273 void printMemRegReg(const MachineInstr *MI, unsigned OpNo) {
274 // When used as the base register, r0 reads constant zero rather than
275 // the value contained in the register. For this reason, the darwin
276 // assembler requires that we print r0 as 0 (no r) when used as the base.
277 const MachineOperand &MO = MI->getOperand(OpNo);
278 printRegister(MO, true);
279 O << ", ";
280 printOperand(MI, OpNo+1);
281 }
282
283 void printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
284 const char *Modifier);
285
286 virtual bool runOnMachineFunction(MachineFunction &F) = 0;
287 virtual bool doFinalization(Module &M) = 0;
288
289 virtual void EmitExternalGlobal(const GlobalVariable *GV);
290 };
291
292 /// LinuxAsmPrinter - PowerPC assembly printer, customized for Linux
293 struct VISIBILITY_HIDDEN LinuxAsmPrinter : public PPCAsmPrinter {
294
295 DwarfWriter DW;
296
297 LinuxAsmPrinter(std::ostream &O, PPCTargetMachine &TM,
298 const TargetAsmInfo *T)
299 : PPCAsmPrinter(O, TM, T), DW(O, this, T) {
300 }
301
302 virtual const char *getPassName() const {
303 return "Linux PPC Assembly Printer";
304 }
305
306 bool runOnMachineFunction(MachineFunction &F);
307 bool doInitialization(Module &M);
308 bool doFinalization(Module &M);
309
310 void getAnalysisUsage(AnalysisUsage &AU) const {
311 AU.setPreservesAll();
312 AU.addRequired<MachineModuleInfo>();
313 PPCAsmPrinter::getAnalysisUsage(AU);
314 }
315
316 /// getSectionForFunction - Return the section that we should emit the
317 /// specified function body into.
318 virtual std::string getSectionForFunction(const Function &F) const;
319 };
320
321 /// DarwinAsmPrinter - PowerPC assembly printer, customized for Darwin/Mac OS
322 /// X
323 struct VISIBILITY_HIDDEN DarwinAsmPrinter : public PPCAsmPrinter {
324
325 DwarfWriter DW;
Dale Johannesenfb3ac732007-11-20 23:24:42 +0000326 MachineModuleInfo *MMI;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000327
328 DarwinAsmPrinter(std::ostream &O, PPCTargetMachine &TM,
329 const TargetAsmInfo *T)
Dale Johannesenfb3ac732007-11-20 23:24:42 +0000330 : PPCAsmPrinter(O, TM, T), DW(O, this, T), MMI(0) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000331 }
332
333 virtual const char *getPassName() const {
334 return "Darwin PPC Assembly Printer";
335 }
336
337 bool runOnMachineFunction(MachineFunction &F);
338 bool doInitialization(Module &M);
339 bool doFinalization(Module &M);
340
341 void getAnalysisUsage(AnalysisUsage &AU) const {
342 AU.setPreservesAll();
343 AU.addRequired<MachineModuleInfo>();
344 PPCAsmPrinter::getAnalysisUsage(AU);
345 }
346
347 /// getSectionForFunction - Return the section that we should emit the
348 /// specified function body into.
349 virtual std::string getSectionForFunction(const Function &F) const;
350 };
351} // end of anonymous namespace
352
353// Include the auto-generated portion of the assembly writer
354#include "PPCGenAsmWriter.inc"
355
356void PPCAsmPrinter::printOp(const MachineOperand &MO) {
357 switch (MO.getType()) {
358 case MachineOperand::MO_Immediate:
359 cerr << "printOp() does not handle immediate values\n";
360 abort();
361 return;
362
363 case MachineOperand::MO_MachineBasicBlock:
Chris Lattner6017d482007-12-30 23:10:15 +0000364 printBasicBlockLabel(MO.getMBB());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000365 return;
366 case MachineOperand::MO_JumpTableIndex:
Evan Cheng477013c2007-10-14 05:57:21 +0000367 O << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
Chris Lattner6017d482007-12-30 23:10:15 +0000368 << '_' << MO.getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000369 // FIXME: PIC relocation model
370 return;
371 case MachineOperand::MO_ConstantPoolIndex:
Evan Cheng477013c2007-10-14 05:57:21 +0000372 O << TAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber()
Chris Lattner6017d482007-12-30 23:10:15 +0000373 << '_' << MO.getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000374 return;
375 case MachineOperand::MO_ExternalSymbol:
376 // Computing the address of an external symbol, not calling it.
377 if (TM.getRelocationModel() != Reloc::Static) {
378 std::string Name(TAI->getGlobalPrefix()); Name += MO.getSymbolName();
379 GVStubs.insert(Name);
380 O << "L" << Name << "$non_lazy_ptr";
381 return;
382 }
383 O << TAI->getGlobalPrefix() << MO.getSymbolName();
384 return;
385 case MachineOperand::MO_GlobalAddress: {
386 // Computing the address of a global symbol, not calling it.
387 GlobalValue *GV = MO.getGlobal();
388 std::string Name = Mang->getValueName(GV);
389
390 // External or weakly linked global variables need non-lazily-resolved stubs
391 if (TM.getRelocationModel() != Reloc::Static) {
392 if (((GV->isDeclaration() || GV->hasWeakLinkage() ||
393 GV->hasLinkOnceLinkage()))) {
394 GVStubs.insert(Name);
395 O << "L" << Name << "$non_lazy_ptr";
396 return;
397 }
398 }
399 O << Name;
400
401 if (MO.getOffset() > 0)
402 O << "+" << MO.getOffset();
403 else if (MO.getOffset() < 0)
404 O << MO.getOffset();
405
406 if (GV->hasExternalWeakLinkage())
407 ExtWeakSymbols.insert(GV);
408 return;
409 }
410
411 default:
412 O << "<unknown operand type: " << MO.getType() << ">";
413 return;
414 }
415}
416
417/// EmitExternalGlobal - In this case we need to use the indirect symbol.
418///
419void PPCAsmPrinter::EmitExternalGlobal(const GlobalVariable *GV) {
420 std::string Name = getGlobalLinkName(GV);
421 if (TM.getRelocationModel() != Reloc::Static) {
422 GVStubs.insert(Name);
423 O << "L" << Name << "$non_lazy_ptr";
424 return;
425 }
426 O << Name;
427}
428
429/// PrintAsmOperand - Print out an operand for an inline asm expression.
430///
431bool PPCAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
432 unsigned AsmVariant,
433 const char *ExtraCode) {
434 // Does this asm operand have a single letter operand modifier?
435 if (ExtraCode && ExtraCode[0]) {
436 if (ExtraCode[1] != 0) return true; // Unknown modifier.
437
438 switch (ExtraCode[0]) {
439 default: return true; // Unknown modifier.
440 case 'c': // Don't print "$" before a global var name or constant.
441 // PPC never has a prefix.
442 printOperand(MI, OpNo);
443 return false;
444 case 'L': // Write second word of DImode reference.
445 // Verify that this operand has two consecutive registers.
446 if (!MI->getOperand(OpNo).isRegister() ||
447 OpNo+1 == MI->getNumOperands() ||
448 !MI->getOperand(OpNo+1).isRegister())
449 return true;
450 ++OpNo; // Return the high-part.
451 break;
452 case 'I':
453 // Write 'i' if an integer constant, otherwise nothing. Used to print
454 // addi vs add, etc.
Dan Gohman38a9a9f2007-09-14 20:33:02 +0000455 if (MI->getOperand(OpNo).isImmediate())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000456 O << "i";
457 return false;
458 }
459 }
460
461 printOperand(MI, OpNo);
462 return false;
463}
464
465bool PPCAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
466 unsigned AsmVariant,
467 const char *ExtraCode) {
468 if (ExtraCode && ExtraCode[0])
469 return true; // Unknown modifier.
470 if (MI->getOperand(OpNo).isRegister())
471 printMemRegReg(MI, OpNo);
472 else
473 printMemRegImm(MI, OpNo);
474 return false;
475}
476
477void PPCAsmPrinter::printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
478 const char *Modifier) {
479 assert(Modifier && "Must specify 'cc' or 'reg' as predicate op modifier!");
480 unsigned Code = MI->getOperand(OpNo).getImm();
481 if (!strcmp(Modifier, "cc")) {
482 switch ((PPC::Predicate)Code) {
483 case PPC::PRED_ALWAYS: return; // Don't print anything for always.
484 case PPC::PRED_LT: O << "lt"; return;
485 case PPC::PRED_LE: O << "le"; return;
486 case PPC::PRED_EQ: O << "eq"; return;
487 case PPC::PRED_GE: O << "ge"; return;
488 case PPC::PRED_GT: O << "gt"; return;
489 case PPC::PRED_NE: O << "ne"; return;
490 case PPC::PRED_UN: O << "un"; return;
491 case PPC::PRED_NU: O << "nu"; return;
492 }
493
494 } else {
495 assert(!strcmp(Modifier, "reg") &&
496 "Need to specify 'cc' or 'reg' as predicate op modifier!");
497 // Don't print the register for 'always'.
498 if (Code == PPC::PRED_ALWAYS) return;
499 printOperand(MI, OpNo+1);
500 }
501}
502
503
504/// printMachineInstruction -- Print out a single PowerPC MI in Darwin syntax to
505/// the current output stream.
506///
507void PPCAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
508 ++EmittedInsts;
509
510 // Check for slwi/srwi mnemonics.
511 if (MI->getOpcode() == PPC::RLWINM) {
512 bool FoundMnemonic = false;
Chris Lattnera96056a2007-12-30 20:49:49 +0000513 unsigned char SH = MI->getOperand(2).getImm();
514 unsigned char MB = MI->getOperand(3).getImm();
515 unsigned char ME = MI->getOperand(4).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000516 if (SH <= 31 && MB == 0 && ME == (31-SH)) {
517 O << "slwi "; FoundMnemonic = true;
518 }
519 if (SH <= 31 && MB == (32-SH) && ME == 31) {
520 O << "srwi "; FoundMnemonic = true;
521 SH = 32-SH;
522 }
523 if (FoundMnemonic) {
524 printOperand(MI, 0);
525 O << ", ";
526 printOperand(MI, 1);
527 O << ", " << (unsigned int)SH << "\n";
528 return;
529 }
530 } else if (MI->getOpcode() == PPC::OR || MI->getOpcode() == PPC::OR8) {
531 if (MI->getOperand(1).getReg() == MI->getOperand(2).getReg()) {
532 O << "mr ";
533 printOperand(MI, 0);
534 O << ", ";
535 printOperand(MI, 1);
536 O << "\n";
537 return;
538 }
539 } else if (MI->getOpcode() == PPC::RLDICR) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000540 unsigned char SH = MI->getOperand(2).getImm();
541 unsigned char ME = MI->getOperand(3).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000542 // rldicr RA, RS, SH, 63-SH == sldi RA, RS, SH
543 if (63-SH == ME) {
544 O << "sldi ";
545 printOperand(MI, 0);
546 O << ", ";
547 printOperand(MI, 1);
548 O << ", " << (unsigned int)SH << "\n";
549 return;
550 }
551 }
552
553 if (printInstruction(MI))
554 return; // Printer was automatically generated
555
556 assert(0 && "Unhandled instruction in asm writer!");
557 abort();
558 return;
559}
560
561/// runOnMachineFunction - This uses the printMachineInstruction()
562/// method to print assembly for each instruction.
563///
564bool LinuxAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
565 DW.SetModuleInfo(&getAnalysis<MachineModuleInfo>());
566
567 SetupMachineFunction(MF);
568 O << "\n\n";
569
570 // Print out constants referenced by the function
571 EmitConstantPool(MF.getConstantPool());
572
573 // Print out labels for the function.
574 const Function *F = MF.getFunction();
575 SwitchToTextSection(getSectionForFunction(*F).c_str(), F);
576
577 switch (F->getLinkage()) {
578 default: assert(0 && "Unknown linkage type!");
579 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;
585 case Function::WeakLinkage:
586 case Function::LinkOnceLinkage:
587 O << "\t.global\t" << CurrentFnName << '\n';
588 O << "\t.weak\t" << CurrentFnName << '\n';
589 break;
590 }
591
592 if (F->hasHiddenVisibility())
593 if (const char *Directive = TAI->getHiddenDirective())
594 O << Directive << CurrentFnName << "\n";
595
596 EmitAlignment(2, F);
597 O << CurrentFnName << ":\n";
598
599 // Emit pre-function debug information.
600 DW.BeginFunction(&MF);
601
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()) {
607 printBasicBlockLabel(I, true);
608 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.
613 O << "\t";
614 printMachineInstruction(II);
615 }
616 }
617
618 O << "\t.size\t" << CurrentFnName << ",.-" << CurrentFnName << "\n";
619
620 // Print out jump tables referenced by the function.
621 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
622
623 // Emit post-function debug information.
624 DW.EndFunction();
625
626 // We didn't modify anything.
627 return false;
628}
629
630bool LinuxAsmPrinter::doInitialization(Module &M) {
Dan Gohman4a558a32007-07-25 19:33:14 +0000631 bool Result = AsmPrinter::doInitialization(M);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000632
633 // GNU as handles section names wrapped in quotes
634 Mang->setUseQuotes(true);
635
636 SwitchToTextSection(TAI->getTextSection());
637
638 // Emit initial debug information.
639 DW.BeginModule(&M);
Dan Gohman4a558a32007-07-25 19:33:14 +0000640 return Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000641}
642
643bool LinuxAsmPrinter::doFinalization(Module &M) {
644 const TargetData *TD = TM.getTargetData();
645
646 // Print out module-level global variables here.
647 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
648 I != E; ++I) {
649 if (!I->hasInitializer()) continue; // External global require no code
650
651 // Check to see if this is a special global used by LLVM, if so, emit it.
652 if (EmitSpecialLLVMGlobal(I))
653 continue;
654
655 std::string name = Mang->getValueName(I);
656
657 if (I->hasHiddenVisibility())
658 if (const char *Directive = TAI->getHiddenDirective())
659 O << Directive << name << "\n";
660
661 Constant *C = I->getInitializer();
Duncan Sands8157ef42007-11-05 00:04:43 +0000662 unsigned Size = TD->getABITypeSize(C->getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000663 unsigned Align = TD->getPreferredAlignmentLog(I);
664
665 if (C->isNullValue() && /* FIXME: Verify correct */
Evan Cheng65c0fbc2007-09-21 00:41:19 +0000666 !I->hasSection() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000667 (I->hasInternalLinkage() || I->hasWeakLinkage() ||
Evan Cheng65c0fbc2007-09-21 00:41:19 +0000668 I->hasLinkOnceLinkage() || I->hasExternalLinkage())) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000669 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
670 if (I->hasExternalLinkage()) {
671 O << "\t.global " << name << '\n';
672 O << "\t.type " << name << ", @object\n";
Nick Lewyckyc6583752007-11-04 17:32:10 +0000673 if (TAI->getBSSSection())
674 SwitchToDataSection(TAI->getBSSSection(), I);
Nick Lewycky3246a9c2007-07-25 03:48:45 +0000675 O << name << ":\n";
676 O << "\t.zero " << Size << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000677 } else if (I->hasInternalLinkage()) {
678 SwitchToDataSection("\t.data", I);
679 O << TAI->getLCOMMDirective() << name << "," << Size;
680 } else {
681 SwitchToDataSection("\t.data", I);
682 O << ".comm " << name << "," << Size;
683 }
684 O << "\t\t" << TAI->getCommentString() << " '" << I->getName() << "'\n";
685 } else {
686 switch (I->getLinkage()) {
687 case GlobalValue::LinkOnceLinkage:
688 case GlobalValue::WeakLinkage:
689 O << "\t.global " << name << '\n'
690 << "\t.type " << name << ", @object\n"
691 << "\t.weak " << name << '\n';
692 SwitchToDataSection("\t.data", I);
693 break;
694 case GlobalValue::AppendingLinkage:
695 // FIXME: appending linkage variables should go into a section of
696 // their name or something. For now, just emit them as external.
697 case GlobalValue::ExternalLinkage:
698 // If external or appending, declare as a global symbol
699 O << "\t.global " << name << "\n"
700 << "\t.type " << name << ", @object\n";
701 // FALL THROUGH
702 case GlobalValue::InternalLinkage:
703 if (I->isConstant()) {
704 const ConstantArray *CVA = dyn_cast<ConstantArray>(C);
705 if (TAI->getCStringSection() && CVA && CVA->isCString()) {
706 SwitchToDataSection(TAI->getCStringSection(), I);
707 break;
708 }
709 }
710
711 // FIXME: special handling for ".ctors" & ".dtors" sections
712 if (I->hasSection() &&
713 (I->getSection() == ".ctors" ||
714 I->getSection() == ".dtors")) {
715 std::string SectionName = ".section " + I->getSection()
716 + ",\"aw\",@progbits";
717 SwitchToDataSection(SectionName.c_str());
718 } else {
719 if (I->isConstant() && TAI->getReadOnlySection())
720 SwitchToDataSection(TAI->getReadOnlySection(), I);
721 else
722 SwitchToDataSection(TAI->getDataSection(), I);
723 }
724 break;
725 default:
726 cerr << "Unknown linkage type!";
727 abort();
728 }
729
730 EmitAlignment(Align, I);
731 O << name << ":\t\t\t\t" << TAI->getCommentString() << " '"
732 << I->getName() << "'\n";
733
734 // If the initializer is a extern weak symbol, remember to emit the weak
735 // reference!
736 if (const GlobalValue *GV = dyn_cast<GlobalValue>(C))
737 if (GV->hasExternalWeakLinkage())
738 ExtWeakSymbols.insert(GV);
739
740 EmitGlobalConstant(C);
741 O << '\n';
742 }
743 }
744
745 // TODO
746
747 // Emit initial debug information.
748 DW.EndModule();
749
Dan Gohman4a558a32007-07-25 19:33:14 +0000750 return AsmPrinter::doFinalization(M);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000751}
752
753std::string LinuxAsmPrinter::getSectionForFunction(const Function &F) const {
754 switch (F.getLinkage()) {
755 default: assert(0 && "Unknown linkage type!");
756 case Function::ExternalLinkage:
757 case Function::InternalLinkage: return TAI->getTextSection();
758 case Function::WeakLinkage:
759 case Function::LinkOnceLinkage:
760 return ".text";
761 }
762}
763
764std::string DarwinAsmPrinter::getSectionForFunction(const Function &F) const {
765 switch (F.getLinkage()) {
766 default: assert(0 && "Unknown linkage type!");
767 case Function::ExternalLinkage:
768 case Function::InternalLinkage: return TAI->getTextSection();
769 case Function::WeakLinkage:
770 case Function::LinkOnceLinkage:
Dale Johannesen3c788322008-01-11 00:54:37 +0000771 return "\t.section __TEXT,__textcoal_nt,coalesced,pure_instructions";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000772 }
773}
774
775/// runOnMachineFunction - This uses the printMachineInstruction()
776/// method to print assembly for each instruction.
777///
778bool DarwinAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Dale Johannesenfb3ac732007-11-20 23:24:42 +0000779 // We need this for Personality functions.
780 MMI = &getAnalysis<MachineModuleInfo>();
781 DW.SetModuleInfo(MMI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000782
783 SetupMachineFunction(MF);
784 O << "\n\n";
Dale Johannesenfb3ac732007-11-20 23:24:42 +0000785
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000786 // Print out constants referenced by the function
787 EmitConstantPool(MF.getConstantPool());
788
789 // Print out labels for the function.
790 const Function *F = MF.getFunction();
791 SwitchToTextSection(getSectionForFunction(*F).c_str(), F);
792
793 switch (F->getLinkage()) {
794 default: assert(0 && "Unknown linkage type!");
795 case Function::InternalLinkage: // Symbols default to internal.
796 break;
797 case Function::ExternalLinkage:
798 O << "\t.globl\t" << CurrentFnName << "\n";
799 break;
800 case Function::WeakLinkage:
801 case Function::LinkOnceLinkage:
802 O << "\t.globl\t" << CurrentFnName << "\n";
803 O << "\t.weak_definition\t" << CurrentFnName << "\n";
804 break;
805 }
806
807 if (F->hasHiddenVisibility())
808 if (const char *Directive = TAI->getHiddenDirective())
809 O << Directive << CurrentFnName << "\n";
810
811 EmitAlignment(4, F);
812 O << CurrentFnName << ":\n";
813
814 // Emit pre-function debug information.
815 DW.BeginFunction(&MF);
816
Bill Wendling36ccaea2008-01-26 06:51:24 +0000817 // If the function is empty, then we need to emit *something*. Otherwise, the
818 // function's label might be associated with something that it wasn't meant to
819 // be associated with. We emit a noop in this situation.
820 MachineFunction::iterator I = MF.begin();
821
822 if (++I == MF.end()) {
823 MachineBasicBlock &MBB = MF.front();
824
825 if (MBB.begin() == MBB.end())
826 BuildMI(MBB, MBB.end(), TM.getInstrInfo()->get(PPC::NOP));
827 }
828
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000829 // Print out code for the function.
830 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
831 I != E; ++I) {
832 // Print a label for the basic block.
833 if (I != MF.begin()) {
834 printBasicBlockLabel(I, true);
835 O << '\n';
836 }
Bill Wendling36ccaea2008-01-26 06:51:24 +0000837 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
838 II != IE; ++II) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000839 // Print the assembly for the instruction.
840 O << "\t";
841 printMachineInstruction(II);
842 }
843 }
844
845 // Print out jump tables referenced by the function.
846 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
847
848 // Emit post-function debug information.
849 DW.EndFunction();
850
851 // We didn't modify anything.
852 return false;
853}
854
855
856bool DarwinAsmPrinter::doInitialization(Module &M) {
857 static const char *CPUDirectives[] = {
858 "ppc",
859 "ppc601",
860 "ppc602",
861 "ppc603",
862 "ppc7400",
863 "ppc750",
864 "ppc970",
865 "ppc64"
866 };
867
868 unsigned Directive = Subtarget.getDarwinDirective();
869 if (Subtarget.isGigaProcessor() && Directive < PPC::DIR_970)
870 Directive = PPC::DIR_970;
871 if (Subtarget.hasAltivec() && Directive < PPC::DIR_7400)
872 Directive = PPC::DIR_7400;
873 if (Subtarget.isPPC64() && Directive < PPC::DIR_970)
874 Directive = PPC::DIR_64;
875 assert(Directive <= PPC::DIR_64 && "Directive out of range.");
876 O << "\t.machine " << CPUDirectives[Directive] << "\n";
877
Dan Gohman4a558a32007-07-25 19:33:14 +0000878 bool Result = AsmPrinter::doInitialization(M);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000879
880 // Darwin wants symbols to be quoted if they have complex names.
881 Mang->setUseQuotes(true);
882
883 // Prime text sections so they are adjacent. This reduces the likelihood a
884 // large data or debug section causes a branch to exceed 16M limit.
Dale Johannesen3c788322008-01-11 00:54:37 +0000885 SwitchToTextSection("\t.section __TEXT,__textcoal_nt,coalesced,"
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000886 "pure_instructions");
887 if (TM.getRelocationModel() == Reloc::PIC_) {
Dale Johannesen3c788322008-01-11 00:54:37 +0000888 SwitchToTextSection("\t.section __TEXT,__picsymbolstub1,symbol_stubs,"
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000889 "pure_instructions,32");
890 } else if (TM.getRelocationModel() == Reloc::DynamicNoPIC) {
Dale Johannesen3c788322008-01-11 00:54:37 +0000891 SwitchToTextSection("\t.section __TEXT,__symbol_stub1,symbol_stubs,"
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000892 "pure_instructions,16");
893 }
894 SwitchToTextSection(TAI->getTextSection());
895
896 // Emit initial debug information.
897 DW.BeginModule(&M);
Dan Gohman4a558a32007-07-25 19:33:14 +0000898 return Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000899}
900
901bool DarwinAsmPrinter::doFinalization(Module &M) {
902 const TargetData *TD = TM.getTargetData();
903
904 // Print out module-level global variables here.
905 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
906 I != E; ++I) {
907 if (!I->hasInitializer()) continue; // External global require no code
908
909 // Check to see if this is a special global used by LLVM, if so, emit it.
910 if (EmitSpecialLLVMGlobal(I)) {
911 if (TM.getRelocationModel() == Reloc::Static) {
912 if (I->getName() == "llvm.global_ctors")
913 O << ".reference .constructors_used\n";
914 else if (I->getName() == "llvm.global_dtors")
915 O << ".reference .destructors_used\n";
916 }
917 continue;
918 }
919
920 std::string name = Mang->getValueName(I);
921
922 if (I->hasHiddenVisibility())
923 if (const char *Directive = TAI->getHiddenDirective())
924 O << Directive << name << "\n";
925
926 Constant *C = I->getInitializer();
927 const Type *Type = C->getType();
Duncan Sands8157ef42007-11-05 00:04:43 +0000928 unsigned Size = TD->getABITypeSize(Type);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000929 unsigned Align = TD->getPreferredAlignmentLog(I);
930
931 if (C->isNullValue() && /* FIXME: Verify correct */
Devang Patel7eca6332007-09-20 23:07:37 +0000932 !I->hasSection() &&
Dale Johannesen50085da2008-01-17 23:04:07 +0000933 (I->hasInternalLinkage() || I->hasWeakLinkage() ||
934 I->hasLinkOnceLinkage() || I->hasExternalLinkage())) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000935 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
936 if (I->hasExternalLinkage()) {
937 O << "\t.globl " << name << '\n';
938 O << "\t.zerofill __DATA, __common, " << name << ", "
939 << Size << ", " << Align;
940 } else if (I->hasInternalLinkage()) {
941 SwitchToDataSection("\t.data", I);
942 O << TAI->getLCOMMDirective() << name << "," << Size << "," << Align;
943 } else {
944 SwitchToDataSection("\t.data", I);
945 O << ".comm " << name << "," << Size;
Chris Lattner9b7677d2008-01-02 19:35:16 +0000946 // Darwin 9 and above support aligned common data.
947 if (Subtarget.isDarwin9())
948 O << "," << Align;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000949 }
950 O << "\t\t" << TAI->getCommentString() << " '" << I->getName() << "'\n";
951 } else {
952 switch (I->getLinkage()) {
953 case GlobalValue::LinkOnceLinkage:
954 case GlobalValue::WeakLinkage:
955 O << "\t.globl " << name << '\n'
956 << "\t.weak_definition " << name << '\n';
Dale Johannesen3c788322008-01-11 00:54:37 +0000957 SwitchToDataSection("\t.section __DATA,__datacoal_nt,coalesced", I);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000958 break;
959 case GlobalValue::AppendingLinkage:
960 // FIXME: appending linkage variables should go into a section of
961 // their name or something. For now, just emit them as external.
962 case GlobalValue::ExternalLinkage:
963 // If external or appending, declare as a global symbol
964 O << "\t.globl " << name << "\n";
965 // FALL THROUGH
966 case GlobalValue::InternalLinkage:
967 if (I->isConstant()) {
968 const ConstantArray *CVA = dyn_cast<ConstantArray>(C);
969 if (TAI->getCStringSection() && CVA && CVA->isCString()) {
970 SwitchToDataSection(TAI->getCStringSection(), I);
971 break;
972 }
973 }
Dale Johannesenae4f62f2008-01-23 00:58:14 +0000974 if (I->hasSection()) {
975 // Honor all section names on Darwin; ObjC uses this
976 std::string SectionName = ".section " + I->getSection();
977 SwitchToDataSection(SectionName.c_str());
978 } else if (!I->isConstant())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000979 SwitchToDataSection(TAI->getDataSection(), I);
980 else {
981 // Read-only data.
982 bool HasReloc = C->ContainsRelocations();
983 if (HasReloc &&
984 TM.getRelocationModel() != Reloc::Static)
985 SwitchToDataSection("\t.const_data\n");
986 else if (!HasReloc && Size == 4 &&
987 TAI->getFourByteConstantSection())
988 SwitchToDataSection(TAI->getFourByteConstantSection(), I);
989 else if (!HasReloc && Size == 8 &&
990 TAI->getEightByteConstantSection())
991 SwitchToDataSection(TAI->getEightByteConstantSection(), I);
992 else if (!HasReloc && Size == 16 &&
993 TAI->getSixteenByteConstantSection())
994 SwitchToDataSection(TAI->getSixteenByteConstantSection(), I);
995 else if (TAI->getReadOnlySection())
996 SwitchToDataSection(TAI->getReadOnlySection(), I);
997 else
998 SwitchToDataSection(TAI->getDataSection(), I);
999 }
1000 break;
1001 default:
1002 cerr << "Unknown linkage type!";
1003 abort();
1004 }
1005
1006 EmitAlignment(Align, I);
1007 O << name << ":\t\t\t\t" << TAI->getCommentString() << " '"
1008 << I->getName() << "'\n";
1009
1010 // If the initializer is a extern weak symbol, remember to emit the weak
1011 // reference!
1012 if (const GlobalValue *GV = dyn_cast<GlobalValue>(C))
1013 if (GV->hasExternalWeakLinkage())
1014 ExtWeakSymbols.insert(GV);
1015
1016 EmitGlobalConstant(C);
1017 O << '\n';
1018 }
1019 }
1020
1021 bool isPPC64 = TD->getPointerSizeInBits() == 64;
1022
1023 // Output stubs for dynamically-linked functions
1024 if (TM.getRelocationModel() == Reloc::PIC_) {
1025 for (std::set<std::string>::iterator i = FnStubs.begin(), e = FnStubs.end();
1026 i != e; ++i) {
Dale Johannesen3c788322008-01-11 00:54:37 +00001027 SwitchToTextSection("\t.section __TEXT,__picsymbolstub1,symbol_stubs,"
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001028 "pure_instructions,32");
1029 EmitAlignment(4);
1030 O << "L" << *i << "$stub:\n";
1031 O << "\t.indirect_symbol " << *i << "\n";
1032 O << "\tmflr r0\n";
1033 O << "\tbcl 20,31,L0$" << *i << "\n";
1034 O << "L0$" << *i << ":\n";
1035 O << "\tmflr r11\n";
1036 O << "\taddis r11,r11,ha16(L" << *i << "$lazy_ptr-L0$" << *i << ")\n";
1037 O << "\tmtlr r0\n";
1038 if (isPPC64)
1039 O << "\tldu r12,lo16(L" << *i << "$lazy_ptr-L0$" << *i << ")(r11)\n";
1040 else
1041 O << "\tlwzu r12,lo16(L" << *i << "$lazy_ptr-L0$" << *i << ")(r11)\n";
1042 O << "\tmtctr r12\n";
1043 O << "\tbctr\n";
1044 SwitchToDataSection(".lazy_symbol_pointer");
1045 O << "L" << *i << "$lazy_ptr:\n";
1046 O << "\t.indirect_symbol " << *i << "\n";
1047 if (isPPC64)
1048 O << "\t.quad dyld_stub_binding_helper\n";
1049 else
1050 O << "\t.long dyld_stub_binding_helper\n";
1051 }
1052 } else {
1053 for (std::set<std::string>::iterator i = FnStubs.begin(), e = FnStubs.end();
1054 i != e; ++i) {
Dale Johannesen3c788322008-01-11 00:54:37 +00001055 SwitchToTextSection("\t.section __TEXT,__symbol_stub1,symbol_stubs,"
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001056 "pure_instructions,16");
1057 EmitAlignment(4);
1058 O << "L" << *i << "$stub:\n";
1059 O << "\t.indirect_symbol " << *i << "\n";
1060 O << "\tlis r11,ha16(L" << *i << "$lazy_ptr)\n";
1061 if (isPPC64)
1062 O << "\tldu r12,lo16(L" << *i << "$lazy_ptr)(r11)\n";
1063 else
1064 O << "\tlwzu r12,lo16(L" << *i << "$lazy_ptr)(r11)\n";
1065 O << "\tmtctr r12\n";
1066 O << "\tbctr\n";
1067 SwitchToDataSection(".lazy_symbol_pointer");
1068 O << "L" << *i << "$lazy_ptr:\n";
1069 O << "\t.indirect_symbol " << *i << "\n";
1070 if (isPPC64)
1071 O << "\t.quad dyld_stub_binding_helper\n";
1072 else
1073 O << "\t.long dyld_stub_binding_helper\n";
1074 }
1075 }
1076
1077 O << "\n";
1078
Dale Johannesenfb3ac732007-11-20 23:24:42 +00001079 if (ExceptionHandling && TAI->doesSupportExceptionHandling() && MMI) {
1080 // Add the (possibly multiple) personalities to the set of global values.
1081 const std::vector<Function *>& Personalities = MMI->getPersonalities();
1082
1083 for (std::vector<Function *>::const_iterator I = Personalities.begin(),
1084 E = Personalities.end(); I != E; ++I)
1085 if (*I) GVStubs.insert("_" + (*I)->getName());
1086 }
1087
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001088 // Output stubs for external and common global variables.
Dan Gohman3f7d94b2007-10-03 19:26:29 +00001089 if (!GVStubs.empty()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001090 SwitchToDataSection(".non_lazy_symbol_pointer");
1091 for (std::set<std::string>::iterator I = GVStubs.begin(),
1092 E = GVStubs.end(); I != E; ++I) {
1093 O << "L" << *I << "$non_lazy_ptr:\n";
1094 O << "\t.indirect_symbol " << *I << "\n";
1095 if (isPPC64)
1096 O << "\t.quad\t0\n";
1097 else
1098 O << "\t.long\t0\n";
1099
1100 }
1101 }
1102
1103 // Emit initial debug information.
1104 DW.EndModule();
1105
1106 // Funny Darwin hack: This flag tells the linker that no global symbols
1107 // contain code that falls through to other global symbols (e.g. the obvious
1108 // implementation of multiple entry points). If this doesn't occur, the
1109 // linker can safely perform dead code stripping. Since LLVM never generates
1110 // code that does this, it is always safe to set.
1111 O << "\t.subsections_via_symbols\n";
1112
Dan Gohman4a558a32007-07-25 19:33:14 +00001113 return AsmPrinter::doFinalization(M);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001114}
1115
1116
1117
1118/// createPPCAsmPrinterPass - Returns a pass that prints the PPC assembly code
1119/// for a MachineFunction to the given output stream, in a format that the
1120/// Darwin assembler can deal with.
1121///
1122FunctionPass *llvm::createPPCAsmPrinterPass(std::ostream &o,
1123 PPCTargetMachine &tm) {
1124 const PPCSubtarget *Subtarget = &tm.getSubtarget<PPCSubtarget>();
1125
1126 if (Subtarget->isDarwin()) {
1127 return new DarwinAsmPrinter(o, tm, tm.getTargetAsmInfo());
1128 } else {
1129 return new LinuxAsmPrinter(o, tm, tm.getTargetAsmInfo());
1130 }
1131}
1132