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