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