* Lowercase the register names
[oota-llvm.git] / lib / Target / PowerPC / PowerPCAsmPrinter.cpp
1 //===-- PPC32/Printer.cpp - Convert X86 LLVM code to Intel assembly ---------===//
2 // 
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 // 
8 //===----------------------------------------------------------------------===//
9 //
10 // This file contains a printer that converts from our internal
11 // representation of machine-dependent LLVM code to Intel-format
12 // assembly language. This printer is the output mechanism used
13 // by `llc' and `lli -print-machineinstrs' on X86.
14 //
15 //===----------------------------------------------------------------------===//
16
17 #define DEBUG_TYPE "asmprinter"
18 #include "PowerPC.h"
19 #include "PowerPCInstrInfo.h"
20 #include "llvm/Constants.h"
21 #include "llvm/DerivedTypes.h"
22 #include "llvm/Module.h"
23 #include "llvm/Assembly/Writer.h"
24 #include "llvm/CodeGen/MachineConstantPool.h"
25 #include "llvm/CodeGen/MachineFunctionPass.h"
26 #include "llvm/CodeGen/MachineInstr.h"
27 #include "llvm/Target/TargetMachine.h"
28 #include "llvm/Support/Mangler.h"
29 #include "Support/CommandLine.h"
30 #include "Support/Debug.h"
31 #include "Support/Statistic.h"
32 #include "Support/StringExtras.h"
33 #include <set>
34
35 namespace llvm {
36
37 namespace {
38   Statistic<> EmittedInsts("asm-printer", "Number of machine instrs printed");
39
40   struct Printer : public MachineFunctionPass {
41     /// Output stream on which we're printing assembly code.
42     ///
43     std::ostream &O;
44
45     /// Target machine description which we query for reg. names, data
46     /// layout, etc.
47     ///
48     TargetMachine &TM;
49
50     /// Name-mangler for global names.
51     ///
52     Mangler *Mang;
53     std::set< std::string > Stubs;
54     std::set<std::string> Strings;
55
56     Printer(std::ostream &o, TargetMachine &tm) : O(o), TM(tm) { }
57
58     /// We name each basic block in a Function with a unique number, so
59     /// that we can consistently refer to them later. This is cleared
60     /// at the beginning of each call to runOnMachineFunction().
61     ///
62     typedef std::map<const Value *, unsigned> ValueMapTy;
63     ValueMapTy NumberForBB;
64
65     /// Cache of mangled name for current function. This is
66     /// recalculated at the beginning of each call to
67     /// runOnMachineFunction().
68     ///
69     std::string CurrentFnName;
70
71     virtual const char *getPassName() const {
72       return "PowerPC Assembly Printer";
73     }
74
75     void printMachineInstruction(const MachineInstr *MI);
76     void printOp(const MachineOperand &MO,
77     bool elideOffsetKeyword = false);
78     void printConstantPool(MachineConstantPool *MCP);
79     bool runOnMachineFunction(MachineFunction &F);    
80     bool doInitialization(Module &M);
81     bool doFinalization(Module &M);
82     void emitGlobalConstant(const Constant* CV);
83     void emitConstantValueOnly(const Constant *CV);
84   };
85 } // end of anonymous namespace
86
87 /// createPPCCodePrinterPass - Returns a pass that prints the X86
88 /// assembly code for a MachineFunction to the given output stream,
89 /// using the given target machine description.  This should work
90 /// regardless of whether the function is in SSA form.
91 ///
92 FunctionPass *createPPCCodePrinterPass(std::ostream &o,TargetMachine &tm){
93   return new Printer(o, tm);
94 }
95
96 /// isStringCompatible - Can we treat the specified array as a string?
97 /// Only if it is an array of ubytes or non-negative sbytes.
98 ///
99 static bool isStringCompatible(const ConstantArray *CVA) {
100   const Type *ETy = cast<ArrayType>(CVA->getType())->getElementType();
101   if (ETy == Type::UByteTy) return true;
102   if (ETy != Type::SByteTy) return false;
103
104   for (unsigned i = 0; i < CVA->getNumOperands(); ++i)
105     if (cast<ConstantSInt>(CVA->getOperand(i))->getValue() < 0)
106       return false;
107
108   return true;
109 }
110
111 /// toOctal - Convert the low order bits of X into an octal digit.
112 ///
113 static inline char toOctal(int X) {
114   return (X&7)+'0';
115 }
116
117 /// getAsCString - Return the specified array as a C compatible
118 /// string, only if the predicate isStringCompatible is true.
119 ///
120 static void printAsCString(std::ostream &O, const ConstantArray *CVA) {
121   assert(isStringCompatible(CVA) && "Array is not string compatible!");
122
123   O << "\"";
124   for (unsigned i = 0; i < CVA->getNumOperands(); ++i) {
125     unsigned char C = cast<ConstantInt>(CVA->getOperand(i))->getRawValue();
126
127     if (C == '"') {
128       O << "\\\"";
129     } else if (C == '\\') {
130       O << "\\\\";
131     } else if (isprint(C)) {
132       O << C;
133     } else {
134       switch(C) {
135       case '\b': O << "\\b"; break;
136       case '\f': O << "\\f"; break;
137       case '\n': O << "\\n"; break;
138       case '\r': O << "\\r"; break;
139       case '\t': O << "\\t"; break;
140       default:
141         O << '\\';
142         O << toOctal(C >> 6);
143         O << toOctal(C >> 3);
144         O << toOctal(C >> 0);
145         break;
146       }
147     }
148   }
149   O << "\"";
150 }
151
152 // Print out the specified constant, without a storage class.  Only the
153 // constants valid in constant expressions can occur here.
154 void Printer::emitConstantValueOnly(const Constant *CV) {
155   if (CV->isNullValue())
156     O << "0";
157   else if (const ConstantBool *CB = dyn_cast<ConstantBool>(CV)) {
158     assert(CB == ConstantBool::True);
159     O << "1";
160   } else if (const ConstantSInt *CI = dyn_cast<ConstantSInt>(CV))
161     O << CI->getValue();
162   else if (const ConstantUInt *CI = dyn_cast<ConstantUInt>(CV))
163     O << CI->getValue();
164   else if (const ConstantPointerRef *CPR = dyn_cast<ConstantPointerRef>(CV))
165     // This is a constant address for a global variable or function.  Use the
166     // name of the variable or function as the address value.
167     O << Mang->getValueName(CPR->getValue());
168   else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV)) {
169     const TargetData &TD = TM.getTargetData();
170     switch(CE->getOpcode()) {
171     case Instruction::GetElementPtr: {
172       // generate a symbolic expression for the byte address
173       const Constant *ptrVal = CE->getOperand(0);
174       std::vector<Value*> idxVec(CE->op_begin()+1, CE->op_end());
175       if (unsigned Offset = TD.getIndexedOffset(ptrVal->getType(), idxVec)) {
176         O << "(";
177         emitConstantValueOnly(ptrVal);
178         O << ") + " << Offset;
179       } else {
180         emitConstantValueOnly(ptrVal);
181       }
182       break;
183     }
184     case Instruction::Cast: {
185       // Support only non-converting or widening casts for now, that is, ones
186       // that do not involve a change in value.  This assertion is really gross,
187       // and may not even be a complete check.
188       Constant *Op = CE->getOperand(0);
189       const Type *OpTy = Op->getType(), *Ty = CE->getType();
190
191       // Remember, kids, pointers on x86 can be losslessly converted back and
192       // forth into 32-bit or wider integers, regardless of signedness. :-P
193       assert(((isa<PointerType>(OpTy)
194                && (Ty == Type::LongTy || Ty == Type::ULongTy
195                    || Ty == Type::IntTy || Ty == Type::UIntTy))
196               || (isa<PointerType>(Ty)
197                   && (OpTy == Type::LongTy || OpTy == Type::ULongTy
198                       || OpTy == Type::IntTy || OpTy == Type::UIntTy))
199               || (((TD.getTypeSize(Ty) >= TD.getTypeSize(OpTy))
200                    && OpTy->isLosslesslyConvertibleTo(Ty))))
201              && "FIXME: Don't yet support this kind of constant cast expr");
202       O << "(";
203       emitConstantValueOnly(Op);
204       O << ")";
205       break;
206     }
207     case Instruction::Add:
208       O << "(";
209       emitConstantValueOnly(CE->getOperand(0));
210       O << ") + (";
211       emitConstantValueOnly(CE->getOperand(1));
212       O << ")";
213       break;
214     default:
215       assert(0 && "Unsupported operator!");
216     }
217   } else {
218     assert(0 && "Unknown constant value!");
219   }
220 }
221
222 // Print a constant value or values, with the appropriate storage class as a
223 // prefix.
224 void Printer::emitGlobalConstant(const Constant *CV) {  
225   const TargetData &TD = TM.getTargetData();
226
227   if (CV->isNullValue()) {
228     O << "\t.space\t " << TD.getTypeSize(CV->getType()) << "\n";      
229     return;
230   } else if (const ConstantArray *CVA = dyn_cast<ConstantArray>(CV)) {
231     if (isStringCompatible(CVA)) {
232       O << ".ascii";
233       printAsCString(O, CVA);
234       O << "\n";
235     } else { // Not a string.  Print the values in successive locations
236       const std::vector<Use> &constValues = CVA->getValues();
237       for (unsigned i=0; i < constValues.size(); i++)
238         emitGlobalConstant(cast<Constant>(constValues[i].get()));
239     }
240     return;
241   } else if (const ConstantStruct *CVS = dyn_cast<ConstantStruct>(CV)) {
242     // Print the fields in successive locations. Pad to align if needed!
243     const StructLayout *cvsLayout = TD.getStructLayout(CVS->getType());
244     const std::vector<Use>& constValues = CVS->getValues();
245     unsigned sizeSoFar = 0;
246     for (unsigned i=0, N = constValues.size(); i < N; i++) {
247       const Constant* field = cast<Constant>(constValues[i].get());
248
249       // Check if padding is needed and insert one or more 0s.
250       unsigned fieldSize = TD.getTypeSize(field->getType());
251       unsigned padSize = ((i == N-1? cvsLayout->StructSize
252                            : cvsLayout->MemberOffsets[i+1])
253                           - cvsLayout->MemberOffsets[i]) - fieldSize;
254       sizeSoFar += fieldSize + padSize;
255
256       // Now print the actual field value
257       emitGlobalConstant(field);
258
259       // Insert the field padding unless it's zero bytes...
260       if (padSize)
261         O << "\t.space\t " << padSize << "\n";      
262     }
263     assert(sizeSoFar == cvsLayout->StructSize &&
264            "Layout of constant struct may be incorrect!");
265     return;
266   } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) {
267     // FP Constants are printed as integer constants to avoid losing
268     // precision...
269     double Val = CFP->getValue();
270     switch (CFP->getType()->getTypeID()) {
271     default: assert(0 && "Unknown floating point type!");
272     case Type::FloatTyID: {
273       union FU {                            // Abide by C TBAA rules
274         float FVal;
275         unsigned UVal;
276       } U;
277       U.FVal = Val;
278       O << ".long\t" << U.UVal << "\t# float " << Val << "\n";
279       return;
280     }
281     case Type::DoubleTyID: {
282       union DU {                            // Abide by C TBAA rules
283         double FVal;
284         uint64_t UVal;
285         struct {
286           uint32_t MSWord;
287           uint32_t LSWord;
288         } T;
289       } U;
290       U.FVal = Val;
291       
292       O << ".long\t" << U.T.MSWord << "\t# double most significant word " 
293         << Val << "\n";
294       O << ".long\t" << U.T.LSWord << "\t# double least significant word" 
295         << Val << "\n";
296       return;
297     }
298     }
299   } else if (CV->getType()->getPrimitiveSize() == 64) {
300     const ConstantInt *CI = dyn_cast<ConstantInt>(CV);
301     if(CI) {
302     union DU {                            // Abide by C TBAA rules
303         int64_t UVal;
304         struct {
305           uint32_t MSWord;
306           uint32_t LSWord;
307         } T;
308       } U;
309       U.UVal = CI->getRawValue();
310         
311       O << ".long\t" << U.T.MSWord << "\t# Double-word most significant word " 
312         << U.UVal << "\n";
313       O << ".long\t" << U.T.LSWord << "\t# Double-word least significant word" 
314         << U.UVal << "\n";
315       return;
316     }
317   }
318
319   const Type *type = CV->getType();
320   O << "\t";
321   switch (type->getTypeID()) {
322   case Type::UByteTyID: case Type::SByteTyID:
323     O << ".byte";
324     break;
325   case Type::UShortTyID: case Type::ShortTyID:
326     O << ".short";
327     break;
328   case Type::BoolTyID: 
329   case Type::PointerTyID:
330   case Type::UIntTyID: case Type::IntTyID:
331     O << ".long";
332     break;
333   case Type::ULongTyID: case Type::LongTyID:    
334     assert (0 && "Should have already output double-word constant.");
335   case Type::FloatTyID: case Type::DoubleTyID:
336     assert (0 && "Should have already output floating point constant.");
337   default:
338     assert (0 && "Can't handle printing this type of thing");
339     break;
340   }
341   O << "\t";
342   emitConstantValueOnly(CV);
343   O << "\n";
344 }
345
346 /// printConstantPool - Print to the current output stream assembly
347 /// representations of the constants in the constant pool MCP. This is
348 /// used to print out constants which have been "spilled to memory" by
349 /// the code generator.
350 ///
351 void Printer::printConstantPool(MachineConstantPool *MCP) {
352   const std::vector<Constant*> &CP = MCP->getConstants();
353   const TargetData &TD = TM.getTargetData();
354  
355   if (CP.empty()) return;
356
357   for (unsigned i = 0, e = CP.size(); i != e; ++i) {
358     O << "\t.const\n";
359     O << "\t.align " << (unsigned)TD.getTypeAlignment(CP[i]->getType())
360       << "\n";
361     O << ".CPI" << CurrentFnName << "_" << i << ":\t\t\t\t\t#"
362       << *CP[i] << "\n";
363     emitGlobalConstant(CP[i]);
364   }
365 }
366
367 /// runOnMachineFunction - This uses the printMachineInstruction()
368 /// method to print assembly for each instruction.
369 ///
370 bool Printer::runOnMachineFunction(MachineFunction &MF) {
371   // BBNumber is used here so that a given Printer will never give two
372   // BBs the same name. (If you have a better way, please let me know!)
373   static unsigned BBNumber = 0;
374
375   O << "\n\n";
376   // What's my mangled name?
377   CurrentFnName = Mang->getValueName(MF.getFunction());
378
379   // Print out constants referenced by the function
380   printConstantPool(MF.getConstantPool());
381
382   // Print out labels for the function.
383   O << "\t.text\n"; 
384   O << "\t.globl\t" << CurrentFnName << "\n";
385   O << "\t.align 5\n";
386   O << CurrentFnName << ":\n";
387
388   // Number each basic block so that we can consistently refer to them
389   // in PC-relative references.
390   NumberForBB.clear();
391   for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
392        I != E; ++I) {
393     NumberForBB[I->getBasicBlock()] = BBNumber++;
394   }
395
396   // Print out code for the function.
397   for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
398        I != E; ++I) {
399     // Print a label for the basic block.
400     O << "L" << NumberForBB[I->getBasicBlock()] << ":\t# "
401       << I->getBasicBlock()->getName() << "\n";
402     for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
403       II != E; ++II) {
404       // Print the assembly for the instruction.
405       O << "\t";
406       printMachineInstruction(II);
407     }
408   }
409
410   // We didn't modify anything.
411   return false;
412 }
413
414
415
416 void Printer::printOp(const MachineOperand &MO,
417                       bool elideOffsetKeyword /* = false */) {
418   const MRegisterInfo &RI = *TM.getRegisterInfo();
419   int new_symbol;
420   
421   switch (MO.getType()) {
422   case MachineOperand::MO_VirtualRegister:
423     if (Value *V = MO.getVRegValueOrNull()) {
424       O << "<" << V->getName() << ">";
425       return;
426     }
427     // FALLTHROUGH
428   case MachineOperand::MO_MachineRegister:
429     O << LowercaseString(RI.get(MO.getReg()).Name);
430     return;
431
432   case MachineOperand::MO_SignExtendedImmed:
433   case MachineOperand::MO_UnextendedImmed:
434     O << (int)MO.getImmedValue();
435     return;
436   case MachineOperand::MO_MachineBasicBlock: {
437     MachineBasicBlock *MBBOp = MO.getMachineBasicBlock();
438     O << ".LBB" << Mang->getValueName(MBBOp->getParent()->getFunction())
439       << "_" << MBBOp->getNumber () << "\t# "
440       << MBBOp->getBasicBlock ()->getName ();
441     return;
442   }
443   case MachineOperand::MO_PCRelativeDisp:
444     std::cerr << "Shouldn't use addPCDisp() when building PPC MachineInstrs";
445     abort ();
446     return;
447   case MachineOperand::MO_GlobalAddress:
448     if (!elideOffsetKeyword) {
449       if(isa<Function>(MO.getGlobal())) {
450         Stubs.insert(Mang->getValueName(MO.getGlobal()));
451         O << "L" << Mang->getValueName(MO.getGlobal()) << "$stub";
452       } else {
453         O << Mang->getValueName(MO.getGlobal());
454       }
455     }
456     return;
457   case MachineOperand::MO_ExternalSymbol:
458     O << MO.getSymbolName();
459     return;
460   default:
461     O << "<unknown operand type>"; return;    
462   }
463 }
464
465 #if 0
466 static inline
467 unsigned int ValidOpcodes(const MachineInstr *MI, unsigned int ArgType[5]) {
468   int i;
469   unsigned int retval = 1;
470   
471   for(i = 0; i<5; i++) {
472     switch(ArgType[i]) {
473       case none:
474         break;
475       case Gpr:
476       case Gpr0:
477         Type::UIntTy
478       case Simm16:
479       case Zimm16:
480       case PCRelimm24:
481       case Imm24:
482       case Imm5:
483       case PCRelimm14:
484       case Imm14:
485       case Imm2:
486       case Crf:
487       case Imm3:
488       case Imm1:
489       case Fpr:
490       case Imm4:
491       case Imm8:
492       case Disimm16:
493       case Spr:
494       case Sgr:
495   };
496     
497     }
498   }
499 }
500 #endif
501
502 /// printMachineInstruction -- Print out a single PPC32 LLVM instruction
503 /// MI in Darwin syntax to the current output stream.
504 ///
505 void Printer::printMachineInstruction(const MachineInstr *MI) {
506   unsigned Opcode = MI->getOpcode();
507   const TargetInstrInfo &TII = *TM.getInstrInfo();
508   const TargetInstrDescriptor &Desc = TII.get(Opcode);
509   unsigned int i;
510   
511   unsigned int ArgCount = Desc.TSFlags & PPC32II::ArgCountMask;
512   unsigned int ArgType[5];
513
514   ArgType[0] = (Desc.TSFlags >> PPC32II::Arg0TypeShift) & PPC32II::ArgTypeMask;
515   ArgType[1] = (Desc.TSFlags >> PPC32II::Arg1TypeShift) & PPC32II::ArgTypeMask;
516   ArgType[2] = (Desc.TSFlags >> PPC32II::Arg2TypeShift) & PPC32II::ArgTypeMask;
517   ArgType[3] = (Desc.TSFlags >> PPC32II::Arg3TypeShift) & PPC32II::ArgTypeMask;
518   ArgType[4] = (Desc.TSFlags >> PPC32II::Arg4TypeShift) & PPC32II::ArgTypeMask;
519   
520   assert(((Desc.TSFlags & PPC32II::VMX) == 0) &&
521          "Instruction requires VMX support");
522   assert(((Desc.TSFlags & PPC32II::PPC64) == 0) &&
523          "Instruction requires 64 bit support");
524   //assert ( ValidOpcodes(MI, ArgType) && "Instruction has invalid inputs");
525   ++EmittedInsts;
526
527   if (Opcode == PPC32::MovePCtoLR) {
528     O << "mflr r0\n";
529     O << "bcl 20,31,L" << CurrentFnName << "$pb\n";
530     O  << "L" << CurrentFnName << "$pb:\n";
531     return;
532   }
533
534   O << TII.getName(MI->getOpcode()) << " ";
535   DEBUG(std::cerr << TII.getName(MI->getOpcode()) << " expects " 
536                   << ArgCount << " args\n");
537
538   if (Opcode == PPC32::LOADLoAddr) {
539     printOp(MI->getOperand(0));
540     O << ", ";
541     printOp(MI->getOperand(1));
542     O << ", lo16(";
543     printOp(MI->getOperand(2));
544     O << "-L" << CurrentFnName << "$pb)\n";
545     return;
546   }
547
548   if (Opcode == PPC32::LOADHiAddr) {
549     printOp(MI->getOperand(0));
550     O << ", ";
551     printOp(MI->getOperand(1));
552     O << ", ha16(" ;
553     printOp(MI->getOperand(2));
554      O << "-L" << CurrentFnName << "$pb)\n";
555     return;
556   }
557   
558   if (ArgCount == 3 && ArgType[1] == PPC32II::Disimm16) {
559     printOp(MI->getOperand(0));
560     O << ", ";
561     printOp(MI->getOperand(1));
562     O << "(";
563     if (ArgType[2] == PPC32II::Gpr0 && MI->getOperand(2).getReg() == PPC32::R0)
564       O << "0";
565     else
566       printOp(MI->getOperand(2));
567     O << ")\n";
568   } else {
569     for (i = 0; i < ArgCount; ++i) {
570       if (ArgType[i] == PPC32II::Gpr0 && 
571           MI->getOperand(i).getReg() == PPC32::R0)
572         O << "0";
573       else {
574         //std::cout << "DEBUG " << (*(TM.getRegisterInfo())).get(MI->getOperand(i).getReg()).Name << "\n";
575         printOp(MI->getOperand(i));
576       }
577       if (ArgCount - 1 == i)
578         O << "\n";
579       else
580         O << ", ";
581     }
582   }
583   
584   return;  
585 }
586
587 bool Printer::doInitialization(Module &M) {
588   // Tell gas we are outputting Intel syntax (not AT&T syntax) assembly.
589   //
590   // Bug: gas in `intel_syntax noprefix' mode interprets the symbol `Sp' in an
591   // instruction as a reference to the register named sp, and if you try to
592   // reference a symbol `Sp' (e.g. `mov ECX, OFFSET Sp') then it gets lowercased
593   // before being looked up in the symbol table. This creates spurious
594   // `undefined symbol' errors when linking. Workaround: Do not use `noprefix'
595   // mode, and decorate all register names with percent signs.
596  // O << "\t.intel_syntax\n";
597   Mang = new Mangler(M, true);
598   return false; // success
599 }
600
601 // SwitchSection - Switch to the specified section of the executable if we are
602 // not already in it!
603 //
604 static void SwitchSection(std::ostream &OS, std::string &CurSection,
605                           const char *NewSection) {
606   if (CurSection != NewSection) {
607     CurSection = NewSection;
608     if (!CurSection.empty())
609       OS << "\t" << NewSection << "\n";
610   }
611 }
612
613 bool Printer::doFinalization(Module &M) {
614   const TargetData &TD = TM.getTargetData();
615   std::string CurSection;
616
617   // Print out module-level global variables here.
618   for (Module::const_giterator I = M.gbegin(), E = M.gend(); I != E; ++I)
619     if (I->hasInitializer()) {   // External global require no code
620       O << "\n\n";
621       std::string name = Mang->getValueName(I);
622       Constant *C = I->getInitializer();
623       unsigned Size = TD.getTypeSize(C->getType());
624       unsigned Align = TD.getTypeAlignment(C->getType());
625
626       if (C->isNullValue() && 
627           (I->hasLinkOnceLinkage() || I->hasInternalLinkage() ||
628            I->hasWeakLinkage() /* FIXME: Verify correct */)) {
629         SwitchSection(O, CurSection, ".data");
630         if (I->hasInternalLinkage())
631           O << "\t.local " << name << "\n";
632         
633         O << "\t.comm " << name << "," << TD.getTypeSize(C->getType())
634           << "," << (unsigned)TD.getTypeAlignment(C->getType());
635         O << "\t\t# ";
636         WriteAsOperand(O, I, true, true, &M);
637         O << "\n";
638       } else {
639         switch (I->getLinkage()) {
640         case GlobalValue::LinkOnceLinkage:
641         case GlobalValue::WeakLinkage:   // FIXME: Verify correct for weak.
642           // Nonnull linkonce -> weak
643           O << "\t.weak " << name << "\n";
644           SwitchSection(O, CurSection, "");
645           O << "\t.section\t.llvm.linkonce.d." << name << ",\"aw\",@progbits\n";
646           break;
647         
648         case GlobalValue::AppendingLinkage:
649           // FIXME: appending linkage variables should go into a section of
650           // their name or something.  For now, just emit them as external.
651         case GlobalValue::ExternalLinkage:
652           // If external or appending, declare as a global symbol
653           O << "\t.globl " << name << "\n";
654           // FALL THROUGH
655         case GlobalValue::InternalLinkage:
656           if (C->isNullValue())
657             SwitchSection(O, CurSection, ".bss");
658           else
659             SwitchSection(O, CurSection, ".data");
660           break;
661         }
662
663         O << "\t.align " << Align << "\n";
664         O << name << ":\t\t\t\t# ";
665         WriteAsOperand(O, I, true, true, &M);
666         O << " = ";
667         WriteAsOperand(O, C, false, false, &M);
668         O << "\n";
669         emitGlobalConstant(C);
670       }
671     }
672         
673   for(std::set<std::string>::iterator i = Stubs.begin(); i != Stubs.end(); ++i)
674   {
675     O << ".data\n";     
676     O<<".section __TEXT,__picsymbolstub1,symbol_stubs,pure_instructions,32\n";
677     O << "\t.align 2\n";
678     O << "L" << *i << "$stub:\n";
679     O << "\t.indirect_symbol " << *i << "\n";
680     O << "\tmflr r0\n";
681     O << "\tbcl 20,31,L0$" << *i << "\n";
682     O << "L0$" << *i << ":\n";
683     O << "\tmflr r11\n";
684     O << "\taddis r11,r11,ha16(L" << *i << "$lazy_ptr-L0$" << *i << ")\n";
685     O << "\tmtlr r0\n";
686     O << "\tlwzu r12,lo16(L" << *i << "$lazy_ptr-L0$" << *i << ")(r11)\n";
687     O << "\tmtctr r12\n";
688     O << "\tbctr\n";
689     O << ".data\n";
690     O << ".lazy_symbol_pointer\n";
691     O << "L" << *i << "$lazy_ptr:\n";
692     O << ".indirect_symbol " << *i << "\n";
693     O << ".long dyld_stub_binding_helper\n";
694   }
695
696   delete Mang;
697   return false; // success
698 }
699
700 } // End llvm namespace