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