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