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