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