reduce indentation and use early exits in AsmPrinter::EmitConstantValueOnly
[oota-llvm.git] / lib / CodeGen / AsmPrinter / AsmPrinter.cpp
1 //===-- AsmPrinter.cpp - Common AsmPrinter code ---------------------------===//
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 implements the AsmPrinter class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "llvm/CodeGen/AsmPrinter.h"
15 #include "llvm/Assembly/Writer.h"
16 #include "llvm/DerivedTypes.h"
17 #include "llvm/Constants.h"
18 #include "llvm/Module.h"
19 #include "llvm/CodeGen/GCMetadataPrinter.h"
20 #include "llvm/CodeGen/MachineConstantPool.h"
21 #include "llvm/CodeGen/MachineFrameInfo.h"
22 #include "llvm/CodeGen/MachineFunction.h"
23 #include "llvm/CodeGen/MachineJumpTableInfo.h"
24 #include "llvm/CodeGen/MachineLoopInfo.h"
25 #include "llvm/CodeGen/MachineModuleInfo.h"
26 #include "llvm/CodeGen/DwarfWriter.h"
27 #include "llvm/Analysis/DebugInfo.h"
28 #include "llvm/MC/MCContext.h"
29 #include "llvm/MC/MCInst.h"
30 #include "llvm/MC/MCSection.h"
31 #include "llvm/MC/MCStreamer.h"
32 #include "llvm/MC/MCSymbol.h"
33 #include "llvm/Support/CommandLine.h"
34 #include "llvm/Support/ErrorHandling.h"
35 #include "llvm/Support/FormattedStream.h"
36 #include "llvm/Support/Mangler.h"
37 #include "llvm/MC/MCAsmInfo.h"
38 #include "llvm/Target/TargetData.h"
39 #include "llvm/Target/TargetInstrInfo.h"
40 #include "llvm/Target/TargetLowering.h"
41 #include "llvm/Target/TargetLoweringObjectFile.h"
42 #include "llvm/Target/TargetOptions.h"
43 #include "llvm/Target/TargetRegisterInfo.h"
44 #include "llvm/ADT/SmallPtrSet.h"
45 #include "llvm/ADT/SmallString.h"
46 #include "llvm/ADT/StringExtras.h"
47 #include <cerrno>
48 using namespace llvm;
49
50 static cl::opt<cl::boolOrDefault>
51 AsmVerbose("asm-verbose", cl::desc("Add comments to directives."),
52            cl::init(cl::BOU_UNSET));
53
54 char AsmPrinter::ID = 0;
55 AsmPrinter::AsmPrinter(formatted_raw_ostream &o, TargetMachine &tm,
56                        const MCAsmInfo *T, bool VDef)
57   : MachineFunctionPass(&ID), FunctionNumber(0), O(o),
58     TM(tm), MAI(T), TRI(tm.getRegisterInfo()),
59
60     OutContext(*new MCContext()),
61     // FIXME: Pass instprinter to streamer.
62     OutStreamer(*createAsmStreamer(OutContext, O, *T, 0)),
63
64     LastMI(0), LastFn(0), Counter(~0U),
65     PrevDLT(0, 0, ~0U, ~0U) {
66   DW = 0; MMI = 0;
67   switch (AsmVerbose) {
68   case cl::BOU_UNSET: VerboseAsm = VDef;  break;
69   case cl::BOU_TRUE:  VerboseAsm = true;  break;
70   case cl::BOU_FALSE: VerboseAsm = false; break;
71   }
72 }
73
74 AsmPrinter::~AsmPrinter() {
75   for (gcp_iterator I = GCMetadataPrinters.begin(),
76                     E = GCMetadataPrinters.end(); I != E; ++I)
77     delete I->second;
78   
79   delete &OutStreamer;
80   delete &OutContext;
81 }
82
83 TargetLoweringObjectFile &AsmPrinter::getObjFileLowering() const {
84   return TM.getTargetLowering()->getObjFileLowering();
85 }
86
87 /// getCurrentSection() - Return the current section we are emitting to.
88 const MCSection *AsmPrinter::getCurrentSection() const {
89   return OutStreamer.getCurrentSection();
90 }
91
92
93 void AsmPrinter::getAnalysisUsage(AnalysisUsage &AU) const {
94   AU.setPreservesAll();
95   MachineFunctionPass::getAnalysisUsage(AU);
96   AU.addRequired<GCModuleInfo>();
97   if (VerboseAsm)
98     AU.addRequired<MachineLoopInfo>();
99 }
100
101 bool AsmPrinter::doInitialization(Module &M) {
102   // Initialize TargetLoweringObjectFile.
103   const_cast<TargetLoweringObjectFile&>(getObjFileLowering())
104     .Initialize(OutContext, TM);
105   
106   Mang = new Mangler(M, MAI->getGlobalPrefix(), MAI->getPrivateGlobalPrefix(),
107                      MAI->getLinkerPrivateGlobalPrefix());
108   
109   if (MAI->doesAllowQuotesInName())
110     Mang->setUseQuotes(true);
111
112   if (MAI->doesAllowNameToStartWithDigit())
113     Mang->setSymbolsCanStartWithDigit(true);
114   
115   // Allow the target to emit any magic that it wants at the start of the file.
116   EmitStartOfAsmFile(M);
117
118   if (MAI->hasSingleParameterDotFile()) {
119     /* Very minimal debug info. It is ignored if we emit actual
120        debug info. If we don't, this at least helps the user find where
121        a function came from. */
122     O << "\t.file\t\"" << M.getModuleIdentifier() << "\"\n";
123   }
124
125   GCModuleInfo *MI = getAnalysisIfAvailable<GCModuleInfo>();
126   assert(MI && "AsmPrinter didn't require GCModuleInfo?");
127   for (GCModuleInfo::iterator I = MI->begin(), E = MI->end(); I != E; ++I)
128     if (GCMetadataPrinter *MP = GetOrCreateGCPrinter(*I))
129       MP->beginAssembly(O, *this, *MAI);
130   
131   if (!M.getModuleInlineAsm().empty())
132     O << MAI->getCommentString() << " Start of file scope inline assembly\n"
133       << M.getModuleInlineAsm()
134       << '\n' << MAI->getCommentString()
135       << " End of file scope inline assembly\n";
136
137   MMI = getAnalysisIfAvailable<MachineModuleInfo>();
138   if (MMI)
139     MMI->AnalyzeModule(M);
140   DW = getAnalysisIfAvailable<DwarfWriter>();
141   if (DW)
142     DW->BeginModule(&M, MMI, O, this, MAI);
143
144   return false;
145 }
146
147 bool AsmPrinter::doFinalization(Module &M) {
148   // Emit global variables.
149   for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
150        I != E; ++I)
151     PrintGlobalVariable(I);
152   
153   // Emit final debug information.
154   if (MAI->doesSupportDebugInformation() || MAI->doesSupportExceptionHandling())
155     DW->EndModule();
156   
157   // If the target wants to know about weak references, print them all.
158   if (MAI->getWeakRefDirective()) {
159     // FIXME: This is not lazy, it would be nice to only print weak references
160     // to stuff that is actually used.  Note that doing so would require targets
161     // to notice uses in operands (due to constant exprs etc).  This should
162     // happen with the MC stuff eventually.
163
164     // Print out module-level global variables here.
165     for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
166          I != E; ++I) {
167       if (I->hasExternalWeakLinkage())
168         O << MAI->getWeakRefDirective() << Mang->getMangledName(I) << '\n';
169     }
170     
171     for (Module::const_iterator I = M.begin(), E = M.end(); I != E; ++I) {
172       if (I->hasExternalWeakLinkage())
173         O << MAI->getWeakRefDirective() << Mang->getMangledName(I) << '\n';
174     }
175   }
176
177   if (MAI->getSetDirective()) {
178     O << '\n';
179     for (Module::const_alias_iterator I = M.alias_begin(), E = M.alias_end();
180          I != E; ++I) {
181       std::string Name = Mang->getMangledName(I);
182
183       const GlobalValue *GV = cast<GlobalValue>(I->getAliasedGlobal());
184       std::string Target = Mang->getMangledName(GV);
185
186       if (I->hasExternalLinkage() || !MAI->getWeakRefDirective())
187         O << "\t.globl\t" << Name << '\n';
188       else if (I->hasWeakLinkage())
189         O << MAI->getWeakRefDirective() << Name << '\n';
190       else if (!I->hasLocalLinkage())
191         llvm_unreachable("Invalid alias linkage");
192
193       printVisibility(Name, I->getVisibility());
194
195       O << MAI->getSetDirective() << ' ' << Name << ", " << Target << '\n';
196     }
197   }
198
199   GCModuleInfo *MI = getAnalysisIfAvailable<GCModuleInfo>();
200   assert(MI && "AsmPrinter didn't require GCModuleInfo?");
201   for (GCModuleInfo::iterator I = MI->end(), E = MI->begin(); I != E; )
202     if (GCMetadataPrinter *MP = GetOrCreateGCPrinter(*--I))
203       MP->finishAssembly(O, *this, *MAI);
204
205   // If we don't have any trampolines, then we don't require stack memory
206   // to be executable. Some targets have a directive to declare this.
207   Function *InitTrampolineIntrinsic = M.getFunction("llvm.init.trampoline");
208   if (!InitTrampolineIntrinsic || InitTrampolineIntrinsic->use_empty())
209     if (MAI->getNonexecutableStackDirective())
210       O << MAI->getNonexecutableStackDirective() << '\n';
211
212   
213   // Allow the target to emit any magic that it wants at the end of the file,
214   // after everything else has gone out.
215   EmitEndOfAsmFile(M);
216   
217   delete Mang; Mang = 0;
218   DW = 0; MMI = 0;
219   
220   OutStreamer.Finish();
221   return false;
222 }
223
224 void AsmPrinter::SetupMachineFunction(MachineFunction &MF) {
225   // What's my mangled name?
226   CurrentFnName = Mang->getMangledName(MF.getFunction());
227   IncrementFunctionNumber();
228
229   if (VerboseAsm)
230     LI = &getAnalysis<MachineLoopInfo>();
231 }
232
233 namespace {
234   // SectionCPs - Keep track the alignment, constpool entries per Section.
235   struct SectionCPs {
236     const MCSection *S;
237     unsigned Alignment;
238     SmallVector<unsigned, 4> CPEs;
239     SectionCPs(const MCSection *s, unsigned a) : S(s), Alignment(a) {}
240   };
241 }
242
243 /// EmitConstantPool - Print to the current output stream assembly
244 /// representations of the constants in the constant pool MCP. This is
245 /// used to print out constants which have been "spilled to memory" by
246 /// the code generator.
247 ///
248 void AsmPrinter::EmitConstantPool(MachineConstantPool *MCP) {
249   const std::vector<MachineConstantPoolEntry> &CP = MCP->getConstants();
250   if (CP.empty()) return;
251
252   // Calculate sections for constant pool entries. We collect entries to go into
253   // the same section together to reduce amount of section switch statements.
254   SmallVector<SectionCPs, 4> CPSections;
255   for (unsigned i = 0, e = CP.size(); i != e; ++i) {
256     const MachineConstantPoolEntry &CPE = CP[i];
257     unsigned Align = CPE.getAlignment();
258     
259     SectionKind Kind;
260     switch (CPE.getRelocationInfo()) {
261     default: llvm_unreachable("Unknown section kind");
262     case 2: Kind = SectionKind::getReadOnlyWithRel(); break;
263     case 1:
264       Kind = SectionKind::getReadOnlyWithRelLocal();
265       break;
266     case 0:
267     switch (TM.getTargetData()->getTypeAllocSize(CPE.getType())) {
268     case 4:  Kind = SectionKind::getMergeableConst4(); break;
269     case 8:  Kind = SectionKind::getMergeableConst8(); break;
270     case 16: Kind = SectionKind::getMergeableConst16();break;
271     default: Kind = SectionKind::getMergeableConst(); break;
272     }
273     }
274
275     const MCSection *S = getObjFileLowering().getSectionForConstant(Kind);
276     
277     // The number of sections are small, just do a linear search from the
278     // last section to the first.
279     bool Found = false;
280     unsigned SecIdx = CPSections.size();
281     while (SecIdx != 0) {
282       if (CPSections[--SecIdx].S == S) {
283         Found = true;
284         break;
285       }
286     }
287     if (!Found) {
288       SecIdx = CPSections.size();
289       CPSections.push_back(SectionCPs(S, Align));
290     }
291
292     if (Align > CPSections[SecIdx].Alignment)
293       CPSections[SecIdx].Alignment = Align;
294     CPSections[SecIdx].CPEs.push_back(i);
295   }
296
297   // Now print stuff into the calculated sections.
298   for (unsigned i = 0, e = CPSections.size(); i != e; ++i) {
299     OutStreamer.SwitchSection(CPSections[i].S);
300     EmitAlignment(Log2_32(CPSections[i].Alignment));
301
302     unsigned Offset = 0;
303     for (unsigned j = 0, ee = CPSections[i].CPEs.size(); j != ee; ++j) {
304       unsigned CPI = CPSections[i].CPEs[j];
305       MachineConstantPoolEntry CPE = CP[CPI];
306
307       // Emit inter-object padding for alignment.
308       unsigned AlignMask = CPE.getAlignment() - 1;
309       unsigned NewOffset = (Offset + AlignMask) & ~AlignMask;
310       EmitZeros(NewOffset - Offset);
311
312       const Type *Ty = CPE.getType();
313       Offset = NewOffset + TM.getTargetData()->getTypeAllocSize(Ty);
314
315       O << MAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber() << '_'
316         << CPI << ':';
317       if (VerboseAsm) {
318         O.PadToColumn(MAI->getCommentColumn());
319         O << MAI->getCommentString() << " constant ";
320         WriteTypeSymbolic(O, CPE.getType(), MF->getFunction()->getParent());
321       }
322       O << '\n';
323       if (CPE.isMachineConstantPoolEntry())
324         EmitMachineConstantPoolValue(CPE.Val.MachineCPVal);
325       else
326         EmitGlobalConstant(CPE.Val.ConstVal);
327     }
328   }
329 }
330
331 /// EmitJumpTableInfo - Print assembly representations of the jump tables used
332 /// by the current function to the current output stream.  
333 ///
334 void AsmPrinter::EmitJumpTableInfo(MachineJumpTableInfo *MJTI,
335                                    MachineFunction &MF) {
336   const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
337   if (JT.empty()) return;
338
339   bool IsPic = TM.getRelocationModel() == Reloc::PIC_;
340   
341   // Pick the directive to use to print the jump table entries, and switch to 
342   // the appropriate section.
343   TargetLowering *LoweringInfo = TM.getTargetLowering();
344
345   const Function *F = MF.getFunction();
346   bool JTInDiffSection = false;
347   if (F->isWeakForLinker() ||
348       (IsPic && !LoweringInfo->usesGlobalOffsetTable())) {
349     // In PIC mode, we need to emit the jump table to the same section as the
350     // function body itself, otherwise the label differences won't make sense.
351     // We should also do if the section name is NULL or function is declared in
352     // discardable section.
353     OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang,
354                                                                     TM));
355   } else {
356     // Otherwise, drop it in the readonly section.
357     const MCSection *ReadOnlySection = 
358       getObjFileLowering().getSectionForConstant(SectionKind::getReadOnly());
359     OutStreamer.SwitchSection(ReadOnlySection);
360     JTInDiffSection = true;
361   }
362   
363   EmitAlignment(Log2_32(MJTI->getAlignment()));
364   
365   for (unsigned i = 0, e = JT.size(); i != e; ++i) {
366     const std::vector<MachineBasicBlock*> &JTBBs = JT[i].MBBs;
367     
368     // If this jump table was deleted, ignore it. 
369     if (JTBBs.empty()) continue;
370
371     // For PIC codegen, if possible we want to use the SetDirective to reduce
372     // the number of relocations the assembler will generate for the jump table.
373     // Set directives are all printed before the jump table itself.
374     SmallPtrSet<MachineBasicBlock*, 16> EmittedSets;
375     if (MAI->getSetDirective() && IsPic)
376       for (unsigned ii = 0, ee = JTBBs.size(); ii != ee; ++ii)
377         if (EmittedSets.insert(JTBBs[ii]))
378           printPICJumpTableSetLabel(i, JTBBs[ii]);
379     
380     // On some targets (e.g. Darwin) we want to emit two consequtive labels
381     // before each jump table.  The first label is never referenced, but tells
382     // the assembler and linker the extents of the jump table object.  The
383     // second label is actually referenced by the code.
384     if (JTInDiffSection && MAI->getLinkerPrivateGlobalPrefix()[0]) {
385       O << MAI->getLinkerPrivateGlobalPrefix()
386         << "JTI" << getFunctionNumber() << '_' << i << ":\n";
387     }
388     
389     O << MAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber() 
390       << '_' << i << ":\n";
391     
392     for (unsigned ii = 0, ee = JTBBs.size(); ii != ee; ++ii) {
393       printPICJumpTableEntry(MJTI, JTBBs[ii], i);
394       O << '\n';
395     }
396   }
397 }
398
399 void AsmPrinter::printPICJumpTableEntry(const MachineJumpTableInfo *MJTI,
400                                         const MachineBasicBlock *MBB,
401                                         unsigned uid)  const {
402   bool isPIC = TM.getRelocationModel() == Reloc::PIC_;
403   
404   // Use JumpTableDirective otherwise honor the entry size from the jump table
405   // info.
406   const char *JTEntryDirective = MAI->getJumpTableDirective(isPIC);
407   bool HadJTEntryDirective = JTEntryDirective != NULL;
408   if (!HadJTEntryDirective) {
409     JTEntryDirective = MJTI->getEntrySize() == 4 ?
410       MAI->getData32bitsDirective() : MAI->getData64bitsDirective();
411   }
412
413   O << JTEntryDirective << ' ';
414
415   // If we have emitted set directives for the jump table entries, print 
416   // them rather than the entries themselves.  If we're emitting PIC, then
417   // emit the table entries as differences between two text section labels.
418   // If we're emitting non-PIC code, then emit the entries as direct
419   // references to the target basic blocks.
420   if (!isPIC) {
421     GetMBBSymbol(MBB->getNumber())->print(O, MAI);
422   } else if (MAI->getSetDirective()) {
423     O << MAI->getPrivateGlobalPrefix() << getFunctionNumber()
424       << '_' << uid << "_set_" << MBB->getNumber();
425   } else {
426     GetMBBSymbol(MBB->getNumber())->print(O, MAI);
427     // If the arch uses custom Jump Table directives, don't calc relative to
428     // JT
429     if (!HadJTEntryDirective) 
430       O << '-' << MAI->getPrivateGlobalPrefix() << "JTI"
431         << getFunctionNumber() << '_' << uid;
432   }
433 }
434
435
436 /// EmitSpecialLLVMGlobal - Check to see if the specified global is a
437 /// special global used by LLVM.  If so, emit it and return true, otherwise
438 /// do nothing and return false.
439 bool AsmPrinter::EmitSpecialLLVMGlobal(const GlobalVariable *GV) {
440   if (GV->getName() == "llvm.used") {
441     if (MAI->getUsedDirective() != 0)    // No need to emit this at all.
442       EmitLLVMUsedList(GV->getInitializer());
443     return true;
444   }
445
446   // Ignore debug and non-emitted data.  This handles llvm.compiler.used.
447   if (GV->getSection() == "llvm.metadata" ||
448       GV->hasAvailableExternallyLinkage())
449     return true;
450   
451   if (!GV->hasAppendingLinkage()) return false;
452
453   assert(GV->hasInitializer() && "Not a special LLVM global!");
454   
455   const TargetData *TD = TM.getTargetData();
456   unsigned Align = Log2_32(TD->getPointerPrefAlignment());
457   if (GV->getName() == "llvm.global_ctors") {
458     OutStreamer.SwitchSection(getObjFileLowering().getStaticCtorSection());
459     EmitAlignment(Align, 0);
460     EmitXXStructorList(GV->getInitializer());
461     return true;
462   } 
463   
464   if (GV->getName() == "llvm.global_dtors") {
465     OutStreamer.SwitchSection(getObjFileLowering().getStaticDtorSection());
466     EmitAlignment(Align, 0);
467     EmitXXStructorList(GV->getInitializer());
468     return true;
469   }
470   
471   return false;
472 }
473
474 /// EmitLLVMUsedList - For targets that define a MAI::UsedDirective, mark each
475 /// global in the specified llvm.used list for which emitUsedDirectiveFor
476 /// is true, as being used with this directive.
477 void AsmPrinter::EmitLLVMUsedList(Constant *List) {
478   const char *Directive = MAI->getUsedDirective();
479
480   // Should be an array of 'i8*'.
481   ConstantArray *InitList = dyn_cast<ConstantArray>(List);
482   if (InitList == 0) return;
483   
484   for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i) {
485     const GlobalValue *GV =
486       dyn_cast<GlobalValue>(InitList->getOperand(i)->stripPointerCasts());
487     if (GV && getObjFileLowering().shouldEmitUsedDirectiveFor(GV, Mang)) {
488       O << Directive;
489       EmitConstantValueOnly(InitList->getOperand(i));
490       O << '\n';
491     }
492   }
493 }
494
495 /// EmitXXStructorList - Emit the ctor or dtor list.  This just prints out the 
496 /// function pointers, ignoring the init priority.
497 void AsmPrinter::EmitXXStructorList(Constant *List) {
498   // Should be an array of '{ int, void ()* }' structs.  The first value is the
499   // init priority, which we ignore.
500   if (!isa<ConstantArray>(List)) return;
501   ConstantArray *InitList = cast<ConstantArray>(List);
502   for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i)
503     if (ConstantStruct *CS = dyn_cast<ConstantStruct>(InitList->getOperand(i))){
504       if (CS->getNumOperands() != 2) return;  // Not array of 2-element structs.
505
506       if (CS->getOperand(1)->isNullValue())
507         return;  // Found a null terminator, exit printing.
508       // Emit the function pointer.
509       EmitGlobalConstant(CS->getOperand(1));
510     }
511 }
512
513
514 //===----------------------------------------------------------------------===//
515 /// LEB 128 number encoding.
516
517 /// PrintULEB128 - Print a series of hexadecimal values (separated by commas)
518 /// representing an unsigned leb128 value.
519 void AsmPrinter::PrintULEB128(unsigned Value) const {
520   char Buffer[20];
521   do {
522     unsigned char Byte = static_cast<unsigned char>(Value & 0x7f);
523     Value >>= 7;
524     if (Value) Byte |= 0x80;
525     O << "0x" << utohex_buffer(Byte, Buffer+20);
526     if (Value) O << ", ";
527   } while (Value);
528 }
529
530 /// PrintSLEB128 - Print a series of hexadecimal values (separated by commas)
531 /// representing a signed leb128 value.
532 void AsmPrinter::PrintSLEB128(int Value) const {
533   int Sign = Value >> (8 * sizeof(Value) - 1);
534   bool IsMore;
535   char Buffer[20];
536
537   do {
538     unsigned char Byte = static_cast<unsigned char>(Value & 0x7f);
539     Value >>= 7;
540     IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
541     if (IsMore) Byte |= 0x80;
542     O << "0x" << utohex_buffer(Byte, Buffer+20);
543     if (IsMore) O << ", ";
544   } while (IsMore);
545 }
546
547 //===--------------------------------------------------------------------===//
548 // Emission and print routines
549 //
550
551 /// PrintHex - Print a value as a hexadecimal value.
552 ///
553 void AsmPrinter::PrintHex(int Value) const { 
554   char Buffer[20];
555   O << "0x" << utohex_buffer(static_cast<unsigned>(Value), Buffer+20);
556 }
557
558 /// EOL - Print a newline character to asm stream.  If a comment is present
559 /// then it will be printed first.  Comments should not contain '\n'.
560 void AsmPrinter::EOL() const {
561   O << '\n';
562 }
563
564 void AsmPrinter::EOL(const std::string &Comment) const {
565   if (VerboseAsm && !Comment.empty()) {
566     O.PadToColumn(MAI->getCommentColumn());
567     O << MAI->getCommentString()
568       << ' '
569       << Comment;
570   }
571   O << '\n';
572 }
573
574 void AsmPrinter::EOL(const char* Comment) const {
575   if (VerboseAsm && *Comment) {
576     O.PadToColumn(MAI->getCommentColumn());
577     O << MAI->getCommentString()
578       << ' '
579       << Comment;
580   }
581   O << '\n';
582 }
583
584 static const char *DecodeDWARFEncoding(unsigned Encoding) {
585   switch (Encoding) {
586   case dwarf::DW_EH_PE_absptr:
587     return "absptr";
588   case dwarf::DW_EH_PE_omit:
589     return "omit";
590   case dwarf::DW_EH_PE_pcrel:
591     return "pcrel";
592   case dwarf::DW_EH_PE_udata4:
593     return "udata4";
594   case dwarf::DW_EH_PE_udata8:
595     return "udata8";
596   case dwarf::DW_EH_PE_sdata4:
597     return "sdata4";
598   case dwarf::DW_EH_PE_sdata8:
599     return "sdata8";
600   case dwarf::DW_EH_PE_pcrel | dwarf::DW_EH_PE_udata4:
601     return "pcrel udata4";
602   case dwarf::DW_EH_PE_pcrel | dwarf::DW_EH_PE_sdata4:
603     return "pcrel sdata4";
604   case dwarf::DW_EH_PE_pcrel | dwarf::DW_EH_PE_udata8:
605     return "pcrel udata8";
606   case dwarf::DW_EH_PE_pcrel | dwarf::DW_EH_PE_sdata8:
607     return "pcrel sdata8";
608   case dwarf::DW_EH_PE_indirect | dwarf::DW_EH_PE_pcrel |dwarf::DW_EH_PE_udata4:
609     return "indirect pcrel udata4";
610   case dwarf::DW_EH_PE_indirect | dwarf::DW_EH_PE_pcrel |dwarf::DW_EH_PE_sdata4:
611     return "indirect pcrel sdata4";
612   case dwarf::DW_EH_PE_indirect | dwarf::DW_EH_PE_pcrel |dwarf::DW_EH_PE_udata8:
613     return "indirect pcrel udata8";
614   case dwarf::DW_EH_PE_indirect | dwarf::DW_EH_PE_pcrel |dwarf::DW_EH_PE_sdata8:
615     return "indirect pcrel sdata8";
616   }
617
618   return 0;
619 }
620
621 void AsmPrinter::EOL(const char *Comment, unsigned Encoding) const {
622   if (VerboseAsm && *Comment) {
623     O.PadToColumn(MAI->getCommentColumn());
624     O << MAI->getCommentString()
625       << ' '
626       << Comment;
627
628     if (const char *EncStr = DecodeDWARFEncoding(Encoding))
629       O << " (" << EncStr << ')';
630   }
631   O << '\n';
632 }
633
634 /// EmitULEB128Bytes - Emit an assembler byte data directive to compose an
635 /// unsigned leb128 value.
636 void AsmPrinter::EmitULEB128Bytes(unsigned Value) const {
637   if (MAI->hasLEB128()) {
638     O << "\t.uleb128\t"
639       << Value;
640   } else {
641     O << MAI->getData8bitsDirective();
642     PrintULEB128(Value);
643   }
644 }
645
646 /// EmitSLEB128Bytes - print an assembler byte data directive to compose a
647 /// signed leb128 value.
648 void AsmPrinter::EmitSLEB128Bytes(int Value) const {
649   if (MAI->hasLEB128()) {
650     O << "\t.sleb128\t"
651       << Value;
652   } else {
653     O << MAI->getData8bitsDirective();
654     PrintSLEB128(Value);
655   }
656 }
657
658 /// EmitInt8 - Emit a byte directive and value.
659 ///
660 void AsmPrinter::EmitInt8(int Value) const {
661   O << MAI->getData8bitsDirective();
662   PrintHex(Value & 0xFF);
663 }
664
665 /// EmitInt16 - Emit a short directive and value.
666 ///
667 void AsmPrinter::EmitInt16(int Value) const {
668   O << MAI->getData16bitsDirective();
669   PrintHex(Value & 0xFFFF);
670 }
671
672 /// EmitInt32 - Emit a long directive and value.
673 ///
674 void AsmPrinter::EmitInt32(int Value) const {
675   O << MAI->getData32bitsDirective();
676   PrintHex(Value);
677 }
678
679 /// EmitInt64 - Emit a long long directive and value.
680 ///
681 void AsmPrinter::EmitInt64(uint64_t Value) const {
682   if (MAI->getData64bitsDirective()) {
683     O << MAI->getData64bitsDirective();
684     PrintHex(Value);
685   } else {
686     if (TM.getTargetData()->isBigEndian()) {
687       EmitInt32(unsigned(Value >> 32)); O << '\n';
688       EmitInt32(unsigned(Value));
689     } else {
690       EmitInt32(unsigned(Value)); O << '\n';
691       EmitInt32(unsigned(Value >> 32));
692     }
693   }
694 }
695
696 /// toOctal - Convert the low order bits of X into an octal digit.
697 ///
698 static inline char toOctal(int X) {
699   return (X&7)+'0';
700 }
701
702 /// printStringChar - Print a char, escaped if necessary.
703 ///
704 static void printStringChar(formatted_raw_ostream &O, unsigned char C) {
705   if (C == '"') {
706     O << "\\\"";
707   } else if (C == '\\') {
708     O << "\\\\";
709   } else if (isprint((unsigned char)C)) {
710     O << C;
711   } else {
712     switch(C) {
713     case '\b': O << "\\b"; break;
714     case '\f': O << "\\f"; break;
715     case '\n': O << "\\n"; break;
716     case '\r': O << "\\r"; break;
717     case '\t': O << "\\t"; break;
718     default:
719       O << '\\';
720       O << toOctal(C >> 6);
721       O << toOctal(C >> 3);
722       O << toOctal(C >> 0);
723       break;
724     }
725   }
726 }
727
728 /// EmitString - Emit a string with quotes and a null terminator.
729 /// Special characters are emitted properly.
730 /// \literal (Eg. '\t') \endliteral
731 void AsmPrinter::EmitString(const StringRef String) const {
732   EmitString(String.data(), String.size());
733 }
734
735 void AsmPrinter::EmitString(const char *String, unsigned Size) const {
736   const char* AscizDirective = MAI->getAscizDirective();
737   if (AscizDirective)
738     O << AscizDirective;
739   else
740     O << MAI->getAsciiDirective();
741   O << '\"';
742   for (unsigned i = 0; i < Size; ++i)
743     printStringChar(O, String[i]);
744   if (AscizDirective)
745     O << '\"';
746   else
747     O << "\\0\"";
748 }
749
750
751 /// EmitFile - Emit a .file directive.
752 void AsmPrinter::EmitFile(unsigned Number, const std::string &Name) const {
753   O << "\t.file\t" << Number << " \"";
754   for (unsigned i = 0, N = Name.size(); i < N; ++i)
755     printStringChar(O, Name[i]);
756   O << '\"';
757 }
758
759
760 //===----------------------------------------------------------------------===//
761
762 // EmitAlignment - Emit an alignment directive to the specified power of
763 // two boundary.  For example, if you pass in 3 here, you will get an 8
764 // byte alignment.  If a global value is specified, and if that global has
765 // an explicit alignment requested, it will unconditionally override the
766 // alignment request.  However, if ForcedAlignBits is specified, this value
767 // has final say: the ultimate alignment will be the max of ForcedAlignBits
768 // and the alignment computed with NumBits and the global.
769 //
770 // The algorithm is:
771 //     Align = NumBits;
772 //     if (GV && GV->hasalignment) Align = GV->getalignment();
773 //     Align = std::max(Align, ForcedAlignBits);
774 //
775 void AsmPrinter::EmitAlignment(unsigned NumBits, const GlobalValue *GV,
776                                unsigned ForcedAlignBits,
777                                bool UseFillExpr) const {
778   if (GV && GV->getAlignment())
779     NumBits = Log2_32(GV->getAlignment());
780   NumBits = std::max(NumBits, ForcedAlignBits);
781   
782   if (NumBits == 0) return;   // No need to emit alignment.
783   
784   unsigned FillValue = 0;
785   if (getCurrentSection()->getKind().isText())
786     FillValue = MAI->getTextAlignFillValue();
787   
788   OutStreamer.EmitValueToAlignment(1 << NumBits, FillValue, 1, 0);
789 }
790
791 /// EmitZeros - Emit a block of zeros.
792 ///
793 void AsmPrinter::EmitZeros(uint64_t NumZeros, unsigned AddrSpace) const {
794   if (NumZeros) {
795     if (MAI->getZeroDirective()) {
796       O << MAI->getZeroDirective() << NumZeros;
797       if (MAI->getZeroDirectiveSuffix())
798         O << MAI->getZeroDirectiveSuffix();
799       O << '\n';
800     } else {
801       for (; NumZeros; --NumZeros)
802         O << MAI->getData8bitsDirective(AddrSpace) << "0\n";
803     }
804   }
805 }
806
807 // Print out the specified constant, without a storage class.  Only the
808 // constants valid in constant expressions can occur here.
809 void AsmPrinter::EmitConstantValueOnly(const Constant *CV) {
810   if (CV->isNullValue() || isa<UndefValue>(CV)) {
811     O << '0';
812     return;
813   }
814
815   if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
816     O << CI->getZExtValue();
817     return;
818   }
819   
820   if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV)) {
821     // This is a constant address for a global variable or function. Use the
822     // name of the variable or function as the address value.
823     O << Mang->getMangledName(GV);
824     return;
825   }
826   
827   if (const BlockAddress *BA = dyn_cast<BlockAddress>(CV)) {
828     GetBlockAddressSymbol(BA)->print(O, MAI);
829     return;
830   }
831   
832   const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV);
833   if (CE == 0) {
834     llvm_unreachable("Unknown constant value!");
835     O << '0';
836     return;
837   }
838   
839   switch (CE->getOpcode()) {
840   case Instruction::ZExt:
841   case Instruction::SExt:
842   case Instruction::FPTrunc:
843   case Instruction::FPExt:
844   case Instruction::UIToFP:
845   case Instruction::SIToFP:
846   case Instruction::FPToUI:
847   case Instruction::FPToSI:
848   default:
849     llvm_unreachable("FIXME: Don't support this constant cast expr");
850   case Instruction::GetElementPtr: {
851     // generate a symbolic expression for the byte address
852     const TargetData *TD = TM.getTargetData();
853     const Constant *ptrVal = CE->getOperand(0);
854     SmallVector<Value*, 8> idxVec(CE->op_begin()+1, CE->op_end());
855     int64_t Offset = TD->getIndexedOffset(ptrVal->getType(), &idxVec[0],
856                                           idxVec.size());
857     if (Offset == 0)
858       return EmitConstantValueOnly(ptrVal);
859     
860     // Truncate/sext the offset to the pointer size.
861     if (TD->getPointerSizeInBits() != 64) {
862       int SExtAmount = 64-TD->getPointerSizeInBits();
863       Offset = (Offset << SExtAmount) >> SExtAmount;
864     }
865     
866     if (Offset)
867       O << '(';
868     EmitConstantValueOnly(ptrVal);
869     if (Offset > 0)
870       O << ") + " << Offset;
871     else
872       O << ") - " << -Offset;
873     return;
874   }
875   case Instruction::BitCast:
876     return EmitConstantValueOnly(CE->getOperand(0));
877
878   case Instruction::IntToPtr: {
879     // Handle casts to pointers by changing them into casts to the appropriate
880     // integer type.  This promotes constant folding and simplifies this code.
881     const TargetData *TD = TM.getTargetData();
882     Constant *Op = CE->getOperand(0);
883     Op = ConstantExpr::getIntegerCast(Op, TD->getIntPtrType(CV->getContext()),
884                                       false/*ZExt*/);
885     return EmitConstantValueOnly(Op);
886   }
887     
888   case Instruction::PtrToInt: {
889     // Support only foldable casts to/from pointers that can be eliminated by
890     // changing the pointer to the appropriately sized integer type.
891     Constant *Op = CE->getOperand(0);
892     const Type *Ty = CE->getType();
893     const TargetData *TD = TM.getTargetData();
894
895     // We can emit the pointer value into this slot if the slot is an
896     // integer slot greater or equal to the size of the pointer.
897     if (TD->getTypeAllocSize(Ty) == TD->getTypeAllocSize(Op->getType()))
898       return EmitConstantValueOnly(Op);
899
900     O << "((";
901     EmitConstantValueOnly(Op);
902     APInt ptrMask =
903       APInt::getAllOnesValue(TD->getTypeAllocSizeInBits(Op->getType()));
904     
905     SmallString<40> S;
906     ptrMask.toStringUnsigned(S);
907     O << ") & " << S.str() << ')';
908     return;
909   }
910       
911   case Instruction::Trunc:
912     // We emit the value and depend on the assembler to truncate the generated
913     // expression properly.  This is important for differences between
914     // blockaddress labels.  Since the two labels are in the same function, it
915     // is reasonable to treat their delta as a 32-bit value.
916     return EmitConstantValueOnly(CE->getOperand(0));
917       
918   case Instruction::Add:
919   case Instruction::Sub:
920   case Instruction::And:
921   case Instruction::Or:
922   case Instruction::Xor:
923     O << '(';
924     EmitConstantValueOnly(CE->getOperand(0));
925     O << ')';
926     switch (CE->getOpcode()) {
927     case Instruction::Add:
928      O << " + ";
929      break;
930     case Instruction::Sub:
931      O << " - ";
932      break;
933     case Instruction::And:
934      O << " & ";
935      break;
936     case Instruction::Or:
937      O << " | ";
938      break;
939     case Instruction::Xor:
940      O << " ^ ";
941      break;
942     default:
943      break;
944     }
945     O << '(';
946     EmitConstantValueOnly(CE->getOperand(1));
947     O << ')';
948     break;
949   }
950 }
951
952 /// printAsCString - Print the specified array as a C compatible string, only if
953 /// the predicate isString is true.
954 ///
955 static void printAsCString(formatted_raw_ostream &O, const ConstantArray *CVA,
956                            unsigned LastElt) {
957   assert(CVA->isString() && "Array is not string compatible!");
958
959   O << '\"';
960   for (unsigned i = 0; i != LastElt; ++i) {
961     unsigned char C =
962         (unsigned char)cast<ConstantInt>(CVA->getOperand(i))->getZExtValue();
963     printStringChar(O, C);
964   }
965   O << '\"';
966 }
967
968 /// EmitString - Emit a zero-byte-terminated string constant.
969 ///
970 void AsmPrinter::EmitString(const ConstantArray *CVA) const {
971   unsigned NumElts = CVA->getNumOperands();
972   if (MAI->getAscizDirective() && NumElts && 
973       cast<ConstantInt>(CVA->getOperand(NumElts-1))->getZExtValue() == 0) {
974     O << MAI->getAscizDirective();
975     printAsCString(O, CVA, NumElts-1);
976   } else {
977     O << MAI->getAsciiDirective();
978     printAsCString(O, CVA, NumElts);
979   }
980   O << '\n';
981 }
982
983 void AsmPrinter::EmitGlobalConstantArray(const ConstantArray *CVA,
984                                          unsigned AddrSpace) {
985   if (CVA->isString()) {
986     EmitString(CVA);
987   } else { // Not a string.  Print the values in successive locations
988     for (unsigned i = 0, e = CVA->getNumOperands(); i != e; ++i)
989       EmitGlobalConstant(CVA->getOperand(i), AddrSpace);
990   }
991 }
992
993 void AsmPrinter::EmitGlobalConstantVector(const ConstantVector *CP) {
994   const VectorType *PTy = CP->getType();
995   
996   for (unsigned I = 0, E = PTy->getNumElements(); I < E; ++I)
997     EmitGlobalConstant(CP->getOperand(I));
998 }
999
1000 void AsmPrinter::EmitGlobalConstantStruct(const ConstantStruct *CVS,
1001                                           unsigned AddrSpace) {
1002   // Print the fields in successive locations. Pad to align if needed!
1003   const TargetData *TD = TM.getTargetData();
1004   unsigned Size = TD->getTypeAllocSize(CVS->getType());
1005   const StructLayout *cvsLayout = TD->getStructLayout(CVS->getType());
1006   uint64_t sizeSoFar = 0;
1007   for (unsigned i = 0, e = CVS->getNumOperands(); i != e; ++i) {
1008     const Constant* field = CVS->getOperand(i);
1009
1010     // Check if padding is needed and insert one or more 0s.
1011     uint64_t fieldSize = TD->getTypeAllocSize(field->getType());
1012     uint64_t padSize = ((i == e-1 ? Size : cvsLayout->getElementOffset(i+1))
1013                         - cvsLayout->getElementOffset(i)) - fieldSize;
1014     sizeSoFar += fieldSize + padSize;
1015
1016     // Now print the actual field value.
1017     EmitGlobalConstant(field, AddrSpace);
1018
1019     // Insert padding - this may include padding to increase the size of the
1020     // current field up to the ABI size (if the struct is not packed) as well
1021     // as padding to ensure that the next field starts at the right offset.
1022     EmitZeros(padSize, AddrSpace);
1023   }
1024   assert(sizeSoFar == cvsLayout->getSizeInBytes() &&
1025          "Layout of constant struct may be incorrect!");
1026 }
1027
1028 void AsmPrinter::EmitGlobalConstantFP(const ConstantFP *CFP, 
1029                                       unsigned AddrSpace) {
1030   // FP Constants are printed as integer constants to avoid losing
1031   // precision...
1032   LLVMContext &Context = CFP->getContext();
1033   const TargetData *TD = TM.getTargetData();
1034   if (CFP->getType()->isDoubleTy()) {
1035     double Val = CFP->getValueAPF().convertToDouble();  // for comment only
1036     uint64_t i = CFP->getValueAPF().bitcastToAPInt().getZExtValue();
1037     if (MAI->getData64bitsDirective(AddrSpace)) {
1038       O << MAI->getData64bitsDirective(AddrSpace) << i;
1039       if (VerboseAsm) {
1040         O.PadToColumn(MAI->getCommentColumn());
1041         O << MAI->getCommentString() << " double " << Val;
1042       }
1043       O << '\n';
1044     } else if (TD->isBigEndian()) {
1045       O << MAI->getData32bitsDirective(AddrSpace) << unsigned(i >> 32);
1046       if (VerboseAsm) {
1047         O.PadToColumn(MAI->getCommentColumn());
1048         O << MAI->getCommentString()
1049           << " most significant word of double " << Val;
1050       }
1051       O << '\n';
1052       O << MAI->getData32bitsDirective(AddrSpace) << unsigned(i);
1053       if (VerboseAsm) {
1054         O.PadToColumn(MAI->getCommentColumn());
1055         O << MAI->getCommentString()
1056           << " least significant word of double " << Val;
1057       }
1058       O << '\n';
1059     } else {
1060       O << MAI->getData32bitsDirective(AddrSpace) << unsigned(i);
1061       if (VerboseAsm) {
1062         O.PadToColumn(MAI->getCommentColumn());
1063         O << MAI->getCommentString()
1064           << " least significant word of double " << Val;
1065       }
1066       O << '\n';
1067       O << MAI->getData32bitsDirective(AddrSpace) << unsigned(i >> 32);
1068       if (VerboseAsm) {
1069         O.PadToColumn(MAI->getCommentColumn());
1070         O << MAI->getCommentString()
1071           << " most significant word of double " << Val;
1072       }
1073       O << '\n';
1074     }
1075     return;
1076   }
1077   
1078   if (CFP->getType()->isFloatTy()) {
1079     float Val = CFP->getValueAPF().convertToFloat();  // for comment only
1080     O << MAI->getData32bitsDirective(AddrSpace)
1081       << CFP->getValueAPF().bitcastToAPInt().getZExtValue();
1082     if (VerboseAsm) {
1083       O.PadToColumn(MAI->getCommentColumn());
1084       O << MAI->getCommentString() << " float " << Val;
1085     }
1086     O << '\n';
1087     return;
1088   }
1089   
1090   if (CFP->getType()->isX86_FP80Ty()) {
1091     // all long double variants are printed as hex
1092     // api needed to prevent premature destruction
1093     APInt api = CFP->getValueAPF().bitcastToAPInt();
1094     const uint64_t *p = api.getRawData();
1095     // Convert to double so we can print the approximate val as a comment.
1096     APFloat DoubleVal = CFP->getValueAPF();
1097     bool ignored;
1098     DoubleVal.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven,
1099                       &ignored);
1100     if (TD->isBigEndian()) {
1101       O << MAI->getData16bitsDirective(AddrSpace) << uint16_t(p[1]);
1102       if (VerboseAsm) {
1103         O.PadToColumn(MAI->getCommentColumn());
1104         O << MAI->getCommentString()
1105           << " most significant halfword of x86_fp80 ~"
1106           << DoubleVal.convertToDouble();
1107       }
1108       O << '\n';
1109       O << MAI->getData16bitsDirective(AddrSpace) << uint16_t(p[0] >> 48);
1110       if (VerboseAsm) {
1111         O.PadToColumn(MAI->getCommentColumn());
1112         O << MAI->getCommentString() << " next halfword";
1113       }
1114       O << '\n';
1115       O << MAI->getData16bitsDirective(AddrSpace) << uint16_t(p[0] >> 32);
1116       if (VerboseAsm) {
1117         O.PadToColumn(MAI->getCommentColumn());
1118         O << MAI->getCommentString() << " next halfword";
1119       }
1120       O << '\n';
1121       O << MAI->getData16bitsDirective(AddrSpace) << uint16_t(p[0] >> 16);
1122       if (VerboseAsm) {
1123         O.PadToColumn(MAI->getCommentColumn());
1124         O << MAI->getCommentString() << " next halfword";
1125       }
1126       O << '\n';
1127       O << MAI->getData16bitsDirective(AddrSpace) << uint16_t(p[0]);
1128       if (VerboseAsm) {
1129         O.PadToColumn(MAI->getCommentColumn());
1130         O << MAI->getCommentString()
1131           << " least significant halfword";
1132       }
1133       O << '\n';
1134      } else {
1135       O << MAI->getData16bitsDirective(AddrSpace) << uint16_t(p[0]);
1136       if (VerboseAsm) {
1137         O.PadToColumn(MAI->getCommentColumn());
1138         O << MAI->getCommentString()
1139           << " least significant halfword of x86_fp80 ~"
1140           << DoubleVal.convertToDouble();
1141       }
1142       O << '\n';
1143       O << MAI->getData16bitsDirective(AddrSpace) << uint16_t(p[0] >> 16);
1144       if (VerboseAsm) {
1145         O.PadToColumn(MAI->getCommentColumn());
1146         O << MAI->getCommentString()
1147           << " next halfword";
1148       }
1149       O << '\n';
1150       O << MAI->getData16bitsDirective(AddrSpace) << uint16_t(p[0] >> 32);
1151       if (VerboseAsm) {
1152         O.PadToColumn(MAI->getCommentColumn());
1153         O << MAI->getCommentString()
1154           << " next halfword";
1155       }
1156       O << '\n';
1157       O << MAI->getData16bitsDirective(AddrSpace) << uint16_t(p[0] >> 48);
1158       if (VerboseAsm) {
1159         O.PadToColumn(MAI->getCommentColumn());
1160         O << MAI->getCommentString()
1161           << " next halfword";
1162       }
1163       O << '\n';
1164       O << MAI->getData16bitsDirective(AddrSpace) << uint16_t(p[1]);
1165       if (VerboseAsm) {
1166         O.PadToColumn(MAI->getCommentColumn());
1167         O << MAI->getCommentString()
1168           << " most significant halfword";
1169       }
1170       O << '\n';
1171     }
1172     EmitZeros(TD->getTypeAllocSize(Type::getX86_FP80Ty(Context)) -
1173               TD->getTypeStoreSize(Type::getX86_FP80Ty(Context)), AddrSpace);
1174     return;
1175   }
1176   
1177   if (CFP->getType()->isPPC_FP128Ty()) {
1178     // all long double variants are printed as hex
1179     // api needed to prevent premature destruction
1180     APInt api = CFP->getValueAPF().bitcastToAPInt();
1181     const uint64_t *p = api.getRawData();
1182     if (TD->isBigEndian()) {
1183       O << MAI->getData32bitsDirective(AddrSpace) << uint32_t(p[0] >> 32);
1184       if (VerboseAsm) {
1185         O.PadToColumn(MAI->getCommentColumn());
1186         O << MAI->getCommentString()
1187           << " most significant word of ppc_fp128";
1188       }
1189       O << '\n';
1190       O << MAI->getData32bitsDirective(AddrSpace) << uint32_t(p[0]);
1191       if (VerboseAsm) {
1192         O.PadToColumn(MAI->getCommentColumn());
1193         O << MAI->getCommentString()
1194         << " next word";
1195       }
1196       O << '\n';
1197       O << MAI->getData32bitsDirective(AddrSpace) << uint32_t(p[1] >> 32);
1198       if (VerboseAsm) {
1199         O.PadToColumn(MAI->getCommentColumn());
1200         O << MAI->getCommentString()
1201           << " next word";
1202       }
1203       O << '\n';
1204       O << MAI->getData32bitsDirective(AddrSpace) << uint32_t(p[1]);
1205       if (VerboseAsm) {
1206         O.PadToColumn(MAI->getCommentColumn());
1207         O << MAI->getCommentString()
1208           << " least significant word";
1209       }
1210       O << '\n';
1211      } else {
1212       O << MAI->getData32bitsDirective(AddrSpace) << uint32_t(p[1]);
1213       if (VerboseAsm) {
1214         O.PadToColumn(MAI->getCommentColumn());
1215         O << MAI->getCommentString()
1216           << " least significant word of ppc_fp128";
1217       }
1218       O << '\n';
1219       O << MAI->getData32bitsDirective(AddrSpace) << uint32_t(p[1] >> 32);
1220       if (VerboseAsm) {
1221         O.PadToColumn(MAI->getCommentColumn());
1222         O << MAI->getCommentString()
1223           << " next word";
1224       }
1225       O << '\n';
1226       O << MAI->getData32bitsDirective(AddrSpace) << uint32_t(p[0]);
1227       if (VerboseAsm) {
1228         O.PadToColumn(MAI->getCommentColumn());
1229         O << MAI->getCommentString()
1230           << " next word";
1231       }
1232       O << '\n';
1233       O << MAI->getData32bitsDirective(AddrSpace) << uint32_t(p[0] >> 32);
1234       if (VerboseAsm) {
1235         O.PadToColumn(MAI->getCommentColumn());
1236         O << MAI->getCommentString()
1237           << " most significant word";
1238       }
1239       O << '\n';
1240     }
1241     return;
1242   } else llvm_unreachable("Floating point constant type not handled");
1243 }
1244
1245 void AsmPrinter::EmitGlobalConstantLargeInt(const ConstantInt *CI,
1246                                             unsigned AddrSpace) {
1247   const TargetData *TD = TM.getTargetData();
1248   unsigned BitWidth = CI->getBitWidth();
1249   assert(isPowerOf2_32(BitWidth) &&
1250          "Non-power-of-2-sized integers not handled!");
1251
1252   // We don't expect assemblers to support integer data directives
1253   // for more than 64 bits, so we emit the data in at most 64-bit
1254   // quantities at a time.
1255   const uint64_t *RawData = CI->getValue().getRawData();
1256   for (unsigned i = 0, e = BitWidth / 64; i != e; ++i) {
1257     uint64_t Val;
1258     if (TD->isBigEndian())
1259       Val = RawData[e - i - 1];
1260     else
1261       Val = RawData[i];
1262
1263     if (MAI->getData64bitsDirective(AddrSpace))
1264       O << MAI->getData64bitsDirective(AddrSpace) << Val << '\n';
1265     else if (TD->isBigEndian()) {
1266       O << MAI->getData32bitsDirective(AddrSpace) << unsigned(Val >> 32);
1267       if (VerboseAsm) {
1268         O.PadToColumn(MAI->getCommentColumn());
1269         O << MAI->getCommentString()
1270           << " most significant half of i64 " << Val;
1271       }
1272       O << '\n';
1273       O << MAI->getData32bitsDirective(AddrSpace) << unsigned(Val);
1274       if (VerboseAsm) {
1275         O.PadToColumn(MAI->getCommentColumn());
1276         O << MAI->getCommentString()
1277           << " least significant half of i64 " << Val;
1278       }
1279       O << '\n';
1280     } else {
1281       O << MAI->getData32bitsDirective(AddrSpace) << unsigned(Val);
1282       if (VerboseAsm) {
1283         O.PadToColumn(MAI->getCommentColumn());
1284         O << MAI->getCommentString()
1285           << " least significant half of i64 " << Val;
1286       }
1287       O << '\n';
1288       O << MAI->getData32bitsDirective(AddrSpace) << unsigned(Val >> 32);
1289       if (VerboseAsm) {
1290         O.PadToColumn(MAI->getCommentColumn());
1291         O << MAI->getCommentString()
1292           << " most significant half of i64 " << Val;
1293       }
1294       O << '\n';
1295     }
1296   }
1297 }
1298
1299 /// EmitGlobalConstant - Print a general LLVM constant to the .s file.
1300 void AsmPrinter::EmitGlobalConstant(const Constant *CV, unsigned AddrSpace) {
1301   const TargetData *TD = TM.getTargetData();
1302   const Type *type = CV->getType();
1303   unsigned Size = TD->getTypeAllocSize(type);
1304
1305   if (CV->isNullValue() || isa<UndefValue>(CV)) {
1306     EmitZeros(Size, AddrSpace);
1307     return;
1308   } else if (const ConstantArray *CVA = dyn_cast<ConstantArray>(CV)) {
1309     EmitGlobalConstantArray(CVA , AddrSpace);
1310     return;
1311   } else if (const ConstantStruct *CVS = dyn_cast<ConstantStruct>(CV)) {
1312     EmitGlobalConstantStruct(CVS, AddrSpace);
1313     return;
1314   } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) {
1315     EmitGlobalConstantFP(CFP, AddrSpace);
1316     return;
1317   } else if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
1318     // Small integers are handled below; large integers are handled here.
1319     if (Size > 4) {
1320       EmitGlobalConstantLargeInt(CI, AddrSpace);
1321       return;
1322     }
1323   } else if (const ConstantVector *CP = dyn_cast<ConstantVector>(CV)) {
1324     EmitGlobalConstantVector(CP);
1325     return;
1326   }
1327
1328   printDataDirective(type, AddrSpace);
1329   EmitConstantValueOnly(CV);
1330   if (VerboseAsm) {
1331     if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
1332       SmallString<40> S;
1333       CI->getValue().toStringUnsigned(S, 16);
1334       O.PadToColumn(MAI->getCommentColumn());
1335       O << MAI->getCommentString() << " 0x" << S.str();
1336     }
1337   }
1338   O << '\n';
1339 }
1340
1341 void AsmPrinter::EmitMachineConstantPoolValue(MachineConstantPoolValue *MCPV) {
1342   // Target doesn't support this yet!
1343   llvm_unreachable("Target does not support EmitMachineConstantPoolValue");
1344 }
1345
1346 /// PrintSpecial - Print information related to the specified machine instr
1347 /// that is independent of the operand, and may be independent of the instr
1348 /// itself.  This can be useful for portably encoding the comment character
1349 /// or other bits of target-specific knowledge into the asmstrings.  The
1350 /// syntax used is ${:comment}.  Targets can override this to add support
1351 /// for their own strange codes.
1352 void AsmPrinter::PrintSpecial(const MachineInstr *MI, const char *Code) const {
1353   if (!strcmp(Code, "private")) {
1354     O << MAI->getPrivateGlobalPrefix();
1355   } else if (!strcmp(Code, "comment")) {
1356     if (VerboseAsm)
1357       O << MAI->getCommentString();
1358   } else if (!strcmp(Code, "uid")) {
1359     // Comparing the address of MI isn't sufficient, because machineinstrs may
1360     // be allocated to the same address across functions.
1361     const Function *ThisF = MI->getParent()->getParent()->getFunction();
1362     
1363     // If this is a new LastFn instruction, bump the counter.
1364     if (LastMI != MI || LastFn != ThisF) {
1365       ++Counter;
1366       LastMI = MI;
1367       LastFn = ThisF;
1368     }
1369     O << Counter;
1370   } else {
1371     std::string msg;
1372     raw_string_ostream Msg(msg);
1373     Msg << "Unknown special formatter '" << Code
1374          << "' for machine instr: " << *MI;
1375     llvm_report_error(Msg.str());
1376   }    
1377 }
1378
1379 /// processDebugLoc - Processes the debug information of each machine
1380 /// instruction's DebugLoc.
1381 void AsmPrinter::processDebugLoc(const MachineInstr *MI, 
1382                                  bool BeforePrintingInsn) {
1383   if (!MAI || !DW || !MAI->doesSupportDebugInformation()
1384       || !DW->ShouldEmitDwarfDebug())
1385     return;
1386   DebugLoc DL = MI->getDebugLoc();
1387   if (DL.isUnknown())
1388     return;
1389   DebugLocTuple CurDLT = MF->getDebugLocTuple(DL);
1390   if (CurDLT.Scope == 0)
1391     return;
1392
1393   if (BeforePrintingInsn) {
1394     if (CurDLT != PrevDLT) {
1395       unsigned L = DW->RecordSourceLine(CurDLT.Line, CurDLT.Col,
1396                                         CurDLT.Scope);
1397       printLabel(L);
1398       O << '\n';
1399       DW->BeginScope(MI, L);
1400       PrevDLT = CurDLT;
1401     }
1402   } else {
1403     // After printing instruction
1404     DW->EndScope(MI);
1405   }
1406 }
1407
1408
1409 /// printInlineAsm - This method formats and prints the specified machine
1410 /// instruction that is an inline asm.
1411 void AsmPrinter::printInlineAsm(const MachineInstr *MI) const {
1412   unsigned NumOperands = MI->getNumOperands();
1413   
1414   // Count the number of register definitions.
1415   unsigned NumDefs = 0;
1416   for (; MI->getOperand(NumDefs).isReg() && MI->getOperand(NumDefs).isDef();
1417        ++NumDefs)
1418     assert(NumDefs != NumOperands-1 && "No asm string?");
1419   
1420   assert(MI->getOperand(NumDefs).isSymbol() && "No asm string?");
1421
1422   // Disassemble the AsmStr, printing out the literal pieces, the operands, etc.
1423   const char *AsmStr = MI->getOperand(NumDefs).getSymbolName();
1424
1425   O << '\t';
1426
1427   // If this asmstr is empty, just print the #APP/#NOAPP markers.
1428   // These are useful to see where empty asm's wound up.
1429   if (AsmStr[0] == 0) {
1430     O << MAI->getCommentString() << MAI->getInlineAsmStart() << "\n\t";
1431     O << MAI->getCommentString() << MAI->getInlineAsmEnd() << '\n';
1432     return;
1433   }
1434   
1435   O << MAI->getCommentString() << MAI->getInlineAsmStart() << "\n\t";
1436
1437   // The variant of the current asmprinter.
1438   int AsmPrinterVariant = MAI->getAssemblerDialect();
1439
1440   int CurVariant = -1;            // The number of the {.|.|.} region we are in.
1441   const char *LastEmitted = AsmStr; // One past the last character emitted.
1442   
1443   while (*LastEmitted) {
1444     switch (*LastEmitted) {
1445     default: {
1446       // Not a special case, emit the string section literally.
1447       const char *LiteralEnd = LastEmitted+1;
1448       while (*LiteralEnd && *LiteralEnd != '{' && *LiteralEnd != '|' &&
1449              *LiteralEnd != '}' && *LiteralEnd != '$' && *LiteralEnd != '\n')
1450         ++LiteralEnd;
1451       if (CurVariant == -1 || CurVariant == AsmPrinterVariant)
1452         O.write(LastEmitted, LiteralEnd-LastEmitted);
1453       LastEmitted = LiteralEnd;
1454       break;
1455     }
1456     case '\n':
1457       ++LastEmitted;   // Consume newline character.
1458       O << '\n';       // Indent code with newline.
1459       break;
1460     case '$': {
1461       ++LastEmitted;   // Consume '$' character.
1462       bool Done = true;
1463
1464       // Handle escapes.
1465       switch (*LastEmitted) {
1466       default: Done = false; break;
1467       case '$':     // $$ -> $
1468         if (CurVariant == -1 || CurVariant == AsmPrinterVariant)
1469           O << '$';
1470         ++LastEmitted;  // Consume second '$' character.
1471         break;
1472       case '(':             // $( -> same as GCC's { character.
1473         ++LastEmitted;      // Consume '(' character.
1474         if (CurVariant != -1) {
1475           llvm_report_error("Nested variants found in inline asm string: '"
1476                             + std::string(AsmStr) + "'");
1477         }
1478         CurVariant = 0;     // We're in the first variant now.
1479         break;
1480       case '|':
1481         ++LastEmitted;  // consume '|' character.
1482         if (CurVariant == -1)
1483           O << '|';       // this is gcc's behavior for | outside a variant
1484         else
1485           ++CurVariant;   // We're in the next variant.
1486         break;
1487       case ')':         // $) -> same as GCC's } char.
1488         ++LastEmitted;  // consume ')' character.
1489         if (CurVariant == -1)
1490           O << '}';     // this is gcc's behavior for } outside a variant
1491         else 
1492           CurVariant = -1;
1493         break;
1494       }
1495       if (Done) break;
1496       
1497       bool HasCurlyBraces = false;
1498       if (*LastEmitted == '{') {     // ${variable}
1499         ++LastEmitted;               // Consume '{' character.
1500         HasCurlyBraces = true;
1501       }
1502       
1503       // If we have ${:foo}, then this is not a real operand reference, it is a
1504       // "magic" string reference, just like in .td files.  Arrange to call
1505       // PrintSpecial.
1506       if (HasCurlyBraces && *LastEmitted == ':') {
1507         ++LastEmitted;
1508         const char *StrStart = LastEmitted;
1509         const char *StrEnd = strchr(StrStart, '}');
1510         if (StrEnd == 0) {
1511           llvm_report_error("Unterminated ${:foo} operand in inline asm string: '" 
1512                             + std::string(AsmStr) + "'");
1513         }
1514         
1515         std::string Val(StrStart, StrEnd);
1516         PrintSpecial(MI, Val.c_str());
1517         LastEmitted = StrEnd+1;
1518         break;
1519       }
1520             
1521       const char *IDStart = LastEmitted;
1522       char *IDEnd;
1523       errno = 0;
1524       long Val = strtol(IDStart, &IDEnd, 10); // We only accept numbers for IDs.
1525       if (!isdigit(*IDStart) || (Val == 0 && errno == EINVAL)) {
1526         llvm_report_error("Bad $ operand number in inline asm string: '" 
1527                           + std::string(AsmStr) + "'");
1528       }
1529       LastEmitted = IDEnd;
1530       
1531       char Modifier[2] = { 0, 0 };
1532       
1533       if (HasCurlyBraces) {
1534         // If we have curly braces, check for a modifier character.  This
1535         // supports syntax like ${0:u}, which correspond to "%u0" in GCC asm.
1536         if (*LastEmitted == ':') {
1537           ++LastEmitted;    // Consume ':' character.
1538           if (*LastEmitted == 0) {
1539             llvm_report_error("Bad ${:} expression in inline asm string: '" 
1540                               + std::string(AsmStr) + "'");
1541           }
1542           
1543           Modifier[0] = *LastEmitted;
1544           ++LastEmitted;    // Consume modifier character.
1545         }
1546         
1547         if (*LastEmitted != '}') {
1548           llvm_report_error("Bad ${} expression in inline asm string: '" 
1549                             + std::string(AsmStr) + "'");
1550         }
1551         ++LastEmitted;    // Consume '}' character.
1552       }
1553       
1554       if ((unsigned)Val >= NumOperands-1) {
1555         llvm_report_error("Invalid $ operand number in inline asm string: '" 
1556                           + std::string(AsmStr) + "'");
1557       }
1558       
1559       // Okay, we finally have a value number.  Ask the target to print this
1560       // operand!
1561       if (CurVariant == -1 || CurVariant == AsmPrinterVariant) {
1562         unsigned OpNo = 1;
1563
1564         bool Error = false;
1565
1566         // Scan to find the machine operand number for the operand.
1567         for (; Val; --Val) {
1568           if (OpNo >= MI->getNumOperands()) break;
1569           unsigned OpFlags = MI->getOperand(OpNo).getImm();
1570           OpNo += InlineAsm::getNumOperandRegisters(OpFlags) + 1;
1571         }
1572
1573         if (OpNo >= MI->getNumOperands()) {
1574           Error = true;
1575         } else {
1576           unsigned OpFlags = MI->getOperand(OpNo).getImm();
1577           ++OpNo;  // Skip over the ID number.
1578
1579           if (Modifier[0]=='l')  // labels are target independent
1580             GetMBBSymbol(MI->getOperand(OpNo).getMBB()
1581                            ->getNumber())->print(O, MAI);
1582           else {
1583             AsmPrinter *AP = const_cast<AsmPrinter*>(this);
1584             if ((OpFlags & 7) == 4) {
1585               Error = AP->PrintAsmMemoryOperand(MI, OpNo, AsmPrinterVariant,
1586                                                 Modifier[0] ? Modifier : 0);
1587             } else {
1588               Error = AP->PrintAsmOperand(MI, OpNo, AsmPrinterVariant,
1589                                           Modifier[0] ? Modifier : 0);
1590             }
1591           }
1592         }
1593         if (Error) {
1594           std::string msg;
1595           raw_string_ostream Msg(msg);
1596           Msg << "Invalid operand found in inline asm: '"
1597                << AsmStr << "'\n";
1598           MI->print(Msg);
1599           llvm_report_error(Msg.str());
1600         }
1601       }
1602       break;
1603     }
1604     }
1605   }
1606   O << "\n\t" << MAI->getCommentString() << MAI->getInlineAsmEnd();
1607 }
1608
1609 /// printImplicitDef - This method prints the specified machine instruction
1610 /// that is an implicit def.
1611 void AsmPrinter::printImplicitDef(const MachineInstr *MI) const {
1612   if (!VerboseAsm) return;
1613   O.PadToColumn(MAI->getCommentColumn());
1614   O << MAI->getCommentString() << " implicit-def: "
1615     << TRI->getName(MI->getOperand(0).getReg());
1616 }
1617
1618 void AsmPrinter::printKill(const MachineInstr *MI) const {
1619   if (!VerboseAsm) return;
1620   O.PadToColumn(MAI->getCommentColumn());
1621   O << MAI->getCommentString() << " kill:";
1622   for (unsigned n = 0, e = MI->getNumOperands(); n != e; ++n) {
1623     const MachineOperand &op = MI->getOperand(n);
1624     assert(op.isReg() && "KILL instruction must have only register operands");
1625     O << ' ' << TRI->getName(op.getReg()) << (op.isDef() ? "<def>" : "<kill>");
1626   }
1627 }
1628
1629 /// printLabel - This method prints a local label used by debug and
1630 /// exception handling tables.
1631 void AsmPrinter::printLabel(const MachineInstr *MI) const {
1632   printLabel(MI->getOperand(0).getImm());
1633 }
1634
1635 void AsmPrinter::printLabel(unsigned Id) const {
1636   O << MAI->getPrivateGlobalPrefix() << "label" << Id << ':';
1637 }
1638
1639 /// PrintAsmOperand - Print the specified operand of MI, an INLINEASM
1640 /// instruction, using the specified assembler variant.  Targets should
1641 /// overried this to format as appropriate.
1642 bool AsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
1643                                  unsigned AsmVariant, const char *ExtraCode) {
1644   // Target doesn't support this yet!
1645   return true;
1646 }
1647
1648 bool AsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
1649                                        unsigned AsmVariant,
1650                                        const char *ExtraCode) {
1651   // Target doesn't support this yet!
1652   return true;
1653 }
1654
1655 MCSymbol *AsmPrinter::GetBlockAddressSymbol(const BlockAddress *BA,
1656                                             const char *Suffix) const {
1657   return GetBlockAddressSymbol(BA->getFunction(), BA->getBasicBlock(), Suffix);
1658 }
1659
1660 MCSymbol *AsmPrinter::GetBlockAddressSymbol(const Function *F,
1661                                             const BasicBlock *BB,
1662                                             const char *Suffix) const {
1663   assert(BB->hasName() &&
1664          "Address of anonymous basic block not supported yet!");
1665
1666   // This code must use the function name itself, and not the function number,
1667   // since it must be possible to generate the label name from within other
1668   // functions.
1669   std::string FuncName = Mang->getMangledName(F);
1670
1671   SmallString<60> Name;
1672   raw_svector_ostream(Name) << MAI->getPrivateGlobalPrefix() << "BA"
1673     << FuncName.size() << '_' << FuncName << '_'
1674     << Mang->makeNameProper(BB->getName())
1675     << Suffix;
1676
1677   return OutContext.GetOrCreateSymbol(Name.str());
1678 }
1679
1680 MCSymbol *AsmPrinter::GetMBBSymbol(unsigned MBBID) const {
1681   SmallString<60> Name;
1682   raw_svector_ostream(Name) << MAI->getPrivateGlobalPrefix() << "BB"
1683     << getFunctionNumber() << '_' << MBBID;
1684   
1685   return OutContext.GetOrCreateSymbol(Name.str());
1686 }
1687
1688
1689 /// EmitBasicBlockStart - This method prints the label for the specified
1690 /// MachineBasicBlock, an alignment (if present) and a comment describing
1691 /// it if appropriate.
1692 void AsmPrinter::EmitBasicBlockStart(const MachineBasicBlock *MBB) const {
1693   // Emit an alignment directive for this block, if needed.
1694   if (unsigned Align = MBB->getAlignment())
1695     EmitAlignment(Log2_32(Align));
1696
1697   // If the block has its address taken, emit a special label to satisfy
1698   // references to the block. This is done so that we don't need to
1699   // remember the number of this label, and so that we can make
1700   // forward references to labels without knowing what their numbers
1701   // will be.
1702   if (MBB->hasAddressTaken()) {
1703     GetBlockAddressSymbol(MBB->getBasicBlock()->getParent(),
1704                           MBB->getBasicBlock())->print(O, MAI);
1705     O << ':';
1706     if (VerboseAsm) {
1707       O.PadToColumn(MAI->getCommentColumn());
1708       O << MAI->getCommentString() << " Address Taken";
1709     }
1710     O << '\n';
1711   }
1712
1713   // Print the main label for the block.
1714   if (MBB->pred_empty() || MBB->isOnlyReachableByFallthrough()) {
1715     if (VerboseAsm)
1716       O << MAI->getCommentString() << " BB#" << MBB->getNumber() << ':';
1717   } else {
1718     GetMBBSymbol(MBB->getNumber())->print(O, MAI);
1719     O << ':';
1720     if (!VerboseAsm)
1721       O << '\n';
1722   }
1723   
1724   // Print some comments to accompany the label.
1725   if (VerboseAsm) {
1726     if (const BasicBlock *BB = MBB->getBasicBlock())
1727       if (BB->hasName()) {
1728         O.PadToColumn(MAI->getCommentColumn());
1729         O << MAI->getCommentString() << ' ';
1730         WriteAsOperand(O, BB, /*PrintType=*/false);
1731       }
1732
1733     EmitComments(*MBB);
1734     O << '\n';
1735   }
1736 }
1737
1738 /// printPICJumpTableSetLabel - This method prints a set label for the
1739 /// specified MachineBasicBlock for a jumptable entry.
1740 void AsmPrinter::printPICJumpTableSetLabel(unsigned uid, 
1741                                            const MachineBasicBlock *MBB) const {
1742   if (!MAI->getSetDirective())
1743     return;
1744   
1745   O << MAI->getSetDirective() << ' ' << MAI->getPrivateGlobalPrefix()
1746     << getFunctionNumber() << '_' << uid << "_set_" << MBB->getNumber() << ',';
1747   GetMBBSymbol(MBB->getNumber())->print(O, MAI);
1748   O << '-' << MAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber() 
1749     << '_' << uid << '\n';
1750 }
1751
1752 void AsmPrinter::printPICJumpTableSetLabel(unsigned uid, unsigned uid2,
1753                                            const MachineBasicBlock *MBB) const {
1754   if (!MAI->getSetDirective())
1755     return;
1756   
1757   O << MAI->getSetDirective() << ' ' << MAI->getPrivateGlobalPrefix()
1758     << getFunctionNumber() << '_' << uid << '_' << uid2
1759     << "_set_" << MBB->getNumber() << ',';
1760   GetMBBSymbol(MBB->getNumber())->print(O, MAI);
1761   O << '-' << MAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber() 
1762     << '_' << uid << '_' << uid2 << '\n';
1763 }
1764
1765 /// printDataDirective - This method prints the asm directive for the
1766 /// specified type.
1767 void AsmPrinter::printDataDirective(const Type *type, unsigned AddrSpace) {
1768   const TargetData *TD = TM.getTargetData();
1769   switch (type->getTypeID()) {
1770   case Type::FloatTyID: case Type::DoubleTyID:
1771   case Type::X86_FP80TyID: case Type::FP128TyID: case Type::PPC_FP128TyID:
1772     assert(0 && "Should have already output floating point constant.");
1773   default:
1774     assert(0 && "Can't handle printing this type of thing");
1775   case Type::IntegerTyID: {
1776     unsigned BitWidth = cast<IntegerType>(type)->getBitWidth();
1777     if (BitWidth <= 8)
1778       O << MAI->getData8bitsDirective(AddrSpace);
1779     else if (BitWidth <= 16)
1780       O << MAI->getData16bitsDirective(AddrSpace);
1781     else if (BitWidth <= 32)
1782       O << MAI->getData32bitsDirective(AddrSpace);
1783     else if (BitWidth <= 64) {
1784       assert(MAI->getData64bitsDirective(AddrSpace) &&
1785              "Target cannot handle 64-bit constant exprs!");
1786       O << MAI->getData64bitsDirective(AddrSpace);
1787     } else {
1788       llvm_unreachable("Target cannot handle given data directive width!");
1789     }
1790     break;
1791   }
1792   case Type::PointerTyID:
1793     if (TD->getPointerSize() == 8) {
1794       assert(MAI->getData64bitsDirective(AddrSpace) &&
1795              "Target cannot handle 64-bit pointer exprs!");
1796       O << MAI->getData64bitsDirective(AddrSpace);
1797     } else if (TD->getPointerSize() == 2) {
1798       O << MAI->getData16bitsDirective(AddrSpace);
1799     } else if (TD->getPointerSize() == 1) {
1800       O << MAI->getData8bitsDirective(AddrSpace);
1801     } else {
1802       O << MAI->getData32bitsDirective(AddrSpace);
1803     }
1804     break;
1805   }
1806 }
1807
1808 void AsmPrinter::printVisibility(const std::string& Name,
1809                                  unsigned Visibility) const {
1810   if (Visibility == GlobalValue::HiddenVisibility) {
1811     if (const char *Directive = MAI->getHiddenDirective())
1812       O << Directive << Name << '\n';
1813   } else if (Visibility == GlobalValue::ProtectedVisibility) {
1814     if (const char *Directive = MAI->getProtectedDirective())
1815       O << Directive << Name << '\n';
1816   }
1817 }
1818
1819 void AsmPrinter::printOffset(int64_t Offset) const {
1820   if (Offset > 0)
1821     O << '+' << Offset;
1822   else if (Offset < 0)
1823     O << Offset;
1824 }
1825
1826 GCMetadataPrinter *AsmPrinter::GetOrCreateGCPrinter(GCStrategy *S) {
1827   if (!S->usesMetadata())
1828     return 0;
1829   
1830   gcp_iterator GCPI = GCMetadataPrinters.find(S);
1831   if (GCPI != GCMetadataPrinters.end())
1832     return GCPI->second;
1833   
1834   const char *Name = S->getName().c_str();
1835   
1836   for (GCMetadataPrinterRegistry::iterator
1837          I = GCMetadataPrinterRegistry::begin(),
1838          E = GCMetadataPrinterRegistry::end(); I != E; ++I)
1839     if (strcmp(Name, I->getName()) == 0) {
1840       GCMetadataPrinter *GMP = I->instantiate();
1841       GMP->S = S;
1842       GCMetadataPrinters.insert(std::make_pair(S, GMP));
1843       return GMP;
1844     }
1845   
1846   errs() << "no GCMetadataPrinter registered for GC: " << Name << "\n";
1847   llvm_unreachable(0);
1848 }
1849
1850 /// EmitComments - Pretty-print comments for instructions
1851 void AsmPrinter::EmitComments(const MachineInstr &MI) const {
1852   if (!VerboseAsm)
1853     return;
1854
1855   bool Newline = false;
1856
1857   if (!MI.getDebugLoc().isUnknown()) {
1858     DebugLocTuple DLT = MF->getDebugLocTuple(MI.getDebugLoc());
1859
1860     // Print source line info.
1861     O.PadToColumn(MAI->getCommentColumn());
1862     O << MAI->getCommentString() << ' ';
1863     DIScope Scope(DLT.Scope);
1864     // Omit the directory, because it's likely to be long and uninteresting.
1865     if (!Scope.isNull())
1866       O << Scope.getFilename();
1867     else
1868       O << "<unknown>";
1869     O << ':' << DLT.Line;
1870     if (DLT.Col != 0)
1871       O << ':' << DLT.Col;
1872     Newline = true;
1873   }
1874
1875   // Check for spills and reloads
1876   int FI;
1877
1878   const MachineFrameInfo *FrameInfo =
1879     MI.getParent()->getParent()->getFrameInfo();
1880
1881   // We assume a single instruction only has a spill or reload, not
1882   // both.
1883   const MachineMemOperand *MMO;
1884   if (TM.getInstrInfo()->isLoadFromStackSlotPostFE(&MI, FI)) {
1885     if (FrameInfo->isSpillSlotObjectIndex(FI)) {
1886       MMO = *MI.memoperands_begin();
1887       if (Newline) O << '\n';
1888       O.PadToColumn(MAI->getCommentColumn());
1889       O << MAI->getCommentString() << ' ' << MMO->getSize() << "-byte Reload";
1890       Newline = true;
1891     }
1892   }
1893   else if (TM.getInstrInfo()->hasLoadFromStackSlot(&MI, MMO, FI)) {
1894     if (FrameInfo->isSpillSlotObjectIndex(FI)) {
1895       if (Newline) O << '\n';
1896       O.PadToColumn(MAI->getCommentColumn());
1897       O << MAI->getCommentString() << ' '
1898         << MMO->getSize() << "-byte Folded Reload";
1899       Newline = true;
1900     }
1901   }
1902   else if (TM.getInstrInfo()->isStoreToStackSlotPostFE(&MI, FI)) {
1903     if (FrameInfo->isSpillSlotObjectIndex(FI)) {
1904       MMO = *MI.memoperands_begin();
1905       if (Newline) O << '\n';
1906       O.PadToColumn(MAI->getCommentColumn());
1907       O << MAI->getCommentString() << ' ' << MMO->getSize() << "-byte Spill";
1908       Newline = true;
1909     }
1910   }
1911   else if (TM.getInstrInfo()->hasStoreToStackSlot(&MI, MMO, FI)) {
1912     if (FrameInfo->isSpillSlotObjectIndex(FI)) {
1913       if (Newline) O << '\n';
1914       O.PadToColumn(MAI->getCommentColumn());
1915       O << MAI->getCommentString() << ' '
1916         << MMO->getSize() << "-byte Folded Spill";
1917       Newline = true;
1918     }
1919   }
1920
1921   // Check for spill-induced copies
1922   unsigned SrcReg, DstReg, SrcSubIdx, DstSubIdx;
1923   if (TM.getInstrInfo()->isMoveInstr(MI, SrcReg, DstReg,
1924                                       SrcSubIdx, DstSubIdx)) {
1925     if (MI.getAsmPrinterFlag(ReloadReuse)) {
1926       if (Newline) O << '\n';
1927       O.PadToColumn(MAI->getCommentColumn());
1928       O << MAI->getCommentString() << " Reload Reuse";
1929     }
1930   }
1931 }
1932
1933 /// PrintChildLoopComment - Print comments about child loops within
1934 /// the loop for this basic block, with nesting.
1935 ///
1936 static void PrintChildLoopComment(formatted_raw_ostream &O,
1937                                   const MachineLoop *loop,
1938                                   const MCAsmInfo *MAI,
1939                                   int FunctionNumber) {
1940   // Add child loop information
1941   for(MachineLoop::iterator cl = loop->begin(),
1942         clend = loop->end();
1943       cl != clend;
1944       ++cl) {
1945     MachineBasicBlock *Header = (*cl)->getHeader();
1946     assert(Header && "No header for loop");
1947
1948     O << '\n';
1949     O.PadToColumn(MAI->getCommentColumn());
1950
1951     O << MAI->getCommentString();
1952     O.indent(((*cl)->getLoopDepth()-1)*2)
1953       << " Child Loop BB" << FunctionNumber << "_"
1954       << Header->getNumber() << " Depth " << (*cl)->getLoopDepth();
1955
1956     PrintChildLoopComment(O, *cl, MAI, FunctionNumber);
1957   }
1958 }
1959
1960 /// EmitComments - Pretty-print comments for basic blocks
1961 void AsmPrinter::EmitComments(const MachineBasicBlock &MBB) const {
1962   if (VerboseAsm) {
1963     // Add loop depth information
1964     const MachineLoop *loop = LI->getLoopFor(&MBB);
1965
1966     if (loop) {
1967       // Print a newline after bb# annotation.
1968       O << "\n";
1969       O.PadToColumn(MAI->getCommentColumn());
1970       O << MAI->getCommentString() << " Loop Depth " << loop->getLoopDepth()
1971         << '\n';
1972
1973       O.PadToColumn(MAI->getCommentColumn());
1974
1975       MachineBasicBlock *Header = loop->getHeader();
1976       assert(Header && "No header for loop");
1977       
1978       if (Header == &MBB) {
1979         O << MAI->getCommentString() << " Loop Header";
1980         PrintChildLoopComment(O, loop, MAI, getFunctionNumber());
1981       }
1982       else {
1983         O << MAI->getCommentString() << " Loop Header is BB"
1984           << getFunctionNumber() << "_" << loop->getHeader()->getNumber();
1985       }
1986
1987       if (loop->empty()) {
1988         O << '\n';
1989         O.PadToColumn(MAI->getCommentColumn());
1990         O << MAI->getCommentString() << " Inner Loop";
1991       }
1992
1993       // Add parent loop information
1994       for (const MachineLoop *CurLoop = loop->getParentLoop();
1995            CurLoop;
1996            CurLoop = CurLoop->getParentLoop()) {
1997         MachineBasicBlock *Header = CurLoop->getHeader();
1998         assert(Header && "No header for loop");
1999
2000         O << '\n';
2001         O.PadToColumn(MAI->getCommentColumn());
2002         O << MAI->getCommentString();
2003         O.indent((CurLoop->getLoopDepth()-1)*2)
2004           << " Inside Loop BB" << getFunctionNumber() << "_"
2005           << Header->getNumber() << " Depth " << CurLoop->getLoopDepth();
2006       }
2007     }
2008   }
2009 }