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