Alter 79292 to produce output that actually assembles.
[oota-llvm.git] / lib / Target / PowerPC / AsmPrinter / PPCAsmPrinter.cpp
1 //===-- PPCAsmPrinter.cpp - Print machine instrs to PowerPC assembly --------=//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
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"
33 #include "llvm/CodeGen/MachineInstrBuilder.h"
34 #include "llvm/MC/MCSectionMachO.h"
35 #include "llvm/MC/MCStreamer.h"
36 #include "llvm/MC/MCAsmInfo.h"
37 #include "llvm/Target/TargetLoweringObjectFile.h"
38 #include "llvm/Target/TargetRegisterInfo.h"
39 #include "llvm/Target/TargetInstrInfo.h"
40 #include "llvm/Target/TargetOptions.h"
41 #include "llvm/Target/TargetRegistry.h"
42 #include "llvm/Support/Mangler.h"
43 #include "llvm/Support/MathExtras.h"
44 #include "llvm/Support/CommandLine.h"
45 #include "llvm/Support/Debug.h"
46 #include "llvm/Support/ErrorHandling.h"
47 #include "llvm/Support/Compiler.h"
48 #include "llvm/Support/FormattedStream.h"
49 #include "llvm/ADT/Statistic.h"
50 #include "llvm/ADT/StringExtras.h"
51 #include "llvm/ADT/StringSet.h"
52 using namespace llvm;
53
54 STATISTIC(EmittedInsts, "Number of machine instrs printed");
55
56 namespace {
57   class VISIBILITY_HIDDEN PPCAsmPrinter : public AsmPrinter {
58   protected:
59     struct FnStubInfo {
60       std::string Stub, LazyPtr, AnonSymbol;
61       
62       FnStubInfo() {}
63       
64       void Init(const GlobalValue *GV, Mangler *Mang) {
65         // Already initialized.
66         if (!Stub.empty()) return;
67         Stub = Mang->getMangledName(GV, "$stub", true);
68         LazyPtr = Mang->getMangledName(GV, "$lazy_ptr", true);
69         AnonSymbol = Mang->getMangledName(GV, "$stub$tmp", true);
70       }
71
72       void Init(const std::string &GV, Mangler *Mang) {
73         // Already initialized.
74         if (!Stub.empty()) return;
75         Stub = Mang->makeNameProper(GV + "$stub",
76                                     Mangler::Private);
77         LazyPtr = Mang->makeNameProper(GV + "$lazy_ptr",
78                                        Mangler::Private);
79         AnonSymbol = Mang->makeNameProper(GV + "$stub$tmp",
80                                           Mangler::Private);
81       }
82     };
83     
84     StringMap<FnStubInfo> FnStubs;
85     StringMap<std::string> GVStubs, HiddenGVStubs, TOC;
86     const PPCSubtarget &Subtarget;
87     uint64_t LabelID;
88   public:
89     explicit PPCAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
90                            const MCAsmInfo *T, bool V)
91       : AsmPrinter(O, TM, T, V),
92         Subtarget(TM.getSubtarget<PPCSubtarget>()), LabelID(0) {}
93
94     virtual const char *getPassName() const {
95       return "PowerPC Assembly Printer";
96     }
97
98     PPCTargetMachine &getTM() {
99       return static_cast<PPCTargetMachine&>(TM);
100     }
101
102     unsigned enumRegToMachineReg(unsigned enumReg) {
103       switch (enumReg) {
104       default: llvm_unreachable("Unhandled register!");
105       case PPC::CR0:  return  0;
106       case PPC::CR1:  return  1;
107       case PPC::CR2:  return  2;
108       case PPC::CR3:  return  3;
109       case PPC::CR4:  return  4;
110       case PPC::CR5:  return  5;
111       case PPC::CR6:  return  6;
112       case PPC::CR7:  return  7;
113       }
114       llvm_unreachable(0);
115     }
116
117     /// printInstruction - This method is automatically generated by tablegen
118     /// from the instruction set description.  This method returns true if the
119     /// machine instruction was sufficiently described to print it, otherwise it
120     /// returns false.
121     void printInstruction(const MachineInstr *MI);
122
123     void printMachineInstruction(const MachineInstr *MI);
124     void printOp(const MachineOperand &MO);
125
126     /// stripRegisterPrefix - This method strips the character prefix from a
127     /// register name so that only the number is left.  Used by for linux asm.
128     const char *stripRegisterPrefix(const char *RegName) {
129       switch (RegName[0]) {
130       case 'r':
131       case 'f':
132       case 'v': return RegName + 1;
133       case 'c': if (RegName[1] == 'r') return RegName + 2;
134       }
135
136       return RegName;
137     }
138
139     /// printRegister - Print register according to target requirements.
140     ///
141     void printRegister(const MachineOperand &MO, bool R0AsZero) {
142       unsigned RegNo = MO.getReg();
143       assert(TargetRegisterInfo::isPhysicalRegister(RegNo) && "Not physreg??");
144
145       // If we should use 0 for R0.
146       if (R0AsZero && RegNo == PPC::R0) {
147         O << "0";
148         return;
149       }
150
151       const char *RegName = TM.getRegisterInfo()->get(RegNo).AsmName;
152       // Linux assembler (Others?) does not take register mnemonics.
153       // FIXME - What about special registers used in mfspr/mtspr?
154       if (!Subtarget.isDarwin()) RegName = stripRegisterPrefix(RegName);
155       O << RegName;
156     }
157
158     void printOperand(const MachineInstr *MI, unsigned OpNo) {
159       const MachineOperand &MO = MI->getOperand(OpNo);
160       if (MO.isReg()) {
161         printRegister(MO, false);
162       } else if (MO.isImm()) {
163         O << MO.getImm();
164       } else {
165         printOp(MO);
166       }
167     }
168
169     bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
170                          unsigned AsmVariant, const char *ExtraCode);
171     bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
172                                unsigned AsmVariant, const char *ExtraCode);
173
174
175     void printS5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
176       char value = MI->getOperand(OpNo).getImm();
177       value = (value << (32-5)) >> (32-5);
178       O << (int)value;
179     }
180     void printU5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
181       unsigned char value = MI->getOperand(OpNo).getImm();
182       assert(value <= 31 && "Invalid u5imm argument!");
183       O << (unsigned int)value;
184     }
185     void printU6ImmOperand(const MachineInstr *MI, unsigned OpNo) {
186       unsigned char value = MI->getOperand(OpNo).getImm();
187       assert(value <= 63 && "Invalid u6imm argument!");
188       O << (unsigned int)value;
189     }
190     void printS16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
191       O << (short)MI->getOperand(OpNo).getImm();
192     }
193     void printU16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
194       O << (unsigned short)MI->getOperand(OpNo).getImm();
195     }
196     void printS16X4ImmOperand(const MachineInstr *MI, unsigned OpNo) {
197       if (MI->getOperand(OpNo).isImm()) {
198         O << (short)(MI->getOperand(OpNo).getImm()*4);
199       } else {
200         O << "lo16(";
201         printOp(MI->getOperand(OpNo));
202         if (TM.getRelocationModel() == Reloc::PIC_)
203           O << "-\"L" << getFunctionNumber() << "$pb\")";
204         else
205           O << ')';
206       }
207     }
208     void printBranchOperand(const MachineInstr *MI, unsigned OpNo) {
209       // Branches can take an immediate operand.  This is used by the branch
210       // selection pass to print $+8, an eight byte displacement from the PC.
211       if (MI->getOperand(OpNo).isImm()) {
212         O << "$+" << MI->getOperand(OpNo).getImm()*4;
213       } else {
214         printOp(MI->getOperand(OpNo));
215       }
216     }
217     void printCallOperand(const MachineInstr *MI, unsigned OpNo) {
218       const MachineOperand &MO = MI->getOperand(OpNo);
219       if (TM.getRelocationModel() != Reloc::Static) {
220         if (MO.getType() == MachineOperand::MO_GlobalAddress) {
221           GlobalValue *GV = MO.getGlobal();
222           if (GV->isDeclaration() || GV->isWeakForLinker()) {
223             // Dynamically-resolved functions need a stub for the function.
224             FnStubInfo &FnInfo = FnStubs[Mang->getMangledName(GV)];
225             FnInfo.Init(GV, Mang);
226             O << FnInfo.Stub;
227             return;
228           }
229         }
230         if (MO.getType() == MachineOperand::MO_ExternalSymbol) {
231           FnStubInfo &FnInfo =FnStubs[Mang->makeNameProper(MO.getSymbolName())];
232           FnInfo.Init(MO.getSymbolName(), Mang);
233           O << FnInfo.Stub;
234           return;
235         }
236       }
237
238       printOp(MI->getOperand(OpNo));
239     }
240     void printAbsAddrOperand(const MachineInstr *MI, unsigned OpNo) {
241      O << (int)MI->getOperand(OpNo).getImm()*4;
242     }
243     void printPICLabel(const MachineInstr *MI, unsigned OpNo) {
244       O << "\"L" << getFunctionNumber() << "$pb\"\n";
245       O << "\"L" << getFunctionNumber() << "$pb\":";
246     }
247     void printSymbolHi(const MachineInstr *MI, unsigned OpNo) {
248       if (MI->getOperand(OpNo).isImm()) {
249         printS16ImmOperand(MI, OpNo);
250       } else {
251         if (Subtarget.isDarwin()) O << "ha16(";
252         printOp(MI->getOperand(OpNo));
253         if (TM.getRelocationModel() == Reloc::PIC_)
254           O << "-\"L" << getFunctionNumber() << "$pb\"";
255         if (Subtarget.isDarwin())
256           O << ')';
257         else
258           O << "@ha";
259       }
260     }
261     void printSymbolLo(const MachineInstr *MI, unsigned OpNo) {
262       if (MI->getOperand(OpNo).isImm()) {
263         printS16ImmOperand(MI, OpNo);
264       } else {
265         if (Subtarget.isDarwin()) O << "lo16(";
266         printOp(MI->getOperand(OpNo));
267         if (TM.getRelocationModel() == Reloc::PIC_)
268           O << "-\"L" << getFunctionNumber() << "$pb\"";
269         if (Subtarget.isDarwin())
270           O << ')';
271         else
272           O << "@l";
273       }
274     }
275     void printcrbitm(const MachineInstr *MI, unsigned OpNo) {
276       unsigned CCReg = MI->getOperand(OpNo).getReg();
277       unsigned RegNo = enumRegToMachineReg(CCReg);
278       O << (0x80 >> RegNo);
279     }
280     // The new addressing mode printers.
281     void printMemRegImm(const MachineInstr *MI, unsigned OpNo) {
282       printSymbolLo(MI, OpNo);
283       O << '(';
284       if (MI->getOperand(OpNo+1).isReg() &&
285           MI->getOperand(OpNo+1).getReg() == PPC::R0)
286         O << "0";
287       else
288         printOperand(MI, OpNo+1);
289       O << ')';
290     }
291     void printMemRegImmShifted(const MachineInstr *MI, unsigned OpNo) {
292       if (MI->getOperand(OpNo).isImm())
293         printS16X4ImmOperand(MI, OpNo);
294       else
295         printSymbolLo(MI, OpNo);
296       O << '(';
297       if (MI->getOperand(OpNo+1).isReg() &&
298           MI->getOperand(OpNo+1).getReg() == PPC::R0)
299         O << "0";
300       else
301         printOperand(MI, OpNo+1);
302       O << ')';
303     }
304
305     void printMemRegReg(const MachineInstr *MI, unsigned OpNo) {
306       // When used as the base register, r0 reads constant zero rather than
307       // the value contained in the register.  For this reason, the darwin
308       // assembler requires that we print r0 as 0 (no r) when used as the base.
309       const MachineOperand &MO = MI->getOperand(OpNo);
310       printRegister(MO, true);
311       O << ", ";
312       printOperand(MI, OpNo+1);
313     }
314
315     void printTOCEntryLabel(const MachineInstr *MI, unsigned OpNo) {
316       const MachineOperand &MO = MI->getOperand(OpNo);
317
318       assert(MO.getType() == MachineOperand::MO_GlobalAddress);
319
320       GlobalValue *GV = MO.getGlobal();
321
322       std::string Name = Mang->getMangledName(GV);
323
324       // Map symbol -> label of TOC entry.
325       if (TOC.count(Name) == 0) {
326         std::string Label;
327         Label += MAI->getPrivateGlobalPrefix();
328         Label += "C";
329         Label += utostr(LabelID++);
330
331         TOC[Name] = Label;
332       }
333
334       O << TOC[Name] << "@toc";
335     }
336
337     void printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
338                                const char *Modifier);
339
340     virtual bool runOnMachineFunction(MachineFunction &F) = 0;
341
342     virtual void EmitExternalGlobal(const GlobalVariable *GV);
343   };
344
345   /// PPCLinuxAsmPrinter - PowerPC assembly printer, customized for Linux
346   class VISIBILITY_HIDDEN PPCLinuxAsmPrinter : public PPCAsmPrinter {
347   public:
348     explicit PPCLinuxAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
349                                 const MCAsmInfo *T, bool V)
350       : PPCAsmPrinter(O, TM, T, V){}
351
352     virtual const char *getPassName() const {
353       return "Linux PPC Assembly Printer";
354     }
355
356     bool runOnMachineFunction(MachineFunction &F);
357     bool doFinalization(Module &M);
358
359     void getAnalysisUsage(AnalysisUsage &AU) const {
360       AU.setPreservesAll();
361       AU.addRequired<MachineModuleInfo>();
362       AU.addRequired<DwarfWriter>();
363       PPCAsmPrinter::getAnalysisUsage(AU);
364     }
365
366     void PrintGlobalVariable(const GlobalVariable *GVar);
367   };
368
369   /// PPCDarwinAsmPrinter - PowerPC assembly printer, customized for Darwin/Mac
370   /// OS X
371   class VISIBILITY_HIDDEN PPCDarwinAsmPrinter : public PPCAsmPrinter {
372     formatted_raw_ostream &OS;
373   public:
374     explicit PPCDarwinAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
375                                  const MCAsmInfo *T, bool V)
376       : PPCAsmPrinter(O, TM, T, V), OS(O) {}
377
378     virtual const char *getPassName() const {
379       return "Darwin PPC Assembly Printer";
380     }
381
382     bool runOnMachineFunction(MachineFunction &F);
383     bool doInitialization(Module &M);
384     bool doFinalization(Module &M);
385
386     void getAnalysisUsage(AnalysisUsage &AU) const {
387       AU.setPreservesAll();
388       AU.addRequired<MachineModuleInfo>();
389       AU.addRequired<DwarfWriter>();
390       PPCAsmPrinter::getAnalysisUsage(AU);
391     }
392
393     void PrintGlobalVariable(const GlobalVariable *GVar);
394   };
395 } // end of anonymous namespace
396
397 // Include the auto-generated portion of the assembly writer
398 #include "PPCGenAsmWriter.inc"
399
400 void PPCAsmPrinter::printOp(const MachineOperand &MO) {
401   switch (MO.getType()) {
402   case MachineOperand::MO_Immediate:
403     llvm_unreachable("printOp() does not handle immediate values");
404
405   case MachineOperand::MO_MachineBasicBlock:
406     printBasicBlockLabel(MO.getMBB());
407     return;
408   case MachineOperand::MO_JumpTableIndex:
409     O << MAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
410       << '_' << MO.getIndex();
411     // FIXME: PIC relocation model
412     return;
413   case MachineOperand::MO_ConstantPoolIndex:
414     O << MAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber()
415       << '_' << MO.getIndex();
416     return;
417   case MachineOperand::MO_ExternalSymbol: {
418     // Computing the address of an external symbol, not calling it.
419     std::string Name(MAI->getGlobalPrefix());
420     Name += MO.getSymbolName();
421     
422     if (TM.getRelocationModel() != Reloc::Static) {
423       GVStubs[Name] = Name+"$non_lazy_ptr";
424       Name += "$non_lazy_ptr";
425     }
426     O << Name;
427     return;
428   }
429   case MachineOperand::MO_GlobalAddress: {
430     // Computing the address of a global symbol, not calling it.
431     GlobalValue *GV = MO.getGlobal();
432     std::string Name;
433
434     // External or weakly linked global variables need non-lazily-resolved stubs
435     if (TM.getRelocationModel() != Reloc::Static &&
436         (GV->isDeclaration() || GV->isWeakForLinker())) {
437       if (!GV->hasHiddenVisibility()) {
438         Name = Mang->getMangledName(GV, "$non_lazy_ptr", true);
439         GVStubs[Mang->getMangledName(GV)] = Name;
440       } else if (GV->isDeclaration() || GV->hasCommonLinkage() ||
441                  GV->hasAvailableExternallyLinkage()) {
442         Name = Mang->getMangledName(GV, "$non_lazy_ptr", true);
443         HiddenGVStubs[Mang->getMangledName(GV)] = Name;
444       } else {
445         Name = Mang->getMangledName(GV);
446       }
447     } else {
448       Name = Mang->getMangledName(GV);
449     }
450     O << Name;
451
452     printOffset(MO.getOffset());
453     return;
454   }
455
456   default:
457     O << "<unknown operand type: " << MO.getType() << ">";
458     return;
459   }
460 }
461
462 /// EmitExternalGlobal - In this case we need to use the indirect symbol.
463 ///
464 void PPCAsmPrinter::EmitExternalGlobal(const GlobalVariable *GV) {
465   std::string Name;
466   
467   if (TM.getRelocationModel() != Reloc::Static) {
468     Name = Mang->getMangledName(GV, "$non_lazy_ptr", true);
469   } else {
470     Name = Mang->getMangledName(GV);
471   }
472   O << Name;
473 }
474
475 /// PrintAsmOperand - Print out an operand for an inline asm expression.
476 ///
477 bool PPCAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
478                                     unsigned AsmVariant,
479                                     const char *ExtraCode) {
480   // Does this asm operand have a single letter operand modifier?
481   if (ExtraCode && ExtraCode[0]) {
482     if (ExtraCode[1] != 0) return true; // Unknown modifier.
483
484     switch (ExtraCode[0]) {
485     default: return true;  // Unknown modifier.
486     case 'c': // Don't print "$" before a global var name or constant.
487       // PPC never has a prefix.
488       printOperand(MI, OpNo);
489       return false;
490     case 'L': // Write second word of DImode reference.
491       // Verify that this operand has two consecutive registers.
492       if (!MI->getOperand(OpNo).isReg() ||
493           OpNo+1 == MI->getNumOperands() ||
494           !MI->getOperand(OpNo+1).isReg())
495         return true;
496       ++OpNo;   // Return the high-part.
497       break;
498     case 'I':
499       // Write 'i' if an integer constant, otherwise nothing.  Used to print
500       // addi vs add, etc.
501       if (MI->getOperand(OpNo).isImm())
502         O << "i";
503       return false;
504     }
505   }
506
507   printOperand(MI, OpNo);
508   return false;
509 }
510
511 // At the moment, all inline asm memory operands are a single register.
512 // In any case, the output of this routine should always be just one
513 // assembler operand.
514
515 bool PPCAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
516                                           unsigned AsmVariant,
517                                           const char *ExtraCode) {
518   if (ExtraCode && ExtraCode[0])
519     return true; // Unknown modifier.
520   assert (MI->getOperand(OpNo).isReg());
521   O << "0(";
522   printOperand(MI, OpNo);
523   O << ")";
524   return false;
525 }
526
527 void PPCAsmPrinter::printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
528                                           const char *Modifier) {
529   assert(Modifier && "Must specify 'cc' or 'reg' as predicate op modifier!");
530   unsigned Code = MI->getOperand(OpNo).getImm();
531   if (!strcmp(Modifier, "cc")) {
532     switch ((PPC::Predicate)Code) {
533     case PPC::PRED_ALWAYS: return; // Don't print anything for always.
534     case PPC::PRED_LT: O << "lt"; return;
535     case PPC::PRED_LE: O << "le"; return;
536     case PPC::PRED_EQ: O << "eq"; return;
537     case PPC::PRED_GE: O << "ge"; return;
538     case PPC::PRED_GT: O << "gt"; return;
539     case PPC::PRED_NE: O << "ne"; return;
540     case PPC::PRED_UN: O << "un"; return;
541     case PPC::PRED_NU: O << "nu"; return;
542     }
543
544   } else {
545     assert(!strcmp(Modifier, "reg") &&
546            "Need to specify 'cc' or 'reg' as predicate op modifier!");
547     // Don't print the register for 'always'.
548     if (Code == PPC::PRED_ALWAYS) return;
549     printOperand(MI, OpNo+1);
550   }
551 }
552
553
554 /// printMachineInstruction -- Print out a single PowerPC MI in Darwin syntax to
555 /// the current output stream.
556 ///
557 void PPCAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
558   ++EmittedInsts;
559
560   // Check for slwi/srwi mnemonics.
561   if (MI->getOpcode() == PPC::RLWINM) {
562     bool FoundMnemonic = false;
563     unsigned char SH = MI->getOperand(2).getImm();
564     unsigned char MB = MI->getOperand(3).getImm();
565     unsigned char ME = MI->getOperand(4).getImm();
566     if (SH <= 31 && MB == 0 && ME == (31-SH)) {
567       O << "\tslwi "; FoundMnemonic = true;
568     }
569     if (SH <= 31 && MB == (32-SH) && ME == 31) {
570       O << "\tsrwi "; FoundMnemonic = true;
571       SH = 32-SH;
572     }
573     if (FoundMnemonic) {
574       printOperand(MI, 0);
575       O << ", ";
576       printOperand(MI, 1);
577       O << ", " << (unsigned int)SH << '\n';
578       return;
579     }
580   } else if (MI->getOpcode() == PPC::OR || MI->getOpcode() == PPC::OR8) {
581     if (MI->getOperand(1).getReg() == MI->getOperand(2).getReg()) {
582       O << "\tmr ";
583       printOperand(MI, 0);
584       O << ", ";
585       printOperand(MI, 1);
586       O << '\n';
587       return;
588     }
589   } else if (MI->getOpcode() == PPC::RLDICR) {
590     unsigned char SH = MI->getOperand(2).getImm();
591     unsigned char ME = MI->getOperand(3).getImm();
592     // rldicr RA, RS, SH, 63-SH == sldi RA, RS, SH
593     if (63-SH == ME) {
594       O << "\tsldi ";
595       printOperand(MI, 0);
596       O << ", ";
597       printOperand(MI, 1);
598       O << ", " << (unsigned int)SH << '\n';
599       return;
600     }
601   }
602
603   printInstruction(MI);
604 }
605
606 /// runOnMachineFunction - This uses the printMachineInstruction()
607 /// method to print assembly for each instruction.
608 ///
609 bool PPCLinuxAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
610   this->MF = &MF;
611
612   SetupMachineFunction(MF);
613   O << "\n\n";
614
615   // Print out constants referenced by the function
616   EmitConstantPool(MF.getConstantPool());
617
618   // Print out labels for the function.
619   const Function *F = MF.getFunction();
620   OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang, TM));
621
622   switch (F->getLinkage()) {
623   default: llvm_unreachable("Unknown linkage type!");
624   case Function::PrivateLinkage:
625   case Function::InternalLinkage:  // Symbols default to internal.
626     break;
627   case Function::ExternalLinkage:
628     O << "\t.global\t" << CurrentFnName << '\n'
629       << "\t.type\t" << CurrentFnName << ", @function\n";
630     break;
631   case Function::LinkerPrivateLinkage:
632   case Function::WeakAnyLinkage:
633   case Function::WeakODRLinkage:
634   case Function::LinkOnceAnyLinkage:
635   case Function::LinkOnceODRLinkage:
636     O << "\t.global\t" << CurrentFnName << '\n';
637     O << "\t.weak\t" << CurrentFnName << '\n';
638     break;
639   }
640
641   printVisibility(CurrentFnName, F->getVisibility());
642
643   EmitAlignment(MF.getAlignment(), F);
644
645   if (Subtarget.isPPC64()) {
646     // Emit an official procedure descriptor.
647     // FIXME 64-bit SVR4: Use MCSection here?
648     O << "\t.section\t\".opd\",\"aw\"\n";
649     O << "\t.align 3\n";
650     O << CurrentFnName << ":\n";
651     O << "\t.quad .L." << CurrentFnName << ",.TOC.@tocbase\n";
652     O << "\t.previous\n";
653     O << ".L." << CurrentFnName << ":\n";
654   } else {
655     O << CurrentFnName << ":\n";
656   }
657
658   // Emit pre-function debug information.
659   DW->BeginFunction(&MF);
660
661   // Print out code for the function.
662   for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
663        I != E; ++I) {
664     // Print a label for the basic block.
665     if (I != MF.begin()) {
666       printBasicBlockLabel(I, true, true);
667       O << '\n';
668     }
669     for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
670          II != E; ++II) {
671       // Print the assembly for the instruction.
672       printMachineInstruction(II);
673     }
674   }
675
676   O << "\t.size\t" << CurrentFnName << ",.-" << CurrentFnName << '\n';
677
678   // Print out jump tables referenced by the function.
679   EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
680
681   OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang, TM));
682
683   // Emit post-function debug information.
684   DW->EndFunction(&MF);
685
686   // We didn't modify anything.
687   return false;
688 }
689
690 void PPCLinuxAsmPrinter::PrintGlobalVariable(const GlobalVariable *GVar) {
691   const TargetData *TD = TM.getTargetData();
692
693   if (!GVar->hasInitializer())
694     return;   // External global require no code
695
696   // Check to see if this is a special global used by LLVM, if so, emit it.
697   if (EmitSpecialLLVMGlobal(GVar))
698     return;
699
700   std::string name = Mang->getMangledName(GVar);
701
702   printVisibility(name, GVar->getVisibility());
703
704   Constant *C = GVar->getInitializer();
705   const Type *Type = C->getType();
706   unsigned Size = TD->getTypeAllocSize(Type);
707   unsigned Align = TD->getPreferredAlignmentLog(GVar);
708
709   OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(GVar, Mang,
710                                                                   TM));
711
712   if (C->isNullValue() && /* FIXME: Verify correct */
713       !GVar->hasSection() &&
714       (GVar->hasLocalLinkage() || GVar->hasExternalLinkage() ||
715        GVar->isWeakForLinker())) {
716       if (Size == 0) Size = 1;   // .comm Foo, 0 is undefined, avoid it.
717
718       if (GVar->hasExternalLinkage()) {
719         O << "\t.global " << name << '\n';
720         O << "\t.type " << name << ", @object\n";
721         O << name << ":\n";
722         O << "\t.zero " << Size << '\n';
723       } else if (GVar->hasLocalLinkage()) {
724         O << MAI->getLCOMMDirective() << name << ',' << Size;
725       } else {
726         O << ".comm " << name << ',' << Size;
727       }
728       if (VerboseAsm) {
729         O << "\t\t" << MAI->getCommentString() << " '";
730         WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
731         O << "'";
732       }
733       O << '\n';
734       return;
735   }
736
737   switch (GVar->getLinkage()) {
738    case GlobalValue::LinkOnceAnyLinkage:
739    case GlobalValue::LinkOnceODRLinkage:
740    case GlobalValue::WeakAnyLinkage:
741    case GlobalValue::WeakODRLinkage:
742    case GlobalValue::CommonLinkage:
743    case GlobalValue::LinkerPrivateLinkage:
744     O << "\t.global " << name << '\n'
745       << "\t.type " << name << ", @object\n"
746       << "\t.weak " << name << '\n';
747     break;
748    case GlobalValue::AppendingLinkage:
749     // FIXME: appending linkage variables should go into a section of
750     // their name or something.  For now, just emit them as external.
751    case GlobalValue::ExternalLinkage:
752     // If external or appending, declare as a global symbol
753     O << "\t.global " << name << '\n'
754       << "\t.type " << name << ", @object\n";
755     // FALL THROUGH
756    case GlobalValue::InternalLinkage:
757    case GlobalValue::PrivateLinkage:
758     break;
759    default:
760     llvm_unreachable("Unknown linkage type!");
761   }
762
763   EmitAlignment(Align, GVar);
764   O << name << ":";
765   if (VerboseAsm) {
766     O << "\t\t\t\t" << MAI->getCommentString() << " '";
767     WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
768     O << "'";
769   }
770   O << '\n';
771
772   EmitGlobalConstant(C);
773   O << '\n';
774 }
775
776 bool PPCLinuxAsmPrinter::doFinalization(Module &M) {
777   const TargetData *TD = TM.getTargetData();
778
779   bool isPPC64 = TD->getPointerSizeInBits() == 64;
780
781   if (isPPC64 && !TOC.empty()) {
782     // FIXME 64-bit SVR4: Use MCSection here?
783     O << "\t.section\t\".toc\",\"aw\"\n";
784
785     for (StringMap<std::string>::iterator I = TOC.begin(), E = TOC.end();
786          I != E; ++I) {
787       O << I->second << ":\n";
788       O << "\t.tc " << I->getKeyData() << "[TC]," << I->getKeyData() << '\n';
789     }
790   }
791
792   return AsmPrinter::doFinalization(M);
793 }
794
795 /// runOnMachineFunction - This uses the printMachineInstruction()
796 /// method to print assembly for each instruction.
797 ///
798 bool PPCDarwinAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
799   this->MF = &MF;
800
801   SetupMachineFunction(MF);
802   O << "\n\n";
803
804   // Print out constants referenced by the function
805   EmitConstantPool(MF.getConstantPool());
806
807   // Print out labels for the function.
808   const Function *F = MF.getFunction();
809   OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang, TM));
810
811   switch (F->getLinkage()) {
812   default: llvm_unreachable("Unknown linkage type!");
813   case Function::PrivateLinkage:
814   case Function::InternalLinkage:  // Symbols default to internal.
815     break;
816   case Function::ExternalLinkage:
817     O << "\t.globl\t" << CurrentFnName << '\n';
818     break;
819   case Function::WeakAnyLinkage:
820   case Function::WeakODRLinkage:
821   case Function::LinkOnceAnyLinkage:
822   case Function::LinkOnceODRLinkage:
823   case Function::LinkerPrivateLinkage:
824     O << "\t.globl\t" << CurrentFnName << '\n';
825     O << "\t.weak_definition\t" << CurrentFnName << '\n';
826     break;
827   }
828
829   printVisibility(CurrentFnName, F->getVisibility());
830
831   EmitAlignment(MF.getAlignment(), F);
832   O << CurrentFnName << ":\n";
833
834   // Emit pre-function debug information.
835   DW->BeginFunction(&MF);
836
837   // If the function is empty, then we need to emit *something*. Otherwise, the
838   // function's label might be associated with something that it wasn't meant to
839   // be associated with. We emit a noop in this situation.
840   MachineFunction::iterator I = MF.begin();
841
842   if (++I == MF.end() && MF.front().empty())
843     O << "\tnop\n";
844
845   // Print out code for the function.
846   for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
847        I != E; ++I) {
848     // Print a label for the basic block.
849     if (I != MF.begin()) {
850       printBasicBlockLabel(I, true, true, VerboseAsm);
851       O << '\n';
852     }
853     for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
854          II != IE; ++II) {
855       // Print the assembly for the instruction.
856       printMachineInstruction(II);
857     }
858   }
859
860   // Print out jump tables referenced by the function.
861   EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
862
863   // Emit post-function debug information.
864   DW->EndFunction(&MF);
865
866   // We didn't modify anything.
867   return false;
868 }
869
870
871 bool PPCDarwinAsmPrinter::doInitialization(Module &M) {
872   static const char *const CPUDirectives[] = {
873     "",
874     "ppc",
875     "ppc601",
876     "ppc602",
877     "ppc603",
878     "ppc7400",
879     "ppc750",
880     "ppc970",
881     "ppc64"
882   };
883
884   unsigned Directive = Subtarget.getDarwinDirective();
885   if (Subtarget.isGigaProcessor() && Directive < PPC::DIR_970)
886     Directive = PPC::DIR_970;
887   if (Subtarget.hasAltivec() && Directive < PPC::DIR_7400)
888     Directive = PPC::DIR_7400;
889   if (Subtarget.isPPC64() && Directive < PPC::DIR_970)
890     Directive = PPC::DIR_64;
891   assert(Directive <= PPC::DIR_64 && "Directive out of range.");
892   O << "\t.machine " << CPUDirectives[Directive] << '\n';
893
894   bool Result = AsmPrinter::doInitialization(M);
895   assert(MMI);
896
897   // Prime text sections so they are adjacent.  This reduces the likelihood a
898   // large data or debug section causes a branch to exceed 16M limit.
899   TargetLoweringObjectFileMachO &TLOFMacho = 
900     static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
901   OutStreamer.SwitchSection(TLOFMacho.getTextCoalSection());
902   if (TM.getRelocationModel() == Reloc::PIC_) {
903     OutStreamer.SwitchSection(
904             TLOFMacho.getMachOSection("__TEXT", "__picsymbolstub1",
905                                       MCSectionMachO::S_SYMBOL_STUBS |
906                                       MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
907                                       32, SectionKind::getText()));
908   } else if (TM.getRelocationModel() == Reloc::DynamicNoPIC) {
909     OutStreamer.SwitchSection(
910             TLOFMacho.getMachOSection("__TEXT","__symbol_stub1",
911                                       MCSectionMachO::S_SYMBOL_STUBS |
912                                       MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
913                                       16, SectionKind::getText()));
914   }
915   OutStreamer.SwitchSection(getObjFileLowering().getTextSection());
916
917   return Result;
918 }
919
920 void PPCDarwinAsmPrinter::PrintGlobalVariable(const GlobalVariable *GVar) {
921   const TargetData *TD = TM.getTargetData();
922
923   if (!GVar->hasInitializer())
924     return;   // External global require no code
925
926   // Check to see if this is a special global used by LLVM, if so, emit it.
927   if (EmitSpecialLLVMGlobal(GVar)) {
928     if (TM.getRelocationModel() == Reloc::Static) {
929       if (GVar->getName() == "llvm.global_ctors")
930         O << ".reference .constructors_used\n";
931       else if (GVar->getName() == "llvm.global_dtors")
932         O << ".reference .destructors_used\n";
933     }
934     return;
935   }
936
937   std::string name = Mang->getMangledName(GVar);
938   printVisibility(name, GVar->getVisibility());
939
940   Constant *C = GVar->getInitializer();
941   const Type *Type = C->getType();
942   unsigned Size = TD->getTypeAllocSize(Type);
943   unsigned Align = TD->getPreferredAlignmentLog(GVar);
944
945   const MCSection *TheSection =
946     getObjFileLowering().SectionForGlobal(GVar, Mang, TM);
947   OutStreamer.SwitchSection(TheSection);
948
949   /// FIXME: Drive this off the section!
950   if (C->isNullValue() && /* FIXME: Verify correct */
951       !GVar->hasSection() &&
952       (GVar->hasLocalLinkage() || GVar->hasExternalLinkage() ||
953        GVar->isWeakForLinker()) &&
954       // Don't put things that should go in the cstring section into "comm".
955       !TheSection->getKind().isMergeableCString()) {
956     if (Size == 0) Size = 1;   // .comm Foo, 0 is undefined, avoid it.
957
958     if (GVar->hasExternalLinkage()) {
959       O << "\t.globl " << name << '\n';
960       O << "\t.zerofill __DATA, __common, " << name << ", "
961         << Size << ", " << Align;
962     } else if (GVar->hasLocalLinkage()) {
963       O << MAI->getLCOMMDirective() << name << ',' << Size << ',' << Align;
964     } else if (!GVar->hasCommonLinkage()) {
965       O << "\t.globl " << name << '\n'
966         << MAI->getWeakDefDirective() << name << '\n';
967       EmitAlignment(Align, GVar);
968       O << name << ":";
969       if (VerboseAsm) {
970         O << "\t\t\t\t" << MAI->getCommentString() << " ";
971         WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
972       }
973       O << '\n';
974       EmitGlobalConstant(C);
975       return;
976     } else {
977       O << ".comm " << name << ',' << Size;
978       // Darwin 9 and above support aligned common data.
979       if (Subtarget.isDarwin9())
980         O << ',' << Align;
981     }
982     if (VerboseAsm) {
983       O << "\t\t" << MAI->getCommentString() << " '";
984       WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
985       O << "'";
986     }
987     O << '\n';
988     return;
989   }
990
991   switch (GVar->getLinkage()) {
992    case GlobalValue::LinkOnceAnyLinkage:
993    case GlobalValue::LinkOnceODRLinkage:
994    case GlobalValue::WeakAnyLinkage:
995    case GlobalValue::WeakODRLinkage:
996    case GlobalValue::CommonLinkage:
997    case GlobalValue::LinkerPrivateLinkage:
998     O << "\t.globl " << name << '\n'
999       << "\t.weak_definition " << name << '\n';
1000     break;
1001    case GlobalValue::AppendingLinkage:
1002     // FIXME: appending linkage variables should go into a section of
1003     // their name or something.  For now, just emit them as external.
1004    case GlobalValue::ExternalLinkage:
1005     // If external or appending, declare as a global symbol
1006     O << "\t.globl " << name << '\n';
1007     // FALL THROUGH
1008    case GlobalValue::InternalLinkage:
1009    case GlobalValue::PrivateLinkage:
1010     break;
1011    default:
1012     llvm_unreachable("Unknown linkage type!");
1013   }
1014
1015   EmitAlignment(Align, GVar);
1016   O << name << ":";
1017   if (VerboseAsm) {
1018     O << "\t\t\t\t" << MAI->getCommentString() << " '";
1019     WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
1020     O << "'";
1021   }
1022   O << '\n';
1023
1024   EmitGlobalConstant(C);
1025   O << '\n';
1026 }
1027
1028 bool PPCDarwinAsmPrinter::doFinalization(Module &M) {
1029   const TargetData *TD = TM.getTargetData();
1030
1031   bool isPPC64 = TD->getPointerSizeInBits() == 64;
1032
1033   // Darwin/PPC always uses mach-o.
1034   TargetLoweringObjectFileMachO &TLOFMacho = 
1035     static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
1036
1037   
1038   const MCSection *LSPSection = 0;
1039   if (!FnStubs.empty()) // .lazy_symbol_pointer
1040     LSPSection = TLOFMacho.getLazySymbolPointerSection();
1041     
1042   
1043   // Output stubs for dynamically-linked functions
1044   if (TM.getRelocationModel() == Reloc::PIC_ && !FnStubs.empty()) {
1045     const MCSection *StubSection = 
1046       TLOFMacho.getMachOSection("__TEXT", "__picsymbolstub1",
1047                                 MCSectionMachO::S_SYMBOL_STUBS |
1048                                 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
1049                                 32, SectionKind::getText());
1050      for (StringMap<FnStubInfo>::iterator I = FnStubs.begin(), E = FnStubs.end();
1051          I != E; ++I) {
1052       OutStreamer.SwitchSection(StubSection);
1053       EmitAlignment(4);
1054       const FnStubInfo &Info = I->second;
1055       O << Info.Stub << ":\n";
1056       O << "\t.indirect_symbol " << I->getKeyData() << '\n';
1057       O << "\tmflr r0\n";
1058       O << "\tbcl 20,31," << Info.AnonSymbol << '\n';
1059       O << Info.AnonSymbol << ":\n";
1060       O << "\tmflr r11\n";
1061       O << "\taddis r11,r11,ha16(" << Info.LazyPtr << "-" << Info.AnonSymbol;
1062       O << ")\n";
1063       O << "\tmtlr r0\n";
1064       O << (isPPC64 ? "\tldu" : "\tlwzu") << " r12,lo16(";
1065       O << Info.LazyPtr << "-" << Info.AnonSymbol << ")(r11)\n";
1066       O << "\tmtctr r12\n";
1067       O << "\tbctr\n";
1068       
1069       OutStreamer.SwitchSection(LSPSection);
1070       O << Info.LazyPtr << ":\n";
1071       O << "\t.indirect_symbol " << I->getKeyData() << '\n';
1072       O << (isPPC64 ? "\t.quad" : "\t.long") << " dyld_stub_binding_helper\n";
1073     }
1074   } else if (!FnStubs.empty()) {
1075     const MCSection *StubSection =
1076       TLOFMacho.getMachOSection("__TEXT","__symbol_stub1",
1077                                 MCSectionMachO::S_SYMBOL_STUBS |
1078                                 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
1079                                 16, SectionKind::getText());
1080     
1081     for (StringMap<FnStubInfo>::iterator I = FnStubs.begin(), E = FnStubs.end();
1082          I != E; ++I) {
1083       OutStreamer.SwitchSection(StubSection);
1084       EmitAlignment(4);
1085       const FnStubInfo &Info = I->second;
1086       O << Info.Stub << ":\n";
1087       O << "\t.indirect_symbol " << I->getKeyData() << '\n';
1088       O << "\tlis r11,ha16(" << Info.LazyPtr << ")\n";
1089       O << (isPPC64 ? "\tldu" :  "\tlwzu") << " r12,lo16(";
1090       O << Info.LazyPtr << ")(r11)\n";
1091       O << "\tmtctr r12\n";
1092       O << "\tbctr\n";
1093       OutStreamer.SwitchSection(LSPSection);
1094       O << Info.LazyPtr << ":\n";
1095       O << "\t.indirect_symbol " << I->getKeyData() << '\n';
1096       O << (isPPC64 ? "\t.quad" : "\t.long") << " dyld_stub_binding_helper\n";
1097     }
1098   }
1099
1100   O << '\n';
1101
1102   if (MAI->doesSupportExceptionHandling() && MMI) {
1103     // Add the (possibly multiple) personalities to the set of global values.
1104     // Only referenced functions get into the Personalities list.
1105     const std::vector<Function *> &Personalities = MMI->getPersonalities();
1106     for (std::vector<Function *>::const_iterator I = Personalities.begin(),
1107          E = Personalities.end(); I != E; ++I) {
1108       if (*I)
1109         GVStubs[Mang->getMangledName(*I)] =
1110           Mang->getMangledName(*I, "$non_lazy_ptr", true);
1111     }
1112   }
1113
1114   // Output macho stubs for external and common global variables.
1115   if (!GVStubs.empty()) {
1116     // Switch with ".non_lazy_symbol_pointer" directive.
1117     OutStreamer.SwitchSection(TLOFMacho.getNonLazySymbolPointerSection());
1118     EmitAlignment(isPPC64 ? 3 : 2);
1119     
1120     for (StringMap<std::string>::iterator I = GVStubs.begin(),
1121          E = GVStubs.end(); I != E; ++I) {
1122       O << I->second << ":\n";
1123       O << "\t.indirect_symbol " << I->getKeyData() << '\n';
1124       O << (isPPC64 ? "\t.quad\t0\n" : "\t.long\t0\n");
1125     }
1126   }
1127
1128   if (!HiddenGVStubs.empty()) {
1129     OutStreamer.SwitchSection(getObjFileLowering().getDataSection());
1130     EmitAlignment(isPPC64 ? 3 : 2);
1131     for (StringMap<std::string>::iterator I = HiddenGVStubs.begin(),
1132          E = HiddenGVStubs.end(); I != E; ++I) {
1133       O << I->second << ":\n";
1134       O << (isPPC64 ? "\t.quad\t" : "\t.long\t") << I->getKeyData() << '\n';
1135     }
1136   }
1137
1138   // Funny Darwin hack: This flag tells the linker that no global symbols
1139   // contain code that falls through to other global symbols (e.g. the obvious
1140   // implementation of multiple entry points).  If this doesn't occur, the
1141   // linker can safely perform dead code stripping.  Since LLVM never generates
1142   // code that does this, it is always safe to set.
1143   O << "\t.subsections_via_symbols\n";
1144
1145   return AsmPrinter::doFinalization(M);
1146 }
1147
1148
1149
1150 /// createPPCAsmPrinterPass - Returns a pass that prints the PPC assembly code
1151 /// for a MachineFunction to the given output stream, in a format that the
1152 /// Darwin assembler can deal with.
1153 ///
1154 static AsmPrinter *createPPCAsmPrinterPass(formatted_raw_ostream &o,
1155                                            TargetMachine &tm,
1156                                            const MCAsmInfo *tai,
1157                                            bool verbose) {
1158   const PPCSubtarget *Subtarget = &tm.getSubtarget<PPCSubtarget>();
1159
1160   if (Subtarget->isDarwin())
1161     return new PPCDarwinAsmPrinter(o, tm, tai, verbose);
1162   return new PPCLinuxAsmPrinter(o, tm, tai, verbose);
1163 }
1164
1165 // Force static initialization.
1166 extern "C" void LLVMInitializePowerPCAsmPrinter() { 
1167   TargetRegistry::RegisterAsmPrinter(ThePPC32Target, createPPCAsmPrinterPass);
1168   TargetRegistry::RegisterAsmPrinter(ThePPC64Target, createPPCAsmPrinterPass);
1169 }