68fd77c0bdb5a97ac915835019171e291c98fc4f
[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 #define DEBUG_TYPE "asm-printer"
15 #include "llvm/CodeGen/AsmPrinter.h"
16 #include "llvm/Assembly/Writer.h"
17 #include "llvm/DerivedTypes.h"
18 #include "llvm/Constants.h"
19 #include "llvm/Module.h"
20 #include "llvm/CodeGen/DwarfWriter.h"
21 #include "llvm/CodeGen/GCMetadataPrinter.h"
22 #include "llvm/CodeGen/MachineConstantPool.h"
23 #include "llvm/CodeGen/MachineFrameInfo.h"
24 #include "llvm/CodeGen/MachineFunction.h"
25 #include "llvm/CodeGen/MachineJumpTableInfo.h"
26 #include "llvm/CodeGen/MachineLoopInfo.h"
27 #include "llvm/CodeGen/MachineModuleInfo.h"
28 #include "llvm/Analysis/DebugInfo.h"
29 #include "llvm/MC/MCContext.h"
30 #include "llvm/MC/MCExpr.h"
31 #include "llvm/MC/MCInst.h"
32 #include "llvm/MC/MCSection.h"
33 #include "llvm/MC/MCStreamer.h"
34 #include "llvm/MC/MCSymbol.h"
35 #include "llvm/MC/MCAsmInfo.h"
36 #include "llvm/Target/Mangler.h"
37 #include "llvm/Target/TargetData.h"
38 #include "llvm/Target/TargetInstrInfo.h"
39 #include "llvm/Target/TargetLowering.h"
40 #include "llvm/Target/TargetLoweringObjectFile.h"
41 #include "llvm/Target/TargetOptions.h"
42 #include "llvm/Target/TargetRegisterInfo.h"
43 #include "llvm/ADT/SmallPtrSet.h"
44 #include "llvm/ADT/SmallString.h"
45 #include "llvm/ADT/Statistic.h"
46 #include "llvm/Support/CommandLine.h"
47 #include "llvm/Support/Debug.h"
48 #include "llvm/Support/ErrorHandling.h"
49 #include "llvm/Support/Format.h"
50 #include "llvm/Support/FormattedStream.h"
51 #include <cerrno>
52 using namespace llvm;
53
54 STATISTIC(EmittedInsts, "Number of machine instrs printed");
55
56 static cl::opt<cl::boolOrDefault>
57 AsmVerbose("asm-verbose", cl::desc("Add comments to directives."),
58            cl::init(cl::BOU_UNSET));
59
60 static bool getVerboseAsm(bool VDef) {
61   switch (AsmVerbose) {
62   default:
63   case cl::BOU_UNSET: return VDef;
64   case cl::BOU_TRUE:  return true;
65   case cl::BOU_FALSE: return false;
66   }      
67 }
68
69 char AsmPrinter::ID = 0;
70 AsmPrinter::AsmPrinter(formatted_raw_ostream &o, TargetMachine &tm,
71                        const MCAsmInfo *T, bool VDef)
72   : MachineFunctionPass(&ID), O(o),
73     TM(tm), MAI(T), TRI(tm.getRegisterInfo()),
74
75     OutContext(*new MCContext()),
76     // FIXME: Pass instprinter to streamer.
77     OutStreamer(*createAsmStreamer(OutContext, O, *T,
78                                    TM.getTargetData()->isLittleEndian(),
79                                    getVerboseAsm(VDef), 0)),
80
81     LastMI(0), LastFn(0), Counter(~0U), PrevDLT(NULL) {
82   DW = 0; MMI = 0;
83   VerboseAsm = getVerboseAsm(VDef);
84 }
85
86 AsmPrinter::~AsmPrinter() {
87   for (gcp_iterator I = GCMetadataPrinters.begin(),
88                     E = GCMetadataPrinters.end(); I != E; ++I)
89     delete I->second;
90   
91   delete &OutStreamer;
92   delete &OutContext;
93 }
94
95 /// getFunctionNumber - Return a unique ID for the current function.
96 ///
97 unsigned AsmPrinter::getFunctionNumber() const {
98   return MF->getFunctionNumber();
99 }
100
101 TargetLoweringObjectFile &AsmPrinter::getObjFileLowering() const {
102   return TM.getTargetLowering()->getObjFileLowering();
103 }
104
105 /// getCurrentSection() - Return the current section we are emitting to.
106 const MCSection *AsmPrinter::getCurrentSection() const {
107   return OutStreamer.getCurrentSection();
108 }
109
110
111 void AsmPrinter::getAnalysisUsage(AnalysisUsage &AU) const {
112   AU.setPreservesAll();
113   MachineFunctionPass::getAnalysisUsage(AU);
114   AU.addRequired<GCModuleInfo>();
115   if (VerboseAsm)
116     AU.addRequired<MachineLoopInfo>();
117 }
118
119 bool AsmPrinter::doInitialization(Module &M) {
120   // Initialize TargetLoweringObjectFile.
121   const_cast<TargetLoweringObjectFile&>(getObjFileLowering())
122     .Initialize(OutContext, TM);
123   
124   Mang = new Mangler(*MAI);
125   
126   // Allow the target to emit any magic that it wants at the start of the file.
127   EmitStartOfAsmFile(M);
128
129   // Very minimal debug info. It is ignored if we emit actual debug info. If we
130   // don't, this at least helps the user find where a global came from.
131   if (MAI->hasSingleParameterDotFile()) {
132     // .file "foo.c"
133     OutStreamer.EmitFileDirective(M.getModuleIdentifier());
134   }
135
136   GCModuleInfo *MI = getAnalysisIfAvailable<GCModuleInfo>();
137   assert(MI && "AsmPrinter didn't require GCModuleInfo?");
138   for (GCModuleInfo::iterator I = MI->begin(), E = MI->end(); I != E; ++I)
139     if (GCMetadataPrinter *MP = GetOrCreateGCPrinter(*I))
140       MP->beginAssembly(O, *this, *MAI);
141   
142   if (!M.getModuleInlineAsm().empty())
143     O << MAI->getCommentString() << " Start of file scope inline assembly\n"
144       << M.getModuleInlineAsm()
145       << '\n' << MAI->getCommentString()
146       << " End of file scope inline assembly\n";
147
148   MMI = getAnalysisIfAvailable<MachineModuleInfo>();
149   if (MMI)
150     MMI->AnalyzeModule(M);
151   DW = getAnalysisIfAvailable<DwarfWriter>();
152   if (DW)
153     DW->BeginModule(&M, MMI, O, this, MAI);
154
155   return false;
156 }
157
158 void AsmPrinter::EmitLinkage(unsigned Linkage, MCSymbol *GVSym) const {
159   switch ((GlobalValue::LinkageTypes)Linkage) {
160   case GlobalValue::CommonLinkage:
161   case GlobalValue::LinkOnceAnyLinkage:
162   case GlobalValue::LinkOnceODRLinkage:
163   case GlobalValue::WeakAnyLinkage:
164   case GlobalValue::WeakODRLinkage:
165   case GlobalValue::LinkerPrivateLinkage:
166     if (MAI->getWeakDefDirective() != 0) {
167       // .globl _foo
168       OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global);
169       // .weak_definition _foo
170       OutStreamer.EmitSymbolAttribute(GVSym, MCSA_WeakDefinition);
171     } else if (const char *LinkOnce = MAI->getLinkOnceDirective()) {
172       // .globl _foo
173       OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global);
174       // FIXME: linkonce should be a section attribute, handled by COFF Section
175       // assignment.
176       // http://sourceware.org/binutils/docs-2.20/as/Linkonce.html#Linkonce
177       // .linkonce discard
178       // FIXME: It would be nice to use .linkonce samesize for non-common
179       // globals.
180       O << LinkOnce;
181     } else {
182       // .weak _foo
183       OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Weak);
184     }
185     break;
186   case GlobalValue::DLLExportLinkage:
187   case GlobalValue::AppendingLinkage:
188     // FIXME: appending linkage variables should go into a section of
189     // their name or something.  For now, just emit them as external.
190   case GlobalValue::ExternalLinkage:
191     // If external or appending, declare as a global symbol.
192     // .globl _foo
193     OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global);
194     break;
195   case GlobalValue::PrivateLinkage:
196   case GlobalValue::InternalLinkage:
197     break;
198   default:
199     llvm_unreachable("Unknown linkage type!");
200   }
201 }
202
203
204 /// EmitGlobalVariable - Emit the specified global variable to the .s file.
205 void AsmPrinter::EmitGlobalVariable(const GlobalVariable *GV) {
206   if (!GV->hasInitializer())   // External globals require no code.
207     return;
208   
209   // Check to see if this is a special global used by LLVM, if so, emit it.
210   if (EmitSpecialLLVMGlobal(GV))
211     return;
212
213   MCSymbol *GVSym = GetGlobalValueSymbol(GV);
214   EmitVisibility(GVSym, GV->getVisibility());
215
216   if (MAI->hasDotTypeDotSizeDirective())
217     OutStreamer.EmitSymbolAttribute(GVSym, MCSA_ELF_TypeObject);
218   
219   SectionKind GVKind = TargetLoweringObjectFile::getKindForGlobal(GV, TM);
220
221   const TargetData *TD = TM.getTargetData();
222   unsigned Size = TD->getTypeAllocSize(GV->getType()->getElementType());
223   unsigned AlignLog = TD->getPreferredAlignmentLog(GV);
224   
225   // Handle common and BSS local symbols (.lcomm).
226   if (GVKind.isCommon() || GVKind.isBSSLocal()) {
227     if (Size == 0) Size = 1;   // .comm Foo, 0 is undefined, avoid it.
228     
229     if (VerboseAsm) {
230       WriteAsOperand(OutStreamer.GetCommentOS(), GV,
231                      /*PrintType=*/false, GV->getParent());
232       OutStreamer.GetCommentOS() << '\n';
233     }
234     
235     // Handle common symbols.
236     if (GVKind.isCommon()) {
237       // .comm _foo, 42, 4
238       OutStreamer.EmitCommonSymbol(GVSym, Size, 1 << AlignLog);
239       return;
240     }
241     
242     // Handle local BSS symbols.
243     if (MAI->hasMachoZeroFillDirective()) {
244       const MCSection *TheSection =
245         getObjFileLowering().SectionForGlobal(GV, GVKind, Mang, TM);
246       // .zerofill __DATA, __bss, _foo, 400, 5
247       OutStreamer.EmitZerofill(TheSection, GVSym, Size, 1 << AlignLog);
248       return;
249     }
250     
251     if (MAI->hasLCOMMDirective()) {
252       // .lcomm _foo, 42
253       OutStreamer.EmitLocalCommonSymbol(GVSym, Size);
254       return;
255     }
256     
257     // .local _foo
258     OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Local);
259     // .comm _foo, 42, 4
260     OutStreamer.EmitCommonSymbol(GVSym, Size, 1 << AlignLog);
261     return;
262   }
263   
264   const MCSection *TheSection =
265     getObjFileLowering().SectionForGlobal(GV, GVKind, Mang, TM);
266
267   // Handle the zerofill directive on darwin, which is a special form of BSS
268   // emission.
269   if (GVKind.isBSSExtern() && MAI->hasMachoZeroFillDirective()) {
270     // .globl _foo
271     OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global);
272     // .zerofill __DATA, __common, _foo, 400, 5
273     OutStreamer.EmitZerofill(TheSection, GVSym, Size, 1 << AlignLog);
274     return;
275   }
276
277   OutStreamer.SwitchSection(TheSection);
278
279   EmitLinkage(GV->getLinkage(), GVSym);
280   EmitAlignment(AlignLog, GV);
281
282   if (VerboseAsm) {
283     WriteAsOperand(OutStreamer.GetCommentOS(), GV,
284                    /*PrintType=*/false, GV->getParent());
285     OutStreamer.GetCommentOS() << '\n';
286   }
287   OutStreamer.EmitLabel(GVSym);
288
289   EmitGlobalConstant(GV->getInitializer());
290
291   if (MAI->hasDotTypeDotSizeDirective())
292     // .size foo, 42
293     OutStreamer.EmitELFSize(GVSym, MCConstantExpr::Create(Size, OutContext));
294   
295   OutStreamer.AddBlankLine();
296 }
297
298 /// EmitFunctionHeader - This method emits the header for the current
299 /// function.
300 void AsmPrinter::EmitFunctionHeader() {
301   // Print out constants referenced by the function
302   EmitConstantPool();
303   
304   // Print the 'header' of function.
305   const Function *F = MF->getFunction();
306
307   OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang, TM));
308   EmitVisibility(CurrentFnSym, F->getVisibility());
309
310   EmitLinkage(F->getLinkage(), CurrentFnSym);
311   EmitAlignment(MF->getAlignment(), F);
312
313   if (MAI->hasDotTypeDotSizeDirective())
314     OutStreamer.EmitSymbolAttribute(CurrentFnSym, MCSA_ELF_TypeFunction);
315
316   if (VerboseAsm) {
317     WriteAsOperand(OutStreamer.GetCommentOS(), F,
318                    /*PrintType=*/false, F->getParent());
319     OutStreamer.GetCommentOS() << '\n';
320   }
321
322   // Emit the CurrentFnSym.  This is is a virtual function to allow targets to
323   // do their wild and crazy things as required.
324   EmitFunctionEntryLabel();
325   
326   // Add some workaround for linkonce linkage on Cygwin\MinGW.
327   if (MAI->getLinkOnceDirective() != 0 &&
328       (F->hasLinkOnceLinkage() || F->hasWeakLinkage()))
329     // FIXME: What is this?
330     O << "Lllvm$workaround$fake$stub$" << *CurrentFnSym << ":\n";
331   
332   // Emit pre-function debug and/or EH information.
333   if (MAI->doesSupportDebugInformation() || MAI->doesSupportExceptionHandling())
334     DW->BeginFunction(MF);
335 }
336
337 /// EmitFunctionEntryLabel - Emit the label that is the entrypoint for the
338 /// function.  This can be overridden by targets as required to do custom stuff.
339 void AsmPrinter::EmitFunctionEntryLabel() {
340   OutStreamer.EmitLabel(CurrentFnSym);
341 }
342
343
344 /// EmitFunctionBody - This method emits the body and trailer for a
345 /// function.
346 void AsmPrinter::EmitFunctionBody() {
347   
348   // Print out code for the function.
349   bool HasAnyRealCode = false;
350   for (MachineFunction::const_iterator I = MF->begin(), E = MF->end();
351        I != E; ++I) {
352     // Print a label for the basic block.
353     EmitBasicBlockStart(I);
354     for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
355          II != IE; ++II) {
356       // Print the assembly for the instruction.
357       if (!II->isLabel())
358         HasAnyRealCode = true;
359       
360       ++EmittedInsts;
361       
362       // FIXME: Clean up processDebugLoc.
363       processDebugLoc(II, true);
364       
365       EmitInstruction(II);
366       
367       if (VerboseAsm)
368         EmitComments(*II);
369       O << '\n';
370       
371       // FIXME: Clean up processDebugLoc.
372       processDebugLoc(II, false);
373     }
374   }
375   
376   // If the function is empty and the object file uses .subsections_via_symbols,
377   // then we need to emit *some* thing to the function body to prevent the
378   // labels from collapsing together.
379   if (MAI->hasSubsectionsViaSymbols() && !HasAnyRealCode) {
380     // FIXME: EmitByte(0).
381     O << "\tnop\n";
382   }
383   
384   if (MAI->hasDotTypeDotSizeDirective())
385     O << "\t.size\t" << *CurrentFnSym << ", .-" << *CurrentFnSym << '\n';
386   
387   // Emit post-function debug information.
388   if (MAI->doesSupportDebugInformation() || MAI->doesSupportExceptionHandling())
389     DW->EndFunction(MF);
390   
391   // Print out jump tables referenced by the function.
392   EmitJumpTableInfo();
393 }
394
395
396 bool AsmPrinter::doFinalization(Module &M) {
397   // Emit global variables.
398   for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
399        I != E; ++I)
400     EmitGlobalVariable(I);
401   
402   // Emit final debug information.
403   if (MAI->doesSupportDebugInformation() || MAI->doesSupportExceptionHandling())
404     DW->EndModule();
405   
406   // If the target wants to know about weak references, print them all.
407   if (MAI->getWeakRefDirective()) {
408     // FIXME: This is not lazy, it would be nice to only print weak references
409     // to stuff that is actually used.  Note that doing so would require targets
410     // to notice uses in operands (due to constant exprs etc).  This should
411     // happen with the MC stuff eventually.
412
413     // Print out module-level global variables here.
414     for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
415          I != E; ++I) {
416       if (!I->hasExternalWeakLinkage()) continue;
417       OutStreamer.EmitSymbolAttribute(GetGlobalValueSymbol(I),
418                                       MCSA_WeakReference);
419     }
420     
421     for (Module::const_iterator I = M.begin(), E = M.end(); I != E; ++I) {
422       if (!I->hasExternalWeakLinkage()) continue;
423       OutStreamer.EmitSymbolAttribute(GetGlobalValueSymbol(I),
424                                       MCSA_WeakReference);
425     }
426   }
427
428   if (MAI->hasSetDirective()) {
429     OutStreamer.AddBlankLine();
430     for (Module::const_alias_iterator I = M.alias_begin(), E = M.alias_end();
431          I != E; ++I) {
432       MCSymbol *Name = GetGlobalValueSymbol(I);
433
434       const GlobalValue *GV = cast<GlobalValue>(I->getAliasedGlobal());
435       MCSymbol *Target = GetGlobalValueSymbol(GV);
436
437       if (I->hasExternalLinkage() || !MAI->getWeakRefDirective())
438         OutStreamer.EmitSymbolAttribute(Name, MCSA_Global);
439       else if (I->hasWeakLinkage())
440         OutStreamer.EmitSymbolAttribute(Name, MCSA_WeakReference);
441       else
442         assert(I->hasLocalLinkage() && "Invalid alias linkage");
443
444       EmitVisibility(Name, I->getVisibility());
445
446       // Emit the directives as assignments aka .set:
447       OutStreamer.EmitAssignment(Name, 
448                                  MCSymbolRefExpr::Create(Target, OutContext));
449     }
450   }
451
452   GCModuleInfo *MI = getAnalysisIfAvailable<GCModuleInfo>();
453   assert(MI && "AsmPrinter didn't require GCModuleInfo?");
454   for (GCModuleInfo::iterator I = MI->end(), E = MI->begin(); I != E; )
455     if (GCMetadataPrinter *MP = GetOrCreateGCPrinter(*--I))
456       MP->finishAssembly(O, *this, *MAI);
457
458   // If we don't have any trampolines, then we don't require stack memory
459   // to be executable. Some targets have a directive to declare this.
460   Function *InitTrampolineIntrinsic = M.getFunction("llvm.init.trampoline");
461   if (!InitTrampolineIntrinsic || InitTrampolineIntrinsic->use_empty())
462     if (MCSection *S = MAI->getNonexecutableStackSection(OutContext))
463       OutStreamer.SwitchSection(S);
464   
465   // Allow the target to emit any magic that it wants at the end of the file,
466   // after everything else has gone out.
467   EmitEndOfAsmFile(M);
468   
469   delete Mang; Mang = 0;
470   DW = 0; MMI = 0;
471   
472   OutStreamer.Finish();
473   return false;
474 }
475
476 void AsmPrinter::SetupMachineFunction(MachineFunction &MF) {
477   this->MF = &MF;
478   // Get the function symbol.
479   CurrentFnSym = GetGlobalValueSymbol(MF.getFunction());
480
481   if (VerboseAsm)
482     LI = &getAnalysis<MachineLoopInfo>();
483 }
484
485 namespace {
486   // SectionCPs - Keep track the alignment, constpool entries per Section.
487   struct SectionCPs {
488     const MCSection *S;
489     unsigned Alignment;
490     SmallVector<unsigned, 4> CPEs;
491     SectionCPs(const MCSection *s, unsigned a) : S(s), Alignment(a) {}
492   };
493 }
494
495 /// EmitConstantPool - Print to the current output stream assembly
496 /// representations of the constants in the constant pool MCP. This is
497 /// used to print out constants which have been "spilled to memory" by
498 /// the code generator.
499 ///
500 void AsmPrinter::EmitConstantPool() {
501   const MachineConstantPool *MCP = MF->getConstantPool();
502   const std::vector<MachineConstantPoolEntry> &CP = MCP->getConstants();
503   if (CP.empty()) return;
504
505   // Calculate sections for constant pool entries. We collect entries to go into
506   // the same section together to reduce amount of section switch statements.
507   SmallVector<SectionCPs, 4> CPSections;
508   for (unsigned i = 0, e = CP.size(); i != e; ++i) {
509     const MachineConstantPoolEntry &CPE = CP[i];
510     unsigned Align = CPE.getAlignment();
511     
512     SectionKind Kind;
513     switch (CPE.getRelocationInfo()) {
514     default: llvm_unreachable("Unknown section kind");
515     case 2: Kind = SectionKind::getReadOnlyWithRel(); break;
516     case 1:
517       Kind = SectionKind::getReadOnlyWithRelLocal();
518       break;
519     case 0:
520     switch (TM.getTargetData()->getTypeAllocSize(CPE.getType())) {
521     case 4:  Kind = SectionKind::getMergeableConst4(); break;
522     case 8:  Kind = SectionKind::getMergeableConst8(); break;
523     case 16: Kind = SectionKind::getMergeableConst16();break;
524     default: Kind = SectionKind::getMergeableConst(); break;
525     }
526     }
527
528     const MCSection *S = getObjFileLowering().getSectionForConstant(Kind);
529     
530     // The number of sections are small, just do a linear search from the
531     // last section to the first.
532     bool Found = false;
533     unsigned SecIdx = CPSections.size();
534     while (SecIdx != 0) {
535       if (CPSections[--SecIdx].S == S) {
536         Found = true;
537         break;
538       }
539     }
540     if (!Found) {
541       SecIdx = CPSections.size();
542       CPSections.push_back(SectionCPs(S, Align));
543     }
544
545     if (Align > CPSections[SecIdx].Alignment)
546       CPSections[SecIdx].Alignment = Align;
547     CPSections[SecIdx].CPEs.push_back(i);
548   }
549
550   // Now print stuff into the calculated sections.
551   for (unsigned i = 0, e = CPSections.size(); i != e; ++i) {
552     OutStreamer.SwitchSection(CPSections[i].S);
553     EmitAlignment(Log2_32(CPSections[i].Alignment));
554
555     unsigned Offset = 0;
556     for (unsigned j = 0, ee = CPSections[i].CPEs.size(); j != ee; ++j) {
557       unsigned CPI = CPSections[i].CPEs[j];
558       MachineConstantPoolEntry CPE = CP[CPI];
559
560       // Emit inter-object padding for alignment.
561       unsigned AlignMask = CPE.getAlignment() - 1;
562       unsigned NewOffset = (Offset + AlignMask) & ~AlignMask;
563       OutStreamer.EmitFill(NewOffset - Offset, 0/*fillval*/, 0/*addrspace*/);
564
565       const Type *Ty = CPE.getType();
566       Offset = NewOffset + TM.getTargetData()->getTypeAllocSize(Ty);
567
568       // Emit the label with a comment on it.
569       if (VerboseAsm) {
570         OutStreamer.GetCommentOS() << "constant pool ";
571         WriteTypeSymbolic(OutStreamer.GetCommentOS(), CPE.getType(),
572                           MF->getFunction()->getParent());
573         OutStreamer.GetCommentOS() << '\n';
574       }
575       OutStreamer.EmitLabel(GetCPISymbol(CPI));
576
577       if (CPE.isMachineConstantPoolEntry())
578         EmitMachineConstantPoolValue(CPE.Val.MachineCPVal);
579       else
580         EmitGlobalConstant(CPE.Val.ConstVal);
581     }
582   }
583 }
584
585 /// EmitJumpTableInfo - Print assembly representations of the jump tables used
586 /// by the current function to the current output stream.  
587 ///
588 void AsmPrinter::EmitJumpTableInfo() {
589   const MachineJumpTableInfo *MJTI = MF->getJumpTableInfo();
590   if (MJTI == 0) return;
591   const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
592   if (JT.empty()) return;
593
594   // Pick the directive to use to print the jump table entries, and switch to 
595   // the appropriate section.
596   const Function *F = MF->getFunction();
597   bool JTInDiffSection = false;
598   if (// In PIC mode, we need to emit the jump table to the same section as the
599       // function body itself, otherwise the label differences won't make sense.
600       // FIXME: Need a better predicate for this: what about custom entries?
601       MJTI->getEntryKind() == MachineJumpTableInfo::EK_LabelDifference32 ||
602       // We should also do if the section name is NULL or function is declared
603       // in discardable section
604       // FIXME: this isn't the right predicate, should be based on the MCSection
605       // for the function.
606       F->isWeakForLinker()) {
607     OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F,Mang,TM));
608   } else {
609     // Otherwise, drop it in the readonly section.
610     const MCSection *ReadOnlySection = 
611       getObjFileLowering().getSectionForConstant(SectionKind::getReadOnly());
612     OutStreamer.SwitchSection(ReadOnlySection);
613     JTInDiffSection = true;
614   }
615
616   EmitAlignment(Log2_32(MJTI->getEntryAlignment(*TM.getTargetData())));
617   
618   for (unsigned JTI = 0, e = JT.size(); JTI != e; ++JTI) {
619     const std::vector<MachineBasicBlock*> &JTBBs = JT[JTI].MBBs;
620     
621     // If this jump table was deleted, ignore it. 
622     if (JTBBs.empty()) continue;
623
624     // For the EK_LabelDifference32 entry, if the target supports .set, emit a
625     // .set directive for each unique entry.  This reduces the number of
626     // relocations the assembler will generate for the jump table.
627     if (MJTI->getEntryKind() == MachineJumpTableInfo::EK_LabelDifference32 &&
628         MAI->hasSetDirective()) {
629       SmallPtrSet<const MachineBasicBlock*, 16> EmittedSets;
630       const TargetLowering *TLI = TM.getTargetLowering();
631       const MCExpr *Base = TLI->getPICJumpTableRelocBaseExpr(MF,JTI,OutContext);
632       for (unsigned ii = 0, ee = JTBBs.size(); ii != ee; ++ii) {
633         const MachineBasicBlock *MBB = JTBBs[ii];
634         if (!EmittedSets.insert(MBB)) continue;
635         
636         // .set LJTSet, LBB32-base
637         const MCExpr *LHS =
638           MCSymbolRefExpr::Create(MBB->getSymbol(OutContext), OutContext);
639         OutStreamer.EmitAssignment(GetJTSetSymbol(JTI, MBB->getNumber()),
640                                 MCBinaryExpr::CreateSub(LHS, Base, OutContext));
641       }
642     }          
643     
644     // On some targets (e.g. Darwin) we want to emit two consequtive labels
645     // before each jump table.  The first label is never referenced, but tells
646     // the assembler and linker the extents of the jump table object.  The
647     // second label is actually referenced by the code.
648     if (JTInDiffSection && MAI->getLinkerPrivateGlobalPrefix()[0])
649       // FIXME: This doesn't have to have any specific name, just any randomly
650       // named and numbered 'l' label would work.  Simplify GetJTISymbol.
651       OutStreamer.EmitLabel(GetJTISymbol(JTI, true));
652
653     OutStreamer.EmitLabel(GetJTISymbol(JTI));
654
655     for (unsigned ii = 0, ee = JTBBs.size(); ii != ee; ++ii)
656       EmitJumpTableEntry(MJTI, JTBBs[ii], JTI);
657   }
658 }
659
660 /// EmitJumpTableEntry - Emit a jump table entry for the specified MBB to the
661 /// current stream.
662 void AsmPrinter::EmitJumpTableEntry(const MachineJumpTableInfo *MJTI,
663                                     const MachineBasicBlock *MBB,
664                                     unsigned UID) const {
665   const MCExpr *Value = 0;
666   switch (MJTI->getEntryKind()) {
667   case MachineJumpTableInfo::EK_Custom32:
668     Value = TM.getTargetLowering()->LowerCustomJumpTableEntry(MJTI, MBB, UID,
669                                                               OutContext);
670     break;
671   case MachineJumpTableInfo::EK_BlockAddress:
672     // EK_BlockAddress - Each entry is a plain address of block, e.g.:
673     //     .word LBB123
674     Value = MCSymbolRefExpr::Create(MBB->getSymbol(OutContext), OutContext);
675     break;
676   case MachineJumpTableInfo::EK_GPRel32BlockAddress: {
677     // EK_GPRel32BlockAddress - Each entry is an address of block, encoded
678     // with a relocation as gp-relative, e.g.:
679     //     .gprel32 LBB123
680     MCSymbol *MBBSym = MBB->getSymbol(OutContext);
681     OutStreamer.EmitGPRel32Value(MCSymbolRefExpr::Create(MBBSym, OutContext));
682     return;
683   }
684
685   case MachineJumpTableInfo::EK_LabelDifference32: {
686     // EK_LabelDifference32 - Each entry is the address of the block minus
687     // the address of the jump table.  This is used for PIC jump tables where
688     // gprel32 is not supported.  e.g.:
689     //      .word LBB123 - LJTI1_2
690     // If the .set directive is supported, this is emitted as:
691     //      .set L4_5_set_123, LBB123 - LJTI1_2
692     //      .word L4_5_set_123
693     
694     // If we have emitted set directives for the jump table entries, print 
695     // them rather than the entries themselves.  If we're emitting PIC, then
696     // emit the table entries as differences between two text section labels.
697     if (MAI->hasSetDirective()) {
698       // If we used .set, reference the .set's symbol.
699       Value = MCSymbolRefExpr::Create(GetJTSetSymbol(UID, MBB->getNumber()),
700                                       OutContext);
701       break;
702     }
703     // Otherwise, use the difference as the jump table entry.
704     Value = MCSymbolRefExpr::Create(MBB->getSymbol(OutContext), OutContext);
705     const MCExpr *JTI = MCSymbolRefExpr::Create(GetJTISymbol(UID), OutContext);
706     Value = MCBinaryExpr::CreateSub(Value, JTI, OutContext);
707     break;
708   }
709   }
710   
711   assert(Value && "Unknown entry kind!");
712  
713   unsigned EntrySize = MJTI->getEntrySize(*TM.getTargetData());
714   OutStreamer.EmitValue(Value, EntrySize, /*addrspace*/0);
715 }
716
717
718 /// EmitSpecialLLVMGlobal - Check to see if the specified global is a
719 /// special global used by LLVM.  If so, emit it and return true, otherwise
720 /// do nothing and return false.
721 bool AsmPrinter::EmitSpecialLLVMGlobal(const GlobalVariable *GV) {
722   if (GV->getName() == "llvm.used") {
723     if (MAI->hasNoDeadStrip())    // No need to emit this at all.
724       EmitLLVMUsedList(GV->getInitializer());
725     return true;
726   }
727
728   // Ignore debug and non-emitted data.  This handles llvm.compiler.used.
729   if (GV->getSection() == "llvm.metadata" ||
730       GV->hasAvailableExternallyLinkage())
731     return true;
732   
733   if (!GV->hasAppendingLinkage()) return false;
734
735   assert(GV->hasInitializer() && "Not a special LLVM global!");
736   
737   const TargetData *TD = TM.getTargetData();
738   unsigned Align = Log2_32(TD->getPointerPrefAlignment());
739   if (GV->getName() == "llvm.global_ctors") {
740     OutStreamer.SwitchSection(getObjFileLowering().getStaticCtorSection());
741     EmitAlignment(Align, 0);
742     EmitXXStructorList(GV->getInitializer());
743     
744     if (TM.getRelocationModel() == Reloc::Static &&
745         MAI->hasStaticCtorDtorReferenceInStaticMode()) {
746       StringRef Sym(".constructors_used");
747       OutStreamer.EmitSymbolAttribute(OutContext.GetOrCreateSymbol(Sym),
748                                       MCSA_Reference);
749     }
750     return true;
751   } 
752   
753   if (GV->getName() == "llvm.global_dtors") {
754     OutStreamer.SwitchSection(getObjFileLowering().getStaticDtorSection());
755     EmitAlignment(Align, 0);
756     EmitXXStructorList(GV->getInitializer());
757
758     if (TM.getRelocationModel() == Reloc::Static &&
759         MAI->hasStaticCtorDtorReferenceInStaticMode()) {
760       StringRef Sym(".destructors_used");
761       OutStreamer.EmitSymbolAttribute(OutContext.GetOrCreateSymbol(Sym),
762                                       MCSA_Reference);
763     }
764     return true;
765   }
766   
767   return false;
768 }
769
770 /// EmitLLVMUsedList - For targets that define a MAI::UsedDirective, mark each
771 /// global in the specified llvm.used list for which emitUsedDirectiveFor
772 /// is true, as being used with this directive.
773 void AsmPrinter::EmitLLVMUsedList(Constant *List) {
774   // Should be an array of 'i8*'.
775   ConstantArray *InitList = dyn_cast<ConstantArray>(List);
776   if (InitList == 0) return;
777   
778   for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i) {
779     const GlobalValue *GV =
780       dyn_cast<GlobalValue>(InitList->getOperand(i)->stripPointerCasts());
781     if (GV && getObjFileLowering().shouldEmitUsedDirectiveFor(GV, Mang))
782       OutStreamer.EmitSymbolAttribute(GetGlobalValueSymbol(GV),
783                                       MCSA_NoDeadStrip);
784   }
785 }
786
787 /// EmitXXStructorList - Emit the ctor or dtor list.  This just prints out the 
788 /// function pointers, ignoring the init priority.
789 void AsmPrinter::EmitXXStructorList(Constant *List) {
790   // Should be an array of '{ int, void ()* }' structs.  The first value is the
791   // init priority, which we ignore.
792   if (!isa<ConstantArray>(List)) return;
793   ConstantArray *InitList = cast<ConstantArray>(List);
794   for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i)
795     if (ConstantStruct *CS = dyn_cast<ConstantStruct>(InitList->getOperand(i))){
796       if (CS->getNumOperands() != 2) return;  // Not array of 2-element structs.
797
798       if (CS->getOperand(1)->isNullValue())
799         return;  // Found a null terminator, exit printing.
800       // Emit the function pointer.
801       EmitGlobalConstant(CS->getOperand(1));
802     }
803 }
804
805 //===--------------------------------------------------------------------===//
806 // Emission and print routines
807 //
808
809 /// EmitInt8 - Emit a byte directive and value.
810 ///
811 void AsmPrinter::EmitInt8(int Value) const {
812   OutStreamer.EmitIntValue(Value, 1, 0/*addrspace*/);
813 }
814
815 /// EmitInt16 - Emit a short directive and value.
816 ///
817 void AsmPrinter::EmitInt16(int Value) const {
818   OutStreamer.EmitIntValue(Value, 2, 0/*addrspace*/);
819 }
820
821 /// EmitInt32 - Emit a long directive and value.
822 ///
823 void AsmPrinter::EmitInt32(int Value) const {
824   OutStreamer.EmitIntValue(Value, 4, 0/*addrspace*/);
825 }
826
827 /// EmitInt64 - Emit a long long directive and value.
828 ///
829 void AsmPrinter::EmitInt64(uint64_t Value) const {
830   OutStreamer.EmitIntValue(Value, 8, 0/*addrspace*/);
831 }
832
833 //===----------------------------------------------------------------------===//
834
835 // EmitAlignment - Emit an alignment directive to the specified power of
836 // two boundary.  For example, if you pass in 3 here, you will get an 8
837 // byte alignment.  If a global value is specified, and if that global has
838 // an explicit alignment requested, it will unconditionally override the
839 // alignment request.  However, if ForcedAlignBits is specified, this value
840 // has final say: the ultimate alignment will be the max of ForcedAlignBits
841 // and the alignment computed with NumBits and the global.
842 //
843 // The algorithm is:
844 //     Align = NumBits;
845 //     if (GV && GV->hasalignment) Align = GV->getalignment();
846 //     Align = std::max(Align, ForcedAlignBits);
847 //
848 void AsmPrinter::EmitAlignment(unsigned NumBits, const GlobalValue *GV,
849                                unsigned ForcedAlignBits,
850                                bool UseFillExpr) const {
851   if (GV && GV->getAlignment())
852     NumBits = Log2_32(GV->getAlignment());
853   NumBits = std::max(NumBits, ForcedAlignBits);
854   
855   if (NumBits == 0) return;   // No need to emit alignment.
856   
857   unsigned FillValue = 0;
858   if (getCurrentSection()->getKind().isText())
859     FillValue = MAI->getTextAlignFillValue();
860   
861   OutStreamer.EmitValueToAlignment(1 << NumBits, FillValue, 1, 0);
862 }
863
864 /// LowerConstant - Lower the specified LLVM Constant to an MCExpr.
865 ///
866 static const MCExpr *LowerConstant(const Constant *CV, AsmPrinter &AP) {
867   MCContext &Ctx = AP.OutContext;
868   
869   if (CV->isNullValue() || isa<UndefValue>(CV))
870     return MCConstantExpr::Create(0, Ctx);
871
872   if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV))
873     return MCConstantExpr::Create(CI->getZExtValue(), Ctx);
874   
875   if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV))
876     return MCSymbolRefExpr::Create(AP.GetGlobalValueSymbol(GV), Ctx);
877   if (const BlockAddress *BA = dyn_cast<BlockAddress>(CV))
878     return MCSymbolRefExpr::Create(AP.GetBlockAddressSymbol(BA), Ctx);
879   
880   const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV);
881   if (CE == 0) {
882     llvm_unreachable("Unknown constant value to lower!");
883     return MCConstantExpr::Create(0, Ctx);
884   }
885   
886   switch (CE->getOpcode()) {
887   case Instruction::ZExt:
888   case Instruction::SExt:
889   case Instruction::FPTrunc:
890   case Instruction::FPExt:
891   case Instruction::UIToFP:
892   case Instruction::SIToFP:
893   case Instruction::FPToUI:
894   case Instruction::FPToSI:
895   default: llvm_unreachable("FIXME: Don't support this constant cast expr");
896   case Instruction::GetElementPtr: {
897     const TargetData &TD = *AP.TM.getTargetData();
898     // Generate a symbolic expression for the byte address
899     const Constant *PtrVal = CE->getOperand(0);
900     SmallVector<Value*, 8> IdxVec(CE->op_begin()+1, CE->op_end());
901     int64_t Offset = TD.getIndexedOffset(PtrVal->getType(), &IdxVec[0],
902                                          IdxVec.size());
903     
904     const MCExpr *Base = LowerConstant(CE->getOperand(0), AP);
905     if (Offset == 0)
906       return Base;
907     
908     // Truncate/sext the offset to the pointer size.
909     if (TD.getPointerSizeInBits() != 64) {
910       int SExtAmount = 64-TD.getPointerSizeInBits();
911       Offset = (Offset << SExtAmount) >> SExtAmount;
912     }
913     
914     return MCBinaryExpr::CreateAdd(Base, MCConstantExpr::Create(Offset, Ctx),
915                                    Ctx);
916   }
917       
918   case Instruction::Trunc:
919     // We emit the value and depend on the assembler to truncate the generated
920     // expression properly.  This is important for differences between
921     // blockaddress labels.  Since the two labels are in the same function, it
922     // is reasonable to treat their delta as a 32-bit value.
923     // FALL THROUGH.
924   case Instruction::BitCast:
925     return LowerConstant(CE->getOperand(0), AP);
926
927   case Instruction::IntToPtr: {
928     const TargetData &TD = *AP.TM.getTargetData();
929     // Handle casts to pointers by changing them into casts to the appropriate
930     // integer type.  This promotes constant folding and simplifies this code.
931     Constant *Op = CE->getOperand(0);
932     Op = ConstantExpr::getIntegerCast(Op, TD.getIntPtrType(CV->getContext()),
933                                       false/*ZExt*/);
934     return LowerConstant(Op, AP);
935   }
936     
937   case Instruction::PtrToInt: {
938     const TargetData &TD = *AP.TM.getTargetData();
939     // Support only foldable casts to/from pointers that can be eliminated by
940     // changing the pointer to the appropriately sized integer type.
941     Constant *Op = CE->getOperand(0);
942     const Type *Ty = CE->getType();
943
944     const MCExpr *OpExpr = LowerConstant(Op, AP);
945
946     // We can emit the pointer value into this slot if the slot is an
947     // integer slot equal to the size of the pointer.
948     if (TD.getTypeAllocSize(Ty) == TD.getTypeAllocSize(Op->getType()))
949       return OpExpr;
950
951     // Otherwise the pointer is smaller than the resultant integer, mask off
952     // the high bits so we are sure to get a proper truncation if the input is
953     // a constant expr.
954     unsigned InBits = TD.getTypeAllocSizeInBits(Op->getType());
955     const MCExpr *MaskExpr = MCConstantExpr::Create(~0ULL >> (64-InBits), Ctx);
956     return MCBinaryExpr::CreateAnd(OpExpr, MaskExpr, Ctx);
957   }
958       
959   case Instruction::Add:
960   case Instruction::Sub:
961   case Instruction::And:
962   case Instruction::Or:
963   case Instruction::Xor: {
964     const MCExpr *LHS = LowerConstant(CE->getOperand(0), AP);
965     const MCExpr *RHS = LowerConstant(CE->getOperand(1), AP);
966     switch (CE->getOpcode()) {
967     default: llvm_unreachable("Unknown binary operator constant cast expr");
968     case Instruction::Add: return MCBinaryExpr::CreateAdd(LHS, RHS, Ctx);
969     case Instruction::Sub: return MCBinaryExpr::CreateSub(LHS, RHS, Ctx);
970     case Instruction::And: return MCBinaryExpr::CreateAnd(LHS, RHS, Ctx);
971     case Instruction::Or:  return MCBinaryExpr::CreateOr (LHS, RHS, Ctx);
972     case Instruction::Xor: return MCBinaryExpr::CreateXor(LHS, RHS, Ctx);
973     }
974   }
975   }
976 }
977
978 static void EmitGlobalConstantArray(const ConstantArray *CA, unsigned AddrSpace,
979                                     AsmPrinter &AP) {
980   if (AddrSpace != 0 || !CA->isString()) {
981     // Not a string.  Print the values in successive locations
982     for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i)
983       AP.EmitGlobalConstant(CA->getOperand(i), AddrSpace);
984     return;
985   }
986   
987   // Otherwise, it can be emitted as .ascii.
988   SmallVector<char, 128> TmpVec;
989   TmpVec.reserve(CA->getNumOperands());
990   for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i)
991     TmpVec.push_back(cast<ConstantInt>(CA->getOperand(i))->getZExtValue());
992
993   AP.OutStreamer.EmitBytes(StringRef(TmpVec.data(), TmpVec.size()), AddrSpace);
994 }
995
996 static void EmitGlobalConstantVector(const ConstantVector *CV,
997                                      unsigned AddrSpace, AsmPrinter &AP) {
998   for (unsigned i = 0, e = CV->getType()->getNumElements(); i != e; ++i)
999     AP.EmitGlobalConstant(CV->getOperand(i), AddrSpace);
1000 }
1001
1002 static void EmitGlobalConstantStruct(const ConstantStruct *CS,
1003                                      unsigned AddrSpace, AsmPrinter &AP) {
1004   // Print the fields in successive locations. Pad to align if needed!
1005   const TargetData *TD = AP.TM.getTargetData();
1006   unsigned Size = TD->getTypeAllocSize(CS->getType());
1007   const StructLayout *Layout = TD->getStructLayout(CS->getType());
1008   uint64_t SizeSoFar = 0;
1009   for (unsigned i = 0, e = CS->getNumOperands(); i != e; ++i) {
1010     const Constant *Field = CS->getOperand(i);
1011
1012     // Check if padding is needed and insert one or more 0s.
1013     uint64_t FieldSize = TD->getTypeAllocSize(Field->getType());
1014     uint64_t PadSize = ((i == e-1 ? Size : Layout->getElementOffset(i+1))
1015                         - Layout->getElementOffset(i)) - FieldSize;
1016     SizeSoFar += FieldSize + PadSize;
1017
1018     // Now print the actual field value.
1019     AP.EmitGlobalConstant(Field, AddrSpace);
1020
1021     // Insert padding - this may include padding to increase the size of the
1022     // current field up to the ABI size (if the struct is not packed) as well
1023     // as padding to ensure that the next field starts at the right offset.
1024     AP.OutStreamer.EmitZeros(PadSize, AddrSpace);
1025   }
1026   assert(SizeSoFar == Layout->getSizeInBytes() &&
1027          "Layout of constant struct may be incorrect!");
1028 }
1029
1030 static void EmitGlobalConstantFP(const ConstantFP *CFP, unsigned AddrSpace,
1031                                  AsmPrinter &AP) {
1032   // FP Constants are printed as integer constants to avoid losing
1033   // precision.
1034   if (CFP->getType()->isDoubleTy()) {
1035     if (AP.VerboseAsm) {
1036       double Val = CFP->getValueAPF().convertToDouble();
1037       AP.OutStreamer.GetCommentOS() << "double " << Val << '\n';
1038     }
1039
1040     uint64_t Val = CFP->getValueAPF().bitcastToAPInt().getZExtValue();
1041     AP.OutStreamer.EmitIntValue(Val, 8, AddrSpace);
1042     return;
1043   }
1044   
1045   if (CFP->getType()->isFloatTy()) {
1046     if (AP.VerboseAsm) {
1047       float Val = CFP->getValueAPF().convertToFloat();
1048       AP.OutStreamer.GetCommentOS() << "float " << Val << '\n';
1049     }
1050     uint64_t Val = CFP->getValueAPF().bitcastToAPInt().getZExtValue();
1051     AP.OutStreamer.EmitIntValue(Val, 4, AddrSpace);
1052     return;
1053   }
1054   
1055   if (CFP->getType()->isX86_FP80Ty()) {
1056     // all long double variants are printed as hex
1057     // api needed to prevent premature destruction
1058     APInt API = CFP->getValueAPF().bitcastToAPInt();
1059     const uint64_t *p = API.getRawData();
1060     if (AP.VerboseAsm) {
1061       // Convert to double so we can print the approximate val as a comment.
1062       APFloat DoubleVal = CFP->getValueAPF();
1063       bool ignored;
1064       DoubleVal.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven,
1065                         &ignored);
1066       AP.OutStreamer.GetCommentOS() << "x86_fp80 ~= "
1067         << DoubleVal.convertToDouble() << '\n';
1068     }
1069     
1070     if (AP.TM.getTargetData()->isBigEndian()) {
1071       AP.OutStreamer.EmitIntValue(p[1], 2, AddrSpace);
1072       AP.OutStreamer.EmitIntValue(p[0], 8, AddrSpace);
1073     } else {
1074       AP.OutStreamer.EmitIntValue(p[0], 8, AddrSpace);
1075       AP.OutStreamer.EmitIntValue(p[1], 2, AddrSpace);
1076     }
1077     
1078     // Emit the tail padding for the long double.
1079     const TargetData &TD = *AP.TM.getTargetData();
1080     AP.OutStreamer.EmitZeros(TD.getTypeAllocSize(CFP->getType()) -
1081                              TD.getTypeStoreSize(CFP->getType()), AddrSpace);
1082     return;
1083   }
1084   
1085   assert(CFP->getType()->isPPC_FP128Ty() &&
1086          "Floating point constant type not handled");
1087   // All long double variants are printed as hex api needed to prevent
1088   // premature destruction.
1089   APInt API = CFP->getValueAPF().bitcastToAPInt();
1090   const uint64_t *p = API.getRawData();
1091   if (AP.TM.getTargetData()->isBigEndian()) {
1092     AP.OutStreamer.EmitIntValue(p[0], 8, AddrSpace);
1093     AP.OutStreamer.EmitIntValue(p[1], 8, AddrSpace);
1094   } else {
1095     AP.OutStreamer.EmitIntValue(p[1], 8, AddrSpace);
1096     AP.OutStreamer.EmitIntValue(p[0], 8, AddrSpace);
1097   }
1098 }
1099
1100 static void EmitGlobalConstantLargeInt(const ConstantInt *CI,
1101                                        unsigned AddrSpace, AsmPrinter &AP) {
1102   const TargetData *TD = AP.TM.getTargetData();
1103   unsigned BitWidth = CI->getBitWidth();
1104   assert((BitWidth & 63) == 0 && "only support multiples of 64-bits");
1105
1106   // We don't expect assemblers to support integer data directives
1107   // for more than 64 bits, so we emit the data in at most 64-bit
1108   // quantities at a time.
1109   const uint64_t *RawData = CI->getValue().getRawData();
1110   for (unsigned i = 0, e = BitWidth / 64; i != e; ++i) {
1111     uint64_t Val = TD->isBigEndian() ? RawData[e - i - 1] : RawData[i];
1112     AP.OutStreamer.EmitIntValue(Val, 8, AddrSpace);
1113   }
1114 }
1115
1116 /// EmitGlobalConstant - Print a general LLVM constant to the .s file.
1117 void AsmPrinter::EmitGlobalConstant(const Constant *CV, unsigned AddrSpace) {
1118   if (isa<ConstantAggregateZero>(CV) || isa<UndefValue>(CV)) {
1119     uint64_t Size = TM.getTargetData()->getTypeAllocSize(CV->getType());
1120     return OutStreamer.EmitZeros(Size, AddrSpace);
1121   }
1122
1123   if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
1124     unsigned Size = TM.getTargetData()->getTypeAllocSize(CV->getType());
1125     switch (Size) {
1126     case 1:
1127     case 2:
1128     case 4:
1129     case 8:
1130       if (VerboseAsm)
1131         OutStreamer.GetCommentOS() << format("0x%llx\n", CI->getZExtValue());
1132       OutStreamer.EmitIntValue(CI->getZExtValue(), Size, AddrSpace);
1133       return;
1134     default:
1135       EmitGlobalConstantLargeInt(CI, AddrSpace, *this);
1136       return;
1137     }
1138   }
1139   
1140   if (const ConstantArray *CVA = dyn_cast<ConstantArray>(CV))
1141     return EmitGlobalConstantArray(CVA, AddrSpace, *this);
1142   
1143   if (const ConstantStruct *CVS = dyn_cast<ConstantStruct>(CV))
1144     return EmitGlobalConstantStruct(CVS, AddrSpace, *this);
1145
1146   if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV))
1147     return EmitGlobalConstantFP(CFP, AddrSpace, *this);
1148   
1149   if (const ConstantVector *V = dyn_cast<ConstantVector>(CV))
1150     return EmitGlobalConstantVector(V, AddrSpace, *this);
1151
1152   if (isa<ConstantPointerNull>(CV)) {
1153     unsigned Size = TM.getTargetData()->getTypeAllocSize(CV->getType());
1154     OutStreamer.EmitIntValue(0, Size, AddrSpace);
1155     return;
1156   }
1157   
1158   // Otherwise, it must be a ConstantExpr.  Lower it to an MCExpr, then emit it
1159   // thread the streamer with EmitValue.
1160   OutStreamer.EmitValue(LowerConstant(CV, *this),
1161                         TM.getTargetData()->getTypeAllocSize(CV->getType()),
1162                         AddrSpace);
1163 }
1164
1165 void AsmPrinter::EmitMachineConstantPoolValue(MachineConstantPoolValue *MCPV) {
1166   // Target doesn't support this yet!
1167   llvm_unreachable("Target does not support EmitMachineConstantPoolValue");
1168 }
1169
1170 /// PrintSpecial - Print information related to the specified machine instr
1171 /// that is independent of the operand, and may be independent of the instr
1172 /// itself.  This can be useful for portably encoding the comment character
1173 /// or other bits of target-specific knowledge into the asmstrings.  The
1174 /// syntax used is ${:comment}.  Targets can override this to add support
1175 /// for their own strange codes.
1176 void AsmPrinter::PrintSpecial(const MachineInstr *MI, const char *Code) const {
1177   if (!strcmp(Code, "private")) {
1178     O << MAI->getPrivateGlobalPrefix();
1179   } else if (!strcmp(Code, "comment")) {
1180     if (VerboseAsm)
1181       O << MAI->getCommentString();
1182   } else if (!strcmp(Code, "uid")) {
1183     // Comparing the address of MI isn't sufficient, because machineinstrs may
1184     // be allocated to the same address across functions.
1185     const Function *ThisF = MI->getParent()->getParent()->getFunction();
1186     
1187     // If this is a new LastFn instruction, bump the counter.
1188     if (LastMI != MI || LastFn != ThisF) {
1189       ++Counter;
1190       LastMI = MI;
1191       LastFn = ThisF;
1192     }
1193     O << Counter;
1194   } else {
1195     std::string msg;
1196     raw_string_ostream Msg(msg);
1197     Msg << "Unknown special formatter '" << Code
1198          << "' for machine instr: " << *MI;
1199     llvm_report_error(Msg.str());
1200   }    
1201 }
1202
1203 /// processDebugLoc - Processes the debug information of each machine
1204 /// instruction's DebugLoc.
1205 void AsmPrinter::processDebugLoc(const MachineInstr *MI, 
1206                                  bool BeforePrintingInsn) {
1207   if (!MAI || !DW || !MAI->doesSupportDebugInformation()
1208       || !DW->ShouldEmitDwarfDebug())
1209     return;
1210   DebugLoc DL = MI->getDebugLoc();
1211   if (DL.isUnknown())
1212     return;
1213   DILocation CurDLT = MF->getDILocation(DL);
1214   if (CurDLT.getScope().isNull())
1215     return;
1216
1217   if (!BeforePrintingInsn) {
1218     // After printing instruction
1219     DW->EndScope(MI);
1220   } else if (CurDLT.getNode() != PrevDLT) {
1221     unsigned L = DW->RecordSourceLine(CurDLT.getLineNumber(), 
1222                                       CurDLT.getColumnNumber(),
1223                                       CurDLT.getScope().getNode());
1224     printLabel(L);
1225     O << '\n';
1226     DW->BeginScope(MI, L);
1227     PrevDLT = CurDLT.getNode();
1228   }
1229 }
1230
1231
1232 /// printInlineAsm - This method formats and prints the specified machine
1233 /// instruction that is an inline asm.
1234 void AsmPrinter::printInlineAsm(const MachineInstr *MI) const {
1235   unsigned NumOperands = MI->getNumOperands();
1236   
1237   // Count the number of register definitions.
1238   unsigned NumDefs = 0;
1239   for (; MI->getOperand(NumDefs).isReg() && MI->getOperand(NumDefs).isDef();
1240        ++NumDefs)
1241     assert(NumDefs != NumOperands-1 && "No asm string?");
1242   
1243   assert(MI->getOperand(NumDefs).isSymbol() && "No asm string?");
1244
1245   // Disassemble the AsmStr, printing out the literal pieces, the operands, etc.
1246   const char *AsmStr = MI->getOperand(NumDefs).getSymbolName();
1247
1248   O << '\t';
1249
1250   // If this asmstr is empty, just print the #APP/#NOAPP markers.
1251   // These are useful to see where empty asm's wound up.
1252   if (AsmStr[0] == 0) {
1253     O << MAI->getCommentString() << MAI->getInlineAsmStart() << "\n\t";
1254     O << MAI->getCommentString() << MAI->getInlineAsmEnd() << '\n';
1255     return;
1256   }
1257   
1258   O << MAI->getCommentString() << MAI->getInlineAsmStart() << "\n\t";
1259
1260   // The variant of the current asmprinter.
1261   int AsmPrinterVariant = MAI->getAssemblerDialect();
1262
1263   int CurVariant = -1;            // The number of the {.|.|.} region we are in.
1264   const char *LastEmitted = AsmStr; // One past the last character emitted.
1265   
1266   while (*LastEmitted) {
1267     switch (*LastEmitted) {
1268     default: {
1269       // Not a special case, emit the string section literally.
1270       const char *LiteralEnd = LastEmitted+1;
1271       while (*LiteralEnd && *LiteralEnd != '{' && *LiteralEnd != '|' &&
1272              *LiteralEnd != '}' && *LiteralEnd != '$' && *LiteralEnd != '\n')
1273         ++LiteralEnd;
1274       if (CurVariant == -1 || CurVariant == AsmPrinterVariant)
1275         O.write(LastEmitted, LiteralEnd-LastEmitted);
1276       LastEmitted = LiteralEnd;
1277       break;
1278     }
1279     case '\n':
1280       ++LastEmitted;   // Consume newline character.
1281       O << '\n';       // Indent code with newline.
1282       break;
1283     case '$': {
1284       ++LastEmitted;   // Consume '$' character.
1285       bool Done = true;
1286
1287       // Handle escapes.
1288       switch (*LastEmitted) {
1289       default: Done = false; break;
1290       case '$':     // $$ -> $
1291         if (CurVariant == -1 || CurVariant == AsmPrinterVariant)
1292           O << '$';
1293         ++LastEmitted;  // Consume second '$' character.
1294         break;
1295       case '(':             // $( -> same as GCC's { character.
1296         ++LastEmitted;      // Consume '(' character.
1297         if (CurVariant != -1) {
1298           llvm_report_error("Nested variants found in inline asm string: '"
1299                             + std::string(AsmStr) + "'");
1300         }
1301         CurVariant = 0;     // We're in the first variant now.
1302         break;
1303       case '|':
1304         ++LastEmitted;  // consume '|' character.
1305         if (CurVariant == -1)
1306           O << '|';       // this is gcc's behavior for | outside a variant
1307         else
1308           ++CurVariant;   // We're in the next variant.
1309         break;
1310       case ')':         // $) -> same as GCC's } char.
1311         ++LastEmitted;  // consume ')' character.
1312         if (CurVariant == -1)
1313           O << '}';     // this is gcc's behavior for } outside a variant
1314         else 
1315           CurVariant = -1;
1316         break;
1317       }
1318       if (Done) break;
1319       
1320       bool HasCurlyBraces = false;
1321       if (*LastEmitted == '{') {     // ${variable}
1322         ++LastEmitted;               // Consume '{' character.
1323         HasCurlyBraces = true;
1324       }
1325       
1326       // If we have ${:foo}, then this is not a real operand reference, it is a
1327       // "magic" string reference, just like in .td files.  Arrange to call
1328       // PrintSpecial.
1329       if (HasCurlyBraces && *LastEmitted == ':') {
1330         ++LastEmitted;
1331         const char *StrStart = LastEmitted;
1332         const char *StrEnd = strchr(StrStart, '}');
1333         if (StrEnd == 0) {
1334           llvm_report_error("Unterminated ${:foo} operand in inline asm string: '" 
1335                             + std::string(AsmStr) + "'");
1336         }
1337         
1338         std::string Val(StrStart, StrEnd);
1339         PrintSpecial(MI, Val.c_str());
1340         LastEmitted = StrEnd+1;
1341         break;
1342       }
1343             
1344       const char *IDStart = LastEmitted;
1345       char *IDEnd;
1346       errno = 0;
1347       long Val = strtol(IDStart, &IDEnd, 10); // We only accept numbers for IDs.
1348       if (!isdigit(*IDStart) || (Val == 0 && errno == EINVAL)) {
1349         llvm_report_error("Bad $ operand number in inline asm string: '" 
1350                           + std::string(AsmStr) + "'");
1351       }
1352       LastEmitted = IDEnd;
1353       
1354       char Modifier[2] = { 0, 0 };
1355       
1356       if (HasCurlyBraces) {
1357         // If we have curly braces, check for a modifier character.  This
1358         // supports syntax like ${0:u}, which correspond to "%u0" in GCC asm.
1359         if (*LastEmitted == ':') {
1360           ++LastEmitted;    // Consume ':' character.
1361           if (*LastEmitted == 0) {
1362             llvm_report_error("Bad ${:} expression in inline asm string: '" 
1363                               + std::string(AsmStr) + "'");
1364           }
1365           
1366           Modifier[0] = *LastEmitted;
1367           ++LastEmitted;    // Consume modifier character.
1368         }
1369         
1370         if (*LastEmitted != '}') {
1371           llvm_report_error("Bad ${} expression in inline asm string: '" 
1372                             + std::string(AsmStr) + "'");
1373         }
1374         ++LastEmitted;    // Consume '}' character.
1375       }
1376       
1377       if ((unsigned)Val >= NumOperands-1) {
1378         llvm_report_error("Invalid $ operand number in inline asm string: '" 
1379                           + std::string(AsmStr) + "'");
1380       }
1381       
1382       // Okay, we finally have a value number.  Ask the target to print this
1383       // operand!
1384       if (CurVariant == -1 || CurVariant == AsmPrinterVariant) {
1385         unsigned OpNo = 1;
1386
1387         bool Error = false;
1388
1389         // Scan to find the machine operand number for the operand.
1390         for (; Val; --Val) {
1391           if (OpNo >= MI->getNumOperands()) break;
1392           unsigned OpFlags = MI->getOperand(OpNo).getImm();
1393           OpNo += InlineAsm::getNumOperandRegisters(OpFlags) + 1;
1394         }
1395
1396         if (OpNo >= MI->getNumOperands()) {
1397           Error = true;
1398         } else {
1399           unsigned OpFlags = MI->getOperand(OpNo).getImm();
1400           ++OpNo;  // Skip over the ID number.
1401
1402           if (Modifier[0] == 'l')  // labels are target independent
1403             O << *MI->getOperand(OpNo).getMBB()->getSymbol(OutContext);
1404           else {
1405             AsmPrinter *AP = const_cast<AsmPrinter*>(this);
1406             if ((OpFlags & 7) == 4) {
1407               Error = AP->PrintAsmMemoryOperand(MI, OpNo, AsmPrinterVariant,
1408                                                 Modifier[0] ? Modifier : 0);
1409             } else {
1410               Error = AP->PrintAsmOperand(MI, OpNo, AsmPrinterVariant,
1411                                           Modifier[0] ? Modifier : 0);
1412             }
1413           }
1414         }
1415         if (Error) {
1416           std::string msg;
1417           raw_string_ostream Msg(msg);
1418           Msg << "Invalid operand found in inline asm: '" << AsmStr << "'\n";
1419           MI->print(Msg);
1420           llvm_report_error(Msg.str());
1421         }
1422       }
1423       break;
1424     }
1425     }
1426   }
1427   O << "\n\t" << MAI->getCommentString() << MAI->getInlineAsmEnd();
1428 }
1429
1430 /// printImplicitDef - This method prints the specified machine instruction
1431 /// that is an implicit def.
1432 void AsmPrinter::printImplicitDef(const MachineInstr *MI) const {
1433   if (!VerboseAsm) return;
1434   O.PadToColumn(MAI->getCommentColumn());
1435   O << MAI->getCommentString() << " implicit-def: "
1436     << TRI->getName(MI->getOperand(0).getReg());
1437 }
1438
1439 void AsmPrinter::printKill(const MachineInstr *MI) const {
1440   if (!VerboseAsm) return;
1441   O.PadToColumn(MAI->getCommentColumn());
1442   O << MAI->getCommentString() << " kill:";
1443   for (unsigned n = 0, e = MI->getNumOperands(); n != e; ++n) {
1444     const MachineOperand &op = MI->getOperand(n);
1445     assert(op.isReg() && "KILL instruction must have only register operands");
1446     O << ' ' << TRI->getName(op.getReg()) << (op.isDef() ? "<def>" : "<kill>");
1447   }
1448 }
1449
1450 /// printLabel - This method prints a local label used by debug and
1451 /// exception handling tables.
1452 void AsmPrinter::printLabel(const MachineInstr *MI) const {
1453   printLabel(MI->getOperand(0).getImm());
1454 }
1455
1456 void AsmPrinter::printLabel(unsigned Id) const {
1457   O << MAI->getPrivateGlobalPrefix() << "label" << Id << ':';
1458 }
1459
1460 /// PrintAsmOperand - Print the specified operand of MI, an INLINEASM
1461 /// instruction, using the specified assembler variant.  Targets should
1462 /// override this to format as appropriate.
1463 bool AsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
1464                                  unsigned AsmVariant, const char *ExtraCode) {
1465   // Target doesn't support this yet!
1466   return true;
1467 }
1468
1469 bool AsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
1470                                        unsigned AsmVariant,
1471                                        const char *ExtraCode) {
1472   // Target doesn't support this yet!
1473   return true;
1474 }
1475
1476 MCSymbol *AsmPrinter::GetBlockAddressSymbol(const BlockAddress *BA,
1477                                             const char *Suffix) const {
1478   return GetBlockAddressSymbol(BA->getFunction(), BA->getBasicBlock(), Suffix);
1479 }
1480
1481 MCSymbol *AsmPrinter::GetBlockAddressSymbol(const Function *F,
1482                                             const BasicBlock *BB,
1483                                             const char *Suffix) const {
1484   assert(BB->hasName() &&
1485          "Address of anonymous basic block not supported yet!");
1486
1487   // This code must use the function name itself, and not the function number,
1488   // since it must be possible to generate the label name from within other
1489   // functions.
1490   SmallString<60> FnName;
1491   Mang->getNameWithPrefix(FnName, F, false);
1492
1493   // FIXME: THIS IS BROKEN IF THE LLVM BASIC BLOCK DOESN'T HAVE A NAME!
1494   SmallString<60> NameResult;
1495   Mang->getNameWithPrefix(NameResult,
1496                           StringRef("BA") + Twine((unsigned)FnName.size()) + 
1497                           "_" + FnName.str() + "_" + BB->getName() + Suffix, 
1498                           Mangler::Private);
1499
1500   return OutContext.GetOrCreateSymbol(NameResult.str());
1501 }
1502
1503 /// GetCPISymbol - Return the symbol for the specified constant pool entry.
1504 MCSymbol *AsmPrinter::GetCPISymbol(unsigned CPID) const {
1505   SmallString<60> Name;
1506   raw_svector_ostream(Name) << MAI->getPrivateGlobalPrefix() << "CPI"
1507     << getFunctionNumber() << '_' << CPID;
1508   return OutContext.GetOrCreateSymbol(Name.str());
1509 }
1510
1511 /// GetJTISymbol - Return the symbol for the specified jump table entry.
1512 MCSymbol *AsmPrinter::GetJTISymbol(unsigned JTID, bool isLinkerPrivate) const {
1513   return MF->getJTISymbol(JTID, OutContext, isLinkerPrivate);
1514 }
1515
1516 /// GetJTSetSymbol - Return the symbol for the specified jump table .set
1517 /// FIXME: privatize to AsmPrinter.
1518 MCSymbol *AsmPrinter::GetJTSetSymbol(unsigned UID, unsigned MBBID) const {
1519   SmallString<60> Name;
1520   raw_svector_ostream(Name) << MAI->getPrivateGlobalPrefix()
1521     << getFunctionNumber() << '_' << UID << "_set_" << MBBID;
1522   return OutContext.GetOrCreateSymbol(Name.str());
1523 }
1524
1525 /// GetGlobalValueSymbol - Return the MCSymbol for the specified global
1526 /// value.
1527 MCSymbol *AsmPrinter::GetGlobalValueSymbol(const GlobalValue *GV) const {
1528   SmallString<60> NameStr;
1529   Mang->getNameWithPrefix(NameStr, GV, false);
1530   return OutContext.GetOrCreateSymbol(NameStr.str());
1531 }
1532
1533 /// GetSymbolWithGlobalValueBase - Return the MCSymbol for a symbol with
1534 /// global value name as its base, with the specified suffix, and where the
1535 /// symbol is forced to have private linkage if ForcePrivate is true.
1536 MCSymbol *AsmPrinter::GetSymbolWithGlobalValueBase(const GlobalValue *GV,
1537                                                    StringRef Suffix,
1538                                                    bool ForcePrivate) const {
1539   SmallString<60> NameStr;
1540   Mang->getNameWithPrefix(NameStr, GV, ForcePrivate);
1541   NameStr.append(Suffix.begin(), Suffix.end());
1542   return OutContext.GetOrCreateSymbol(NameStr.str());
1543 }
1544
1545 /// GetExternalSymbolSymbol - Return the MCSymbol for the specified
1546 /// ExternalSymbol.
1547 MCSymbol *AsmPrinter::GetExternalSymbolSymbol(StringRef Sym) const {
1548   SmallString<60> NameStr;
1549   Mang->getNameWithPrefix(NameStr, Sym);
1550   return OutContext.GetOrCreateSymbol(NameStr.str());
1551 }  
1552
1553
1554
1555 /// PrintParentLoopComment - Print comments about parent loops of this one.
1556 static void PrintParentLoopComment(raw_ostream &OS, const MachineLoop *Loop,
1557                                    unsigned FunctionNumber) {
1558   if (Loop == 0) return;
1559   PrintParentLoopComment(OS, Loop->getParentLoop(), FunctionNumber);
1560   OS.indent(Loop->getLoopDepth()*2)
1561     << "Parent Loop BB" << FunctionNumber << "_"
1562     << Loop->getHeader()->getNumber()
1563     << " Depth=" << Loop->getLoopDepth() << '\n';
1564 }
1565
1566
1567 /// PrintChildLoopComment - Print comments about child loops within
1568 /// the loop for this basic block, with nesting.
1569 static void PrintChildLoopComment(raw_ostream &OS, const MachineLoop *Loop,
1570                                   unsigned FunctionNumber) {
1571   // Add child loop information
1572   for (MachineLoop::iterator CL = Loop->begin(), E = Loop->end();CL != E; ++CL){
1573     OS.indent((*CL)->getLoopDepth()*2)
1574       << "Child Loop BB" << FunctionNumber << "_"
1575       << (*CL)->getHeader()->getNumber() << " Depth " << (*CL)->getLoopDepth()
1576       << '\n';
1577     PrintChildLoopComment(OS, *CL, FunctionNumber);
1578   }
1579 }
1580
1581 /// EmitComments - Pretty-print comments for basic blocks.
1582 static void PrintBasicBlockLoopComments(const MachineBasicBlock &MBB,
1583                                         const MachineLoopInfo *LI,
1584                                         const AsmPrinter &AP) {
1585   // Add loop depth information
1586   const MachineLoop *Loop = LI->getLoopFor(&MBB);
1587   if (Loop == 0) return;
1588   
1589   MachineBasicBlock *Header = Loop->getHeader();
1590   assert(Header && "No header for loop");
1591   
1592   // If this block is not a loop header, just print out what is the loop header
1593   // and return.
1594   if (Header != &MBB) {
1595     AP.OutStreamer.AddComment("  in Loop: Header=BB" +
1596                               Twine(AP.getFunctionNumber())+"_" +
1597                               Twine(Loop->getHeader()->getNumber())+
1598                               " Depth="+Twine(Loop->getLoopDepth()));
1599     return;
1600   }
1601   
1602   // Otherwise, it is a loop header.  Print out information about child and
1603   // parent loops.
1604   raw_ostream &OS = AP.OutStreamer.GetCommentOS();
1605   
1606   PrintParentLoopComment(OS, Loop->getParentLoop(), AP.getFunctionNumber()); 
1607   
1608   OS << "=>";
1609   OS.indent(Loop->getLoopDepth()*2-2);
1610   
1611   OS << "This ";
1612   if (Loop->empty())
1613     OS << "Inner ";
1614   OS << "Loop Header: Depth=" + Twine(Loop->getLoopDepth()) << '\n';
1615   
1616   PrintChildLoopComment(OS, Loop, AP.getFunctionNumber());
1617 }
1618
1619
1620 /// EmitBasicBlockStart - This method prints the label for the specified
1621 /// MachineBasicBlock, an alignment (if present) and a comment describing
1622 /// it if appropriate.
1623 void AsmPrinter::EmitBasicBlockStart(const MachineBasicBlock *MBB) const {
1624   // Emit an alignment directive for this block, if needed.
1625   if (unsigned Align = MBB->getAlignment())
1626     EmitAlignment(Log2_32(Align));
1627
1628   // If the block has its address taken, emit a special label to satisfy
1629   // references to the block. This is done so that we don't need to
1630   // remember the number of this label, and so that we can make
1631   // forward references to labels without knowing what their numbers
1632   // will be.
1633   if (MBB->hasAddressTaken()) {
1634     const BasicBlock *BB = MBB->getBasicBlock();
1635     if (VerboseAsm)
1636       OutStreamer.AddComment("Address Taken");
1637     OutStreamer.EmitLabel(GetBlockAddressSymbol(BB->getParent(), BB));
1638   }
1639
1640   // Print the main label for the block.
1641   if (MBB->pred_empty() || MBB->isOnlyReachableByFallthrough()) {
1642     if (VerboseAsm) {
1643       // NOTE: Want this comment at start of line.
1644       O << MAI->getCommentString() << " BB#" << MBB->getNumber() << ':';
1645       if (const BasicBlock *BB = MBB->getBasicBlock())
1646         if (BB->hasName())
1647           OutStreamer.AddComment("%" + BB->getName());
1648       
1649       PrintBasicBlockLoopComments(*MBB, LI, *this);
1650       OutStreamer.AddBlankLine();
1651     }
1652   } else {
1653     if (VerboseAsm) {
1654       if (const BasicBlock *BB = MBB->getBasicBlock())
1655         if (BB->hasName())
1656           OutStreamer.AddComment("%" + BB->getName());
1657       PrintBasicBlockLoopComments(*MBB, LI, *this);
1658     }
1659
1660     OutStreamer.EmitLabel(MBB->getSymbol(OutContext));
1661   }
1662 }
1663
1664 void AsmPrinter::EmitVisibility(MCSymbol *Sym, unsigned Visibility) const {
1665   MCSymbolAttr Attr = MCSA_Invalid;
1666   
1667   switch (Visibility) {
1668   default: break;
1669   case GlobalValue::HiddenVisibility:
1670     Attr = MAI->getHiddenVisibilityAttr();
1671     break;
1672   case GlobalValue::ProtectedVisibility:
1673     Attr = MAI->getProtectedVisibilityAttr();
1674     break;
1675   }
1676
1677   if (Attr != MCSA_Invalid)
1678     OutStreamer.EmitSymbolAttribute(Sym, Attr);
1679 }
1680
1681 void AsmPrinter::printOffset(int64_t Offset) const {
1682   if (Offset > 0)
1683     O << '+' << Offset;
1684   else if (Offset < 0)
1685     O << Offset;
1686 }
1687
1688 GCMetadataPrinter *AsmPrinter::GetOrCreateGCPrinter(GCStrategy *S) {
1689   if (!S->usesMetadata())
1690     return 0;
1691   
1692   gcp_iterator GCPI = GCMetadataPrinters.find(S);
1693   if (GCPI != GCMetadataPrinters.end())
1694     return GCPI->second;
1695   
1696   const char *Name = S->getName().c_str();
1697   
1698   for (GCMetadataPrinterRegistry::iterator
1699          I = GCMetadataPrinterRegistry::begin(),
1700          E = GCMetadataPrinterRegistry::end(); I != E; ++I)
1701     if (strcmp(Name, I->getName()) == 0) {
1702       GCMetadataPrinter *GMP = I->instantiate();
1703       GMP->S = S;
1704       GCMetadataPrinters.insert(std::make_pair(S, GMP));
1705       return GMP;
1706     }
1707   
1708   llvm_report_error("no GCMetadataPrinter registered for GC: " + Twine(Name));
1709   return 0;
1710 }
1711
1712 /// EmitComments - Pretty-print comments for instructions
1713 void AsmPrinter::EmitComments(const MachineInstr &MI) const {
1714   if (!VerboseAsm)
1715     return;
1716
1717   bool Newline = false;
1718
1719   if (!MI.getDebugLoc().isUnknown()) {
1720     DILocation DLT = MF->getDILocation(MI.getDebugLoc());
1721
1722     // Print source line info.
1723     O.PadToColumn(MAI->getCommentColumn());
1724     O << MAI->getCommentString() << ' ';
1725     DIScope Scope = DLT.getScope();
1726     // Omit the directory, because it's likely to be long and uninteresting.
1727     if (!Scope.isNull())
1728       O << Scope.getFilename();
1729     else
1730       O << "<unknown>";
1731     O << ':' << DLT.getLineNumber();
1732     if (DLT.getColumnNumber() != 0)
1733       O << ':' << DLT.getColumnNumber();
1734     Newline = true;
1735   }
1736
1737   // Check for spills and reloads
1738   int FI;
1739
1740   const MachineFrameInfo *FrameInfo =
1741     MI.getParent()->getParent()->getFrameInfo();
1742
1743   // We assume a single instruction only has a spill or reload, not
1744   // both.
1745   const MachineMemOperand *MMO;
1746   if (TM.getInstrInfo()->isLoadFromStackSlotPostFE(&MI, FI)) {
1747     if (FrameInfo->isSpillSlotObjectIndex(FI)) {
1748       MMO = *MI.memoperands_begin();
1749       if (Newline) O << '\n';
1750       O.PadToColumn(MAI->getCommentColumn());
1751       O << MAI->getCommentString() << ' ' << MMO->getSize() << "-byte Reload";
1752       Newline = true;
1753     }
1754   }
1755   else if (TM.getInstrInfo()->hasLoadFromStackSlot(&MI, MMO, FI)) {
1756     if (FrameInfo->isSpillSlotObjectIndex(FI)) {
1757       if (Newline) O << '\n';
1758       O.PadToColumn(MAI->getCommentColumn());
1759       O << MAI->getCommentString() << ' '
1760         << MMO->getSize() << "-byte Folded Reload";
1761       Newline = true;
1762     }
1763   }
1764   else if (TM.getInstrInfo()->isStoreToStackSlotPostFE(&MI, FI)) {
1765     if (FrameInfo->isSpillSlotObjectIndex(FI)) {
1766       MMO = *MI.memoperands_begin();
1767       if (Newline) O << '\n';
1768       O.PadToColumn(MAI->getCommentColumn());
1769       O << MAI->getCommentString() << ' ' << MMO->getSize() << "-byte Spill";
1770       Newline = true;
1771     }
1772   }
1773   else if (TM.getInstrInfo()->hasStoreToStackSlot(&MI, MMO, FI)) {
1774     if (FrameInfo->isSpillSlotObjectIndex(FI)) {
1775       if (Newline) O << '\n';
1776       O.PadToColumn(MAI->getCommentColumn());
1777       O << MAI->getCommentString() << ' '
1778         << MMO->getSize() << "-byte Folded Spill";
1779       Newline = true;
1780     }
1781   }
1782
1783   // Check for spill-induced copies
1784   unsigned SrcReg, DstReg, SrcSubIdx, DstSubIdx;
1785   if (TM.getInstrInfo()->isMoveInstr(MI, SrcReg, DstReg,
1786                                       SrcSubIdx, DstSubIdx)) {
1787     if (MI.getAsmPrinterFlag(ReloadReuse)) {
1788       if (Newline) O << '\n';
1789       O.PadToColumn(MAI->getCommentColumn());
1790       O << MAI->getCommentString() << " Reload Reuse";
1791     }
1792   }
1793 }
1794