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