fix PrintAsmOperand and PrintAsmMemoryOperand to pass down
[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/MachineFunctionPass.h"
31 #include "llvm/CodeGen/MachineInstr.h"
32 #include "llvm/CodeGen/MachineInstrBuilder.h"
33 #include "llvm/CodeGen/MachineModuleInfoImpls.h"
34 #include "llvm/CodeGen/TargetLoweringObjectFileImpl.h"
35 #include "llvm/MC/MCAsmInfo.h"
36 #include "llvm/MC/MCContext.h"
37 #include "llvm/MC/MCExpr.h"
38 #include "llvm/MC/MCSectionMachO.h"
39 #include "llvm/MC/MCStreamer.h"
40 #include "llvm/MC/MCSymbol.h"
41 #include "llvm/Target/Mangler.h"
42 #include "llvm/Target/TargetRegisterInfo.h"
43 #include "llvm/Target/TargetInstrInfo.h"
44 #include "llvm/Target/TargetOptions.h"
45 #include "llvm/Target/TargetRegistry.h"
46 #include "llvm/Support/MathExtras.h"
47 #include "llvm/Support/CommandLine.h"
48 #include "llvm/Support/Debug.h"
49 #include "llvm/Support/ErrorHandling.h"
50 #include "llvm/Support/FormattedStream.h"
51 #include "llvm/ADT/StringExtras.h"
52 #include "llvm/ADT/StringSet.h"
53 #include "llvm/ADT/SmallString.h"
54 using namespace llvm;
55
56 namespace {
57   class PPCAsmPrinter : public AsmPrinter {
58   protected:
59     DenseMap<const MCSymbol*, const MCSymbol*> TOC;
60     const PPCSubtarget &Subtarget;
61     uint64_t LabelID;
62   public:
63     explicit PPCAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
64                            MCStreamer &Streamer)
65       : AsmPrinter(O, TM, Streamer),
66         Subtarget(TM.getSubtarget<PPCSubtarget>()), LabelID(0) {}
67
68     virtual const char *getPassName() const {
69       return "PowerPC Assembly Printer";
70     }
71
72     PPCTargetMachine &getTM() {
73       return static_cast<PPCTargetMachine&>(TM);
74     }
75
76     unsigned enumRegToMachineReg(unsigned enumReg) {
77       switch (enumReg) {
78       default: llvm_unreachable("Unhandled register!");
79       case PPC::CR0:  return  0;
80       case PPC::CR1:  return  1;
81       case PPC::CR2:  return  2;
82       case PPC::CR3:  return  3;
83       case PPC::CR4:  return  4;
84       case PPC::CR5:  return  5;
85       case PPC::CR6:  return  6;
86       case PPC::CR7:  return  7;
87       }
88       llvm_unreachable(0);
89     }
90
91     /// printInstruction - This method is automatically generated by tablegen
92     /// from the instruction set description.  This method returns true if the
93     /// machine instruction was sufficiently described to print it, otherwise it
94     /// returns false.
95     void printInstruction(const MachineInstr *MI, raw_ostream &O);
96     static const char *getRegisterName(unsigned RegNo);
97
98
99     virtual void EmitInstruction(const MachineInstr *MI);
100     void printOp(const MachineOperand &MO, raw_ostream &O);
101
102     /// stripRegisterPrefix - This method strips the character prefix from a
103     /// register name so that only the number is left.  Used by for linux asm.
104     const char *stripRegisterPrefix(const char *RegName) {
105       switch (RegName[0]) {
106       case 'r':
107       case 'f':
108       case 'v': return RegName + 1;
109       case 'c': if (RegName[1] == 'r') return RegName + 2;
110       }
111
112       return RegName;
113     }
114
115     /// printRegister - Print register according to target requirements.
116     ///
117     void printRegister(const MachineOperand &MO, bool R0AsZero, raw_ostream &O){
118       unsigned RegNo = MO.getReg();
119       assert(TargetRegisterInfo::isPhysicalRegister(RegNo) && "Not physreg??");
120
121       // If we should use 0 for R0.
122       if (R0AsZero && RegNo == PPC::R0) {
123         O << "0";
124         return;
125       }
126
127       const char *RegName = getRegisterName(RegNo);
128       // Linux assembler (Others?) does not take register mnemonics.
129       // FIXME - What about special registers used in mfspr/mtspr?
130       if (!Subtarget.isDarwin()) RegName = stripRegisterPrefix(RegName);
131       O << RegName;
132     }
133
134     void printOperand(const MachineInstr *MI, unsigned OpNo, raw_ostream &O) {
135       const MachineOperand &MO = MI->getOperand(OpNo);
136       if (MO.isReg()) {
137         printRegister(MO, false, O);
138       } else if (MO.isImm()) {
139         O << MO.getImm();
140       } else {
141         printOp(MO, O);
142       }
143     }
144
145     bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
146                          unsigned AsmVariant, const char *ExtraCode,
147                          raw_ostream &O);
148     bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
149                                unsigned AsmVariant, const char *ExtraCode,
150                                raw_ostream &O);
151
152
153     void printS5ImmOperand(const MachineInstr *MI, unsigned OpNo,
154                            raw_ostream &O) {
155       char value = MI->getOperand(OpNo).getImm();
156       value = (value << (32-5)) >> (32-5);
157       O << (int)value;
158     }
159     void printU5ImmOperand(const MachineInstr *MI, unsigned OpNo,
160                            raw_ostream &O) {
161       unsigned char value = MI->getOperand(OpNo).getImm();
162       assert(value <= 31 && "Invalid u5imm argument!");
163       O << (unsigned int)value;
164     }
165     void printU6ImmOperand(const MachineInstr *MI, unsigned OpNo,
166                            raw_ostream &O) {
167       unsigned char value = MI->getOperand(OpNo).getImm();
168       assert(value <= 63 && "Invalid u6imm argument!");
169       O << (unsigned int)value;
170     }
171     void printS16ImmOperand(const MachineInstr *MI, unsigned OpNo, 
172                             raw_ostream &O) {
173       O << (short)MI->getOperand(OpNo).getImm();
174     }
175     void printU16ImmOperand(const MachineInstr *MI, unsigned OpNo,
176                             raw_ostream &O) {
177       O << (unsigned short)MI->getOperand(OpNo).getImm();
178     }
179     void printS16X4ImmOperand(const MachineInstr *MI, unsigned OpNo,
180                               raw_ostream &O) {
181       if (MI->getOperand(OpNo).isImm()) {
182         O << (short)(MI->getOperand(OpNo).getImm()*4);
183       } else {
184         O << "lo16(";
185         printOp(MI->getOperand(OpNo), O);
186         if (TM.getRelocationModel() == Reloc::PIC_)
187           O << "-\"L" << getFunctionNumber() << "$pb\")";
188         else
189           O << ')';
190       }
191     }
192     void printBranchOperand(const MachineInstr *MI, unsigned OpNo,
193                             raw_ostream &O) {
194       // Branches can take an immediate operand.  This is used by the branch
195       // selection pass to print $+8, an eight byte displacement from the PC.
196       if (MI->getOperand(OpNo).isImm()) {
197         O << "$+" << MI->getOperand(OpNo).getImm()*4;
198       } else {
199         printOp(MI->getOperand(OpNo), O);
200       }
201     }
202     void printCallOperand(const MachineInstr *MI, unsigned OpNo,
203                           raw_ostream &O) {
204       const MachineOperand &MO = MI->getOperand(OpNo);
205       if (TM.getRelocationModel() != Reloc::Static) {
206         if (MO.getType() == MachineOperand::MO_GlobalAddress) {
207           GlobalValue *GV = MO.getGlobal();
208           if (GV->isDeclaration() || GV->isWeakForLinker()) {
209             // Dynamically-resolved functions need a stub for the function.
210             MCSymbol *Sym = GetSymbolWithGlobalValueBase(GV, "$stub");
211             MachineModuleInfoImpl::StubValueTy &StubSym =
212               MMI->getObjFileInfo<MachineModuleInfoMachO>().getFnStubEntry(Sym);
213             if (StubSym.getPointer() == 0)
214               StubSym = MachineModuleInfoImpl::
215                 StubValueTy(Mang->getSymbol(GV), !GV->hasInternalLinkage());
216             O << *Sym;
217             return;
218           }
219         }
220         if (MO.getType() == MachineOperand::MO_ExternalSymbol) {
221           SmallString<128> TempNameStr;
222           TempNameStr += StringRef(MO.getSymbolName());
223           TempNameStr += StringRef("$stub");
224           
225           MCSymbol *Sym = GetExternalSymbolSymbol(TempNameStr.str());
226           MachineModuleInfoImpl::StubValueTy &StubSym =
227             MMI->getObjFileInfo<MachineModuleInfoMachO>().getFnStubEntry(Sym);
228           if (StubSym.getPointer() == 0)
229             StubSym = MachineModuleInfoImpl::
230               StubValueTy(GetExternalSymbolSymbol(MO.getSymbolName()), true);
231           O << *Sym;
232           return;
233         }
234       }
235
236       printOp(MI->getOperand(OpNo), O);
237     }
238     void printAbsAddrOperand(const MachineInstr *MI, unsigned OpNo,
239                              raw_ostream &O) {
240      O << (int)MI->getOperand(OpNo).getImm()*4;
241     }
242     void printPICLabel(const MachineInstr *MI, unsigned OpNo, raw_ostream &O) {
243       O << "\"L" << getFunctionNumber() << "$pb\"\n";
244       O << "\"L" << getFunctionNumber() << "$pb\":";
245     }
246     void printSymbolHi(const MachineInstr *MI, unsigned OpNo, raw_ostream &O) {
247       if (MI->getOperand(OpNo).isImm()) {
248         printS16ImmOperand(MI, OpNo, O);
249       } else {
250         if (Subtarget.isDarwin()) O << "ha16(";
251         printOp(MI->getOperand(OpNo), O);
252         if (TM.getRelocationModel() == Reloc::PIC_)
253           O << "-\"L" << getFunctionNumber() << "$pb\"";
254         if (Subtarget.isDarwin())
255           O << ')';
256         else
257           O << "@ha";
258       }
259     }
260     void printSymbolLo(const MachineInstr *MI, unsigned OpNo, raw_ostream &O) {
261       if (MI->getOperand(OpNo).isImm()) {
262         printS16ImmOperand(MI, OpNo, O);
263       } else {
264         if (Subtarget.isDarwin()) O << "lo16(";
265         printOp(MI->getOperand(OpNo), O);
266         if (TM.getRelocationModel() == Reloc::PIC_)
267           O << "-\"L" << getFunctionNumber() << "$pb\"";
268         if (Subtarget.isDarwin())
269           O << ')';
270         else
271           O << "@l";
272       }
273     }
274     void printcrbitm(const MachineInstr *MI, unsigned OpNo, raw_ostream &O) {
275       unsigned CCReg = MI->getOperand(OpNo).getReg();
276       unsigned RegNo = enumRegToMachineReg(CCReg);
277       O << (0x80 >> RegNo);
278     }
279     // The new addressing mode printers.
280     void printMemRegImm(const MachineInstr *MI, unsigned OpNo, raw_ostream &O) {
281       printSymbolLo(MI, OpNo, O);
282       O << '(';
283       if (MI->getOperand(OpNo+1).isReg() &&
284           MI->getOperand(OpNo+1).getReg() == PPC::R0)
285         O << "0";
286       else
287         printOperand(MI, OpNo+1, O);
288       O << ')';
289     }
290     void printMemRegImmShifted(const MachineInstr *MI, unsigned OpNo,
291                                raw_ostream &O) {
292       if (MI->getOperand(OpNo).isImm())
293         printS16X4ImmOperand(MI, OpNo, O);
294       else
295         printSymbolLo(MI, OpNo, O);
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, O);
302       O << ')';
303     }
304
305     void printMemRegReg(const MachineInstr *MI, unsigned OpNo, raw_ostream &O) {
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, O);
311       O << ", ";
312       printOperand(MI, OpNo+1, O);
313     }
314
315     void printTOCEntryLabel(const MachineInstr *MI, unsigned OpNo,
316                             raw_ostream &O) {
317       const MachineOperand &MO = MI->getOperand(OpNo);
318       assert(MO.getType() == MachineOperand::MO_GlobalAddress);
319       const MCSymbol *Sym = Mang->getSymbol(MO.getGlobal());
320
321       // Map symbol -> label of TOC entry.
322       const MCSymbol *&TOCEntry = TOC[Sym];
323       if (TOCEntry == 0)
324         TOCEntry = OutContext.
325           GetOrCreateSymbol(StringRef(MAI->getPrivateGlobalPrefix()) +
326                             "C" + Twine(LabelID++));
327
328       O << *TOCEntry << "@toc";
329     }
330
331     void printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
332                                raw_ostream &O, const char *Modifier);
333   };
334
335   /// PPCLinuxAsmPrinter - PowerPC assembly printer, customized for Linux
336   class PPCLinuxAsmPrinter : public PPCAsmPrinter {
337   public:
338     explicit PPCLinuxAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
339                                 MCStreamer &Streamer)
340       : PPCAsmPrinter(O, TM, Streamer) {}
341
342     virtual const char *getPassName() const {
343       return "Linux PPC Assembly Printer";
344     }
345
346     bool doFinalization(Module &M);
347
348     virtual void EmitFunctionEntryLabel();
349
350     void getAnalysisUsage(AnalysisUsage &AU) const {
351       AU.setPreservesAll();
352       AU.addRequired<MachineModuleInfo>();
353       AU.addRequired<DwarfWriter>();
354       PPCAsmPrinter::getAnalysisUsage(AU);
355     }
356   };
357
358   /// PPCDarwinAsmPrinter - PowerPC assembly printer, customized for Darwin/Mac
359   /// OS X
360   class PPCDarwinAsmPrinter : public PPCAsmPrinter {
361     formatted_raw_ostream &OS;
362   public:
363     explicit PPCDarwinAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
364                                  MCStreamer &Streamer)
365       : PPCAsmPrinter(O, TM, Streamer), OS(O) {}
366
367     virtual const char *getPassName() const {
368       return "Darwin PPC Assembly Printer";
369     }
370
371     bool doFinalization(Module &M);
372     void EmitStartOfAsmFile(Module &M);
373
374     void EmitFunctionStubs(const MachineModuleInfoMachO::SymbolListTy &Stubs);
375     
376     void getAnalysisUsage(AnalysisUsage &AU) const {
377       AU.setPreservesAll();
378       AU.addRequired<MachineModuleInfo>();
379       AU.addRequired<DwarfWriter>();
380       PPCAsmPrinter::getAnalysisUsage(AU);
381     }
382   };
383 } // end of anonymous namespace
384
385 // Include the auto-generated portion of the assembly writer
386 #include "PPCGenAsmWriter.inc"
387
388 void PPCAsmPrinter::printOp(const MachineOperand &MO, raw_ostream &O) {
389   switch (MO.getType()) {
390   case MachineOperand::MO_Immediate:
391     llvm_unreachable("printOp() does not handle immediate values");
392
393   case MachineOperand::MO_MachineBasicBlock:
394     O << *MO.getMBB()->getSymbol();
395     return;
396   case MachineOperand::MO_JumpTableIndex:
397     O << MAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
398       << '_' << MO.getIndex();
399     // FIXME: PIC relocation model
400     return;
401   case MachineOperand::MO_ConstantPoolIndex:
402     O << MAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber()
403       << '_' << MO.getIndex();
404     return;
405   case MachineOperand::MO_BlockAddress:
406     O << *GetBlockAddressSymbol(MO.getBlockAddress());
407     return;
408   case MachineOperand::MO_ExternalSymbol: {
409     // Computing the address of an external symbol, not calling it.
410     if (TM.getRelocationModel() == Reloc::Static) {
411       O << *GetExternalSymbolSymbol(MO.getSymbolName());
412       return;
413     }
414
415     MCSymbol *NLPSym = 
416       OutContext.GetOrCreateSymbol(StringRef(MAI->getGlobalPrefix())+
417                                    MO.getSymbolName()+"$non_lazy_ptr");
418     MachineModuleInfoImpl::StubValueTy &StubSym = 
419       MMI->getObjFileInfo<MachineModuleInfoMachO>().getGVStubEntry(NLPSym);
420     if (StubSym.getPointer() == 0)
421       StubSym = MachineModuleInfoImpl::
422         StubValueTy(GetExternalSymbolSymbol(MO.getSymbolName()), true);
423     
424     O << *NLPSym;
425     return;
426   }
427   case MachineOperand::MO_GlobalAddress: {
428     // Computing the address of a global symbol, not calling it.
429     GlobalValue *GV = MO.getGlobal();
430     MCSymbol *SymToPrint;
431
432     // External or weakly linked global variables need non-lazily-resolved stubs
433     if (TM.getRelocationModel() != Reloc::Static &&
434         (GV->isDeclaration() || GV->isWeakForLinker())) {
435       if (!GV->hasHiddenVisibility()) {
436         SymToPrint = GetSymbolWithGlobalValueBase(GV, "$non_lazy_ptr");
437         MachineModuleInfoImpl::StubValueTy &StubSym = 
438           MMI->getObjFileInfo<MachineModuleInfoMachO>()
439             .getGVStubEntry(SymToPrint);
440         if (StubSym.getPointer() == 0)
441           StubSym = MachineModuleInfoImpl::
442             StubValueTy(Mang->getSymbol(GV), !GV->hasInternalLinkage());
443       } else if (GV->isDeclaration() || GV->hasCommonLinkage() ||
444                  GV->hasAvailableExternallyLinkage()) {
445         SymToPrint = GetSymbolWithGlobalValueBase(GV, "$non_lazy_ptr");
446         
447         MachineModuleInfoImpl::StubValueTy &StubSym = 
448           MMI->getObjFileInfo<MachineModuleInfoMachO>().
449                     getHiddenGVStubEntry(SymToPrint);
450         if (StubSym.getPointer() == 0)
451           StubSym = MachineModuleInfoImpl::
452             StubValueTy(Mang->getSymbol(GV), !GV->hasInternalLinkage());
453       } else {
454         SymToPrint = Mang->getSymbol(GV);
455       }
456     } else {
457       SymToPrint = Mang->getSymbol(GV);
458     }
459     
460     O << *SymToPrint;
461
462     printOffset(MO.getOffset(), O);
463     return;
464   }
465
466   default:
467     O << "<unknown operand type: " << MO.getType() << ">";
468     return;
469   }
470 }
471
472 /// PrintAsmOperand - Print out an operand for an inline asm expression.
473 ///
474 bool PPCAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
475                                     unsigned AsmVariant,
476                                     const char *ExtraCode, raw_ostream &O) {
477   // Does this asm operand have a single letter operand modifier?
478   if (ExtraCode && ExtraCode[0]) {
479     if (ExtraCode[1] != 0) return true; // Unknown modifier.
480
481     switch (ExtraCode[0]) {
482     default: return true;  // Unknown modifier.
483     case 'c': // Don't print "$" before a global var name or constant.
484       // PPC never has a prefix.
485       printOperand(MI, OpNo, O);
486       return false;
487     case 'L': // Write second word of DImode reference.
488       // Verify that this operand has two consecutive registers.
489       if (!MI->getOperand(OpNo).isReg() ||
490           OpNo+1 == MI->getNumOperands() ||
491           !MI->getOperand(OpNo+1).isReg())
492         return true;
493       ++OpNo;   // Return the high-part.
494       break;
495     case 'I':
496       // Write 'i' if an integer constant, otherwise nothing.  Used to print
497       // addi vs add, etc.
498       if (MI->getOperand(OpNo).isImm())
499         O << "i";
500       return false;
501     }
502   }
503
504   printOperand(MI, OpNo, O);
505   return false;
506 }
507
508 // At the moment, all inline asm memory operands are a single register.
509 // In any case, the output of this routine should always be just one
510 // assembler operand.
511
512 bool PPCAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
513                                           unsigned AsmVariant,
514                                           const char *ExtraCode,
515                                           raw_ostream &O) {
516   if (ExtraCode && ExtraCode[0])
517     return true; // Unknown modifier.
518   assert (MI->getOperand(OpNo).isReg());
519   O << "0(";
520   printOperand(MI, OpNo, O);
521   O << ")";
522   return false;
523 }
524
525 void PPCAsmPrinter::printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
526                                           raw_ostream &O, const char *Modifier){
527   assert(Modifier && "Must specify 'cc' or 'reg' as predicate op modifier!");
528   unsigned Code = MI->getOperand(OpNo).getImm();
529   if (!strcmp(Modifier, "cc")) {
530     switch ((PPC::Predicate)Code) {
531     case PPC::PRED_ALWAYS: return; // Don't print anything for always.
532     case PPC::PRED_LT: O << "lt"; return;
533     case PPC::PRED_LE: O << "le"; return;
534     case PPC::PRED_EQ: O << "eq"; return;
535     case PPC::PRED_GE: O << "ge"; return;
536     case PPC::PRED_GT: O << "gt"; return;
537     case PPC::PRED_NE: O << "ne"; return;
538     case PPC::PRED_UN: O << "un"; return;
539     case PPC::PRED_NU: O << "nu"; return;
540     }
541
542   } else {
543     assert(!strcmp(Modifier, "reg") &&
544            "Need to specify 'cc' or 'reg' as predicate op modifier!");
545     // Don't print the register for 'always'.
546     if (Code == PPC::PRED_ALWAYS) return;
547     printOperand(MI, OpNo+1, O);
548   }
549 }
550
551
552 /// EmitInstruction -- Print out a single PowerPC MI in Darwin syntax to
553 /// the current output stream.
554 ///
555 void PPCAsmPrinter::EmitInstruction(const MachineInstr *MI) {
556   // Check for slwi/srwi mnemonics.
557   if (MI->getOpcode() == PPC::RLWINM) {
558     unsigned char SH = MI->getOperand(2).getImm();
559     unsigned char MB = MI->getOperand(3).getImm();
560     unsigned char ME = MI->getOperand(4).getImm();
561     bool useSubstituteMnemonic = false;
562     if (SH <= 31 && MB == 0 && ME == (31-SH)) {
563       O << "\tslwi "; useSubstituteMnemonic = true;
564     }
565     if (SH <= 31 && MB == (32-SH) && ME == 31) {
566       O << "\tsrwi "; useSubstituteMnemonic = true;
567       SH = 32-SH;
568     }
569     if (useSubstituteMnemonic) {
570       printOperand(MI, 0, O);
571       O << ", ";
572       printOperand(MI, 1, O);
573       O << ", " << (unsigned int)SH;
574       OutStreamer.AddBlankLine();
575       return;
576     }
577   }
578   
579   if ((MI->getOpcode() == PPC::OR || MI->getOpcode() == PPC::OR8) &&
580       MI->getOperand(1).getReg() == MI->getOperand(2).getReg()) {
581     O << "\tmr ";
582     printOperand(MI, 0, O);
583     O << ", ";
584     printOperand(MI, 1, O);
585     OutStreamer.AddBlankLine();
586     return;
587   }
588   
589   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, O);
596       O << ", ";
597       printOperand(MI, 1, O);
598       O << ", " << (unsigned int)SH;
599       OutStreamer.AddBlankLine();
600       return;
601     }
602   }
603
604   printInstruction(MI, O);
605   OutStreamer.AddBlankLine();
606 }
607
608 void PPCLinuxAsmPrinter::EmitFunctionEntryLabel() {
609   if (!Subtarget.isPPC64())  // linux/ppc32 - Normal entry label.
610     return AsmPrinter::EmitFunctionEntryLabel();
611     
612   // Emit an official procedure descriptor.
613   // FIXME 64-bit SVR4: Use MCSection here!
614   O << "\t.section\t\".opd\",\"aw\"\n";
615   O << "\t.align 3\n";
616   OutStreamer.EmitLabel(CurrentFnSym);
617   O << "\t.quad .L." << *CurrentFnSym << ",.TOC.@tocbase\n";
618   O << "\t.previous\n";
619   O << ".L." << *CurrentFnSym << ":\n";
620 }
621
622
623 bool PPCLinuxAsmPrinter::doFinalization(Module &M) {
624   const TargetData *TD = TM.getTargetData();
625
626   bool isPPC64 = TD->getPointerSizeInBits() == 64;
627
628   if (isPPC64 && !TOC.empty()) {
629     // FIXME 64-bit SVR4: Use MCSection here?
630     O << "\t.section\t\".toc\",\"aw\"\n";
631
632     // FIXME: This is nondeterminstic!
633     for (DenseMap<const MCSymbol*, const MCSymbol*>::iterator I = TOC.begin(),
634          E = TOC.end(); I != E; ++I) {
635       O << *I->second << ":\n";
636       O << "\t.tc " << *I->first << "[TC]," << *I->first << '\n';
637     }
638   }
639
640   return AsmPrinter::doFinalization(M);
641 }
642
643 void PPCDarwinAsmPrinter::EmitStartOfAsmFile(Module &M) {
644   static const char *const CPUDirectives[] = {
645     "",
646     "ppc",
647     "ppc601",
648     "ppc602",
649     "ppc603",
650     "ppc7400",
651     "ppc750",
652     "ppc970",
653     "ppc64"
654   };
655
656   unsigned Directive = Subtarget.getDarwinDirective();
657   if (Subtarget.isGigaProcessor() && Directive < PPC::DIR_970)
658     Directive = PPC::DIR_970;
659   if (Subtarget.hasAltivec() && Directive < PPC::DIR_7400)
660     Directive = PPC::DIR_7400;
661   if (Subtarget.isPPC64() && Directive < PPC::DIR_970)
662     Directive = PPC::DIR_64;
663   assert(Directive <= PPC::DIR_64 && "Directive out of range.");
664   O << "\t.machine " << CPUDirectives[Directive] << '\n';
665
666   // Prime text sections so they are adjacent.  This reduces the likelihood a
667   // large data or debug section causes a branch to exceed 16M limit.
668   TargetLoweringObjectFileMachO &TLOFMacho = 
669     static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
670   OutStreamer.SwitchSection(TLOFMacho.getTextCoalSection());
671   if (TM.getRelocationModel() == Reloc::PIC_) {
672     OutStreamer.SwitchSection(
673             TLOFMacho.getMachOSection("__TEXT", "__picsymbolstub1",
674                                       MCSectionMachO::S_SYMBOL_STUBS |
675                                       MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
676                                       32, SectionKind::getText()));
677   } else if (TM.getRelocationModel() == Reloc::DynamicNoPIC) {
678     OutStreamer.SwitchSection(
679             TLOFMacho.getMachOSection("__TEXT","__symbol_stub1",
680                                       MCSectionMachO::S_SYMBOL_STUBS |
681                                       MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
682                                       16, SectionKind::getText()));
683   }
684   OutStreamer.SwitchSection(getObjFileLowering().getTextSection());
685 }
686
687 static const MCSymbol *GetLazyPtr(const MCSymbol *Sym, MCContext &Ctx) {
688   // Remove $stub suffix, add $lazy_ptr.
689   SmallString<128> TmpStr(Sym->getName().begin(), Sym->getName().end()-5);
690   TmpStr += "$lazy_ptr";
691   return Ctx.GetOrCreateSymbol(TmpStr.str());
692 }
693
694 static const MCSymbol *GetAnonSym(const MCSymbol *Sym, MCContext &Ctx) {
695   // Add $tmp suffix to $stub, yielding $stub$tmp.
696   SmallString<128> TmpStr(Sym->getName().begin(), Sym->getName().end());
697   TmpStr += "$tmp";
698   return Ctx.GetOrCreateSymbol(TmpStr.str());
699 }
700
701 void PPCDarwinAsmPrinter::
702 EmitFunctionStubs(const MachineModuleInfoMachO::SymbolListTy &Stubs) {
703   bool isPPC64 = TM.getTargetData()->getPointerSizeInBits() == 64;
704   
705   TargetLoweringObjectFileMachO &TLOFMacho = 
706     static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
707
708   // .lazy_symbol_pointer
709   const MCSection *LSPSection = TLOFMacho.getLazySymbolPointerSection();
710   
711   // Output stubs for dynamically-linked functions
712   if (TM.getRelocationModel() == Reloc::PIC_) {
713     const MCSection *StubSection = 
714     TLOFMacho.getMachOSection("__TEXT", "__picsymbolstub1",
715                               MCSectionMachO::S_SYMBOL_STUBS |
716                               MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
717                               32, SectionKind::getText());
718     for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
719       OutStreamer.SwitchSection(StubSection);
720       EmitAlignment(4);
721       
722       const MCSymbol *Stub = Stubs[i].first;
723       const MCSymbol *RawSym = Stubs[i].second.getPointer();
724       const MCSymbol *LazyPtr = GetLazyPtr(Stub, OutContext);
725       const MCSymbol *AnonSymbol = GetAnonSym(Stub, OutContext);
726                                            
727       O << *Stub << ":\n";
728       O << "\t.indirect_symbol " << *RawSym << '\n';
729       O << "\tmflr r0\n";
730       O << "\tbcl 20,31," << *AnonSymbol << '\n';
731       O << *AnonSymbol << ":\n";
732       O << "\tmflr r11\n";
733       O << "\taddis r11,r11,ha16(" << *LazyPtr << '-' << *AnonSymbol
734       << ")\n";
735       O << "\tmtlr r0\n";
736       O << (isPPC64 ? "\tldu" : "\tlwzu") << " r12,lo16(" << *LazyPtr
737       << '-' << *AnonSymbol << ")(r11)\n";
738       O << "\tmtctr r12\n";
739       O << "\tbctr\n";
740       
741       OutStreamer.SwitchSection(LSPSection);
742       O << *LazyPtr << ":\n";
743       O << "\t.indirect_symbol " << *RawSym << '\n';
744       O << (isPPC64 ? "\t.quad" : "\t.long") << " dyld_stub_binding_helper\n";
745     }
746     O << '\n';
747     return;
748   }
749   
750   const MCSection *StubSection =
751     TLOFMacho.getMachOSection("__TEXT","__symbol_stub1",
752                               MCSectionMachO::S_SYMBOL_STUBS |
753                               MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
754                               16, SectionKind::getText());
755   for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
756     const MCSymbol *Stub = Stubs[i].first;
757     const MCSymbol *RawSym = Stubs[i].second.getPointer();
758     const MCSymbol *LazyPtr = GetLazyPtr(Stub, OutContext);
759
760     OutStreamer.SwitchSection(StubSection);
761     EmitAlignment(4);
762     O << *Stub << ":\n";
763     O << "\t.indirect_symbol " << *RawSym << '\n';
764     O << "\tlis r11,ha16(" << *LazyPtr << ")\n";
765     O << (isPPC64 ? "\tldu" :  "\tlwzu") << " r12,lo16(" << *LazyPtr
766     << ")(r11)\n";
767     O << "\tmtctr r12\n";
768     O << "\tbctr\n";
769     OutStreamer.SwitchSection(LSPSection);
770     O << *LazyPtr << ":\n";
771     O << "\t.indirect_symbol " << *RawSym << '\n';
772     O << (isPPC64 ? "\t.quad" : "\t.long") << " dyld_stub_binding_helper\n";
773   }
774   
775   O << '\n';
776 }
777
778
779 bool PPCDarwinAsmPrinter::doFinalization(Module &M) {
780   bool isPPC64 = TM.getTargetData()->getPointerSizeInBits() == 64;
781
782   // Darwin/PPC always uses mach-o.
783   TargetLoweringObjectFileMachO &TLOFMacho = 
784     static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
785   MachineModuleInfoMachO &MMIMacho =
786     MMI->getObjFileInfo<MachineModuleInfoMachO>();
787   
788   MachineModuleInfoMachO::SymbolListTy Stubs = MMIMacho.GetFnStubList();
789   if (!Stubs.empty())
790     EmitFunctionStubs(Stubs);
791
792   if (MAI->doesSupportExceptionHandling() && MMI) {
793     // Add the (possibly multiple) personalities to the set of global values.
794     // Only referenced functions get into the Personalities list.
795     const std::vector<Function *> &Personalities = MMI->getPersonalities();
796     for (std::vector<Function *>::const_iterator I = Personalities.begin(),
797          E = Personalities.end(); I != E; ++I) {
798       if (*I) {
799         MCSymbol *NLPSym = GetSymbolWithGlobalValueBase(*I, "$non_lazy_ptr");
800         MachineModuleInfoImpl::StubValueTy &StubSym =
801           MMIMacho.getGVStubEntry(NLPSym);
802         StubSym = MachineModuleInfoImpl::StubValueTy(Mang->getSymbol(*I), true);
803       }
804     }
805   }
806
807   // Output stubs for dynamically-linked functions.
808   Stubs = MMIMacho.GetGVStubList();
809   
810   // Output macho stubs for external and common global variables.
811   if (!Stubs.empty()) {
812     // Switch with ".non_lazy_symbol_pointer" directive.
813     OutStreamer.SwitchSection(TLOFMacho.getNonLazySymbolPointerSection());
814     EmitAlignment(isPPC64 ? 3 : 2);
815     
816     for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
817       // L_foo$stub:
818       OutStreamer.EmitLabel(Stubs[i].first);
819       //   .indirect_symbol _foo
820       MachineModuleInfoImpl::StubValueTy &MCSym = Stubs[i].second;
821       OutStreamer.EmitSymbolAttribute(MCSym.getPointer(), MCSA_IndirectSymbol);
822
823       if (MCSym.getInt())
824         // External to current translation unit.
825         OutStreamer.EmitIntValue(0, isPPC64 ? 8 : 4/*size*/, 0/*addrspace*/);
826       else
827         // Internal to current translation unit.
828         //
829         // When we place the LSDA into the TEXT section, the type info pointers
830         // need to be indirect and pc-rel. We accomplish this by using NLPs.
831         // However, sometimes the types are local to the file. So we need to
832         // fill in the value for the NLP in those cases.
833         OutStreamer.EmitValue(MCSymbolRefExpr::Create(MCSym.getPointer(),
834                                                       OutContext),
835                               isPPC64 ? 8 : 4/*size*/, 0/*addrspace*/);
836     }
837
838     Stubs.clear();
839     OutStreamer.AddBlankLine();
840   }
841
842   Stubs = MMIMacho.GetHiddenGVStubList();
843   if (!Stubs.empty()) {
844     OutStreamer.SwitchSection(getObjFileLowering().getDataSection());
845     EmitAlignment(isPPC64 ? 3 : 2);
846     
847     for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
848       // L_foo$stub:
849       OutStreamer.EmitLabel(Stubs[i].first);
850       //   .long _foo
851       OutStreamer.EmitValue(MCSymbolRefExpr::
852                             Create(Stubs[i].second.getPointer(),
853                                    OutContext),
854                             isPPC64 ? 8 : 4/*size*/, 0/*addrspace*/);
855     }
856
857     Stubs.clear();
858     OutStreamer.AddBlankLine();
859   }
860
861   // Funny Darwin hack: This flag tells the linker that no global symbols
862   // contain code that falls through to other global symbols (e.g. the obvious
863   // implementation of multiple entry points).  If this doesn't occur, the
864   // linker can safely perform dead code stripping.  Since LLVM never generates
865   // code that does this, it is always safe to set.
866   OutStreamer.EmitAssemblerFlag(MCAF_SubsectionsViaSymbols);
867
868   return AsmPrinter::doFinalization(M);
869 }
870
871 /// createPPCAsmPrinterPass - Returns a pass that prints the PPC assembly code
872 /// for a MachineFunction to the given output stream, in a format that the
873 /// Darwin assembler can deal with.
874 ///
875 static AsmPrinter *createPPCAsmPrinterPass(formatted_raw_ostream &o,
876                                            TargetMachine &tm,
877                                            MCStreamer &Streamer) {
878   const PPCSubtarget *Subtarget = &tm.getSubtarget<PPCSubtarget>();
879
880   if (Subtarget->isDarwin())
881     return new PPCDarwinAsmPrinter(o, tm, Streamer);
882   return new PPCLinuxAsmPrinter(o, tm, Streamer);
883 }
884
885 // Force static initialization.
886 extern "C" void LLVMInitializePowerPCAsmPrinter() { 
887   TargetRegistry::RegisterAsmPrinter(ThePPC32Target, createPPCAsmPrinterPass);
888   TargetRegistry::RegisterAsmPrinter(ThePPC64Target, createPPCAsmPrinterPass);
889 }