1 //===- AsmPrinter.cpp - Common AsmPrinter code ----------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This file implements the AsmPrinter class.
10 //
11 //===----------------------------------------------------------------------===//
12 
13 #include "llvm/CodeGen/AsmPrinter.h"
14 #include "CodeViewDebug.h"
15 #include "DwarfDebug.h"
16 #include "DwarfException.h"
17 #include "PseudoProbePrinter.h"
18 #include "WasmException.h"
19 #include "WinCFGuard.h"
20 #include "WinException.h"
21 #include "llvm/ADT/APFloat.h"
22 #include "llvm/ADT/APInt.h"
23 #include "llvm/ADT/DenseMap.h"
24 #include "llvm/ADT/STLExtras.h"
25 #include "llvm/ADT/SmallPtrSet.h"
26 #include "llvm/ADT/SmallString.h"
27 #include "llvm/ADT/SmallVector.h"
28 #include "llvm/ADT/Statistic.h"
29 #include "llvm/ADT/StringRef.h"
30 #include "llvm/ADT/Triple.h"
31 #include "llvm/ADT/Twine.h"
32 #include "llvm/Analysis/ConstantFolding.h"
33 #include "llvm/Analysis/EHPersonalities.h"
34 #include "llvm/Analysis/MemoryLocation.h"
35 #include "llvm/Analysis/OptimizationRemarkEmitter.h"
36 #include "llvm/BinaryFormat/COFF.h"
37 #include "llvm/BinaryFormat/Dwarf.h"
38 #include "llvm/BinaryFormat/ELF.h"
39 #include "llvm/CodeGen/GCMetadata.h"
40 #include "llvm/CodeGen/GCMetadataPrinter.h"
41 #include "llvm/CodeGen/MachineBasicBlock.h"
42 #include "llvm/CodeGen/MachineConstantPool.h"
43 #include "llvm/CodeGen/MachineDominators.h"
44 #include "llvm/CodeGen/MachineFrameInfo.h"
45 #include "llvm/CodeGen/MachineFunction.h"
46 #include "llvm/CodeGen/MachineFunctionPass.h"
47 #include "llvm/CodeGen/MachineInstr.h"
48 #include "llvm/CodeGen/MachineInstrBundle.h"
49 #include "llvm/CodeGen/MachineJumpTableInfo.h"
50 #include "llvm/CodeGen/MachineLoopInfo.h"
51 #include "llvm/CodeGen/MachineMemOperand.h"
52 #include "llvm/CodeGen/MachineModuleInfo.h"
53 #include "llvm/CodeGen/MachineModuleInfoImpls.h"
54 #include "llvm/CodeGen/MachineOperand.h"
55 #include "llvm/CodeGen/MachineOptimizationRemarkEmitter.h"
56 #include "llvm/CodeGen/StackMaps.h"
57 #include "llvm/CodeGen/TargetFrameLowering.h"
58 #include "llvm/CodeGen/TargetInstrInfo.h"
59 #include "llvm/CodeGen/TargetLowering.h"
60 #include "llvm/CodeGen/TargetOpcodes.h"
61 #include "llvm/CodeGen/TargetRegisterInfo.h"
62 #include "llvm/Config/config.h"
63 #include "llvm/IR/BasicBlock.h"
64 #include "llvm/IR/Comdat.h"
65 #include "llvm/IR/Constant.h"
66 #include "llvm/IR/Constants.h"
67 #include "llvm/IR/DataLayout.h"
68 #include "llvm/IR/DebugInfoMetadata.h"
69 #include "llvm/IR/DerivedTypes.h"
70 #include "llvm/IR/Function.h"
71 #include "llvm/IR/GCStrategy.h"
72 #include "llvm/IR/GlobalAlias.h"
73 #include "llvm/IR/GlobalIFunc.h"
74 #include "llvm/IR/GlobalObject.h"
75 #include "llvm/IR/GlobalValue.h"
76 #include "llvm/IR/GlobalVariable.h"
77 #include "llvm/IR/Instruction.h"
78 #include "llvm/IR/Mangler.h"
79 #include "llvm/IR/Metadata.h"
80 #include "llvm/IR/Module.h"
81 #include "llvm/IR/Operator.h"
82 #include "llvm/IR/PseudoProbe.h"
83 #include "llvm/IR/Type.h"
84 #include "llvm/IR/Value.h"
85 #include "llvm/MC/MCAsmInfo.h"
86 #include "llvm/MC/MCContext.h"
87 #include "llvm/MC/MCDirectives.h"
88 #include "llvm/MC/MCDwarf.h"
89 #include "llvm/MC/MCExpr.h"
90 #include "llvm/MC/MCInst.h"
91 #include "llvm/MC/MCSection.h"
92 #include "llvm/MC/MCSectionCOFF.h"
93 #include "llvm/MC/MCSectionELF.h"
94 #include "llvm/MC/MCSectionMachO.h"
95 #include "llvm/MC/MCSectionXCOFF.h"
96 #include "llvm/MC/MCStreamer.h"
97 #include "llvm/MC/MCSubtargetInfo.h"
98 #include "llvm/MC/MCSymbol.h"
99 #include "llvm/MC/MCSymbolELF.h"
100 #include "llvm/MC/MCSymbolXCOFF.h"
101 #include "llvm/MC/MCTargetOptions.h"
102 #include "llvm/MC/MCValue.h"
103 #include "llvm/MC/SectionKind.h"
104 #include "llvm/MC/TargetRegistry.h"
105 #include "llvm/Pass.h"
106 #include "llvm/Remarks/Remark.h"
107 #include "llvm/Remarks/RemarkFormat.h"
108 #include "llvm/Remarks/RemarkStreamer.h"
109 #include "llvm/Remarks/RemarkStringTable.h"
110 #include "llvm/Support/Casting.h"
111 #include "llvm/Support/CommandLine.h"
112 #include "llvm/Support/Compiler.h"
113 #include "llvm/Support/ErrorHandling.h"
114 #include "llvm/Support/FileSystem.h"
115 #include "llvm/Support/Format.h"
116 #include "llvm/Support/MathExtras.h"
117 #include "llvm/Support/Path.h"
118 #include "llvm/Support/Timer.h"
119 #include "llvm/Support/raw_ostream.h"
120 #include "llvm/Target/TargetLoweringObjectFile.h"
121 #include "llvm/Target/TargetMachine.h"
122 #include "llvm/Target/TargetOptions.h"
123 #include <algorithm>
124 #include <cassert>
125 #include <cinttypes>
126 #include <cstdint>
127 #include <iterator>
128 #include <limits>
129 #include <memory>
130 #include <string>
131 #include <utility>
132 #include <vector>
133 
134 using namespace llvm;
135 
136 #define DEBUG_TYPE "asm-printer"
137 
138 // FIXME: this option currently only applies to DWARF, and not CodeView, tables
139 static cl::opt<bool>
140     DisableDebugInfoPrinting("disable-debug-info-print", cl::Hidden,
141                              cl::desc("Disable debug info printing"));
142 
143 const char DWARFGroupName[] = "dwarf";
144 const char DWARFGroupDescription[] = "DWARF Emission";
145 const char DbgTimerName[] = "emit";
146 const char DbgTimerDescription[] = "Debug Info Emission";
147 const char EHTimerName[] = "write_exception";
148 const char EHTimerDescription[] = "DWARF Exception Writer";
149 const char CFGuardName[] = "Control Flow Guard";
150 const char CFGuardDescription[] = "Control Flow Guard";
151 const char CodeViewLineTablesGroupName[] = "linetables";
152 const char CodeViewLineTablesGroupDescription[] = "CodeView Line Tables";
153 const char PPTimerName[] = "emit";
154 const char PPTimerDescription[] = "Pseudo Probe Emission";
155 const char PPGroupName[] = "pseudo probe";
156 const char PPGroupDescription[] = "Pseudo Probe Emission";
157 
158 STATISTIC(EmittedInsts, "Number of machine instrs printed");
159 
160 char AsmPrinter::ID = 0;
161 
162 using gcp_map_type = DenseMap<GCStrategy *, std::unique_ptr<GCMetadataPrinter>>;
163 
164 static gcp_map_type &getGCMap(void *&P) {
165   if (!P)
166     P = new gcp_map_type();
167   return *(gcp_map_type*)P;
168 }
169 
170 /// getGVAlignment - Return the alignment to use for the specified global
171 /// value.  This rounds up to the preferred alignment if possible and legal.
172 Align AsmPrinter::getGVAlignment(const GlobalObject *GV, const DataLayout &DL,
173                                  Align InAlign) {
174   Align Alignment;
175   if (const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV))
176     Alignment = DL.getPreferredAlign(GVar);
177 
178   // If InAlign is specified, round it to it.
179   if (InAlign > Alignment)
180     Alignment = InAlign;
181 
182   // If the GV has a specified alignment, take it into account.
183   const MaybeAlign GVAlign(GV->getAlign());
184   if (!GVAlign)
185     return Alignment;
186 
187   assert(GVAlign && "GVAlign must be set");
188 
189   // If the GVAlign is larger than NumBits, or if we are required to obey
190   // NumBits because the GV has an assigned section, obey it.
191   if (*GVAlign > Alignment || GV->hasSection())
192     Alignment = *GVAlign;
193   return Alignment;
194 }
195 
196 AsmPrinter::AsmPrinter(TargetMachine &tm, std::unique_ptr<MCStreamer> Streamer)
197     : MachineFunctionPass(ID), TM(tm), MAI(tm.getMCAsmInfo()),
198       OutContext(Streamer->getContext()), OutStreamer(std::move(Streamer)) {
199   VerboseAsm = OutStreamer->isVerboseAsm();
200 }
201 
202 AsmPrinter::~AsmPrinter() {
203   assert(!DD && Handlers.size() == NumUserHandlers &&
204          "Debug/EH info didn't get finalized");
205 
206   if (GCMetadataPrinters) {
207     gcp_map_type &GCMap = getGCMap(GCMetadataPrinters);
208 
209     delete &GCMap;
210     GCMetadataPrinters = nullptr;
211   }
212 }
213 
214 bool AsmPrinter::isPositionIndependent() const {
215   return TM.isPositionIndependent();
216 }
217 
218 /// getFunctionNumber - Return a unique ID for the current function.
219 unsigned AsmPrinter::getFunctionNumber() const {
220   return MF->getFunctionNumber();
221 }
222 
223 const TargetLoweringObjectFile &AsmPrinter::getObjFileLowering() const {
224   return *TM.getObjFileLowering();
225 }
226 
227 const DataLayout &AsmPrinter::getDataLayout() const {
228   return MMI->getModule()->getDataLayout();
229 }
230 
231 // Do not use the cached DataLayout because some client use it without a Module
232 // (dsymutil, llvm-dwarfdump).
233 unsigned AsmPrinter::getPointerSize() const {
234   return TM.getPointerSize(0); // FIXME: Default address space
235 }
236 
237 const MCSubtargetInfo &AsmPrinter::getSubtargetInfo() const {
238   assert(MF && "getSubtargetInfo requires a valid MachineFunction!");
239   return MF->getSubtarget<MCSubtargetInfo>();
240 }
241 
242 void AsmPrinter::EmitToStreamer(MCStreamer &S, const MCInst &Inst) {
243   S.emitInstruction(Inst, getSubtargetInfo());
244 }
245 
246 void AsmPrinter::emitInitialRawDwarfLocDirective(const MachineFunction &MF) {
247   if (DD) {
248     assert(OutStreamer->hasRawTextSupport() &&
249            "Expected assembly output mode.");
250     // This is NVPTX specific and it's unclear why.
251     // PR51079: If we have code without debug information we need to give up.
252     DISubprogram *MFSP = MF.getFunction().getSubprogram();
253     if (!MFSP)
254       return;
255     (void)DD->emitInitialLocDirective(MF, /*CUID=*/0);
256   }
257 }
258 
259 /// getCurrentSection() - Return the current section we are emitting to.
260 const MCSection *AsmPrinter::getCurrentSection() const {
261   return OutStreamer->getCurrentSectionOnly();
262 }
263 
264 void AsmPrinter::getAnalysisUsage(AnalysisUsage &AU) const {
265   AU.setPreservesAll();
266   MachineFunctionPass::getAnalysisUsage(AU);
267   AU.addRequired<MachineOptimizationRemarkEmitterPass>();
268   AU.addRequired<GCModuleInfo>();
269 }
270 
271 bool AsmPrinter::doInitialization(Module &M) {
272   auto *MMIWP = getAnalysisIfAvailable<MachineModuleInfoWrapperPass>();
273   MMI = MMIWP ? &MMIWP->getMMI() : nullptr;
274 
275   // Initialize TargetLoweringObjectFile.
276   const_cast<TargetLoweringObjectFile&>(getObjFileLowering())
277     .Initialize(OutContext, TM);
278 
279   const_cast<TargetLoweringObjectFile &>(getObjFileLowering())
280       .getModuleMetadata(M);
281 
282   OutStreamer->initSections(false, *TM.getMCSubtargetInfo());
283 
284   if (DisableDebugInfoPrinting)
285     MMI->setDebugInfoAvailability(false);
286 
287   // Emit the version-min deployment target directive if needed.
288   //
289   // FIXME: If we end up with a collection of these sorts of Darwin-specific
290   // or ELF-specific things, it may make sense to have a platform helper class
291   // that will work with the target helper class. For now keep it here, as the
292   // alternative is duplicated code in each of the target asm printers that
293   // use the directive, where it would need the same conditionalization
294   // anyway.
295   const Triple &Target = TM.getTargetTriple();
296   Triple TVT(M.getDarwinTargetVariantTriple());
297   OutStreamer->emitVersionForTarget(
298       Target, M.getSDKVersion(),
299       M.getDarwinTargetVariantTriple().empty() ? nullptr : &TVT,
300       M.getDarwinTargetVariantSDKVersion());
301 
302   // Allow the target to emit any magic that it wants at the start of the file.
303   emitStartOfAsmFile(M);
304 
305   // Very minimal debug info. It is ignored if we emit actual debug info. If we
306   // don't, this at least helps the user find where a global came from.
307   if (MAI->hasSingleParameterDotFile()) {
308     // .file "foo.c"
309 
310     SmallString<128> FileName;
311     if (MAI->hasBasenameOnlyForFileDirective())
312       FileName = llvm::sys::path::filename(M.getSourceFileName());
313     else
314       FileName = M.getSourceFileName();
315     if (MAI->hasFourStringsDotFile()) {
316 #ifdef PACKAGE_VENDOR
317       const char VerStr[] =
318           PACKAGE_VENDOR " " PACKAGE_NAME " version " PACKAGE_VERSION;
319 #else
320       const char VerStr[] = PACKAGE_NAME " version " PACKAGE_VERSION;
321 #endif
322       // TODO: Add timestamp and description.
323       OutStreamer->emitFileDirective(FileName, VerStr, "", "");
324     } else {
325       OutStreamer->emitFileDirective(FileName);
326     }
327   }
328 
329   GCModuleInfo *MI = getAnalysisIfAvailable<GCModuleInfo>();
330   assert(MI && "AsmPrinter didn't require GCModuleInfo?");
331   for (auto &I : *MI)
332     if (GCMetadataPrinter *MP = GetOrCreateGCPrinter(*I))
333       MP->beginAssembly(M, *MI, *this);
334 
335   // Emit module-level inline asm if it exists.
336   if (!M.getModuleInlineAsm().empty()) {
337     OutStreamer->AddComment("Start of file scope inline assembly");
338     OutStreamer->AddBlankLine();
339     emitInlineAsm(M.getModuleInlineAsm() + "\n", *TM.getMCSubtargetInfo(),
340                   TM.Options.MCOptions);
341     OutStreamer->AddComment("End of file scope inline assembly");
342     OutStreamer->AddBlankLine();
343   }
344 
345   if (MAI->doesSupportDebugInformation()) {
346     bool EmitCodeView = M.getCodeViewFlag();
347     if (EmitCodeView && TM.getTargetTriple().isOSWindows()) {
348       Handlers.emplace_back(std::make_unique<CodeViewDebug>(this),
349                             DbgTimerName, DbgTimerDescription,
350                             CodeViewLineTablesGroupName,
351                             CodeViewLineTablesGroupDescription);
352     }
353     if (!EmitCodeView || M.getDwarfVersion()) {
354       if (!DisableDebugInfoPrinting) {
355         DD = new DwarfDebug(this);
356         Handlers.emplace_back(std::unique_ptr<DwarfDebug>(DD), DbgTimerName,
357                               DbgTimerDescription, DWARFGroupName,
358                               DWARFGroupDescription);
359       }
360     }
361   }
362 
363   if (M.getNamedMetadata(PseudoProbeDescMetadataName)) {
364     PP = new PseudoProbeHandler(this);
365     Handlers.emplace_back(std::unique_ptr<PseudoProbeHandler>(PP), PPTimerName,
366                           PPTimerDescription, PPGroupName, PPGroupDescription);
367   }
368 
369   switch (MAI->getExceptionHandlingType()) {
370   case ExceptionHandling::None:
371     // We may want to emit CFI for debug.
372     LLVM_FALLTHROUGH;
373   case ExceptionHandling::SjLj:
374   case ExceptionHandling::DwarfCFI:
375   case ExceptionHandling::ARM:
376     for (auto &F : M.getFunctionList()) {
377       if (getFunctionCFISectionType(F) != CFISection::None)
378         ModuleCFISection = getFunctionCFISectionType(F);
379       // If any function needsUnwindTableEntry(), it needs .eh_frame and hence
380       // the module needs .eh_frame. If we have found that case, we are done.
381       if (ModuleCFISection == CFISection::EH)
382         break;
383     }
384     assert(MAI->getExceptionHandlingType() == ExceptionHandling::DwarfCFI ||
385            ModuleCFISection != CFISection::EH);
386     break;
387   default:
388     break;
389   }
390 
391   EHStreamer *ES = nullptr;
392   switch (MAI->getExceptionHandlingType()) {
393   case ExceptionHandling::None:
394     if (!needsCFIForDebug())
395       break;
396     LLVM_FALLTHROUGH;
397   case ExceptionHandling::SjLj:
398   case ExceptionHandling::DwarfCFI:
399     ES = new DwarfCFIException(this);
400     break;
401   case ExceptionHandling::ARM:
402     ES = new ARMException(this);
403     break;
404   case ExceptionHandling::WinEH:
405     switch (MAI->getWinEHEncodingType()) {
406     default: llvm_unreachable("unsupported unwinding information encoding");
407     case WinEH::EncodingType::Invalid:
408       break;
409     case WinEH::EncodingType::X86:
410     case WinEH::EncodingType::Itanium:
411       ES = new WinException(this);
412       break;
413     }
414     break;
415   case ExceptionHandling::Wasm:
416     ES = new WasmException(this);
417     break;
418   case ExceptionHandling::AIX:
419     ES = new AIXException(this);
420     break;
421   }
422   if (ES)
423     Handlers.emplace_back(std::unique_ptr<EHStreamer>(ES), EHTimerName,
424                           EHTimerDescription, DWARFGroupName,
425                           DWARFGroupDescription);
426 
427   // Emit tables for any value of cfguard flag (i.e. cfguard=1 or cfguard=2).
428   if (mdconst::extract_or_null<ConstantInt>(M.getModuleFlag("cfguard")))
429     Handlers.emplace_back(std::make_unique<WinCFGuard>(this), CFGuardName,
430                           CFGuardDescription, DWARFGroupName,
431                           DWARFGroupDescription);
432 
433   for (const HandlerInfo &HI : Handlers) {
434     NamedRegionTimer T(HI.TimerName, HI.TimerDescription, HI.TimerGroupName,
435                        HI.TimerGroupDescription, TimePassesIsEnabled);
436     HI.Handler->beginModule(&M);
437   }
438 
439   return false;
440 }
441 
442 static bool canBeHidden(const GlobalValue *GV, const MCAsmInfo &MAI) {
443   if (!MAI.hasWeakDefCanBeHiddenDirective())
444     return false;
445 
446   return GV->canBeOmittedFromSymbolTable();
447 }
448 
449 void AsmPrinter::emitLinkage(const GlobalValue *GV, MCSymbol *GVSym) const {
450   GlobalValue::LinkageTypes Linkage = GV->getLinkage();
451   switch (Linkage) {
452   case GlobalValue::CommonLinkage:
453   case GlobalValue::LinkOnceAnyLinkage:
454   case GlobalValue::LinkOnceODRLinkage:
455   case GlobalValue::WeakAnyLinkage:
456   case GlobalValue::WeakODRLinkage:
457     if (MAI->hasWeakDefDirective()) {
458       // .globl _foo
459       OutStreamer->emitSymbolAttribute(GVSym, MCSA_Global);
460 
461       if (!canBeHidden(GV, *MAI))
462         // .weak_definition _foo
463         OutStreamer->emitSymbolAttribute(GVSym, MCSA_WeakDefinition);
464       else
465         OutStreamer->emitSymbolAttribute(GVSym, MCSA_WeakDefAutoPrivate);
466     } else if (MAI->avoidWeakIfComdat() && GV->hasComdat()) {
467       // .globl _foo
468       OutStreamer->emitSymbolAttribute(GVSym, MCSA_Global);
469       //NOTE: linkonce is handled by the section the symbol was assigned to.
470     } else {
471       // .weak _foo
472       OutStreamer->emitSymbolAttribute(GVSym, MCSA_Weak);
473     }
474     return;
475   case GlobalValue::ExternalLinkage:
476     OutStreamer->emitSymbolAttribute(GVSym, MCSA_Global);
477     return;
478   case GlobalValue::PrivateLinkage:
479   case GlobalValue::InternalLinkage:
480     return;
481   case GlobalValue::ExternalWeakLinkage:
482   case GlobalValue::AvailableExternallyLinkage:
483   case GlobalValue::AppendingLinkage:
484     llvm_unreachable("Should never emit this");
485   }
486   llvm_unreachable("Unknown linkage type!");
487 }
488 
489 void AsmPrinter::getNameWithPrefix(SmallVectorImpl<char> &Name,
490                                    const GlobalValue *GV) const {
491   TM.getNameWithPrefix(Name, GV, getObjFileLowering().getMangler());
492 }
493 
494 MCSymbol *AsmPrinter::getSymbol(const GlobalValue *GV) const {
495   return TM.getSymbol(GV);
496 }
497 
498 MCSymbol *AsmPrinter::getSymbolPreferLocal(const GlobalValue &GV) const {
499   // On ELF, use .Lfoo$local if GV is a non-interposable GlobalObject with an
500   // exact definion (intersection of GlobalValue::hasExactDefinition() and
501   // !isInterposable()). These linkages include: external, appending, internal,
502   // private. It may be profitable to use a local alias for external. The
503   // assembler would otherwise be conservative and assume a global default
504   // visibility symbol can be interposable, even if the code generator already
505   // assumed it.
506   if (TM.getTargetTriple().isOSBinFormatELF() && GV.canBenefitFromLocalAlias()) {
507     const Module &M = *GV.getParent();
508     if (TM.getRelocationModel() != Reloc::Static &&
509         M.getPIELevel() == PIELevel::Default && GV.isDSOLocal())
510       return getSymbolWithGlobalValueBase(&GV, "$local");
511   }
512   return TM.getSymbol(&GV);
513 }
514 
515 /// EmitGlobalVariable - Emit the specified global variable to the .s file.
516 void AsmPrinter::emitGlobalVariable(const GlobalVariable *GV) {
517   bool IsEmuTLSVar = TM.useEmulatedTLS() && GV->isThreadLocal();
518   assert(!(IsEmuTLSVar && GV->hasCommonLinkage()) &&
519          "No emulated TLS variables in the common section");
520 
521   // Never emit TLS variable xyz in emulated TLS model.
522   // The initialization value is in __emutls_t.xyz instead of xyz.
523   if (IsEmuTLSVar)
524     return;
525 
526   if (GV->hasInitializer()) {
527     // Check to see if this is a special global used by LLVM, if so, emit it.
528     if (emitSpecialLLVMGlobal(GV))
529       return;
530 
531     // Skip the emission of global equivalents. The symbol can be emitted later
532     // on by emitGlobalGOTEquivs in case it turns out to be needed.
533     if (GlobalGOTEquivs.count(getSymbol(GV)))
534       return;
535 
536     if (isVerbose()) {
537       // When printing the control variable __emutls_v.*,
538       // we don't need to print the original TLS variable name.
539       GV->printAsOperand(OutStreamer->GetCommentOS(),
540                      /*PrintType=*/false, GV->getParent());
541       OutStreamer->GetCommentOS() << '\n';
542     }
543   }
544 
545   MCSymbol *GVSym = getSymbol(GV);
546   MCSymbol *EmittedSym = GVSym;
547 
548   // getOrCreateEmuTLSControlSym only creates the symbol with name and default
549   // attributes.
550   // GV's or GVSym's attributes will be used for the EmittedSym.
551   emitVisibility(EmittedSym, GV->getVisibility(), !GV->isDeclaration());
552 
553   if (!GV->hasInitializer())   // External globals require no extra code.
554     return;
555 
556   GVSym->redefineIfPossible();
557   if (GVSym->isDefined() || GVSym->isVariable())
558     OutContext.reportError(SMLoc(), "symbol '" + Twine(GVSym->getName()) +
559                                         "' is already defined");
560 
561   if (MAI->hasDotTypeDotSizeDirective())
562     OutStreamer->emitSymbolAttribute(EmittedSym, MCSA_ELF_TypeObject);
563 
564   SectionKind GVKind = TargetLoweringObjectFile::getKindForGlobal(GV, TM);
565 
566   const DataLayout &DL = GV->getParent()->getDataLayout();
567   uint64_t Size = DL.getTypeAllocSize(GV->getValueType());
568 
569   // If the alignment is specified, we *must* obey it.  Overaligning a global
570   // with a specified alignment is a prompt way to break globals emitted to
571   // sections and expected to be contiguous (e.g. ObjC metadata).
572   const Align Alignment = getGVAlignment(GV, DL);
573 
574   for (const HandlerInfo &HI : Handlers) {
575     NamedRegionTimer T(HI.TimerName, HI.TimerDescription,
576                        HI.TimerGroupName, HI.TimerGroupDescription,
577                        TimePassesIsEnabled);
578     HI.Handler->setSymbolSize(GVSym, Size);
579   }
580 
581   // Handle common symbols
582   if (GVKind.isCommon()) {
583     if (Size == 0) Size = 1;   // .comm Foo, 0 is undefined, avoid it.
584     // .comm _foo, 42, 4
585     const bool SupportsAlignment =
586         getObjFileLowering().getCommDirectiveSupportsAlignment();
587     OutStreamer->emitCommonSymbol(GVSym, Size,
588                                   SupportsAlignment ? Alignment.value() : 0);
589     return;
590   }
591 
592   // Determine to which section this global should be emitted.
593   MCSection *TheSection = getObjFileLowering().SectionForGlobal(GV, GVKind, TM);
594 
595   // If we have a bss global going to a section that supports the
596   // zerofill directive, do so here.
597   if (GVKind.isBSS() && MAI->hasMachoZeroFillDirective() &&
598       TheSection->isVirtualSection()) {
599     if (Size == 0)
600       Size = 1; // zerofill of 0 bytes is undefined.
601     emitLinkage(GV, GVSym);
602     // .zerofill __DATA, __bss, _foo, 400, 5
603     OutStreamer->emitZerofill(TheSection, GVSym, Size, Alignment.value());
604     return;
605   }
606 
607   // If this is a BSS local symbol and we are emitting in the BSS
608   // section use .lcomm/.comm directive.
609   if (GVKind.isBSSLocal() &&
610       getObjFileLowering().getBSSSection() == TheSection) {
611     if (Size == 0)
612       Size = 1; // .comm Foo, 0 is undefined, avoid it.
613 
614     // Use .lcomm only if it supports user-specified alignment.
615     // Otherwise, while it would still be correct to use .lcomm in some
616     // cases (e.g. when Align == 1), the external assembler might enfore
617     // some -unknown- default alignment behavior, which could cause
618     // spurious differences between external and integrated assembler.
619     // Prefer to simply fall back to .local / .comm in this case.
620     if (MAI->getLCOMMDirectiveAlignmentType() != LCOMM::NoAlignment) {
621       // .lcomm _foo, 42
622       OutStreamer->emitLocalCommonSymbol(GVSym, Size, Alignment.value());
623       return;
624     }
625 
626     // .local _foo
627     OutStreamer->emitSymbolAttribute(GVSym, MCSA_Local);
628     // .comm _foo, 42, 4
629     const bool SupportsAlignment =
630         getObjFileLowering().getCommDirectiveSupportsAlignment();
631     OutStreamer->emitCommonSymbol(GVSym, Size,
632                                   SupportsAlignment ? Alignment.value() : 0);
633     return;
634   }
635 
636   // Handle thread local data for mach-o which requires us to output an
637   // additional structure of data and mangle the original symbol so that we
638   // can reference it later.
639   //
640   // TODO: This should become an "emit thread local global" method on TLOF.
641   // All of this macho specific stuff should be sunk down into TLOFMachO and
642   // stuff like "TLSExtraDataSection" should no longer be part of the parent
643   // TLOF class.  This will also make it more obvious that stuff like
644   // MCStreamer::EmitTBSSSymbol is macho specific and only called from macho
645   // specific code.
646   if (GVKind.isThreadLocal() && MAI->hasMachoTBSSDirective()) {
647     // Emit the .tbss symbol
648     MCSymbol *MangSym =
649         OutContext.getOrCreateSymbol(GVSym->getName() + Twine("$tlv$init"));
650 
651     if (GVKind.isThreadBSS()) {
652       TheSection = getObjFileLowering().getTLSBSSSection();
653       OutStreamer->emitTBSSSymbol(TheSection, MangSym, Size, Alignment.value());
654     } else if (GVKind.isThreadData()) {
655       OutStreamer->SwitchSection(TheSection);
656 
657       emitAlignment(Alignment, GV);
658       OutStreamer->emitLabel(MangSym);
659 
660       emitGlobalConstant(GV->getParent()->getDataLayout(),
661                          GV->getInitializer());
662     }
663 
664     OutStreamer->AddBlankLine();
665 
666     // Emit the variable struct for the runtime.
667     MCSection *TLVSect = getObjFileLowering().getTLSExtraDataSection();
668 
669     OutStreamer->SwitchSection(TLVSect);
670     // Emit the linkage here.
671     emitLinkage(GV, GVSym);
672     OutStreamer->emitLabel(GVSym);
673 
674     // Three pointers in size:
675     //   - __tlv_bootstrap - used to make sure support exists
676     //   - spare pointer, used when mapped by the runtime
677     //   - pointer to mangled symbol above with initializer
678     unsigned PtrSize = DL.getPointerTypeSize(GV->getType());
679     OutStreamer->emitSymbolValue(GetExternalSymbolSymbol("_tlv_bootstrap"),
680                                 PtrSize);
681     OutStreamer->emitIntValue(0, PtrSize);
682     OutStreamer->emitSymbolValue(MangSym, PtrSize);
683 
684     OutStreamer->AddBlankLine();
685     return;
686   }
687 
688   MCSymbol *EmittedInitSym = GVSym;
689 
690   OutStreamer->SwitchSection(TheSection);
691 
692   emitLinkage(GV, EmittedInitSym);
693   emitAlignment(Alignment, GV);
694 
695   OutStreamer->emitLabel(EmittedInitSym);
696   MCSymbol *LocalAlias = getSymbolPreferLocal(*GV);
697   if (LocalAlias != EmittedInitSym)
698     OutStreamer->emitLabel(LocalAlias);
699 
700   emitGlobalConstant(GV->getParent()->getDataLayout(), GV->getInitializer());
701 
702   if (MAI->hasDotTypeDotSizeDirective())
703     // .size foo, 42
704     OutStreamer->emitELFSize(EmittedInitSym,
705                              MCConstantExpr::create(Size, OutContext));
706 
707   OutStreamer->AddBlankLine();
708 }
709 
710 /// Emit the directive and value for debug thread local expression
711 ///
712 /// \p Value - The value to emit.
713 /// \p Size - The size of the integer (in bytes) to emit.
714 void AsmPrinter::emitDebugValue(const MCExpr *Value, unsigned Size) const {
715   OutStreamer->emitValue(Value, Size);
716 }
717 
718 void AsmPrinter::emitFunctionHeaderComment() {}
719 
720 /// EmitFunctionHeader - This method emits the header for the current
721 /// function.
722 void AsmPrinter::emitFunctionHeader() {
723   const Function &F = MF->getFunction();
724 
725   if (isVerbose())
726     OutStreamer->GetCommentOS()
727         << "-- Begin function "
728         << GlobalValue::dropLLVMManglingEscape(F.getName()) << '\n';
729 
730   // Print out constants referenced by the function
731   emitConstantPool();
732 
733   // Print the 'header' of function.
734   // If basic block sections are desired, explicitly request a unique section
735   // for this function's entry block.
736   if (MF->front().isBeginSection())
737     MF->setSection(getObjFileLowering().getUniqueSectionForFunction(F, TM));
738   else
739     MF->setSection(getObjFileLowering().SectionForGlobal(&F, TM));
740   OutStreamer->SwitchSection(MF->getSection());
741 
742   if (!MAI->hasVisibilityOnlyWithLinkage())
743     emitVisibility(CurrentFnSym, F.getVisibility());
744 
745   if (MAI->needsFunctionDescriptors())
746     emitLinkage(&F, CurrentFnDescSym);
747 
748   emitLinkage(&F, CurrentFnSym);
749   if (MAI->hasFunctionAlignment())
750     emitAlignment(MF->getAlignment(), &F);
751 
752   if (MAI->hasDotTypeDotSizeDirective())
753     OutStreamer->emitSymbolAttribute(CurrentFnSym, MCSA_ELF_TypeFunction);
754 
755   if (F.hasFnAttribute(Attribute::Cold))
756     OutStreamer->emitSymbolAttribute(CurrentFnSym, MCSA_Cold);
757 
758   if (isVerbose()) {
759     F.printAsOperand(OutStreamer->GetCommentOS(),
760                    /*PrintType=*/false, F.getParent());
761     emitFunctionHeaderComment();
762     OutStreamer->GetCommentOS() << '\n';
763   }
764 
765   // Emit the prefix data.
766   if (F.hasPrefixData()) {
767     if (MAI->hasSubsectionsViaSymbols()) {
768       // Preserving prefix data on platforms which use subsections-via-symbols
769       // is a bit tricky. Here we introduce a symbol for the prefix data
770       // and use the .alt_entry attribute to mark the function's real entry point
771       // as an alternative entry point to the prefix-data symbol.
772       MCSymbol *PrefixSym = OutContext.createLinkerPrivateTempSymbol();
773       OutStreamer->emitLabel(PrefixSym);
774 
775       emitGlobalConstant(F.getParent()->getDataLayout(), F.getPrefixData());
776 
777       // Emit an .alt_entry directive for the actual function symbol.
778       OutStreamer->emitSymbolAttribute(CurrentFnSym, MCSA_AltEntry);
779     } else {
780       emitGlobalConstant(F.getParent()->getDataLayout(), F.getPrefixData());
781     }
782   }
783 
784   // Emit M NOPs for -fpatchable-function-entry=N,M where M>0. We arbitrarily
785   // place prefix data before NOPs.
786   unsigned PatchableFunctionPrefix = 0;
787   unsigned PatchableFunctionEntry = 0;
788   (void)F.getFnAttribute("patchable-function-prefix")
789       .getValueAsString()
790       .getAsInteger(10, PatchableFunctionPrefix);
791   (void)F.getFnAttribute("patchable-function-entry")
792       .getValueAsString()
793       .getAsInteger(10, PatchableFunctionEntry);
794   if (PatchableFunctionPrefix) {
795     CurrentPatchableFunctionEntrySym =
796         OutContext.createLinkerPrivateTempSymbol();
797     OutStreamer->emitLabel(CurrentPatchableFunctionEntrySym);
798     emitNops(PatchableFunctionPrefix);
799   } else if (PatchableFunctionEntry) {
800     // May be reassigned when emitting the body, to reference the label after
801     // the initial BTI (AArch64) or endbr32/endbr64 (x86).
802     CurrentPatchableFunctionEntrySym = CurrentFnBegin;
803   }
804 
805   // Emit the function descriptor. This is a virtual function to allow targets
806   // to emit their specific function descriptor. Right now it is only used by
807   // the AIX target. The PowerPC 64-bit V1 ELF target also uses function
808   // descriptors and should be converted to use this hook as well.
809   if (MAI->needsFunctionDescriptors())
810     emitFunctionDescriptor();
811 
812   // Emit the CurrentFnSym. This is a virtual function to allow targets to do
813   // their wild and crazy things as required.
814   emitFunctionEntryLabel();
815 
816   // If the function had address-taken blocks that got deleted, then we have
817   // references to the dangling symbols.  Emit them at the start of the function
818   // so that we don't get references to undefined symbols.
819   std::vector<MCSymbol*> DeadBlockSyms;
820   MMI->takeDeletedSymbolsForFunction(&F, DeadBlockSyms);
821   for (MCSymbol *DeadBlockSym : DeadBlockSyms) {
822     OutStreamer->AddComment("Address taken block that was later removed");
823     OutStreamer->emitLabel(DeadBlockSym);
824   }
825 
826   if (CurrentFnBegin) {
827     if (MAI->useAssignmentForEHBegin()) {
828       MCSymbol *CurPos = OutContext.createTempSymbol();
829       OutStreamer->emitLabel(CurPos);
830       OutStreamer->emitAssignment(CurrentFnBegin,
831                                  MCSymbolRefExpr::create(CurPos, OutContext));
832     } else {
833       OutStreamer->emitLabel(CurrentFnBegin);
834     }
835   }
836 
837   // Emit pre-function debug and/or EH information.
838   for (const HandlerInfo &HI : Handlers) {
839     NamedRegionTimer T(HI.TimerName, HI.TimerDescription, HI.TimerGroupName,
840                        HI.TimerGroupDescription, TimePassesIsEnabled);
841     HI.Handler->beginFunction(MF);
842   }
843 
844   // Emit the prologue data.
845   if (F.hasPrologueData())
846     emitGlobalConstant(F.getParent()->getDataLayout(), F.getPrologueData());
847 }
848 
849 /// EmitFunctionEntryLabel - Emit the label that is the entrypoint for the
850 /// function.  This can be overridden by targets as required to do custom stuff.
851 void AsmPrinter::emitFunctionEntryLabel() {
852   CurrentFnSym->redefineIfPossible();
853 
854   // The function label could have already been emitted if two symbols end up
855   // conflicting due to asm renaming.  Detect this and emit an error.
856   if (CurrentFnSym->isVariable())
857     report_fatal_error("'" + Twine(CurrentFnSym->getName()) +
858                        "' is a protected alias");
859 
860   OutStreamer->emitLabel(CurrentFnSym);
861 
862   if (TM.getTargetTriple().isOSBinFormatELF()) {
863     MCSymbol *Sym = getSymbolPreferLocal(MF->getFunction());
864     if (Sym != CurrentFnSym)
865       OutStreamer->emitLabel(Sym);
866   }
867 }
868 
869 /// emitComments - Pretty-print comments for instructions.
870 static void emitComments(const MachineInstr &MI, raw_ostream &CommentOS) {
871   const MachineFunction *MF = MI.getMF();
872   const TargetInstrInfo *TII = MF->getSubtarget().getInstrInfo();
873 
874   // Check for spills and reloads
875 
876   // We assume a single instruction only has a spill or reload, not
877   // both.
878   Optional<unsigned> Size;
879   if ((Size = MI.getRestoreSize(TII))) {
880     CommentOS << *Size << "-byte Reload\n";
881   } else if ((Size = MI.getFoldedRestoreSize(TII))) {
882     if (*Size) {
883       if (*Size == unsigned(MemoryLocation::UnknownSize))
884         CommentOS << "Unknown-size Folded Reload\n";
885       else
886         CommentOS << *Size << "-byte Folded Reload\n";
887     }
888   } else if ((Size = MI.getSpillSize(TII))) {
889     CommentOS << *Size << "-byte Spill\n";
890   } else if ((Size = MI.getFoldedSpillSize(TII))) {
891     if (*Size) {
892       if (*Size == unsigned(MemoryLocation::UnknownSize))
893         CommentOS << "Unknown-size Folded Spill\n";
894       else
895         CommentOS << *Size << "-byte Folded Spill\n";
896     }
897   }
898 
899   // Check for spill-induced copies
900   if (MI.getAsmPrinterFlag(MachineInstr::ReloadReuse))
901     CommentOS << " Reload Reuse\n";
902 }
903 
904 /// emitImplicitDef - This method emits the specified machine instruction
905 /// that is an implicit def.
906 void AsmPrinter::emitImplicitDef(const MachineInstr *MI) const {
907   Register RegNo = MI->getOperand(0).getReg();
908 
909   SmallString<128> Str;
910   raw_svector_ostream OS(Str);
911   OS << "implicit-def: "
912      << printReg(RegNo, MF->getSubtarget().getRegisterInfo());
913 
914   OutStreamer->AddComment(OS.str());
915   OutStreamer->AddBlankLine();
916 }
917 
918 static void emitKill(const MachineInstr *MI, AsmPrinter &AP) {
919   std::string Str;
920   raw_string_ostream OS(Str);
921   OS << "kill:";
922   for (const MachineOperand &Op : MI->operands()) {
923     assert(Op.isReg() && "KILL instruction must have only register operands");
924     OS << ' ' << (Op.isDef() ? "def " : "killed ")
925        << printReg(Op.getReg(), AP.MF->getSubtarget().getRegisterInfo());
926   }
927   AP.OutStreamer->AddComment(OS.str());
928   AP.OutStreamer->AddBlankLine();
929 }
930 
931 /// emitDebugValueComment - This method handles the target-independent form
932 /// of DBG_VALUE, returning true if it was able to do so.  A false return
933 /// means the target will need to handle MI in EmitInstruction.
934 static bool emitDebugValueComment(const MachineInstr *MI, AsmPrinter &AP) {
935   // This code handles only the 4-operand target-independent form.
936   if (MI->isNonListDebugValue() && MI->getNumOperands() != 4)
937     return false;
938 
939   SmallString<128> Str;
940   raw_svector_ostream OS(Str);
941   OS << "DEBUG_VALUE: ";
942 
943   const DILocalVariable *V = MI->getDebugVariable();
944   if (auto *SP = dyn_cast<DISubprogram>(V->getScope())) {
945     StringRef Name = SP->getName();
946     if (!Name.empty())
947       OS << Name << ":";
948   }
949   OS << V->getName();
950   OS << " <- ";
951 
952   const DIExpression *Expr = MI->getDebugExpression();
953   if (Expr->getNumElements()) {
954     OS << '[';
955     ListSeparator LS;
956     for (auto Op : Expr->expr_ops()) {
957       OS << LS << dwarf::OperationEncodingString(Op.getOp());
958       for (unsigned I = 0; I < Op.getNumArgs(); ++I)
959         OS << ' ' << Op.getArg(I);
960     }
961     OS << "] ";
962   }
963 
964   // Register or immediate value. Register 0 means undef.
965   for (const MachineOperand &Op : MI->debug_operands()) {
966     if (&Op != MI->debug_operands().begin())
967       OS << ", ";
968     switch (Op.getType()) {
969     case MachineOperand::MO_FPImmediate: {
970       APFloat APF = APFloat(Op.getFPImm()->getValueAPF());
971       Type *ImmTy = Op.getFPImm()->getType();
972       if (ImmTy->isBFloatTy() || ImmTy->isHalfTy() || ImmTy->isFloatTy() ||
973           ImmTy->isDoubleTy()) {
974         OS << APF.convertToDouble();
975       } else {
976         // There is no good way to print long double.  Convert a copy to
977         // double.  Ah well, it's only a comment.
978         bool ignored;
979         APF.convert(APFloat::IEEEdouble(), APFloat::rmNearestTiesToEven,
980                     &ignored);
981         OS << "(long double) " << APF.convertToDouble();
982       }
983       break;
984     }
985     case MachineOperand::MO_Immediate: {
986       OS << Op.getImm();
987       break;
988     }
989     case MachineOperand::MO_CImmediate: {
990       Op.getCImm()->getValue().print(OS, false /*isSigned*/);
991       break;
992     }
993     case MachineOperand::MO_TargetIndex: {
994       OS << "!target-index(" << Op.getIndex() << "," << Op.getOffset() << ")";
995       // NOTE: Want this comment at start of line, don't emit with AddComment.
996       AP.OutStreamer->emitRawComment(OS.str());
997       break;
998     }
999     case MachineOperand::MO_Register:
1000     case MachineOperand::MO_FrameIndex: {
1001       Register Reg;
1002       Optional<StackOffset> Offset;
1003       if (Op.isReg()) {
1004         Reg = Op.getReg();
1005       } else {
1006         const TargetFrameLowering *TFI =
1007             AP.MF->getSubtarget().getFrameLowering();
1008         Offset = TFI->getFrameIndexReference(*AP.MF, Op.getIndex(), Reg);
1009       }
1010       if (!Reg) {
1011         // Suppress offset, it is not meaningful here.
1012         OS << "undef";
1013         break;
1014       }
1015       // The second operand is only an offset if it's an immediate.
1016       if (MI->isIndirectDebugValue())
1017         Offset = StackOffset::getFixed(MI->getDebugOffset().getImm());
1018       if (Offset)
1019         OS << '[';
1020       OS << printReg(Reg, AP.MF->getSubtarget().getRegisterInfo());
1021       if (Offset)
1022         OS << '+' << Offset->getFixed() << ']';
1023       break;
1024     }
1025     default:
1026       llvm_unreachable("Unknown operand type");
1027     }
1028   }
1029 
1030   // NOTE: Want this comment at start of line, don't emit with AddComment.
1031   AP.OutStreamer->emitRawComment(OS.str());
1032   return true;
1033 }
1034 
1035 /// This method handles the target-independent form of DBG_LABEL, returning
1036 /// true if it was able to do so.  A false return means the target will need
1037 /// to handle MI in EmitInstruction.
1038 static bool emitDebugLabelComment(const MachineInstr *MI, AsmPrinter &AP) {
1039   if (MI->getNumOperands() != 1)
1040     return false;
1041 
1042   SmallString<128> Str;
1043   raw_svector_ostream OS(Str);
1044   OS << "DEBUG_LABEL: ";
1045 
1046   const DILabel *V = MI->getDebugLabel();
1047   if (auto *SP = dyn_cast<DISubprogram>(
1048           V->getScope()->getNonLexicalBlockFileScope())) {
1049     StringRef Name = SP->getName();
1050     if (!Name.empty())
1051       OS << Name << ":";
1052   }
1053   OS << V->getName();
1054 
1055   // NOTE: Want this comment at start of line, don't emit with AddComment.
1056   AP.OutStreamer->emitRawComment(OS.str());
1057   return true;
1058 }
1059 
1060 AsmPrinter::CFISection
1061 AsmPrinter::getFunctionCFISectionType(const Function &F) const {
1062   // Ignore functions that won't get emitted.
1063   if (F.isDeclarationForLinker())
1064     return CFISection::None;
1065 
1066   if (MAI->getExceptionHandlingType() == ExceptionHandling::DwarfCFI &&
1067       F.needsUnwindTableEntry())
1068     return CFISection::EH;
1069 
1070   if (MMI->hasDebugInfo() || TM.Options.ForceDwarfFrameSection)
1071     return CFISection::Debug;
1072 
1073   return CFISection::None;
1074 }
1075 
1076 AsmPrinter::CFISection
1077 AsmPrinter::getFunctionCFISectionType(const MachineFunction &MF) const {
1078   return getFunctionCFISectionType(MF.getFunction());
1079 }
1080 
1081 bool AsmPrinter::needsSEHMoves() {
1082   return MAI->usesWindowsCFI() && MF->getFunction().needsUnwindTableEntry();
1083 }
1084 
1085 bool AsmPrinter::needsCFIForDebug() const {
1086   return MAI->getExceptionHandlingType() == ExceptionHandling::None &&
1087          MAI->doesUseCFIForDebug() && ModuleCFISection == CFISection::Debug;
1088 }
1089 
1090 void AsmPrinter::emitCFIInstruction(const MachineInstr &MI) {
1091   ExceptionHandling ExceptionHandlingType = MAI->getExceptionHandlingType();
1092   if (!needsCFIForDebug() &&
1093       ExceptionHandlingType != ExceptionHandling::DwarfCFI &&
1094       ExceptionHandlingType != ExceptionHandling::ARM)
1095     return;
1096 
1097   if (getFunctionCFISectionType(*MF) == CFISection::None)
1098     return;
1099 
1100   // If there is no "real" instruction following this CFI instruction, skip
1101   // emitting it; it would be beyond the end of the function's FDE range.
1102   auto *MBB = MI.getParent();
1103   auto I = std::next(MI.getIterator());
1104   while (I != MBB->end() && I->isTransient())
1105     ++I;
1106   if (I == MBB->instr_end() &&
1107       MBB->getReverseIterator() == MBB->getParent()->rbegin())
1108     return;
1109 
1110   const std::vector<MCCFIInstruction> &Instrs = MF->getFrameInstructions();
1111   unsigned CFIIndex = MI.getOperand(0).getCFIIndex();
1112   const MCCFIInstruction &CFI = Instrs[CFIIndex];
1113   emitCFIInstruction(CFI);
1114 }
1115 
1116 void AsmPrinter::emitFrameAlloc(const MachineInstr &MI) {
1117   // The operands are the MCSymbol and the frame offset of the allocation.
1118   MCSymbol *FrameAllocSym = MI.getOperand(0).getMCSymbol();
1119   int FrameOffset = MI.getOperand(1).getImm();
1120 
1121   // Emit a symbol assignment.
1122   OutStreamer->emitAssignment(FrameAllocSym,
1123                              MCConstantExpr::create(FrameOffset, OutContext));
1124 }
1125 
1126 /// Returns the BB metadata to be emitted in the .llvm_bb_addr_map section for a
1127 /// given basic block. This can be used to capture more precise profile
1128 /// information. We use the last 4 bits (LSBs) to encode the following
1129 /// information:
1130 ///  * (1): set if return block (ret or tail call).
1131 ///  * (2): set if ends with a tail call.
1132 ///  * (3): set if exception handling (EH) landing pad.
1133 ///  * (4): set if the block can fall through to its next.
1134 /// The remaining bits are zero.
1135 static unsigned getBBAddrMapMetadata(const MachineBasicBlock &MBB) {
1136   const TargetInstrInfo *TII = MBB.getParent()->getSubtarget().getInstrInfo();
1137   return ((unsigned)MBB.isReturnBlock()) |
1138          ((!MBB.empty() && TII->isTailCall(MBB.back())) << 1) |
1139          (MBB.isEHPad() << 2) |
1140          (const_cast<MachineBasicBlock &>(MBB).canFallThrough() << 3);
1141 }
1142 
1143 void AsmPrinter::emitBBAddrMapSection(const MachineFunction &MF) {
1144   MCSection *BBAddrMapSection =
1145       getObjFileLowering().getBBAddrMapSection(*MF.getSection());
1146   assert(BBAddrMapSection && ".llvm_bb_addr_map section is not initialized.");
1147 
1148   const MCSymbol *FunctionSymbol = getFunctionBegin();
1149 
1150   OutStreamer->PushSection();
1151   OutStreamer->SwitchSection(BBAddrMapSection);
1152   OutStreamer->emitSymbolValue(FunctionSymbol, getPointerSize());
1153   // Emit the total number of basic blocks in this function.
1154   OutStreamer->emitULEB128IntValue(MF.size());
1155   // Emit BB Information for each basic block in the funciton.
1156   for (const MachineBasicBlock &MBB : MF) {
1157     const MCSymbol *MBBSymbol =
1158         MBB.isEntryBlock() ? FunctionSymbol : MBB.getSymbol();
1159     // Emit the basic block offset.
1160     emitLabelDifferenceAsULEB128(MBBSymbol, FunctionSymbol);
1161     // Emit the basic block size. When BBs have alignments, their size cannot
1162     // always be computed from their offsets.
1163     emitLabelDifferenceAsULEB128(MBB.getEndSymbol(), MBBSymbol);
1164     OutStreamer->emitULEB128IntValue(getBBAddrMapMetadata(MBB));
1165   }
1166   OutStreamer->PopSection();
1167 }
1168 
1169 void AsmPrinter::emitPseudoProbe(const MachineInstr &MI) {
1170   auto GUID = MI.getOperand(0).getImm();
1171   auto Index = MI.getOperand(1).getImm();
1172   auto Type = MI.getOperand(2).getImm();
1173   auto Attr = MI.getOperand(3).getImm();
1174   DILocation *DebugLoc = MI.getDebugLoc();
1175   PP->emitPseudoProbe(GUID, Index, Type, Attr, DebugLoc);
1176 }
1177 
1178 void AsmPrinter::emitStackSizeSection(const MachineFunction &MF) {
1179   if (!MF.getTarget().Options.EmitStackSizeSection)
1180     return;
1181 
1182   MCSection *StackSizeSection =
1183       getObjFileLowering().getStackSizesSection(*getCurrentSection());
1184   if (!StackSizeSection)
1185     return;
1186 
1187   const MachineFrameInfo &FrameInfo = MF.getFrameInfo();
1188   // Don't emit functions with dynamic stack allocations.
1189   if (FrameInfo.hasVarSizedObjects())
1190     return;
1191 
1192   OutStreamer->PushSection();
1193   OutStreamer->SwitchSection(StackSizeSection);
1194 
1195   const MCSymbol *FunctionSymbol = getFunctionBegin();
1196   uint64_t StackSize = FrameInfo.getStackSize();
1197   OutStreamer->emitSymbolValue(FunctionSymbol, TM.getProgramPointerSize());
1198   OutStreamer->emitULEB128IntValue(StackSize);
1199 
1200   OutStreamer->PopSection();
1201 }
1202 
1203 void AsmPrinter::emitStackUsage(const MachineFunction &MF) {
1204   const std::string &OutputFilename = MF.getTarget().Options.StackUsageOutput;
1205 
1206   // OutputFilename empty implies -fstack-usage is not passed.
1207   if (OutputFilename.empty())
1208     return;
1209 
1210   const MachineFrameInfo &FrameInfo = MF.getFrameInfo();
1211   uint64_t StackSize = FrameInfo.getStackSize();
1212 
1213   if (StackUsageStream == nullptr) {
1214     std::error_code EC;
1215     StackUsageStream =
1216         std::make_unique<raw_fd_ostream>(OutputFilename, EC, sys::fs::OF_Text);
1217     if (EC) {
1218       errs() << "Could not open file: " << EC.message();
1219       return;
1220     }
1221   }
1222 
1223   *StackUsageStream << MF.getFunction().getParent()->getName();
1224   if (const DISubprogram *DSP = MF.getFunction().getSubprogram())
1225     *StackUsageStream << ':' << DSP->getLine();
1226 
1227   *StackUsageStream << ':' << MF.getName() << '\t' << StackSize << '\t';
1228   if (FrameInfo.hasVarSizedObjects())
1229     *StackUsageStream << "dynamic\n";
1230   else
1231     *StackUsageStream << "static\n";
1232 }
1233 
1234 static bool needFuncLabelsForEHOrDebugInfo(const MachineFunction &MF) {
1235   MachineModuleInfo &MMI = MF.getMMI();
1236   if (!MF.getLandingPads().empty() || MF.hasEHFunclets() || MMI.hasDebugInfo())
1237     return true;
1238 
1239   // We might emit an EH table that uses function begin and end labels even if
1240   // we don't have any landingpads.
1241   if (!MF.getFunction().hasPersonalityFn())
1242     return false;
1243   return !isNoOpWithoutInvoke(
1244       classifyEHPersonality(MF.getFunction().getPersonalityFn()));
1245 }
1246 
1247 /// EmitFunctionBody - This method emits the body and trailer for a
1248 /// function.
1249 void AsmPrinter::emitFunctionBody() {
1250   emitFunctionHeader();
1251 
1252   // Emit target-specific gunk before the function body.
1253   emitFunctionBodyStart();
1254 
1255   if (isVerbose()) {
1256     // Get MachineDominatorTree or compute it on the fly if it's unavailable
1257     MDT = getAnalysisIfAvailable<MachineDominatorTree>();
1258     if (!MDT) {
1259       OwnedMDT = std::make_unique<MachineDominatorTree>();
1260       OwnedMDT->getBase().recalculate(*MF);
1261       MDT = OwnedMDT.get();
1262     }
1263 
1264     // Get MachineLoopInfo or compute it on the fly if it's unavailable
1265     MLI = getAnalysisIfAvailable<MachineLoopInfo>();
1266     if (!MLI) {
1267       OwnedMLI = std::make_unique<MachineLoopInfo>();
1268       OwnedMLI->getBase().analyze(MDT->getBase());
1269       MLI = OwnedMLI.get();
1270     }
1271   }
1272 
1273   // Print out code for the function.
1274   bool HasAnyRealCode = false;
1275   int NumInstsInFunction = 0;
1276 
1277   bool CanDoExtraAnalysis = ORE->allowExtraAnalysis(DEBUG_TYPE);
1278   for (auto &MBB : *MF) {
1279     // Print a label for the basic block.
1280     emitBasicBlockStart(MBB);
1281     DenseMap<StringRef, unsigned> MnemonicCounts;
1282     for (auto &MI : MBB) {
1283       // Print the assembly for the instruction.
1284       if (!MI.isPosition() && !MI.isImplicitDef() && !MI.isKill() &&
1285           !MI.isDebugInstr()) {
1286         HasAnyRealCode = true;
1287         ++NumInstsInFunction;
1288       }
1289 
1290       // If there is a pre-instruction symbol, emit a label for it here.
1291       if (MCSymbol *S = MI.getPreInstrSymbol())
1292         OutStreamer->emitLabel(S);
1293 
1294       for (const HandlerInfo &HI : Handlers) {
1295         NamedRegionTimer T(HI.TimerName, HI.TimerDescription, HI.TimerGroupName,
1296                            HI.TimerGroupDescription, TimePassesIsEnabled);
1297         HI.Handler->beginInstruction(&MI);
1298       }
1299 
1300       if (isVerbose())
1301         emitComments(MI, OutStreamer->GetCommentOS());
1302 
1303       switch (MI.getOpcode()) {
1304       case TargetOpcode::CFI_INSTRUCTION:
1305         emitCFIInstruction(MI);
1306         break;
1307       case TargetOpcode::LOCAL_ESCAPE:
1308         emitFrameAlloc(MI);
1309         break;
1310       case TargetOpcode::ANNOTATION_LABEL:
1311       case TargetOpcode::EH_LABEL:
1312       case TargetOpcode::GC_LABEL:
1313         OutStreamer->emitLabel(MI.getOperand(0).getMCSymbol());
1314         break;
1315       case TargetOpcode::INLINEASM:
1316       case TargetOpcode::INLINEASM_BR:
1317         emitInlineAsm(&MI);
1318         break;
1319       case TargetOpcode::DBG_VALUE:
1320       case TargetOpcode::DBG_VALUE_LIST:
1321         if (isVerbose()) {
1322           if (!emitDebugValueComment(&MI, *this))
1323             emitInstruction(&MI);
1324         }
1325         break;
1326       case TargetOpcode::DBG_INSTR_REF:
1327         // This instruction reference will have been resolved to a machine
1328         // location, and a nearby DBG_VALUE created. We can safely ignore
1329         // the instruction reference.
1330         break;
1331       case TargetOpcode::DBG_PHI:
1332         // This instruction is only used to label a program point, it's purely
1333         // meta information.
1334         break;
1335       case TargetOpcode::DBG_LABEL:
1336         if (isVerbose()) {
1337           if (!emitDebugLabelComment(&MI, *this))
1338             emitInstruction(&MI);
1339         }
1340         break;
1341       case TargetOpcode::IMPLICIT_DEF:
1342         if (isVerbose()) emitImplicitDef(&MI);
1343         break;
1344       case TargetOpcode::KILL:
1345         if (isVerbose()) emitKill(&MI, *this);
1346         break;
1347       case TargetOpcode::PSEUDO_PROBE:
1348         emitPseudoProbe(MI);
1349         break;
1350       case TargetOpcode::ARITH_FENCE:
1351         if (isVerbose())
1352           OutStreamer->emitRawComment("ARITH_FENCE");
1353         break;
1354       default:
1355         emitInstruction(&MI);
1356         if (CanDoExtraAnalysis) {
1357           MCInst MCI;
1358           MCI.setOpcode(MI.getOpcode());
1359           auto Name = OutStreamer->getMnemonic(MCI);
1360           auto I = MnemonicCounts.insert({Name, 0u});
1361           I.first->second++;
1362         }
1363         break;
1364       }
1365 
1366       // If there is a post-instruction symbol, emit a label for it here.
1367       if (MCSymbol *S = MI.getPostInstrSymbol())
1368         OutStreamer->emitLabel(S);
1369 
1370       for (const HandlerInfo &HI : Handlers) {
1371         NamedRegionTimer T(HI.TimerName, HI.TimerDescription, HI.TimerGroupName,
1372                            HI.TimerGroupDescription, TimePassesIsEnabled);
1373         HI.Handler->endInstruction();
1374       }
1375     }
1376 
1377     // We must emit temporary symbol for the end of this basic block, if either
1378     // we have BBLabels enabled or if this basic blocks marks the end of a
1379     // section.
1380     if (MF->hasBBLabels() ||
1381         (MAI->hasDotTypeDotSizeDirective() && MBB.isEndSection()))
1382       OutStreamer->emitLabel(MBB.getEndSymbol());
1383 
1384     if (MBB.isEndSection()) {
1385       // The size directive for the section containing the entry block is
1386       // handled separately by the function section.
1387       if (!MBB.sameSection(&MF->front())) {
1388         if (MAI->hasDotTypeDotSizeDirective()) {
1389           // Emit the size directive for the basic block section.
1390           const MCExpr *SizeExp = MCBinaryExpr::createSub(
1391               MCSymbolRefExpr::create(MBB.getEndSymbol(), OutContext),
1392               MCSymbolRefExpr::create(CurrentSectionBeginSym, OutContext),
1393               OutContext);
1394           OutStreamer->emitELFSize(CurrentSectionBeginSym, SizeExp);
1395         }
1396         MBBSectionRanges[MBB.getSectionIDNum()] =
1397             MBBSectionRange{CurrentSectionBeginSym, MBB.getEndSymbol()};
1398       }
1399     }
1400     emitBasicBlockEnd(MBB);
1401 
1402     if (CanDoExtraAnalysis) {
1403       // Skip empty blocks.
1404       if (MBB.empty())
1405         continue;
1406 
1407       MachineOptimizationRemarkAnalysis R(DEBUG_TYPE, "InstructionMix",
1408                                           MBB.begin()->getDebugLoc(), &MBB);
1409 
1410       // Generate instruction mix remark. First, sort counts in descending order
1411       // by count and name.
1412       SmallVector<std::pair<StringRef, unsigned>, 128> MnemonicVec;
1413       for (auto &KV : MnemonicCounts)
1414         MnemonicVec.emplace_back(KV.first, KV.second);
1415 
1416       sort(MnemonicVec, [](const std::pair<StringRef, unsigned> &A,
1417                            const std::pair<StringRef, unsigned> &B) {
1418         if (A.second > B.second)
1419           return true;
1420         if (A.second == B.second)
1421           return StringRef(A.first) < StringRef(B.first);
1422         return false;
1423       });
1424       R << "BasicBlock: " << ore::NV("BasicBlock", MBB.getName()) << "\n";
1425       for (auto &KV : MnemonicVec) {
1426         auto Name = (Twine("INST_") + getToken(KV.first.trim()).first).str();
1427         R << KV.first << ": " << ore::NV(Name, KV.second) << "\n";
1428       }
1429       ORE->emit(R);
1430     }
1431   }
1432 
1433   EmittedInsts += NumInstsInFunction;
1434   MachineOptimizationRemarkAnalysis R(DEBUG_TYPE, "InstructionCount",
1435                                       MF->getFunction().getSubprogram(),
1436                                       &MF->front());
1437   R << ore::NV("NumInstructions", NumInstsInFunction)
1438     << " instructions in function";
1439   ORE->emit(R);
1440 
1441   // If the function is empty and the object file uses .subsections_via_symbols,
1442   // then we need to emit *something* to the function body to prevent the
1443   // labels from collapsing together.  Just emit a noop.
1444   // Similarly, don't emit empty functions on Windows either. It can lead to
1445   // duplicate entries (two functions with the same RVA) in the Guard CF Table
1446   // after linking, causing the kernel not to load the binary:
1447   // https://developercommunity.visualstudio.com/content/problem/45366/vc-linker-creates-invalid-dll-with-clang-cl.html
1448   // FIXME: Hide this behind some API in e.g. MCAsmInfo or MCTargetStreamer.
1449   const Triple &TT = TM.getTargetTriple();
1450   if (!HasAnyRealCode && (MAI->hasSubsectionsViaSymbols() ||
1451                           (TT.isOSWindows() && TT.isOSBinFormatCOFF()))) {
1452     MCInst Noop = MF->getSubtarget().getInstrInfo()->getNop();
1453 
1454     // Targets can opt-out of emitting the noop here by leaving the opcode
1455     // unspecified.
1456     if (Noop.getOpcode()) {
1457       OutStreamer->AddComment("avoids zero-length function");
1458       emitNops(1);
1459     }
1460   }
1461 
1462   // Switch to the original section in case basic block sections was used.
1463   OutStreamer->SwitchSection(MF->getSection());
1464 
1465   const Function &F = MF->getFunction();
1466   for (const auto &BB : F) {
1467     if (!BB.hasAddressTaken())
1468       continue;
1469     MCSymbol *Sym = GetBlockAddressSymbol(&BB);
1470     if (Sym->isDefined())
1471       continue;
1472     OutStreamer->AddComment("Address of block that was removed by CodeGen");
1473     OutStreamer->emitLabel(Sym);
1474   }
1475 
1476   // Emit target-specific gunk after the function body.
1477   emitFunctionBodyEnd();
1478 
1479   if (needFuncLabelsForEHOrDebugInfo(*MF) ||
1480       MAI->hasDotTypeDotSizeDirective()) {
1481     // Create a symbol for the end of function.
1482     CurrentFnEnd = createTempSymbol("func_end");
1483     OutStreamer->emitLabel(CurrentFnEnd);
1484   }
1485 
1486   // If the target wants a .size directive for the size of the function, emit
1487   // it.
1488   if (MAI->hasDotTypeDotSizeDirective()) {
1489     // We can get the size as difference between the function label and the
1490     // temp label.
1491     const MCExpr *SizeExp = MCBinaryExpr::createSub(
1492         MCSymbolRefExpr::create(CurrentFnEnd, OutContext),
1493         MCSymbolRefExpr::create(CurrentFnSymForSize, OutContext), OutContext);
1494     OutStreamer->emitELFSize(CurrentFnSym, SizeExp);
1495   }
1496 
1497   for (const HandlerInfo &HI : Handlers) {
1498     NamedRegionTimer T(HI.TimerName, HI.TimerDescription, HI.TimerGroupName,
1499                        HI.TimerGroupDescription, TimePassesIsEnabled);
1500     HI.Handler->markFunctionEnd();
1501   }
1502 
1503   MBBSectionRanges[MF->front().getSectionIDNum()] =
1504       MBBSectionRange{CurrentFnBegin, CurrentFnEnd};
1505 
1506   // Print out jump tables referenced by the function.
1507   emitJumpTableInfo();
1508 
1509   // Emit post-function debug and/or EH information.
1510   for (const HandlerInfo &HI : Handlers) {
1511     NamedRegionTimer T(HI.TimerName, HI.TimerDescription, HI.TimerGroupName,
1512                        HI.TimerGroupDescription, TimePassesIsEnabled);
1513     HI.Handler->endFunction(MF);
1514   }
1515 
1516   // Emit section containing BB address offsets and their metadata, when
1517   // BB labels are requested for this function. Skip empty functions.
1518   if (MF->hasBBLabels() && HasAnyRealCode)
1519     emitBBAddrMapSection(*MF);
1520 
1521   // Emit section containing stack size metadata.
1522   emitStackSizeSection(*MF);
1523 
1524   // Emit .su file containing function stack size information.
1525   emitStackUsage(*MF);
1526 
1527   emitPatchableFunctionEntries();
1528 
1529   if (isVerbose())
1530     OutStreamer->GetCommentOS() << "-- End function\n";
1531 
1532   OutStreamer->AddBlankLine();
1533 }
1534 
1535 /// Compute the number of Global Variables that uses a Constant.
1536 static unsigned getNumGlobalVariableUses(const Constant *C) {
1537   if (!C)
1538     return 0;
1539 
1540   if (isa<GlobalVariable>(C))
1541     return 1;
1542 
1543   unsigned NumUses = 0;
1544   for (auto *CU : C->users())
1545     NumUses += getNumGlobalVariableUses(dyn_cast<Constant>(CU));
1546 
1547   return NumUses;
1548 }
1549 
1550 /// Only consider global GOT equivalents if at least one user is a
1551 /// cstexpr inside an initializer of another global variables. Also, don't
1552 /// handle cstexpr inside instructions. During global variable emission,
1553 /// candidates are skipped and are emitted later in case at least one cstexpr
1554 /// isn't replaced by a PC relative GOT entry access.
1555 static bool isGOTEquivalentCandidate(const GlobalVariable *GV,
1556                                      unsigned &NumGOTEquivUsers) {
1557   // Global GOT equivalents are unnamed private globals with a constant
1558   // pointer initializer to another global symbol. They must point to a
1559   // GlobalVariable or Function, i.e., as GlobalValue.
1560   if (!GV->hasGlobalUnnamedAddr() || !GV->hasInitializer() ||
1561       !GV->isConstant() || !GV->isDiscardableIfUnused() ||
1562       !isa<GlobalValue>(GV->getOperand(0)))
1563     return false;
1564 
1565   // To be a got equivalent, at least one of its users need to be a constant
1566   // expression used by another global variable.
1567   for (auto *U : GV->users())
1568     NumGOTEquivUsers += getNumGlobalVariableUses(dyn_cast<Constant>(U));
1569 
1570   return NumGOTEquivUsers > 0;
1571 }
1572 
1573 /// Unnamed constant global variables solely contaning a pointer to
1574 /// another globals variable is equivalent to a GOT table entry; it contains the
1575 /// the address of another symbol. Optimize it and replace accesses to these
1576 /// "GOT equivalents" by using the GOT entry for the final global instead.
1577 /// Compute GOT equivalent candidates among all global variables to avoid
1578 /// emitting them if possible later on, after it use is replaced by a GOT entry
1579 /// access.
1580 void AsmPrinter::computeGlobalGOTEquivs(Module &M) {
1581   if (!getObjFileLowering().supportIndirectSymViaGOTPCRel())
1582     return;
1583 
1584   for (const auto &G : M.globals()) {
1585     unsigned NumGOTEquivUsers = 0;
1586     if (!isGOTEquivalentCandidate(&G, NumGOTEquivUsers))
1587       continue;
1588 
1589     const MCSymbol *GOTEquivSym = getSymbol(&G);
1590     GlobalGOTEquivs[GOTEquivSym] = std::make_pair(&G, NumGOTEquivUsers);
1591   }
1592 }
1593 
1594 /// Constant expressions using GOT equivalent globals may not be eligible
1595 /// for PC relative GOT entry conversion, in such cases we need to emit such
1596 /// globals we previously omitted in EmitGlobalVariable.
1597 void AsmPrinter::emitGlobalGOTEquivs() {
1598   if (!getObjFileLowering().supportIndirectSymViaGOTPCRel())
1599     return;
1600 
1601   SmallVector<const GlobalVariable *, 8> FailedCandidates;
1602   for (auto &I : GlobalGOTEquivs) {
1603     const GlobalVariable *GV = I.second.first;
1604     unsigned Cnt = I.second.second;
1605     if (Cnt)
1606       FailedCandidates.push_back(GV);
1607   }
1608   GlobalGOTEquivs.clear();
1609 
1610   for (auto *GV : FailedCandidates)
1611     emitGlobalVariable(GV);
1612 }
1613 
1614 void AsmPrinter::emitGlobalAlias(Module &M, const GlobalAlias &GA) {
1615   MCSymbol *Name = getSymbol(&GA);
1616   bool IsFunction = GA.getValueType()->isFunctionTy();
1617   // Treat bitcasts of functions as functions also. This is important at least
1618   // on WebAssembly where object and function addresses can't alias each other.
1619   if (!IsFunction)
1620     IsFunction = isa<Function>(GA.getAliasee()->stripPointerCasts());
1621 
1622   // AIX's assembly directive `.set` is not usable for aliasing purpose,
1623   // so AIX has to use the extra-label-at-definition strategy. At this
1624   // point, all the extra label is emitted, we just have to emit linkage for
1625   // those labels.
1626   if (TM.getTargetTriple().isOSBinFormatXCOFF()) {
1627     assert(MAI->hasVisibilityOnlyWithLinkage() &&
1628            "Visibility should be handled with emitLinkage() on AIX.");
1629     emitLinkage(&GA, Name);
1630     // If it's a function, also emit linkage for aliases of function entry
1631     // point.
1632     if (IsFunction)
1633       emitLinkage(&GA,
1634                   getObjFileLowering().getFunctionEntryPointSymbol(&GA, TM));
1635     return;
1636   }
1637 
1638   if (GA.hasExternalLinkage() || !MAI->getWeakRefDirective())
1639     OutStreamer->emitSymbolAttribute(Name, MCSA_Global);
1640   else if (GA.hasWeakLinkage() || GA.hasLinkOnceLinkage())
1641     OutStreamer->emitSymbolAttribute(Name, MCSA_WeakReference);
1642   else
1643     assert(GA.hasLocalLinkage() && "Invalid alias linkage");
1644 
1645   // Set the symbol type to function if the alias has a function type.
1646   // This affects codegen when the aliasee is not a function.
1647   if (IsFunction) {
1648     OutStreamer->emitSymbolAttribute(Name, MCSA_ELF_TypeFunction);
1649     if (TM.getTargetTriple().isOSBinFormatCOFF()) {
1650       OutStreamer->BeginCOFFSymbolDef(Name);
1651       OutStreamer->EmitCOFFSymbolStorageClass(
1652           GA.hasLocalLinkage() ? COFF::IMAGE_SYM_CLASS_STATIC
1653                                : COFF::IMAGE_SYM_CLASS_EXTERNAL);
1654       OutStreamer->EmitCOFFSymbolType(COFF::IMAGE_SYM_DTYPE_FUNCTION
1655                                       << COFF::SCT_COMPLEX_TYPE_SHIFT);
1656       OutStreamer->EndCOFFSymbolDef();
1657     }
1658   }
1659 
1660   emitVisibility(Name, GA.getVisibility());
1661 
1662   const MCExpr *Expr = lowerConstant(GA.getAliasee());
1663 
1664   if (MAI->hasAltEntry() && isa<MCBinaryExpr>(Expr))
1665     OutStreamer->emitSymbolAttribute(Name, MCSA_AltEntry);
1666 
1667   // Emit the directives as assignments aka .set:
1668   OutStreamer->emitAssignment(Name, Expr);
1669   MCSymbol *LocalAlias = getSymbolPreferLocal(GA);
1670   if (LocalAlias != Name)
1671     OutStreamer->emitAssignment(LocalAlias, Expr);
1672 
1673   // If the aliasee does not correspond to a symbol in the output, i.e. the
1674   // alias is not of an object or the aliased object is private, then set the
1675   // size of the alias symbol from the type of the alias. We don't do this in
1676   // other situations as the alias and aliasee having differing types but same
1677   // size may be intentional.
1678   const GlobalObject *BaseObject = GA.getAliaseeObject();
1679   if (MAI->hasDotTypeDotSizeDirective() && GA.getValueType()->isSized() &&
1680       (!BaseObject || BaseObject->hasPrivateLinkage())) {
1681     const DataLayout &DL = M.getDataLayout();
1682     uint64_t Size = DL.getTypeAllocSize(GA.getValueType());
1683     OutStreamer->emitELFSize(Name, MCConstantExpr::create(Size, OutContext));
1684   }
1685 }
1686 
1687 void AsmPrinter::emitGlobalIFunc(Module &M, const GlobalIFunc &GI) {
1688   assert(!TM.getTargetTriple().isOSBinFormatXCOFF() &&
1689          "IFunc is not supported on AIX.");
1690 
1691   MCSymbol *Name = getSymbol(&GI);
1692 
1693   if (GI.hasExternalLinkage() || !MAI->getWeakRefDirective())
1694     OutStreamer->emitSymbolAttribute(Name, MCSA_Global);
1695   else if (GI.hasWeakLinkage() || GI.hasLinkOnceLinkage())
1696     OutStreamer->emitSymbolAttribute(Name, MCSA_WeakReference);
1697   else
1698     assert(GI.hasLocalLinkage() && "Invalid ifunc linkage");
1699 
1700   OutStreamer->emitSymbolAttribute(Name, MCSA_ELF_TypeIndFunction);
1701   emitVisibility(Name, GI.getVisibility());
1702 
1703   // Emit the directives as assignments aka .set:
1704   const MCExpr *Expr = lowerConstant(GI.getResolver());
1705   OutStreamer->emitAssignment(Name, Expr);
1706   MCSymbol *LocalAlias = getSymbolPreferLocal(GI);
1707   if (LocalAlias != Name)
1708     OutStreamer->emitAssignment(LocalAlias, Expr);
1709 }
1710 
1711 void AsmPrinter::emitRemarksSection(remarks::RemarkStreamer &RS) {
1712   if (!RS.needsSection())
1713     return;
1714 
1715   remarks::RemarkSerializer &RemarkSerializer = RS.getSerializer();
1716 
1717   Optional<SmallString<128>> Filename;
1718   if (Optional<StringRef> FilenameRef = RS.getFilename()) {
1719     Filename = *FilenameRef;
1720     sys::fs::make_absolute(*Filename);
1721     assert(!Filename->empty() && "The filename can't be empty.");
1722   }
1723 
1724   std::string Buf;
1725   raw_string_ostream OS(Buf);
1726   std::unique_ptr<remarks::MetaSerializer> MetaSerializer =
1727       Filename ? RemarkSerializer.metaSerializer(OS, Filename->str())
1728                : RemarkSerializer.metaSerializer(OS);
1729   MetaSerializer->emit();
1730 
1731   // Switch to the remarks section.
1732   MCSection *RemarksSection =
1733       OutContext.getObjectFileInfo()->getRemarksSection();
1734   OutStreamer->SwitchSection(RemarksSection);
1735 
1736   OutStreamer->emitBinaryData(OS.str());
1737 }
1738 
1739 bool AsmPrinter::doFinalization(Module &M) {
1740   // Set the MachineFunction to nullptr so that we can catch attempted
1741   // accesses to MF specific features at the module level and so that
1742   // we can conditionalize accesses based on whether or not it is nullptr.
1743   MF = nullptr;
1744 
1745   // Gather all GOT equivalent globals in the module. We really need two
1746   // passes over the globals: one to compute and another to avoid its emission
1747   // in EmitGlobalVariable, otherwise we would not be able to handle cases
1748   // where the got equivalent shows up before its use.
1749   computeGlobalGOTEquivs(M);
1750 
1751   // Emit global variables.
1752   for (const auto &G : M.globals())
1753     emitGlobalVariable(&G);
1754 
1755   // Emit remaining GOT equivalent globals.
1756   emitGlobalGOTEquivs();
1757 
1758   const TargetLoweringObjectFile &TLOF = getObjFileLowering();
1759 
1760   // Emit linkage(XCOFF) and visibility info for declarations
1761   for (const Function &F : M) {
1762     if (!F.isDeclarationForLinker())
1763       continue;
1764 
1765     MCSymbol *Name = getSymbol(&F);
1766     // Function getSymbol gives us the function descriptor symbol for XCOFF.
1767 
1768     if (!TM.getTargetTriple().isOSBinFormatXCOFF()) {
1769       GlobalValue::VisibilityTypes V = F.getVisibility();
1770       if (V == GlobalValue::DefaultVisibility)
1771         continue;
1772 
1773       emitVisibility(Name, V, false);
1774       continue;
1775     }
1776 
1777     if (F.isIntrinsic())
1778       continue;
1779 
1780     // Handle the XCOFF case.
1781     // Variable `Name` is the function descriptor symbol (see above). Get the
1782     // function entry point symbol.
1783     MCSymbol *FnEntryPointSym = TLOF.getFunctionEntryPointSymbol(&F, TM);
1784     // Emit linkage for the function entry point.
1785     emitLinkage(&F, FnEntryPointSym);
1786 
1787     // Emit linkage for the function descriptor.
1788     emitLinkage(&F, Name);
1789   }
1790 
1791   // Emit the remarks section contents.
1792   // FIXME: Figure out when is the safest time to emit this section. It should
1793   // not come after debug info.
1794   if (remarks::RemarkStreamer *RS = M.getContext().getMainRemarkStreamer())
1795     emitRemarksSection(*RS);
1796 
1797   TLOF.emitModuleMetadata(*OutStreamer, M);
1798 
1799   if (TM.getTargetTriple().isOSBinFormatELF()) {
1800     MachineModuleInfoELF &MMIELF = MMI->getObjFileInfo<MachineModuleInfoELF>();
1801 
1802     // Output stubs for external and common global variables.
1803     MachineModuleInfoELF::SymbolListTy Stubs = MMIELF.GetGVStubList();
1804     if (!Stubs.empty()) {
1805       OutStreamer->SwitchSection(TLOF.getDataSection());
1806       const DataLayout &DL = M.getDataLayout();
1807 
1808       emitAlignment(Align(DL.getPointerSize()));
1809       for (const auto &Stub : Stubs) {
1810         OutStreamer->emitLabel(Stub.first);
1811         OutStreamer->emitSymbolValue(Stub.second.getPointer(),
1812                                      DL.getPointerSize());
1813       }
1814     }
1815   }
1816 
1817   if (TM.getTargetTriple().isOSBinFormatCOFF()) {
1818     MachineModuleInfoCOFF &MMICOFF =
1819         MMI->getObjFileInfo<MachineModuleInfoCOFF>();
1820 
1821     // Output stubs for external and common global variables.
1822     MachineModuleInfoCOFF::SymbolListTy Stubs = MMICOFF.GetGVStubList();
1823     if (!Stubs.empty()) {
1824       const DataLayout &DL = M.getDataLayout();
1825 
1826       for (const auto &Stub : Stubs) {
1827         SmallString<256> SectionName = StringRef(".rdata$");
1828         SectionName += Stub.first->getName();
1829         OutStreamer->SwitchSection(OutContext.getCOFFSection(
1830             SectionName,
1831             COFF::IMAGE_SCN_CNT_INITIALIZED_DATA | COFF::IMAGE_SCN_MEM_READ |
1832                 COFF::IMAGE_SCN_LNK_COMDAT,
1833             SectionKind::getReadOnly(), Stub.first->getName(),
1834             COFF::IMAGE_COMDAT_SELECT_ANY));
1835         emitAlignment(Align(DL.getPointerSize()));
1836         OutStreamer->emitSymbolAttribute(Stub.first, MCSA_Global);
1837         OutStreamer->emitLabel(Stub.first);
1838         OutStreamer->emitSymbolValue(Stub.second.getPointer(),
1839                                      DL.getPointerSize());
1840       }
1841     }
1842   }
1843 
1844   // This needs to happen before emitting debug information since that can end
1845   // arbitrary sections.
1846   if (auto *TS = OutStreamer->getTargetStreamer())
1847     TS->emitConstantPools();
1848 
1849   // Finalize debug and EH information.
1850   for (const HandlerInfo &HI : Handlers) {
1851     NamedRegionTimer T(HI.TimerName, HI.TimerDescription, HI.TimerGroupName,
1852                        HI.TimerGroupDescription, TimePassesIsEnabled);
1853     HI.Handler->endModule();
1854   }
1855 
1856   // This deletes all the ephemeral handlers that AsmPrinter added, while
1857   // keeping all the user-added handlers alive until the AsmPrinter is
1858   // destroyed.
1859   Handlers.erase(Handlers.begin() + NumUserHandlers, Handlers.end());
1860   DD = nullptr;
1861 
1862   // If the target wants to know about weak references, print them all.
1863   if (MAI->getWeakRefDirective()) {
1864     // FIXME: This is not lazy, it would be nice to only print weak references
1865     // to stuff that is actually used.  Note that doing so would require targets
1866     // to notice uses in operands (due to constant exprs etc).  This should
1867     // happen with the MC stuff eventually.
1868 
1869     // Print out module-level global objects here.
1870     for (const auto &GO : M.global_objects()) {
1871       if (!GO.hasExternalWeakLinkage())
1872         continue;
1873       OutStreamer->emitSymbolAttribute(getSymbol(&GO), MCSA_WeakReference);
1874     }
1875     if (shouldEmitWeakSwiftAsyncExtendedFramePointerFlags()) {
1876       auto SymbolName = "swift_async_extendedFramePointerFlags";
1877       auto Global = M.getGlobalVariable(SymbolName);
1878       if (!Global) {
1879         auto Int8PtrTy = Type::getInt8PtrTy(M.getContext());
1880         Global = new GlobalVariable(M, Int8PtrTy, false,
1881                                     GlobalValue::ExternalWeakLinkage, nullptr,
1882                                     SymbolName);
1883         OutStreamer->emitSymbolAttribute(getSymbol(Global), MCSA_WeakReference);
1884       }
1885     }
1886   }
1887 
1888   // Print aliases in topological order, that is, for each alias a = b,
1889   // b must be printed before a.
1890   // This is because on some targets (e.g. PowerPC) linker expects aliases in
1891   // such an order to generate correct TOC information.
1892   SmallVector<const GlobalAlias *, 16> AliasStack;
1893   SmallPtrSet<const GlobalAlias *, 16> AliasVisited;
1894   for (const auto &Alias : M.aliases()) {
1895     for (const GlobalAlias *Cur = &Alias; Cur;
1896          Cur = dyn_cast<GlobalAlias>(Cur->getAliasee())) {
1897       if (!AliasVisited.insert(Cur).second)
1898         break;
1899       AliasStack.push_back(Cur);
1900     }
1901     for (const GlobalAlias *AncestorAlias : llvm::reverse(AliasStack))
1902       emitGlobalAlias(M, *AncestorAlias);
1903     AliasStack.clear();
1904   }
1905   for (const auto &IFunc : M.ifuncs())
1906     emitGlobalIFunc(M, IFunc);
1907 
1908   GCModuleInfo *MI = getAnalysisIfAvailable<GCModuleInfo>();
1909   assert(MI && "AsmPrinter didn't require GCModuleInfo?");
1910   for (GCModuleInfo::iterator I = MI->end(), E = MI->begin(); I != E; )
1911     if (GCMetadataPrinter *MP = GetOrCreateGCPrinter(**--I))
1912       MP->finishAssembly(M, *MI, *this);
1913 
1914   // Emit llvm.ident metadata in an '.ident' directive.
1915   emitModuleIdents(M);
1916 
1917   // Emit bytes for llvm.commandline metadata.
1918   emitModuleCommandLines(M);
1919 
1920   // Emit __morestack address if needed for indirect calls.
1921   if (MMI->usesMorestackAddr()) {
1922     Align Alignment(1);
1923     MCSection *ReadOnlySection = getObjFileLowering().getSectionForConstant(
1924         getDataLayout(), SectionKind::getReadOnly(),
1925         /*C=*/nullptr, Alignment);
1926     OutStreamer->SwitchSection(ReadOnlySection);
1927 
1928     MCSymbol *AddrSymbol =
1929         OutContext.getOrCreateSymbol(StringRef("__morestack_addr"));
1930     OutStreamer->emitLabel(AddrSymbol);
1931 
1932     unsigned PtrSize = MAI->getCodePointerSize();
1933     OutStreamer->emitSymbolValue(GetExternalSymbolSymbol("__morestack"),
1934                                  PtrSize);
1935   }
1936 
1937   // Emit .note.GNU-split-stack and .note.GNU-no-split-stack sections if
1938   // split-stack is used.
1939   if (TM.getTargetTriple().isOSBinFormatELF() && MMI->hasSplitStack()) {
1940     OutStreamer->SwitchSection(
1941         OutContext.getELFSection(".note.GNU-split-stack", ELF::SHT_PROGBITS, 0));
1942     if (MMI->hasNosplitStack())
1943       OutStreamer->SwitchSection(
1944           OutContext.getELFSection(".note.GNU-no-split-stack", ELF::SHT_PROGBITS, 0));
1945   }
1946 
1947   // If we don't have any trampolines, then we don't require stack memory
1948   // to be executable. Some targets have a directive to declare this.
1949   Function *InitTrampolineIntrinsic = M.getFunction("llvm.init.trampoline");
1950   if (!InitTrampolineIntrinsic || InitTrampolineIntrinsic->use_empty())
1951     if (MCSection *S = MAI->getNonexecutableStackSection(OutContext))
1952       OutStreamer->SwitchSection(S);
1953 
1954   if (TM.Options.EmitAddrsig) {
1955     // Emit address-significance attributes for all globals.
1956     OutStreamer->emitAddrsig();
1957     for (const GlobalValue &GV : M.global_values()) {
1958       if (!GV.use_empty() && !GV.isTransitiveUsedByMetadataOnly() &&
1959           !GV.isThreadLocal() && !GV.hasDLLImportStorageClass() &&
1960           !GV.getName().startswith("llvm.") && !GV.hasAtLeastLocalUnnamedAddr())
1961         OutStreamer->emitAddrsigSym(getSymbol(&GV));
1962     }
1963   }
1964 
1965   // Emit symbol partition specifications (ELF only).
1966   if (TM.getTargetTriple().isOSBinFormatELF()) {
1967     unsigned UniqueID = 0;
1968     for (const GlobalValue &GV : M.global_values()) {
1969       if (!GV.hasPartition() || GV.isDeclarationForLinker() ||
1970           GV.getVisibility() != GlobalValue::DefaultVisibility)
1971         continue;
1972 
1973       OutStreamer->SwitchSection(
1974           OutContext.getELFSection(".llvm_sympart", ELF::SHT_LLVM_SYMPART, 0, 0,
1975                                    "", false, ++UniqueID, nullptr));
1976       OutStreamer->emitBytes(GV.getPartition());
1977       OutStreamer->emitZeros(1);
1978       OutStreamer->emitValue(
1979           MCSymbolRefExpr::create(getSymbol(&GV), OutContext),
1980           MAI->getCodePointerSize());
1981     }
1982   }
1983 
1984   // Allow the target to emit any magic that it wants at the end of the file,
1985   // after everything else has gone out.
1986   emitEndOfAsmFile(M);
1987 
1988   MMI = nullptr;
1989 
1990   OutStreamer->Finish();
1991   OutStreamer->reset();
1992   OwnedMLI.reset();
1993   OwnedMDT.reset();
1994 
1995   return false;
1996 }
1997 
1998 MCSymbol *AsmPrinter::getMBBExceptionSym(const MachineBasicBlock &MBB) {
1999   auto Res = MBBSectionExceptionSyms.try_emplace(MBB.getSectionIDNum());
2000   if (Res.second)
2001     Res.first->second = createTempSymbol("exception");
2002   return Res.first->second;
2003 }
2004 
2005 void AsmPrinter::SetupMachineFunction(MachineFunction &MF) {
2006   this->MF = &MF;
2007   const Function &F = MF.getFunction();
2008 
2009   // Get the function symbol.
2010   if (!MAI->needsFunctionDescriptors()) {
2011     CurrentFnSym = getSymbol(&MF.getFunction());
2012   } else {
2013     assert(TM.getTargetTriple().isOSAIX() &&
2014            "Only AIX uses the function descriptor hooks.");
2015     // AIX is unique here in that the name of the symbol emitted for the
2016     // function body does not have the same name as the source function's
2017     // C-linkage name.
2018     assert(CurrentFnDescSym && "The function descriptor symbol needs to be"
2019                                " initalized first.");
2020 
2021     // Get the function entry point symbol.
2022     CurrentFnSym = getObjFileLowering().getFunctionEntryPointSymbol(&F, TM);
2023   }
2024 
2025   CurrentFnSymForSize = CurrentFnSym;
2026   CurrentFnBegin = nullptr;
2027   CurrentSectionBeginSym = nullptr;
2028   MBBSectionRanges.clear();
2029   MBBSectionExceptionSyms.clear();
2030   bool NeedsLocalForSize = MAI->needsLocalForSize();
2031   if (F.hasFnAttribute("patchable-function-entry") ||
2032       F.hasFnAttribute("function-instrument") ||
2033       F.hasFnAttribute("xray-instruction-threshold") ||
2034       needFuncLabelsForEHOrDebugInfo(MF) || NeedsLocalForSize ||
2035       MF.getTarget().Options.EmitStackSizeSection || MF.hasBBLabels()) {
2036     CurrentFnBegin = createTempSymbol("func_begin");
2037     if (NeedsLocalForSize)
2038       CurrentFnSymForSize = CurrentFnBegin;
2039   }
2040 
2041   ORE = &getAnalysis<MachineOptimizationRemarkEmitterPass>().getORE();
2042 }
2043 
2044 namespace {
2045 
2046 // Keep track the alignment, constpool entries per Section.
2047   struct SectionCPs {
2048     MCSection *S;
2049     Align Alignment;
2050     SmallVector<unsigned, 4> CPEs;
2051 
2052     SectionCPs(MCSection *s, Align a) : S(s), Alignment(a) {}
2053   };
2054 
2055 } // end anonymous namespace
2056 
2057 /// EmitConstantPool - Print to the current output stream assembly
2058 /// representations of the constants in the constant pool MCP. This is
2059 /// used to print out constants which have been "spilled to memory" by
2060 /// the code generator.
2061 void AsmPrinter::emitConstantPool() {
2062   const MachineConstantPool *MCP = MF->getConstantPool();
2063   const std::vector<MachineConstantPoolEntry> &CP = MCP->getConstants();
2064   if (CP.empty()) return;
2065 
2066   // Calculate sections for constant pool entries. We collect entries to go into
2067   // the same section together to reduce amount of section switch statements.
2068   SmallVector<SectionCPs, 4> CPSections;
2069   for (unsigned i = 0, e = CP.size(); i != e; ++i) {
2070     const MachineConstantPoolEntry &CPE = CP[i];
2071     Align Alignment = CPE.getAlign();
2072 
2073     SectionKind Kind = CPE.getSectionKind(&getDataLayout());
2074 
2075     const Constant *C = nullptr;
2076     if (!CPE.isMachineConstantPoolEntry())
2077       C = CPE.Val.ConstVal;
2078 
2079     MCSection *S = getObjFileLowering().getSectionForConstant(
2080         getDataLayout(), Kind, C, Alignment);
2081 
2082     // The number of sections are small, just do a linear search from the
2083     // last section to the first.
2084     bool Found = false;
2085     unsigned SecIdx = CPSections.size();
2086     while (SecIdx != 0) {
2087       if (CPSections[--SecIdx].S == S) {
2088         Found = true;
2089         break;
2090       }
2091     }
2092     if (!Found) {
2093       SecIdx = CPSections.size();
2094       CPSections.push_back(SectionCPs(S, Alignment));
2095     }
2096 
2097     if (Alignment > CPSections[SecIdx].Alignment)
2098       CPSections[SecIdx].Alignment = Alignment;
2099     CPSections[SecIdx].CPEs.push_back(i);
2100   }
2101 
2102   // Now print stuff into the calculated sections.
2103   const MCSection *CurSection = nullptr;
2104   unsigned Offset = 0;
2105   for (unsigned i = 0, e = CPSections.size(); i != e; ++i) {
2106     for (unsigned j = 0, ee = CPSections[i].CPEs.size(); j != ee; ++j) {
2107       unsigned CPI = CPSections[i].CPEs[j];
2108       MCSymbol *Sym = GetCPISymbol(CPI);
2109       if (!Sym->isUndefined())
2110         continue;
2111 
2112       if (CurSection != CPSections[i].S) {
2113         OutStreamer->SwitchSection(CPSections[i].S);
2114         emitAlignment(Align(CPSections[i].Alignment));
2115         CurSection = CPSections[i].S;
2116         Offset = 0;
2117       }
2118 
2119       MachineConstantPoolEntry CPE = CP[CPI];
2120 
2121       // Emit inter-object padding for alignment.
2122       unsigned NewOffset = alignTo(Offset, CPE.getAlign());
2123       OutStreamer->emitZeros(NewOffset - Offset);
2124 
2125       Offset = NewOffset + CPE.getSizeInBytes(getDataLayout());
2126 
2127       OutStreamer->emitLabel(Sym);
2128       if (CPE.isMachineConstantPoolEntry())
2129         emitMachineConstantPoolValue(CPE.Val.MachineCPVal);
2130       else
2131         emitGlobalConstant(getDataLayout(), CPE.Val.ConstVal);
2132     }
2133   }
2134 }
2135 
2136 // Print assembly representations of the jump tables used by the current
2137 // function.
2138 void AsmPrinter::emitJumpTableInfo() {
2139   const DataLayout &DL = MF->getDataLayout();
2140   const MachineJumpTableInfo *MJTI = MF->getJumpTableInfo();
2141   if (!MJTI) return;
2142   if (MJTI->getEntryKind() == MachineJumpTableInfo::EK_Inline) return;
2143   const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
2144   if (JT.empty()) return;
2145 
2146   // Pick the directive to use to print the jump table entries, and switch to
2147   // the appropriate section.
2148   const Function &F = MF->getFunction();
2149   const TargetLoweringObjectFile &TLOF = getObjFileLowering();
2150   bool JTInDiffSection = !TLOF.shouldPutJumpTableInFunctionSection(
2151       MJTI->getEntryKind() == MachineJumpTableInfo::EK_LabelDifference32,
2152       F);
2153   if (JTInDiffSection) {
2154     // Drop it in the readonly section.
2155     MCSection *ReadOnlySection = TLOF.getSectionForJumpTable(F, TM);
2156     OutStreamer->SwitchSection(ReadOnlySection);
2157   }
2158 
2159   emitAlignment(Align(MJTI->getEntryAlignment(DL)));
2160 
2161   // Jump tables in code sections are marked with a data_region directive
2162   // where that's supported.
2163   if (!JTInDiffSection)
2164     OutStreamer->emitDataRegion(MCDR_DataRegionJT32);
2165 
2166   for (unsigned JTI = 0, e = JT.size(); JTI != e; ++JTI) {
2167     const std::vector<MachineBasicBlock*> &JTBBs = JT[JTI].MBBs;
2168 
2169     // If this jump table was deleted, ignore it.
2170     if (JTBBs.empty()) continue;
2171 
2172     // For the EK_LabelDifference32 entry, if using .set avoids a relocation,
2173     /// emit a .set directive for each unique entry.
2174     if (MJTI->getEntryKind() == MachineJumpTableInfo::EK_LabelDifference32 &&
2175         MAI->doesSetDirectiveSuppressReloc()) {
2176       SmallPtrSet<const MachineBasicBlock*, 16> EmittedSets;
2177       const TargetLowering *TLI = MF->getSubtarget().getTargetLowering();
2178       const MCExpr *Base = TLI->getPICJumpTableRelocBaseExpr(MF,JTI,OutContext);
2179       for (const MachineBasicBlock *MBB : JTBBs) {
2180         if (!EmittedSets.insert(MBB).second)
2181           continue;
2182 
2183         // .set LJTSet, LBB32-base
2184         const MCExpr *LHS =
2185           MCSymbolRefExpr::create(MBB->getSymbol(), OutContext);
2186         OutStreamer->emitAssignment(GetJTSetSymbol(JTI, MBB->getNumber()),
2187                                     MCBinaryExpr::createSub(LHS, Base,
2188                                                             OutContext));
2189       }
2190     }
2191 
2192     // On some targets (e.g. Darwin) we want to emit two consecutive labels
2193     // before each jump table.  The first label is never referenced, but tells
2194     // the assembler and linker the extents of the jump table object.  The
2195     // second label is actually referenced by the code.
2196     if (JTInDiffSection && DL.hasLinkerPrivateGlobalPrefix())
2197       // FIXME: This doesn't have to have any specific name, just any randomly
2198       // named and numbered local label started with 'l' would work.  Simplify
2199       // GetJTISymbol.
2200       OutStreamer->emitLabel(GetJTISymbol(JTI, true));
2201 
2202     MCSymbol* JTISymbol = GetJTISymbol(JTI);
2203     OutStreamer->emitLabel(JTISymbol);
2204 
2205     for (const MachineBasicBlock *MBB : JTBBs)
2206       emitJumpTableEntry(MJTI, MBB, JTI);
2207   }
2208   if (!JTInDiffSection)
2209     OutStreamer->emitDataRegion(MCDR_DataRegionEnd);
2210 }
2211 
2212 /// EmitJumpTableEntry - Emit a jump table entry for the specified MBB to the
2213 /// current stream.
2214 void AsmPrinter::emitJumpTableEntry(const MachineJumpTableInfo *MJTI,
2215                                     const MachineBasicBlock *MBB,
2216                                     unsigned UID) const {
2217   assert(MBB && MBB->getNumber() >= 0 && "Invalid basic block");
2218   const MCExpr *Value = nullptr;
2219   switch (MJTI->getEntryKind()) {
2220   case MachineJumpTableInfo::EK_Inline:
2221     llvm_unreachable("Cannot emit EK_Inline jump table entry");
2222   case MachineJumpTableInfo::EK_Custom32:
2223     Value = MF->getSubtarget().getTargetLowering()->LowerCustomJumpTableEntry(
2224         MJTI, MBB, UID, OutContext);
2225     break;
2226   case MachineJumpTableInfo::EK_BlockAddress:
2227     // EK_BlockAddress - Each entry is a plain address of block, e.g.:
2228     //     .word LBB123
2229     Value = MCSymbolRefExpr::create(MBB->getSymbol(), OutContext);
2230     break;
2231   case MachineJumpTableInfo::EK_GPRel32BlockAddress: {
2232     // EK_GPRel32BlockAddress - Each entry is an address of block, encoded
2233     // with a relocation as gp-relative, e.g.:
2234     //     .gprel32 LBB123
2235     MCSymbol *MBBSym = MBB->getSymbol();
2236     OutStreamer->emitGPRel32Value(MCSymbolRefExpr::create(MBBSym, OutContext));
2237     return;
2238   }
2239 
2240   case MachineJumpTableInfo::EK_GPRel64BlockAddress: {
2241     // EK_GPRel64BlockAddress - Each entry is an address of block, encoded
2242     // with a relocation as gp-relative, e.g.:
2243     //     .gpdword LBB123
2244     MCSymbol *MBBSym = MBB->getSymbol();
2245     OutStreamer->emitGPRel64Value(MCSymbolRefExpr::create(MBBSym, OutContext));
2246     return;
2247   }
2248 
2249   case MachineJumpTableInfo::EK_LabelDifference32: {
2250     // Each entry is the address of the block minus the address of the jump
2251     // table. This is used for PIC jump tables where gprel32 is not supported.
2252     // e.g.:
2253     //      .word LBB123 - LJTI1_2
2254     // If the .set directive avoids relocations, this is emitted as:
2255     //      .set L4_5_set_123, LBB123 - LJTI1_2
2256     //      .word L4_5_set_123
2257     if (MAI->doesSetDirectiveSuppressReloc()) {
2258       Value = MCSymbolRefExpr::create(GetJTSetSymbol(UID, MBB->getNumber()),
2259                                       OutContext);
2260       break;
2261     }
2262     Value = MCSymbolRefExpr::create(MBB->getSymbol(), OutContext);
2263     const TargetLowering *TLI = MF->getSubtarget().getTargetLowering();
2264     const MCExpr *Base = TLI->getPICJumpTableRelocBaseExpr(MF, UID, OutContext);
2265     Value = MCBinaryExpr::createSub(Value, Base, OutContext);
2266     break;
2267   }
2268   }
2269 
2270   assert(Value && "Unknown entry kind!");
2271 
2272   unsigned EntrySize = MJTI->getEntrySize(getDataLayout());
2273   OutStreamer->emitValue(Value, EntrySize);
2274 }
2275 
2276 /// EmitSpecialLLVMGlobal - Check to see if the specified global is a
2277 /// special global used by LLVM.  If so, emit it and return true, otherwise
2278 /// do nothing and return false.
2279 bool AsmPrinter::emitSpecialLLVMGlobal(const GlobalVariable *GV) {
2280   if (GV->getName() == "llvm.used") {
2281     if (MAI->hasNoDeadStrip())    // No need to emit this at all.
2282       emitLLVMUsedList(cast<ConstantArray>(GV->getInitializer()));
2283     return true;
2284   }
2285 
2286   // Ignore debug and non-emitted data.  This handles llvm.compiler.used.
2287   if (GV->getSection() == "llvm.metadata" ||
2288       GV->hasAvailableExternallyLinkage())
2289     return true;
2290 
2291   if (!GV->hasAppendingLinkage()) return false;
2292 
2293   assert(GV->hasInitializer() && "Not a special LLVM global!");
2294 
2295   if (GV->getName() == "llvm.global_ctors") {
2296     emitXXStructorList(GV->getParent()->getDataLayout(), GV->getInitializer(),
2297                        /* isCtor */ true);
2298 
2299     return true;
2300   }
2301 
2302   if (GV->getName() == "llvm.global_dtors") {
2303     emitXXStructorList(GV->getParent()->getDataLayout(), GV->getInitializer(),
2304                        /* isCtor */ false);
2305 
2306     return true;
2307   }
2308 
2309   report_fatal_error("unknown special variable");
2310 }
2311 
2312 /// EmitLLVMUsedList - For targets that define a MAI::UsedDirective, mark each
2313 /// global in the specified llvm.used list.
2314 void AsmPrinter::emitLLVMUsedList(const ConstantArray *InitList) {
2315   // Should be an array of 'i8*'.
2316   for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i) {
2317     const GlobalValue *GV =
2318       dyn_cast<GlobalValue>(InitList->getOperand(i)->stripPointerCasts());
2319     if (GV)
2320       OutStreamer->emitSymbolAttribute(getSymbol(GV), MCSA_NoDeadStrip);
2321   }
2322 }
2323 
2324 void AsmPrinter::preprocessXXStructorList(const DataLayout &DL,
2325                                           const Constant *List,
2326                                           SmallVector<Structor, 8> &Structors) {
2327   // Should be an array of '{ i32, void ()*, i8* }' structs.  The first value is
2328   // the init priority.
2329   if (!isa<ConstantArray>(List))
2330     return;
2331 
2332   // Gather the structors in a form that's convenient for sorting by priority.
2333   for (Value *O : cast<ConstantArray>(List)->operands()) {
2334     auto *CS = cast<ConstantStruct>(O);
2335     if (CS->getOperand(1)->isNullValue())
2336       break; // Found a null terminator, skip the rest.
2337     ConstantInt *Priority = dyn_cast<ConstantInt>(CS->getOperand(0));
2338     if (!Priority)
2339       continue; // Malformed.
2340     Structors.push_back(Structor());
2341     Structor &S = Structors.back();
2342     S.Priority = Priority->getLimitedValue(65535);
2343     S.Func = CS->getOperand(1);
2344     if (!CS->getOperand(2)->isNullValue()) {
2345       if (TM.getTargetTriple().isOSAIX())
2346         llvm::report_fatal_error(
2347             "associated data of XXStructor list is not yet supported on AIX");
2348       S.ComdatKey =
2349           dyn_cast<GlobalValue>(CS->getOperand(2)->stripPointerCasts());
2350     }
2351   }
2352 
2353   // Emit the function pointers in the target-specific order
2354   llvm::stable_sort(Structors, [](const Structor &L, const Structor &R) {
2355     return L.Priority < R.Priority;
2356   });
2357 }
2358 
2359 /// EmitXXStructorList - Emit the ctor or dtor list taking into account the init
2360 /// priority.
2361 void AsmPrinter::emitXXStructorList(const DataLayout &DL, const Constant *List,
2362                                     bool IsCtor) {
2363   SmallVector<Structor, 8> Structors;
2364   preprocessXXStructorList(DL, List, Structors);
2365   if (Structors.empty())
2366     return;
2367 
2368   // Emit the structors in reverse order if we are using the .ctor/.dtor
2369   // initialization scheme.
2370   if (!TM.Options.UseInitArray)
2371     std::reverse(Structors.begin(), Structors.end());
2372 
2373   const Align Align = DL.getPointerPrefAlignment();
2374   for (Structor &S : Structors) {
2375     const TargetLoweringObjectFile &Obj = getObjFileLowering();
2376     const MCSymbol *KeySym = nullptr;
2377     if (GlobalValue *GV = S.ComdatKey) {
2378       if (GV->isDeclarationForLinker())
2379         // If the associated variable is not defined in this module
2380         // (it might be available_externally, or have been an
2381         // available_externally definition that was dropped by the
2382         // EliminateAvailableExternally pass), some other TU
2383         // will provide its dynamic initializer.
2384         continue;
2385 
2386       KeySym = getSymbol(GV);
2387     }
2388 
2389     MCSection *OutputSection =
2390         (IsCtor ? Obj.getStaticCtorSection(S.Priority, KeySym)
2391                 : Obj.getStaticDtorSection(S.Priority, KeySym));
2392     OutStreamer->SwitchSection(OutputSection);
2393     if (OutStreamer->getCurrentSection() != OutStreamer->getPreviousSection())
2394       emitAlignment(Align);
2395     emitXXStructor(DL, S.Func);
2396   }
2397 }
2398 
2399 void AsmPrinter::emitModuleIdents(Module &M) {
2400   if (!MAI->hasIdentDirective())
2401     return;
2402 
2403   if (const NamedMDNode *NMD = M.getNamedMetadata("llvm.ident")) {
2404     for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) {
2405       const MDNode *N = NMD->getOperand(i);
2406       assert(N->getNumOperands() == 1 &&
2407              "llvm.ident metadata entry can have only one operand");
2408       const MDString *S = cast<MDString>(N->getOperand(0));
2409       OutStreamer->emitIdent(S->getString());
2410     }
2411   }
2412 }
2413 
2414 void AsmPrinter::emitModuleCommandLines(Module &M) {
2415   MCSection *CommandLine = getObjFileLowering().getSectionForCommandLines();
2416   if (!CommandLine)
2417     return;
2418 
2419   const NamedMDNode *NMD = M.getNamedMetadata("llvm.commandline");
2420   if (!NMD || !NMD->getNumOperands())
2421     return;
2422 
2423   OutStreamer->PushSection();
2424   OutStreamer->SwitchSection(CommandLine);
2425   OutStreamer->emitZeros(1);
2426   for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) {
2427     const MDNode *N = NMD->getOperand(i);
2428     assert(N->getNumOperands() == 1 &&
2429            "llvm.commandline metadata entry can have only one operand");
2430     const MDString *S = cast<MDString>(N->getOperand(0));
2431     OutStreamer->emitBytes(S->getString());
2432     OutStreamer->emitZeros(1);
2433   }
2434   OutStreamer->PopSection();
2435 }
2436 
2437 //===--------------------------------------------------------------------===//
2438 // Emission and print routines
2439 //
2440 
2441 /// Emit a byte directive and value.
2442 ///
2443 void AsmPrinter::emitInt8(int Value) const { OutStreamer->emitInt8(Value); }
2444 
2445 /// Emit a short directive and value.
2446 void AsmPrinter::emitInt16(int Value) const { OutStreamer->emitInt16(Value); }
2447 
2448 /// Emit a long directive and value.
2449 void AsmPrinter::emitInt32(int Value) const { OutStreamer->emitInt32(Value); }
2450 
2451 /// Emit a long long directive and value.
2452 void AsmPrinter::emitInt64(uint64_t Value) const {
2453   OutStreamer->emitInt64(Value);
2454 }
2455 
2456 /// Emit something like ".long Hi-Lo" where the size in bytes of the directive
2457 /// is specified by Size and Hi/Lo specify the labels. This implicitly uses
2458 /// .set if it avoids relocations.
2459 void AsmPrinter::emitLabelDifference(const MCSymbol *Hi, const MCSymbol *Lo,
2460                                      unsigned Size) const {
2461   OutStreamer->emitAbsoluteSymbolDiff(Hi, Lo, Size);
2462 }
2463 
2464 /// EmitLabelPlusOffset - Emit something like ".long Label+Offset"
2465 /// where the size in bytes of the directive is specified by Size and Label
2466 /// specifies the label.  This implicitly uses .set if it is available.
2467 void AsmPrinter::emitLabelPlusOffset(const MCSymbol *Label, uint64_t Offset,
2468                                      unsigned Size,
2469                                      bool IsSectionRelative) const {
2470   if (MAI->needsDwarfSectionOffsetDirective() && IsSectionRelative) {
2471     OutStreamer->EmitCOFFSecRel32(Label, Offset);
2472     if (Size > 4)
2473       OutStreamer->emitZeros(Size - 4);
2474     return;
2475   }
2476 
2477   // Emit Label+Offset (or just Label if Offset is zero)
2478   const MCExpr *Expr = MCSymbolRefExpr::create(Label, OutContext);
2479   if (Offset)
2480     Expr = MCBinaryExpr::createAdd(
2481         Expr, MCConstantExpr::create(Offset, OutContext), OutContext);
2482 
2483   OutStreamer->emitValue(Expr, Size);
2484 }
2485 
2486 //===----------------------------------------------------------------------===//
2487 
2488 // EmitAlignment - Emit an alignment directive to the specified power of
2489 // two boundary.  If a global value is specified, and if that global has
2490 // an explicit alignment requested, it will override the alignment request
2491 // if required for correctness.
2492 void AsmPrinter::emitAlignment(Align Alignment, const GlobalObject *GV,
2493                                unsigned MaxBytesToEmit) const {
2494   if (GV)
2495     Alignment = getGVAlignment(GV, GV->getParent()->getDataLayout(), Alignment);
2496 
2497   if (Alignment == Align(1))
2498     return; // 1-byte aligned: no need to emit alignment.
2499 
2500   if (getCurrentSection()->getKind().isText()) {
2501     const MCSubtargetInfo *STI = nullptr;
2502     if (this->MF)
2503       STI = &getSubtargetInfo();
2504     else
2505       STI = TM.getMCSubtargetInfo();
2506     OutStreamer->emitCodeAlignment(Alignment.value(), STI, MaxBytesToEmit);
2507   } else
2508     OutStreamer->emitValueToAlignment(Alignment.value(), 0, 1, MaxBytesToEmit);
2509 }
2510 
2511 //===----------------------------------------------------------------------===//
2512 // Constant emission.
2513 //===----------------------------------------------------------------------===//
2514 
2515 const MCExpr *AsmPrinter::lowerConstant(const Constant *CV) {
2516   MCContext &Ctx = OutContext;
2517 
2518   if (CV->isNullValue() || isa<UndefValue>(CV))
2519     return MCConstantExpr::create(0, Ctx);
2520 
2521   if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV))
2522     return MCConstantExpr::create(CI->getZExtValue(), Ctx);
2523 
2524   if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV))
2525     return MCSymbolRefExpr::create(getSymbol(GV), Ctx);
2526 
2527   if (const BlockAddress *BA = dyn_cast<BlockAddress>(CV))
2528     return MCSymbolRefExpr::create(GetBlockAddressSymbol(BA), Ctx);
2529 
2530   if (const auto *Equiv = dyn_cast<DSOLocalEquivalent>(CV))
2531     return getObjFileLowering().lowerDSOLocalEquivalent(Equiv, TM);
2532 
2533   if (const NoCFIValue *NC = dyn_cast<NoCFIValue>(CV))
2534     return MCSymbolRefExpr::create(getSymbol(NC->getGlobalValue()), Ctx);
2535 
2536   const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV);
2537   if (!CE) {
2538     llvm_unreachable("Unknown constant value to lower!");
2539   }
2540 
2541   switch (CE->getOpcode()) {
2542   case Instruction::AddrSpaceCast: {
2543     const Constant *Op = CE->getOperand(0);
2544     unsigned DstAS = CE->getType()->getPointerAddressSpace();
2545     unsigned SrcAS = Op->getType()->getPointerAddressSpace();
2546     if (TM.isNoopAddrSpaceCast(SrcAS, DstAS))
2547       return lowerConstant(Op);
2548 
2549     // Fallthrough to error.
2550     LLVM_FALLTHROUGH;
2551   }
2552   default: {
2553     // If the code isn't optimized, there may be outstanding folding
2554     // opportunities. Attempt to fold the expression using DataLayout as a
2555     // last resort before giving up.
2556     Constant *C = ConstantFoldConstant(CE, getDataLayout());
2557     if (C != CE)
2558       return lowerConstant(C);
2559 
2560     // Otherwise report the problem to the user.
2561     std::string S;
2562     raw_string_ostream OS(S);
2563     OS << "Unsupported expression in static initializer: ";
2564     CE->printAsOperand(OS, /*PrintType=*/false,
2565                    !MF ? nullptr : MF->getFunction().getParent());
2566     report_fatal_error(Twine(OS.str()));
2567   }
2568   case Instruction::GetElementPtr: {
2569     // Generate a symbolic expression for the byte address
2570     APInt OffsetAI(getDataLayout().getPointerTypeSizeInBits(CE->getType()), 0);
2571     cast<GEPOperator>(CE)->accumulateConstantOffset(getDataLayout(), OffsetAI);
2572 
2573     const MCExpr *Base = lowerConstant(CE->getOperand(0));
2574     if (!OffsetAI)
2575       return Base;
2576 
2577     int64_t Offset = OffsetAI.getSExtValue();
2578     return MCBinaryExpr::createAdd(Base, MCConstantExpr::create(Offset, Ctx),
2579                                    Ctx);
2580   }
2581 
2582   case Instruction::Trunc:
2583     // We emit the value and depend on the assembler to truncate the generated
2584     // expression properly.  This is important for differences between
2585     // blockaddress labels.  Since the two labels are in the same function, it
2586     // is reasonable to treat their delta as a 32-bit value.
2587     LLVM_FALLTHROUGH;
2588   case Instruction::BitCast:
2589     return lowerConstant(CE->getOperand(0));
2590 
2591   case Instruction::IntToPtr: {
2592     const DataLayout &DL = getDataLayout();
2593 
2594     // Handle casts to pointers by changing them into casts to the appropriate
2595     // integer type.  This promotes constant folding and simplifies this code.
2596     Constant *Op = CE->getOperand(0);
2597     Op = ConstantExpr::getIntegerCast(Op, DL.getIntPtrType(CV->getType()),
2598                                       false/*ZExt*/);
2599     return lowerConstant(Op);
2600   }
2601 
2602   case Instruction::PtrToInt: {
2603     const DataLayout &DL = getDataLayout();
2604 
2605     // Support only foldable casts to/from pointers that can be eliminated by
2606     // changing the pointer to the appropriately sized integer type.
2607     Constant *Op = CE->getOperand(0);
2608     Type *Ty = CE->getType();
2609 
2610     const MCExpr *OpExpr = lowerConstant(Op);
2611 
2612     // We can emit the pointer value into this slot if the slot is an
2613     // integer slot equal to the size of the pointer.
2614     //
2615     // If the pointer is larger than the resultant integer, then
2616     // as with Trunc just depend on the assembler to truncate it.
2617     if (DL.getTypeAllocSize(Ty).getFixedSize() <=
2618         DL.getTypeAllocSize(Op->getType()).getFixedSize())
2619       return OpExpr;
2620 
2621     // Otherwise the pointer is smaller than the resultant integer, mask off
2622     // the high bits so we are sure to get a proper truncation if the input is
2623     // a constant expr.
2624     unsigned InBits = DL.getTypeAllocSizeInBits(Op->getType());
2625     const MCExpr *MaskExpr = MCConstantExpr::create(~0ULL >> (64-InBits), Ctx);
2626     return MCBinaryExpr::createAnd(OpExpr, MaskExpr, Ctx);
2627   }
2628 
2629   case Instruction::Sub: {
2630     GlobalValue *LHSGV;
2631     APInt LHSOffset;
2632     DSOLocalEquivalent *DSOEquiv;
2633     if (IsConstantOffsetFromGlobal(CE->getOperand(0), LHSGV, LHSOffset,
2634                                    getDataLayout(), &DSOEquiv)) {
2635       GlobalValue *RHSGV;
2636       APInt RHSOffset;
2637       if (IsConstantOffsetFromGlobal(CE->getOperand(1), RHSGV, RHSOffset,
2638                                      getDataLayout())) {
2639         const MCExpr *RelocExpr =
2640             getObjFileLowering().lowerRelativeReference(LHSGV, RHSGV, TM);
2641         if (!RelocExpr) {
2642           const MCExpr *LHSExpr =
2643               MCSymbolRefExpr::create(getSymbol(LHSGV), Ctx);
2644           if (DSOEquiv &&
2645               getObjFileLowering().supportDSOLocalEquivalentLowering())
2646             LHSExpr =
2647                 getObjFileLowering().lowerDSOLocalEquivalent(DSOEquiv, TM);
2648           RelocExpr = MCBinaryExpr::createSub(
2649               LHSExpr, MCSymbolRefExpr::create(getSymbol(RHSGV), Ctx), Ctx);
2650         }
2651         int64_t Addend = (LHSOffset - RHSOffset).getSExtValue();
2652         if (Addend != 0)
2653           RelocExpr = MCBinaryExpr::createAdd(
2654               RelocExpr, MCConstantExpr::create(Addend, Ctx), Ctx);
2655         return RelocExpr;
2656       }
2657     }
2658   }
2659   // else fallthrough
2660   LLVM_FALLTHROUGH;
2661 
2662   // The MC library also has a right-shift operator, but it isn't consistently
2663   // signed or unsigned between different targets.
2664   case Instruction::Add:
2665   case Instruction::Mul:
2666   case Instruction::SDiv:
2667   case Instruction::SRem:
2668   case Instruction::Shl:
2669   case Instruction::And:
2670   case Instruction::Or:
2671   case Instruction::Xor: {
2672     const MCExpr *LHS = lowerConstant(CE->getOperand(0));
2673     const MCExpr *RHS = lowerConstant(CE->getOperand(1));
2674     switch (CE->getOpcode()) {
2675     default: llvm_unreachable("Unknown binary operator constant cast expr");
2676     case Instruction::Add: return MCBinaryExpr::createAdd(LHS, RHS, Ctx);
2677     case Instruction::Sub: return MCBinaryExpr::createSub(LHS, RHS, Ctx);
2678     case Instruction::Mul: return MCBinaryExpr::createMul(LHS, RHS, Ctx);
2679     case Instruction::SDiv: return MCBinaryExpr::createDiv(LHS, RHS, Ctx);
2680     case Instruction::SRem: return MCBinaryExpr::createMod(LHS, RHS, Ctx);
2681     case Instruction::Shl: return MCBinaryExpr::createShl(LHS, RHS, Ctx);
2682     case Instruction::And: return MCBinaryExpr::createAnd(LHS, RHS, Ctx);
2683     case Instruction::Or:  return MCBinaryExpr::createOr (LHS, RHS, Ctx);
2684     case Instruction::Xor: return MCBinaryExpr::createXor(LHS, RHS, Ctx);
2685     }
2686   }
2687   }
2688 }
2689 
2690 static void emitGlobalConstantImpl(const DataLayout &DL, const Constant *C,
2691                                    AsmPrinter &AP,
2692                                    const Constant *BaseCV = nullptr,
2693                                    uint64_t Offset = 0);
2694 
2695 static void emitGlobalConstantFP(const ConstantFP *CFP, AsmPrinter &AP);
2696 static void emitGlobalConstantFP(APFloat APF, Type *ET, AsmPrinter &AP);
2697 
2698 /// isRepeatedByteSequence - Determine whether the given value is
2699 /// composed of a repeated sequence of identical bytes and return the
2700 /// byte value.  If it is not a repeated sequence, return -1.
2701 static int isRepeatedByteSequence(const ConstantDataSequential *V) {
2702   StringRef Data = V->getRawDataValues();
2703   assert(!Data.empty() && "Empty aggregates should be CAZ node");
2704   char C = Data[0];
2705   for (unsigned i = 1, e = Data.size(); i != e; ++i)
2706     if (Data[i] != C) return -1;
2707   return static_cast<uint8_t>(C); // Ensure 255 is not returned as -1.
2708 }
2709 
2710 /// isRepeatedByteSequence - Determine whether the given value is
2711 /// composed of a repeated sequence of identical bytes and return the
2712 /// byte value.  If it is not a repeated sequence, return -1.
2713 static int isRepeatedByteSequence(const Value *V, const DataLayout &DL) {
2714   if (const ConstantInt *CI = dyn_cast<ConstantInt>(V)) {
2715     uint64_t Size = DL.getTypeAllocSizeInBits(V->getType());
2716     assert(Size % 8 == 0);
2717 
2718     // Extend the element to take zero padding into account.
2719     APInt Value = CI->getValue().zextOrSelf(Size);
2720     if (!Value.isSplat(8))
2721       return -1;
2722 
2723     return Value.zextOrTrunc(8).getZExtValue();
2724   }
2725   if (const ConstantArray *CA = dyn_cast<ConstantArray>(V)) {
2726     // Make sure all array elements are sequences of the same repeated
2727     // byte.
2728     assert(CA->getNumOperands() != 0 && "Should be a CAZ");
2729     Constant *Op0 = CA->getOperand(0);
2730     int Byte = isRepeatedByteSequence(Op0, DL);
2731     if (Byte == -1)
2732       return -1;
2733 
2734     // All array elements must be equal.
2735     for (unsigned i = 1, e = CA->getNumOperands(); i != e; ++i)
2736       if (CA->getOperand(i) != Op0)
2737         return -1;
2738     return Byte;
2739   }
2740 
2741   if (const ConstantDataSequential *CDS = dyn_cast<ConstantDataSequential>(V))
2742     return isRepeatedByteSequence(CDS);
2743 
2744   return -1;
2745 }
2746 
2747 static void emitGlobalConstantDataSequential(const DataLayout &DL,
2748                                              const ConstantDataSequential *CDS,
2749                                              AsmPrinter &AP) {
2750   // See if we can aggregate this into a .fill, if so, emit it as such.
2751   int Value = isRepeatedByteSequence(CDS, DL);
2752   if (Value != -1) {
2753     uint64_t Bytes = DL.getTypeAllocSize(CDS->getType());
2754     // Don't emit a 1-byte object as a .fill.
2755     if (Bytes > 1)
2756       return AP.OutStreamer->emitFill(Bytes, Value);
2757   }
2758 
2759   // If this can be emitted with .ascii/.asciz, emit it as such.
2760   if (CDS->isString())
2761     return AP.OutStreamer->emitBytes(CDS->getAsString());
2762 
2763   // Otherwise, emit the values in successive locations.
2764   unsigned ElementByteSize = CDS->getElementByteSize();
2765   if (isa<IntegerType>(CDS->getElementType())) {
2766     for (unsigned i = 0, e = CDS->getNumElements(); i != e; ++i) {
2767       if (AP.isVerbose())
2768         AP.OutStreamer->GetCommentOS() << format("0x%" PRIx64 "\n",
2769                                                  CDS->getElementAsInteger(i));
2770       AP.OutStreamer->emitIntValue(CDS->getElementAsInteger(i),
2771                                    ElementByteSize);
2772     }
2773   } else {
2774     Type *ET = CDS->getElementType();
2775     for (unsigned I = 0, E = CDS->getNumElements(); I != E; ++I)
2776       emitGlobalConstantFP(CDS->getElementAsAPFloat(I), ET, AP);
2777   }
2778 
2779   unsigned Size = DL.getTypeAllocSize(CDS->getType());
2780   unsigned EmittedSize =
2781       DL.getTypeAllocSize(CDS->getElementType()) * CDS->getNumElements();
2782   assert(EmittedSize <= Size && "Size cannot be less than EmittedSize!");
2783   if (unsigned Padding = Size - EmittedSize)
2784     AP.OutStreamer->emitZeros(Padding);
2785 }
2786 
2787 static void emitGlobalConstantArray(const DataLayout &DL,
2788                                     const ConstantArray *CA, AsmPrinter &AP,
2789                                     const Constant *BaseCV, uint64_t Offset) {
2790   // See if we can aggregate some values.  Make sure it can be
2791   // represented as a series of bytes of the constant value.
2792   int Value = isRepeatedByteSequence(CA, DL);
2793 
2794   if (Value != -1) {
2795     uint64_t Bytes = DL.getTypeAllocSize(CA->getType());
2796     AP.OutStreamer->emitFill(Bytes, Value);
2797   }
2798   else {
2799     for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i) {
2800       emitGlobalConstantImpl(DL, CA->getOperand(i), AP, BaseCV, Offset);
2801       Offset += DL.getTypeAllocSize(CA->getOperand(i)->getType());
2802     }
2803   }
2804 }
2805 
2806 static void emitGlobalConstantVector(const DataLayout &DL,
2807                                      const ConstantVector *CV, AsmPrinter &AP) {
2808   for (unsigned i = 0, e = CV->getType()->getNumElements(); i != e; ++i)
2809     emitGlobalConstantImpl(DL, CV->getOperand(i), AP);
2810 
2811   unsigned Size = DL.getTypeAllocSize(CV->getType());
2812   unsigned EmittedSize = DL.getTypeAllocSize(CV->getType()->getElementType()) *
2813                          CV->getType()->getNumElements();
2814   if (unsigned Padding = Size - EmittedSize)
2815     AP.OutStreamer->emitZeros(Padding);
2816 }
2817 
2818 static void emitGlobalConstantStruct(const DataLayout &DL,
2819                                      const ConstantStruct *CS, AsmPrinter &AP,
2820                                      const Constant *BaseCV, uint64_t Offset) {
2821   // Print the fields in successive locations. Pad to align if needed!
2822   unsigned Size = DL.getTypeAllocSize(CS->getType());
2823   const StructLayout *Layout = DL.getStructLayout(CS->getType());
2824   uint64_t SizeSoFar = 0;
2825   for (unsigned i = 0, e = CS->getNumOperands(); i != e; ++i) {
2826     const Constant *Field = CS->getOperand(i);
2827 
2828     // Print the actual field value.
2829     emitGlobalConstantImpl(DL, Field, AP, BaseCV, Offset + SizeSoFar);
2830 
2831     // Check if padding is needed and insert one or more 0s.
2832     uint64_t FieldSize = DL.getTypeAllocSize(Field->getType());
2833     uint64_t PadSize = ((i == e-1 ? Size : Layout->getElementOffset(i+1))
2834                         - Layout->getElementOffset(i)) - FieldSize;
2835     SizeSoFar += FieldSize + PadSize;
2836 
2837     // Insert padding - this may include padding to increase the size of the
2838     // current field up to the ABI size (if the struct is not packed) as well
2839     // as padding to ensure that the next field starts at the right offset.
2840     AP.OutStreamer->emitZeros(PadSize);
2841   }
2842   assert(SizeSoFar == Layout->getSizeInBytes() &&
2843          "Layout of constant struct may be incorrect!");
2844 }
2845 
2846 static void emitGlobalConstantFP(APFloat APF, Type *ET, AsmPrinter &AP) {
2847   assert(ET && "Unknown float type");
2848   APInt API = APF.bitcastToAPInt();
2849 
2850   // First print a comment with what we think the original floating-point value
2851   // should have been.
2852   if (AP.isVerbose()) {
2853     SmallString<8> StrVal;
2854     APF.toString(StrVal);
2855     ET->print(AP.OutStreamer->GetCommentOS());
2856     AP.OutStreamer->GetCommentOS() << ' ' << StrVal << '\n';
2857   }
2858 
2859   // Now iterate through the APInt chunks, emitting them in endian-correct
2860   // order, possibly with a smaller chunk at beginning/end (e.g. for x87 80-bit
2861   // floats).
2862   unsigned NumBytes = API.getBitWidth() / 8;
2863   unsigned TrailingBytes = NumBytes % sizeof(uint64_t);
2864   const uint64_t *p = API.getRawData();
2865 
2866   // PPC's long double has odd notions of endianness compared to how LLVM
2867   // handles it: p[0] goes first for *big* endian on PPC.
2868   if (AP.getDataLayout().isBigEndian() && !ET->isPPC_FP128Ty()) {
2869     int Chunk = API.getNumWords() - 1;
2870 
2871     if (TrailingBytes)
2872       AP.OutStreamer->emitIntValueInHexWithPadding(p[Chunk--], TrailingBytes);
2873 
2874     for (; Chunk >= 0; --Chunk)
2875       AP.OutStreamer->emitIntValueInHexWithPadding(p[Chunk], sizeof(uint64_t));
2876   } else {
2877     unsigned Chunk;
2878     for (Chunk = 0; Chunk < NumBytes / sizeof(uint64_t); ++Chunk)
2879       AP.OutStreamer->emitIntValueInHexWithPadding(p[Chunk], sizeof(uint64_t));
2880 
2881     if (TrailingBytes)
2882       AP.OutStreamer->emitIntValueInHexWithPadding(p[Chunk], TrailingBytes);
2883   }
2884 
2885   // Emit the tail padding for the long double.
2886   const DataLayout &DL = AP.getDataLayout();
2887   AP.OutStreamer->emitZeros(DL.getTypeAllocSize(ET) - DL.getTypeStoreSize(ET));
2888 }
2889 
2890 static void emitGlobalConstantFP(const ConstantFP *CFP, AsmPrinter &AP) {
2891   emitGlobalConstantFP(CFP->getValueAPF(), CFP->getType(), AP);
2892 }
2893 
2894 static void emitGlobalConstantLargeInt(const ConstantInt *CI, AsmPrinter &AP) {
2895   const DataLayout &DL = AP.getDataLayout();
2896   unsigned BitWidth = CI->getBitWidth();
2897 
2898   // Copy the value as we may massage the layout for constants whose bit width
2899   // is not a multiple of 64-bits.
2900   APInt Realigned(CI->getValue());
2901   uint64_t ExtraBits = 0;
2902   unsigned ExtraBitsSize = BitWidth & 63;
2903 
2904   if (ExtraBitsSize) {
2905     // The bit width of the data is not a multiple of 64-bits.
2906     // The extra bits are expected to be at the end of the chunk of the memory.
2907     // Little endian:
2908     // * Nothing to be done, just record the extra bits to emit.
2909     // Big endian:
2910     // * Record the extra bits to emit.
2911     // * Realign the raw data to emit the chunks of 64-bits.
2912     if (DL.isBigEndian()) {
2913       // Basically the structure of the raw data is a chunk of 64-bits cells:
2914       //    0        1         BitWidth / 64
2915       // [chunk1][chunk2] ... [chunkN].
2916       // The most significant chunk is chunkN and it should be emitted first.
2917       // However, due to the alignment issue chunkN contains useless bits.
2918       // Realign the chunks so that they contain only useful information:
2919       // ExtraBits     0       1       (BitWidth / 64) - 1
2920       //       chu[nk1 chu][nk2 chu] ... [nkN-1 chunkN]
2921       ExtraBitsSize = alignTo(ExtraBitsSize, 8);
2922       ExtraBits = Realigned.getRawData()[0] &
2923         (((uint64_t)-1) >> (64 - ExtraBitsSize));
2924       Realigned.lshrInPlace(ExtraBitsSize);
2925     } else
2926       ExtraBits = Realigned.getRawData()[BitWidth / 64];
2927   }
2928 
2929   // We don't expect assemblers to support integer data directives
2930   // for more than 64 bits, so we emit the data in at most 64-bit
2931   // quantities at a time.
2932   const uint64_t *RawData = Realigned.getRawData();
2933   for (unsigned i = 0, e = BitWidth / 64; i != e; ++i) {
2934     uint64_t Val = DL.isBigEndian() ? RawData[e - i - 1] : RawData[i];
2935     AP.OutStreamer->emitIntValue(Val, 8);
2936   }
2937 
2938   if (ExtraBitsSize) {
2939     // Emit the extra bits after the 64-bits chunks.
2940 
2941     // Emit a directive that fills the expected size.
2942     uint64_t Size = AP.getDataLayout().getTypeStoreSize(CI->getType());
2943     Size -= (BitWidth / 64) * 8;
2944     assert(Size && Size * 8 >= ExtraBitsSize &&
2945            (ExtraBits & (((uint64_t)-1) >> (64 - ExtraBitsSize)))
2946            == ExtraBits && "Directive too small for extra bits.");
2947     AP.OutStreamer->emitIntValue(ExtraBits, Size);
2948   }
2949 }
2950 
2951 /// Transform a not absolute MCExpr containing a reference to a GOT
2952 /// equivalent global, by a target specific GOT pc relative access to the
2953 /// final symbol.
2954 static void handleIndirectSymViaGOTPCRel(AsmPrinter &AP, const MCExpr **ME,
2955                                          const Constant *BaseCst,
2956                                          uint64_t Offset) {
2957   // The global @foo below illustrates a global that uses a got equivalent.
2958   //
2959   //  @bar = global i32 42
2960   //  @gotequiv = private unnamed_addr constant i32* @bar
2961   //  @foo = i32 trunc (i64 sub (i64 ptrtoint (i32** @gotequiv to i64),
2962   //                             i64 ptrtoint (i32* @foo to i64))
2963   //                        to i32)
2964   //
2965   // The cstexpr in @foo is converted into the MCExpr `ME`, where we actually
2966   // check whether @foo is suitable to use a GOTPCREL. `ME` is usually in the
2967   // form:
2968   //
2969   //  foo = cstexpr, where
2970   //    cstexpr := <gotequiv> - "." + <cst>
2971   //    cstexpr := <gotequiv> - (<foo> - <offset from @foo base>) + <cst>
2972   //
2973   // After canonicalization by evaluateAsRelocatable `ME` turns into:
2974   //
2975   //  cstexpr := <gotequiv> - <foo> + gotpcrelcst, where
2976   //    gotpcrelcst := <offset from @foo base> + <cst>
2977   MCValue MV;
2978   if (!(*ME)->evaluateAsRelocatable(MV, nullptr, nullptr) || MV.isAbsolute())
2979     return;
2980   const MCSymbolRefExpr *SymA = MV.getSymA();
2981   if (!SymA)
2982     return;
2983 
2984   // Check that GOT equivalent symbol is cached.
2985   const MCSymbol *GOTEquivSym = &SymA->getSymbol();
2986   if (!AP.GlobalGOTEquivs.count(GOTEquivSym))
2987     return;
2988 
2989   const GlobalValue *BaseGV = dyn_cast_or_null<GlobalValue>(BaseCst);
2990   if (!BaseGV)
2991     return;
2992 
2993   // Check for a valid base symbol
2994   const MCSymbol *BaseSym = AP.getSymbol(BaseGV);
2995   const MCSymbolRefExpr *SymB = MV.getSymB();
2996 
2997   if (!SymB || BaseSym != &SymB->getSymbol())
2998     return;
2999 
3000   // Make sure to match:
3001   //
3002   //    gotpcrelcst := <offset from @foo base> + <cst>
3003   //
3004   // If gotpcrelcst is positive it means that we can safely fold the pc rel
3005   // displacement into the GOTPCREL. We can also can have an extra offset <cst>
3006   // if the target knows how to encode it.
3007   int64_t GOTPCRelCst = Offset + MV.getConstant();
3008   if (GOTPCRelCst < 0)
3009     return;
3010   if (!AP.getObjFileLowering().supportGOTPCRelWithOffset() && GOTPCRelCst != 0)
3011     return;
3012 
3013   // Emit the GOT PC relative to replace the got equivalent global, i.e.:
3014   //
3015   //  bar:
3016   //    .long 42
3017   //  gotequiv:
3018   //    .quad bar
3019   //  foo:
3020   //    .long gotequiv - "." + <cst>
3021   //
3022   // is replaced by the target specific equivalent to:
3023   //
3024   //  bar:
3025   //    .long 42
3026   //  foo:
3027   //    .long bar@GOTPCREL+<gotpcrelcst>
3028   AsmPrinter::GOTEquivUsePair Result = AP.GlobalGOTEquivs[GOTEquivSym];
3029   const GlobalVariable *GV = Result.first;
3030   int NumUses = (int)Result.second;
3031   const GlobalValue *FinalGV = dyn_cast<GlobalValue>(GV->getOperand(0));
3032   const MCSymbol *FinalSym = AP.getSymbol(FinalGV);
3033   *ME = AP.getObjFileLowering().getIndirectSymViaGOTPCRel(
3034       FinalGV, FinalSym, MV, Offset, AP.MMI, *AP.OutStreamer);
3035 
3036   // Update GOT equivalent usage information
3037   --NumUses;
3038   if (NumUses >= 0)
3039     AP.GlobalGOTEquivs[GOTEquivSym] = std::make_pair(GV, NumUses);
3040 }
3041 
3042 static void emitGlobalConstantImpl(const DataLayout &DL, const Constant *CV,
3043                                    AsmPrinter &AP, const Constant *BaseCV,
3044                                    uint64_t Offset) {
3045   uint64_t Size = DL.getTypeAllocSize(CV->getType());
3046 
3047   // Globals with sub-elements such as combinations of arrays and structs
3048   // are handled recursively by emitGlobalConstantImpl. Keep track of the
3049   // constant symbol base and the current position with BaseCV and Offset.
3050   if (!BaseCV && CV->hasOneUse())
3051     BaseCV = dyn_cast<Constant>(CV->user_back());
3052 
3053   if (isa<ConstantAggregateZero>(CV) || isa<UndefValue>(CV))
3054     return AP.OutStreamer->emitZeros(Size);
3055 
3056   if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
3057     const uint64_t StoreSize = DL.getTypeStoreSize(CV->getType());
3058 
3059     if (StoreSize <= 8) {
3060       if (AP.isVerbose())
3061         AP.OutStreamer->GetCommentOS() << format("0x%" PRIx64 "\n",
3062                                                  CI->getZExtValue());
3063       AP.OutStreamer->emitIntValue(CI->getZExtValue(), StoreSize);
3064     } else {
3065       emitGlobalConstantLargeInt(CI, AP);
3066     }
3067 
3068     // Emit tail padding if needed
3069     if (Size != StoreSize)
3070       AP.OutStreamer->emitZeros(Size - StoreSize);
3071 
3072     return;
3073   }
3074 
3075   if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV))
3076     return emitGlobalConstantFP(CFP, AP);
3077 
3078   if (isa<ConstantPointerNull>(CV)) {
3079     AP.OutStreamer->emitIntValue(0, Size);
3080     return;
3081   }
3082 
3083   if (const ConstantDataSequential *CDS = dyn_cast<ConstantDataSequential>(CV))
3084     return emitGlobalConstantDataSequential(DL, CDS, AP);
3085 
3086   if (const ConstantArray *CVA = dyn_cast<ConstantArray>(CV))
3087     return emitGlobalConstantArray(DL, CVA, AP, BaseCV, Offset);
3088 
3089   if (const ConstantStruct *CVS = dyn_cast<ConstantStruct>(CV))
3090     return emitGlobalConstantStruct(DL, CVS, AP, BaseCV, Offset);
3091 
3092   if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV)) {
3093     // Look through bitcasts, which might not be able to be MCExpr'ized (e.g. of
3094     // vectors).
3095     if (CE->getOpcode() == Instruction::BitCast)
3096       return emitGlobalConstantImpl(DL, CE->getOperand(0), AP);
3097 
3098     if (Size > 8) {
3099       // If the constant expression's size is greater than 64-bits, then we have
3100       // to emit the value in chunks. Try to constant fold the value and emit it
3101       // that way.
3102       Constant *New = ConstantFoldConstant(CE, DL);
3103       if (New != CE)
3104         return emitGlobalConstantImpl(DL, New, AP);
3105     }
3106   }
3107 
3108   if (const ConstantVector *V = dyn_cast<ConstantVector>(CV))
3109     return emitGlobalConstantVector(DL, V, AP);
3110 
3111   // Otherwise, it must be a ConstantExpr.  Lower it to an MCExpr, then emit it
3112   // thread the streamer with EmitValue.
3113   const MCExpr *ME = AP.lowerConstant(CV);
3114 
3115   // Since lowerConstant already folded and got rid of all IR pointer and
3116   // integer casts, detect GOT equivalent accesses by looking into the MCExpr
3117   // directly.
3118   if (AP.getObjFileLowering().supportIndirectSymViaGOTPCRel())
3119     handleIndirectSymViaGOTPCRel(AP, &ME, BaseCV, Offset);
3120 
3121   AP.OutStreamer->emitValue(ME, Size);
3122 }
3123 
3124 /// EmitGlobalConstant - Print a general LLVM constant to the .s file.
3125 void AsmPrinter::emitGlobalConstant(const DataLayout &DL, const Constant *CV) {
3126   uint64_t Size = DL.getTypeAllocSize(CV->getType());
3127   if (Size)
3128     emitGlobalConstantImpl(DL, CV, *this);
3129   else if (MAI->hasSubsectionsViaSymbols()) {
3130     // If the global has zero size, emit a single byte so that two labels don't
3131     // look like they are at the same location.
3132     OutStreamer->emitIntValue(0, 1);
3133   }
3134 }
3135 
3136 void AsmPrinter::emitMachineConstantPoolValue(MachineConstantPoolValue *MCPV) {
3137   // Target doesn't support this yet!
3138   llvm_unreachable("Target does not support EmitMachineConstantPoolValue");
3139 }
3140 
3141 void AsmPrinter::printOffset(int64_t Offset, raw_ostream &OS) const {
3142   if (Offset > 0)
3143     OS << '+' << Offset;
3144   else if (Offset < 0)
3145     OS << Offset;
3146 }
3147 
3148 void AsmPrinter::emitNops(unsigned N) {
3149   MCInst Nop = MF->getSubtarget().getInstrInfo()->getNop();
3150   for (; N; --N)
3151     EmitToStreamer(*OutStreamer, Nop);
3152 }
3153 
3154 //===----------------------------------------------------------------------===//
3155 // Symbol Lowering Routines.
3156 //===----------------------------------------------------------------------===//
3157 
3158 MCSymbol *AsmPrinter::createTempSymbol(const Twine &Name) const {
3159   return OutContext.createTempSymbol(Name, true);
3160 }
3161 
3162 MCSymbol *AsmPrinter::GetBlockAddressSymbol(const BlockAddress *BA) const {
3163   return MMI->getAddrLabelSymbol(BA->getBasicBlock());
3164 }
3165 
3166 MCSymbol *AsmPrinter::GetBlockAddressSymbol(const BasicBlock *BB) const {
3167   return MMI->getAddrLabelSymbol(BB);
3168 }
3169 
3170 /// GetCPISymbol - Return the symbol for the specified constant pool entry.
3171 MCSymbol *AsmPrinter::GetCPISymbol(unsigned CPID) const {
3172   if (getSubtargetInfo().getTargetTriple().isWindowsMSVCEnvironment()) {
3173     const MachineConstantPoolEntry &CPE =
3174         MF->getConstantPool()->getConstants()[CPID];
3175     if (!CPE.isMachineConstantPoolEntry()) {
3176       const DataLayout &DL = MF->getDataLayout();
3177       SectionKind Kind = CPE.getSectionKind(&DL);
3178       const Constant *C = CPE.Val.ConstVal;
3179       Align Alignment = CPE.Alignment;
3180       if (const MCSectionCOFF *S = dyn_cast<MCSectionCOFF>(
3181               getObjFileLowering().getSectionForConstant(DL, Kind, C,
3182                                                          Alignment))) {
3183         if (MCSymbol *Sym = S->getCOMDATSymbol()) {
3184           if (Sym->isUndefined())
3185             OutStreamer->emitSymbolAttribute(Sym, MCSA_Global);
3186           return Sym;
3187         }
3188       }
3189     }
3190   }
3191 
3192   const DataLayout &DL = getDataLayout();
3193   return OutContext.getOrCreateSymbol(Twine(DL.getPrivateGlobalPrefix()) +
3194                                       "CPI" + Twine(getFunctionNumber()) + "_" +
3195                                       Twine(CPID));
3196 }
3197 
3198 /// GetJTISymbol - Return the symbol for the specified jump table entry.
3199 MCSymbol *AsmPrinter::GetJTISymbol(unsigned JTID, bool isLinkerPrivate) const {
3200   return MF->getJTISymbol(JTID, OutContext, isLinkerPrivate);
3201 }
3202 
3203 /// GetJTSetSymbol - Return the symbol for the specified jump table .set
3204 /// FIXME: privatize to AsmPrinter.
3205 MCSymbol *AsmPrinter::GetJTSetSymbol(unsigned UID, unsigned MBBID) const {
3206   const DataLayout &DL = getDataLayout();
3207   return OutContext.getOrCreateSymbol(Twine(DL.getPrivateGlobalPrefix()) +
3208                                       Twine(getFunctionNumber()) + "_" +
3209                                       Twine(UID) + "_set_" + Twine(MBBID));
3210 }
3211 
3212 MCSymbol *AsmPrinter::getSymbolWithGlobalValueBase(const GlobalValue *GV,
3213                                                    StringRef Suffix) const {
3214   return getObjFileLowering().getSymbolWithGlobalValueBase(GV, Suffix, TM);
3215 }
3216 
3217 /// Return the MCSymbol for the specified ExternalSymbol.
3218 MCSymbol *AsmPrinter::GetExternalSymbolSymbol(StringRef Sym) const {
3219   SmallString<60> NameStr;
3220   Mangler::getNameWithPrefix(NameStr, Sym, getDataLayout());
3221   return OutContext.getOrCreateSymbol(NameStr);
3222 }
3223 
3224 /// PrintParentLoopComment - Print comments about parent loops of this one.
3225 static void PrintParentLoopComment(raw_ostream &OS, const MachineLoop *Loop,
3226                                    unsigned FunctionNumber) {
3227   if (!Loop) return;
3228   PrintParentLoopComment(OS, Loop->getParentLoop(), FunctionNumber);
3229   OS.indent(Loop->getLoopDepth()*2)
3230     << "Parent Loop BB" << FunctionNumber << "_"
3231     << Loop->getHeader()->getNumber()
3232     << " Depth=" << Loop->getLoopDepth() << '\n';
3233 }
3234 
3235 /// PrintChildLoopComment - Print comments about child loops within
3236 /// the loop for this basic block, with nesting.
3237 static void PrintChildLoopComment(raw_ostream &OS, const MachineLoop *Loop,
3238                                   unsigned FunctionNumber) {
3239   // Add child loop information
3240   for (const MachineLoop *CL : *Loop) {
3241     OS.indent(CL->getLoopDepth()*2)
3242       << "Child Loop BB" << FunctionNumber << "_"
3243       << CL->getHeader()->getNumber() << " Depth " << CL->getLoopDepth()
3244       << '\n';
3245     PrintChildLoopComment(OS, CL, FunctionNumber);
3246   }
3247 }
3248 
3249 /// emitBasicBlockLoopComments - Pretty-print comments for basic blocks.
3250 static void emitBasicBlockLoopComments(const MachineBasicBlock &MBB,
3251                                        const MachineLoopInfo *LI,
3252                                        const AsmPrinter &AP) {
3253   // Add loop depth information
3254   const MachineLoop *Loop = LI->getLoopFor(&MBB);
3255   if (!Loop) return;
3256 
3257   MachineBasicBlock *Header = Loop->getHeader();
3258   assert(Header && "No header for loop");
3259 
3260   // If this block is not a loop header, just print out what is the loop header
3261   // and return.
3262   if (Header != &MBB) {
3263     AP.OutStreamer->AddComment("  in Loop: Header=BB" +
3264                                Twine(AP.getFunctionNumber())+"_" +
3265                                Twine(Loop->getHeader()->getNumber())+
3266                                " Depth="+Twine(Loop->getLoopDepth()));
3267     return;
3268   }
3269 
3270   // Otherwise, it is a loop header.  Print out information about child and
3271   // parent loops.
3272   raw_ostream &OS = AP.OutStreamer->GetCommentOS();
3273 
3274   PrintParentLoopComment(OS, Loop->getParentLoop(), AP.getFunctionNumber());
3275 
3276   OS << "=>";
3277   OS.indent(Loop->getLoopDepth()*2-2);
3278 
3279   OS << "This ";
3280   if (Loop->isInnermost())
3281     OS << "Inner ";
3282   OS << "Loop Header: Depth=" + Twine(Loop->getLoopDepth()) << '\n';
3283 
3284   PrintChildLoopComment(OS, Loop, AP.getFunctionNumber());
3285 }
3286 
3287 /// emitBasicBlockStart - This method prints the label for the specified
3288 /// MachineBasicBlock, an alignment (if present) and a comment describing
3289 /// it if appropriate.
3290 void AsmPrinter::emitBasicBlockStart(const MachineBasicBlock &MBB) {
3291   // End the previous funclet and start a new one.
3292   if (MBB.isEHFuncletEntry()) {
3293     for (const HandlerInfo &HI : Handlers) {
3294       HI.Handler->endFunclet();
3295       HI.Handler->beginFunclet(MBB);
3296     }
3297   }
3298 
3299   // Emit an alignment directive for this block, if needed.
3300   const Align Alignment = MBB.getAlignment();
3301   if (Alignment != Align(1))
3302     emitAlignment(Alignment, nullptr, MBB.getMaxBytesForAlignment());
3303 
3304   // Switch to a new section if this basic block must begin a section. The
3305   // entry block is always placed in the function section and is handled
3306   // separately.
3307   if (MBB.isBeginSection() && !MBB.isEntryBlock()) {
3308     OutStreamer->SwitchSection(
3309         getObjFileLowering().getSectionForMachineBasicBlock(MF->getFunction(),
3310                                                             MBB, TM));
3311     CurrentSectionBeginSym = MBB.getSymbol();
3312   }
3313 
3314   // If the block has its address taken, emit any labels that were used to
3315   // reference the block.  It is possible that there is more than one label
3316   // here, because multiple LLVM BB's may have been RAUW'd to this block after
3317   // the references were generated.
3318   const BasicBlock *BB = MBB.getBasicBlock();
3319   if (MBB.hasAddressTaken()) {
3320     if (isVerbose())
3321       OutStreamer->AddComment("Block address taken");
3322 
3323     // MBBs can have their address taken as part of CodeGen without having
3324     // their corresponding BB's address taken in IR
3325     if (BB && BB->hasAddressTaken())
3326       for (MCSymbol *Sym : MMI->getAddrLabelSymbolToEmit(BB))
3327         OutStreamer->emitLabel(Sym);
3328   }
3329 
3330   // Print some verbose block comments.
3331   if (isVerbose()) {
3332     if (BB) {
3333       if (BB->hasName()) {
3334         BB->printAsOperand(OutStreamer->GetCommentOS(),
3335                            /*PrintType=*/false, BB->getModule());
3336         OutStreamer->GetCommentOS() << '\n';
3337       }
3338     }
3339 
3340     assert(MLI != nullptr && "MachineLoopInfo should has been computed");
3341     emitBasicBlockLoopComments(MBB, MLI, *this);
3342   }
3343 
3344   // Print the main label for the block.
3345   if (shouldEmitLabelForBasicBlock(MBB)) {
3346     if (isVerbose() && MBB.hasLabelMustBeEmitted())
3347       OutStreamer->AddComment("Label of block must be emitted");
3348     OutStreamer->emitLabel(MBB.getSymbol());
3349   } else {
3350     if (isVerbose()) {
3351       // NOTE: Want this comment at start of line, don't emit with AddComment.
3352       OutStreamer->emitRawComment(" %bb." + Twine(MBB.getNumber()) + ":",
3353                                   false);
3354     }
3355   }
3356 
3357   if (MBB.isEHCatchretTarget() &&
3358       MAI->getExceptionHandlingType() == ExceptionHandling::WinEH) {
3359     OutStreamer->emitLabel(MBB.getEHCatchretSymbol());
3360   }
3361 
3362   // With BB sections, each basic block must handle CFI information on its own
3363   // if it begins a section (Entry block is handled separately by
3364   // AsmPrinterHandler::beginFunction).
3365   if (MBB.isBeginSection() && !MBB.isEntryBlock())
3366     for (const HandlerInfo &HI : Handlers)
3367       HI.Handler->beginBasicBlock(MBB);
3368 }
3369 
3370 void AsmPrinter::emitBasicBlockEnd(const MachineBasicBlock &MBB) {
3371   // Check if CFI information needs to be updated for this MBB with basic block
3372   // sections.
3373   if (MBB.isEndSection())
3374     for (const HandlerInfo &HI : Handlers)
3375       HI.Handler->endBasicBlock(MBB);
3376 }
3377 
3378 void AsmPrinter::emitVisibility(MCSymbol *Sym, unsigned Visibility,
3379                                 bool IsDefinition) const {
3380   MCSymbolAttr Attr = MCSA_Invalid;
3381 
3382   switch (Visibility) {
3383   default: break;
3384   case GlobalValue::HiddenVisibility:
3385     if (IsDefinition)
3386       Attr = MAI->getHiddenVisibilityAttr();
3387     else
3388       Attr = MAI->getHiddenDeclarationVisibilityAttr();
3389     break;
3390   case GlobalValue::ProtectedVisibility:
3391     Attr = MAI->getProtectedVisibilityAttr();
3392     break;
3393   }
3394 
3395   if (Attr != MCSA_Invalid)
3396     OutStreamer->emitSymbolAttribute(Sym, Attr);
3397 }
3398 
3399 bool AsmPrinter::shouldEmitLabelForBasicBlock(
3400     const MachineBasicBlock &MBB) const {
3401   // With `-fbasic-block-sections=`, a label is needed for every non-entry block
3402   // in the labels mode (option `=labels`) and every section beginning in the
3403   // sections mode (`=all` and `=list=`).
3404   if ((MF->hasBBLabels() || MBB.isBeginSection()) && !MBB.isEntryBlock())
3405     return true;
3406   // A label is needed for any block with at least one predecessor (when that
3407   // predecessor is not the fallthrough predecessor, or if it is an EH funclet
3408   // entry, or if a label is forced).
3409   return !MBB.pred_empty() &&
3410          (!isBlockOnlyReachableByFallthrough(&MBB) || MBB.isEHFuncletEntry() ||
3411           MBB.hasLabelMustBeEmitted());
3412 }
3413 
3414 /// isBlockOnlyReachableByFallthough - Return true if the basic block has
3415 /// exactly one predecessor and the control transfer mechanism between
3416 /// the predecessor and this block is a fall-through.
3417 bool AsmPrinter::
3418 isBlockOnlyReachableByFallthrough(const MachineBasicBlock *MBB) const {
3419   // If this is a landing pad, it isn't a fall through.  If it has no preds,
3420   // then nothing falls through to it.
3421   if (MBB->isEHPad() || MBB->pred_empty())
3422     return false;
3423 
3424   // If there isn't exactly one predecessor, it can't be a fall through.
3425   if (MBB->pred_size() > 1)
3426     return false;
3427 
3428   // The predecessor has to be immediately before this block.
3429   MachineBasicBlock *Pred = *MBB->pred_begin();
3430   if (!Pred->isLayoutSuccessor(MBB))
3431     return false;
3432 
3433   // If the block is completely empty, then it definitely does fall through.
3434   if (Pred->empty())
3435     return true;
3436 
3437   // Check the terminators in the previous blocks
3438   for (const auto &MI : Pred->terminators()) {
3439     // If it is not a simple branch, we are in a table somewhere.
3440     if (!MI.isBranch() || MI.isIndirectBranch())
3441       return false;
3442 
3443     // If we are the operands of one of the branches, this is not a fall
3444     // through. Note that targets with delay slots will usually bundle
3445     // terminators with the delay slot instruction.
3446     for (ConstMIBundleOperands OP(MI); OP.isValid(); ++OP) {
3447       if (OP->isJTI())
3448         return false;
3449       if (OP->isMBB() && OP->getMBB() == MBB)
3450         return false;
3451     }
3452   }
3453 
3454   return true;
3455 }
3456 
3457 GCMetadataPrinter *AsmPrinter::GetOrCreateGCPrinter(GCStrategy &S) {
3458   if (!S.usesMetadata())
3459     return nullptr;
3460 
3461   gcp_map_type &GCMap = getGCMap(GCMetadataPrinters);
3462   gcp_map_type::iterator GCPI = GCMap.find(&S);
3463   if (GCPI != GCMap.end())
3464     return GCPI->second.get();
3465 
3466   auto Name = S.getName();
3467 
3468   for (const GCMetadataPrinterRegistry::entry &GCMetaPrinter :
3469        GCMetadataPrinterRegistry::entries())
3470     if (Name == GCMetaPrinter.getName()) {
3471       std::unique_ptr<GCMetadataPrinter> GMP = GCMetaPrinter.instantiate();
3472       GMP->S = &S;
3473       auto IterBool = GCMap.insert(std::make_pair(&S, std::move(GMP)));
3474       return IterBool.first->second.get();
3475     }
3476 
3477   report_fatal_error("no GCMetadataPrinter registered for GC: " + Twine(Name));
3478 }
3479 
3480 void AsmPrinter::emitStackMaps(StackMaps &SM) {
3481   GCModuleInfo *MI = getAnalysisIfAvailable<GCModuleInfo>();
3482   assert(MI && "AsmPrinter didn't require GCModuleInfo?");
3483   bool NeedsDefault = false;
3484   if (MI->begin() == MI->end())
3485     // No GC strategy, use the default format.
3486     NeedsDefault = true;
3487   else
3488     for (auto &I : *MI) {
3489       if (GCMetadataPrinter *MP = GetOrCreateGCPrinter(*I))
3490         if (MP->emitStackMaps(SM, *this))
3491           continue;
3492       // The strategy doesn't have printer or doesn't emit custom stack maps.
3493       // Use the default format.
3494       NeedsDefault = true;
3495     }
3496 
3497   if (NeedsDefault)
3498     SM.serializeToStackMapSection();
3499 }
3500 
3501 /// Pin vtable to this file.
3502 AsmPrinterHandler::~AsmPrinterHandler() = default;
3503 
3504 void AsmPrinterHandler::markFunctionEnd() {}
3505 
3506 // In the binary's "xray_instr_map" section, an array of these function entries
3507 // describes each instrumentation point.  When XRay patches your code, the index
3508 // into this table will be given to your handler as a patch point identifier.
3509 void AsmPrinter::XRayFunctionEntry::emit(int Bytes, MCStreamer *Out) const {
3510   auto Kind8 = static_cast<uint8_t>(Kind);
3511   Out->emitBinaryData(StringRef(reinterpret_cast<const char *>(&Kind8), 1));
3512   Out->emitBinaryData(
3513       StringRef(reinterpret_cast<const char *>(&AlwaysInstrument), 1));
3514   Out->emitBinaryData(StringRef(reinterpret_cast<const char *>(&Version), 1));
3515   auto Padding = (4 * Bytes) - ((2 * Bytes) + 3);
3516   assert(Padding >= 0 && "Instrumentation map entry > 4 * Word Size");
3517   Out->emitZeros(Padding);
3518 }
3519 
3520 void AsmPrinter::emitXRayTable() {
3521   if (Sleds.empty())
3522     return;
3523 
3524   auto PrevSection = OutStreamer->getCurrentSectionOnly();
3525   const Function &F = MF->getFunction();
3526   MCSection *InstMap = nullptr;
3527   MCSection *FnSledIndex = nullptr;
3528   const Triple &TT = TM.getTargetTriple();
3529   // Use PC-relative addresses on all targets.
3530   if (TT.isOSBinFormatELF()) {
3531     auto LinkedToSym = cast<MCSymbolELF>(CurrentFnSym);
3532     auto Flags = ELF::SHF_ALLOC | ELF::SHF_LINK_ORDER;
3533     StringRef GroupName;
3534     if (F.hasComdat()) {
3535       Flags |= ELF::SHF_GROUP;
3536       GroupName = F.getComdat()->getName();
3537     }
3538     InstMap = OutContext.getELFSection("xray_instr_map", ELF::SHT_PROGBITS,
3539                                        Flags, 0, GroupName, F.hasComdat(),
3540                                        MCSection::NonUniqueID, LinkedToSym);
3541 
3542     if (!TM.Options.XRayOmitFunctionIndex)
3543       FnSledIndex = OutContext.getELFSection(
3544           "xray_fn_idx", ELF::SHT_PROGBITS, Flags | ELF::SHF_WRITE, 0,
3545           GroupName, F.hasComdat(), MCSection::NonUniqueID, LinkedToSym);
3546   } else if (MF->getSubtarget().getTargetTriple().isOSBinFormatMachO()) {
3547     InstMap = OutContext.getMachOSection("__DATA", "xray_instr_map", 0,
3548                                          SectionKind::getReadOnlyWithRel());
3549     if (!TM.Options.XRayOmitFunctionIndex)
3550       FnSledIndex = OutContext.getMachOSection(
3551           "__DATA", "xray_fn_idx", 0, SectionKind::getReadOnlyWithRel());
3552   } else {
3553     llvm_unreachable("Unsupported target");
3554   }
3555 
3556   auto WordSizeBytes = MAI->getCodePointerSize();
3557 
3558   // Now we switch to the instrumentation map section. Because this is done
3559   // per-function, we are able to create an index entry that will represent the
3560   // range of sleds associated with a function.
3561   auto &Ctx = OutContext;
3562   MCSymbol *SledsStart = OutContext.createTempSymbol("xray_sleds_start", true);
3563   OutStreamer->SwitchSection(InstMap);
3564   OutStreamer->emitLabel(SledsStart);
3565   for (const auto &Sled : Sleds) {
3566     MCSymbol *Dot = Ctx.createTempSymbol();
3567     OutStreamer->emitLabel(Dot);
3568     OutStreamer->emitValueImpl(
3569         MCBinaryExpr::createSub(MCSymbolRefExpr::create(Sled.Sled, Ctx),
3570                                 MCSymbolRefExpr::create(Dot, Ctx), Ctx),
3571         WordSizeBytes);
3572     OutStreamer->emitValueImpl(
3573         MCBinaryExpr::createSub(
3574             MCSymbolRefExpr::create(CurrentFnBegin, Ctx),
3575             MCBinaryExpr::createAdd(MCSymbolRefExpr::create(Dot, Ctx),
3576                                     MCConstantExpr::create(WordSizeBytes, Ctx),
3577                                     Ctx),
3578             Ctx),
3579         WordSizeBytes);
3580     Sled.emit(WordSizeBytes, OutStreamer.get());
3581   }
3582   MCSymbol *SledsEnd = OutContext.createTempSymbol("xray_sleds_end", true);
3583   OutStreamer->emitLabel(SledsEnd);
3584 
3585   // We then emit a single entry in the index per function. We use the symbols
3586   // that bound the instrumentation map as the range for a specific function.
3587   // Each entry here will be 2 * word size aligned, as we're writing down two
3588   // pointers. This should work for both 32-bit and 64-bit platforms.
3589   if (FnSledIndex) {
3590     OutStreamer->SwitchSection(FnSledIndex);
3591     OutStreamer->emitCodeAlignment(2 * WordSizeBytes, &getSubtargetInfo());
3592     OutStreamer->emitSymbolValue(SledsStart, WordSizeBytes, false);
3593     OutStreamer->emitSymbolValue(SledsEnd, WordSizeBytes, false);
3594     OutStreamer->SwitchSection(PrevSection);
3595   }
3596   Sleds.clear();
3597 }
3598 
3599 void AsmPrinter::recordSled(MCSymbol *Sled, const MachineInstr &MI,
3600                             SledKind Kind, uint8_t Version) {
3601   const Function &F = MI.getMF()->getFunction();
3602   auto Attr = F.getFnAttribute("function-instrument");
3603   bool LogArgs = F.hasFnAttribute("xray-log-args");
3604   bool AlwaysInstrument =
3605     Attr.isStringAttribute() && Attr.getValueAsString() == "xray-always";
3606   if (Kind == SledKind::FUNCTION_ENTER && LogArgs)
3607     Kind = SledKind::LOG_ARGS_ENTER;
3608   Sleds.emplace_back(XRayFunctionEntry{Sled, CurrentFnSym, Kind,
3609                                        AlwaysInstrument, &F, Version});
3610 }
3611 
3612 void AsmPrinter::emitPatchableFunctionEntries() {
3613   const Function &F = MF->getFunction();
3614   unsigned PatchableFunctionPrefix = 0, PatchableFunctionEntry = 0;
3615   (void)F.getFnAttribute("patchable-function-prefix")
3616       .getValueAsString()
3617       .getAsInteger(10, PatchableFunctionPrefix);
3618   (void)F.getFnAttribute("patchable-function-entry")
3619       .getValueAsString()
3620       .getAsInteger(10, PatchableFunctionEntry);
3621   if (!PatchableFunctionPrefix && !PatchableFunctionEntry)
3622     return;
3623   const unsigned PointerSize = getPointerSize();
3624   if (TM.getTargetTriple().isOSBinFormatELF()) {
3625     auto Flags = ELF::SHF_WRITE | ELF::SHF_ALLOC;
3626     const MCSymbolELF *LinkedToSym = nullptr;
3627     StringRef GroupName;
3628 
3629     // GNU as < 2.35 did not support section flag 'o'. GNU ld < 2.36 did not
3630     // support mixed SHF_LINK_ORDER and non-SHF_LINK_ORDER sections.
3631     if (MAI->useIntegratedAssembler() || MAI->binutilsIsAtLeast(2, 36)) {
3632       Flags |= ELF::SHF_LINK_ORDER;
3633       if (F.hasComdat()) {
3634         Flags |= ELF::SHF_GROUP;
3635         GroupName = F.getComdat()->getName();
3636       }
3637       LinkedToSym = cast<MCSymbolELF>(CurrentFnSym);
3638     }
3639     OutStreamer->SwitchSection(OutContext.getELFSection(
3640         "__patchable_function_entries", ELF::SHT_PROGBITS, Flags, 0, GroupName,
3641         F.hasComdat(), MCSection::NonUniqueID, LinkedToSym));
3642     emitAlignment(Align(PointerSize));
3643     OutStreamer->emitSymbolValue(CurrentPatchableFunctionEntrySym, PointerSize);
3644   }
3645 }
3646 
3647 uint16_t AsmPrinter::getDwarfVersion() const {
3648   return OutStreamer->getContext().getDwarfVersion();
3649 }
3650 
3651 void AsmPrinter::setDwarfVersion(uint16_t Version) {
3652   OutStreamer->getContext().setDwarfVersion(Version);
3653 }
3654 
3655 bool AsmPrinter::isDwarf64() const {
3656   return OutStreamer->getContext().getDwarfFormat() == dwarf::DWARF64;
3657 }
3658 
3659 unsigned int AsmPrinter::getDwarfOffsetByteSize() const {
3660   return dwarf::getDwarfOffsetByteSize(
3661       OutStreamer->getContext().getDwarfFormat());
3662 }
3663 
3664 dwarf::FormParams AsmPrinter::getDwarfFormParams() const {
3665   return {getDwarfVersion(), uint8_t(getPointerSize()),
3666           OutStreamer->getContext().getDwarfFormat(),
3667           MAI->doesDwarfUseRelocationsAcrossSections()};
3668 }
3669 
3670 unsigned int AsmPrinter::getUnitLengthFieldByteSize() const {
3671   return dwarf::getUnitLengthFieldByteSize(
3672       OutStreamer->getContext().getDwarfFormat());
3673 }
3674