Debug Info: Simplify Frame Index handling in DBG_VALUE Machine Instructions
[oota-llvm.git] / lib / CodeGen / AsmPrinter / AsmPrinter.cpp
1 //===-- AsmPrinter.cpp - Common AsmPrinter code ---------------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file implements the AsmPrinter class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #define DEBUG_TYPE "asm-printer"
15 #include "llvm/CodeGen/AsmPrinter.h"
16 #include "DwarfDebug.h"
17 #include "DwarfException.h"
18 #include "llvm/ADT/SmallString.h"
19 #include "llvm/ADT/Statistic.h"
20 #include "llvm/Analysis/ConstantFolding.h"
21 #include "llvm/Assembly/Writer.h"
22 #include "llvm/CodeGen/GCMetadataPrinter.h"
23 #include "llvm/CodeGen/MachineConstantPool.h"
24 #include "llvm/CodeGen/MachineFrameInfo.h"
25 #include "llvm/CodeGen/MachineFunction.h"
26 #include "llvm/CodeGen/MachineJumpTableInfo.h"
27 #include "llvm/CodeGen/MachineLoopInfo.h"
28 #include "llvm/CodeGen/MachineModuleInfo.h"
29 #include "llvm/DebugInfo.h"
30 #include "llvm/IR/DataLayout.h"
31 #include "llvm/IR/Module.h"
32 #include "llvm/IR/Operator.h"
33 #include "llvm/MC/MCAsmInfo.h"
34 #include "llvm/MC/MCContext.h"
35 #include "llvm/MC/MCExpr.h"
36 #include "llvm/MC/MCInst.h"
37 #include "llvm/MC/MCSection.h"
38 #include "llvm/MC/MCStreamer.h"
39 #include "llvm/MC/MCSymbol.h"
40 #include "llvm/Support/ErrorHandling.h"
41 #include "llvm/Support/Format.h"
42 #include "llvm/Support/MathExtras.h"
43 #include "llvm/Support/Timer.h"
44 #include "llvm/Target/Mangler.h"
45 #include "llvm/Target/TargetFrameLowering.h"
46 #include "llvm/Target/TargetInstrInfo.h"
47 #include "llvm/Target/TargetLowering.h"
48 #include "llvm/Target/TargetLoweringObjectFile.h"
49 #include "llvm/Target/TargetOptions.h"
50 #include "llvm/Target/TargetRegisterInfo.h"
51 using namespace llvm;
52
53 static const char *DWARFGroupName = "DWARF Emission";
54 static const char *DbgTimerName = "DWARF Debug Writer";
55 static const char *EHTimerName = "DWARF Exception Writer";
56
57 STATISTIC(EmittedInsts, "Number of machine instrs printed");
58
59 char AsmPrinter::ID = 0;
60
61 typedef DenseMap<GCStrategy*,GCMetadataPrinter*> gcp_map_type;
62 static gcp_map_type &getGCMap(void *&P) {
63   if (P == 0)
64     P = new gcp_map_type();
65   return *(gcp_map_type*)P;
66 }
67
68
69 /// getGVAlignmentLog2 - Return the alignment to use for the specified global
70 /// value in log2 form.  This rounds up to the preferred alignment if possible
71 /// and legal.
72 static unsigned getGVAlignmentLog2(const GlobalValue *GV, const DataLayout &TD,
73                                    unsigned InBits = 0) {
74   unsigned NumBits = 0;
75   if (const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV))
76     NumBits = TD.getPreferredAlignmentLog(GVar);
77
78   // If InBits is specified, round it to it.
79   if (InBits > NumBits)
80     NumBits = InBits;
81
82   // If the GV has a specified alignment, take it into account.
83   if (GV->getAlignment() == 0)
84     return NumBits;
85
86   unsigned GVAlign = Log2_32(GV->getAlignment());
87
88   // If the GVAlign is larger than NumBits, or if we are required to obey
89   // NumBits because the GV has an assigned section, obey it.
90   if (GVAlign > NumBits || GV->hasSection())
91     NumBits = GVAlign;
92   return NumBits;
93 }
94
95 AsmPrinter::AsmPrinter(TargetMachine &tm, MCStreamer &Streamer)
96   : MachineFunctionPass(ID),
97     TM(tm), MAI(tm.getMCAsmInfo()),
98     OutContext(Streamer.getContext()),
99     OutStreamer(Streamer),
100     LastMI(0), LastFn(0), Counter(~0U), SetCounter(0) {
101   DD = 0; DE = 0; MMI = 0; LI = 0;
102   CurrentFnSym = CurrentFnSymForSize = 0;
103   GCMetadataPrinters = 0;
104   VerboseAsm = Streamer.isVerboseAsm();
105 }
106
107 AsmPrinter::~AsmPrinter() {
108   assert(DD == 0 && DE == 0 && "Debug/EH info didn't get finalized");
109
110   if (GCMetadataPrinters != 0) {
111     gcp_map_type &GCMap = getGCMap(GCMetadataPrinters);
112
113     for (gcp_map_type::iterator I = GCMap.begin(), E = GCMap.end(); I != E; ++I)
114       delete I->second;
115     delete &GCMap;
116     GCMetadataPrinters = 0;
117   }
118
119   delete &OutStreamer;
120 }
121
122 /// getFunctionNumber - Return a unique ID for the current function.
123 ///
124 unsigned AsmPrinter::getFunctionNumber() const {
125   return MF->getFunctionNumber();
126 }
127
128 const TargetLoweringObjectFile &AsmPrinter::getObjFileLowering() const {
129   return TM.getTargetLowering()->getObjFileLowering();
130 }
131
132 /// getDataLayout - Return information about data layout.
133 const DataLayout &AsmPrinter::getDataLayout() const {
134   return *TM.getDataLayout();
135 }
136
137 StringRef AsmPrinter::getTargetTriple() const {
138   return TM.getTargetTriple();
139 }
140
141 /// getCurrentSection() - Return the current section we are emitting to.
142 const MCSection *AsmPrinter::getCurrentSection() const {
143   return OutStreamer.getCurrentSection().first;
144 }
145
146
147
148 void AsmPrinter::getAnalysisUsage(AnalysisUsage &AU) const {
149   AU.setPreservesAll();
150   MachineFunctionPass::getAnalysisUsage(AU);
151   AU.addRequired<MachineModuleInfo>();
152   AU.addRequired<GCModuleInfo>();
153   if (isVerbose())
154     AU.addRequired<MachineLoopInfo>();
155 }
156
157 bool AsmPrinter::doInitialization(Module &M) {
158   OutStreamer.InitStreamer();
159
160   MMI = getAnalysisIfAvailable<MachineModuleInfo>();
161   MMI->AnalyzeModule(M);
162
163   // Initialize TargetLoweringObjectFile.
164   const_cast<TargetLoweringObjectFile&>(getObjFileLowering())
165     .Initialize(OutContext, TM);
166
167   Mang = new Mangler(OutContext, &TM);
168
169   // Allow the target to emit any magic that it wants at the start of the file.
170   EmitStartOfAsmFile(M);
171
172   // Very minimal debug info. It is ignored if we emit actual debug info. If we
173   // don't, this at least helps the user find where a global came from.
174   if (MAI->hasSingleParameterDotFile()) {
175     // .file "foo.c"
176     OutStreamer.EmitFileDirective(M.getModuleIdentifier());
177   }
178
179   GCModuleInfo *MI = getAnalysisIfAvailable<GCModuleInfo>();
180   assert(MI && "AsmPrinter didn't require GCModuleInfo?");
181   for (GCModuleInfo::iterator I = MI->begin(), E = MI->end(); I != E; ++I)
182     if (GCMetadataPrinter *MP = GetOrCreateGCPrinter(*I))
183       MP->beginAssembly(*this);
184
185   // Emit module-level inline asm if it exists.
186   if (!M.getModuleInlineAsm().empty()) {
187     OutStreamer.AddComment("Start of file scope inline assembly");
188     OutStreamer.AddBlankLine();
189     EmitInlineAsm(M.getModuleInlineAsm()+"\n");
190     OutStreamer.AddComment("End of file scope inline assembly");
191     OutStreamer.AddBlankLine();
192   }
193
194   if (MAI->doesSupportDebugInformation())
195     DD = new DwarfDebug(this, &M);
196
197   switch (MAI->getExceptionHandlingType()) {
198   case ExceptionHandling::None:
199     return false;
200   case ExceptionHandling::SjLj:
201   case ExceptionHandling::DwarfCFI:
202     DE = new DwarfCFIException(this);
203     return false;
204   case ExceptionHandling::ARM:
205     DE = new ARMException(this);
206     return false;
207   case ExceptionHandling::Win64:
208     DE = new Win64Exception(this);
209     return false;
210   }
211
212   llvm_unreachable("Unknown exception type.");
213 }
214
215 void AsmPrinter::EmitLinkage(unsigned Linkage, MCSymbol *GVSym) const {
216   switch ((GlobalValue::LinkageTypes)Linkage) {
217   case GlobalValue::CommonLinkage:
218   case GlobalValue::LinkOnceAnyLinkage:
219   case GlobalValue::LinkOnceODRLinkage:
220   case GlobalValue::LinkOnceODRAutoHideLinkage:
221   case GlobalValue::WeakAnyLinkage:
222   case GlobalValue::WeakODRLinkage:
223   case GlobalValue::LinkerPrivateWeakLinkage:
224     if (MAI->getWeakDefDirective() != 0) {
225       // .globl _foo
226       OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global);
227
228       if ((GlobalValue::LinkageTypes)Linkage !=
229           GlobalValue::LinkOnceODRAutoHideLinkage)
230         // .weak_definition _foo
231         OutStreamer.EmitSymbolAttribute(GVSym, MCSA_WeakDefinition);
232       else
233         OutStreamer.EmitSymbolAttribute(GVSym, MCSA_WeakDefAutoPrivate);
234     } else if (MAI->getLinkOnceDirective() != 0) {
235       // .globl _foo
236       OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global);
237       //NOTE: linkonce is handled by the section the symbol was assigned to.
238     } else {
239       // .weak _foo
240       OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Weak);
241     }
242     break;
243   case GlobalValue::DLLExportLinkage:
244   case GlobalValue::AppendingLinkage:
245     // FIXME: appending linkage variables should go into a section of
246     // their name or something.  For now, just emit them as external.
247   case GlobalValue::ExternalLinkage:
248     // If external or appending, declare as a global symbol.
249     // .globl _foo
250     OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global);
251     break;
252   case GlobalValue::PrivateLinkage:
253   case GlobalValue::InternalLinkage:
254   case GlobalValue::LinkerPrivateLinkage:
255     break;
256   default:
257     llvm_unreachable("Unknown linkage type!");
258   }
259 }
260
261
262 /// EmitGlobalVariable - Emit the specified global variable to the .s file.
263 void AsmPrinter::EmitGlobalVariable(const GlobalVariable *GV) {
264   if (GV->hasInitializer()) {
265     // Check to see if this is a special global used by LLVM, if so, emit it.
266     if (EmitSpecialLLVMGlobal(GV))
267       return;
268
269     if (isVerbose()) {
270       WriteAsOperand(OutStreamer.GetCommentOS(), GV,
271                      /*PrintType=*/false, GV->getParent());
272       OutStreamer.GetCommentOS() << '\n';
273     }
274   }
275
276   MCSymbol *GVSym = Mang->getSymbol(GV);
277   EmitVisibility(GVSym, GV->getVisibility(), !GV->isDeclaration());
278
279   if (!GV->hasInitializer())   // External globals require no extra code.
280     return;
281
282   if (MAI->hasDotTypeDotSizeDirective())
283     OutStreamer.EmitSymbolAttribute(GVSym, MCSA_ELF_TypeObject);
284
285   SectionKind GVKind = TargetLoweringObjectFile::getKindForGlobal(GV, TM);
286
287   const DataLayout *TD = TM.getDataLayout();
288   uint64_t Size = TD->getTypeAllocSize(GV->getType()->getElementType());
289
290   // If the alignment is specified, we *must* obey it.  Overaligning a global
291   // with a specified alignment is a prompt way to break globals emitted to
292   // sections and expected to be contiguous (e.g. ObjC metadata).
293   unsigned AlignLog = getGVAlignmentLog2(GV, *TD);
294
295   // Handle common and BSS local symbols (.lcomm).
296   if (GVKind.isCommon() || GVKind.isBSSLocal()) {
297     if (Size == 0) Size = 1;   // .comm Foo, 0 is undefined, avoid it.
298     unsigned Align = 1 << AlignLog;
299
300     // Handle common symbols.
301     if (GVKind.isCommon()) {
302       if (!getObjFileLowering().getCommDirectiveSupportsAlignment())
303         Align = 0;
304
305       // .comm _foo, 42, 4
306       OutStreamer.EmitCommonSymbol(GVSym, Size, Align);
307       return;
308     }
309
310     // Handle local BSS symbols.
311     if (MAI->hasMachoZeroFillDirective()) {
312       const MCSection *TheSection =
313         getObjFileLowering().SectionForGlobal(GV, GVKind, Mang, TM);
314       // .zerofill __DATA, __bss, _foo, 400, 5
315       OutStreamer.EmitZerofill(TheSection, GVSym, Size, Align);
316       return;
317     }
318
319     // Use .lcomm only if it supports user-specified alignment.
320     // Otherwise, while it would still be correct to use .lcomm in some
321     // cases (e.g. when Align == 1), the external assembler might enfore
322     // some -unknown- default alignment behavior, which could cause
323     // spurious differences between external and integrated assembler.
324     // Prefer to simply fall back to .local / .comm in this case.
325     if (MAI->getLCOMMDirectiveAlignmentType() != LCOMM::NoAlignment) {
326       // .lcomm _foo, 42
327       OutStreamer.EmitLocalCommonSymbol(GVSym, Size, Align);
328       return;
329     }
330
331     if (!getObjFileLowering().getCommDirectiveSupportsAlignment())
332       Align = 0;
333
334     // .local _foo
335     OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Local);
336     // .comm _foo, 42, 4
337     OutStreamer.EmitCommonSymbol(GVSym, Size, Align);
338     return;
339   }
340
341   const MCSection *TheSection =
342     getObjFileLowering().SectionForGlobal(GV, GVKind, Mang, TM);
343
344   // Handle the zerofill directive on darwin, which is a special form of BSS
345   // emission.
346   if (GVKind.isBSSExtern() && MAI->hasMachoZeroFillDirective()) {
347     if (Size == 0) Size = 1;  // zerofill of 0 bytes is undefined.
348
349     // .globl _foo
350     OutStreamer.EmitSymbolAttribute(GVSym, MCSA_Global);
351     // .zerofill __DATA, __common, _foo, 400, 5
352     OutStreamer.EmitZerofill(TheSection, GVSym, Size, 1 << AlignLog);
353     return;
354   }
355
356   // Handle thread local data for mach-o which requires us to output an
357   // additional structure of data and mangle the original symbol so that we
358   // can reference it later.
359   //
360   // TODO: This should become an "emit thread local global" method on TLOF.
361   // All of this macho specific stuff should be sunk down into TLOFMachO and
362   // stuff like "TLSExtraDataSection" should no longer be part of the parent
363   // TLOF class.  This will also make it more obvious that stuff like
364   // MCStreamer::EmitTBSSSymbol is macho specific and only called from macho
365   // specific code.
366   if (GVKind.isThreadLocal() && MAI->hasMachoTBSSDirective()) {
367     // Emit the .tbss symbol
368     MCSymbol *MangSym =
369       OutContext.GetOrCreateSymbol(GVSym->getName() + Twine("$tlv$init"));
370
371     if (GVKind.isThreadBSS())
372       OutStreamer.EmitTBSSSymbol(TheSection, MangSym, Size, 1 << AlignLog);
373     else if (GVKind.isThreadData()) {
374       OutStreamer.SwitchSection(TheSection);
375
376       EmitAlignment(AlignLog, GV);
377       OutStreamer.EmitLabel(MangSym);
378
379       EmitGlobalConstant(GV->getInitializer());
380     }
381
382     OutStreamer.AddBlankLine();
383
384     // Emit the variable struct for the runtime.
385     const MCSection *TLVSect
386       = getObjFileLowering().getTLSExtraDataSection();
387
388     OutStreamer.SwitchSection(TLVSect);
389     // Emit the linkage here.
390     EmitLinkage(GV->getLinkage(), GVSym);
391     OutStreamer.EmitLabel(GVSym);
392
393     // Three pointers in size:
394     //   - __tlv_bootstrap - used to make sure support exists
395     //   - spare pointer, used when mapped by the runtime
396     //   - pointer to mangled symbol above with initializer
397     unsigned PtrSize = TD->getPointerSizeInBits()/8;
398     OutStreamer.EmitSymbolValue(GetExternalSymbolSymbol("_tlv_bootstrap"),
399                                 PtrSize);
400     OutStreamer.EmitIntValue(0, PtrSize);
401     OutStreamer.EmitSymbolValue(MangSym, PtrSize);
402
403     OutStreamer.AddBlankLine();
404     return;
405   }
406
407   OutStreamer.SwitchSection(TheSection);
408
409   EmitLinkage(GV->getLinkage(), GVSym);
410   EmitAlignment(AlignLog, GV);
411
412   OutStreamer.EmitLabel(GVSym);
413
414   EmitGlobalConstant(GV->getInitializer());
415
416   if (MAI->hasDotTypeDotSizeDirective())
417     // .size foo, 42
418     OutStreamer.EmitELFSize(GVSym, MCConstantExpr::Create(Size, OutContext));
419
420   OutStreamer.AddBlankLine();
421 }
422
423 /// EmitFunctionHeader - This method emits the header for the current
424 /// function.
425 void AsmPrinter::EmitFunctionHeader() {
426   // Print out constants referenced by the function
427   EmitConstantPool();
428
429   // Print the 'header' of function.
430   const Function *F = MF->getFunction();
431
432   OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang, TM));
433   EmitVisibility(CurrentFnSym, F->getVisibility());
434
435   EmitLinkage(F->getLinkage(), CurrentFnSym);
436   EmitAlignment(MF->getAlignment(), F);
437
438   if (MAI->hasDotTypeDotSizeDirective())
439     OutStreamer.EmitSymbolAttribute(CurrentFnSym, MCSA_ELF_TypeFunction);
440
441   if (isVerbose()) {
442     WriteAsOperand(OutStreamer.GetCommentOS(), F,
443                    /*PrintType=*/false, F->getParent());
444     OutStreamer.GetCommentOS() << '\n';
445   }
446
447   // Emit the CurrentFnSym.  This is a virtual function to allow targets to
448   // do their wild and crazy things as required.
449   EmitFunctionEntryLabel();
450
451   // If the function had address-taken blocks that got deleted, then we have
452   // references to the dangling symbols.  Emit them at the start of the function
453   // so that we don't get references to undefined symbols.
454   std::vector<MCSymbol*> DeadBlockSyms;
455   MMI->takeDeletedSymbolsForFunction(F, DeadBlockSyms);
456   for (unsigned i = 0, e = DeadBlockSyms.size(); i != e; ++i) {
457     OutStreamer.AddComment("Address taken block that was later removed");
458     OutStreamer.EmitLabel(DeadBlockSyms[i]);
459   }
460
461   // Add some workaround for linkonce linkage on Cygwin\MinGW.
462   if (MAI->getLinkOnceDirective() != 0 &&
463       (F->hasLinkOnceLinkage() || F->hasWeakLinkage())) {
464     // FIXME: What is this?
465     MCSymbol *FakeStub =
466       OutContext.GetOrCreateSymbol(Twine("Lllvm$workaround$fake$stub$")+
467                                    CurrentFnSym->getName());
468     OutStreamer.EmitLabel(FakeStub);
469   }
470
471   // Emit pre-function debug and/or EH information.
472   if (DE) {
473     NamedRegionTimer T(EHTimerName, DWARFGroupName, TimePassesIsEnabled);
474     DE->BeginFunction(MF);
475   }
476   if (DD) {
477     NamedRegionTimer T(DbgTimerName, DWARFGroupName, TimePassesIsEnabled);
478     DD->beginFunction(MF);
479   }
480 }
481
482 /// EmitFunctionEntryLabel - Emit the label that is the entrypoint for the
483 /// function.  This can be overridden by targets as required to do custom stuff.
484 void AsmPrinter::EmitFunctionEntryLabel() {
485   // The function label could have already been emitted if two symbols end up
486   // conflicting due to asm renaming.  Detect this and emit an error.
487   if (CurrentFnSym->isUndefined())
488     return OutStreamer.EmitLabel(CurrentFnSym);
489
490   report_fatal_error("'" + Twine(CurrentFnSym->getName()) +
491                      "' label emitted multiple times to assembly file");
492 }
493
494 /// emitComments - Pretty-print comments for instructions.
495 static void emitComments(const MachineInstr &MI, raw_ostream &CommentOS) {
496   const MachineFunction *MF = MI.getParent()->getParent();
497   const TargetMachine &TM = MF->getTarget();
498
499   // Check for spills and reloads
500   int FI;
501
502   const MachineFrameInfo *FrameInfo = MF->getFrameInfo();
503
504   // We assume a single instruction only has a spill or reload, not
505   // both.
506   const MachineMemOperand *MMO;
507   if (TM.getInstrInfo()->isLoadFromStackSlotPostFE(&MI, FI)) {
508     if (FrameInfo->isSpillSlotObjectIndex(FI)) {
509       MMO = *MI.memoperands_begin();
510       CommentOS << MMO->getSize() << "-byte Reload\n";
511     }
512   } else if (TM.getInstrInfo()->hasLoadFromStackSlot(&MI, MMO, FI)) {
513     if (FrameInfo->isSpillSlotObjectIndex(FI))
514       CommentOS << MMO->getSize() << "-byte Folded Reload\n";
515   } else if (TM.getInstrInfo()->isStoreToStackSlotPostFE(&MI, FI)) {
516     if (FrameInfo->isSpillSlotObjectIndex(FI)) {
517       MMO = *MI.memoperands_begin();
518       CommentOS << MMO->getSize() << "-byte Spill\n";
519     }
520   } else if (TM.getInstrInfo()->hasStoreToStackSlot(&MI, MMO, FI)) {
521     if (FrameInfo->isSpillSlotObjectIndex(FI))
522       CommentOS << MMO->getSize() << "-byte Folded Spill\n";
523   }
524
525   // Check for spill-induced copies
526   if (MI.getAsmPrinterFlag(MachineInstr::ReloadReuse))
527     CommentOS << " Reload Reuse\n";
528 }
529
530 /// emitImplicitDef - This method emits the specified machine instruction
531 /// that is an implicit def.
532 static void emitImplicitDef(const MachineInstr *MI, AsmPrinter &AP) {
533   unsigned RegNo = MI->getOperand(0).getReg();
534   AP.OutStreamer.AddComment(Twine("implicit-def: ") +
535                             AP.TM.getRegisterInfo()->getName(RegNo));
536   AP.OutStreamer.AddBlankLine();
537 }
538
539 static void emitKill(const MachineInstr *MI, AsmPrinter &AP) {
540   std::string Str = "kill:";
541   for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
542     const MachineOperand &Op = MI->getOperand(i);
543     assert(Op.isReg() && "KILL instruction must have only register operands");
544     Str += ' ';
545     Str += AP.TM.getRegisterInfo()->getName(Op.getReg());
546     Str += (Op.isDef() ? "<def>" : "<kill>");
547   }
548   AP.OutStreamer.AddComment(Str);
549   AP.OutStreamer.AddBlankLine();
550 }
551
552 /// emitDebugValueComment - This method handles the target-independent form
553 /// of DBG_VALUE, returning true if it was able to do so.  A false return
554 /// means the target will need to handle MI in EmitInstruction.
555 static bool emitDebugValueComment(const MachineInstr *MI, AsmPrinter &AP) {
556   // This code handles only the 3-operand target-independent form.
557   if (MI->getNumOperands() != 3)
558     return false;
559
560   SmallString<128> Str;
561   raw_svector_ostream OS(Str);
562   OS << '\t' << AP.MAI->getCommentString() << "DEBUG_VALUE: ";
563
564   // cast away const; DIetc do not take const operands for some reason.
565   DIVariable V(const_cast<MDNode*>(MI->getOperand(2).getMetadata()));
566   if (V.getContext().isSubprogram()) {
567     StringRef Name = DISubprogram(V.getContext()).getDisplayName();
568     if (!Name.empty())
569       OS << Name << ":";
570   }
571   OS << V.getName() << " <- ";
572
573   int64_t Offset = MI->getOperand(1).getImm();
574   bool Deref = false;
575   // Register or immediate value. Register 0 means undef.
576   if (MI->getOperand(0).isFPImm()) {
577     APFloat APF = APFloat(MI->getOperand(0).getFPImm()->getValueAPF());
578     if (MI->getOperand(0).getFPImm()->getType()->isFloatTy()) {
579       OS << (double)APF.convertToFloat();
580     } else if (MI->getOperand(0).getFPImm()->getType()->isDoubleTy()) {
581       OS << APF.convertToDouble();
582     } else {
583       // There is no good way to print long double.  Convert a copy to
584       // double.  Ah well, it's only a comment.
585       bool ignored;
586       APF.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven,
587                   &ignored);
588       OS << "(long double) " << APF.convertToDouble();
589     }
590   } else if (MI->getOperand(0).isImm()) {
591     OS << MI->getOperand(0).getImm();
592   } else if (MI->getOperand(0).isCImm()) {
593     MI->getOperand(0).getCImm()->getValue().print(OS, false /*isSigned*/);
594   } else {
595     unsigned Reg;
596     if (MI->getOperand(0).isReg()) {
597       Reg = MI->getOperand(0).getReg();
598       Deref = Offset != 0; // FIXME: use a better sentinel value so that deref
599                            // of a reg with a zero offset is valid
600     } else {
601       assert(MI->getOperand(0).isFI() && "Unknown operand type");
602       const TargetFrameLowering *TFI = AP.TM.getFrameLowering();
603       Offset += TFI->getFrameIndexReference(*AP.MF, MI->getOperand(0).getIndex(), Reg);
604       Deref = true;
605     }
606     if (Reg == 0) {
607       // Suppress offset, it is not meaningful here.
608       OS << "undef";
609       // NOTE: Want this comment at start of line, don't emit with AddComment.
610       AP.OutStreamer.EmitRawText(OS.str());
611       return true;
612     }
613     if (Deref)
614       OS << '[';
615     OS << AP.TM.getRegisterInfo()->getName(Reg);
616   }
617
618   if (Offset)
619     OS << '+' << Offset;
620   if (Deref)
621     OS << ']';
622   // NOTE: Want this comment at start of line, don't emit with AddComment.
623   AP.OutStreamer.EmitRawText(OS.str());
624   return true;
625 }
626
627 AsmPrinter::CFIMoveType AsmPrinter::needsCFIMoves() {
628   if (MAI->getExceptionHandlingType() == ExceptionHandling::DwarfCFI &&
629       MF->getFunction()->needsUnwindTableEntry())
630     return CFI_M_EH;
631
632   if (MMI->hasDebugInfo())
633     return CFI_M_Debug;
634
635   return CFI_M_None;
636 }
637
638 bool AsmPrinter::needsSEHMoves() {
639   return MAI->getExceptionHandlingType() == ExceptionHandling::Win64 &&
640     MF->getFunction()->needsUnwindTableEntry();
641 }
642
643 bool AsmPrinter::needsRelocationsForDwarfStringPool() const {
644   return MAI->doesDwarfUseRelocationsAcrossSections();
645 }
646
647 void AsmPrinter::emitPrologLabel(const MachineInstr &MI) {
648   MCSymbol *Label = MI.getOperand(0).getMCSymbol();
649
650   if (MAI->getExceptionHandlingType() != ExceptionHandling::DwarfCFI)
651     return;
652
653   if (needsCFIMoves() == CFI_M_None)
654     return;
655
656   if (MMI->getCompactUnwindEncoding() != 0)
657     OutStreamer.EmitCompactUnwindEncoding(MMI->getCompactUnwindEncoding());
658
659   MachineModuleInfo &MMI = MF->getMMI();
660   std::vector<MCCFIInstruction> Instructions = MMI.getFrameInstructions();
661   bool FoundOne = false;
662   (void)FoundOne;
663   for (std::vector<MCCFIInstruction>::iterator I = Instructions.begin(),
664          E = Instructions.end(); I != E; ++I) {
665     if (I->getLabel() == Label) {
666       emitCFIInstruction(*I);
667       FoundOne = true;
668     }
669   }
670   assert(FoundOne);
671 }
672
673 /// EmitFunctionBody - This method emits the body and trailer for a
674 /// function.
675 void AsmPrinter::EmitFunctionBody() {
676   // Emit target-specific gunk before the function body.
677   EmitFunctionBodyStart();
678
679   bool ShouldPrintDebugScopes = DD && MMI->hasDebugInfo();
680
681   // Print out code for the function.
682   bool HasAnyRealCode = false;
683   const MachineInstr *LastMI = 0;
684   for (MachineFunction::const_iterator I = MF->begin(), E = MF->end();
685        I != E; ++I) {
686     // Print a label for the basic block.
687     EmitBasicBlockStart(I);
688     for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
689          II != IE; ++II) {
690       LastMI = II;
691
692       // Print the assembly for the instruction.
693       if (!II->isLabel() && !II->isImplicitDef() && !II->isKill() &&
694           !II->isDebugValue()) {
695         HasAnyRealCode = true;
696         ++EmittedInsts;
697       }
698
699       if (ShouldPrintDebugScopes) {
700         NamedRegionTimer T(DbgTimerName, DWARFGroupName, TimePassesIsEnabled);
701         DD->beginInstruction(II);
702       }
703
704       if (isVerbose())
705         emitComments(*II, OutStreamer.GetCommentOS());
706
707       switch (II->getOpcode()) {
708       case TargetOpcode::PROLOG_LABEL:
709         emitPrologLabel(*II);
710         break;
711
712       case TargetOpcode::EH_LABEL:
713       case TargetOpcode::GC_LABEL:
714         OutStreamer.EmitLabel(II->getOperand(0).getMCSymbol());
715         break;
716       case TargetOpcode::INLINEASM:
717         EmitInlineAsm(II);
718         break;
719       case TargetOpcode::DBG_VALUE:
720         if (isVerbose()) {
721           if (!emitDebugValueComment(II, *this))
722             EmitInstruction(II);
723         }
724         break;
725       case TargetOpcode::IMPLICIT_DEF:
726         if (isVerbose()) emitImplicitDef(II, *this);
727         break;
728       case TargetOpcode::KILL:
729         if (isVerbose()) emitKill(II, *this);
730         break;
731       default:
732         if (!TM.hasMCUseLoc())
733           MCLineEntry::Make(&OutStreamer, getCurrentSection());
734
735         EmitInstruction(II);
736         break;
737       }
738
739       if (ShouldPrintDebugScopes) {
740         NamedRegionTimer T(DbgTimerName, DWARFGroupName, TimePassesIsEnabled);
741         DD->endInstruction(II);
742       }
743     }
744   }
745
746   // If the last instruction was a prolog label, then we have a situation where
747   // we emitted a prolog but no function body. This results in the ending prolog
748   // label equaling the end of function label and an invalid "row" in the
749   // FDE. We need to emit a noop in this situation so that the FDE's rows are
750   // valid.
751   bool RequiresNoop = LastMI && LastMI->isPrologLabel();
752
753   // If the function is empty and the object file uses .subsections_via_symbols,
754   // then we need to emit *something* to the function body to prevent the
755   // labels from collapsing together.  Just emit a noop.
756   if ((MAI->hasSubsectionsViaSymbols() && !HasAnyRealCode) || RequiresNoop) {
757     MCInst Noop;
758     TM.getInstrInfo()->getNoopForMachoTarget(Noop);
759     if (Noop.getOpcode()) {
760       OutStreamer.AddComment("avoids zero-length function");
761       OutStreamer.EmitInstruction(Noop);
762     } else  // Target not mc-ized yet.
763       OutStreamer.EmitRawText(StringRef("\tnop\n"));
764   }
765
766   const Function *F = MF->getFunction();
767   for (Function::const_iterator i = F->begin(), e = F->end(); i != e; ++i) {
768     const BasicBlock *BB = i;
769     if (!BB->hasAddressTaken())
770       continue;
771     MCSymbol *Sym = GetBlockAddressSymbol(BB);
772     if (Sym->isDefined())
773       continue;
774     OutStreamer.AddComment("Address of block that was removed by CodeGen");
775     OutStreamer.EmitLabel(Sym);
776   }
777
778   // Emit target-specific gunk after the function body.
779   EmitFunctionBodyEnd();
780
781   // If the target wants a .size directive for the size of the function, emit
782   // it.
783   if (MAI->hasDotTypeDotSizeDirective()) {
784     // Create a symbol for the end of function, so we can get the size as
785     // difference between the function label and the temp label.
786     MCSymbol *FnEndLabel = OutContext.CreateTempSymbol();
787     OutStreamer.EmitLabel(FnEndLabel);
788
789     const MCExpr *SizeExp =
790       MCBinaryExpr::CreateSub(MCSymbolRefExpr::Create(FnEndLabel, OutContext),
791                               MCSymbolRefExpr::Create(CurrentFnSymForSize,
792                                                       OutContext),
793                               OutContext);
794     OutStreamer.EmitELFSize(CurrentFnSym, SizeExp);
795   }
796
797   // Emit post-function debug information.
798   if (DD) {
799     NamedRegionTimer T(DbgTimerName, DWARFGroupName, TimePassesIsEnabled);
800     DD->endFunction(MF);
801   }
802   if (DE) {
803     NamedRegionTimer T(EHTimerName, DWARFGroupName, TimePassesIsEnabled);
804     DE->EndFunction();
805   }
806   MMI->EndFunction();
807
808   // Print out jump tables referenced by the function.
809   EmitJumpTableInfo();
810
811   OutStreamer.AddBlankLine();
812 }
813
814 /// getDebugValueLocation - Get location information encoded by DBG_VALUE
815 /// operands.
816 MachineLocation AsmPrinter::
817 getDebugValueLocation(const MachineInstr *MI) const {
818   // Target specific DBG_VALUE instructions are handled by each target.
819   return MachineLocation();
820 }
821
822 /// EmitDwarfRegOp - Emit dwarf register operation.
823 void AsmPrinter::EmitDwarfRegOp(const MachineLocation &MLoc) const {
824   const TargetRegisterInfo *TRI = TM.getRegisterInfo();
825   int Reg = TRI->getDwarfRegNum(MLoc.getReg(), false);
826
827   for (MCSuperRegIterator SR(MLoc.getReg(), TRI); SR.isValid() && Reg < 0;
828        ++SR) {
829     Reg = TRI->getDwarfRegNum(*SR, false);
830     // FIXME: Get the bit range this register uses of the superregister
831     // so that we can produce a DW_OP_bit_piece
832   }
833
834   // FIXME: Handle cases like a super register being encoded as
835   // DW_OP_reg 32 DW_OP_piece 4 DW_OP_reg 33
836
837   // FIXME: We have no reasonable way of handling errors in here. The
838   // caller might be in the middle of an dwarf expression. We should
839   // probably assert that Reg >= 0 once debug info generation is more mature.
840
841   if (MLoc.isIndirect()) {
842     if (Reg < 32) {
843       OutStreamer.AddComment(
844         dwarf::OperationEncodingString(dwarf::DW_OP_breg0 + Reg));
845       EmitInt8(dwarf::DW_OP_breg0 + Reg);
846     } else {
847       OutStreamer.AddComment("DW_OP_bregx");
848       EmitInt8(dwarf::DW_OP_bregx);
849       OutStreamer.AddComment(Twine(Reg));
850       EmitULEB128(Reg);
851     }
852     EmitSLEB128(MLoc.getOffset());
853   } else {
854     if (Reg < 32) {
855       OutStreamer.AddComment(
856         dwarf::OperationEncodingString(dwarf::DW_OP_reg0 + Reg));
857       EmitInt8(dwarf::DW_OP_reg0 + Reg);
858     } else {
859       OutStreamer.AddComment("DW_OP_regx");
860       EmitInt8(dwarf::DW_OP_regx);
861       OutStreamer.AddComment(Twine(Reg));
862       EmitULEB128(Reg);
863     }
864   }
865
866   // FIXME: Produce a DW_OP_bit_piece if we used a superregister
867 }
868
869 bool AsmPrinter::doFinalization(Module &M) {
870   // Emit global variables.
871   for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
872        I != E; ++I)
873     EmitGlobalVariable(I);
874
875   // Emit visibility info for declarations
876   for (Module::const_iterator I = M.begin(), E = M.end(); I != E; ++I) {
877     const Function &F = *I;
878     if (!F.isDeclaration())
879       continue;
880     GlobalValue::VisibilityTypes V = F.getVisibility();
881     if (V == GlobalValue::DefaultVisibility)
882       continue;
883
884     MCSymbol *Name = Mang->getSymbol(&F);
885     EmitVisibility(Name, V, false);
886   }
887
888   // Emit module flags.
889   SmallVector<Module::ModuleFlagEntry, 8> ModuleFlags;
890   M.getModuleFlagsMetadata(ModuleFlags);
891   if (!ModuleFlags.empty())
892     getObjFileLowering().emitModuleFlags(OutStreamer, ModuleFlags, Mang, TM);
893
894   // Finalize debug and EH information.
895   if (DE) {
896     {
897       NamedRegionTimer T(EHTimerName, DWARFGroupName, TimePassesIsEnabled);
898       DE->EndModule();
899     }
900     delete DE; DE = 0;
901   }
902   if (DD) {
903     {
904       NamedRegionTimer T(DbgTimerName, DWARFGroupName, TimePassesIsEnabled);
905       DD->endModule();
906     }
907     delete DD; DD = 0;
908   }
909
910   // If the target wants to know about weak references, print them all.
911   if (MAI->getWeakRefDirective()) {
912     // FIXME: This is not lazy, it would be nice to only print weak references
913     // to stuff that is actually used.  Note that doing so would require targets
914     // to notice uses in operands (due to constant exprs etc).  This should
915     // happen with the MC stuff eventually.
916
917     // Print out module-level global variables here.
918     for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
919          I != E; ++I) {
920       if (!I->hasExternalWeakLinkage()) continue;
921       OutStreamer.EmitSymbolAttribute(Mang->getSymbol(I), MCSA_WeakReference);
922     }
923
924     for (Module::const_iterator I = M.begin(), E = M.end(); I != E; ++I) {
925       if (!I->hasExternalWeakLinkage()) continue;
926       OutStreamer.EmitSymbolAttribute(Mang->getSymbol(I), MCSA_WeakReference);
927     }
928   }
929
930   if (MAI->hasSetDirective()) {
931     OutStreamer.AddBlankLine();
932     for (Module::const_alias_iterator I = M.alias_begin(), E = M.alias_end();
933          I != E; ++I) {
934       MCSymbol *Name = Mang->getSymbol(I);
935
936       const GlobalValue *GV = I->getAliasedGlobal();
937       MCSymbol *Target = Mang->getSymbol(GV);
938
939       if (I->hasExternalLinkage() || !MAI->getWeakRefDirective())
940         OutStreamer.EmitSymbolAttribute(Name, MCSA_Global);
941       else if (I->hasWeakLinkage())
942         OutStreamer.EmitSymbolAttribute(Name, MCSA_WeakReference);
943       else
944         assert(I->hasLocalLinkage() && "Invalid alias linkage");
945
946       EmitVisibility(Name, I->getVisibility());
947
948       // Emit the directives as assignments aka .set:
949       OutStreamer.EmitAssignment(Name,
950                                  MCSymbolRefExpr::Create(Target, OutContext));
951     }
952   }
953
954   GCModuleInfo *MI = getAnalysisIfAvailable<GCModuleInfo>();
955   assert(MI && "AsmPrinter didn't require GCModuleInfo?");
956   for (GCModuleInfo::iterator I = MI->end(), E = MI->begin(); I != E; )
957     if (GCMetadataPrinter *MP = GetOrCreateGCPrinter(*--I))
958       MP->finishAssembly(*this);
959
960   // If we don't have any trampolines, then we don't require stack memory
961   // to be executable. Some targets have a directive to declare this.
962   Function *InitTrampolineIntrinsic = M.getFunction("llvm.init.trampoline");
963   if (!InitTrampolineIntrinsic || InitTrampolineIntrinsic->use_empty())
964     if (const MCSection *S = MAI->getNonexecutableStackSection(OutContext))
965       OutStreamer.SwitchSection(S);
966
967   // Allow the target to emit any magic that it wants at the end of the file,
968   // after everything else has gone out.
969   EmitEndOfAsmFile(M);
970
971   delete Mang; Mang = 0;
972   MMI = 0;
973
974   OutStreamer.Finish();
975   OutStreamer.reset();
976
977   return false;
978 }
979
980 void AsmPrinter::SetupMachineFunction(MachineFunction &MF) {
981   this->MF = &MF;
982   // Get the function symbol.
983   CurrentFnSym = Mang->getSymbol(MF.getFunction());
984   CurrentFnSymForSize = CurrentFnSym;
985
986   if (isVerbose())
987     LI = &getAnalysis<MachineLoopInfo>();
988 }
989
990 namespace {
991   // SectionCPs - Keep track the alignment, constpool entries per Section.
992   struct SectionCPs {
993     const MCSection *S;
994     unsigned Alignment;
995     SmallVector<unsigned, 4> CPEs;
996     SectionCPs(const MCSection *s, unsigned a) : S(s), Alignment(a) {}
997   };
998 }
999
1000 /// EmitConstantPool - Print to the current output stream assembly
1001 /// representations of the constants in the constant pool MCP. This is
1002 /// used to print out constants which have been "spilled to memory" by
1003 /// the code generator.
1004 ///
1005 void AsmPrinter::EmitConstantPool() {
1006   const MachineConstantPool *MCP = MF->getConstantPool();
1007   const std::vector<MachineConstantPoolEntry> &CP = MCP->getConstants();
1008   if (CP.empty()) return;
1009
1010   // Calculate sections for constant pool entries. We collect entries to go into
1011   // the same section together to reduce amount of section switch statements.
1012   SmallVector<SectionCPs, 4> CPSections;
1013   for (unsigned i = 0, e = CP.size(); i != e; ++i) {
1014     const MachineConstantPoolEntry &CPE = CP[i];
1015     unsigned Align = CPE.getAlignment();
1016
1017     SectionKind Kind;
1018     switch (CPE.getRelocationInfo()) {
1019     default: llvm_unreachable("Unknown section kind");
1020     case 2: Kind = SectionKind::getReadOnlyWithRel(); break;
1021     case 1:
1022       Kind = SectionKind::getReadOnlyWithRelLocal();
1023       break;
1024     case 0:
1025     switch (TM.getDataLayout()->getTypeAllocSize(CPE.getType())) {
1026     case 4:  Kind = SectionKind::getMergeableConst4(); break;
1027     case 8:  Kind = SectionKind::getMergeableConst8(); break;
1028     case 16: Kind = SectionKind::getMergeableConst16();break;
1029     default: Kind = SectionKind::getMergeableConst(); break;
1030     }
1031     }
1032
1033     const MCSection *S = getObjFileLowering().getSectionForConstant(Kind);
1034
1035     // The number of sections are small, just do a linear search from the
1036     // last section to the first.
1037     bool Found = false;
1038     unsigned SecIdx = CPSections.size();
1039     while (SecIdx != 0) {
1040       if (CPSections[--SecIdx].S == S) {
1041         Found = true;
1042         break;
1043       }
1044     }
1045     if (!Found) {
1046       SecIdx = CPSections.size();
1047       CPSections.push_back(SectionCPs(S, Align));
1048     }
1049
1050     if (Align > CPSections[SecIdx].Alignment)
1051       CPSections[SecIdx].Alignment = Align;
1052     CPSections[SecIdx].CPEs.push_back(i);
1053   }
1054
1055   // Now print stuff into the calculated sections.
1056   for (unsigned i = 0, e = CPSections.size(); i != e; ++i) {
1057     OutStreamer.SwitchSection(CPSections[i].S);
1058     EmitAlignment(Log2_32(CPSections[i].Alignment));
1059
1060     unsigned Offset = 0;
1061     for (unsigned j = 0, ee = CPSections[i].CPEs.size(); j != ee; ++j) {
1062       unsigned CPI = CPSections[i].CPEs[j];
1063       MachineConstantPoolEntry CPE = CP[CPI];
1064
1065       // Emit inter-object padding for alignment.
1066       unsigned AlignMask = CPE.getAlignment() - 1;
1067       unsigned NewOffset = (Offset + AlignMask) & ~AlignMask;
1068       OutStreamer.EmitZeros(NewOffset - Offset);
1069
1070       Type *Ty = CPE.getType();
1071       Offset = NewOffset + TM.getDataLayout()->getTypeAllocSize(Ty);
1072       OutStreamer.EmitLabel(GetCPISymbol(CPI));
1073
1074       if (CPE.isMachineConstantPoolEntry())
1075         EmitMachineConstantPoolValue(CPE.Val.MachineCPVal);
1076       else
1077         EmitGlobalConstant(CPE.Val.ConstVal);
1078     }
1079   }
1080 }
1081
1082 /// EmitJumpTableInfo - Print assembly representations of the jump tables used
1083 /// by the current function to the current output stream.
1084 ///
1085 void AsmPrinter::EmitJumpTableInfo() {
1086   const MachineJumpTableInfo *MJTI = MF->getJumpTableInfo();
1087   if (MJTI == 0) return;
1088   if (MJTI->getEntryKind() == MachineJumpTableInfo::EK_Inline) return;
1089   const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
1090   if (JT.empty()) return;
1091
1092   // Pick the directive to use to print the jump table entries, and switch to
1093   // the appropriate section.
1094   const Function *F = MF->getFunction();
1095   bool JTInDiffSection = false;
1096   if (// In PIC mode, we need to emit the jump table to the same section as the
1097       // function body itself, otherwise the label differences won't make sense.
1098       // FIXME: Need a better predicate for this: what about custom entries?
1099       MJTI->getEntryKind() == MachineJumpTableInfo::EK_LabelDifference32 ||
1100       // We should also do if the section name is NULL or function is declared
1101       // in discardable section
1102       // FIXME: this isn't the right predicate, should be based on the MCSection
1103       // for the function.
1104       F->isWeakForLinker()) {
1105     OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F,Mang,TM));
1106   } else {
1107     // Otherwise, drop it in the readonly section.
1108     const MCSection *ReadOnlySection =
1109       getObjFileLowering().getSectionForConstant(SectionKind::getReadOnly());
1110     OutStreamer.SwitchSection(ReadOnlySection);
1111     JTInDiffSection = true;
1112   }
1113
1114   EmitAlignment(Log2_32(MJTI->getEntryAlignment(*TM.getDataLayout())));
1115
1116   // Jump tables in code sections are marked with a data_region directive
1117   // where that's supported.
1118   if (!JTInDiffSection)
1119     OutStreamer.EmitDataRegion(MCDR_DataRegionJT32);
1120
1121   for (unsigned JTI = 0, e = JT.size(); JTI != e; ++JTI) {
1122     const std::vector<MachineBasicBlock*> &JTBBs = JT[JTI].MBBs;
1123
1124     // If this jump table was deleted, ignore it.
1125     if (JTBBs.empty()) continue;
1126
1127     // For the EK_LabelDifference32 entry, if the target supports .set, emit a
1128     // .set directive for each unique entry.  This reduces the number of
1129     // relocations the assembler will generate for the jump table.
1130     if (MJTI->getEntryKind() == MachineJumpTableInfo::EK_LabelDifference32 &&
1131         MAI->hasSetDirective()) {
1132       SmallPtrSet<const MachineBasicBlock*, 16> EmittedSets;
1133       const TargetLowering *TLI = TM.getTargetLowering();
1134       const MCExpr *Base = TLI->getPICJumpTableRelocBaseExpr(MF,JTI,OutContext);
1135       for (unsigned ii = 0, ee = JTBBs.size(); ii != ee; ++ii) {
1136         const MachineBasicBlock *MBB = JTBBs[ii];
1137         if (!EmittedSets.insert(MBB)) continue;
1138
1139         // .set LJTSet, LBB32-base
1140         const MCExpr *LHS =
1141           MCSymbolRefExpr::Create(MBB->getSymbol(), OutContext);
1142         OutStreamer.EmitAssignment(GetJTSetSymbol(JTI, MBB->getNumber()),
1143                                 MCBinaryExpr::CreateSub(LHS, Base, OutContext));
1144       }
1145     }
1146
1147     // On some targets (e.g. Darwin) we want to emit two consecutive labels
1148     // before each jump table.  The first label is never referenced, but tells
1149     // the assembler and linker the extents of the jump table object.  The
1150     // second label is actually referenced by the code.
1151     if (JTInDiffSection && MAI->getLinkerPrivateGlobalPrefix()[0])
1152       // FIXME: This doesn't have to have any specific name, just any randomly
1153       // named and numbered 'l' label would work.  Simplify GetJTISymbol.
1154       OutStreamer.EmitLabel(GetJTISymbol(JTI, true));
1155
1156     OutStreamer.EmitLabel(GetJTISymbol(JTI));
1157
1158     for (unsigned ii = 0, ee = JTBBs.size(); ii != ee; ++ii)
1159       EmitJumpTableEntry(MJTI, JTBBs[ii], JTI);
1160   }
1161   if (!JTInDiffSection)
1162     OutStreamer.EmitDataRegion(MCDR_DataRegionEnd);
1163 }
1164
1165 /// EmitJumpTableEntry - Emit a jump table entry for the specified MBB to the
1166 /// current stream.
1167 void AsmPrinter::EmitJumpTableEntry(const MachineJumpTableInfo *MJTI,
1168                                     const MachineBasicBlock *MBB,
1169                                     unsigned UID) const {
1170   assert(MBB && MBB->getNumber() >= 0 && "Invalid basic block");
1171   const MCExpr *Value = 0;
1172   switch (MJTI->getEntryKind()) {
1173   case MachineJumpTableInfo::EK_Inline:
1174     llvm_unreachable("Cannot emit EK_Inline jump table entry");
1175   case MachineJumpTableInfo::EK_Custom32:
1176     Value = TM.getTargetLowering()->LowerCustomJumpTableEntry(MJTI, MBB, UID,
1177                                                               OutContext);
1178     break;
1179   case MachineJumpTableInfo::EK_BlockAddress:
1180     // EK_BlockAddress - Each entry is a plain address of block, e.g.:
1181     //     .word LBB123
1182     Value = MCSymbolRefExpr::Create(MBB->getSymbol(), OutContext);
1183     break;
1184   case MachineJumpTableInfo::EK_GPRel32BlockAddress: {
1185     // EK_GPRel32BlockAddress - Each entry is an address of block, encoded
1186     // with a relocation as gp-relative, e.g.:
1187     //     .gprel32 LBB123
1188     MCSymbol *MBBSym = MBB->getSymbol();
1189     OutStreamer.EmitGPRel32Value(MCSymbolRefExpr::Create(MBBSym, OutContext));
1190     return;
1191   }
1192
1193   case MachineJumpTableInfo::EK_GPRel64BlockAddress: {
1194     // EK_GPRel64BlockAddress - Each entry is an address of block, encoded
1195     // with a relocation as gp-relative, e.g.:
1196     //     .gpdword LBB123
1197     MCSymbol *MBBSym = MBB->getSymbol();
1198     OutStreamer.EmitGPRel64Value(MCSymbolRefExpr::Create(MBBSym, OutContext));
1199     return;
1200   }
1201
1202   case MachineJumpTableInfo::EK_LabelDifference32: {
1203     // EK_LabelDifference32 - Each entry is the address of the block minus
1204     // the address of the jump table.  This is used for PIC jump tables where
1205     // gprel32 is not supported.  e.g.:
1206     //      .word LBB123 - LJTI1_2
1207     // If the .set directive is supported, this is emitted as:
1208     //      .set L4_5_set_123, LBB123 - LJTI1_2
1209     //      .word L4_5_set_123
1210
1211     // If we have emitted set directives for the jump table entries, print
1212     // them rather than the entries themselves.  If we're emitting PIC, then
1213     // emit the table entries as differences between two text section labels.
1214     if (MAI->hasSetDirective()) {
1215       // If we used .set, reference the .set's symbol.
1216       Value = MCSymbolRefExpr::Create(GetJTSetSymbol(UID, MBB->getNumber()),
1217                                       OutContext);
1218       break;
1219     }
1220     // Otherwise, use the difference as the jump table entry.
1221     Value = MCSymbolRefExpr::Create(MBB->getSymbol(), OutContext);
1222     const MCExpr *JTI = MCSymbolRefExpr::Create(GetJTISymbol(UID), OutContext);
1223     Value = MCBinaryExpr::CreateSub(Value, JTI, OutContext);
1224     break;
1225   }
1226   }
1227
1228   assert(Value && "Unknown entry kind!");
1229
1230   unsigned EntrySize = MJTI->getEntrySize(*TM.getDataLayout());
1231   OutStreamer.EmitValue(Value, EntrySize);
1232 }
1233
1234
1235 /// EmitSpecialLLVMGlobal - Check to see if the specified global is a
1236 /// special global used by LLVM.  If so, emit it and return true, otherwise
1237 /// do nothing and return false.
1238 bool AsmPrinter::EmitSpecialLLVMGlobal(const GlobalVariable *GV) {
1239   if (GV->getName() == "llvm.used") {
1240     if (MAI->hasNoDeadStrip())    // No need to emit this at all.
1241       EmitLLVMUsedList(cast<ConstantArray>(GV->getInitializer()));
1242     return true;
1243   }
1244
1245   // Ignore debug and non-emitted data.  This handles llvm.compiler.used.
1246   if (GV->getSection() == "llvm.metadata" ||
1247       GV->hasAvailableExternallyLinkage())
1248     return true;
1249
1250   if (!GV->hasAppendingLinkage()) return false;
1251
1252   assert(GV->hasInitializer() && "Not a special LLVM global!");
1253
1254   if (GV->getName() == "llvm.global_ctors") {
1255     EmitXXStructorList(GV->getInitializer(), /* isCtor */ true);
1256
1257     if (TM.getRelocationModel() == Reloc::Static &&
1258         MAI->hasStaticCtorDtorReferenceInStaticMode()) {
1259       StringRef Sym(".constructors_used");
1260       OutStreamer.EmitSymbolAttribute(OutContext.GetOrCreateSymbol(Sym),
1261                                       MCSA_Reference);
1262     }
1263     return true;
1264   }
1265
1266   if (GV->getName() == "llvm.global_dtors") {
1267     EmitXXStructorList(GV->getInitializer(), /* isCtor */ false);
1268
1269     if (TM.getRelocationModel() == Reloc::Static &&
1270         MAI->hasStaticCtorDtorReferenceInStaticMode()) {
1271       StringRef Sym(".destructors_used");
1272       OutStreamer.EmitSymbolAttribute(OutContext.GetOrCreateSymbol(Sym),
1273                                       MCSA_Reference);
1274     }
1275     return true;
1276   }
1277
1278   return false;
1279 }
1280
1281 /// EmitLLVMUsedList - For targets that define a MAI::UsedDirective, mark each
1282 /// global in the specified llvm.used list for which emitUsedDirectiveFor
1283 /// is true, as being used with this directive.
1284 void AsmPrinter::EmitLLVMUsedList(const ConstantArray *InitList) {
1285   // Should be an array of 'i8*'.
1286   for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i) {
1287     const GlobalValue *GV =
1288       dyn_cast<GlobalValue>(InitList->getOperand(i)->stripPointerCasts());
1289     if (GV && getObjFileLowering().shouldEmitUsedDirectiveFor(GV, Mang))
1290       OutStreamer.EmitSymbolAttribute(Mang->getSymbol(GV), MCSA_NoDeadStrip);
1291   }
1292 }
1293
1294 typedef std::pair<unsigned, Constant*> Structor;
1295
1296 static bool priority_order(const Structor& lhs, const Structor& rhs) {
1297   return lhs.first < rhs.first;
1298 }
1299
1300 /// EmitXXStructorList - Emit the ctor or dtor list taking into account the init
1301 /// priority.
1302 void AsmPrinter::EmitXXStructorList(const Constant *List, bool isCtor) {
1303   // Should be an array of '{ int, void ()* }' structs.  The first value is the
1304   // init priority.
1305   if (!isa<ConstantArray>(List)) return;
1306
1307   // Sanity check the structors list.
1308   const ConstantArray *InitList = dyn_cast<ConstantArray>(List);
1309   if (!InitList) return; // Not an array!
1310   StructType *ETy = dyn_cast<StructType>(InitList->getType()->getElementType());
1311   if (!ETy || ETy->getNumElements() != 2) return; // Not an array of pairs!
1312   if (!isa<IntegerType>(ETy->getTypeAtIndex(0U)) ||
1313       !isa<PointerType>(ETy->getTypeAtIndex(1U))) return; // Not (int, ptr).
1314
1315   // Gather the structors in a form that's convenient for sorting by priority.
1316   SmallVector<Structor, 8> Structors;
1317   for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i) {
1318     ConstantStruct *CS = dyn_cast<ConstantStruct>(InitList->getOperand(i));
1319     if (!CS) continue; // Malformed.
1320     if (CS->getOperand(1)->isNullValue())
1321       break;  // Found a null terminator, skip the rest.
1322     ConstantInt *Priority = dyn_cast<ConstantInt>(CS->getOperand(0));
1323     if (!Priority) continue; // Malformed.
1324     Structors.push_back(std::make_pair(Priority->getLimitedValue(65535),
1325                                        CS->getOperand(1)));
1326   }
1327
1328   // Emit the function pointers in the target-specific order
1329   const DataLayout *TD = TM.getDataLayout();
1330   unsigned Align = Log2_32(TD->getPointerPrefAlignment());
1331   std::stable_sort(Structors.begin(), Structors.end(), priority_order);
1332   for (unsigned i = 0, e = Structors.size(); i != e; ++i) {
1333     const MCSection *OutputSection =
1334       (isCtor ?
1335        getObjFileLowering().getStaticCtorSection(Structors[i].first) :
1336        getObjFileLowering().getStaticDtorSection(Structors[i].first));
1337     OutStreamer.SwitchSection(OutputSection);
1338     if (OutStreamer.getCurrentSection() != OutStreamer.getPreviousSection())
1339       EmitAlignment(Align);
1340     EmitXXStructor(Structors[i].second);
1341   }
1342 }
1343
1344 //===--------------------------------------------------------------------===//
1345 // Emission and print routines
1346 //
1347
1348 /// EmitInt8 - Emit a byte directive and value.
1349 ///
1350 void AsmPrinter::EmitInt8(int Value) const {
1351   OutStreamer.EmitIntValue(Value, 1);
1352 }
1353
1354 /// EmitInt16 - Emit a short directive and value.
1355 ///
1356 void AsmPrinter::EmitInt16(int Value) const {
1357   OutStreamer.EmitIntValue(Value, 2);
1358 }
1359
1360 /// EmitInt32 - Emit a long directive and value.
1361 ///
1362 void AsmPrinter::EmitInt32(int Value) const {
1363   OutStreamer.EmitIntValue(Value, 4);
1364 }
1365
1366 /// EmitLabelDifference - Emit something like ".long Hi-Lo" where the size
1367 /// in bytes of the directive is specified by Size and Hi/Lo specify the
1368 /// labels.  This implicitly uses .set if it is available.
1369 void AsmPrinter::EmitLabelDifference(const MCSymbol *Hi, const MCSymbol *Lo,
1370                                      unsigned Size) const {
1371   // Get the Hi-Lo expression.
1372   const MCExpr *Diff =
1373     MCBinaryExpr::CreateSub(MCSymbolRefExpr::Create(Hi, OutContext),
1374                             MCSymbolRefExpr::Create(Lo, OutContext),
1375                             OutContext);
1376
1377   if (!MAI->hasSetDirective()) {
1378     OutStreamer.EmitValue(Diff, Size);
1379     return;
1380   }
1381
1382   // Otherwise, emit with .set (aka assignment).
1383   MCSymbol *SetLabel = GetTempSymbol("set", SetCounter++);
1384   OutStreamer.EmitAssignment(SetLabel, Diff);
1385   OutStreamer.EmitSymbolValue(SetLabel, Size);
1386 }
1387
1388 /// EmitLabelOffsetDifference - Emit something like ".long Hi+Offset-Lo"
1389 /// where the size in bytes of the directive is specified by Size and Hi/Lo
1390 /// specify the labels.  This implicitly uses .set if it is available.
1391 void AsmPrinter::EmitLabelOffsetDifference(const MCSymbol *Hi, uint64_t Offset,
1392                                            const MCSymbol *Lo, unsigned Size)
1393   const {
1394
1395   // Emit Hi+Offset - Lo
1396   // Get the Hi+Offset expression.
1397   const MCExpr *Plus =
1398     MCBinaryExpr::CreateAdd(MCSymbolRefExpr::Create(Hi, OutContext),
1399                             MCConstantExpr::Create(Offset, OutContext),
1400                             OutContext);
1401
1402   // Get the Hi+Offset-Lo expression.
1403   const MCExpr *Diff =
1404     MCBinaryExpr::CreateSub(Plus,
1405                             MCSymbolRefExpr::Create(Lo, OutContext),
1406                             OutContext);
1407
1408   if (!MAI->hasSetDirective())
1409     OutStreamer.EmitValue(Diff, 4);
1410   else {
1411     // Otherwise, emit with .set (aka assignment).
1412     MCSymbol *SetLabel = GetTempSymbol("set", SetCounter++);
1413     OutStreamer.EmitAssignment(SetLabel, Diff);
1414     OutStreamer.EmitSymbolValue(SetLabel, 4);
1415   }
1416 }
1417
1418 /// EmitLabelPlusOffset - Emit something like ".long Label+Offset"
1419 /// where the size in bytes of the directive is specified by Size and Label
1420 /// specifies the label.  This implicitly uses .set if it is available.
1421 void AsmPrinter::EmitLabelPlusOffset(const MCSymbol *Label, uint64_t Offset,
1422                                       unsigned Size)
1423   const {
1424
1425   // Emit Label+Offset (or just Label if Offset is zero)
1426   const MCExpr *Expr = MCSymbolRefExpr::Create(Label, OutContext);
1427   if (Offset)
1428     Expr = MCBinaryExpr::CreateAdd(Expr,
1429                                    MCConstantExpr::Create(Offset, OutContext),
1430                                    OutContext);
1431
1432   OutStreamer.EmitValue(Expr, Size);
1433 }
1434
1435
1436 //===----------------------------------------------------------------------===//
1437
1438 // EmitAlignment - Emit an alignment directive to the specified power of
1439 // two boundary.  For example, if you pass in 3 here, you will get an 8
1440 // byte alignment.  If a global value is specified, and if that global has
1441 // an explicit alignment requested, it will override the alignment request
1442 // if required for correctness.
1443 //
1444 void AsmPrinter::EmitAlignment(unsigned NumBits, const GlobalValue *GV) const {
1445   if (GV) NumBits = getGVAlignmentLog2(GV, *TM.getDataLayout(), NumBits);
1446
1447   if (NumBits == 0) return;   // 1-byte aligned: no need to emit alignment.
1448
1449   if (getCurrentSection()->getKind().isText())
1450     OutStreamer.EmitCodeAlignment(1 << NumBits);
1451   else
1452     OutStreamer.EmitValueToAlignment(1 << NumBits, 0, 1, 0);
1453 }
1454
1455 //===----------------------------------------------------------------------===//
1456 // Constant emission.
1457 //===----------------------------------------------------------------------===//
1458
1459 /// lowerConstant - Lower the specified LLVM Constant to an MCExpr.
1460 ///
1461 static const MCExpr *lowerConstant(const Constant *CV, AsmPrinter &AP) {
1462   MCContext &Ctx = AP.OutContext;
1463
1464   if (CV->isNullValue() || isa<UndefValue>(CV))
1465     return MCConstantExpr::Create(0, Ctx);
1466
1467   if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV))
1468     return MCConstantExpr::Create(CI->getZExtValue(), Ctx);
1469
1470   if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV))
1471     return MCSymbolRefExpr::Create(AP.Mang->getSymbol(GV), Ctx);
1472
1473   if (const BlockAddress *BA = dyn_cast<BlockAddress>(CV))
1474     return MCSymbolRefExpr::Create(AP.GetBlockAddressSymbol(BA), Ctx);
1475
1476   const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV);
1477   if (CE == 0) {
1478     llvm_unreachable("Unknown constant value to lower!");
1479   }
1480
1481   switch (CE->getOpcode()) {
1482   default:
1483     // If the code isn't optimized, there may be outstanding folding
1484     // opportunities. Attempt to fold the expression using DataLayout as a
1485     // last resort before giving up.
1486     if (Constant *C =
1487           ConstantFoldConstantExpression(CE, AP.TM.getDataLayout()))
1488       if (C != CE)
1489         return lowerConstant(C, AP);
1490
1491     // Otherwise report the problem to the user.
1492     {
1493       std::string S;
1494       raw_string_ostream OS(S);
1495       OS << "Unsupported expression in static initializer: ";
1496       WriteAsOperand(OS, CE, /*PrintType=*/false,
1497                      !AP.MF ? 0 : AP.MF->getFunction()->getParent());
1498       report_fatal_error(OS.str());
1499     }
1500   case Instruction::GetElementPtr: {
1501     const DataLayout &TD = *AP.TM.getDataLayout();
1502     // Generate a symbolic expression for the byte address
1503     APInt OffsetAI(TD.getPointerSizeInBits(), 0);
1504     cast<GEPOperator>(CE)->accumulateConstantOffset(TD, OffsetAI);
1505
1506     const MCExpr *Base = lowerConstant(CE->getOperand(0), AP);
1507     if (!OffsetAI)
1508       return Base;
1509
1510     int64_t Offset = OffsetAI.getSExtValue();
1511     return MCBinaryExpr::CreateAdd(Base, MCConstantExpr::Create(Offset, Ctx),
1512                                    Ctx);
1513   }
1514
1515   case Instruction::Trunc:
1516     // We emit the value and depend on the assembler to truncate the generated
1517     // expression properly.  This is important for differences between
1518     // blockaddress labels.  Since the two labels are in the same function, it
1519     // is reasonable to treat their delta as a 32-bit value.
1520     // FALL THROUGH.
1521   case Instruction::BitCast:
1522     return lowerConstant(CE->getOperand(0), AP);
1523
1524   case Instruction::IntToPtr: {
1525     const DataLayout &TD = *AP.TM.getDataLayout();
1526     // Handle casts to pointers by changing them into casts to the appropriate
1527     // integer type.  This promotes constant folding and simplifies this code.
1528     Constant *Op = CE->getOperand(0);
1529     Op = ConstantExpr::getIntegerCast(Op, TD.getIntPtrType(CV->getContext()),
1530                                       false/*ZExt*/);
1531     return lowerConstant(Op, AP);
1532   }
1533
1534   case Instruction::PtrToInt: {
1535     const DataLayout &TD = *AP.TM.getDataLayout();
1536     // Support only foldable casts to/from pointers that can be eliminated by
1537     // changing the pointer to the appropriately sized integer type.
1538     Constant *Op = CE->getOperand(0);
1539     Type *Ty = CE->getType();
1540
1541     const MCExpr *OpExpr = lowerConstant(Op, AP);
1542
1543     // We can emit the pointer value into this slot if the slot is an
1544     // integer slot equal to the size of the pointer.
1545     if (TD.getTypeAllocSize(Ty) == TD.getTypeAllocSize(Op->getType()))
1546       return OpExpr;
1547
1548     // Otherwise the pointer is smaller than the resultant integer, mask off
1549     // the high bits so we are sure to get a proper truncation if the input is
1550     // a constant expr.
1551     unsigned InBits = TD.getTypeAllocSizeInBits(Op->getType());
1552     const MCExpr *MaskExpr = MCConstantExpr::Create(~0ULL >> (64-InBits), Ctx);
1553     return MCBinaryExpr::CreateAnd(OpExpr, MaskExpr, Ctx);
1554   }
1555
1556   // The MC library also has a right-shift operator, but it isn't consistently
1557   // signed or unsigned between different targets.
1558   case Instruction::Add:
1559   case Instruction::Sub:
1560   case Instruction::Mul:
1561   case Instruction::SDiv:
1562   case Instruction::SRem:
1563   case Instruction::Shl:
1564   case Instruction::And:
1565   case Instruction::Or:
1566   case Instruction::Xor: {
1567     const MCExpr *LHS = lowerConstant(CE->getOperand(0), AP);
1568     const MCExpr *RHS = lowerConstant(CE->getOperand(1), AP);
1569     switch (CE->getOpcode()) {
1570     default: llvm_unreachable("Unknown binary operator constant cast expr");
1571     case Instruction::Add: return MCBinaryExpr::CreateAdd(LHS, RHS, Ctx);
1572     case Instruction::Sub: return MCBinaryExpr::CreateSub(LHS, RHS, Ctx);
1573     case Instruction::Mul: return MCBinaryExpr::CreateMul(LHS, RHS, Ctx);
1574     case Instruction::SDiv: return MCBinaryExpr::CreateDiv(LHS, RHS, Ctx);
1575     case Instruction::SRem: return MCBinaryExpr::CreateMod(LHS, RHS, Ctx);
1576     case Instruction::Shl: return MCBinaryExpr::CreateShl(LHS, RHS, Ctx);
1577     case Instruction::And: return MCBinaryExpr::CreateAnd(LHS, RHS, Ctx);
1578     case Instruction::Or:  return MCBinaryExpr::CreateOr (LHS, RHS, Ctx);
1579     case Instruction::Xor: return MCBinaryExpr::CreateXor(LHS, RHS, Ctx);
1580     }
1581   }
1582   }
1583 }
1584
1585 static void emitGlobalConstantImpl(const Constant *C, unsigned AddrSpace,
1586                                    AsmPrinter &AP);
1587
1588 /// isRepeatedByteSequence - Determine whether the given value is
1589 /// composed of a repeated sequence of identical bytes and return the
1590 /// byte value.  If it is not a repeated sequence, return -1.
1591 static int isRepeatedByteSequence(const ConstantDataSequential *V) {
1592   StringRef Data = V->getRawDataValues();
1593   assert(!Data.empty() && "Empty aggregates should be CAZ node");
1594   char C = Data[0];
1595   for (unsigned i = 1, e = Data.size(); i != e; ++i)
1596     if (Data[i] != C) return -1;
1597   return static_cast<uint8_t>(C); // Ensure 255 is not returned as -1.
1598 }
1599
1600
1601 /// isRepeatedByteSequence - Determine whether the given value is
1602 /// composed of a repeated sequence of identical bytes and return the
1603 /// byte value.  If it is not a repeated sequence, return -1.
1604 static int isRepeatedByteSequence(const Value *V, TargetMachine &TM) {
1605
1606   if (const ConstantInt *CI = dyn_cast<ConstantInt>(V)) {
1607     if (CI->getBitWidth() > 64) return -1;
1608
1609     uint64_t Size = TM.getDataLayout()->getTypeAllocSize(V->getType());
1610     uint64_t Value = CI->getZExtValue();
1611
1612     // Make sure the constant is at least 8 bits long and has a power
1613     // of 2 bit width.  This guarantees the constant bit width is
1614     // always a multiple of 8 bits, avoiding issues with padding out
1615     // to Size and other such corner cases.
1616     if (CI->getBitWidth() < 8 || !isPowerOf2_64(CI->getBitWidth())) return -1;
1617
1618     uint8_t Byte = static_cast<uint8_t>(Value);
1619
1620     for (unsigned i = 1; i < Size; ++i) {
1621       Value >>= 8;
1622       if (static_cast<uint8_t>(Value) != Byte) return -1;
1623     }
1624     return Byte;
1625   }
1626   if (const ConstantArray *CA = dyn_cast<ConstantArray>(V)) {
1627     // Make sure all array elements are sequences of the same repeated
1628     // byte.
1629     assert(CA->getNumOperands() != 0 && "Should be a CAZ");
1630     int Byte = isRepeatedByteSequence(CA->getOperand(0), TM);
1631     if (Byte == -1) return -1;
1632
1633     for (unsigned i = 1, e = CA->getNumOperands(); i != e; ++i) {
1634       int ThisByte = isRepeatedByteSequence(CA->getOperand(i), TM);
1635       if (ThisByte == -1) return -1;
1636       if (Byte != ThisByte) return -1;
1637     }
1638     return Byte;
1639   }
1640
1641   if (const ConstantDataSequential *CDS = dyn_cast<ConstantDataSequential>(V))
1642     return isRepeatedByteSequence(CDS);
1643
1644   return -1;
1645 }
1646
1647 static void emitGlobalConstantDataSequential(const ConstantDataSequential *CDS,
1648                                              unsigned AddrSpace,AsmPrinter &AP){
1649
1650   // See if we can aggregate this into a .fill, if so, emit it as such.
1651   int Value = isRepeatedByteSequence(CDS, AP.TM);
1652   if (Value != -1) {
1653     uint64_t Bytes = AP.TM.getDataLayout()->getTypeAllocSize(CDS->getType());
1654     // Don't emit a 1-byte object as a .fill.
1655     if (Bytes > 1)
1656       return AP.OutStreamer.EmitFill(Bytes, Value, AddrSpace);
1657   }
1658
1659   // If this can be emitted with .ascii/.asciz, emit it as such.
1660   if (CDS->isString())
1661     return AP.OutStreamer.EmitBytes(CDS->getAsString(), AddrSpace);
1662
1663   // Otherwise, emit the values in successive locations.
1664   unsigned ElementByteSize = CDS->getElementByteSize();
1665   if (isa<IntegerType>(CDS->getElementType())) {
1666     for (unsigned i = 0, e = CDS->getNumElements(); i != e; ++i) {
1667       if (AP.isVerbose())
1668         AP.OutStreamer.GetCommentOS() << format("0x%" PRIx64 "\n",
1669                                                 CDS->getElementAsInteger(i));
1670       AP.OutStreamer.EmitIntValue(CDS->getElementAsInteger(i),
1671                                   ElementByteSize, AddrSpace);
1672     }
1673   } else if (ElementByteSize == 4) {
1674     // FP Constants are printed as integer constants to avoid losing
1675     // precision.
1676     assert(CDS->getElementType()->isFloatTy());
1677     for (unsigned i = 0, e = CDS->getNumElements(); i != e; ++i) {
1678       union {
1679         float F;
1680         uint32_t I;
1681       };
1682
1683       F = CDS->getElementAsFloat(i);
1684       if (AP.isVerbose())
1685         AP.OutStreamer.GetCommentOS() << "float " << F << '\n';
1686       AP.OutStreamer.EmitIntValue(I, 4, AddrSpace);
1687     }
1688   } else {
1689     assert(CDS->getElementType()->isDoubleTy());
1690     for (unsigned i = 0, e = CDS->getNumElements(); i != e; ++i) {
1691       union {
1692         double F;
1693         uint64_t I;
1694       };
1695
1696       F = CDS->getElementAsDouble(i);
1697       if (AP.isVerbose())
1698         AP.OutStreamer.GetCommentOS() << "double " << F << '\n';
1699       AP.OutStreamer.EmitIntValue(I, 8, AddrSpace);
1700     }
1701   }
1702
1703   const DataLayout &TD = *AP.TM.getDataLayout();
1704   unsigned Size = TD.getTypeAllocSize(CDS->getType());
1705   unsigned EmittedSize = TD.getTypeAllocSize(CDS->getType()->getElementType()) *
1706                         CDS->getNumElements();
1707   if (unsigned Padding = Size - EmittedSize)
1708     AP.OutStreamer.EmitZeros(Padding, AddrSpace);
1709
1710 }
1711
1712 static void emitGlobalConstantArray(const ConstantArray *CA, unsigned AddrSpace,
1713                                     AsmPrinter &AP) {
1714   // See if we can aggregate some values.  Make sure it can be
1715   // represented as a series of bytes of the constant value.
1716   int Value = isRepeatedByteSequence(CA, AP.TM);
1717
1718   if (Value != -1) {
1719     uint64_t Bytes = AP.TM.getDataLayout()->getTypeAllocSize(CA->getType());
1720     AP.OutStreamer.EmitFill(Bytes, Value, AddrSpace);
1721   }
1722   else {
1723     for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i)
1724       emitGlobalConstantImpl(CA->getOperand(i), AddrSpace, AP);
1725   }
1726 }
1727
1728 static void emitGlobalConstantVector(const ConstantVector *CV,
1729                                      unsigned AddrSpace, AsmPrinter &AP) {
1730   for (unsigned i = 0, e = CV->getType()->getNumElements(); i != e; ++i)
1731     emitGlobalConstantImpl(CV->getOperand(i), AddrSpace, AP);
1732
1733   const DataLayout &TD = *AP.TM.getDataLayout();
1734   unsigned Size = TD.getTypeAllocSize(CV->getType());
1735   unsigned EmittedSize = TD.getTypeAllocSize(CV->getType()->getElementType()) *
1736                          CV->getType()->getNumElements();
1737   if (unsigned Padding = Size - EmittedSize)
1738     AP.OutStreamer.EmitZeros(Padding, AddrSpace);
1739 }
1740
1741 static void emitGlobalConstantStruct(const ConstantStruct *CS,
1742                                      unsigned AddrSpace, AsmPrinter &AP) {
1743   // Print the fields in successive locations. Pad to align if needed!
1744   const DataLayout *TD = AP.TM.getDataLayout();
1745   unsigned Size = TD->getTypeAllocSize(CS->getType());
1746   const StructLayout *Layout = TD->getStructLayout(CS->getType());
1747   uint64_t SizeSoFar = 0;
1748   for (unsigned i = 0, e = CS->getNumOperands(); i != e; ++i) {
1749     const Constant *Field = CS->getOperand(i);
1750
1751     // Check if padding is needed and insert one or more 0s.
1752     uint64_t FieldSize = TD->getTypeAllocSize(Field->getType());
1753     uint64_t PadSize = ((i == e-1 ? Size : Layout->getElementOffset(i+1))
1754                         - Layout->getElementOffset(i)) - FieldSize;
1755     SizeSoFar += FieldSize + PadSize;
1756
1757     // Now print the actual field value.
1758     emitGlobalConstantImpl(Field, AddrSpace, AP);
1759
1760     // Insert padding - this may include padding to increase the size of the
1761     // current field up to the ABI size (if the struct is not packed) as well
1762     // as padding to ensure that the next field starts at the right offset.
1763     AP.OutStreamer.EmitZeros(PadSize, AddrSpace);
1764   }
1765   assert(SizeSoFar == Layout->getSizeInBytes() &&
1766          "Layout of constant struct may be incorrect!");
1767 }
1768
1769 static void emitGlobalConstantFP(const ConstantFP *CFP, unsigned AddrSpace,
1770                                  AsmPrinter &AP) {
1771   APInt API = CFP->getValueAPF().bitcastToAPInt();
1772
1773   // First print a comment with what we think the original floating-point value
1774   // should have been.
1775   if (AP.isVerbose()) {
1776     SmallString<8> StrVal;
1777     CFP->getValueAPF().toString(StrVal);
1778
1779     CFP->getType()->print(AP.OutStreamer.GetCommentOS());
1780     AP.OutStreamer.GetCommentOS() << ' ' << StrVal << '\n';
1781   }
1782
1783   // Now iterate through the APInt chunks, emitting them in endian-correct
1784   // order, possibly with a smaller chunk at beginning/end (e.g. for x87 80-bit
1785   // floats).
1786   unsigned NumBytes = API.getBitWidth() / 8;
1787   unsigned TrailingBytes = NumBytes % sizeof(uint64_t);
1788   const uint64_t *p = API.getRawData();
1789
1790   // PPC's long double has odd notions of endianness compared to how LLVM
1791   // handles it: p[0] goes first for *big* endian on PPC.
1792   if (AP.TM.getDataLayout()->isBigEndian() != CFP->getType()->isPPC_FP128Ty()) {
1793     int Chunk = API.getNumWords() - 1;
1794
1795     if (TrailingBytes)
1796       AP.OutStreamer.EmitIntValue(p[Chunk--], TrailingBytes, AddrSpace);
1797
1798     for (; Chunk >= 0; --Chunk)
1799       AP.OutStreamer.EmitIntValue(p[Chunk], sizeof(uint64_t), AddrSpace);
1800   } else {
1801     unsigned Chunk;
1802     for (Chunk = 0; Chunk < NumBytes / sizeof(uint64_t); ++Chunk)
1803       AP.OutStreamer.EmitIntValue(p[Chunk], sizeof(uint64_t), AddrSpace);
1804
1805     if (TrailingBytes)
1806       AP.OutStreamer.EmitIntValue(p[Chunk], TrailingBytes, AddrSpace);
1807   }
1808
1809   // Emit the tail padding for the long double.
1810   const DataLayout &TD = *AP.TM.getDataLayout();
1811   AP.OutStreamer.EmitZeros(TD.getTypeAllocSize(CFP->getType()) -
1812                            TD.getTypeStoreSize(CFP->getType()), AddrSpace);
1813 }
1814
1815 static void emitGlobalConstantLargeInt(const ConstantInt *CI,
1816                                        unsigned AddrSpace, AsmPrinter &AP) {
1817   const DataLayout *TD = AP.TM.getDataLayout();
1818   unsigned BitWidth = CI->getBitWidth();
1819
1820   // Copy the value as we may massage the layout for constants whose bit width
1821   // is not a multiple of 64-bits.
1822   APInt Realigned(CI->getValue());
1823   uint64_t ExtraBits = 0;
1824   unsigned ExtraBitsSize = BitWidth & 63;
1825
1826   if (ExtraBitsSize) {
1827     // The bit width of the data is not a multiple of 64-bits.
1828     // The extra bits are expected to be at the end of the chunk of the memory.
1829     // Little endian:
1830     // * Nothing to be done, just record the extra bits to emit.
1831     // Big endian:
1832     // * Record the extra bits to emit.
1833     // * Realign the raw data to emit the chunks of 64-bits.
1834     if (TD->isBigEndian()) {
1835       // Basically the structure of the raw data is a chunk of 64-bits cells:
1836       //    0        1         BitWidth / 64
1837       // [chunk1][chunk2] ... [chunkN].
1838       // The most significant chunk is chunkN and it should be emitted first.
1839       // However, due to the alignment issue chunkN contains useless bits.
1840       // Realign the chunks so that they contain only useless information:
1841       // ExtraBits     0       1       (BitWidth / 64) - 1
1842       //       chu[nk1 chu][nk2 chu] ... [nkN-1 chunkN]
1843       ExtraBits = Realigned.getRawData()[0] &
1844         (((uint64_t)-1) >> (64 - ExtraBitsSize));
1845       Realigned = Realigned.lshr(ExtraBitsSize);
1846     } else
1847       ExtraBits = Realigned.getRawData()[BitWidth / 64];
1848   }
1849
1850   // We don't expect assemblers to support integer data directives
1851   // for more than 64 bits, so we emit the data in at most 64-bit
1852   // quantities at a time.
1853   const uint64_t *RawData = Realigned.getRawData();
1854   for (unsigned i = 0, e = BitWidth / 64; i != e; ++i) {
1855     uint64_t Val = TD->isBigEndian() ? RawData[e - i - 1] : RawData[i];
1856     AP.OutStreamer.EmitIntValue(Val, 8, AddrSpace);
1857   }
1858
1859   if (ExtraBitsSize) {
1860     // Emit the extra bits after the 64-bits chunks.
1861
1862     // Emit a directive that fills the expected size.
1863     uint64_t Size = AP.TM.getDataLayout()->getTypeAllocSize(CI->getType());
1864     Size -= (BitWidth / 64) * 8;
1865     assert(Size && Size * 8 >= ExtraBitsSize &&
1866            (ExtraBits & (((uint64_t)-1) >> (64 - ExtraBitsSize)))
1867            == ExtraBits && "Directive too small for extra bits.");
1868     AP.OutStreamer.EmitIntValue(ExtraBits, Size, AddrSpace);
1869   }
1870 }
1871
1872 static void emitGlobalConstantImpl(const Constant *CV, unsigned AddrSpace,
1873                                    AsmPrinter &AP) {
1874   const DataLayout *TD = AP.TM.getDataLayout();
1875   uint64_t Size = TD->getTypeAllocSize(CV->getType());
1876   if (isa<ConstantAggregateZero>(CV) || isa<UndefValue>(CV))
1877     return AP.OutStreamer.EmitZeros(Size, AddrSpace);
1878
1879   if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
1880     switch (Size) {
1881     case 1:
1882     case 2:
1883     case 4:
1884     case 8:
1885       if (AP.isVerbose())
1886         AP.OutStreamer.GetCommentOS() << format("0x%" PRIx64 "\n",
1887                                                 CI->getZExtValue());
1888       AP.OutStreamer.EmitIntValue(CI->getZExtValue(), Size, AddrSpace);
1889       return;
1890     default:
1891       emitGlobalConstantLargeInt(CI, AddrSpace, AP);
1892       return;
1893     }
1894   }
1895
1896   if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV))
1897     return emitGlobalConstantFP(CFP, AddrSpace, AP);
1898
1899   if (isa<ConstantPointerNull>(CV)) {
1900     AP.OutStreamer.EmitIntValue(0, Size, AddrSpace);
1901     return;
1902   }
1903
1904   if (const ConstantDataSequential *CDS = dyn_cast<ConstantDataSequential>(CV))
1905     return emitGlobalConstantDataSequential(CDS, AddrSpace, AP);
1906
1907   if (const ConstantArray *CVA = dyn_cast<ConstantArray>(CV))
1908     return emitGlobalConstantArray(CVA, AddrSpace, AP);
1909
1910   if (const ConstantStruct *CVS = dyn_cast<ConstantStruct>(CV))
1911     return emitGlobalConstantStruct(CVS, AddrSpace, AP);
1912
1913   if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV)) {
1914     // Look through bitcasts, which might not be able to be MCExpr'ized (e.g. of
1915     // vectors).
1916     if (CE->getOpcode() == Instruction::BitCast)
1917       return emitGlobalConstantImpl(CE->getOperand(0), AddrSpace, AP);
1918
1919     if (Size > 8) {
1920       // If the constant expression's size is greater than 64-bits, then we have
1921       // to emit the value in chunks. Try to constant fold the value and emit it
1922       // that way.
1923       Constant *New = ConstantFoldConstantExpression(CE, TD);
1924       if (New && New != CE)
1925         return emitGlobalConstantImpl(New, AddrSpace, AP);
1926     }
1927   }
1928
1929   if (const ConstantVector *V = dyn_cast<ConstantVector>(CV))
1930     return emitGlobalConstantVector(V, AddrSpace, AP);
1931
1932   // Otherwise, it must be a ConstantExpr.  Lower it to an MCExpr, then emit it
1933   // thread the streamer with EmitValue.
1934   AP.OutStreamer.EmitValue(lowerConstant(CV, AP), Size, AddrSpace);
1935 }
1936
1937 /// EmitGlobalConstant - Print a general LLVM constant to the .s file.
1938 void AsmPrinter::EmitGlobalConstant(const Constant *CV, unsigned AddrSpace) {
1939   uint64_t Size = TM.getDataLayout()->getTypeAllocSize(CV->getType());
1940   if (Size)
1941     emitGlobalConstantImpl(CV, AddrSpace, *this);
1942   else if (MAI->hasSubsectionsViaSymbols()) {
1943     // If the global has zero size, emit a single byte so that two labels don't
1944     // look like they are at the same location.
1945     OutStreamer.EmitIntValue(0, 1, AddrSpace);
1946   }
1947 }
1948
1949 void AsmPrinter::EmitMachineConstantPoolValue(MachineConstantPoolValue *MCPV) {
1950   // Target doesn't support this yet!
1951   llvm_unreachable("Target does not support EmitMachineConstantPoolValue");
1952 }
1953
1954 void AsmPrinter::printOffset(int64_t Offset, raw_ostream &OS) const {
1955   if (Offset > 0)
1956     OS << '+' << Offset;
1957   else if (Offset < 0)
1958     OS << Offset;
1959 }
1960
1961 //===----------------------------------------------------------------------===//
1962 // Symbol Lowering Routines.
1963 //===----------------------------------------------------------------------===//
1964
1965 /// GetTempSymbol - Return the MCSymbol corresponding to the assembler
1966 /// temporary label with the specified stem and unique ID.
1967 MCSymbol *AsmPrinter::GetTempSymbol(StringRef Name, unsigned ID) const {
1968   return OutContext.GetOrCreateSymbol(Twine(MAI->getPrivateGlobalPrefix()) +
1969                                       Name + Twine(ID));
1970 }
1971
1972 /// GetTempSymbol - Return an assembler temporary label with the specified
1973 /// stem.
1974 MCSymbol *AsmPrinter::GetTempSymbol(StringRef Name) const {
1975   return OutContext.GetOrCreateSymbol(Twine(MAI->getPrivateGlobalPrefix())+
1976                                       Name);
1977 }
1978
1979
1980 MCSymbol *AsmPrinter::GetBlockAddressSymbol(const BlockAddress *BA) const {
1981   return MMI->getAddrLabelSymbol(BA->getBasicBlock());
1982 }
1983
1984 MCSymbol *AsmPrinter::GetBlockAddressSymbol(const BasicBlock *BB) const {
1985   return MMI->getAddrLabelSymbol(BB);
1986 }
1987
1988 /// GetCPISymbol - Return the symbol for the specified constant pool entry.
1989 MCSymbol *AsmPrinter::GetCPISymbol(unsigned CPID) const {
1990   return OutContext.GetOrCreateSymbol
1991     (Twine(MAI->getPrivateGlobalPrefix()) + "CPI" + Twine(getFunctionNumber())
1992      + "_" + Twine(CPID));
1993 }
1994
1995 /// GetJTISymbol - Return the symbol for the specified jump table entry.
1996 MCSymbol *AsmPrinter::GetJTISymbol(unsigned JTID, bool isLinkerPrivate) const {
1997   return MF->getJTISymbol(JTID, OutContext, isLinkerPrivate);
1998 }
1999
2000 /// GetJTSetSymbol - Return the symbol for the specified jump table .set
2001 /// FIXME: privatize to AsmPrinter.
2002 MCSymbol *AsmPrinter::GetJTSetSymbol(unsigned UID, unsigned MBBID) const {
2003   return OutContext.GetOrCreateSymbol
2004   (Twine(MAI->getPrivateGlobalPrefix()) + Twine(getFunctionNumber()) + "_" +
2005    Twine(UID) + "_set_" + Twine(MBBID));
2006 }
2007
2008 /// GetSymbolWithGlobalValueBase - Return the MCSymbol for a symbol with
2009 /// global value name as its base, with the specified suffix, and where the
2010 /// symbol is forced to have private linkage if ForcePrivate is true.
2011 MCSymbol *AsmPrinter::GetSymbolWithGlobalValueBase(const GlobalValue *GV,
2012                                                    StringRef Suffix,
2013                                                    bool ForcePrivate) const {
2014   SmallString<60> NameStr;
2015   Mang->getNameWithPrefix(NameStr, GV, ForcePrivate);
2016   NameStr.append(Suffix.begin(), Suffix.end());
2017   return OutContext.GetOrCreateSymbol(NameStr.str());
2018 }
2019
2020 /// GetExternalSymbolSymbol - Return the MCSymbol for the specified
2021 /// ExternalSymbol.
2022 MCSymbol *AsmPrinter::GetExternalSymbolSymbol(StringRef Sym) const {
2023   SmallString<60> NameStr;
2024   Mang->getNameWithPrefix(NameStr, Sym);
2025   return OutContext.GetOrCreateSymbol(NameStr.str());
2026 }
2027
2028
2029
2030 /// PrintParentLoopComment - Print comments about parent loops of this one.
2031 static void PrintParentLoopComment(raw_ostream &OS, const MachineLoop *Loop,
2032                                    unsigned FunctionNumber) {
2033   if (Loop == 0) return;
2034   PrintParentLoopComment(OS, Loop->getParentLoop(), FunctionNumber);
2035   OS.indent(Loop->getLoopDepth()*2)
2036     << "Parent Loop BB" << FunctionNumber << "_"
2037     << Loop->getHeader()->getNumber()
2038     << " Depth=" << Loop->getLoopDepth() << '\n';
2039 }
2040
2041
2042 /// PrintChildLoopComment - Print comments about child loops within
2043 /// the loop for this basic block, with nesting.
2044 static void PrintChildLoopComment(raw_ostream &OS, const MachineLoop *Loop,
2045                                   unsigned FunctionNumber) {
2046   // Add child loop information
2047   for (MachineLoop::iterator CL = Loop->begin(), E = Loop->end();CL != E; ++CL){
2048     OS.indent((*CL)->getLoopDepth()*2)
2049       << "Child Loop BB" << FunctionNumber << "_"
2050       << (*CL)->getHeader()->getNumber() << " Depth " << (*CL)->getLoopDepth()
2051       << '\n';
2052     PrintChildLoopComment(OS, *CL, FunctionNumber);
2053   }
2054 }
2055
2056 /// emitBasicBlockLoopComments - Pretty-print comments for basic blocks.
2057 static void emitBasicBlockLoopComments(const MachineBasicBlock &MBB,
2058                                        const MachineLoopInfo *LI,
2059                                        const AsmPrinter &AP) {
2060   // Add loop depth information
2061   const MachineLoop *Loop = LI->getLoopFor(&MBB);
2062   if (Loop == 0) return;
2063
2064   MachineBasicBlock *Header = Loop->getHeader();
2065   assert(Header && "No header for loop");
2066
2067   // If this block is not a loop header, just print out what is the loop header
2068   // and return.
2069   if (Header != &MBB) {
2070     AP.OutStreamer.AddComment("  in Loop: Header=BB" +
2071                               Twine(AP.getFunctionNumber())+"_" +
2072                               Twine(Loop->getHeader()->getNumber())+
2073                               " Depth="+Twine(Loop->getLoopDepth()));
2074     return;
2075   }
2076
2077   // Otherwise, it is a loop header.  Print out information about child and
2078   // parent loops.
2079   raw_ostream &OS = AP.OutStreamer.GetCommentOS();
2080
2081   PrintParentLoopComment(OS, Loop->getParentLoop(), AP.getFunctionNumber());
2082
2083   OS << "=>";
2084   OS.indent(Loop->getLoopDepth()*2-2);
2085
2086   OS << "This ";
2087   if (Loop->empty())
2088     OS << "Inner ";
2089   OS << "Loop Header: Depth=" + Twine(Loop->getLoopDepth()) << '\n';
2090
2091   PrintChildLoopComment(OS, Loop, AP.getFunctionNumber());
2092 }
2093
2094
2095 /// EmitBasicBlockStart - This method prints the label for the specified
2096 /// MachineBasicBlock, an alignment (if present) and a comment describing
2097 /// it if appropriate.
2098 void AsmPrinter::EmitBasicBlockStart(const MachineBasicBlock *MBB) const {
2099   // Emit an alignment directive for this block, if needed.
2100   if (unsigned Align = MBB->getAlignment())
2101     EmitAlignment(Align);
2102
2103   // If the block has its address taken, emit any labels that were used to
2104   // reference the block.  It is possible that there is more than one label
2105   // here, because multiple LLVM BB's may have been RAUW'd to this block after
2106   // the references were generated.
2107   if (MBB->hasAddressTaken()) {
2108     const BasicBlock *BB = MBB->getBasicBlock();
2109     if (isVerbose())
2110       OutStreamer.AddComment("Block address taken");
2111
2112     std::vector<MCSymbol*> Syms = MMI->getAddrLabelSymbolToEmit(BB);
2113
2114     for (unsigned i = 0, e = Syms.size(); i != e; ++i)
2115       OutStreamer.EmitLabel(Syms[i]);
2116   }
2117
2118   // Print some verbose block comments.
2119   if (isVerbose()) {
2120     if (const BasicBlock *BB = MBB->getBasicBlock())
2121       if (BB->hasName())
2122         OutStreamer.AddComment("%" + BB->getName());
2123     emitBasicBlockLoopComments(*MBB, LI, *this);
2124   }
2125
2126   // Print the main label for the block.
2127   if (MBB->pred_empty() || isBlockOnlyReachableByFallthrough(MBB)) {
2128     if (isVerbose() && OutStreamer.hasRawTextSupport()) {
2129       // NOTE: Want this comment at start of line, don't emit with AddComment.
2130       OutStreamer.EmitRawText(Twine(MAI->getCommentString()) + " BB#" +
2131                               Twine(MBB->getNumber()) + ":");
2132     }
2133   } else {
2134     OutStreamer.EmitLabel(MBB->getSymbol());
2135   }
2136 }
2137
2138 void AsmPrinter::EmitVisibility(MCSymbol *Sym, unsigned Visibility,
2139                                 bool IsDefinition) const {
2140   MCSymbolAttr Attr = MCSA_Invalid;
2141
2142   switch (Visibility) {
2143   default: break;
2144   case GlobalValue::HiddenVisibility:
2145     if (IsDefinition)
2146       Attr = MAI->getHiddenVisibilityAttr();
2147     else
2148       Attr = MAI->getHiddenDeclarationVisibilityAttr();
2149     break;
2150   case GlobalValue::ProtectedVisibility:
2151     Attr = MAI->getProtectedVisibilityAttr();
2152     break;
2153   }
2154
2155   if (Attr != MCSA_Invalid)
2156     OutStreamer.EmitSymbolAttribute(Sym, Attr);
2157 }
2158
2159 /// isBlockOnlyReachableByFallthough - Return true if the basic block has
2160 /// exactly one predecessor and the control transfer mechanism between
2161 /// the predecessor and this block is a fall-through.
2162 bool AsmPrinter::
2163 isBlockOnlyReachableByFallthrough(const MachineBasicBlock *MBB) const {
2164   // If this is a landing pad, it isn't a fall through.  If it has no preds,
2165   // then nothing falls through to it.
2166   if (MBB->isLandingPad() || MBB->pred_empty())
2167     return false;
2168
2169   // If there isn't exactly one predecessor, it can't be a fall through.
2170   MachineBasicBlock::const_pred_iterator PI = MBB->pred_begin(), PI2 = PI;
2171   ++PI2;
2172   if (PI2 != MBB->pred_end())
2173     return false;
2174
2175   // The predecessor has to be immediately before this block.
2176   MachineBasicBlock *Pred = *PI;
2177
2178   if (!Pred->isLayoutSuccessor(MBB))
2179     return false;
2180
2181   // If the block is completely empty, then it definitely does fall through.
2182   if (Pred->empty())
2183     return true;
2184
2185   // Check the terminators in the previous blocks
2186   for (MachineBasicBlock::iterator II = Pred->getFirstTerminator(),
2187          IE = Pred->end(); II != IE; ++II) {
2188     MachineInstr &MI = *II;
2189
2190     // If it is not a simple branch, we are in a table somewhere.
2191     if (!MI.isBranch() || MI.isIndirectBranch())
2192       return false;
2193
2194     // If we are the operands of one of the branches, this is not
2195     // a fall through.
2196     for (MachineInstr::mop_iterator OI = MI.operands_begin(),
2197            OE = MI.operands_end(); OI != OE; ++OI) {
2198       const MachineOperand& OP = *OI;
2199       if (OP.isJTI())
2200         return false;
2201       if (OP.isMBB() && OP.getMBB() == MBB)
2202         return false;
2203     }
2204   }
2205
2206   return true;
2207 }
2208
2209
2210
2211 GCMetadataPrinter *AsmPrinter::GetOrCreateGCPrinter(GCStrategy *S) {
2212   if (!S->usesMetadata())
2213     return 0;
2214
2215   gcp_map_type &GCMap = getGCMap(GCMetadataPrinters);
2216   gcp_map_type::iterator GCPI = GCMap.find(S);
2217   if (GCPI != GCMap.end())
2218     return GCPI->second;
2219
2220   const char *Name = S->getName().c_str();
2221
2222   for (GCMetadataPrinterRegistry::iterator
2223          I = GCMetadataPrinterRegistry::begin(),
2224          E = GCMetadataPrinterRegistry::end(); I != E; ++I)
2225     if (strcmp(Name, I->getName()) == 0) {
2226       GCMetadataPrinter *GMP = I->instantiate();
2227       GMP->S = S;
2228       GCMap.insert(std::make_pair(S, GMP));
2229       return GMP;
2230     }
2231
2232   report_fatal_error("no GCMetadataPrinter registered for GC: " + Twine(Name));
2233 }