xref: /llvm-project/clang/lib/CodeGen/CodeGenModule.cpp (revision 15e678e8438c56703c775fcb45afb25e09b31cff)
1 //===--- CodeGenModule.cpp - Emit LLVM Code from ASTs for a Module --------===//
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 coordinates the per-module state used while generating code.
10 //
11 //===----------------------------------------------------------------------===//
12 
13 #include "CodeGenModule.h"
14 #include "CGBlocks.h"
15 #include "CGCUDARuntime.h"
16 #include "CGCXXABI.h"
17 #include "CGCall.h"
18 #include "CGDebugInfo.h"
19 #include "CGObjCRuntime.h"
20 #include "CGOpenCLRuntime.h"
21 #include "CGOpenMPRuntime.h"
22 #include "CGOpenMPRuntimeNVPTX.h"
23 #include "CodeGenFunction.h"
24 #include "CodeGenPGO.h"
25 #include "ConstantEmitter.h"
26 #include "CoverageMappingGen.h"
27 #include "TargetInfo.h"
28 #include "clang/AST/ASTContext.h"
29 #include "clang/AST/CharUnits.h"
30 #include "clang/AST/DeclCXX.h"
31 #include "clang/AST/DeclObjC.h"
32 #include "clang/AST/DeclTemplate.h"
33 #include "clang/AST/Mangle.h"
34 #include "clang/AST/RecordLayout.h"
35 #include "clang/AST/RecursiveASTVisitor.h"
36 #include "clang/AST/StmtVisitor.h"
37 #include "clang/Basic/Builtins.h"
38 #include "clang/Basic/CharInfo.h"
39 #include "clang/Basic/CodeGenOptions.h"
40 #include "clang/Basic/Diagnostic.h"
41 #include "clang/Basic/Module.h"
42 #include "clang/Basic/SourceManager.h"
43 #include "clang/Basic/TargetInfo.h"
44 #include "clang/Basic/Version.h"
45 #include "clang/CodeGen/ConstantInitBuilder.h"
46 #include "clang/Frontend/FrontendDiagnostic.h"
47 #include "llvm/ADT/StringSwitch.h"
48 #include "llvm/ADT/Triple.h"
49 #include "llvm/Analysis/TargetLibraryInfo.h"
50 #include "llvm/IR/CallingConv.h"
51 #include "llvm/IR/DataLayout.h"
52 #include "llvm/IR/Intrinsics.h"
53 #include "llvm/IR/LLVMContext.h"
54 #include "llvm/IR/Module.h"
55 #include "llvm/IR/ProfileSummary.h"
56 #include "llvm/ProfileData/InstrProfReader.h"
57 #include "llvm/Support/CodeGen.h"
58 #include "llvm/Support/ConvertUTF.h"
59 #include "llvm/Support/ErrorHandling.h"
60 #include "llvm/Support/MD5.h"
61 #include "llvm/Support/TimeProfiler.h"
62 
63 using namespace clang;
64 using namespace CodeGen;
65 
66 static llvm::cl::opt<bool> LimitedCoverage(
67     "limited-coverage-experimental", llvm::cl::ZeroOrMore, llvm::cl::Hidden,
68     llvm::cl::desc("Emit limited coverage mapping information (experimental)"),
69     llvm::cl::init(false));
70 
71 static const char AnnotationSection[] = "llvm.metadata";
72 
73 static CGCXXABI *createCXXABI(CodeGenModule &CGM) {
74   switch (CGM.getTarget().getCXXABI().getKind()) {
75   case TargetCXXABI::GenericAArch64:
76   case TargetCXXABI::GenericARM:
77   case TargetCXXABI::iOS:
78   case TargetCXXABI::iOS64:
79   case TargetCXXABI::WatchOS:
80   case TargetCXXABI::GenericMIPS:
81   case TargetCXXABI::GenericItanium:
82   case TargetCXXABI::WebAssembly:
83     return CreateItaniumCXXABI(CGM);
84   case TargetCXXABI::Microsoft:
85     return CreateMicrosoftCXXABI(CGM);
86   }
87 
88   llvm_unreachable("invalid C++ ABI kind");
89 }
90 
91 CodeGenModule::CodeGenModule(ASTContext &C, const HeaderSearchOptions &HSO,
92                              const PreprocessorOptions &PPO,
93                              const CodeGenOptions &CGO, llvm::Module &M,
94                              DiagnosticsEngine &diags,
95                              CoverageSourceInfo *CoverageInfo)
96     : Context(C), LangOpts(C.getLangOpts()), HeaderSearchOpts(HSO),
97       PreprocessorOpts(PPO), CodeGenOpts(CGO), TheModule(M), Diags(diags),
98       Target(C.getTargetInfo()), ABI(createCXXABI(*this)),
99       VMContext(M.getContext()), Types(*this), VTables(*this),
100       SanitizerMD(new SanitizerMetadata(*this)) {
101 
102   // Initialize the type cache.
103   llvm::LLVMContext &LLVMContext = M.getContext();
104   VoidTy = llvm::Type::getVoidTy(LLVMContext);
105   Int8Ty = llvm::Type::getInt8Ty(LLVMContext);
106   Int16Ty = llvm::Type::getInt16Ty(LLVMContext);
107   Int32Ty = llvm::Type::getInt32Ty(LLVMContext);
108   Int64Ty = llvm::Type::getInt64Ty(LLVMContext);
109   HalfTy = llvm::Type::getHalfTy(LLVMContext);
110   FloatTy = llvm::Type::getFloatTy(LLVMContext);
111   DoubleTy = llvm::Type::getDoubleTy(LLVMContext);
112   PointerWidthInBits = C.getTargetInfo().getPointerWidth(0);
113   PointerAlignInBytes =
114     C.toCharUnitsFromBits(C.getTargetInfo().getPointerAlign(0)).getQuantity();
115   SizeSizeInBytes =
116     C.toCharUnitsFromBits(C.getTargetInfo().getMaxPointerWidth()).getQuantity();
117   IntAlignInBytes =
118     C.toCharUnitsFromBits(C.getTargetInfo().getIntAlign()).getQuantity();
119   IntTy = llvm::IntegerType::get(LLVMContext, C.getTargetInfo().getIntWidth());
120   IntPtrTy = llvm::IntegerType::get(LLVMContext,
121     C.getTargetInfo().getMaxPointerWidth());
122   Int8PtrTy = Int8Ty->getPointerTo(0);
123   Int8PtrPtrTy = Int8PtrTy->getPointerTo(0);
124   AllocaInt8PtrTy = Int8Ty->getPointerTo(
125       M.getDataLayout().getAllocaAddrSpace());
126   ASTAllocaAddressSpace = getTargetCodeGenInfo().getASTAllocaAddressSpace();
127 
128   RuntimeCC = getTargetCodeGenInfo().getABIInfo().getRuntimeCC();
129 
130   if (LangOpts.ObjC)
131     createObjCRuntime();
132   if (LangOpts.OpenCL)
133     createOpenCLRuntime();
134   if (LangOpts.OpenMP)
135     createOpenMPRuntime();
136   if (LangOpts.CUDA)
137     createCUDARuntime();
138 
139   // Enable TBAA unless it's suppressed. ThreadSanitizer needs TBAA even at O0.
140   if (LangOpts.Sanitize.has(SanitizerKind::Thread) ||
141       (!CodeGenOpts.RelaxedAliasing && CodeGenOpts.OptimizationLevel > 0))
142     TBAA.reset(new CodeGenTBAA(Context, TheModule, CodeGenOpts, getLangOpts(),
143                                getCXXABI().getMangleContext()));
144 
145   // If debug info or coverage generation is enabled, create the CGDebugInfo
146   // object.
147   if (CodeGenOpts.getDebugInfo() != codegenoptions::NoDebugInfo ||
148       CodeGenOpts.EmitGcovArcs || CodeGenOpts.EmitGcovNotes)
149     DebugInfo.reset(new CGDebugInfo(*this));
150 
151   Block.GlobalUniqueCount = 0;
152 
153   if (C.getLangOpts().ObjC)
154     ObjCData.reset(new ObjCEntrypoints());
155 
156   if (CodeGenOpts.hasProfileClangUse()) {
157     auto ReaderOrErr = llvm::IndexedInstrProfReader::create(
158         CodeGenOpts.ProfileInstrumentUsePath, CodeGenOpts.ProfileRemappingFile);
159     if (auto E = ReaderOrErr.takeError()) {
160       unsigned DiagID = Diags.getCustomDiagID(DiagnosticsEngine::Error,
161                                               "Could not read profile %0: %1");
162       llvm::handleAllErrors(std::move(E), [&](const llvm::ErrorInfoBase &EI) {
163         getDiags().Report(DiagID) << CodeGenOpts.ProfileInstrumentUsePath
164                                   << EI.message();
165       });
166     } else
167       PGOReader = std::move(ReaderOrErr.get());
168   }
169 
170   // If coverage mapping generation is enabled, create the
171   // CoverageMappingModuleGen object.
172   if (CodeGenOpts.CoverageMapping)
173     CoverageMapping.reset(new CoverageMappingModuleGen(*this, *CoverageInfo));
174 }
175 
176 CodeGenModule::~CodeGenModule() {}
177 
178 void CodeGenModule::createObjCRuntime() {
179   // This is just isGNUFamily(), but we want to force implementors of
180   // new ABIs to decide how best to do this.
181   switch (LangOpts.ObjCRuntime.getKind()) {
182   case ObjCRuntime::GNUstep:
183   case ObjCRuntime::GCC:
184   case ObjCRuntime::ObjFW:
185     ObjCRuntime.reset(CreateGNUObjCRuntime(*this));
186     return;
187 
188   case ObjCRuntime::FragileMacOSX:
189   case ObjCRuntime::MacOSX:
190   case ObjCRuntime::iOS:
191   case ObjCRuntime::WatchOS:
192     ObjCRuntime.reset(CreateMacObjCRuntime(*this));
193     return;
194   }
195   llvm_unreachable("bad runtime kind");
196 }
197 
198 void CodeGenModule::createOpenCLRuntime() {
199   OpenCLRuntime.reset(new CGOpenCLRuntime(*this));
200 }
201 
202 void CodeGenModule::createOpenMPRuntime() {
203   // Select a specialized code generation class based on the target, if any.
204   // If it does not exist use the default implementation.
205   switch (getTriple().getArch()) {
206   case llvm::Triple::nvptx:
207   case llvm::Triple::nvptx64:
208     assert(getLangOpts().OpenMPIsDevice &&
209            "OpenMP NVPTX is only prepared to deal with device code.");
210     OpenMPRuntime.reset(new CGOpenMPRuntimeNVPTX(*this));
211     break;
212   default:
213     if (LangOpts.OpenMPSimd)
214       OpenMPRuntime.reset(new CGOpenMPSIMDRuntime(*this));
215     else
216       OpenMPRuntime.reset(new CGOpenMPRuntime(*this));
217     break;
218   }
219 }
220 
221 void CodeGenModule::createCUDARuntime() {
222   CUDARuntime.reset(CreateNVCUDARuntime(*this));
223 }
224 
225 void CodeGenModule::addReplacement(StringRef Name, llvm::Constant *C) {
226   Replacements[Name] = C;
227 }
228 
229 void CodeGenModule::applyReplacements() {
230   for (auto &I : Replacements) {
231     StringRef MangledName = I.first();
232     llvm::Constant *Replacement = I.second;
233     llvm::GlobalValue *Entry = GetGlobalValue(MangledName);
234     if (!Entry)
235       continue;
236     auto *OldF = cast<llvm::Function>(Entry);
237     auto *NewF = dyn_cast<llvm::Function>(Replacement);
238     if (!NewF) {
239       if (auto *Alias = dyn_cast<llvm::GlobalAlias>(Replacement)) {
240         NewF = dyn_cast<llvm::Function>(Alias->getAliasee());
241       } else {
242         auto *CE = cast<llvm::ConstantExpr>(Replacement);
243         assert(CE->getOpcode() == llvm::Instruction::BitCast ||
244                CE->getOpcode() == llvm::Instruction::GetElementPtr);
245         NewF = dyn_cast<llvm::Function>(CE->getOperand(0));
246       }
247     }
248 
249     // Replace old with new, but keep the old order.
250     OldF->replaceAllUsesWith(Replacement);
251     if (NewF) {
252       NewF->removeFromParent();
253       OldF->getParent()->getFunctionList().insertAfter(OldF->getIterator(),
254                                                        NewF);
255     }
256     OldF->eraseFromParent();
257   }
258 }
259 
260 void CodeGenModule::addGlobalValReplacement(llvm::GlobalValue *GV, llvm::Constant *C) {
261   GlobalValReplacements.push_back(std::make_pair(GV, C));
262 }
263 
264 void CodeGenModule::applyGlobalValReplacements() {
265   for (auto &I : GlobalValReplacements) {
266     llvm::GlobalValue *GV = I.first;
267     llvm::Constant *C = I.second;
268 
269     GV->replaceAllUsesWith(C);
270     GV->eraseFromParent();
271   }
272 }
273 
274 // This is only used in aliases that we created and we know they have a
275 // linear structure.
276 static const llvm::GlobalObject *getAliasedGlobal(
277     const llvm::GlobalIndirectSymbol &GIS) {
278   llvm::SmallPtrSet<const llvm::GlobalIndirectSymbol*, 4> Visited;
279   const llvm::Constant *C = &GIS;
280   for (;;) {
281     C = C->stripPointerCasts();
282     if (auto *GO = dyn_cast<llvm::GlobalObject>(C))
283       return GO;
284     // stripPointerCasts will not walk over weak aliases.
285     auto *GIS2 = dyn_cast<llvm::GlobalIndirectSymbol>(C);
286     if (!GIS2)
287       return nullptr;
288     if (!Visited.insert(GIS2).second)
289       return nullptr;
290     C = GIS2->getIndirectSymbol();
291   }
292 }
293 
294 void CodeGenModule::checkAliases() {
295   // Check if the constructed aliases are well formed. It is really unfortunate
296   // that we have to do this in CodeGen, but we only construct mangled names
297   // and aliases during codegen.
298   bool Error = false;
299   DiagnosticsEngine &Diags = getDiags();
300   for (const GlobalDecl &GD : Aliases) {
301     const auto *D = cast<ValueDecl>(GD.getDecl());
302     SourceLocation Location;
303     bool IsIFunc = D->hasAttr<IFuncAttr>();
304     if (const Attr *A = D->getDefiningAttr())
305       Location = A->getLocation();
306     else
307       llvm_unreachable("Not an alias or ifunc?");
308     StringRef MangledName = getMangledName(GD);
309     llvm::GlobalValue *Entry = GetGlobalValue(MangledName);
310     auto *Alias  = cast<llvm::GlobalIndirectSymbol>(Entry);
311     const llvm::GlobalValue *GV = getAliasedGlobal(*Alias);
312     if (!GV) {
313       Error = true;
314       Diags.Report(Location, diag::err_cyclic_alias) << IsIFunc;
315     } else if (GV->isDeclaration()) {
316       Error = true;
317       Diags.Report(Location, diag::err_alias_to_undefined)
318           << IsIFunc << IsIFunc;
319     } else if (IsIFunc) {
320       // Check resolver function type.
321       llvm::FunctionType *FTy = dyn_cast<llvm::FunctionType>(
322           GV->getType()->getPointerElementType());
323       assert(FTy);
324       if (!FTy->getReturnType()->isPointerTy())
325         Diags.Report(Location, diag::err_ifunc_resolver_return);
326     }
327 
328     llvm::Constant *Aliasee = Alias->getIndirectSymbol();
329     llvm::GlobalValue *AliaseeGV;
330     if (auto CE = dyn_cast<llvm::ConstantExpr>(Aliasee))
331       AliaseeGV = cast<llvm::GlobalValue>(CE->getOperand(0));
332     else
333       AliaseeGV = cast<llvm::GlobalValue>(Aliasee);
334 
335     if (const SectionAttr *SA = D->getAttr<SectionAttr>()) {
336       StringRef AliasSection = SA->getName();
337       if (AliasSection != AliaseeGV->getSection())
338         Diags.Report(SA->getLocation(), diag::warn_alias_with_section)
339             << AliasSection << IsIFunc << IsIFunc;
340     }
341 
342     // We have to handle alias to weak aliases in here. LLVM itself disallows
343     // this since the object semantics would not match the IL one. For
344     // compatibility with gcc we implement it by just pointing the alias
345     // to its aliasee's aliasee. We also warn, since the user is probably
346     // expecting the link to be weak.
347     if (auto GA = dyn_cast<llvm::GlobalIndirectSymbol>(AliaseeGV)) {
348       if (GA->isInterposable()) {
349         Diags.Report(Location, diag::warn_alias_to_weak_alias)
350             << GV->getName() << GA->getName() << IsIFunc;
351         Aliasee = llvm::ConstantExpr::getPointerBitCastOrAddrSpaceCast(
352             GA->getIndirectSymbol(), Alias->getType());
353         Alias->setIndirectSymbol(Aliasee);
354       }
355     }
356   }
357   if (!Error)
358     return;
359 
360   for (const GlobalDecl &GD : Aliases) {
361     StringRef MangledName = getMangledName(GD);
362     llvm::GlobalValue *Entry = GetGlobalValue(MangledName);
363     auto *Alias = dyn_cast<llvm::GlobalIndirectSymbol>(Entry);
364     Alias->replaceAllUsesWith(llvm::UndefValue::get(Alias->getType()));
365     Alias->eraseFromParent();
366   }
367 }
368 
369 void CodeGenModule::clear() {
370   DeferredDeclsToEmit.clear();
371   if (OpenMPRuntime)
372     OpenMPRuntime->clear();
373 }
374 
375 void InstrProfStats::reportDiagnostics(DiagnosticsEngine &Diags,
376                                        StringRef MainFile) {
377   if (!hasDiagnostics())
378     return;
379   if (VisitedInMainFile > 0 && VisitedInMainFile == MissingInMainFile) {
380     if (MainFile.empty())
381       MainFile = "<stdin>";
382     Diags.Report(diag::warn_profile_data_unprofiled) << MainFile;
383   } else {
384     if (Mismatched > 0)
385       Diags.Report(diag::warn_profile_data_out_of_date) << Visited << Mismatched;
386 
387     if (Missing > 0)
388       Diags.Report(diag::warn_profile_data_missing) << Visited << Missing;
389   }
390 }
391 
392 void CodeGenModule::Release() {
393   EmitDeferred();
394   EmitVTablesOpportunistically();
395   applyGlobalValReplacements();
396   applyReplacements();
397   checkAliases();
398   emitMultiVersionFunctions();
399   EmitCXXGlobalInitFunc();
400   EmitCXXGlobalDtorFunc();
401   registerGlobalDtorsWithAtExit();
402   EmitCXXThreadLocalInitFunc();
403   if (ObjCRuntime)
404     if (llvm::Function *ObjCInitFunction = ObjCRuntime->ModuleInitFunction())
405       AddGlobalCtor(ObjCInitFunction);
406   if (Context.getLangOpts().CUDA && !Context.getLangOpts().CUDAIsDevice &&
407       CUDARuntime) {
408     if (llvm::Function *CudaCtorFunction =
409             CUDARuntime->makeModuleCtorFunction())
410       AddGlobalCtor(CudaCtorFunction);
411   }
412   if (OpenMPRuntime) {
413     if (llvm::Function *OpenMPRequiresDirectiveRegFun =
414             OpenMPRuntime->emitRequiresDirectiveRegFun()) {
415       AddGlobalCtor(OpenMPRequiresDirectiveRegFun, 0);
416     }
417     if (llvm::Function *OpenMPRegistrationFunction =
418             OpenMPRuntime->emitRegistrationFunction()) {
419       auto ComdatKey = OpenMPRegistrationFunction->hasComdat() ?
420         OpenMPRegistrationFunction : nullptr;
421       AddGlobalCtor(OpenMPRegistrationFunction, 0, ComdatKey);
422     }
423     OpenMPRuntime->clear();
424   }
425   if (PGOReader) {
426     getModule().setProfileSummary(
427         PGOReader->getSummary(/* UseCS */ false).getMD(VMContext),
428         llvm::ProfileSummary::PSK_Instr);
429     if (PGOStats.hasDiagnostics())
430       PGOStats.reportDiagnostics(getDiags(), getCodeGenOpts().MainFileName);
431   }
432   EmitCtorList(GlobalCtors, "llvm.global_ctors");
433   EmitCtorList(GlobalDtors, "llvm.global_dtors");
434   EmitGlobalAnnotations();
435   EmitStaticExternCAliases();
436   EmitDeferredUnusedCoverageMappings();
437   if (CoverageMapping)
438     CoverageMapping->emit();
439   if (CodeGenOpts.SanitizeCfiCrossDso) {
440     CodeGenFunction(*this).EmitCfiCheckFail();
441     CodeGenFunction(*this).EmitCfiCheckStub();
442   }
443   emitAtAvailableLinkGuard();
444   emitLLVMUsed();
445   if (SanStats)
446     SanStats->finish();
447 
448   if (CodeGenOpts.Autolink &&
449       (Context.getLangOpts().Modules || !LinkerOptionsMetadata.empty())) {
450     EmitModuleLinkOptions();
451   }
452 
453   // On ELF we pass the dependent library specifiers directly to the linker
454   // without manipulating them. This is in contrast to other platforms where
455   // they are mapped to a specific linker option by the compiler. This
456   // difference is a result of the greater variety of ELF linkers and the fact
457   // that ELF linkers tend to handle libraries in a more complicated fashion
458   // than on other platforms. This forces us to defer handling the dependent
459   // libs to the linker.
460   //
461   // CUDA/HIP device and host libraries are different. Currently there is no
462   // way to differentiate dependent libraries for host or device. Existing
463   // usage of #pragma comment(lib, *) is intended for host libraries on
464   // Windows. Therefore emit llvm.dependent-libraries only for host.
465   if (!ELFDependentLibraries.empty() && !Context.getLangOpts().CUDAIsDevice) {
466     auto *NMD = getModule().getOrInsertNamedMetadata("llvm.dependent-libraries");
467     for (auto *MD : ELFDependentLibraries)
468       NMD->addOperand(MD);
469   }
470 
471   // Record mregparm value now so it is visible through rest of codegen.
472   if (Context.getTargetInfo().getTriple().getArch() == llvm::Triple::x86)
473     getModule().addModuleFlag(llvm::Module::Error, "NumRegisterParameters",
474                               CodeGenOpts.NumRegisterParameters);
475 
476   if (CodeGenOpts.DwarfVersion) {
477     // We actually want the latest version when there are conflicts.
478     // We can change from Warning to Latest if such mode is supported.
479     getModule().addModuleFlag(llvm::Module::Warning, "Dwarf Version",
480                               CodeGenOpts.DwarfVersion);
481   }
482   if (CodeGenOpts.EmitCodeView) {
483     // Indicate that we want CodeView in the metadata.
484     getModule().addModuleFlag(llvm::Module::Warning, "CodeView", 1);
485   }
486   if (CodeGenOpts.CodeViewGHash) {
487     getModule().addModuleFlag(llvm::Module::Warning, "CodeViewGHash", 1);
488   }
489   if (CodeGenOpts.ControlFlowGuard) {
490     // We want function ID tables for Control Flow Guard.
491     getModule().addModuleFlag(llvm::Module::Warning, "cfguardtable", 1);
492   }
493   if (CodeGenOpts.OptimizationLevel > 0 && CodeGenOpts.StrictVTablePointers) {
494     // We don't support LTO with 2 with different StrictVTablePointers
495     // FIXME: we could support it by stripping all the information introduced
496     // by StrictVTablePointers.
497 
498     getModule().addModuleFlag(llvm::Module::Error, "StrictVTablePointers",1);
499 
500     llvm::Metadata *Ops[2] = {
501               llvm::MDString::get(VMContext, "StrictVTablePointers"),
502               llvm::ConstantAsMetadata::get(llvm::ConstantInt::get(
503                   llvm::Type::getInt32Ty(VMContext), 1))};
504 
505     getModule().addModuleFlag(llvm::Module::Require,
506                               "StrictVTablePointersRequirement",
507                               llvm::MDNode::get(VMContext, Ops));
508   }
509   if (DebugInfo)
510     // We support a single version in the linked module. The LLVM
511     // parser will drop debug info with a different version number
512     // (and warn about it, too).
513     getModule().addModuleFlag(llvm::Module::Warning, "Debug Info Version",
514                               llvm::DEBUG_METADATA_VERSION);
515 
516   // We need to record the widths of enums and wchar_t, so that we can generate
517   // the correct build attributes in the ARM backend. wchar_size is also used by
518   // TargetLibraryInfo.
519   uint64_t WCharWidth =
520       Context.getTypeSizeInChars(Context.getWideCharType()).getQuantity();
521   getModule().addModuleFlag(llvm::Module::Error, "wchar_size", WCharWidth);
522 
523   llvm::Triple::ArchType Arch = Context.getTargetInfo().getTriple().getArch();
524   if (   Arch == llvm::Triple::arm
525       || Arch == llvm::Triple::armeb
526       || Arch == llvm::Triple::thumb
527       || Arch == llvm::Triple::thumbeb) {
528     // The minimum width of an enum in bytes
529     uint64_t EnumWidth = Context.getLangOpts().ShortEnums ? 1 : 4;
530     getModule().addModuleFlag(llvm::Module::Error, "min_enum_size", EnumWidth);
531   }
532 
533   if (CodeGenOpts.SanitizeCfiCrossDso) {
534     // Indicate that we want cross-DSO control flow integrity checks.
535     getModule().addModuleFlag(llvm::Module::Override, "Cross-DSO CFI", 1);
536   }
537 
538   if (CodeGenOpts.CFProtectionReturn &&
539       Target.checkCFProtectionReturnSupported(getDiags())) {
540     // Indicate that we want to instrument return control flow protection.
541     getModule().addModuleFlag(llvm::Module::Override, "cf-protection-return",
542                               1);
543   }
544 
545   if (CodeGenOpts.CFProtectionBranch &&
546       Target.checkCFProtectionBranchSupported(getDiags())) {
547     // Indicate that we want to instrument branch control flow protection.
548     getModule().addModuleFlag(llvm::Module::Override, "cf-protection-branch",
549                               1);
550   }
551 
552   if (LangOpts.CUDAIsDevice && getTriple().isNVPTX()) {
553     // Indicate whether __nvvm_reflect should be configured to flush denormal
554     // floating point values to 0.  (This corresponds to its "__CUDA_FTZ"
555     // property.)
556     getModule().addModuleFlag(llvm::Module::Override, "nvvm-reflect-ftz",
557                               CodeGenOpts.FlushDenorm ? 1 : 0);
558   }
559 
560   // Emit OpenCL specific module metadata: OpenCL/SPIR version.
561   if (LangOpts.OpenCL) {
562     EmitOpenCLMetadata();
563     // Emit SPIR version.
564     if (getTriple().isSPIR()) {
565       // SPIR v2.0 s2.12 - The SPIR version used by the module is stored in the
566       // opencl.spir.version named metadata.
567       // C++ is backwards compatible with OpenCL v2.0.
568       auto Version = LangOpts.OpenCLCPlusPlus ? 200 : LangOpts.OpenCLVersion;
569       llvm::Metadata *SPIRVerElts[] = {
570           llvm::ConstantAsMetadata::get(llvm::ConstantInt::get(
571               Int32Ty, Version / 100)),
572           llvm::ConstantAsMetadata::get(llvm::ConstantInt::get(
573               Int32Ty, (Version / 100 > 1) ? 0 : 2))};
574       llvm::NamedMDNode *SPIRVerMD =
575           TheModule.getOrInsertNamedMetadata("opencl.spir.version");
576       llvm::LLVMContext &Ctx = TheModule.getContext();
577       SPIRVerMD->addOperand(llvm::MDNode::get(Ctx, SPIRVerElts));
578     }
579   }
580 
581   if (uint32_t PLevel = Context.getLangOpts().PICLevel) {
582     assert(PLevel < 3 && "Invalid PIC Level");
583     getModule().setPICLevel(static_cast<llvm::PICLevel::Level>(PLevel));
584     if (Context.getLangOpts().PIE)
585       getModule().setPIELevel(static_cast<llvm::PIELevel::Level>(PLevel));
586   }
587 
588   if (getCodeGenOpts().CodeModel.size() > 0) {
589     unsigned CM = llvm::StringSwitch<unsigned>(getCodeGenOpts().CodeModel)
590                   .Case("tiny", llvm::CodeModel::Tiny)
591                   .Case("small", llvm::CodeModel::Small)
592                   .Case("kernel", llvm::CodeModel::Kernel)
593                   .Case("medium", llvm::CodeModel::Medium)
594                   .Case("large", llvm::CodeModel::Large)
595                   .Default(~0u);
596     if (CM != ~0u) {
597       llvm::CodeModel::Model codeModel = static_cast<llvm::CodeModel::Model>(CM);
598       getModule().setCodeModel(codeModel);
599     }
600   }
601 
602   if (CodeGenOpts.NoPLT)
603     getModule().setRtLibUseGOT();
604 
605   SimplifyPersonality();
606 
607   if (getCodeGenOpts().EmitDeclMetadata)
608     EmitDeclMetadata();
609 
610   if (getCodeGenOpts().EmitGcovArcs || getCodeGenOpts().EmitGcovNotes)
611     EmitCoverageFile();
612 
613   if (DebugInfo)
614     DebugInfo->finalize();
615 
616   if (getCodeGenOpts().EmitVersionIdentMetadata)
617     EmitVersionIdentMetadata();
618 
619   if (!getCodeGenOpts().RecordCommandLine.empty())
620     EmitCommandLineMetadata();
621 
622   EmitTargetMetadata();
623 }
624 
625 void CodeGenModule::EmitOpenCLMetadata() {
626   // SPIR v2.0 s2.13 - The OpenCL version used by the module is stored in the
627   // opencl.ocl.version named metadata node.
628   // C++ is backwards compatible with OpenCL v2.0.
629   // FIXME: We might need to add CXX version at some point too?
630   auto Version = LangOpts.OpenCLCPlusPlus ? 200 : LangOpts.OpenCLVersion;
631   llvm::Metadata *OCLVerElts[] = {
632       llvm::ConstantAsMetadata::get(llvm::ConstantInt::get(
633           Int32Ty, Version / 100)),
634       llvm::ConstantAsMetadata::get(llvm::ConstantInt::get(
635           Int32Ty, (Version % 100) / 10))};
636   llvm::NamedMDNode *OCLVerMD =
637       TheModule.getOrInsertNamedMetadata("opencl.ocl.version");
638   llvm::LLVMContext &Ctx = TheModule.getContext();
639   OCLVerMD->addOperand(llvm::MDNode::get(Ctx, OCLVerElts));
640 }
641 
642 void CodeGenModule::UpdateCompletedType(const TagDecl *TD) {
643   // Make sure that this type is translated.
644   Types.UpdateCompletedType(TD);
645 }
646 
647 void CodeGenModule::RefreshTypeCacheForClass(const CXXRecordDecl *RD) {
648   // Make sure that this type is translated.
649   Types.RefreshTypeCacheForClass(RD);
650 }
651 
652 llvm::MDNode *CodeGenModule::getTBAATypeInfo(QualType QTy) {
653   if (!TBAA)
654     return nullptr;
655   return TBAA->getTypeInfo(QTy);
656 }
657 
658 TBAAAccessInfo CodeGenModule::getTBAAAccessInfo(QualType AccessType) {
659   if (!TBAA)
660     return TBAAAccessInfo();
661   return TBAA->getAccessInfo(AccessType);
662 }
663 
664 TBAAAccessInfo
665 CodeGenModule::getTBAAVTablePtrAccessInfo(llvm::Type *VTablePtrType) {
666   if (!TBAA)
667     return TBAAAccessInfo();
668   return TBAA->getVTablePtrAccessInfo(VTablePtrType);
669 }
670 
671 llvm::MDNode *CodeGenModule::getTBAAStructInfo(QualType QTy) {
672   if (!TBAA)
673     return nullptr;
674   return TBAA->getTBAAStructInfo(QTy);
675 }
676 
677 llvm::MDNode *CodeGenModule::getTBAABaseTypeInfo(QualType QTy) {
678   if (!TBAA)
679     return nullptr;
680   return TBAA->getBaseTypeInfo(QTy);
681 }
682 
683 llvm::MDNode *CodeGenModule::getTBAAAccessTagInfo(TBAAAccessInfo Info) {
684   if (!TBAA)
685     return nullptr;
686   return TBAA->getAccessTagInfo(Info);
687 }
688 
689 TBAAAccessInfo CodeGenModule::mergeTBAAInfoForCast(TBAAAccessInfo SourceInfo,
690                                                    TBAAAccessInfo TargetInfo) {
691   if (!TBAA)
692     return TBAAAccessInfo();
693   return TBAA->mergeTBAAInfoForCast(SourceInfo, TargetInfo);
694 }
695 
696 TBAAAccessInfo
697 CodeGenModule::mergeTBAAInfoForConditionalOperator(TBAAAccessInfo InfoA,
698                                                    TBAAAccessInfo InfoB) {
699   if (!TBAA)
700     return TBAAAccessInfo();
701   return TBAA->mergeTBAAInfoForConditionalOperator(InfoA, InfoB);
702 }
703 
704 TBAAAccessInfo
705 CodeGenModule::mergeTBAAInfoForMemoryTransfer(TBAAAccessInfo DestInfo,
706                                               TBAAAccessInfo SrcInfo) {
707   if (!TBAA)
708     return TBAAAccessInfo();
709   return TBAA->mergeTBAAInfoForConditionalOperator(DestInfo, SrcInfo);
710 }
711 
712 void CodeGenModule::DecorateInstructionWithTBAA(llvm::Instruction *Inst,
713                                                 TBAAAccessInfo TBAAInfo) {
714   if (llvm::MDNode *Tag = getTBAAAccessTagInfo(TBAAInfo))
715     Inst->setMetadata(llvm::LLVMContext::MD_tbaa, Tag);
716 }
717 
718 void CodeGenModule::DecorateInstructionWithInvariantGroup(
719     llvm::Instruction *I, const CXXRecordDecl *RD) {
720   I->setMetadata(llvm::LLVMContext::MD_invariant_group,
721                  llvm::MDNode::get(getLLVMContext(), {}));
722 }
723 
724 void CodeGenModule::Error(SourceLocation loc, StringRef message) {
725   unsigned diagID = getDiags().getCustomDiagID(DiagnosticsEngine::Error, "%0");
726   getDiags().Report(Context.getFullLoc(loc), diagID) << message;
727 }
728 
729 /// ErrorUnsupported - Print out an error that codegen doesn't support the
730 /// specified stmt yet.
731 void CodeGenModule::ErrorUnsupported(const Stmt *S, const char *Type) {
732   unsigned DiagID = getDiags().getCustomDiagID(DiagnosticsEngine::Error,
733                                                "cannot compile this %0 yet");
734   std::string Msg = Type;
735   getDiags().Report(Context.getFullLoc(S->getBeginLoc()), DiagID)
736       << Msg << S->getSourceRange();
737 }
738 
739 /// ErrorUnsupported - Print out an error that codegen doesn't support the
740 /// specified decl yet.
741 void CodeGenModule::ErrorUnsupported(const Decl *D, const char *Type) {
742   unsigned DiagID = getDiags().getCustomDiagID(DiagnosticsEngine::Error,
743                                                "cannot compile this %0 yet");
744   std::string Msg = Type;
745   getDiags().Report(Context.getFullLoc(D->getLocation()), DiagID) << Msg;
746 }
747 
748 llvm::ConstantInt *CodeGenModule::getSize(CharUnits size) {
749   return llvm::ConstantInt::get(SizeTy, size.getQuantity());
750 }
751 
752 void CodeGenModule::setGlobalVisibility(llvm::GlobalValue *GV,
753                                         const NamedDecl *D) const {
754   if (GV->hasDLLImportStorageClass())
755     return;
756   // Internal definitions always have default visibility.
757   if (GV->hasLocalLinkage()) {
758     GV->setVisibility(llvm::GlobalValue::DefaultVisibility);
759     return;
760   }
761   if (!D)
762     return;
763   // Set visibility for definitions, and for declarations if requested globally
764   // or set explicitly.
765   LinkageInfo LV = D->getLinkageAndVisibility();
766   if (LV.isVisibilityExplicit() || getLangOpts().SetVisibilityForExternDecls ||
767       !GV->isDeclarationForLinker())
768     GV->setVisibility(GetLLVMVisibility(LV.getVisibility()));
769 }
770 
771 static bool shouldAssumeDSOLocal(const CodeGenModule &CGM,
772                                  llvm::GlobalValue *GV) {
773   if (GV->hasLocalLinkage())
774     return true;
775 
776   if (!GV->hasDefaultVisibility() && !GV->hasExternalWeakLinkage())
777     return true;
778 
779   // DLLImport explicitly marks the GV as external.
780   if (GV->hasDLLImportStorageClass())
781     return false;
782 
783   const llvm::Triple &TT = CGM.getTriple();
784   if (TT.isWindowsGNUEnvironment()) {
785     // In MinGW, variables without DLLImport can still be automatically
786     // imported from a DLL by the linker; don't mark variables that
787     // potentially could come from another DLL as DSO local.
788     if (GV->isDeclarationForLinker() && isa<llvm::GlobalVariable>(GV) &&
789         !GV->isThreadLocal())
790       return false;
791   }
792 
793   // On COFF, don't mark 'extern_weak' symbols as DSO local. If these symbols
794   // remain unresolved in the link, they can be resolved to zero, which is
795   // outside the current DSO.
796   if (TT.isOSBinFormatCOFF() && GV->hasExternalWeakLinkage())
797     return false;
798 
799   // Every other GV is local on COFF.
800   // Make an exception for windows OS in the triple: Some firmware builds use
801   // *-win32-macho triples. This (accidentally?) produced windows relocations
802   // without GOT tables in older clang versions; Keep this behaviour.
803   // FIXME: even thread local variables?
804   if (TT.isOSBinFormatCOFF() || (TT.isOSWindows() && TT.isOSBinFormatMachO()))
805     return true;
806 
807   // Only handle COFF and ELF for now.
808   if (!TT.isOSBinFormatELF())
809     return false;
810 
811   // If this is not an executable, don't assume anything is local.
812   const auto &CGOpts = CGM.getCodeGenOpts();
813   llvm::Reloc::Model RM = CGOpts.RelocationModel;
814   const auto &LOpts = CGM.getLangOpts();
815   if (RM != llvm::Reloc::Static && !LOpts.PIE && !LOpts.OpenMPIsDevice)
816     return false;
817 
818   // A definition cannot be preempted from an executable.
819   if (!GV->isDeclarationForLinker())
820     return true;
821 
822   // Most PIC code sequences that assume that a symbol is local cannot produce a
823   // 0 if it turns out the symbol is undefined. While this is ABI and relocation
824   // depended, it seems worth it to handle it here.
825   if (RM == llvm::Reloc::PIC_ && GV->hasExternalWeakLinkage())
826     return false;
827 
828   // PPC has no copy relocations and cannot use a plt entry as a symbol address.
829   llvm::Triple::ArchType Arch = TT.getArch();
830   if (Arch == llvm::Triple::ppc || Arch == llvm::Triple::ppc64 ||
831       Arch == llvm::Triple::ppc64le)
832     return false;
833 
834   // If we can use copy relocations we can assume it is local.
835   if (auto *Var = dyn_cast<llvm::GlobalVariable>(GV))
836     if (!Var->isThreadLocal() &&
837         (RM == llvm::Reloc::Static || CGOpts.PIECopyRelocations))
838       return true;
839 
840   // If we can use a plt entry as the symbol address we can assume it
841   // is local.
842   // FIXME: This should work for PIE, but the gold linker doesn't support it.
843   if (isa<llvm::Function>(GV) && !CGOpts.NoPLT && RM == llvm::Reloc::Static)
844     return true;
845 
846   // Otherwise don't assue it is local.
847   return false;
848 }
849 
850 void CodeGenModule::setDSOLocal(llvm::GlobalValue *GV) const {
851   GV->setDSOLocal(shouldAssumeDSOLocal(*this, GV));
852 }
853 
854 void CodeGenModule::setDLLImportDLLExport(llvm::GlobalValue *GV,
855                                           GlobalDecl GD) const {
856   const auto *D = dyn_cast<NamedDecl>(GD.getDecl());
857   // C++ destructors have a few C++ ABI specific special cases.
858   if (const auto *Dtor = dyn_cast_or_null<CXXDestructorDecl>(D)) {
859     getCXXABI().setCXXDestructorDLLStorage(GV, Dtor, GD.getDtorType());
860     return;
861   }
862   setDLLImportDLLExport(GV, D);
863 }
864 
865 void CodeGenModule::setDLLImportDLLExport(llvm::GlobalValue *GV,
866                                           const NamedDecl *D) const {
867   if (D && D->isExternallyVisible()) {
868     if (D->hasAttr<DLLImportAttr>())
869       GV->setDLLStorageClass(llvm::GlobalVariable::DLLImportStorageClass);
870     else if (D->hasAttr<DLLExportAttr>() && !GV->isDeclarationForLinker())
871       GV->setDLLStorageClass(llvm::GlobalVariable::DLLExportStorageClass);
872   }
873 }
874 
875 void CodeGenModule::setGVProperties(llvm::GlobalValue *GV,
876                                     GlobalDecl GD) const {
877   setDLLImportDLLExport(GV, GD);
878   setGVPropertiesAux(GV, dyn_cast<NamedDecl>(GD.getDecl()));
879 }
880 
881 void CodeGenModule::setGVProperties(llvm::GlobalValue *GV,
882                                     const NamedDecl *D) const {
883   setDLLImportDLLExport(GV, D);
884   setGVPropertiesAux(GV, D);
885 }
886 
887 void CodeGenModule::setGVPropertiesAux(llvm::GlobalValue *GV,
888                                        const NamedDecl *D) const {
889   setGlobalVisibility(GV, D);
890   setDSOLocal(GV);
891   GV->setPartition(CodeGenOpts.SymbolPartition);
892 }
893 
894 static llvm::GlobalVariable::ThreadLocalMode GetLLVMTLSModel(StringRef S) {
895   return llvm::StringSwitch<llvm::GlobalVariable::ThreadLocalMode>(S)
896       .Case("global-dynamic", llvm::GlobalVariable::GeneralDynamicTLSModel)
897       .Case("local-dynamic", llvm::GlobalVariable::LocalDynamicTLSModel)
898       .Case("initial-exec", llvm::GlobalVariable::InitialExecTLSModel)
899       .Case("local-exec", llvm::GlobalVariable::LocalExecTLSModel);
900 }
901 
902 static llvm::GlobalVariable::ThreadLocalMode GetLLVMTLSModel(
903     CodeGenOptions::TLSModel M) {
904   switch (M) {
905   case CodeGenOptions::GeneralDynamicTLSModel:
906     return llvm::GlobalVariable::GeneralDynamicTLSModel;
907   case CodeGenOptions::LocalDynamicTLSModel:
908     return llvm::GlobalVariable::LocalDynamicTLSModel;
909   case CodeGenOptions::InitialExecTLSModel:
910     return llvm::GlobalVariable::InitialExecTLSModel;
911   case CodeGenOptions::LocalExecTLSModel:
912     return llvm::GlobalVariable::LocalExecTLSModel;
913   }
914   llvm_unreachable("Invalid TLS model!");
915 }
916 
917 void CodeGenModule::setTLSMode(llvm::GlobalValue *GV, const VarDecl &D) const {
918   assert(D.getTLSKind() && "setting TLS mode on non-TLS var!");
919 
920   llvm::GlobalValue::ThreadLocalMode TLM;
921   TLM = GetLLVMTLSModel(CodeGenOpts.getDefaultTLSModel());
922 
923   // Override the TLS model if it is explicitly specified.
924   if (const TLSModelAttr *Attr = D.getAttr<TLSModelAttr>()) {
925     TLM = GetLLVMTLSModel(Attr->getModel());
926   }
927 
928   GV->setThreadLocalMode(TLM);
929 }
930 
931 static std::string getCPUSpecificMangling(const CodeGenModule &CGM,
932                                           StringRef Name) {
933   const TargetInfo &Target = CGM.getTarget();
934   return (Twine('.') + Twine(Target.CPUSpecificManglingCharacter(Name))).str();
935 }
936 
937 static void AppendCPUSpecificCPUDispatchMangling(const CodeGenModule &CGM,
938                                                  const CPUSpecificAttr *Attr,
939                                                  unsigned CPUIndex,
940                                                  raw_ostream &Out) {
941   // cpu_specific gets the current name, dispatch gets the resolver if IFunc is
942   // supported.
943   if (Attr)
944     Out << getCPUSpecificMangling(CGM, Attr->getCPUName(CPUIndex)->getName());
945   else if (CGM.getTarget().supportsIFunc())
946     Out << ".resolver";
947 }
948 
949 static void AppendTargetMangling(const CodeGenModule &CGM,
950                                  const TargetAttr *Attr, raw_ostream &Out) {
951   if (Attr->isDefaultVersion())
952     return;
953 
954   Out << '.';
955   const TargetInfo &Target = CGM.getTarget();
956   TargetAttr::ParsedTargetAttr Info =
957       Attr->parse([&Target](StringRef LHS, StringRef RHS) {
958         // Multiversioning doesn't allow "no-${feature}", so we can
959         // only have "+" prefixes here.
960         assert(LHS.startswith("+") && RHS.startswith("+") &&
961                "Features should always have a prefix.");
962         return Target.multiVersionSortPriority(LHS.substr(1)) >
963                Target.multiVersionSortPriority(RHS.substr(1));
964       });
965 
966   bool IsFirst = true;
967 
968   if (!Info.Architecture.empty()) {
969     IsFirst = false;
970     Out << "arch_" << Info.Architecture;
971   }
972 
973   for (StringRef Feat : Info.Features) {
974     if (!IsFirst)
975       Out << '_';
976     IsFirst = false;
977     Out << Feat.substr(1);
978   }
979 }
980 
981 static std::string getMangledNameImpl(const CodeGenModule &CGM, GlobalDecl GD,
982                                       const NamedDecl *ND,
983                                       bool OmitMultiVersionMangling = false) {
984   SmallString<256> Buffer;
985   llvm::raw_svector_ostream Out(Buffer);
986   MangleContext &MC = CGM.getCXXABI().getMangleContext();
987   if (MC.shouldMangleDeclName(ND)) {
988     llvm::raw_svector_ostream Out(Buffer);
989     if (const auto *D = dyn_cast<CXXConstructorDecl>(ND))
990       MC.mangleCXXCtor(D, GD.getCtorType(), Out);
991     else if (const auto *D = dyn_cast<CXXDestructorDecl>(ND))
992       MC.mangleCXXDtor(D, GD.getDtorType(), Out);
993     else
994       MC.mangleName(ND, Out);
995   } else {
996     IdentifierInfo *II = ND->getIdentifier();
997     assert(II && "Attempt to mangle unnamed decl.");
998     const auto *FD = dyn_cast<FunctionDecl>(ND);
999 
1000     if (FD &&
1001         FD->getType()->castAs<FunctionType>()->getCallConv() == CC_X86RegCall) {
1002       llvm::raw_svector_ostream Out(Buffer);
1003       Out << "__regcall3__" << II->getName();
1004     } else {
1005       Out << II->getName();
1006     }
1007   }
1008 
1009   if (const auto *FD = dyn_cast<FunctionDecl>(ND))
1010     if (FD->isMultiVersion() && !OmitMultiVersionMangling) {
1011       switch (FD->getMultiVersionKind()) {
1012       case MultiVersionKind::CPUDispatch:
1013       case MultiVersionKind::CPUSpecific:
1014         AppendCPUSpecificCPUDispatchMangling(CGM,
1015                                              FD->getAttr<CPUSpecificAttr>(),
1016                                              GD.getMultiVersionIndex(), Out);
1017         break;
1018       case MultiVersionKind::Target:
1019         AppendTargetMangling(CGM, FD->getAttr<TargetAttr>(), Out);
1020         break;
1021       case MultiVersionKind::None:
1022         llvm_unreachable("None multiversion type isn't valid here");
1023       }
1024     }
1025 
1026   return Out.str();
1027 }
1028 
1029 void CodeGenModule::UpdateMultiVersionNames(GlobalDecl GD,
1030                                             const FunctionDecl *FD) {
1031   if (!FD->isMultiVersion())
1032     return;
1033 
1034   // Get the name of what this would be without the 'target' attribute.  This
1035   // allows us to lookup the version that was emitted when this wasn't a
1036   // multiversion function.
1037   std::string NonTargetName =
1038       getMangledNameImpl(*this, GD, FD, /*OmitMultiVersionMangling=*/true);
1039   GlobalDecl OtherGD;
1040   if (lookupRepresentativeDecl(NonTargetName, OtherGD)) {
1041     assert(OtherGD.getCanonicalDecl()
1042                .getDecl()
1043                ->getAsFunction()
1044                ->isMultiVersion() &&
1045            "Other GD should now be a multiversioned function");
1046     // OtherFD is the version of this function that was mangled BEFORE
1047     // becoming a MultiVersion function.  It potentially needs to be updated.
1048     const FunctionDecl *OtherFD = OtherGD.getCanonicalDecl()
1049                                       .getDecl()
1050                                       ->getAsFunction()
1051                                       ->getMostRecentDecl();
1052     std::string OtherName = getMangledNameImpl(*this, OtherGD, OtherFD);
1053     // This is so that if the initial version was already the 'default'
1054     // version, we don't try to update it.
1055     if (OtherName != NonTargetName) {
1056       // Remove instead of erase, since others may have stored the StringRef
1057       // to this.
1058       const auto ExistingRecord = Manglings.find(NonTargetName);
1059       if (ExistingRecord != std::end(Manglings))
1060         Manglings.remove(&(*ExistingRecord));
1061       auto Result = Manglings.insert(std::make_pair(OtherName, OtherGD));
1062       MangledDeclNames[OtherGD.getCanonicalDecl()] = Result.first->first();
1063       if (llvm::GlobalValue *Entry = GetGlobalValue(NonTargetName))
1064         Entry->setName(OtherName);
1065     }
1066   }
1067 }
1068 
1069 StringRef CodeGenModule::getMangledName(GlobalDecl GD) {
1070   GlobalDecl CanonicalGD = GD.getCanonicalDecl();
1071 
1072   // Some ABIs don't have constructor variants.  Make sure that base and
1073   // complete constructors get mangled the same.
1074   if (const auto *CD = dyn_cast<CXXConstructorDecl>(CanonicalGD.getDecl())) {
1075     if (!getTarget().getCXXABI().hasConstructorVariants()) {
1076       CXXCtorType OrigCtorType = GD.getCtorType();
1077       assert(OrigCtorType == Ctor_Base || OrigCtorType == Ctor_Complete);
1078       if (OrigCtorType == Ctor_Base)
1079         CanonicalGD = GlobalDecl(CD, Ctor_Complete);
1080     }
1081   }
1082 
1083   auto FoundName = MangledDeclNames.find(CanonicalGD);
1084   if (FoundName != MangledDeclNames.end())
1085     return FoundName->second;
1086 
1087   // Keep the first result in the case of a mangling collision.
1088   const auto *ND = cast<NamedDecl>(GD.getDecl());
1089   std::string MangledName = getMangledNameImpl(*this, GD, ND);
1090 
1091   // Adjust kernel stub mangling as we may need to be able to differentiate
1092   // them from the kernel itself (e.g., for HIP).
1093   if (auto *FD = dyn_cast<FunctionDecl>(GD.getDecl()))
1094     if (!getLangOpts().CUDAIsDevice && FD->hasAttr<CUDAGlobalAttr>())
1095       MangledName = getCUDARuntime().getDeviceStubName(MangledName);
1096 
1097   auto Result = Manglings.insert(std::make_pair(MangledName, GD));
1098   return MangledDeclNames[CanonicalGD] = Result.first->first();
1099 }
1100 
1101 StringRef CodeGenModule::getBlockMangledName(GlobalDecl GD,
1102                                              const BlockDecl *BD) {
1103   MangleContext &MangleCtx = getCXXABI().getMangleContext();
1104   const Decl *D = GD.getDecl();
1105 
1106   SmallString<256> Buffer;
1107   llvm::raw_svector_ostream Out(Buffer);
1108   if (!D)
1109     MangleCtx.mangleGlobalBlock(BD,
1110       dyn_cast_or_null<VarDecl>(initializedGlobalDecl.getDecl()), Out);
1111   else if (const auto *CD = dyn_cast<CXXConstructorDecl>(D))
1112     MangleCtx.mangleCtorBlock(CD, GD.getCtorType(), BD, Out);
1113   else if (const auto *DD = dyn_cast<CXXDestructorDecl>(D))
1114     MangleCtx.mangleDtorBlock(DD, GD.getDtorType(), BD, Out);
1115   else
1116     MangleCtx.mangleBlock(cast<DeclContext>(D), BD, Out);
1117 
1118   auto Result = Manglings.insert(std::make_pair(Out.str(), BD));
1119   return Result.first->first();
1120 }
1121 
1122 llvm::GlobalValue *CodeGenModule::GetGlobalValue(StringRef Name) {
1123   return getModule().getNamedValue(Name);
1124 }
1125 
1126 /// AddGlobalCtor - Add a function to the list that will be called before
1127 /// main() runs.
1128 void CodeGenModule::AddGlobalCtor(llvm::Function *Ctor, int Priority,
1129                                   llvm::Constant *AssociatedData) {
1130   // FIXME: Type coercion of void()* types.
1131   GlobalCtors.push_back(Structor(Priority, Ctor, AssociatedData));
1132 }
1133 
1134 /// AddGlobalDtor - Add a function to the list that will be called
1135 /// when the module is unloaded.
1136 void CodeGenModule::AddGlobalDtor(llvm::Function *Dtor, int Priority) {
1137   if (CodeGenOpts.RegisterGlobalDtorsWithAtExit) {
1138     DtorsUsingAtExit[Priority].push_back(Dtor);
1139     return;
1140   }
1141 
1142   // FIXME: Type coercion of void()* types.
1143   GlobalDtors.push_back(Structor(Priority, Dtor, nullptr));
1144 }
1145 
1146 void CodeGenModule::EmitCtorList(CtorList &Fns, const char *GlobalName) {
1147   if (Fns.empty()) return;
1148 
1149   // Ctor function type is void()*.
1150   llvm::FunctionType* CtorFTy = llvm::FunctionType::get(VoidTy, false);
1151   llvm::Type *CtorPFTy = llvm::PointerType::get(CtorFTy,
1152       TheModule.getDataLayout().getProgramAddressSpace());
1153 
1154   // Get the type of a ctor entry, { i32, void ()*, i8* }.
1155   llvm::StructType *CtorStructTy = llvm::StructType::get(
1156       Int32Ty, CtorPFTy, VoidPtrTy);
1157 
1158   // Construct the constructor and destructor arrays.
1159   ConstantInitBuilder builder(*this);
1160   auto ctors = builder.beginArray(CtorStructTy);
1161   for (const auto &I : Fns) {
1162     auto ctor = ctors.beginStruct(CtorStructTy);
1163     ctor.addInt(Int32Ty, I.Priority);
1164     ctor.add(llvm::ConstantExpr::getBitCast(I.Initializer, CtorPFTy));
1165     if (I.AssociatedData)
1166       ctor.add(llvm::ConstantExpr::getBitCast(I.AssociatedData, VoidPtrTy));
1167     else
1168       ctor.addNullPointer(VoidPtrTy);
1169     ctor.finishAndAddTo(ctors);
1170   }
1171 
1172   auto list =
1173     ctors.finishAndCreateGlobal(GlobalName, getPointerAlign(),
1174                                 /*constant*/ false,
1175                                 llvm::GlobalValue::AppendingLinkage);
1176 
1177   // The LTO linker doesn't seem to like it when we set an alignment
1178   // on appending variables.  Take it off as a workaround.
1179   list->setAlignment(0);
1180 
1181   Fns.clear();
1182 }
1183 
1184 llvm::GlobalValue::LinkageTypes
1185 CodeGenModule::getFunctionLinkage(GlobalDecl GD) {
1186   const auto *D = cast<FunctionDecl>(GD.getDecl());
1187 
1188   GVALinkage Linkage = getContext().GetGVALinkageForFunction(D);
1189 
1190   if (const auto *Dtor = dyn_cast<CXXDestructorDecl>(D))
1191     return getCXXABI().getCXXDestructorLinkage(Linkage, Dtor, GD.getDtorType());
1192 
1193   if (isa<CXXConstructorDecl>(D) &&
1194       cast<CXXConstructorDecl>(D)->isInheritingConstructor() &&
1195       Context.getTargetInfo().getCXXABI().isMicrosoft()) {
1196     // Our approach to inheriting constructors is fundamentally different from
1197     // that used by the MS ABI, so keep our inheriting constructor thunks
1198     // internal rather than trying to pick an unambiguous mangling for them.
1199     return llvm::GlobalValue::InternalLinkage;
1200   }
1201 
1202   return getLLVMLinkageForDeclarator(D, Linkage, /*isConstantVariable=*/false);
1203 }
1204 
1205 llvm::ConstantInt *CodeGenModule::CreateCrossDsoCfiTypeId(llvm::Metadata *MD) {
1206   llvm::MDString *MDS = dyn_cast<llvm::MDString>(MD);
1207   if (!MDS) return nullptr;
1208 
1209   return llvm::ConstantInt::get(Int64Ty, llvm::MD5Hash(MDS->getString()));
1210 }
1211 
1212 void CodeGenModule::SetLLVMFunctionAttributes(GlobalDecl GD,
1213                                               const CGFunctionInfo &Info,
1214                                               llvm::Function *F) {
1215   unsigned CallingConv;
1216   llvm::AttributeList PAL;
1217   ConstructAttributeList(F->getName(), Info, GD, PAL, CallingConv, false);
1218   F->setAttributes(PAL);
1219   F->setCallingConv(static_cast<llvm::CallingConv::ID>(CallingConv));
1220 }
1221 
1222 static void removeImageAccessQualifier(std::string& TyName) {
1223   std::string ReadOnlyQual("__read_only");
1224   std::string::size_type ReadOnlyPos = TyName.find(ReadOnlyQual);
1225   if (ReadOnlyPos != std::string::npos)
1226     // "+ 1" for the space after access qualifier.
1227     TyName.erase(ReadOnlyPos, ReadOnlyQual.size() + 1);
1228   else {
1229     std::string WriteOnlyQual("__write_only");
1230     std::string::size_type WriteOnlyPos = TyName.find(WriteOnlyQual);
1231     if (WriteOnlyPos != std::string::npos)
1232       TyName.erase(WriteOnlyPos, WriteOnlyQual.size() + 1);
1233     else {
1234       std::string ReadWriteQual("__read_write");
1235       std::string::size_type ReadWritePos = TyName.find(ReadWriteQual);
1236       if (ReadWritePos != std::string::npos)
1237         TyName.erase(ReadWritePos, ReadWriteQual.size() + 1);
1238     }
1239   }
1240 }
1241 
1242 // Returns the address space id that should be produced to the
1243 // kernel_arg_addr_space metadata. This is always fixed to the ids
1244 // as specified in the SPIR 2.0 specification in order to differentiate
1245 // for example in clGetKernelArgInfo() implementation between the address
1246 // spaces with targets without unique mapping to the OpenCL address spaces
1247 // (basically all single AS CPUs).
1248 static unsigned ArgInfoAddressSpace(LangAS AS) {
1249   switch (AS) {
1250   case LangAS::opencl_global:   return 1;
1251   case LangAS::opencl_constant: return 2;
1252   case LangAS::opencl_local:    return 3;
1253   case LangAS::opencl_generic:  return 4; // Not in SPIR 2.0 specs.
1254   default:
1255     return 0; // Assume private.
1256   }
1257 }
1258 
1259 void CodeGenModule::GenOpenCLArgMetadata(llvm::Function *Fn,
1260                                          const FunctionDecl *FD,
1261                                          CodeGenFunction *CGF) {
1262   assert(((FD && CGF) || (!FD && !CGF)) &&
1263          "Incorrect use - FD and CGF should either be both null or not!");
1264   // Create MDNodes that represent the kernel arg metadata.
1265   // Each MDNode is a list in the form of "key", N number of values which is
1266   // the same number of values as their are kernel arguments.
1267 
1268   const PrintingPolicy &Policy = Context.getPrintingPolicy();
1269 
1270   // MDNode for the kernel argument address space qualifiers.
1271   SmallVector<llvm::Metadata *, 8> addressQuals;
1272 
1273   // MDNode for the kernel argument access qualifiers (images only).
1274   SmallVector<llvm::Metadata *, 8> accessQuals;
1275 
1276   // MDNode for the kernel argument type names.
1277   SmallVector<llvm::Metadata *, 8> argTypeNames;
1278 
1279   // MDNode for the kernel argument base type names.
1280   SmallVector<llvm::Metadata *, 8> argBaseTypeNames;
1281 
1282   // MDNode for the kernel argument type qualifiers.
1283   SmallVector<llvm::Metadata *, 8> argTypeQuals;
1284 
1285   // MDNode for the kernel argument names.
1286   SmallVector<llvm::Metadata *, 8> argNames;
1287 
1288   if (FD && CGF)
1289     for (unsigned i = 0, e = FD->getNumParams(); i != e; ++i) {
1290       const ParmVarDecl *parm = FD->getParamDecl(i);
1291       QualType ty = parm->getType();
1292       std::string typeQuals;
1293 
1294       if (ty->isPointerType()) {
1295         QualType pointeeTy = ty->getPointeeType();
1296 
1297         // Get address qualifier.
1298         addressQuals.push_back(
1299             llvm::ConstantAsMetadata::get(CGF->Builder.getInt32(
1300                 ArgInfoAddressSpace(pointeeTy.getAddressSpace()))));
1301 
1302         // Get argument type name.
1303         std::string typeName =
1304             pointeeTy.getUnqualifiedType().getAsString(Policy) + "*";
1305 
1306         // Turn "unsigned type" to "utype"
1307         std::string::size_type pos = typeName.find("unsigned");
1308         if (pointeeTy.isCanonical() && pos != std::string::npos)
1309           typeName.erase(pos + 1, 8);
1310 
1311         argTypeNames.push_back(llvm::MDString::get(VMContext, typeName));
1312 
1313         std::string baseTypeName =
1314             pointeeTy.getUnqualifiedType().getCanonicalType().getAsString(
1315                 Policy) +
1316             "*";
1317 
1318         // Turn "unsigned type" to "utype"
1319         pos = baseTypeName.find("unsigned");
1320         if (pos != std::string::npos)
1321           baseTypeName.erase(pos + 1, 8);
1322 
1323         argBaseTypeNames.push_back(
1324             llvm::MDString::get(VMContext, baseTypeName));
1325 
1326         // Get argument type qualifiers:
1327         if (ty.isRestrictQualified())
1328           typeQuals = "restrict";
1329         if (pointeeTy.isConstQualified() ||
1330             (pointeeTy.getAddressSpace() == LangAS::opencl_constant))
1331           typeQuals += typeQuals.empty() ? "const" : " const";
1332         if (pointeeTy.isVolatileQualified())
1333           typeQuals += typeQuals.empty() ? "volatile" : " volatile";
1334       } else {
1335         uint32_t AddrSpc = 0;
1336         bool isPipe = ty->isPipeType();
1337         if (ty->isImageType() || isPipe)
1338           AddrSpc = ArgInfoAddressSpace(LangAS::opencl_global);
1339 
1340         addressQuals.push_back(
1341             llvm::ConstantAsMetadata::get(CGF->Builder.getInt32(AddrSpc)));
1342 
1343         // Get argument type name.
1344         std::string typeName;
1345         if (isPipe)
1346           typeName = ty.getCanonicalType()
1347                          ->getAs<PipeType>()
1348                          ->getElementType()
1349                          .getAsString(Policy);
1350         else
1351           typeName = ty.getUnqualifiedType().getAsString(Policy);
1352 
1353         // Turn "unsigned type" to "utype"
1354         std::string::size_type pos = typeName.find("unsigned");
1355         if (ty.isCanonical() && pos != std::string::npos)
1356           typeName.erase(pos + 1, 8);
1357 
1358         std::string baseTypeName;
1359         if (isPipe)
1360           baseTypeName = ty.getCanonicalType()
1361                              ->getAs<PipeType>()
1362                              ->getElementType()
1363                              .getCanonicalType()
1364                              .getAsString(Policy);
1365         else
1366           baseTypeName =
1367               ty.getUnqualifiedType().getCanonicalType().getAsString(Policy);
1368 
1369         // Remove access qualifiers on images
1370         // (as they are inseparable from type in clang implementation,
1371         // but OpenCL spec provides a special query to get access qualifier
1372         // via clGetKernelArgInfo with CL_KERNEL_ARG_ACCESS_QUALIFIER):
1373         if (ty->isImageType()) {
1374           removeImageAccessQualifier(typeName);
1375           removeImageAccessQualifier(baseTypeName);
1376         }
1377 
1378         argTypeNames.push_back(llvm::MDString::get(VMContext, typeName));
1379 
1380         // Turn "unsigned type" to "utype"
1381         pos = baseTypeName.find("unsigned");
1382         if (pos != std::string::npos)
1383           baseTypeName.erase(pos + 1, 8);
1384 
1385         argBaseTypeNames.push_back(
1386             llvm::MDString::get(VMContext, baseTypeName));
1387 
1388         if (isPipe)
1389           typeQuals = "pipe";
1390       }
1391 
1392       argTypeQuals.push_back(llvm::MDString::get(VMContext, typeQuals));
1393 
1394       // Get image and pipe access qualifier:
1395       if (ty->isImageType() || ty->isPipeType()) {
1396         const Decl *PDecl = parm;
1397         if (auto *TD = dyn_cast<TypedefType>(ty))
1398           PDecl = TD->getDecl();
1399         const OpenCLAccessAttr *A = PDecl->getAttr<OpenCLAccessAttr>();
1400         if (A && A->isWriteOnly())
1401           accessQuals.push_back(llvm::MDString::get(VMContext, "write_only"));
1402         else if (A && A->isReadWrite())
1403           accessQuals.push_back(llvm::MDString::get(VMContext, "read_write"));
1404         else
1405           accessQuals.push_back(llvm::MDString::get(VMContext, "read_only"));
1406       } else
1407         accessQuals.push_back(llvm::MDString::get(VMContext, "none"));
1408 
1409       // Get argument name.
1410       argNames.push_back(llvm::MDString::get(VMContext, parm->getName()));
1411     }
1412 
1413   Fn->setMetadata("kernel_arg_addr_space",
1414                   llvm::MDNode::get(VMContext, addressQuals));
1415   Fn->setMetadata("kernel_arg_access_qual",
1416                   llvm::MDNode::get(VMContext, accessQuals));
1417   Fn->setMetadata("kernel_arg_type",
1418                   llvm::MDNode::get(VMContext, argTypeNames));
1419   Fn->setMetadata("kernel_arg_base_type",
1420                   llvm::MDNode::get(VMContext, argBaseTypeNames));
1421   Fn->setMetadata("kernel_arg_type_qual",
1422                   llvm::MDNode::get(VMContext, argTypeQuals));
1423   if (getCodeGenOpts().EmitOpenCLArgMetadata)
1424     Fn->setMetadata("kernel_arg_name",
1425                     llvm::MDNode::get(VMContext, argNames));
1426 }
1427 
1428 /// Determines whether the language options require us to model
1429 /// unwind exceptions.  We treat -fexceptions as mandating this
1430 /// except under the fragile ObjC ABI with only ObjC exceptions
1431 /// enabled.  This means, for example, that C with -fexceptions
1432 /// enables this.
1433 static bool hasUnwindExceptions(const LangOptions &LangOpts) {
1434   // If exceptions are completely disabled, obviously this is false.
1435   if (!LangOpts.Exceptions) return false;
1436 
1437   // If C++ exceptions are enabled, this is true.
1438   if (LangOpts.CXXExceptions) return true;
1439 
1440   // If ObjC exceptions are enabled, this depends on the ABI.
1441   if (LangOpts.ObjCExceptions) {
1442     return LangOpts.ObjCRuntime.hasUnwindExceptions();
1443   }
1444 
1445   return true;
1446 }
1447 
1448 static bool requiresMemberFunctionPointerTypeMetadata(CodeGenModule &CGM,
1449                                                       const CXXMethodDecl *MD) {
1450   // Check that the type metadata can ever actually be used by a call.
1451   if (!CGM.getCodeGenOpts().LTOUnit ||
1452       !CGM.HasHiddenLTOVisibility(MD->getParent()))
1453     return false;
1454 
1455   // Only functions whose address can be taken with a member function pointer
1456   // need this sort of type metadata.
1457   return !MD->isStatic() && !MD->isVirtual() && !isa<CXXConstructorDecl>(MD) &&
1458          !isa<CXXDestructorDecl>(MD);
1459 }
1460 
1461 std::vector<const CXXRecordDecl *>
1462 CodeGenModule::getMostBaseClasses(const CXXRecordDecl *RD) {
1463   llvm::SetVector<const CXXRecordDecl *> MostBases;
1464 
1465   std::function<void (const CXXRecordDecl *)> CollectMostBases;
1466   CollectMostBases = [&](const CXXRecordDecl *RD) {
1467     if (RD->getNumBases() == 0)
1468       MostBases.insert(RD);
1469     for (const CXXBaseSpecifier &B : RD->bases())
1470       CollectMostBases(B.getType()->getAsCXXRecordDecl());
1471   };
1472   CollectMostBases(RD);
1473   return MostBases.takeVector();
1474 }
1475 
1476 void CodeGenModule::SetLLVMFunctionAttributesForDefinition(const Decl *D,
1477                                                            llvm::Function *F) {
1478   llvm::AttrBuilder B;
1479 
1480   if (CodeGenOpts.UnwindTables)
1481     B.addAttribute(llvm::Attribute::UWTable);
1482 
1483   if (!hasUnwindExceptions(LangOpts))
1484     B.addAttribute(llvm::Attribute::NoUnwind);
1485 
1486   if (!D || !D->hasAttr<NoStackProtectorAttr>()) {
1487     if (LangOpts.getStackProtector() == LangOptions::SSPOn)
1488       B.addAttribute(llvm::Attribute::StackProtect);
1489     else if (LangOpts.getStackProtector() == LangOptions::SSPStrong)
1490       B.addAttribute(llvm::Attribute::StackProtectStrong);
1491     else if (LangOpts.getStackProtector() == LangOptions::SSPReq)
1492       B.addAttribute(llvm::Attribute::StackProtectReq);
1493   }
1494 
1495   if (!D) {
1496     // If we don't have a declaration to control inlining, the function isn't
1497     // explicitly marked as alwaysinline for semantic reasons, and inlining is
1498     // disabled, mark the function as noinline.
1499     if (!F->hasFnAttribute(llvm::Attribute::AlwaysInline) &&
1500         CodeGenOpts.getInlining() == CodeGenOptions::OnlyAlwaysInlining)
1501       B.addAttribute(llvm::Attribute::NoInline);
1502 
1503     F->addAttributes(llvm::AttributeList::FunctionIndex, B);
1504     return;
1505   }
1506 
1507   // Track whether we need to add the optnone LLVM attribute,
1508   // starting with the default for this optimization level.
1509   bool ShouldAddOptNone =
1510       !CodeGenOpts.DisableO0ImplyOptNone && CodeGenOpts.OptimizationLevel == 0;
1511   // We can't add optnone in the following cases, it won't pass the verifier.
1512   ShouldAddOptNone &= !D->hasAttr<MinSizeAttr>();
1513   ShouldAddOptNone &= !F->hasFnAttribute(llvm::Attribute::AlwaysInline);
1514   ShouldAddOptNone &= !D->hasAttr<AlwaysInlineAttr>();
1515 
1516   if (ShouldAddOptNone || D->hasAttr<OptimizeNoneAttr>()) {
1517     B.addAttribute(llvm::Attribute::OptimizeNone);
1518 
1519     // OptimizeNone implies noinline; we should not be inlining such functions.
1520     B.addAttribute(llvm::Attribute::NoInline);
1521     assert(!F->hasFnAttribute(llvm::Attribute::AlwaysInline) &&
1522            "OptimizeNone and AlwaysInline on same function!");
1523 
1524     // We still need to handle naked functions even though optnone subsumes
1525     // much of their semantics.
1526     if (D->hasAttr<NakedAttr>())
1527       B.addAttribute(llvm::Attribute::Naked);
1528 
1529     // OptimizeNone wins over OptimizeForSize and MinSize.
1530     F->removeFnAttr(llvm::Attribute::OptimizeForSize);
1531     F->removeFnAttr(llvm::Attribute::MinSize);
1532   } else if (D->hasAttr<NakedAttr>()) {
1533     // Naked implies noinline: we should not be inlining such functions.
1534     B.addAttribute(llvm::Attribute::Naked);
1535     B.addAttribute(llvm::Attribute::NoInline);
1536   } else if (D->hasAttr<NoDuplicateAttr>()) {
1537     B.addAttribute(llvm::Attribute::NoDuplicate);
1538   } else if (D->hasAttr<NoInlineAttr>()) {
1539     B.addAttribute(llvm::Attribute::NoInline);
1540   } else if (D->hasAttr<AlwaysInlineAttr>() &&
1541              !F->hasFnAttribute(llvm::Attribute::NoInline)) {
1542     // (noinline wins over always_inline, and we can't specify both in IR)
1543     B.addAttribute(llvm::Attribute::AlwaysInline);
1544   } else if (CodeGenOpts.getInlining() == CodeGenOptions::OnlyAlwaysInlining) {
1545     // If we're not inlining, then force everything that isn't always_inline to
1546     // carry an explicit noinline attribute.
1547     if (!F->hasFnAttribute(llvm::Attribute::AlwaysInline))
1548       B.addAttribute(llvm::Attribute::NoInline);
1549   } else {
1550     // Otherwise, propagate the inline hint attribute and potentially use its
1551     // absence to mark things as noinline.
1552     if (auto *FD = dyn_cast<FunctionDecl>(D)) {
1553       // Search function and template pattern redeclarations for inline.
1554       auto CheckForInline = [](const FunctionDecl *FD) {
1555         auto CheckRedeclForInline = [](const FunctionDecl *Redecl) {
1556           return Redecl->isInlineSpecified();
1557         };
1558         if (any_of(FD->redecls(), CheckRedeclForInline))
1559           return true;
1560         const FunctionDecl *Pattern = FD->getTemplateInstantiationPattern();
1561         if (!Pattern)
1562           return false;
1563         return any_of(Pattern->redecls(), CheckRedeclForInline);
1564       };
1565       if (CheckForInline(FD)) {
1566         B.addAttribute(llvm::Attribute::InlineHint);
1567       } else if (CodeGenOpts.getInlining() ==
1568                      CodeGenOptions::OnlyHintInlining &&
1569                  !FD->isInlined() &&
1570                  !F->hasFnAttribute(llvm::Attribute::AlwaysInline)) {
1571         B.addAttribute(llvm::Attribute::NoInline);
1572       }
1573     }
1574   }
1575 
1576   // Add other optimization related attributes if we are optimizing this
1577   // function.
1578   if (!D->hasAttr<OptimizeNoneAttr>()) {
1579     if (D->hasAttr<ColdAttr>()) {
1580       if (!ShouldAddOptNone)
1581         B.addAttribute(llvm::Attribute::OptimizeForSize);
1582       B.addAttribute(llvm::Attribute::Cold);
1583     }
1584 
1585     if (D->hasAttr<MinSizeAttr>())
1586       B.addAttribute(llvm::Attribute::MinSize);
1587   }
1588 
1589   F->addAttributes(llvm::AttributeList::FunctionIndex, B);
1590 
1591   unsigned alignment = D->getMaxAlignment() / Context.getCharWidth();
1592   if (alignment)
1593     F->setAlignment(alignment);
1594 
1595   if (!D->hasAttr<AlignedAttr>())
1596     if (LangOpts.FunctionAlignment)
1597       F->setAlignment(1 << LangOpts.FunctionAlignment);
1598 
1599   // Some C++ ABIs require 2-byte alignment for member functions, in order to
1600   // reserve a bit for differentiating between virtual and non-virtual member
1601   // functions. If the current target's C++ ABI requires this and this is a
1602   // member function, set its alignment accordingly.
1603   if (getTarget().getCXXABI().areMemberFunctionsAligned()) {
1604     if (F->getAlignment() < 2 && isa<CXXMethodDecl>(D))
1605       F->setAlignment(2);
1606   }
1607 
1608   // In the cross-dso CFI mode, we want !type attributes on definitions only.
1609   if (CodeGenOpts.SanitizeCfiCrossDso)
1610     if (auto *FD = dyn_cast<FunctionDecl>(D))
1611       CreateFunctionTypeMetadataForIcall(FD, F);
1612 
1613   // Emit type metadata on member functions for member function pointer checks.
1614   // These are only ever necessary on definitions; we're guaranteed that the
1615   // definition will be present in the LTO unit as a result of LTO visibility.
1616   auto *MD = dyn_cast<CXXMethodDecl>(D);
1617   if (MD && requiresMemberFunctionPointerTypeMetadata(*this, MD)) {
1618     for (const CXXRecordDecl *Base : getMostBaseClasses(MD->getParent())) {
1619       llvm::Metadata *Id =
1620           CreateMetadataIdentifierForType(Context.getMemberPointerType(
1621               MD->getType(), Context.getRecordType(Base).getTypePtr()));
1622       F->addTypeMetadata(0, Id);
1623     }
1624   }
1625 }
1626 
1627 void CodeGenModule::SetCommonAttributes(GlobalDecl GD, llvm::GlobalValue *GV) {
1628   const Decl *D = GD.getDecl();
1629   if (dyn_cast_or_null<NamedDecl>(D))
1630     setGVProperties(GV, GD);
1631   else
1632     GV->setVisibility(llvm::GlobalValue::DefaultVisibility);
1633 
1634   if (D && D->hasAttr<UsedAttr>())
1635     addUsedGlobal(GV);
1636 
1637   if (CodeGenOpts.KeepStaticConsts && D && isa<VarDecl>(D)) {
1638     const auto *VD = cast<VarDecl>(D);
1639     if (VD->getType().isConstQualified() &&
1640         VD->getStorageDuration() == SD_Static)
1641       addUsedGlobal(GV);
1642   }
1643 }
1644 
1645 bool CodeGenModule::GetCPUAndFeaturesAttributes(GlobalDecl GD,
1646                                                 llvm::AttrBuilder &Attrs) {
1647   // Add target-cpu and target-features attributes to functions. If
1648   // we have a decl for the function and it has a target attribute then
1649   // parse that and add it to the feature set.
1650   StringRef TargetCPU = getTarget().getTargetOpts().CPU;
1651   std::vector<std::string> Features;
1652   const auto *FD = dyn_cast_or_null<FunctionDecl>(GD.getDecl());
1653   FD = FD ? FD->getMostRecentDecl() : FD;
1654   const auto *TD = FD ? FD->getAttr<TargetAttr>() : nullptr;
1655   const auto *SD = FD ? FD->getAttr<CPUSpecificAttr>() : nullptr;
1656   bool AddedAttr = false;
1657   if (TD || SD) {
1658     llvm::StringMap<bool> FeatureMap;
1659     getFunctionFeatureMap(FeatureMap, GD);
1660 
1661     // Produce the canonical string for this set of features.
1662     for (const llvm::StringMap<bool>::value_type &Entry : FeatureMap)
1663       Features.push_back((Entry.getValue() ? "+" : "-") + Entry.getKey().str());
1664 
1665     // Now add the target-cpu and target-features to the function.
1666     // While we populated the feature map above, we still need to
1667     // get and parse the target attribute so we can get the cpu for
1668     // the function.
1669     if (TD) {
1670       TargetAttr::ParsedTargetAttr ParsedAttr = TD->parse();
1671       if (ParsedAttr.Architecture != "" &&
1672           getTarget().isValidCPUName(ParsedAttr.Architecture))
1673         TargetCPU = ParsedAttr.Architecture;
1674     }
1675   } else {
1676     // Otherwise just add the existing target cpu and target features to the
1677     // function.
1678     Features = getTarget().getTargetOpts().Features;
1679   }
1680 
1681   if (TargetCPU != "") {
1682     Attrs.addAttribute("target-cpu", TargetCPU);
1683     AddedAttr = true;
1684   }
1685   if (!Features.empty()) {
1686     llvm::sort(Features);
1687     Attrs.addAttribute("target-features", llvm::join(Features, ","));
1688     AddedAttr = true;
1689   }
1690 
1691   return AddedAttr;
1692 }
1693 
1694 void CodeGenModule::setNonAliasAttributes(GlobalDecl GD,
1695                                           llvm::GlobalObject *GO) {
1696   const Decl *D = GD.getDecl();
1697   SetCommonAttributes(GD, GO);
1698 
1699   if (D) {
1700     if (auto *GV = dyn_cast<llvm::GlobalVariable>(GO)) {
1701       if (auto *SA = D->getAttr<PragmaClangBSSSectionAttr>())
1702         GV->addAttribute("bss-section", SA->getName());
1703       if (auto *SA = D->getAttr<PragmaClangDataSectionAttr>())
1704         GV->addAttribute("data-section", SA->getName());
1705       if (auto *SA = D->getAttr<PragmaClangRodataSectionAttr>())
1706         GV->addAttribute("rodata-section", SA->getName());
1707     }
1708 
1709     if (auto *F = dyn_cast<llvm::Function>(GO)) {
1710       if (auto *SA = D->getAttr<PragmaClangTextSectionAttr>())
1711         if (!D->getAttr<SectionAttr>())
1712           F->addFnAttr("implicit-section-name", SA->getName());
1713 
1714       llvm::AttrBuilder Attrs;
1715       if (GetCPUAndFeaturesAttributes(GD, Attrs)) {
1716         // We know that GetCPUAndFeaturesAttributes will always have the
1717         // newest set, since it has the newest possible FunctionDecl, so the
1718         // new ones should replace the old.
1719         F->removeFnAttr("target-cpu");
1720         F->removeFnAttr("target-features");
1721         F->addAttributes(llvm::AttributeList::FunctionIndex, Attrs);
1722       }
1723     }
1724 
1725     if (const auto *CSA = D->getAttr<CodeSegAttr>())
1726       GO->setSection(CSA->getName());
1727     else if (const auto *SA = D->getAttr<SectionAttr>())
1728       GO->setSection(SA->getName());
1729   }
1730 
1731   getTargetCodeGenInfo().setTargetAttributes(D, GO, *this);
1732 }
1733 
1734 void CodeGenModule::SetInternalFunctionAttributes(GlobalDecl GD,
1735                                                   llvm::Function *F,
1736                                                   const CGFunctionInfo &FI) {
1737   const Decl *D = GD.getDecl();
1738   SetLLVMFunctionAttributes(GD, FI, F);
1739   SetLLVMFunctionAttributesForDefinition(D, F);
1740 
1741   F->setLinkage(llvm::Function::InternalLinkage);
1742 
1743   setNonAliasAttributes(GD, F);
1744 }
1745 
1746 static void setLinkageForGV(llvm::GlobalValue *GV, const NamedDecl *ND) {
1747   // Set linkage and visibility in case we never see a definition.
1748   LinkageInfo LV = ND->getLinkageAndVisibility();
1749   // Don't set internal linkage on declarations.
1750   // "extern_weak" is overloaded in LLVM; we probably should have
1751   // separate linkage types for this.
1752   if (isExternallyVisible(LV.getLinkage()) &&
1753       (ND->hasAttr<WeakAttr>() || ND->isWeakImported()))
1754     GV->setLinkage(llvm::GlobalValue::ExternalWeakLinkage);
1755 }
1756 
1757 void CodeGenModule::CreateFunctionTypeMetadataForIcall(const FunctionDecl *FD,
1758                                                        llvm::Function *F) {
1759   // Only if we are checking indirect calls.
1760   if (!LangOpts.Sanitize.has(SanitizerKind::CFIICall))
1761     return;
1762 
1763   // Non-static class methods are handled via vtable or member function pointer
1764   // checks elsewhere.
1765   if (isa<CXXMethodDecl>(FD) && !cast<CXXMethodDecl>(FD)->isStatic())
1766     return;
1767 
1768   // Additionally, if building with cross-DSO support...
1769   if (CodeGenOpts.SanitizeCfiCrossDso) {
1770     // Skip available_externally functions. They won't be codegen'ed in the
1771     // current module anyway.
1772     if (getContext().GetGVALinkageForFunction(FD) == GVA_AvailableExternally)
1773       return;
1774   }
1775 
1776   llvm::Metadata *MD = CreateMetadataIdentifierForType(FD->getType());
1777   F->addTypeMetadata(0, MD);
1778   F->addTypeMetadata(0, CreateMetadataIdentifierGeneralized(FD->getType()));
1779 
1780   // Emit a hash-based bit set entry for cross-DSO calls.
1781   if (CodeGenOpts.SanitizeCfiCrossDso)
1782     if (auto CrossDsoTypeId = CreateCrossDsoCfiTypeId(MD))
1783       F->addTypeMetadata(0, llvm::ConstantAsMetadata::get(CrossDsoTypeId));
1784 }
1785 
1786 void CodeGenModule::SetFunctionAttributes(GlobalDecl GD, llvm::Function *F,
1787                                           bool IsIncompleteFunction,
1788                                           bool IsThunk) {
1789 
1790   if (llvm::Intrinsic::ID IID = F->getIntrinsicID()) {
1791     // If this is an intrinsic function, set the function's attributes
1792     // to the intrinsic's attributes.
1793     F->setAttributes(llvm::Intrinsic::getAttributes(getLLVMContext(), IID));
1794     return;
1795   }
1796 
1797   const auto *FD = cast<FunctionDecl>(GD.getDecl());
1798 
1799   if (!IsIncompleteFunction)
1800     SetLLVMFunctionAttributes(GD, getTypes().arrangeGlobalDeclaration(GD), F);
1801 
1802   // Add the Returned attribute for "this", except for iOS 5 and earlier
1803   // where substantial code, including the libstdc++ dylib, was compiled with
1804   // GCC and does not actually return "this".
1805   if (!IsThunk && getCXXABI().HasThisReturn(GD) &&
1806       !(getTriple().isiOS() && getTriple().isOSVersionLT(6))) {
1807     assert(!F->arg_empty() &&
1808            F->arg_begin()->getType()
1809              ->canLosslesslyBitCastTo(F->getReturnType()) &&
1810            "unexpected this return");
1811     F->addAttribute(1, llvm::Attribute::Returned);
1812   }
1813 
1814   // Only a few attributes are set on declarations; these may later be
1815   // overridden by a definition.
1816 
1817   setLinkageForGV(F, FD);
1818   setGVProperties(F, FD);
1819 
1820   // Setup target-specific attributes.
1821   if (!IsIncompleteFunction && F->isDeclaration())
1822     getTargetCodeGenInfo().setTargetAttributes(FD, F, *this);
1823 
1824   if (const auto *CSA = FD->getAttr<CodeSegAttr>())
1825     F->setSection(CSA->getName());
1826   else if (const auto *SA = FD->getAttr<SectionAttr>())
1827      F->setSection(SA->getName());
1828 
1829   if (FD->isReplaceableGlobalAllocationFunction()) {
1830     // A replaceable global allocation function does not act like a builtin by
1831     // default, only if it is invoked by a new-expression or delete-expression.
1832     F->addAttribute(llvm::AttributeList::FunctionIndex,
1833                     llvm::Attribute::NoBuiltin);
1834 
1835     // A sane operator new returns a non-aliasing pointer.
1836     // FIXME: Also add NonNull attribute to the return value
1837     // for the non-nothrow forms?
1838     auto Kind = FD->getDeclName().getCXXOverloadedOperator();
1839     if (getCodeGenOpts().AssumeSaneOperatorNew &&
1840         (Kind == OO_New || Kind == OO_Array_New))
1841       F->addAttribute(llvm::AttributeList::ReturnIndex,
1842                       llvm::Attribute::NoAlias);
1843   }
1844 
1845   if (isa<CXXConstructorDecl>(FD) || isa<CXXDestructorDecl>(FD))
1846     F->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global);
1847   else if (const auto *MD = dyn_cast<CXXMethodDecl>(FD))
1848     if (MD->isVirtual())
1849       F->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global);
1850 
1851   // Don't emit entries for function declarations in the cross-DSO mode. This
1852   // is handled with better precision by the receiving DSO.
1853   if (!CodeGenOpts.SanitizeCfiCrossDso)
1854     CreateFunctionTypeMetadataForIcall(FD, F);
1855 
1856   if (getLangOpts().OpenMP && FD->hasAttr<OMPDeclareSimdDeclAttr>())
1857     getOpenMPRuntime().emitDeclareSimdFunction(FD, F);
1858 
1859   if (const auto *CB = FD->getAttr<CallbackAttr>()) {
1860     // Annotate the callback behavior as metadata:
1861     //  - The callback callee (as argument number).
1862     //  - The callback payloads (as argument numbers).
1863     llvm::LLVMContext &Ctx = F->getContext();
1864     llvm::MDBuilder MDB(Ctx);
1865 
1866     // The payload indices are all but the first one in the encoding. The first
1867     // identifies the callback callee.
1868     int CalleeIdx = *CB->encoding_begin();
1869     ArrayRef<int> PayloadIndices(CB->encoding_begin() + 1, CB->encoding_end());
1870     F->addMetadata(llvm::LLVMContext::MD_callback,
1871                    *llvm::MDNode::get(Ctx, {MDB.createCallbackEncoding(
1872                                                CalleeIdx, PayloadIndices,
1873                                                /* VarArgsArePassed */ false)}));
1874   }
1875 }
1876 
1877 void CodeGenModule::addUsedGlobal(llvm::GlobalValue *GV) {
1878   assert(!GV->isDeclaration() &&
1879          "Only globals with definition can force usage.");
1880   LLVMUsed.emplace_back(GV);
1881 }
1882 
1883 void CodeGenModule::addCompilerUsedGlobal(llvm::GlobalValue *GV) {
1884   assert(!GV->isDeclaration() &&
1885          "Only globals with definition can force usage.");
1886   LLVMCompilerUsed.emplace_back(GV);
1887 }
1888 
1889 static void emitUsed(CodeGenModule &CGM, StringRef Name,
1890                      std::vector<llvm::WeakTrackingVH> &List) {
1891   // Don't create llvm.used if there is no need.
1892   if (List.empty())
1893     return;
1894 
1895   // Convert List to what ConstantArray needs.
1896   SmallVector<llvm::Constant*, 8> UsedArray;
1897   UsedArray.resize(List.size());
1898   for (unsigned i = 0, e = List.size(); i != e; ++i) {
1899     UsedArray[i] =
1900         llvm::ConstantExpr::getPointerBitCastOrAddrSpaceCast(
1901             cast<llvm::Constant>(&*List[i]), CGM.Int8PtrTy);
1902   }
1903 
1904   if (UsedArray.empty())
1905     return;
1906   llvm::ArrayType *ATy = llvm::ArrayType::get(CGM.Int8PtrTy, UsedArray.size());
1907 
1908   auto *GV = new llvm::GlobalVariable(
1909       CGM.getModule(), ATy, false, llvm::GlobalValue::AppendingLinkage,
1910       llvm::ConstantArray::get(ATy, UsedArray), Name);
1911 
1912   GV->setSection("llvm.metadata");
1913 }
1914 
1915 void CodeGenModule::emitLLVMUsed() {
1916   emitUsed(*this, "llvm.used", LLVMUsed);
1917   emitUsed(*this, "llvm.compiler.used", LLVMCompilerUsed);
1918 }
1919 
1920 void CodeGenModule::AppendLinkerOptions(StringRef Opts) {
1921   auto *MDOpts = llvm::MDString::get(getLLVMContext(), Opts);
1922   LinkerOptionsMetadata.push_back(llvm::MDNode::get(getLLVMContext(), MDOpts));
1923 }
1924 
1925 void CodeGenModule::AddDetectMismatch(StringRef Name, StringRef Value) {
1926   llvm::SmallString<32> Opt;
1927   getTargetCodeGenInfo().getDetectMismatchOption(Name, Value, Opt);
1928   auto *MDOpts = llvm::MDString::get(getLLVMContext(), Opt);
1929   LinkerOptionsMetadata.push_back(llvm::MDNode::get(getLLVMContext(), MDOpts));
1930 }
1931 
1932 void CodeGenModule::AddDependentLib(StringRef Lib) {
1933   auto &C = getLLVMContext();
1934   if (getTarget().getTriple().isOSBinFormatELF()) {
1935       ELFDependentLibraries.push_back(
1936         llvm::MDNode::get(C, llvm::MDString::get(C, Lib)));
1937     return;
1938   }
1939 
1940   llvm::SmallString<24> Opt;
1941   getTargetCodeGenInfo().getDependentLibraryOption(Lib, Opt);
1942   auto *MDOpts = llvm::MDString::get(getLLVMContext(), Opt);
1943   LinkerOptionsMetadata.push_back(llvm::MDNode::get(C, MDOpts));
1944 }
1945 
1946 /// Add link options implied by the given module, including modules
1947 /// it depends on, using a postorder walk.
1948 static void addLinkOptionsPostorder(CodeGenModule &CGM, Module *Mod,
1949                                     SmallVectorImpl<llvm::MDNode *> &Metadata,
1950                                     llvm::SmallPtrSet<Module *, 16> &Visited) {
1951   // Import this module's parent.
1952   if (Mod->Parent && Visited.insert(Mod->Parent).second) {
1953     addLinkOptionsPostorder(CGM, Mod->Parent, Metadata, Visited);
1954   }
1955 
1956   // Import this module's dependencies.
1957   for (unsigned I = Mod->Imports.size(); I > 0; --I) {
1958     if (Visited.insert(Mod->Imports[I - 1]).second)
1959       addLinkOptionsPostorder(CGM, Mod->Imports[I-1], Metadata, Visited);
1960   }
1961 
1962   // Add linker options to link against the libraries/frameworks
1963   // described by this module.
1964   llvm::LLVMContext &Context = CGM.getLLVMContext();
1965   bool IsELF = CGM.getTarget().getTriple().isOSBinFormatELF();
1966 
1967   // For modules that use export_as for linking, use that module
1968   // name instead.
1969   if (Mod->UseExportAsModuleLinkName)
1970     return;
1971 
1972   for (unsigned I = Mod->LinkLibraries.size(); I > 0; --I) {
1973     // Link against a framework.  Frameworks are currently Darwin only, so we
1974     // don't to ask TargetCodeGenInfo for the spelling of the linker option.
1975     if (Mod->LinkLibraries[I-1].IsFramework) {
1976       llvm::Metadata *Args[2] = {
1977           llvm::MDString::get(Context, "-framework"),
1978           llvm::MDString::get(Context, Mod->LinkLibraries[I - 1].Library)};
1979 
1980       Metadata.push_back(llvm::MDNode::get(Context, Args));
1981       continue;
1982     }
1983 
1984     // Link against a library.
1985     if (IsELF) {
1986       llvm::Metadata *Args[2] = {
1987           llvm::MDString::get(Context, "lib"),
1988           llvm::MDString::get(Context, Mod->LinkLibraries[I - 1].Library),
1989       };
1990       Metadata.push_back(llvm::MDNode::get(Context, Args));
1991     } else {
1992       llvm::SmallString<24> Opt;
1993       CGM.getTargetCodeGenInfo().getDependentLibraryOption(
1994           Mod->LinkLibraries[I - 1].Library, Opt);
1995       auto *OptString = llvm::MDString::get(Context, Opt);
1996       Metadata.push_back(llvm::MDNode::get(Context, OptString));
1997     }
1998   }
1999 }
2000 
2001 void CodeGenModule::EmitModuleLinkOptions() {
2002   // Collect the set of all of the modules we want to visit to emit link
2003   // options, which is essentially the imported modules and all of their
2004   // non-explicit child modules.
2005   llvm::SetVector<clang::Module *> LinkModules;
2006   llvm::SmallPtrSet<clang::Module *, 16> Visited;
2007   SmallVector<clang::Module *, 16> Stack;
2008 
2009   // Seed the stack with imported modules.
2010   for (Module *M : ImportedModules) {
2011     // Do not add any link flags when an implementation TU of a module imports
2012     // a header of that same module.
2013     if (M->getTopLevelModuleName() == getLangOpts().CurrentModule &&
2014         !getLangOpts().isCompilingModule())
2015       continue;
2016     if (Visited.insert(M).second)
2017       Stack.push_back(M);
2018   }
2019 
2020   // Find all of the modules to import, making a little effort to prune
2021   // non-leaf modules.
2022   while (!Stack.empty()) {
2023     clang::Module *Mod = Stack.pop_back_val();
2024 
2025     bool AnyChildren = false;
2026 
2027     // Visit the submodules of this module.
2028     for (const auto &SM : Mod->submodules()) {
2029       // Skip explicit children; they need to be explicitly imported to be
2030       // linked against.
2031       if (SM->IsExplicit)
2032         continue;
2033 
2034       if (Visited.insert(SM).second) {
2035         Stack.push_back(SM);
2036         AnyChildren = true;
2037       }
2038     }
2039 
2040     // We didn't find any children, so add this module to the list of
2041     // modules to link against.
2042     if (!AnyChildren) {
2043       LinkModules.insert(Mod);
2044     }
2045   }
2046 
2047   // Add link options for all of the imported modules in reverse topological
2048   // order.  We don't do anything to try to order import link flags with respect
2049   // to linker options inserted by things like #pragma comment().
2050   SmallVector<llvm::MDNode *, 16> MetadataArgs;
2051   Visited.clear();
2052   for (Module *M : LinkModules)
2053     if (Visited.insert(M).second)
2054       addLinkOptionsPostorder(*this, M, MetadataArgs, Visited);
2055   std::reverse(MetadataArgs.begin(), MetadataArgs.end());
2056   LinkerOptionsMetadata.append(MetadataArgs.begin(), MetadataArgs.end());
2057 
2058   // Add the linker options metadata flag.
2059   auto *NMD = getModule().getOrInsertNamedMetadata("llvm.linker.options");
2060   for (auto *MD : LinkerOptionsMetadata)
2061     NMD->addOperand(MD);
2062 }
2063 
2064 void CodeGenModule::EmitDeferred() {
2065   // Emit deferred declare target declarations.
2066   if (getLangOpts().OpenMP && !getLangOpts().OpenMPSimd)
2067     getOpenMPRuntime().emitDeferredTargetDecls();
2068 
2069   // Emit code for any potentially referenced deferred decls.  Since a
2070   // previously unused static decl may become used during the generation of code
2071   // for a static function, iterate until no changes are made.
2072 
2073   if (!DeferredVTables.empty()) {
2074     EmitDeferredVTables();
2075 
2076     // Emitting a vtable doesn't directly cause more vtables to
2077     // become deferred, although it can cause functions to be
2078     // emitted that then need those vtables.
2079     assert(DeferredVTables.empty());
2080   }
2081 
2082   // Stop if we're out of both deferred vtables and deferred declarations.
2083   if (DeferredDeclsToEmit.empty())
2084     return;
2085 
2086   // Grab the list of decls to emit. If EmitGlobalDefinition schedules more
2087   // work, it will not interfere with this.
2088   std::vector<GlobalDecl> CurDeclsToEmit;
2089   CurDeclsToEmit.swap(DeferredDeclsToEmit);
2090 
2091   for (GlobalDecl &D : CurDeclsToEmit) {
2092     // We should call GetAddrOfGlobal with IsForDefinition set to true in order
2093     // to get GlobalValue with exactly the type we need, not something that
2094     // might had been created for another decl with the same mangled name but
2095     // different type.
2096     llvm::GlobalValue *GV = dyn_cast<llvm::GlobalValue>(
2097         GetAddrOfGlobal(D, ForDefinition));
2098 
2099     // In case of different address spaces, we may still get a cast, even with
2100     // IsForDefinition equal to true. Query mangled names table to get
2101     // GlobalValue.
2102     if (!GV)
2103       GV = GetGlobalValue(getMangledName(D));
2104 
2105     // Make sure GetGlobalValue returned non-null.
2106     assert(GV);
2107 
2108     // Check to see if we've already emitted this.  This is necessary
2109     // for a couple of reasons: first, decls can end up in the
2110     // deferred-decls queue multiple times, and second, decls can end
2111     // up with definitions in unusual ways (e.g. by an extern inline
2112     // function acquiring a strong function redefinition).  Just
2113     // ignore these cases.
2114     if (!GV->isDeclaration())
2115       continue;
2116 
2117     // Otherwise, emit the definition and move on to the next one.
2118     EmitGlobalDefinition(D, GV);
2119 
2120     // If we found out that we need to emit more decls, do that recursively.
2121     // This has the advantage that the decls are emitted in a DFS and related
2122     // ones are close together, which is convenient for testing.
2123     if (!DeferredVTables.empty() || !DeferredDeclsToEmit.empty()) {
2124       EmitDeferred();
2125       assert(DeferredVTables.empty() && DeferredDeclsToEmit.empty());
2126     }
2127   }
2128 }
2129 
2130 void CodeGenModule::EmitVTablesOpportunistically() {
2131   // Try to emit external vtables as available_externally if they have emitted
2132   // all inlined virtual functions.  It runs after EmitDeferred() and therefore
2133   // is not allowed to create new references to things that need to be emitted
2134   // lazily. Note that it also uses fact that we eagerly emitting RTTI.
2135 
2136   assert((OpportunisticVTables.empty() || shouldOpportunisticallyEmitVTables())
2137          && "Only emit opportunistic vtables with optimizations");
2138 
2139   for (const CXXRecordDecl *RD : OpportunisticVTables) {
2140     assert(getVTables().isVTableExternal(RD) &&
2141            "This queue should only contain external vtables");
2142     if (getCXXABI().canSpeculativelyEmitVTable(RD))
2143       VTables.GenerateClassData(RD);
2144   }
2145   OpportunisticVTables.clear();
2146 }
2147 
2148 void CodeGenModule::EmitGlobalAnnotations() {
2149   if (Annotations.empty())
2150     return;
2151 
2152   // Create a new global variable for the ConstantStruct in the Module.
2153   llvm::Constant *Array = llvm::ConstantArray::get(llvm::ArrayType::get(
2154     Annotations[0]->getType(), Annotations.size()), Annotations);
2155   auto *gv = new llvm::GlobalVariable(getModule(), Array->getType(), false,
2156                                       llvm::GlobalValue::AppendingLinkage,
2157                                       Array, "llvm.global.annotations");
2158   gv->setSection(AnnotationSection);
2159 }
2160 
2161 llvm::Constant *CodeGenModule::EmitAnnotationString(StringRef Str) {
2162   llvm::Constant *&AStr = AnnotationStrings[Str];
2163   if (AStr)
2164     return AStr;
2165 
2166   // Not found yet, create a new global.
2167   llvm::Constant *s = llvm::ConstantDataArray::getString(getLLVMContext(), Str);
2168   auto *gv =
2169       new llvm::GlobalVariable(getModule(), s->getType(), true,
2170                                llvm::GlobalValue::PrivateLinkage, s, ".str");
2171   gv->setSection(AnnotationSection);
2172   gv->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global);
2173   AStr = gv;
2174   return gv;
2175 }
2176 
2177 llvm::Constant *CodeGenModule::EmitAnnotationUnit(SourceLocation Loc) {
2178   SourceManager &SM = getContext().getSourceManager();
2179   PresumedLoc PLoc = SM.getPresumedLoc(Loc);
2180   if (PLoc.isValid())
2181     return EmitAnnotationString(PLoc.getFilename());
2182   return EmitAnnotationString(SM.getBufferName(Loc));
2183 }
2184 
2185 llvm::Constant *CodeGenModule::EmitAnnotationLineNo(SourceLocation L) {
2186   SourceManager &SM = getContext().getSourceManager();
2187   PresumedLoc PLoc = SM.getPresumedLoc(L);
2188   unsigned LineNo = PLoc.isValid() ? PLoc.getLine() :
2189     SM.getExpansionLineNumber(L);
2190   return llvm::ConstantInt::get(Int32Ty, LineNo);
2191 }
2192 
2193 llvm::Constant *CodeGenModule::EmitAnnotateAttr(llvm::GlobalValue *GV,
2194                                                 const AnnotateAttr *AA,
2195                                                 SourceLocation L) {
2196   // Get the globals for file name, annotation, and the line number.
2197   llvm::Constant *AnnoGV = EmitAnnotationString(AA->getAnnotation()),
2198                  *UnitGV = EmitAnnotationUnit(L),
2199                  *LineNoCst = EmitAnnotationLineNo(L);
2200 
2201   // Create the ConstantStruct for the global annotation.
2202   llvm::Constant *Fields[4] = {
2203     llvm::ConstantExpr::getBitCast(GV, Int8PtrTy),
2204     llvm::ConstantExpr::getBitCast(AnnoGV, Int8PtrTy),
2205     llvm::ConstantExpr::getBitCast(UnitGV, Int8PtrTy),
2206     LineNoCst
2207   };
2208   return llvm::ConstantStruct::getAnon(Fields);
2209 }
2210 
2211 void CodeGenModule::AddGlobalAnnotations(const ValueDecl *D,
2212                                          llvm::GlobalValue *GV) {
2213   assert(D->hasAttr<AnnotateAttr>() && "no annotate attribute");
2214   // Get the struct elements for these annotations.
2215   for (const auto *I : D->specific_attrs<AnnotateAttr>())
2216     Annotations.push_back(EmitAnnotateAttr(GV, I, D->getLocation()));
2217 }
2218 
2219 bool CodeGenModule::isInSanitizerBlacklist(SanitizerMask Kind,
2220                                            llvm::Function *Fn,
2221                                            SourceLocation Loc) const {
2222   const auto &SanitizerBL = getContext().getSanitizerBlacklist();
2223   // Blacklist by function name.
2224   if (SanitizerBL.isBlacklistedFunction(Kind, Fn->getName()))
2225     return true;
2226   // Blacklist by location.
2227   if (Loc.isValid())
2228     return SanitizerBL.isBlacklistedLocation(Kind, Loc);
2229   // If location is unknown, this may be a compiler-generated function. Assume
2230   // it's located in the main file.
2231   auto &SM = Context.getSourceManager();
2232   if (const auto *MainFile = SM.getFileEntryForID(SM.getMainFileID())) {
2233     return SanitizerBL.isBlacklistedFile(Kind, MainFile->getName());
2234   }
2235   return false;
2236 }
2237 
2238 bool CodeGenModule::isInSanitizerBlacklist(llvm::GlobalVariable *GV,
2239                                            SourceLocation Loc, QualType Ty,
2240                                            StringRef Category) const {
2241   // For now globals can be blacklisted only in ASan and KASan.
2242   const SanitizerMask EnabledAsanMask = LangOpts.Sanitize.Mask &
2243       (SanitizerKind::Address | SanitizerKind::KernelAddress |
2244        SanitizerKind::HWAddress | SanitizerKind::KernelHWAddress);
2245   if (!EnabledAsanMask)
2246     return false;
2247   const auto &SanitizerBL = getContext().getSanitizerBlacklist();
2248   if (SanitizerBL.isBlacklistedGlobal(EnabledAsanMask, GV->getName(), Category))
2249     return true;
2250   if (SanitizerBL.isBlacklistedLocation(EnabledAsanMask, Loc, Category))
2251     return true;
2252   // Check global type.
2253   if (!Ty.isNull()) {
2254     // Drill down the array types: if global variable of a fixed type is
2255     // blacklisted, we also don't instrument arrays of them.
2256     while (auto AT = dyn_cast<ArrayType>(Ty.getTypePtr()))
2257       Ty = AT->getElementType();
2258     Ty = Ty.getCanonicalType().getUnqualifiedType();
2259     // We allow to blacklist only record types (classes, structs etc.)
2260     if (Ty->isRecordType()) {
2261       std::string TypeStr = Ty.getAsString(getContext().getPrintingPolicy());
2262       if (SanitizerBL.isBlacklistedType(EnabledAsanMask, TypeStr, Category))
2263         return true;
2264     }
2265   }
2266   return false;
2267 }
2268 
2269 bool CodeGenModule::imbueXRayAttrs(llvm::Function *Fn, SourceLocation Loc,
2270                                    StringRef Category) const {
2271   const auto &XRayFilter = getContext().getXRayFilter();
2272   using ImbueAttr = XRayFunctionFilter::ImbueAttribute;
2273   auto Attr = ImbueAttr::NONE;
2274   if (Loc.isValid())
2275     Attr = XRayFilter.shouldImbueLocation(Loc, Category);
2276   if (Attr == ImbueAttr::NONE)
2277     Attr = XRayFilter.shouldImbueFunction(Fn->getName());
2278   switch (Attr) {
2279   case ImbueAttr::NONE:
2280     return false;
2281   case ImbueAttr::ALWAYS:
2282     Fn->addFnAttr("function-instrument", "xray-always");
2283     break;
2284   case ImbueAttr::ALWAYS_ARG1:
2285     Fn->addFnAttr("function-instrument", "xray-always");
2286     Fn->addFnAttr("xray-log-args", "1");
2287     break;
2288   case ImbueAttr::NEVER:
2289     Fn->addFnAttr("function-instrument", "xray-never");
2290     break;
2291   }
2292   return true;
2293 }
2294 
2295 bool CodeGenModule::MustBeEmitted(const ValueDecl *Global) {
2296   // Never defer when EmitAllDecls is specified.
2297   if (LangOpts.EmitAllDecls)
2298     return true;
2299 
2300   if (CodeGenOpts.KeepStaticConsts) {
2301     const auto *VD = dyn_cast<VarDecl>(Global);
2302     if (VD && VD->getType().isConstQualified() &&
2303         VD->getStorageDuration() == SD_Static)
2304       return true;
2305   }
2306 
2307   return getContext().DeclMustBeEmitted(Global);
2308 }
2309 
2310 bool CodeGenModule::MayBeEmittedEagerly(const ValueDecl *Global) {
2311   if (const auto *FD = dyn_cast<FunctionDecl>(Global))
2312     if (FD->getTemplateSpecializationKind() == TSK_ImplicitInstantiation)
2313       // Implicit template instantiations may change linkage if they are later
2314       // explicitly instantiated, so they should not be emitted eagerly.
2315       return false;
2316   if (const auto *VD = dyn_cast<VarDecl>(Global))
2317     if (Context.getInlineVariableDefinitionKind(VD) ==
2318         ASTContext::InlineVariableDefinitionKind::WeakUnknown)
2319       // A definition of an inline constexpr static data member may change
2320       // linkage later if it's redeclared outside the class.
2321       return false;
2322   // If OpenMP is enabled and threadprivates must be generated like TLS, delay
2323   // codegen for global variables, because they may be marked as threadprivate.
2324   if (LangOpts.OpenMP && LangOpts.OpenMPUseTLS &&
2325       getContext().getTargetInfo().isTLSSupported() && isa<VarDecl>(Global) &&
2326       !isTypeConstant(Global->getType(), false) &&
2327       !OMPDeclareTargetDeclAttr::isDeclareTargetDeclaration(Global))
2328     return false;
2329 
2330   return true;
2331 }
2332 
2333 ConstantAddress CodeGenModule::GetAddrOfUuidDescriptor(
2334     const CXXUuidofExpr* E) {
2335   // Sema has verified that IIDSource has a __declspec(uuid()), and that its
2336   // well-formed.
2337   StringRef Uuid = E->getUuidStr();
2338   std::string Name = "_GUID_" + Uuid.lower();
2339   std::replace(Name.begin(), Name.end(), '-', '_');
2340 
2341   // The UUID descriptor should be pointer aligned.
2342   CharUnits Alignment = CharUnits::fromQuantity(PointerAlignInBytes);
2343 
2344   // Look for an existing global.
2345   if (llvm::GlobalVariable *GV = getModule().getNamedGlobal(Name))
2346     return ConstantAddress(GV, Alignment);
2347 
2348   llvm::Constant *Init = EmitUuidofInitializer(Uuid);
2349   assert(Init && "failed to initialize as constant");
2350 
2351   auto *GV = new llvm::GlobalVariable(
2352       getModule(), Init->getType(),
2353       /*isConstant=*/true, llvm::GlobalValue::LinkOnceODRLinkage, Init, Name);
2354   if (supportsCOMDAT())
2355     GV->setComdat(TheModule.getOrInsertComdat(GV->getName()));
2356   setDSOLocal(GV);
2357   return ConstantAddress(GV, Alignment);
2358 }
2359 
2360 ConstantAddress CodeGenModule::GetWeakRefReference(const ValueDecl *VD) {
2361   const AliasAttr *AA = VD->getAttr<AliasAttr>();
2362   assert(AA && "No alias?");
2363 
2364   CharUnits Alignment = getContext().getDeclAlign(VD);
2365   llvm::Type *DeclTy = getTypes().ConvertTypeForMem(VD->getType());
2366 
2367   // See if there is already something with the target's name in the module.
2368   llvm::GlobalValue *Entry = GetGlobalValue(AA->getAliasee());
2369   if (Entry) {
2370     unsigned AS = getContext().getTargetAddressSpace(VD->getType());
2371     auto Ptr = llvm::ConstantExpr::getBitCast(Entry, DeclTy->getPointerTo(AS));
2372     return ConstantAddress(Ptr, Alignment);
2373   }
2374 
2375   llvm::Constant *Aliasee;
2376   if (isa<llvm::FunctionType>(DeclTy))
2377     Aliasee = GetOrCreateLLVMFunction(AA->getAliasee(), DeclTy,
2378                                       GlobalDecl(cast<FunctionDecl>(VD)),
2379                                       /*ForVTable=*/false);
2380   else
2381     Aliasee = GetOrCreateLLVMGlobal(AA->getAliasee(),
2382                                     llvm::PointerType::getUnqual(DeclTy),
2383                                     nullptr);
2384 
2385   auto *F = cast<llvm::GlobalValue>(Aliasee);
2386   F->setLinkage(llvm::Function::ExternalWeakLinkage);
2387   WeakRefReferences.insert(F);
2388 
2389   return ConstantAddress(Aliasee, Alignment);
2390 }
2391 
2392 void CodeGenModule::EmitGlobal(GlobalDecl GD) {
2393   const auto *Global = cast<ValueDecl>(GD.getDecl());
2394 
2395   // Weak references don't produce any output by themselves.
2396   if (Global->hasAttr<WeakRefAttr>())
2397     return;
2398 
2399   // If this is an alias definition (which otherwise looks like a declaration)
2400   // emit it now.
2401   if (Global->hasAttr<AliasAttr>())
2402     return EmitAliasDefinition(GD);
2403 
2404   // IFunc like an alias whose value is resolved at runtime by calling resolver.
2405   if (Global->hasAttr<IFuncAttr>())
2406     return emitIFuncDefinition(GD);
2407 
2408   // If this is a cpu_dispatch multiversion function, emit the resolver.
2409   if (Global->hasAttr<CPUDispatchAttr>())
2410     return emitCPUDispatchDefinition(GD);
2411 
2412   // If this is CUDA, be selective about which declarations we emit.
2413   if (LangOpts.CUDA) {
2414     if (LangOpts.CUDAIsDevice) {
2415       if (!Global->hasAttr<CUDADeviceAttr>() &&
2416           !Global->hasAttr<CUDAGlobalAttr>() &&
2417           !Global->hasAttr<CUDAConstantAttr>() &&
2418           !Global->hasAttr<CUDASharedAttr>())
2419         return;
2420     } else {
2421       // We need to emit host-side 'shadows' for all global
2422       // device-side variables because the CUDA runtime needs their
2423       // size and host-side address in order to provide access to
2424       // their device-side incarnations.
2425 
2426       // So device-only functions are the only things we skip.
2427       if (isa<FunctionDecl>(Global) && !Global->hasAttr<CUDAHostAttr>() &&
2428           Global->hasAttr<CUDADeviceAttr>())
2429         return;
2430 
2431       assert((isa<FunctionDecl>(Global) || isa<VarDecl>(Global)) &&
2432              "Expected Variable or Function");
2433     }
2434   }
2435 
2436   if (LangOpts.OpenMP) {
2437     // If this is OpenMP device, check if it is legal to emit this global
2438     // normally.
2439     if (OpenMPRuntime && OpenMPRuntime->emitTargetGlobal(GD))
2440       return;
2441     if (auto *DRD = dyn_cast<OMPDeclareReductionDecl>(Global)) {
2442       if (MustBeEmitted(Global))
2443         EmitOMPDeclareReduction(DRD);
2444       return;
2445     } else if (auto *DMD = dyn_cast<OMPDeclareMapperDecl>(Global)) {
2446       if (MustBeEmitted(Global))
2447         EmitOMPDeclareMapper(DMD);
2448       return;
2449     }
2450   }
2451 
2452   // Ignore declarations, they will be emitted on their first use.
2453   if (const auto *FD = dyn_cast<FunctionDecl>(Global)) {
2454     // Forward declarations are emitted lazily on first use.
2455     if (!FD->doesThisDeclarationHaveABody()) {
2456       if (!FD->doesDeclarationForceExternallyVisibleDefinition())
2457         return;
2458 
2459       StringRef MangledName = getMangledName(GD);
2460 
2461       // Compute the function info and LLVM type.
2462       const CGFunctionInfo &FI = getTypes().arrangeGlobalDeclaration(GD);
2463       llvm::Type *Ty = getTypes().GetFunctionType(FI);
2464 
2465       GetOrCreateLLVMFunction(MangledName, Ty, GD, /*ForVTable=*/false,
2466                               /*DontDefer=*/false);
2467       return;
2468     }
2469   } else {
2470     const auto *VD = cast<VarDecl>(Global);
2471     assert(VD->isFileVarDecl() && "Cannot emit local var decl as global.");
2472     if (VD->isThisDeclarationADefinition() != VarDecl::Definition &&
2473         !Context.isMSStaticDataMemberInlineDefinition(VD)) {
2474       if (LangOpts.OpenMP) {
2475         // Emit declaration of the must-be-emitted declare target variable.
2476         if (llvm::Optional<OMPDeclareTargetDeclAttr::MapTypeTy> Res =
2477                 OMPDeclareTargetDeclAttr::isDeclareTargetDeclaration(VD)) {
2478           bool UnifiedMemoryEnabled =
2479               getOpenMPRuntime().hasRequiresUnifiedSharedMemory();
2480           if (*Res == OMPDeclareTargetDeclAttr::MT_To &&
2481               !UnifiedMemoryEnabled) {
2482             (void)GetAddrOfGlobalVar(VD);
2483           } else {
2484             assert(((*Res == OMPDeclareTargetDeclAttr::MT_Link) ||
2485                     (*Res == OMPDeclareTargetDeclAttr::MT_To &&
2486                      UnifiedMemoryEnabled)) &&
2487                    "Link clause or to clause with unified memory expected.");
2488             (void)getOpenMPRuntime().getAddrOfDeclareTargetVar(VD);
2489           }
2490 
2491           return;
2492         }
2493       }
2494       // If this declaration may have caused an inline variable definition to
2495       // change linkage, make sure that it's emitted.
2496       if (Context.getInlineVariableDefinitionKind(VD) ==
2497           ASTContext::InlineVariableDefinitionKind::Strong)
2498         GetAddrOfGlobalVar(VD);
2499       return;
2500     }
2501   }
2502 
2503   // Defer code generation to first use when possible, e.g. if this is an inline
2504   // function. If the global must always be emitted, do it eagerly if possible
2505   // to benefit from cache locality.
2506   if (MustBeEmitted(Global) && MayBeEmittedEagerly(Global)) {
2507     // Emit the definition if it can't be deferred.
2508     EmitGlobalDefinition(GD);
2509     return;
2510   }
2511 
2512   // If we're deferring emission of a C++ variable with an
2513   // initializer, remember the order in which it appeared in the file.
2514   if (getLangOpts().CPlusPlus && isa<VarDecl>(Global) &&
2515       cast<VarDecl>(Global)->hasInit()) {
2516     DelayedCXXInitPosition[Global] = CXXGlobalInits.size();
2517     CXXGlobalInits.push_back(nullptr);
2518   }
2519 
2520   StringRef MangledName = getMangledName(GD);
2521   if (GetGlobalValue(MangledName) != nullptr) {
2522     // The value has already been used and should therefore be emitted.
2523     addDeferredDeclToEmit(GD);
2524   } else if (MustBeEmitted(Global)) {
2525     // The value must be emitted, but cannot be emitted eagerly.
2526     assert(!MayBeEmittedEagerly(Global));
2527     addDeferredDeclToEmit(GD);
2528   } else {
2529     // Otherwise, remember that we saw a deferred decl with this name.  The
2530     // first use of the mangled name will cause it to move into
2531     // DeferredDeclsToEmit.
2532     DeferredDecls[MangledName] = GD;
2533   }
2534 }
2535 
2536 // Check if T is a class type with a destructor that's not dllimport.
2537 static bool HasNonDllImportDtor(QualType T) {
2538   if (const auto *RT = T->getBaseElementTypeUnsafe()->getAs<RecordType>())
2539     if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(RT->getDecl()))
2540       if (RD->getDestructor() && !RD->getDestructor()->hasAttr<DLLImportAttr>())
2541         return true;
2542 
2543   return false;
2544 }
2545 
2546 namespace {
2547   struct FunctionIsDirectlyRecursive
2548       : public ConstStmtVisitor<FunctionIsDirectlyRecursive, bool> {
2549     const StringRef Name;
2550     const Builtin::Context &BI;
2551     FunctionIsDirectlyRecursive(StringRef N, const Builtin::Context &C)
2552         : Name(N), BI(C) {}
2553 
2554     bool VisitCallExpr(const CallExpr *E) {
2555       const FunctionDecl *FD = E->getDirectCallee();
2556       if (!FD)
2557         return false;
2558       AsmLabelAttr *Attr = FD->getAttr<AsmLabelAttr>();
2559       if (Attr && Name == Attr->getLabel())
2560         return true;
2561       unsigned BuiltinID = FD->getBuiltinID();
2562       if (!BuiltinID || !BI.isLibFunction(BuiltinID))
2563         return false;
2564       StringRef BuiltinName = BI.getName(BuiltinID);
2565       if (BuiltinName.startswith("__builtin_") &&
2566           Name == BuiltinName.slice(strlen("__builtin_"), StringRef::npos)) {
2567         return true;
2568       }
2569       return false;
2570     }
2571 
2572     bool VisitStmt(const Stmt *S) {
2573       for (const Stmt *Child : S->children())
2574         if (Child && this->Visit(Child))
2575           return true;
2576       return false;
2577     }
2578   };
2579 
2580   // Make sure we're not referencing non-imported vars or functions.
2581   struct DLLImportFunctionVisitor
2582       : public RecursiveASTVisitor<DLLImportFunctionVisitor> {
2583     bool SafeToInline = true;
2584 
2585     bool shouldVisitImplicitCode() const { return true; }
2586 
2587     bool VisitVarDecl(VarDecl *VD) {
2588       if (VD->getTLSKind()) {
2589         // A thread-local variable cannot be imported.
2590         SafeToInline = false;
2591         return SafeToInline;
2592       }
2593 
2594       // A variable definition might imply a destructor call.
2595       if (VD->isThisDeclarationADefinition())
2596         SafeToInline = !HasNonDllImportDtor(VD->getType());
2597 
2598       return SafeToInline;
2599     }
2600 
2601     bool VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E) {
2602       if (const auto *D = E->getTemporary()->getDestructor())
2603         SafeToInline = D->hasAttr<DLLImportAttr>();
2604       return SafeToInline;
2605     }
2606 
2607     bool VisitDeclRefExpr(DeclRefExpr *E) {
2608       ValueDecl *VD = E->getDecl();
2609       if (isa<FunctionDecl>(VD))
2610         SafeToInline = VD->hasAttr<DLLImportAttr>();
2611       else if (VarDecl *V = dyn_cast<VarDecl>(VD))
2612         SafeToInline = !V->hasGlobalStorage() || V->hasAttr<DLLImportAttr>();
2613       return SafeToInline;
2614     }
2615 
2616     bool VisitCXXConstructExpr(CXXConstructExpr *E) {
2617       SafeToInline = E->getConstructor()->hasAttr<DLLImportAttr>();
2618       return SafeToInline;
2619     }
2620 
2621     bool VisitCXXMemberCallExpr(CXXMemberCallExpr *E) {
2622       CXXMethodDecl *M = E->getMethodDecl();
2623       if (!M) {
2624         // Call through a pointer to member function. This is safe to inline.
2625         SafeToInline = true;
2626       } else {
2627         SafeToInline = M->hasAttr<DLLImportAttr>();
2628       }
2629       return SafeToInline;
2630     }
2631 
2632     bool VisitCXXDeleteExpr(CXXDeleteExpr *E) {
2633       SafeToInline = E->getOperatorDelete()->hasAttr<DLLImportAttr>();
2634       return SafeToInline;
2635     }
2636 
2637     bool VisitCXXNewExpr(CXXNewExpr *E) {
2638       SafeToInline = E->getOperatorNew()->hasAttr<DLLImportAttr>();
2639       return SafeToInline;
2640     }
2641   };
2642 }
2643 
2644 // isTriviallyRecursive - Check if this function calls another
2645 // decl that, because of the asm attribute or the other decl being a builtin,
2646 // ends up pointing to itself.
2647 bool
2648 CodeGenModule::isTriviallyRecursive(const FunctionDecl *FD) {
2649   StringRef Name;
2650   if (getCXXABI().getMangleContext().shouldMangleDeclName(FD)) {
2651     // asm labels are a special kind of mangling we have to support.
2652     AsmLabelAttr *Attr = FD->getAttr<AsmLabelAttr>();
2653     if (!Attr)
2654       return false;
2655     Name = Attr->getLabel();
2656   } else {
2657     Name = FD->getName();
2658   }
2659 
2660   FunctionIsDirectlyRecursive Walker(Name, Context.BuiltinInfo);
2661   const Stmt *Body = FD->getBody();
2662   return Body ? Walker.Visit(Body) : false;
2663 }
2664 
2665 bool CodeGenModule::shouldEmitFunction(GlobalDecl GD) {
2666   if (getFunctionLinkage(GD) != llvm::Function::AvailableExternallyLinkage)
2667     return true;
2668   const auto *F = cast<FunctionDecl>(GD.getDecl());
2669   if (CodeGenOpts.OptimizationLevel == 0 && !F->hasAttr<AlwaysInlineAttr>())
2670     return false;
2671 
2672   if (F->hasAttr<DLLImportAttr>()) {
2673     // Check whether it would be safe to inline this dllimport function.
2674     DLLImportFunctionVisitor Visitor;
2675     Visitor.TraverseFunctionDecl(const_cast<FunctionDecl*>(F));
2676     if (!Visitor.SafeToInline)
2677       return false;
2678 
2679     if (const CXXDestructorDecl *Dtor = dyn_cast<CXXDestructorDecl>(F)) {
2680       // Implicit destructor invocations aren't captured in the AST, so the
2681       // check above can't see them. Check for them manually here.
2682       for (const Decl *Member : Dtor->getParent()->decls())
2683         if (isa<FieldDecl>(Member))
2684           if (HasNonDllImportDtor(cast<FieldDecl>(Member)->getType()))
2685             return false;
2686       for (const CXXBaseSpecifier &B : Dtor->getParent()->bases())
2687         if (HasNonDllImportDtor(B.getType()))
2688           return false;
2689     }
2690   }
2691 
2692   // PR9614. Avoid cases where the source code is lying to us. An available
2693   // externally function should have an equivalent function somewhere else,
2694   // but a function that calls itself is clearly not equivalent to the real
2695   // implementation.
2696   // This happens in glibc's btowc and in some configure checks.
2697   return !isTriviallyRecursive(F);
2698 }
2699 
2700 bool CodeGenModule::shouldOpportunisticallyEmitVTables() {
2701   return CodeGenOpts.OptimizationLevel > 0;
2702 }
2703 
2704 void CodeGenModule::EmitMultiVersionFunctionDefinition(GlobalDecl GD,
2705                                                        llvm::GlobalValue *GV) {
2706   const auto *FD = cast<FunctionDecl>(GD.getDecl());
2707 
2708   if (FD->isCPUSpecificMultiVersion()) {
2709     auto *Spec = FD->getAttr<CPUSpecificAttr>();
2710     for (unsigned I = 0; I < Spec->cpus_size(); ++I)
2711       EmitGlobalFunctionDefinition(GD.getWithMultiVersionIndex(I), nullptr);
2712     // Requires multiple emits.
2713   } else
2714     EmitGlobalFunctionDefinition(GD, GV);
2715 }
2716 
2717 void CodeGenModule::EmitGlobalDefinition(GlobalDecl GD, llvm::GlobalValue *GV) {
2718   const auto *D = cast<ValueDecl>(GD.getDecl());
2719 
2720   PrettyStackTraceDecl CrashInfo(const_cast<ValueDecl *>(D), D->getLocation(),
2721                                  Context.getSourceManager(),
2722                                  "Generating code for declaration");
2723 
2724   if (const auto *FD = dyn_cast<FunctionDecl>(D)) {
2725     // At -O0, don't generate IR for functions with available_externally
2726     // linkage.
2727     if (!shouldEmitFunction(GD))
2728       return;
2729 
2730     llvm::TimeTraceScope TimeScope("CodeGen Function", [&]() {
2731       std::string Name;
2732       llvm::raw_string_ostream OS(Name);
2733       FD->getNameForDiagnostic(OS, getContext().getPrintingPolicy(),
2734                                /*Qualified=*/true);
2735       return Name;
2736     });
2737 
2738     if (const auto *Method = dyn_cast<CXXMethodDecl>(D)) {
2739       // Make sure to emit the definition(s) before we emit the thunks.
2740       // This is necessary for the generation of certain thunks.
2741       if (isa<CXXConstructorDecl>(Method) || isa<CXXDestructorDecl>(Method))
2742         ABI->emitCXXStructor(GD);
2743       else if (FD->isMultiVersion())
2744         EmitMultiVersionFunctionDefinition(GD, GV);
2745       else
2746         EmitGlobalFunctionDefinition(GD, GV);
2747 
2748       if (Method->isVirtual())
2749         getVTables().EmitThunks(GD);
2750 
2751       return;
2752     }
2753 
2754     if (FD->isMultiVersion())
2755       return EmitMultiVersionFunctionDefinition(GD, GV);
2756     return EmitGlobalFunctionDefinition(GD, GV);
2757   }
2758 
2759   if (const auto *VD = dyn_cast<VarDecl>(D))
2760     return EmitGlobalVarDefinition(VD, !VD->hasDefinition());
2761 
2762   llvm_unreachable("Invalid argument to EmitGlobalDefinition()");
2763 }
2764 
2765 static void ReplaceUsesOfNonProtoTypeWithRealFunction(llvm::GlobalValue *Old,
2766                                                       llvm::Function *NewFn);
2767 
2768 static unsigned
2769 TargetMVPriority(const TargetInfo &TI,
2770                  const CodeGenFunction::MultiVersionResolverOption &RO) {
2771   unsigned Priority = 0;
2772   for (StringRef Feat : RO.Conditions.Features)
2773     Priority = std::max(Priority, TI.multiVersionSortPriority(Feat));
2774 
2775   if (!RO.Conditions.Architecture.empty())
2776     Priority = std::max(
2777         Priority, TI.multiVersionSortPriority(RO.Conditions.Architecture));
2778   return Priority;
2779 }
2780 
2781 void CodeGenModule::emitMultiVersionFunctions() {
2782   for (GlobalDecl GD : MultiVersionFuncs) {
2783     SmallVector<CodeGenFunction::MultiVersionResolverOption, 10> Options;
2784     const FunctionDecl *FD = cast<FunctionDecl>(GD.getDecl());
2785     getContext().forEachMultiversionedFunctionVersion(
2786         FD, [this, &GD, &Options](const FunctionDecl *CurFD) {
2787           GlobalDecl CurGD{
2788               (CurFD->isDefined() ? CurFD->getDefinition() : CurFD)};
2789           StringRef MangledName = getMangledName(CurGD);
2790           llvm::Constant *Func = GetGlobalValue(MangledName);
2791           if (!Func) {
2792             if (CurFD->isDefined()) {
2793               EmitGlobalFunctionDefinition(CurGD, nullptr);
2794               Func = GetGlobalValue(MangledName);
2795             } else {
2796               const CGFunctionInfo &FI =
2797                   getTypes().arrangeGlobalDeclaration(GD);
2798               llvm::FunctionType *Ty = getTypes().GetFunctionType(FI);
2799               Func = GetAddrOfFunction(CurGD, Ty, /*ForVTable=*/false,
2800                                        /*DontDefer=*/false, ForDefinition);
2801             }
2802             assert(Func && "This should have just been created");
2803           }
2804 
2805           const auto *TA = CurFD->getAttr<TargetAttr>();
2806           llvm::SmallVector<StringRef, 8> Feats;
2807           TA->getAddedFeatures(Feats);
2808 
2809           Options.emplace_back(cast<llvm::Function>(Func),
2810                                TA->getArchitecture(), Feats);
2811         });
2812 
2813     llvm::Function *ResolverFunc;
2814     const TargetInfo &TI = getTarget();
2815 
2816     if (TI.supportsIFunc() || FD->isTargetMultiVersion())
2817       ResolverFunc = cast<llvm::Function>(
2818           GetGlobalValue((getMangledName(GD) + ".resolver").str()));
2819     else
2820       ResolverFunc = cast<llvm::Function>(GetGlobalValue(getMangledName(GD)));
2821 
2822     if (supportsCOMDAT())
2823       ResolverFunc->setComdat(
2824           getModule().getOrInsertComdat(ResolverFunc->getName()));
2825 
2826     llvm::stable_sort(
2827         Options, [&TI](const CodeGenFunction::MultiVersionResolverOption &LHS,
2828                        const CodeGenFunction::MultiVersionResolverOption &RHS) {
2829           return TargetMVPriority(TI, LHS) > TargetMVPriority(TI, RHS);
2830         });
2831     CodeGenFunction CGF(*this);
2832     CGF.EmitMultiVersionResolver(ResolverFunc, Options);
2833   }
2834 }
2835 
2836 void CodeGenModule::emitCPUDispatchDefinition(GlobalDecl GD) {
2837   const auto *FD = cast<FunctionDecl>(GD.getDecl());
2838   assert(FD && "Not a FunctionDecl?");
2839   const auto *DD = FD->getAttr<CPUDispatchAttr>();
2840   assert(DD && "Not a cpu_dispatch Function?");
2841   llvm::Type *DeclTy = getTypes().ConvertType(FD->getType());
2842 
2843   if (const auto *CXXFD = dyn_cast<CXXMethodDecl>(FD)) {
2844     const CGFunctionInfo &FInfo = getTypes().arrangeCXXMethodDeclaration(CXXFD);
2845     DeclTy = getTypes().GetFunctionType(FInfo);
2846   }
2847 
2848   StringRef ResolverName = getMangledName(GD);
2849 
2850   llvm::Type *ResolverType;
2851   GlobalDecl ResolverGD;
2852   if (getTarget().supportsIFunc())
2853     ResolverType = llvm::FunctionType::get(
2854         llvm::PointerType::get(DeclTy,
2855                                Context.getTargetAddressSpace(FD->getType())),
2856         false);
2857   else {
2858     ResolverType = DeclTy;
2859     ResolverGD = GD;
2860   }
2861 
2862   auto *ResolverFunc = cast<llvm::Function>(GetOrCreateLLVMFunction(
2863       ResolverName, ResolverType, ResolverGD, /*ForVTable=*/false));
2864 
2865   SmallVector<CodeGenFunction::MultiVersionResolverOption, 10> Options;
2866   const TargetInfo &Target = getTarget();
2867   unsigned Index = 0;
2868   for (const IdentifierInfo *II : DD->cpus()) {
2869     // Get the name of the target function so we can look it up/create it.
2870     std::string MangledName = getMangledNameImpl(*this, GD, FD, true) +
2871                               getCPUSpecificMangling(*this, II->getName());
2872 
2873     llvm::Constant *Func = GetGlobalValue(MangledName);
2874 
2875     if (!Func) {
2876       GlobalDecl ExistingDecl = Manglings.lookup(MangledName);
2877       if (ExistingDecl.getDecl() &&
2878           ExistingDecl.getDecl()->getAsFunction()->isDefined()) {
2879         EmitGlobalFunctionDefinition(ExistingDecl, nullptr);
2880         Func = GetGlobalValue(MangledName);
2881       } else {
2882         if (!ExistingDecl.getDecl())
2883           ExistingDecl = GD.getWithMultiVersionIndex(Index);
2884 
2885       Func = GetOrCreateLLVMFunction(
2886           MangledName, DeclTy, ExistingDecl,
2887           /*ForVTable=*/false, /*DontDefer=*/true,
2888           /*IsThunk=*/false, llvm::AttributeList(), ForDefinition);
2889       }
2890     }
2891 
2892     llvm::SmallVector<StringRef, 32> Features;
2893     Target.getCPUSpecificCPUDispatchFeatures(II->getName(), Features);
2894     llvm::transform(Features, Features.begin(),
2895                     [](StringRef Str) { return Str.substr(1); });
2896     Features.erase(std::remove_if(
2897         Features.begin(), Features.end(), [&Target](StringRef Feat) {
2898           return !Target.validateCpuSupports(Feat);
2899         }), Features.end());
2900     Options.emplace_back(cast<llvm::Function>(Func), StringRef{}, Features);
2901     ++Index;
2902   }
2903 
2904   llvm::sort(
2905       Options, [](const CodeGenFunction::MultiVersionResolverOption &LHS,
2906                   const CodeGenFunction::MultiVersionResolverOption &RHS) {
2907         return CodeGenFunction::GetX86CpuSupportsMask(LHS.Conditions.Features) >
2908                CodeGenFunction::GetX86CpuSupportsMask(RHS.Conditions.Features);
2909       });
2910 
2911   // If the list contains multiple 'default' versions, such as when it contains
2912   // 'pentium' and 'generic', don't emit the call to the generic one (since we
2913   // always run on at least a 'pentium'). We do this by deleting the 'least
2914   // advanced' (read, lowest mangling letter).
2915   while (Options.size() > 1 &&
2916          CodeGenFunction::GetX86CpuSupportsMask(
2917              (Options.end() - 2)->Conditions.Features) == 0) {
2918     StringRef LHSName = (Options.end() - 2)->Function->getName();
2919     StringRef RHSName = (Options.end() - 1)->Function->getName();
2920     if (LHSName.compare(RHSName) < 0)
2921       Options.erase(Options.end() - 2);
2922     else
2923       Options.erase(Options.end() - 1);
2924   }
2925 
2926   CodeGenFunction CGF(*this);
2927   CGF.EmitMultiVersionResolver(ResolverFunc, Options);
2928 }
2929 
2930 /// If a dispatcher for the specified mangled name is not in the module, create
2931 /// and return an llvm Function with the specified type.
2932 llvm::Constant *CodeGenModule::GetOrCreateMultiVersionResolver(
2933     GlobalDecl GD, llvm::Type *DeclTy, const FunctionDecl *FD) {
2934   std::string MangledName =
2935       getMangledNameImpl(*this, GD, FD, /*OmitMultiVersionMangling=*/true);
2936 
2937   // Holds the name of the resolver, in ifunc mode this is the ifunc (which has
2938   // a separate resolver).
2939   std::string ResolverName = MangledName;
2940   if (getTarget().supportsIFunc())
2941     ResolverName += ".ifunc";
2942   else if (FD->isTargetMultiVersion())
2943     ResolverName += ".resolver";
2944 
2945   // If this already exists, just return that one.
2946   if (llvm::GlobalValue *ResolverGV = GetGlobalValue(ResolverName))
2947     return ResolverGV;
2948 
2949   // Since this is the first time we've created this IFunc, make sure
2950   // that we put this multiversioned function into the list to be
2951   // replaced later if necessary (target multiversioning only).
2952   if (!FD->isCPUDispatchMultiVersion() && !FD->isCPUSpecificMultiVersion())
2953     MultiVersionFuncs.push_back(GD);
2954 
2955   if (getTarget().supportsIFunc()) {
2956     llvm::Type *ResolverType = llvm::FunctionType::get(
2957         llvm::PointerType::get(
2958             DeclTy, getContext().getTargetAddressSpace(FD->getType())),
2959         false);
2960     llvm::Constant *Resolver = GetOrCreateLLVMFunction(
2961         MangledName + ".resolver", ResolverType, GlobalDecl{},
2962         /*ForVTable=*/false);
2963     llvm::GlobalIFunc *GIF = llvm::GlobalIFunc::create(
2964         DeclTy, 0, llvm::Function::ExternalLinkage, "", Resolver, &getModule());
2965     GIF->setName(ResolverName);
2966     SetCommonAttributes(FD, GIF);
2967 
2968     return GIF;
2969   }
2970 
2971   llvm::Constant *Resolver = GetOrCreateLLVMFunction(
2972       ResolverName, DeclTy, GlobalDecl{}, /*ForVTable=*/false);
2973   assert(isa<llvm::GlobalValue>(Resolver) &&
2974          "Resolver should be created for the first time");
2975   SetCommonAttributes(FD, cast<llvm::GlobalValue>(Resolver));
2976   return Resolver;
2977 }
2978 
2979 /// GetOrCreateLLVMFunction - If the specified mangled name is not in the
2980 /// module, create and return an llvm Function with the specified type. If there
2981 /// is something in the module with the specified name, return it potentially
2982 /// bitcasted to the right type.
2983 ///
2984 /// If D is non-null, it specifies a decl that correspond to this.  This is used
2985 /// to set the attributes on the function when it is first created.
2986 llvm::Constant *CodeGenModule::GetOrCreateLLVMFunction(
2987     StringRef MangledName, llvm::Type *Ty, GlobalDecl GD, bool ForVTable,
2988     bool DontDefer, bool IsThunk, llvm::AttributeList ExtraAttrs,
2989     ForDefinition_t IsForDefinition) {
2990   const Decl *D = GD.getDecl();
2991 
2992   // Any attempts to use a MultiVersion function should result in retrieving
2993   // the iFunc instead. Name Mangling will handle the rest of the changes.
2994   if (const FunctionDecl *FD = cast_or_null<FunctionDecl>(D)) {
2995     // For the device mark the function as one that should be emitted.
2996     if (getLangOpts().OpenMPIsDevice && OpenMPRuntime &&
2997         !OpenMPRuntime->markAsGlobalTarget(GD) && FD->isDefined() &&
2998         !DontDefer && !IsForDefinition) {
2999       if (const FunctionDecl *FDDef = FD->getDefinition()) {
3000         GlobalDecl GDDef;
3001         if (const auto *CD = dyn_cast<CXXConstructorDecl>(FDDef))
3002           GDDef = GlobalDecl(CD, GD.getCtorType());
3003         else if (const auto *DD = dyn_cast<CXXDestructorDecl>(FDDef))
3004           GDDef = GlobalDecl(DD, GD.getDtorType());
3005         else
3006           GDDef = GlobalDecl(FDDef);
3007         EmitGlobal(GDDef);
3008       }
3009     }
3010 
3011     if (FD->isMultiVersion()) {
3012       const auto *TA = FD->getAttr<TargetAttr>();
3013       if (TA && TA->isDefaultVersion())
3014         UpdateMultiVersionNames(GD, FD);
3015       if (!IsForDefinition)
3016         return GetOrCreateMultiVersionResolver(GD, Ty, FD);
3017     }
3018   }
3019 
3020   // Lookup the entry, lazily creating it if necessary.
3021   llvm::GlobalValue *Entry = GetGlobalValue(MangledName);
3022   if (Entry) {
3023     if (WeakRefReferences.erase(Entry)) {
3024       const FunctionDecl *FD = cast_or_null<FunctionDecl>(D);
3025       if (FD && !FD->hasAttr<WeakAttr>())
3026         Entry->setLinkage(llvm::Function::ExternalLinkage);
3027     }
3028 
3029     // Handle dropped DLL attributes.
3030     if (D && !D->hasAttr<DLLImportAttr>() && !D->hasAttr<DLLExportAttr>()) {
3031       Entry->setDLLStorageClass(llvm::GlobalValue::DefaultStorageClass);
3032       setDSOLocal(Entry);
3033     }
3034 
3035     // If there are two attempts to define the same mangled name, issue an
3036     // error.
3037     if (IsForDefinition && !Entry->isDeclaration()) {
3038       GlobalDecl OtherGD;
3039       // Check that GD is not yet in DiagnosedConflictingDefinitions is required
3040       // to make sure that we issue an error only once.
3041       if (lookupRepresentativeDecl(MangledName, OtherGD) &&
3042           (GD.getCanonicalDecl().getDecl() !=
3043            OtherGD.getCanonicalDecl().getDecl()) &&
3044           DiagnosedConflictingDefinitions.insert(GD).second) {
3045         getDiags().Report(D->getLocation(), diag::err_duplicate_mangled_name)
3046             << MangledName;
3047         getDiags().Report(OtherGD.getDecl()->getLocation(),
3048                           diag::note_previous_definition);
3049       }
3050     }
3051 
3052     if ((isa<llvm::Function>(Entry) || isa<llvm::GlobalAlias>(Entry)) &&
3053         (Entry->getType()->getElementType() == Ty)) {
3054       return Entry;
3055     }
3056 
3057     // Make sure the result is of the correct type.
3058     // (If function is requested for a definition, we always need to create a new
3059     // function, not just return a bitcast.)
3060     if (!IsForDefinition)
3061       return llvm::ConstantExpr::getBitCast(Entry, Ty->getPointerTo());
3062   }
3063 
3064   // This function doesn't have a complete type (for example, the return
3065   // type is an incomplete struct). Use a fake type instead, and make
3066   // sure not to try to set attributes.
3067   bool IsIncompleteFunction = false;
3068 
3069   llvm::FunctionType *FTy;
3070   if (isa<llvm::FunctionType>(Ty)) {
3071     FTy = cast<llvm::FunctionType>(Ty);
3072   } else {
3073     FTy = llvm::FunctionType::get(VoidTy, false);
3074     IsIncompleteFunction = true;
3075   }
3076 
3077   llvm::Function *F =
3078       llvm::Function::Create(FTy, llvm::Function::ExternalLinkage,
3079                              Entry ? StringRef() : MangledName, &getModule());
3080 
3081   // If we already created a function with the same mangled name (but different
3082   // type) before, take its name and add it to the list of functions to be
3083   // replaced with F at the end of CodeGen.
3084   //
3085   // This happens if there is a prototype for a function (e.g. "int f()") and
3086   // then a definition of a different type (e.g. "int f(int x)").
3087   if (Entry) {
3088     F->takeName(Entry);
3089 
3090     // This might be an implementation of a function without a prototype, in
3091     // which case, try to do special replacement of calls which match the new
3092     // prototype.  The really key thing here is that we also potentially drop
3093     // arguments from the call site so as to make a direct call, which makes the
3094     // inliner happier and suppresses a number of optimizer warnings (!) about
3095     // dropping arguments.
3096     if (!Entry->use_empty()) {
3097       ReplaceUsesOfNonProtoTypeWithRealFunction(Entry, F);
3098       Entry->removeDeadConstantUsers();
3099     }
3100 
3101     llvm::Constant *BC = llvm::ConstantExpr::getBitCast(
3102         F, Entry->getType()->getElementType()->getPointerTo());
3103     addGlobalValReplacement(Entry, BC);
3104   }
3105 
3106   assert(F->getName() == MangledName && "name was uniqued!");
3107   if (D)
3108     SetFunctionAttributes(GD, F, IsIncompleteFunction, IsThunk);
3109   if (ExtraAttrs.hasAttributes(llvm::AttributeList::FunctionIndex)) {
3110     llvm::AttrBuilder B(ExtraAttrs, llvm::AttributeList::FunctionIndex);
3111     F->addAttributes(llvm::AttributeList::FunctionIndex, B);
3112   }
3113 
3114   if (!DontDefer) {
3115     // All MSVC dtors other than the base dtor are linkonce_odr and delegate to
3116     // each other bottoming out with the base dtor.  Therefore we emit non-base
3117     // dtors on usage, even if there is no dtor definition in the TU.
3118     if (D && isa<CXXDestructorDecl>(D) &&
3119         getCXXABI().useThunkForDtorVariant(cast<CXXDestructorDecl>(D),
3120                                            GD.getDtorType()))
3121       addDeferredDeclToEmit(GD);
3122 
3123     // This is the first use or definition of a mangled name.  If there is a
3124     // deferred decl with this name, remember that we need to emit it at the end
3125     // of the file.
3126     auto DDI = DeferredDecls.find(MangledName);
3127     if (DDI != DeferredDecls.end()) {
3128       // Move the potentially referenced deferred decl to the
3129       // DeferredDeclsToEmit list, and remove it from DeferredDecls (since we
3130       // don't need it anymore).
3131       addDeferredDeclToEmit(DDI->second);
3132       DeferredDecls.erase(DDI);
3133 
3134       // Otherwise, there are cases we have to worry about where we're
3135       // using a declaration for which we must emit a definition but where
3136       // we might not find a top-level definition:
3137       //   - member functions defined inline in their classes
3138       //   - friend functions defined inline in some class
3139       //   - special member functions with implicit definitions
3140       // If we ever change our AST traversal to walk into class methods,
3141       // this will be unnecessary.
3142       //
3143       // We also don't emit a definition for a function if it's going to be an
3144       // entry in a vtable, unless it's already marked as used.
3145     } else if (getLangOpts().CPlusPlus && D) {
3146       // Look for a declaration that's lexically in a record.
3147       for (const auto *FD = cast<FunctionDecl>(D)->getMostRecentDecl(); FD;
3148            FD = FD->getPreviousDecl()) {
3149         if (isa<CXXRecordDecl>(FD->getLexicalDeclContext())) {
3150           if (FD->doesThisDeclarationHaveABody()) {
3151             addDeferredDeclToEmit(GD.getWithDecl(FD));
3152             break;
3153           }
3154         }
3155       }
3156     }
3157   }
3158 
3159   // Make sure the result is of the requested type.
3160   if (!IsIncompleteFunction) {
3161     assert(F->getType()->getElementType() == Ty);
3162     return F;
3163   }
3164 
3165   llvm::Type *PTy = llvm::PointerType::getUnqual(Ty);
3166   return llvm::ConstantExpr::getBitCast(F, PTy);
3167 }
3168 
3169 /// GetAddrOfFunction - Return the address of the given function.  If Ty is
3170 /// non-null, then this function will use the specified type if it has to
3171 /// create it (this occurs when we see a definition of the function).
3172 llvm::Constant *CodeGenModule::GetAddrOfFunction(GlobalDecl GD,
3173                                                  llvm::Type *Ty,
3174                                                  bool ForVTable,
3175                                                  bool DontDefer,
3176                                               ForDefinition_t IsForDefinition) {
3177   // If there was no specific requested type, just convert it now.
3178   if (!Ty) {
3179     const auto *FD = cast<FunctionDecl>(GD.getDecl());
3180     Ty = getTypes().ConvertType(FD->getType());
3181   }
3182 
3183   // Devirtualized destructor calls may come through here instead of via
3184   // getAddrOfCXXStructor. Make sure we use the MS ABI base destructor instead
3185   // of the complete destructor when necessary.
3186   if (const auto *DD = dyn_cast<CXXDestructorDecl>(GD.getDecl())) {
3187     if (getTarget().getCXXABI().isMicrosoft() &&
3188         GD.getDtorType() == Dtor_Complete &&
3189         DD->getParent()->getNumVBases() == 0)
3190       GD = GlobalDecl(DD, Dtor_Base);
3191   }
3192 
3193   StringRef MangledName = getMangledName(GD);
3194   return GetOrCreateLLVMFunction(MangledName, Ty, GD, ForVTable, DontDefer,
3195                                  /*IsThunk=*/false, llvm::AttributeList(),
3196                                  IsForDefinition);
3197 }
3198 
3199 static const FunctionDecl *
3200 GetRuntimeFunctionDecl(ASTContext &C, StringRef Name) {
3201   TranslationUnitDecl *TUDecl = C.getTranslationUnitDecl();
3202   DeclContext *DC = TranslationUnitDecl::castToDeclContext(TUDecl);
3203 
3204   IdentifierInfo &CII = C.Idents.get(Name);
3205   for (const auto &Result : DC->lookup(&CII))
3206     if (const auto FD = dyn_cast<FunctionDecl>(Result))
3207       return FD;
3208 
3209   if (!C.getLangOpts().CPlusPlus)
3210     return nullptr;
3211 
3212   // Demangle the premangled name from getTerminateFn()
3213   IdentifierInfo &CXXII =
3214       (Name == "_ZSt9terminatev" || Name == "?terminate@@YAXXZ")
3215           ? C.Idents.get("terminate")
3216           : C.Idents.get(Name);
3217 
3218   for (const auto &N : {"__cxxabiv1", "std"}) {
3219     IdentifierInfo &NS = C.Idents.get(N);
3220     for (const auto &Result : DC->lookup(&NS)) {
3221       NamespaceDecl *ND = dyn_cast<NamespaceDecl>(Result);
3222       if (auto LSD = dyn_cast<LinkageSpecDecl>(Result))
3223         for (const auto &Result : LSD->lookup(&NS))
3224           if ((ND = dyn_cast<NamespaceDecl>(Result)))
3225             break;
3226 
3227       if (ND)
3228         for (const auto &Result : ND->lookup(&CXXII))
3229           if (const auto *FD = dyn_cast<FunctionDecl>(Result))
3230             return FD;
3231     }
3232   }
3233 
3234   return nullptr;
3235 }
3236 
3237 /// CreateRuntimeFunction - Create a new runtime function with the specified
3238 /// type and name.
3239 llvm::FunctionCallee
3240 CodeGenModule::CreateRuntimeFunction(llvm::FunctionType *FTy, StringRef Name,
3241                                      llvm::AttributeList ExtraAttrs,
3242                                      bool Local) {
3243   llvm::Constant *C =
3244       GetOrCreateLLVMFunction(Name, FTy, GlobalDecl(), /*ForVTable=*/false,
3245                               /*DontDefer=*/false, /*IsThunk=*/false,
3246                               ExtraAttrs);
3247 
3248   if (auto *F = dyn_cast<llvm::Function>(C)) {
3249     if (F->empty()) {
3250       F->setCallingConv(getRuntimeCC());
3251 
3252       // In Windows Itanium environments, try to mark runtime functions
3253       // dllimport. For Mingw and MSVC, don't. We don't really know if the user
3254       // will link their standard library statically or dynamically. Marking
3255       // functions imported when they are not imported can cause linker errors
3256       // and warnings.
3257       if (!Local && getTriple().isWindowsItaniumEnvironment() &&
3258           !getCodeGenOpts().LTOVisibilityPublicStd) {
3259         const FunctionDecl *FD = GetRuntimeFunctionDecl(Context, Name);
3260         if (!FD || FD->hasAttr<DLLImportAttr>()) {
3261           F->setDLLStorageClass(llvm::GlobalValue::DLLImportStorageClass);
3262           F->setLinkage(llvm::GlobalValue::ExternalLinkage);
3263         }
3264       }
3265       setDSOLocal(F);
3266     }
3267   }
3268 
3269   return {FTy, C};
3270 }
3271 
3272 /// isTypeConstant - Determine whether an object of this type can be emitted
3273 /// as a constant.
3274 ///
3275 /// If ExcludeCtor is true, the duration when the object's constructor runs
3276 /// will not be considered. The caller will need to verify that the object is
3277 /// not written to during its construction.
3278 bool CodeGenModule::isTypeConstant(QualType Ty, bool ExcludeCtor) {
3279   if (!Ty.isConstant(Context) && !Ty->isReferenceType())
3280     return false;
3281 
3282   if (Context.getLangOpts().CPlusPlus) {
3283     if (const CXXRecordDecl *Record
3284           = Context.getBaseElementType(Ty)->getAsCXXRecordDecl())
3285       return ExcludeCtor && !Record->hasMutableFields() &&
3286              Record->hasTrivialDestructor();
3287   }
3288 
3289   return true;
3290 }
3291 
3292 /// GetOrCreateLLVMGlobal - If the specified mangled name is not in the module,
3293 /// create and return an llvm GlobalVariable with the specified type.  If there
3294 /// is something in the module with the specified name, return it potentially
3295 /// bitcasted to the right type.
3296 ///
3297 /// If D is non-null, it specifies a decl that correspond to this.  This is used
3298 /// to set the attributes on the global when it is first created.
3299 ///
3300 /// If IsForDefinition is true, it is guaranteed that an actual global with
3301 /// type Ty will be returned, not conversion of a variable with the same
3302 /// mangled name but some other type.
3303 llvm::Constant *
3304 CodeGenModule::GetOrCreateLLVMGlobal(StringRef MangledName,
3305                                      llvm::PointerType *Ty,
3306                                      const VarDecl *D,
3307                                      ForDefinition_t IsForDefinition) {
3308   // Lookup the entry, lazily creating it if necessary.
3309   llvm::GlobalValue *Entry = GetGlobalValue(MangledName);
3310   if (Entry) {
3311     if (WeakRefReferences.erase(Entry)) {
3312       if (D && !D->hasAttr<WeakAttr>())
3313         Entry->setLinkage(llvm::Function::ExternalLinkage);
3314     }
3315 
3316     // Handle dropped DLL attributes.
3317     if (D && !D->hasAttr<DLLImportAttr>() && !D->hasAttr<DLLExportAttr>())
3318       Entry->setDLLStorageClass(llvm::GlobalValue::DefaultStorageClass);
3319 
3320     if (LangOpts.OpenMP && !LangOpts.OpenMPSimd && D)
3321       getOpenMPRuntime().registerTargetGlobalVariable(D, Entry);
3322 
3323     if (Entry->getType() == Ty)
3324       return Entry;
3325 
3326     // If there are two attempts to define the same mangled name, issue an
3327     // error.
3328     if (IsForDefinition && !Entry->isDeclaration()) {
3329       GlobalDecl OtherGD;
3330       const VarDecl *OtherD;
3331 
3332       // Check that D is not yet in DiagnosedConflictingDefinitions is required
3333       // to make sure that we issue an error only once.
3334       if (D && lookupRepresentativeDecl(MangledName, OtherGD) &&
3335           (D->getCanonicalDecl() != OtherGD.getCanonicalDecl().getDecl()) &&
3336           (OtherD = dyn_cast<VarDecl>(OtherGD.getDecl())) &&
3337           OtherD->hasInit() &&
3338           DiagnosedConflictingDefinitions.insert(D).second) {
3339         getDiags().Report(D->getLocation(), diag::err_duplicate_mangled_name)
3340             << MangledName;
3341         getDiags().Report(OtherGD.getDecl()->getLocation(),
3342                           diag::note_previous_definition);
3343       }
3344     }
3345 
3346     // Make sure the result is of the correct type.
3347     if (Entry->getType()->getAddressSpace() != Ty->getAddressSpace())
3348       return llvm::ConstantExpr::getAddrSpaceCast(Entry, Ty);
3349 
3350     // (If global is requested for a definition, we always need to create a new
3351     // global, not just return a bitcast.)
3352     if (!IsForDefinition)
3353       return llvm::ConstantExpr::getBitCast(Entry, Ty);
3354   }
3355 
3356   auto AddrSpace = GetGlobalVarAddressSpace(D);
3357   auto TargetAddrSpace = getContext().getTargetAddressSpace(AddrSpace);
3358 
3359   auto *GV = new llvm::GlobalVariable(
3360       getModule(), Ty->getElementType(), false,
3361       llvm::GlobalValue::ExternalLinkage, nullptr, MangledName, nullptr,
3362       llvm::GlobalVariable::NotThreadLocal, TargetAddrSpace);
3363 
3364   // If we already created a global with the same mangled name (but different
3365   // type) before, take its name and remove it from its parent.
3366   if (Entry) {
3367     GV->takeName(Entry);
3368 
3369     if (!Entry->use_empty()) {
3370       llvm::Constant *NewPtrForOldDecl =
3371           llvm::ConstantExpr::getBitCast(GV, Entry->getType());
3372       Entry->replaceAllUsesWith(NewPtrForOldDecl);
3373     }
3374 
3375     Entry->eraseFromParent();
3376   }
3377 
3378   // This is the first use or definition of a mangled name.  If there is a
3379   // deferred decl with this name, remember that we need to emit it at the end
3380   // of the file.
3381   auto DDI = DeferredDecls.find(MangledName);
3382   if (DDI != DeferredDecls.end()) {
3383     // Move the potentially referenced deferred decl to the DeferredDeclsToEmit
3384     // list, and remove it from DeferredDecls (since we don't need it anymore).
3385     addDeferredDeclToEmit(DDI->second);
3386     DeferredDecls.erase(DDI);
3387   }
3388 
3389   // Handle things which are present even on external declarations.
3390   if (D) {
3391     if (LangOpts.OpenMP && !LangOpts.OpenMPSimd)
3392       getOpenMPRuntime().registerTargetGlobalVariable(D, GV);
3393 
3394     // FIXME: This code is overly simple and should be merged with other global
3395     // handling.
3396     GV->setConstant(isTypeConstant(D->getType(), false));
3397 
3398     GV->setAlignment(getContext().getDeclAlign(D).getQuantity());
3399 
3400     setLinkageForGV(GV, D);
3401 
3402     if (D->getTLSKind()) {
3403       if (D->getTLSKind() == VarDecl::TLS_Dynamic)
3404         CXXThreadLocals.push_back(D);
3405       setTLSMode(GV, *D);
3406     }
3407 
3408     setGVProperties(GV, D);
3409 
3410     // If required by the ABI, treat declarations of static data members with
3411     // inline initializers as definitions.
3412     if (getContext().isMSStaticDataMemberInlineDefinition(D)) {
3413       EmitGlobalVarDefinition(D);
3414     }
3415 
3416     // Emit section information for extern variables.
3417     if (D->hasExternalStorage()) {
3418       if (const SectionAttr *SA = D->getAttr<SectionAttr>())
3419         GV->setSection(SA->getName());
3420     }
3421 
3422     // Handle XCore specific ABI requirements.
3423     if (getTriple().getArch() == llvm::Triple::xcore &&
3424         D->getLanguageLinkage() == CLanguageLinkage &&
3425         D->getType().isConstant(Context) &&
3426         isExternallyVisible(D->getLinkageAndVisibility().getLinkage()))
3427       GV->setSection(".cp.rodata");
3428 
3429     // Check if we a have a const declaration with an initializer, we may be
3430     // able to emit it as available_externally to expose it's value to the
3431     // optimizer.
3432     if (Context.getLangOpts().CPlusPlus && GV->hasExternalLinkage() &&
3433         D->getType().isConstQualified() && !GV->hasInitializer() &&
3434         !D->hasDefinition() && D->hasInit() && !D->hasAttr<DLLImportAttr>()) {
3435       const auto *Record =
3436           Context.getBaseElementType(D->getType())->getAsCXXRecordDecl();
3437       bool HasMutableFields = Record && Record->hasMutableFields();
3438       if (!HasMutableFields) {
3439         const VarDecl *InitDecl;
3440         const Expr *InitExpr = D->getAnyInitializer(InitDecl);
3441         if (InitExpr) {
3442           ConstantEmitter emitter(*this);
3443           llvm::Constant *Init = emitter.tryEmitForInitializer(*InitDecl);
3444           if (Init) {
3445             auto *InitType = Init->getType();
3446             if (GV->getType()->getElementType() != InitType) {
3447               // The type of the initializer does not match the definition.
3448               // This happens when an initializer has a different type from
3449               // the type of the global (because of padding at the end of a
3450               // structure for instance).
3451               GV->setName(StringRef());
3452               // Make a new global with the correct type, this is now guaranteed
3453               // to work.
3454               auto *NewGV = cast<llvm::GlobalVariable>(
3455                   GetAddrOfGlobalVar(D, InitType, IsForDefinition));
3456 
3457               // Erase the old global, since it is no longer used.
3458               GV->eraseFromParent();
3459               GV = NewGV;
3460             } else {
3461               GV->setInitializer(Init);
3462               GV->setConstant(true);
3463               GV->setLinkage(llvm::GlobalValue::AvailableExternallyLinkage);
3464             }
3465             emitter.finalize(GV);
3466           }
3467         }
3468       }
3469     }
3470   }
3471 
3472   LangAS ExpectedAS =
3473       D ? D->getType().getAddressSpace()
3474         : (LangOpts.OpenCL ? LangAS::opencl_global : LangAS::Default);
3475   assert(getContext().getTargetAddressSpace(ExpectedAS) ==
3476          Ty->getPointerAddressSpace());
3477   if (AddrSpace != ExpectedAS)
3478     return getTargetCodeGenInfo().performAddrSpaceCast(*this, GV, AddrSpace,
3479                                                        ExpectedAS, Ty);
3480 
3481   if (GV->isDeclaration())
3482     getTargetCodeGenInfo().setTargetAttributes(D, GV, *this);
3483 
3484   return GV;
3485 }
3486 
3487 llvm::Constant *
3488 CodeGenModule::GetAddrOfGlobal(GlobalDecl GD,
3489                                ForDefinition_t IsForDefinition) {
3490   const Decl *D = GD.getDecl();
3491   if (isa<CXXConstructorDecl>(D) || isa<CXXDestructorDecl>(D))
3492     return getAddrOfCXXStructor(GD, /*FnInfo=*/nullptr, /*FnType=*/nullptr,
3493                                 /*DontDefer=*/false, IsForDefinition);
3494   else if (isa<CXXMethodDecl>(D)) {
3495     auto FInfo = &getTypes().arrangeCXXMethodDeclaration(
3496         cast<CXXMethodDecl>(D));
3497     auto Ty = getTypes().GetFunctionType(*FInfo);
3498     return GetAddrOfFunction(GD, Ty, /*ForVTable=*/false, /*DontDefer=*/false,
3499                              IsForDefinition);
3500   } else if (isa<FunctionDecl>(D)) {
3501     const CGFunctionInfo &FI = getTypes().arrangeGlobalDeclaration(GD);
3502     llvm::FunctionType *Ty = getTypes().GetFunctionType(FI);
3503     return GetAddrOfFunction(GD, Ty, /*ForVTable=*/false, /*DontDefer=*/false,
3504                              IsForDefinition);
3505   } else
3506     return GetAddrOfGlobalVar(cast<VarDecl>(D), /*Ty=*/nullptr,
3507                               IsForDefinition);
3508 }
3509 
3510 llvm::GlobalVariable *CodeGenModule::CreateOrReplaceCXXRuntimeVariable(
3511     StringRef Name, llvm::Type *Ty, llvm::GlobalValue::LinkageTypes Linkage,
3512     unsigned Alignment) {
3513   llvm::GlobalVariable *GV = getModule().getNamedGlobal(Name);
3514   llvm::GlobalVariable *OldGV = nullptr;
3515 
3516   if (GV) {
3517     // Check if the variable has the right type.
3518     if (GV->getType()->getElementType() == Ty)
3519       return GV;
3520 
3521     // Because C++ name mangling, the only way we can end up with an already
3522     // existing global with the same name is if it has been declared extern "C".
3523     assert(GV->isDeclaration() && "Declaration has wrong type!");
3524     OldGV = GV;
3525   }
3526 
3527   // Create a new variable.
3528   GV = new llvm::GlobalVariable(getModule(), Ty, /*isConstant=*/true,
3529                                 Linkage, nullptr, Name);
3530 
3531   if (OldGV) {
3532     // Replace occurrences of the old variable if needed.
3533     GV->takeName(OldGV);
3534 
3535     if (!OldGV->use_empty()) {
3536       llvm::Constant *NewPtrForOldDecl =
3537       llvm::ConstantExpr::getBitCast(GV, OldGV->getType());
3538       OldGV->replaceAllUsesWith(NewPtrForOldDecl);
3539     }
3540 
3541     OldGV->eraseFromParent();
3542   }
3543 
3544   if (supportsCOMDAT() && GV->isWeakForLinker() &&
3545       !GV->hasAvailableExternallyLinkage())
3546     GV->setComdat(TheModule.getOrInsertComdat(GV->getName()));
3547 
3548   GV->setAlignment(Alignment);
3549 
3550   return GV;
3551 }
3552 
3553 /// GetAddrOfGlobalVar - Return the llvm::Constant for the address of the
3554 /// given global variable.  If Ty is non-null and if the global doesn't exist,
3555 /// then it will be created with the specified type instead of whatever the
3556 /// normal requested type would be. If IsForDefinition is true, it is guaranteed
3557 /// that an actual global with type Ty will be returned, not conversion of a
3558 /// variable with the same mangled name but some other type.
3559 llvm::Constant *CodeGenModule::GetAddrOfGlobalVar(const VarDecl *D,
3560                                                   llvm::Type *Ty,
3561                                            ForDefinition_t IsForDefinition) {
3562   assert(D->hasGlobalStorage() && "Not a global variable");
3563   QualType ASTTy = D->getType();
3564   if (!Ty)
3565     Ty = getTypes().ConvertTypeForMem(ASTTy);
3566 
3567   llvm::PointerType *PTy =
3568     llvm::PointerType::get(Ty, getContext().getTargetAddressSpace(ASTTy));
3569 
3570   StringRef MangledName = getMangledName(D);
3571   return GetOrCreateLLVMGlobal(MangledName, PTy, D, IsForDefinition);
3572 }
3573 
3574 /// CreateRuntimeVariable - Create a new runtime global variable with the
3575 /// specified type and name.
3576 llvm::Constant *
3577 CodeGenModule::CreateRuntimeVariable(llvm::Type *Ty,
3578                                      StringRef Name) {
3579   auto *Ret =
3580       GetOrCreateLLVMGlobal(Name, llvm::PointerType::getUnqual(Ty), nullptr);
3581   setDSOLocal(cast<llvm::GlobalValue>(Ret->stripPointerCasts()));
3582   return Ret;
3583 }
3584 
3585 void CodeGenModule::EmitTentativeDefinition(const VarDecl *D) {
3586   assert(!D->getInit() && "Cannot emit definite definitions here!");
3587 
3588   StringRef MangledName = getMangledName(D);
3589   llvm::GlobalValue *GV = GetGlobalValue(MangledName);
3590 
3591   // We already have a definition, not declaration, with the same mangled name.
3592   // Emitting of declaration is not required (and actually overwrites emitted
3593   // definition).
3594   if (GV && !GV->isDeclaration())
3595     return;
3596 
3597   // If we have not seen a reference to this variable yet, place it into the
3598   // deferred declarations table to be emitted if needed later.
3599   if (!MustBeEmitted(D) && !GV) {
3600       DeferredDecls[MangledName] = D;
3601       return;
3602   }
3603 
3604   // The tentative definition is the only definition.
3605   EmitGlobalVarDefinition(D);
3606 }
3607 
3608 CharUnits CodeGenModule::GetTargetTypeStoreSize(llvm::Type *Ty) const {
3609   return Context.toCharUnitsFromBits(
3610       getDataLayout().getTypeStoreSizeInBits(Ty));
3611 }
3612 
3613 LangAS CodeGenModule::GetGlobalVarAddressSpace(const VarDecl *D) {
3614   LangAS AddrSpace = LangAS::Default;
3615   if (LangOpts.OpenCL) {
3616     AddrSpace = D ? D->getType().getAddressSpace() : LangAS::opencl_global;
3617     assert(AddrSpace == LangAS::opencl_global ||
3618            AddrSpace == LangAS::opencl_constant ||
3619            AddrSpace == LangAS::opencl_local ||
3620            AddrSpace >= LangAS::FirstTargetAddressSpace);
3621     return AddrSpace;
3622   }
3623 
3624   if (LangOpts.CUDA && LangOpts.CUDAIsDevice) {
3625     if (D && D->hasAttr<CUDAConstantAttr>())
3626       return LangAS::cuda_constant;
3627     else if (D && D->hasAttr<CUDASharedAttr>())
3628       return LangAS::cuda_shared;
3629     else if (D && D->hasAttr<CUDADeviceAttr>())
3630       return LangAS::cuda_device;
3631     else if (D && D->getType().isConstQualified())
3632       return LangAS::cuda_constant;
3633     else
3634       return LangAS::cuda_device;
3635   }
3636 
3637   if (LangOpts.OpenMP) {
3638     LangAS AS;
3639     if (OpenMPRuntime->hasAllocateAttributeForGlobalVar(D, AS))
3640       return AS;
3641   }
3642   return getTargetCodeGenInfo().getGlobalVarAddressSpace(*this, D);
3643 }
3644 
3645 LangAS CodeGenModule::getStringLiteralAddressSpace() const {
3646   // OpenCL v1.2 s6.5.3: a string literal is in the constant address space.
3647   if (LangOpts.OpenCL)
3648     return LangAS::opencl_constant;
3649   if (auto AS = getTarget().getConstantAddressSpace())
3650     return AS.getValue();
3651   return LangAS::Default;
3652 }
3653 
3654 // In address space agnostic languages, string literals are in default address
3655 // space in AST. However, certain targets (e.g. amdgcn) request them to be
3656 // emitted in constant address space in LLVM IR. To be consistent with other
3657 // parts of AST, string literal global variables in constant address space
3658 // need to be casted to default address space before being put into address
3659 // map and referenced by other part of CodeGen.
3660 // In OpenCL, string literals are in constant address space in AST, therefore
3661 // they should not be casted to default address space.
3662 static llvm::Constant *
3663 castStringLiteralToDefaultAddressSpace(CodeGenModule &CGM,
3664                                        llvm::GlobalVariable *GV) {
3665   llvm::Constant *Cast = GV;
3666   if (!CGM.getLangOpts().OpenCL) {
3667     if (auto AS = CGM.getTarget().getConstantAddressSpace()) {
3668       if (AS != LangAS::Default)
3669         Cast = CGM.getTargetCodeGenInfo().performAddrSpaceCast(
3670             CGM, GV, AS.getValue(), LangAS::Default,
3671             GV->getValueType()->getPointerTo(
3672                 CGM.getContext().getTargetAddressSpace(LangAS::Default)));
3673     }
3674   }
3675   return Cast;
3676 }
3677 
3678 template<typename SomeDecl>
3679 void CodeGenModule::MaybeHandleStaticInExternC(const SomeDecl *D,
3680                                                llvm::GlobalValue *GV) {
3681   if (!getLangOpts().CPlusPlus)
3682     return;
3683 
3684   // Must have 'used' attribute, or else inline assembly can't rely on
3685   // the name existing.
3686   if (!D->template hasAttr<UsedAttr>())
3687     return;
3688 
3689   // Must have internal linkage and an ordinary name.
3690   if (!D->getIdentifier() || D->getFormalLinkage() != InternalLinkage)
3691     return;
3692 
3693   // Must be in an extern "C" context. Entities declared directly within
3694   // a record are not extern "C" even if the record is in such a context.
3695   const SomeDecl *First = D->getFirstDecl();
3696   if (First->getDeclContext()->isRecord() || !First->isInExternCContext())
3697     return;
3698 
3699   // OK, this is an internal linkage entity inside an extern "C" linkage
3700   // specification. Make a note of that so we can give it the "expected"
3701   // mangled name if nothing else is using that name.
3702   std::pair<StaticExternCMap::iterator, bool> R =
3703       StaticExternCValues.insert(std::make_pair(D->getIdentifier(), GV));
3704 
3705   // If we have multiple internal linkage entities with the same name
3706   // in extern "C" regions, none of them gets that name.
3707   if (!R.second)
3708     R.first->second = nullptr;
3709 }
3710 
3711 static bool shouldBeInCOMDAT(CodeGenModule &CGM, const Decl &D) {
3712   if (!CGM.supportsCOMDAT())
3713     return false;
3714 
3715   // Do not set COMDAT attribute for CUDA/HIP stub functions to prevent
3716   // them being "merged" by the COMDAT Folding linker optimization.
3717   if (D.hasAttr<CUDAGlobalAttr>())
3718     return false;
3719 
3720   if (D.hasAttr<SelectAnyAttr>())
3721     return true;
3722 
3723   GVALinkage Linkage;
3724   if (auto *VD = dyn_cast<VarDecl>(&D))
3725     Linkage = CGM.getContext().GetGVALinkageForVariable(VD);
3726   else
3727     Linkage = CGM.getContext().GetGVALinkageForFunction(cast<FunctionDecl>(&D));
3728 
3729   switch (Linkage) {
3730   case GVA_Internal:
3731   case GVA_AvailableExternally:
3732   case GVA_StrongExternal:
3733     return false;
3734   case GVA_DiscardableODR:
3735   case GVA_StrongODR:
3736     return true;
3737   }
3738   llvm_unreachable("No such linkage");
3739 }
3740 
3741 void CodeGenModule::maybeSetTrivialComdat(const Decl &D,
3742                                           llvm::GlobalObject &GO) {
3743   if (!shouldBeInCOMDAT(*this, D))
3744     return;
3745   GO.setComdat(TheModule.getOrInsertComdat(GO.getName()));
3746 }
3747 
3748 /// Pass IsTentative as true if you want to create a tentative definition.
3749 void CodeGenModule::EmitGlobalVarDefinition(const VarDecl *D,
3750                                             bool IsTentative) {
3751   // OpenCL global variables of sampler type are translated to function calls,
3752   // therefore no need to be translated.
3753   QualType ASTTy = D->getType();
3754   if (getLangOpts().OpenCL && ASTTy->isSamplerT())
3755     return;
3756 
3757   // If this is OpenMP device, check if it is legal to emit this global
3758   // normally.
3759   if (LangOpts.OpenMPIsDevice && OpenMPRuntime &&
3760       OpenMPRuntime->emitTargetGlobalVariable(D))
3761     return;
3762 
3763   llvm::Constant *Init = nullptr;
3764   CXXRecordDecl *RD = ASTTy->getBaseElementTypeUnsafe()->getAsCXXRecordDecl();
3765   bool NeedsGlobalCtor = false;
3766   bool NeedsGlobalDtor = RD && !RD->hasTrivialDestructor();
3767 
3768   const VarDecl *InitDecl;
3769   const Expr *InitExpr = D->getAnyInitializer(InitDecl);
3770 
3771   Optional<ConstantEmitter> emitter;
3772 
3773   // CUDA E.2.4.1 "__shared__ variables cannot have an initialization
3774   // as part of their declaration."  Sema has already checked for
3775   // error cases, so we just need to set Init to UndefValue.
3776   bool IsCUDASharedVar =
3777       getLangOpts().CUDAIsDevice && D->hasAttr<CUDASharedAttr>();
3778   // Shadows of initialized device-side global variables are also left
3779   // undefined.
3780   bool IsCUDAShadowVar =
3781       !getLangOpts().CUDAIsDevice &&
3782       (D->hasAttr<CUDAConstantAttr>() || D->hasAttr<CUDADeviceAttr>() ||
3783        D->hasAttr<CUDASharedAttr>());
3784   if (getLangOpts().CUDA && (IsCUDASharedVar || IsCUDAShadowVar))
3785     Init = llvm::UndefValue::get(getTypes().ConvertType(ASTTy));
3786   else if (!InitExpr) {
3787     // This is a tentative definition; tentative definitions are
3788     // implicitly initialized with { 0 }.
3789     //
3790     // Note that tentative definitions are only emitted at the end of
3791     // a translation unit, so they should never have incomplete
3792     // type. In addition, EmitTentativeDefinition makes sure that we
3793     // never attempt to emit a tentative definition if a real one
3794     // exists. A use may still exists, however, so we still may need
3795     // to do a RAUW.
3796     assert(!ASTTy->isIncompleteType() && "Unexpected incomplete type");
3797     Init = EmitNullConstant(D->getType());
3798   } else {
3799     initializedGlobalDecl = GlobalDecl(D);
3800     emitter.emplace(*this);
3801     Init = emitter->tryEmitForInitializer(*InitDecl);
3802 
3803     if (!Init) {
3804       QualType T = InitExpr->getType();
3805       if (D->getType()->isReferenceType())
3806         T = D->getType();
3807 
3808       if (getLangOpts().CPlusPlus) {
3809         Init = EmitNullConstant(T);
3810         NeedsGlobalCtor = true;
3811       } else {
3812         ErrorUnsupported(D, "static initializer");
3813         Init = llvm::UndefValue::get(getTypes().ConvertType(T));
3814       }
3815     } else {
3816       // We don't need an initializer, so remove the entry for the delayed
3817       // initializer position (just in case this entry was delayed) if we
3818       // also don't need to register a destructor.
3819       if (getLangOpts().CPlusPlus && !NeedsGlobalDtor)
3820         DelayedCXXInitPosition.erase(D);
3821     }
3822   }
3823 
3824   llvm::Type* InitType = Init->getType();
3825   llvm::Constant *Entry =
3826       GetAddrOfGlobalVar(D, InitType, ForDefinition_t(!IsTentative));
3827 
3828   // Strip off a bitcast if we got one back.
3829   if (auto *CE = dyn_cast<llvm::ConstantExpr>(Entry)) {
3830     assert(CE->getOpcode() == llvm::Instruction::BitCast ||
3831            CE->getOpcode() == llvm::Instruction::AddrSpaceCast ||
3832            // All zero index gep.
3833            CE->getOpcode() == llvm::Instruction::GetElementPtr);
3834     Entry = CE->getOperand(0);
3835   }
3836 
3837   // Entry is now either a Function or GlobalVariable.
3838   auto *GV = dyn_cast<llvm::GlobalVariable>(Entry);
3839 
3840   // We have a definition after a declaration with the wrong type.
3841   // We must make a new GlobalVariable* and update everything that used OldGV
3842   // (a declaration or tentative definition) with the new GlobalVariable*
3843   // (which will be a definition).
3844   //
3845   // This happens if there is a prototype for a global (e.g.
3846   // "extern int x[];") and then a definition of a different type (e.g.
3847   // "int x[10];"). This also happens when an initializer has a different type
3848   // from the type of the global (this happens with unions).
3849   if (!GV || GV->getType()->getElementType() != InitType ||
3850       GV->getType()->getAddressSpace() !=
3851           getContext().getTargetAddressSpace(GetGlobalVarAddressSpace(D))) {
3852 
3853     // Move the old entry aside so that we'll create a new one.
3854     Entry->setName(StringRef());
3855 
3856     // Make a new global with the correct type, this is now guaranteed to work.
3857     GV = cast<llvm::GlobalVariable>(
3858         GetAddrOfGlobalVar(D, InitType, ForDefinition_t(!IsTentative)));
3859 
3860     // Replace all uses of the old global with the new global
3861     llvm::Constant *NewPtrForOldDecl =
3862         llvm::ConstantExpr::getBitCast(GV, Entry->getType());
3863     Entry->replaceAllUsesWith(NewPtrForOldDecl);
3864 
3865     // Erase the old global, since it is no longer used.
3866     cast<llvm::GlobalValue>(Entry)->eraseFromParent();
3867   }
3868 
3869   MaybeHandleStaticInExternC(D, GV);
3870 
3871   if (D->hasAttr<AnnotateAttr>())
3872     AddGlobalAnnotations(D, GV);
3873 
3874   // Set the llvm linkage type as appropriate.
3875   llvm::GlobalValue::LinkageTypes Linkage =
3876       getLLVMLinkageVarDefinition(D, GV->isConstant());
3877 
3878   // CUDA B.2.1 "The __device__ qualifier declares a variable that resides on
3879   // the device. [...]"
3880   // CUDA B.2.2 "The __constant__ qualifier, optionally used together with
3881   // __device__, declares a variable that: [...]
3882   // Is accessible from all the threads within the grid and from the host
3883   // through the runtime library (cudaGetSymbolAddress() / cudaGetSymbolSize()
3884   // / cudaMemcpyToSymbol() / cudaMemcpyFromSymbol())."
3885   if (GV && LangOpts.CUDA) {
3886     if (LangOpts.CUDAIsDevice) {
3887       if (Linkage != llvm::GlobalValue::InternalLinkage &&
3888           (D->hasAttr<CUDADeviceAttr>() || D->hasAttr<CUDAConstantAttr>()))
3889         GV->setExternallyInitialized(true);
3890     } else {
3891       // Host-side shadows of external declarations of device-side
3892       // global variables become internal definitions. These have to
3893       // be internal in order to prevent name conflicts with global
3894       // host variables with the same name in a different TUs.
3895       if (D->hasAttr<CUDADeviceAttr>() || D->hasAttr<CUDAConstantAttr>()) {
3896         Linkage = llvm::GlobalValue::InternalLinkage;
3897 
3898         // Shadow variables and their properties must be registered
3899         // with CUDA runtime.
3900         unsigned Flags = 0;
3901         if (!D->hasDefinition())
3902           Flags |= CGCUDARuntime::ExternDeviceVar;
3903         if (D->hasAttr<CUDAConstantAttr>())
3904           Flags |= CGCUDARuntime::ConstantDeviceVar;
3905         // Extern global variables will be registered in the TU where they are
3906         // defined.
3907         if (!D->hasExternalStorage())
3908           getCUDARuntime().registerDeviceVar(D, *GV, Flags);
3909       } else if (D->hasAttr<CUDASharedAttr>())
3910         // __shared__ variables are odd. Shadows do get created, but
3911         // they are not registered with the CUDA runtime, so they
3912         // can't really be used to access their device-side
3913         // counterparts. It's not clear yet whether it's nvcc's bug or
3914         // a feature, but we've got to do the same for compatibility.
3915         Linkage = llvm::GlobalValue::InternalLinkage;
3916     }
3917   }
3918 
3919   GV->setInitializer(Init);
3920   if (emitter) emitter->finalize(GV);
3921 
3922   // If it is safe to mark the global 'constant', do so now.
3923   GV->setConstant(!NeedsGlobalCtor && !NeedsGlobalDtor &&
3924                   isTypeConstant(D->getType(), true));
3925 
3926   // If it is in a read-only section, mark it 'constant'.
3927   if (const SectionAttr *SA = D->getAttr<SectionAttr>()) {
3928     const ASTContext::SectionInfo &SI = Context.SectionInfos[SA->getName()];
3929     if ((SI.SectionFlags & ASTContext::PSF_Write) == 0)
3930       GV->setConstant(true);
3931   }
3932 
3933   GV->setAlignment(getContext().getDeclAlign(D).getQuantity());
3934 
3935 
3936   // On Darwin, if the normal linkage of a C++ thread_local variable is
3937   // LinkOnce or Weak, we keep the normal linkage to prevent multiple
3938   // copies within a linkage unit; otherwise, the backing variable has
3939   // internal linkage and all accesses should just be calls to the
3940   // Itanium-specified entry point, which has the normal linkage of the
3941   // variable. This is to preserve the ability to change the implementation
3942   // behind the scenes.
3943   if (!D->isStaticLocal() && D->getTLSKind() == VarDecl::TLS_Dynamic &&
3944       Context.getTargetInfo().getTriple().isOSDarwin() &&
3945       !llvm::GlobalVariable::isLinkOnceLinkage(Linkage) &&
3946       !llvm::GlobalVariable::isWeakLinkage(Linkage))
3947     Linkage = llvm::GlobalValue::InternalLinkage;
3948 
3949   GV->setLinkage(Linkage);
3950   if (D->hasAttr<DLLImportAttr>())
3951     GV->setDLLStorageClass(llvm::GlobalVariable::DLLImportStorageClass);
3952   else if (D->hasAttr<DLLExportAttr>())
3953     GV->setDLLStorageClass(llvm::GlobalVariable::DLLExportStorageClass);
3954   else
3955     GV->setDLLStorageClass(llvm::GlobalVariable::DefaultStorageClass);
3956 
3957   if (Linkage == llvm::GlobalVariable::CommonLinkage) {
3958     // common vars aren't constant even if declared const.
3959     GV->setConstant(false);
3960     // Tentative definition of global variables may be initialized with
3961     // non-zero null pointers. In this case they should have weak linkage
3962     // since common linkage must have zero initializer and must not have
3963     // explicit section therefore cannot have non-zero initial value.
3964     if (!GV->getInitializer()->isNullValue())
3965       GV->setLinkage(llvm::GlobalVariable::WeakAnyLinkage);
3966   }
3967 
3968   setNonAliasAttributes(D, GV);
3969 
3970   if (D->getTLSKind() && !GV->isThreadLocal()) {
3971     if (D->getTLSKind() == VarDecl::TLS_Dynamic)
3972       CXXThreadLocals.push_back(D);
3973     setTLSMode(GV, *D);
3974   }
3975 
3976   maybeSetTrivialComdat(*D, *GV);
3977 
3978   // Emit the initializer function if necessary.
3979   if (NeedsGlobalCtor || NeedsGlobalDtor)
3980     EmitCXXGlobalVarDeclInitFunc(D, GV, NeedsGlobalCtor);
3981 
3982   SanitizerMD->reportGlobalToASan(GV, *D, NeedsGlobalCtor);
3983 
3984   // Emit global variable debug information.
3985   if (CGDebugInfo *DI = getModuleDebugInfo())
3986     if (getCodeGenOpts().getDebugInfo() >= codegenoptions::LimitedDebugInfo)
3987       DI->EmitGlobalVariable(GV, D);
3988 }
3989 
3990 static bool isVarDeclStrongDefinition(const ASTContext &Context,
3991                                       CodeGenModule &CGM, const VarDecl *D,
3992                                       bool NoCommon) {
3993   // Don't give variables common linkage if -fno-common was specified unless it
3994   // was overridden by a NoCommon attribute.
3995   if ((NoCommon || D->hasAttr<NoCommonAttr>()) && !D->hasAttr<CommonAttr>())
3996     return true;
3997 
3998   // C11 6.9.2/2:
3999   //   A declaration of an identifier for an object that has file scope without
4000   //   an initializer, and without a storage-class specifier or with the
4001   //   storage-class specifier static, constitutes a tentative definition.
4002   if (D->getInit() || D->hasExternalStorage())
4003     return true;
4004 
4005   // A variable cannot be both common and exist in a section.
4006   if (D->hasAttr<SectionAttr>())
4007     return true;
4008 
4009   // A variable cannot be both common and exist in a section.
4010   // We don't try to determine which is the right section in the front-end.
4011   // If no specialized section name is applicable, it will resort to default.
4012   if (D->hasAttr<PragmaClangBSSSectionAttr>() ||
4013       D->hasAttr<PragmaClangDataSectionAttr>() ||
4014       D->hasAttr<PragmaClangRodataSectionAttr>())
4015     return true;
4016 
4017   // Thread local vars aren't considered common linkage.
4018   if (D->getTLSKind())
4019     return true;
4020 
4021   // Tentative definitions marked with WeakImportAttr are true definitions.
4022   if (D->hasAttr<WeakImportAttr>())
4023     return true;
4024 
4025   // A variable cannot be both common and exist in a comdat.
4026   if (shouldBeInCOMDAT(CGM, *D))
4027     return true;
4028 
4029   // Declarations with a required alignment do not have common linkage in MSVC
4030   // mode.
4031   if (Context.getTargetInfo().getCXXABI().isMicrosoft()) {
4032     if (D->hasAttr<AlignedAttr>())
4033       return true;
4034     QualType VarType = D->getType();
4035     if (Context.isAlignmentRequired(VarType))
4036       return true;
4037 
4038     if (const auto *RT = VarType->getAs<RecordType>()) {
4039       const RecordDecl *RD = RT->getDecl();
4040       for (const FieldDecl *FD : RD->fields()) {
4041         if (FD->isBitField())
4042           continue;
4043         if (FD->hasAttr<AlignedAttr>())
4044           return true;
4045         if (Context.isAlignmentRequired(FD->getType()))
4046           return true;
4047       }
4048     }
4049   }
4050 
4051   // Microsoft's link.exe doesn't support alignments greater than 32 bytes for
4052   // common symbols, so symbols with greater alignment requirements cannot be
4053   // common.
4054   // Other COFF linkers (ld.bfd and LLD) support arbitrary power-of-two
4055   // alignments for common symbols via the aligncomm directive, so this
4056   // restriction only applies to MSVC environments.
4057   if (Context.getTargetInfo().getTriple().isKnownWindowsMSVCEnvironment() &&
4058       Context.getTypeAlignIfKnown(D->getType()) >
4059           Context.toBits(CharUnits::fromQuantity(32)))
4060     return true;
4061 
4062   return false;
4063 }
4064 
4065 llvm::GlobalValue::LinkageTypes CodeGenModule::getLLVMLinkageForDeclarator(
4066     const DeclaratorDecl *D, GVALinkage Linkage, bool IsConstantVariable) {
4067   if (Linkage == GVA_Internal)
4068     return llvm::Function::InternalLinkage;
4069 
4070   if (D->hasAttr<WeakAttr>()) {
4071     if (IsConstantVariable)
4072       return llvm::GlobalVariable::WeakODRLinkage;
4073     else
4074       return llvm::GlobalVariable::WeakAnyLinkage;
4075   }
4076 
4077   if (const auto *FD = D->getAsFunction())
4078     if (FD->isMultiVersion() && Linkage == GVA_AvailableExternally)
4079       return llvm::GlobalVariable::LinkOnceAnyLinkage;
4080 
4081   // We are guaranteed to have a strong definition somewhere else,
4082   // so we can use available_externally linkage.
4083   if (Linkage == GVA_AvailableExternally)
4084     return llvm::GlobalValue::AvailableExternallyLinkage;
4085 
4086   // Note that Apple's kernel linker doesn't support symbol
4087   // coalescing, so we need to avoid linkonce and weak linkages there.
4088   // Normally, this means we just map to internal, but for explicit
4089   // instantiations we'll map to external.
4090 
4091   // In C++, the compiler has to emit a definition in every translation unit
4092   // that references the function.  We should use linkonce_odr because
4093   // a) if all references in this translation unit are optimized away, we
4094   // don't need to codegen it.  b) if the function persists, it needs to be
4095   // merged with other definitions. c) C++ has the ODR, so we know the
4096   // definition is dependable.
4097   if (Linkage == GVA_DiscardableODR)
4098     return !Context.getLangOpts().AppleKext ? llvm::Function::LinkOnceODRLinkage
4099                                             : llvm::Function::InternalLinkage;
4100 
4101   // An explicit instantiation of a template has weak linkage, since
4102   // explicit instantiations can occur in multiple translation units
4103   // and must all be equivalent. However, we are not allowed to
4104   // throw away these explicit instantiations.
4105   //
4106   // We don't currently support CUDA device code spread out across multiple TUs,
4107   // so say that CUDA templates are either external (for kernels) or internal.
4108   // This lets llvm perform aggressive inter-procedural optimizations.
4109   if (Linkage == GVA_StrongODR) {
4110     if (Context.getLangOpts().AppleKext)
4111       return llvm::Function::ExternalLinkage;
4112     if (Context.getLangOpts().CUDA && Context.getLangOpts().CUDAIsDevice)
4113       return D->hasAttr<CUDAGlobalAttr>() ? llvm::Function::ExternalLinkage
4114                                           : llvm::Function::InternalLinkage;
4115     return llvm::Function::WeakODRLinkage;
4116   }
4117 
4118   // C++ doesn't have tentative definitions and thus cannot have common
4119   // linkage.
4120   if (!getLangOpts().CPlusPlus && isa<VarDecl>(D) &&
4121       !isVarDeclStrongDefinition(Context, *this, cast<VarDecl>(D),
4122                                  CodeGenOpts.NoCommon))
4123     return llvm::GlobalVariable::CommonLinkage;
4124 
4125   // selectany symbols are externally visible, so use weak instead of
4126   // linkonce.  MSVC optimizes away references to const selectany globals, so
4127   // all definitions should be the same and ODR linkage should be used.
4128   // http://msdn.microsoft.com/en-us/library/5tkz6s71.aspx
4129   if (D->hasAttr<SelectAnyAttr>())
4130     return llvm::GlobalVariable::WeakODRLinkage;
4131 
4132   // Otherwise, we have strong external linkage.
4133   assert(Linkage == GVA_StrongExternal);
4134   return llvm::GlobalVariable::ExternalLinkage;
4135 }
4136 
4137 llvm::GlobalValue::LinkageTypes CodeGenModule::getLLVMLinkageVarDefinition(
4138     const VarDecl *VD, bool IsConstant) {
4139   GVALinkage Linkage = getContext().GetGVALinkageForVariable(VD);
4140   return getLLVMLinkageForDeclarator(VD, Linkage, IsConstant);
4141 }
4142 
4143 /// Replace the uses of a function that was declared with a non-proto type.
4144 /// We want to silently drop extra arguments from call sites
4145 static void replaceUsesOfNonProtoConstant(llvm::Constant *old,
4146                                           llvm::Function *newFn) {
4147   // Fast path.
4148   if (old->use_empty()) return;
4149 
4150   llvm::Type *newRetTy = newFn->getReturnType();
4151   SmallVector<llvm::Value*, 4> newArgs;
4152   SmallVector<llvm::OperandBundleDef, 1> newBundles;
4153 
4154   for (llvm::Value::use_iterator ui = old->use_begin(), ue = old->use_end();
4155          ui != ue; ) {
4156     llvm::Value::use_iterator use = ui++; // Increment before the use is erased.
4157     llvm::User *user = use->getUser();
4158 
4159     // Recognize and replace uses of bitcasts.  Most calls to
4160     // unprototyped functions will use bitcasts.
4161     if (auto *bitcast = dyn_cast<llvm::ConstantExpr>(user)) {
4162       if (bitcast->getOpcode() == llvm::Instruction::BitCast)
4163         replaceUsesOfNonProtoConstant(bitcast, newFn);
4164       continue;
4165     }
4166 
4167     // Recognize calls to the function.
4168     llvm::CallBase *callSite = dyn_cast<llvm::CallBase>(user);
4169     if (!callSite) continue;
4170     if (!callSite->isCallee(&*use))
4171       continue;
4172 
4173     // If the return types don't match exactly, then we can't
4174     // transform this call unless it's dead.
4175     if (callSite->getType() != newRetTy && !callSite->use_empty())
4176       continue;
4177 
4178     // Get the call site's attribute list.
4179     SmallVector<llvm::AttributeSet, 8> newArgAttrs;
4180     llvm::AttributeList oldAttrs = callSite->getAttributes();
4181 
4182     // If the function was passed too few arguments, don't transform.
4183     unsigned newNumArgs = newFn->arg_size();
4184     if (callSite->arg_size() < newNumArgs)
4185       continue;
4186 
4187     // If extra arguments were passed, we silently drop them.
4188     // If any of the types mismatch, we don't transform.
4189     unsigned argNo = 0;
4190     bool dontTransform = false;
4191     for (llvm::Argument &A : newFn->args()) {
4192       if (callSite->getArgOperand(argNo)->getType() != A.getType()) {
4193         dontTransform = true;
4194         break;
4195       }
4196 
4197       // Add any parameter attributes.
4198       newArgAttrs.push_back(oldAttrs.getParamAttributes(argNo));
4199       argNo++;
4200     }
4201     if (dontTransform)
4202       continue;
4203 
4204     // Okay, we can transform this.  Create the new call instruction and copy
4205     // over the required information.
4206     newArgs.append(callSite->arg_begin(), callSite->arg_begin() + argNo);
4207 
4208     // Copy over any operand bundles.
4209     callSite->getOperandBundlesAsDefs(newBundles);
4210 
4211     llvm::CallBase *newCall;
4212     if (dyn_cast<llvm::CallInst>(callSite)) {
4213       newCall =
4214           llvm::CallInst::Create(newFn, newArgs, newBundles, "", callSite);
4215     } else {
4216       auto *oldInvoke = cast<llvm::InvokeInst>(callSite);
4217       newCall = llvm::InvokeInst::Create(newFn, oldInvoke->getNormalDest(),
4218                                          oldInvoke->getUnwindDest(), newArgs,
4219                                          newBundles, "", callSite);
4220     }
4221     newArgs.clear(); // for the next iteration
4222 
4223     if (!newCall->getType()->isVoidTy())
4224       newCall->takeName(callSite);
4225     newCall->setAttributes(llvm::AttributeList::get(
4226         newFn->getContext(), oldAttrs.getFnAttributes(),
4227         oldAttrs.getRetAttributes(), newArgAttrs));
4228     newCall->setCallingConv(callSite->getCallingConv());
4229 
4230     // Finally, remove the old call, replacing any uses with the new one.
4231     if (!callSite->use_empty())
4232       callSite->replaceAllUsesWith(newCall);
4233 
4234     // Copy debug location attached to CI.
4235     if (callSite->getDebugLoc())
4236       newCall->setDebugLoc(callSite->getDebugLoc());
4237 
4238     callSite->eraseFromParent();
4239   }
4240 }
4241 
4242 /// ReplaceUsesOfNonProtoTypeWithRealFunction - This function is called when we
4243 /// implement a function with no prototype, e.g. "int foo() {}".  If there are
4244 /// existing call uses of the old function in the module, this adjusts them to
4245 /// call the new function directly.
4246 ///
4247 /// This is not just a cleanup: the always_inline pass requires direct calls to
4248 /// functions to be able to inline them.  If there is a bitcast in the way, it
4249 /// won't inline them.  Instcombine normally deletes these calls, but it isn't
4250 /// run at -O0.
4251 static void ReplaceUsesOfNonProtoTypeWithRealFunction(llvm::GlobalValue *Old,
4252                                                       llvm::Function *NewFn) {
4253   // If we're redefining a global as a function, don't transform it.
4254   if (!isa<llvm::Function>(Old)) return;
4255 
4256   replaceUsesOfNonProtoConstant(Old, NewFn);
4257 }
4258 
4259 void CodeGenModule::HandleCXXStaticMemberVarInstantiation(VarDecl *VD) {
4260   auto DK = VD->isThisDeclarationADefinition();
4261   if (DK == VarDecl::Definition && VD->hasAttr<DLLImportAttr>())
4262     return;
4263 
4264   TemplateSpecializationKind TSK = VD->getTemplateSpecializationKind();
4265   // If we have a definition, this might be a deferred decl. If the
4266   // instantiation is explicit, make sure we emit it at the end.
4267   if (VD->getDefinition() && TSK == TSK_ExplicitInstantiationDefinition)
4268     GetAddrOfGlobalVar(VD);
4269 
4270   EmitTopLevelDecl(VD);
4271 }
4272 
4273 void CodeGenModule::EmitGlobalFunctionDefinition(GlobalDecl GD,
4274                                                  llvm::GlobalValue *GV) {
4275   const auto *D = cast<FunctionDecl>(GD.getDecl());
4276 
4277   // Compute the function info and LLVM type.
4278   const CGFunctionInfo &FI = getTypes().arrangeGlobalDeclaration(GD);
4279   llvm::FunctionType *Ty = getTypes().GetFunctionType(FI);
4280 
4281   // Get or create the prototype for the function.
4282   if (!GV || (GV->getType()->getElementType() != Ty))
4283     GV = cast<llvm::GlobalValue>(GetAddrOfFunction(GD, Ty, /*ForVTable=*/false,
4284                                                    /*DontDefer=*/true,
4285                                                    ForDefinition));
4286 
4287   // Already emitted.
4288   if (!GV->isDeclaration())
4289     return;
4290 
4291   // We need to set linkage and visibility on the function before
4292   // generating code for it because various parts of IR generation
4293   // want to propagate this information down (e.g. to local static
4294   // declarations).
4295   auto *Fn = cast<llvm::Function>(GV);
4296   setFunctionLinkage(GD, Fn);
4297 
4298   // FIXME: this is redundant with part of setFunctionDefinitionAttributes
4299   setGVProperties(Fn, GD);
4300 
4301   MaybeHandleStaticInExternC(D, Fn);
4302 
4303 
4304   maybeSetTrivialComdat(*D, *Fn);
4305 
4306   CodeGenFunction(*this).GenerateCode(D, Fn, FI);
4307 
4308   setNonAliasAttributes(GD, Fn);
4309   SetLLVMFunctionAttributesForDefinition(D, Fn);
4310 
4311   if (const ConstructorAttr *CA = D->getAttr<ConstructorAttr>())
4312     AddGlobalCtor(Fn, CA->getPriority());
4313   if (const DestructorAttr *DA = D->getAttr<DestructorAttr>())
4314     AddGlobalDtor(Fn, DA->getPriority());
4315   if (D->hasAttr<AnnotateAttr>())
4316     AddGlobalAnnotations(D, Fn);
4317 }
4318 
4319 void CodeGenModule::EmitAliasDefinition(GlobalDecl GD) {
4320   const auto *D = cast<ValueDecl>(GD.getDecl());
4321   const AliasAttr *AA = D->getAttr<AliasAttr>();
4322   assert(AA && "Not an alias?");
4323 
4324   StringRef MangledName = getMangledName(GD);
4325 
4326   if (AA->getAliasee() == MangledName) {
4327     Diags.Report(AA->getLocation(), diag::err_cyclic_alias) << 0;
4328     return;
4329   }
4330 
4331   // If there is a definition in the module, then it wins over the alias.
4332   // This is dubious, but allow it to be safe.  Just ignore the alias.
4333   llvm::GlobalValue *Entry = GetGlobalValue(MangledName);
4334   if (Entry && !Entry->isDeclaration())
4335     return;
4336 
4337   Aliases.push_back(GD);
4338 
4339   llvm::Type *DeclTy = getTypes().ConvertTypeForMem(D->getType());
4340 
4341   // Create a reference to the named value.  This ensures that it is emitted
4342   // if a deferred decl.
4343   llvm::Constant *Aliasee;
4344   if (isa<llvm::FunctionType>(DeclTy))
4345     Aliasee = GetOrCreateLLVMFunction(AA->getAliasee(), DeclTy, GD,
4346                                       /*ForVTable=*/false);
4347   else
4348     Aliasee = GetOrCreateLLVMGlobal(AA->getAliasee(),
4349                                     llvm::PointerType::getUnqual(DeclTy),
4350                                     /*D=*/nullptr);
4351 
4352   // Create the new alias itself, but don't set a name yet.
4353   auto *GA = llvm::GlobalAlias::create(
4354       DeclTy, 0, llvm::Function::ExternalLinkage, "", Aliasee, &getModule());
4355 
4356   if (Entry) {
4357     if (GA->getAliasee() == Entry) {
4358       Diags.Report(AA->getLocation(), diag::err_cyclic_alias) << 0;
4359       return;
4360     }
4361 
4362     assert(Entry->isDeclaration());
4363 
4364     // If there is a declaration in the module, then we had an extern followed
4365     // by the alias, as in:
4366     //   extern int test6();
4367     //   ...
4368     //   int test6() __attribute__((alias("test7")));
4369     //
4370     // Remove it and replace uses of it with the alias.
4371     GA->takeName(Entry);
4372 
4373     Entry->replaceAllUsesWith(llvm::ConstantExpr::getBitCast(GA,
4374                                                           Entry->getType()));
4375     Entry->eraseFromParent();
4376   } else {
4377     GA->setName(MangledName);
4378   }
4379 
4380   // Set attributes which are particular to an alias; this is a
4381   // specialization of the attributes which may be set on a global
4382   // variable/function.
4383   if (D->hasAttr<WeakAttr>() || D->hasAttr<WeakRefAttr>() ||
4384       D->isWeakImported()) {
4385     GA->setLinkage(llvm::Function::WeakAnyLinkage);
4386   }
4387 
4388   if (const auto *VD = dyn_cast<VarDecl>(D))
4389     if (VD->getTLSKind())
4390       setTLSMode(GA, *VD);
4391 
4392   SetCommonAttributes(GD, GA);
4393 }
4394 
4395 void CodeGenModule::emitIFuncDefinition(GlobalDecl GD) {
4396   const auto *D = cast<ValueDecl>(GD.getDecl());
4397   const IFuncAttr *IFA = D->getAttr<IFuncAttr>();
4398   assert(IFA && "Not an ifunc?");
4399 
4400   StringRef MangledName = getMangledName(GD);
4401 
4402   if (IFA->getResolver() == MangledName) {
4403     Diags.Report(IFA->getLocation(), diag::err_cyclic_alias) << 1;
4404     return;
4405   }
4406 
4407   // Report an error if some definition overrides ifunc.
4408   llvm::GlobalValue *Entry = GetGlobalValue(MangledName);
4409   if (Entry && !Entry->isDeclaration()) {
4410     GlobalDecl OtherGD;
4411     if (lookupRepresentativeDecl(MangledName, OtherGD) &&
4412         DiagnosedConflictingDefinitions.insert(GD).second) {
4413       Diags.Report(D->getLocation(), diag::err_duplicate_mangled_name)
4414           << MangledName;
4415       Diags.Report(OtherGD.getDecl()->getLocation(),
4416                    diag::note_previous_definition);
4417     }
4418     return;
4419   }
4420 
4421   Aliases.push_back(GD);
4422 
4423   llvm::Type *DeclTy = getTypes().ConvertTypeForMem(D->getType());
4424   llvm::Constant *Resolver =
4425       GetOrCreateLLVMFunction(IFA->getResolver(), DeclTy, GD,
4426                               /*ForVTable=*/false);
4427   llvm::GlobalIFunc *GIF =
4428       llvm::GlobalIFunc::create(DeclTy, 0, llvm::Function::ExternalLinkage,
4429                                 "", Resolver, &getModule());
4430   if (Entry) {
4431     if (GIF->getResolver() == Entry) {
4432       Diags.Report(IFA->getLocation(), diag::err_cyclic_alias) << 1;
4433       return;
4434     }
4435     assert(Entry->isDeclaration());
4436 
4437     // If there is a declaration in the module, then we had an extern followed
4438     // by the ifunc, as in:
4439     //   extern int test();
4440     //   ...
4441     //   int test() __attribute__((ifunc("resolver")));
4442     //
4443     // Remove it and replace uses of it with the ifunc.
4444     GIF->takeName(Entry);
4445 
4446     Entry->replaceAllUsesWith(llvm::ConstantExpr::getBitCast(GIF,
4447                                                           Entry->getType()));
4448     Entry->eraseFromParent();
4449   } else
4450     GIF->setName(MangledName);
4451 
4452   SetCommonAttributes(GD, GIF);
4453 }
4454 
4455 llvm::Function *CodeGenModule::getIntrinsic(unsigned IID,
4456                                             ArrayRef<llvm::Type*> Tys) {
4457   return llvm::Intrinsic::getDeclaration(&getModule(), (llvm::Intrinsic::ID)IID,
4458                                          Tys);
4459 }
4460 
4461 static llvm::StringMapEntry<llvm::GlobalVariable *> &
4462 GetConstantCFStringEntry(llvm::StringMap<llvm::GlobalVariable *> &Map,
4463                          const StringLiteral *Literal, bool TargetIsLSB,
4464                          bool &IsUTF16, unsigned &StringLength) {
4465   StringRef String = Literal->getString();
4466   unsigned NumBytes = String.size();
4467 
4468   // Check for simple case.
4469   if (!Literal->containsNonAsciiOrNull()) {
4470     StringLength = NumBytes;
4471     return *Map.insert(std::make_pair(String, nullptr)).first;
4472   }
4473 
4474   // Otherwise, convert the UTF8 literals into a string of shorts.
4475   IsUTF16 = true;
4476 
4477   SmallVector<llvm::UTF16, 128> ToBuf(NumBytes + 1); // +1 for ending nulls.
4478   const llvm::UTF8 *FromPtr = (const llvm::UTF8 *)String.data();
4479   llvm::UTF16 *ToPtr = &ToBuf[0];
4480 
4481   (void)llvm::ConvertUTF8toUTF16(&FromPtr, FromPtr + NumBytes, &ToPtr,
4482                                  ToPtr + NumBytes, llvm::strictConversion);
4483 
4484   // ConvertUTF8toUTF16 returns the length in ToPtr.
4485   StringLength = ToPtr - &ToBuf[0];
4486 
4487   // Add an explicit null.
4488   *ToPtr = 0;
4489   return *Map.insert(std::make_pair(
4490                          StringRef(reinterpret_cast<const char *>(ToBuf.data()),
4491                                    (StringLength + 1) * 2),
4492                          nullptr)).first;
4493 }
4494 
4495 ConstantAddress
4496 CodeGenModule::GetAddrOfConstantCFString(const StringLiteral *Literal) {
4497   unsigned StringLength = 0;
4498   bool isUTF16 = false;
4499   llvm::StringMapEntry<llvm::GlobalVariable *> &Entry =
4500       GetConstantCFStringEntry(CFConstantStringMap, Literal,
4501                                getDataLayout().isLittleEndian(), isUTF16,
4502                                StringLength);
4503 
4504   if (auto *C = Entry.second)
4505     return ConstantAddress(C, CharUnits::fromQuantity(C->getAlignment()));
4506 
4507   llvm::Constant *Zero = llvm::Constant::getNullValue(Int32Ty);
4508   llvm::Constant *Zeros[] = { Zero, Zero };
4509 
4510   const ASTContext &Context = getContext();
4511   const llvm::Triple &Triple = getTriple();
4512 
4513   const auto CFRuntime = getLangOpts().CFRuntime;
4514   const bool IsSwiftABI =
4515       static_cast<unsigned>(CFRuntime) >=
4516       static_cast<unsigned>(LangOptions::CoreFoundationABI::Swift);
4517   const bool IsSwift4_1 = CFRuntime == LangOptions::CoreFoundationABI::Swift4_1;
4518 
4519   // If we don't already have it, get __CFConstantStringClassReference.
4520   if (!CFConstantStringClassRef) {
4521     const char *CFConstantStringClassName = "__CFConstantStringClassReference";
4522     llvm::Type *Ty = getTypes().ConvertType(getContext().IntTy);
4523     Ty = llvm::ArrayType::get(Ty, 0);
4524 
4525     switch (CFRuntime) {
4526     default: break;
4527     case LangOptions::CoreFoundationABI::Swift: LLVM_FALLTHROUGH;
4528     case LangOptions::CoreFoundationABI::Swift5_0:
4529       CFConstantStringClassName =
4530           Triple.isOSDarwin() ? "$s15SwiftFoundation19_NSCFConstantStringCN"
4531                               : "$s10Foundation19_NSCFConstantStringCN";
4532       Ty = IntPtrTy;
4533       break;
4534     case LangOptions::CoreFoundationABI::Swift4_2:
4535       CFConstantStringClassName =
4536           Triple.isOSDarwin() ? "$S15SwiftFoundation19_NSCFConstantStringCN"
4537                               : "$S10Foundation19_NSCFConstantStringCN";
4538       Ty = IntPtrTy;
4539       break;
4540     case LangOptions::CoreFoundationABI::Swift4_1:
4541       CFConstantStringClassName =
4542           Triple.isOSDarwin() ? "__T015SwiftFoundation19_NSCFConstantStringCN"
4543                               : "__T010Foundation19_NSCFConstantStringCN";
4544       Ty = IntPtrTy;
4545       break;
4546     }
4547 
4548     llvm::Constant *C = CreateRuntimeVariable(Ty, CFConstantStringClassName);
4549 
4550     if (Triple.isOSBinFormatELF() || Triple.isOSBinFormatCOFF()) {
4551       llvm::GlobalValue *GV = nullptr;
4552 
4553       if ((GV = dyn_cast<llvm::GlobalValue>(C))) {
4554         IdentifierInfo &II = Context.Idents.get(GV->getName());
4555         TranslationUnitDecl *TUDecl = Context.getTranslationUnitDecl();
4556         DeclContext *DC = TranslationUnitDecl::castToDeclContext(TUDecl);
4557 
4558         const VarDecl *VD = nullptr;
4559         for (const auto &Result : DC->lookup(&II))
4560           if ((VD = dyn_cast<VarDecl>(Result)))
4561             break;
4562 
4563         if (Triple.isOSBinFormatELF()) {
4564           if (!VD)
4565             GV->setLinkage(llvm::GlobalValue::ExternalLinkage);
4566         } else {
4567           GV->setLinkage(llvm::GlobalValue::ExternalLinkage);
4568           if (!VD || !VD->hasAttr<DLLExportAttr>())
4569             GV->setDLLStorageClass(llvm::GlobalValue::DLLImportStorageClass);
4570           else
4571             GV->setDLLStorageClass(llvm::GlobalValue::DLLExportStorageClass);
4572         }
4573 
4574         setDSOLocal(GV);
4575       }
4576     }
4577 
4578     // Decay array -> ptr
4579     CFConstantStringClassRef =
4580         IsSwiftABI ? llvm::ConstantExpr::getPtrToInt(C, Ty)
4581                    : llvm::ConstantExpr::getGetElementPtr(Ty, C, Zeros);
4582   }
4583 
4584   QualType CFTy = Context.getCFConstantStringType();
4585 
4586   auto *STy = cast<llvm::StructType>(getTypes().ConvertType(CFTy));
4587 
4588   ConstantInitBuilder Builder(*this);
4589   auto Fields = Builder.beginStruct(STy);
4590 
4591   // Class pointer.
4592   Fields.add(cast<llvm::ConstantExpr>(CFConstantStringClassRef));
4593 
4594   // Flags.
4595   if (IsSwiftABI) {
4596     Fields.addInt(IntPtrTy, IsSwift4_1 ? 0x05 : 0x01);
4597     Fields.addInt(Int64Ty, isUTF16 ? 0x07d0 : 0x07c8);
4598   } else {
4599     Fields.addInt(IntTy, isUTF16 ? 0x07d0 : 0x07C8);
4600   }
4601 
4602   // String pointer.
4603   llvm::Constant *C = nullptr;
4604   if (isUTF16) {
4605     auto Arr = llvm::makeArrayRef(
4606         reinterpret_cast<uint16_t *>(const_cast<char *>(Entry.first().data())),
4607         Entry.first().size() / 2);
4608     C = llvm::ConstantDataArray::get(VMContext, Arr);
4609   } else {
4610     C = llvm::ConstantDataArray::getString(VMContext, Entry.first());
4611   }
4612 
4613   // Note: -fwritable-strings doesn't make the backing store strings of
4614   // CFStrings writable. (See <rdar://problem/10657500>)
4615   auto *GV =
4616       new llvm::GlobalVariable(getModule(), C->getType(), /*isConstant=*/true,
4617                                llvm::GlobalValue::PrivateLinkage, C, ".str");
4618   GV->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global);
4619   // Don't enforce the target's minimum global alignment, since the only use
4620   // of the string is via this class initializer.
4621   CharUnits Align = isUTF16 ? Context.getTypeAlignInChars(Context.ShortTy)
4622                             : Context.getTypeAlignInChars(Context.CharTy);
4623   GV->setAlignment(Align.getQuantity());
4624 
4625   // FIXME: We set the section explicitly to avoid a bug in ld64 224.1.
4626   // Without it LLVM can merge the string with a non unnamed_addr one during
4627   // LTO.  Doing that changes the section it ends in, which surprises ld64.
4628   if (Triple.isOSBinFormatMachO())
4629     GV->setSection(isUTF16 ? "__TEXT,__ustring"
4630                            : "__TEXT,__cstring,cstring_literals");
4631   // Make sure the literal ends up in .rodata to allow for safe ICF and for
4632   // the static linker to adjust permissions to read-only later on.
4633   else if (Triple.isOSBinFormatELF())
4634     GV->setSection(".rodata");
4635 
4636   // String.
4637   llvm::Constant *Str =
4638       llvm::ConstantExpr::getGetElementPtr(GV->getValueType(), GV, Zeros);
4639 
4640   if (isUTF16)
4641     // Cast the UTF16 string to the correct type.
4642     Str = llvm::ConstantExpr::getBitCast(Str, Int8PtrTy);
4643   Fields.add(Str);
4644 
4645   // String length.
4646   llvm::IntegerType *LengthTy =
4647       llvm::IntegerType::get(getModule().getContext(),
4648                              Context.getTargetInfo().getLongWidth());
4649   if (IsSwiftABI) {
4650     if (CFRuntime == LangOptions::CoreFoundationABI::Swift4_1 ||
4651         CFRuntime == LangOptions::CoreFoundationABI::Swift4_2)
4652       LengthTy = Int32Ty;
4653     else
4654       LengthTy = IntPtrTy;
4655   }
4656   Fields.addInt(LengthTy, StringLength);
4657 
4658   CharUnits Alignment = getPointerAlign();
4659 
4660   // The struct.
4661   GV = Fields.finishAndCreateGlobal("_unnamed_cfstring_", Alignment,
4662                                     /*isConstant=*/false,
4663                                     llvm::GlobalVariable::PrivateLinkage);
4664   GV->addAttribute("objc_arc_inert");
4665   switch (Triple.getObjectFormat()) {
4666   case llvm::Triple::UnknownObjectFormat:
4667     llvm_unreachable("unknown file format");
4668   case llvm::Triple::XCOFF:
4669     llvm_unreachable("XCOFF is not yet implemented");
4670   case llvm::Triple::COFF:
4671   case llvm::Triple::ELF:
4672   case llvm::Triple::Wasm:
4673     GV->setSection("cfstring");
4674     break;
4675   case llvm::Triple::MachO:
4676     GV->setSection("__DATA,__cfstring");
4677     break;
4678   }
4679   Entry.second = GV;
4680 
4681   return ConstantAddress(GV, Alignment);
4682 }
4683 
4684 bool CodeGenModule::getExpressionLocationsEnabled() const {
4685   return !CodeGenOpts.EmitCodeView || CodeGenOpts.DebugColumnInfo;
4686 }
4687 
4688 QualType CodeGenModule::getObjCFastEnumerationStateType() {
4689   if (ObjCFastEnumerationStateType.isNull()) {
4690     RecordDecl *D = Context.buildImplicitRecord("__objcFastEnumerationState");
4691     D->startDefinition();
4692 
4693     QualType FieldTypes[] = {
4694       Context.UnsignedLongTy,
4695       Context.getPointerType(Context.getObjCIdType()),
4696       Context.getPointerType(Context.UnsignedLongTy),
4697       Context.getConstantArrayType(Context.UnsignedLongTy,
4698                            llvm::APInt(32, 5), ArrayType::Normal, 0)
4699     };
4700 
4701     for (size_t i = 0; i < 4; ++i) {
4702       FieldDecl *Field = FieldDecl::Create(Context,
4703                                            D,
4704                                            SourceLocation(),
4705                                            SourceLocation(), nullptr,
4706                                            FieldTypes[i], /*TInfo=*/nullptr,
4707                                            /*BitWidth=*/nullptr,
4708                                            /*Mutable=*/false,
4709                                            ICIS_NoInit);
4710       Field->setAccess(AS_public);
4711       D->addDecl(Field);
4712     }
4713 
4714     D->completeDefinition();
4715     ObjCFastEnumerationStateType = Context.getTagDeclType(D);
4716   }
4717 
4718   return ObjCFastEnumerationStateType;
4719 }
4720 
4721 llvm::Constant *
4722 CodeGenModule::GetConstantArrayFromStringLiteral(const StringLiteral *E) {
4723   assert(!E->getType()->isPointerType() && "Strings are always arrays");
4724 
4725   // Don't emit it as the address of the string, emit the string data itself
4726   // as an inline array.
4727   if (E->getCharByteWidth() == 1) {
4728     SmallString<64> Str(E->getString());
4729 
4730     // Resize the string to the right size, which is indicated by its type.
4731     const ConstantArrayType *CAT = Context.getAsConstantArrayType(E->getType());
4732     Str.resize(CAT->getSize().getZExtValue());
4733     return llvm::ConstantDataArray::getString(VMContext, Str, false);
4734   }
4735 
4736   auto *AType = cast<llvm::ArrayType>(getTypes().ConvertType(E->getType()));
4737   llvm::Type *ElemTy = AType->getElementType();
4738   unsigned NumElements = AType->getNumElements();
4739 
4740   // Wide strings have either 2-byte or 4-byte elements.
4741   if (ElemTy->getPrimitiveSizeInBits() == 16) {
4742     SmallVector<uint16_t, 32> Elements;
4743     Elements.reserve(NumElements);
4744 
4745     for(unsigned i = 0, e = E->getLength(); i != e; ++i)
4746       Elements.push_back(E->getCodeUnit(i));
4747     Elements.resize(NumElements);
4748     return llvm::ConstantDataArray::get(VMContext, Elements);
4749   }
4750 
4751   assert(ElemTy->getPrimitiveSizeInBits() == 32);
4752   SmallVector<uint32_t, 32> Elements;
4753   Elements.reserve(NumElements);
4754 
4755   for(unsigned i = 0, e = E->getLength(); i != e; ++i)
4756     Elements.push_back(E->getCodeUnit(i));
4757   Elements.resize(NumElements);
4758   return llvm::ConstantDataArray::get(VMContext, Elements);
4759 }
4760 
4761 static llvm::GlobalVariable *
4762 GenerateStringLiteral(llvm::Constant *C, llvm::GlobalValue::LinkageTypes LT,
4763                       CodeGenModule &CGM, StringRef GlobalName,
4764                       CharUnits Alignment) {
4765   unsigned AddrSpace = CGM.getContext().getTargetAddressSpace(
4766       CGM.getStringLiteralAddressSpace());
4767 
4768   llvm::Module &M = CGM.getModule();
4769   // Create a global variable for this string
4770   auto *GV = new llvm::GlobalVariable(
4771       M, C->getType(), !CGM.getLangOpts().WritableStrings, LT, C, GlobalName,
4772       nullptr, llvm::GlobalVariable::NotThreadLocal, AddrSpace);
4773   GV->setAlignment(Alignment.getQuantity());
4774   GV->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global);
4775   if (GV->isWeakForLinker()) {
4776     assert(CGM.supportsCOMDAT() && "Only COFF uses weak string literals");
4777     GV->setComdat(M.getOrInsertComdat(GV->getName()));
4778   }
4779   CGM.setDSOLocal(GV);
4780 
4781   return GV;
4782 }
4783 
4784 /// GetAddrOfConstantStringFromLiteral - Return a pointer to a
4785 /// constant array for the given string literal.
4786 ConstantAddress
4787 CodeGenModule::GetAddrOfConstantStringFromLiteral(const StringLiteral *S,
4788                                                   StringRef Name) {
4789   CharUnits Alignment = getContext().getAlignOfGlobalVarInChars(S->getType());
4790 
4791   llvm::Constant *C = GetConstantArrayFromStringLiteral(S);
4792   llvm::GlobalVariable **Entry = nullptr;
4793   if (!LangOpts.WritableStrings) {
4794     Entry = &ConstantStringMap[C];
4795     if (auto GV = *Entry) {
4796       if (Alignment.getQuantity() > GV->getAlignment())
4797         GV->setAlignment(Alignment.getQuantity());
4798       return ConstantAddress(castStringLiteralToDefaultAddressSpace(*this, GV),
4799                              Alignment);
4800     }
4801   }
4802 
4803   SmallString<256> MangledNameBuffer;
4804   StringRef GlobalVariableName;
4805   llvm::GlobalValue::LinkageTypes LT;
4806 
4807   // Mangle the string literal if that's how the ABI merges duplicate strings.
4808   // Don't do it if they are writable, since we don't want writes in one TU to
4809   // affect strings in another.
4810   if (getCXXABI().getMangleContext().shouldMangleStringLiteral(S) &&
4811       !LangOpts.WritableStrings) {
4812     llvm::raw_svector_ostream Out(MangledNameBuffer);
4813     getCXXABI().getMangleContext().mangleStringLiteral(S, Out);
4814     LT = llvm::GlobalValue::LinkOnceODRLinkage;
4815     GlobalVariableName = MangledNameBuffer;
4816   } else {
4817     LT = llvm::GlobalValue::PrivateLinkage;
4818     GlobalVariableName = Name;
4819   }
4820 
4821   auto GV = GenerateStringLiteral(C, LT, *this, GlobalVariableName, Alignment);
4822   if (Entry)
4823     *Entry = GV;
4824 
4825   SanitizerMD->reportGlobalToASan(GV, S->getStrTokenLoc(0), "<string literal>",
4826                                   QualType());
4827 
4828   return ConstantAddress(castStringLiteralToDefaultAddressSpace(*this, GV),
4829                          Alignment);
4830 }
4831 
4832 /// GetAddrOfConstantStringFromObjCEncode - Return a pointer to a constant
4833 /// array for the given ObjCEncodeExpr node.
4834 ConstantAddress
4835 CodeGenModule::GetAddrOfConstantStringFromObjCEncode(const ObjCEncodeExpr *E) {
4836   std::string Str;
4837   getContext().getObjCEncodingForType(E->getEncodedType(), Str);
4838 
4839   return GetAddrOfConstantCString(Str);
4840 }
4841 
4842 /// GetAddrOfConstantCString - Returns a pointer to a character array containing
4843 /// the literal and a terminating '\0' character.
4844 /// The result has pointer to array type.
4845 ConstantAddress CodeGenModule::GetAddrOfConstantCString(
4846     const std::string &Str, const char *GlobalName) {
4847   StringRef StrWithNull(Str.c_str(), Str.size() + 1);
4848   CharUnits Alignment =
4849     getContext().getAlignOfGlobalVarInChars(getContext().CharTy);
4850 
4851   llvm::Constant *C =
4852       llvm::ConstantDataArray::getString(getLLVMContext(), StrWithNull, false);
4853 
4854   // Don't share any string literals if strings aren't constant.
4855   llvm::GlobalVariable **Entry = nullptr;
4856   if (!LangOpts.WritableStrings) {
4857     Entry = &ConstantStringMap[C];
4858     if (auto GV = *Entry) {
4859       if (Alignment.getQuantity() > GV->getAlignment())
4860         GV->setAlignment(Alignment.getQuantity());
4861       return ConstantAddress(castStringLiteralToDefaultAddressSpace(*this, GV),
4862                              Alignment);
4863     }
4864   }
4865 
4866   // Get the default prefix if a name wasn't specified.
4867   if (!GlobalName)
4868     GlobalName = ".str";
4869   // Create a global variable for this.
4870   auto GV = GenerateStringLiteral(C, llvm::GlobalValue::PrivateLinkage, *this,
4871                                   GlobalName, Alignment);
4872   if (Entry)
4873     *Entry = GV;
4874 
4875   return ConstantAddress(castStringLiteralToDefaultAddressSpace(*this, GV),
4876                          Alignment);
4877 }
4878 
4879 ConstantAddress CodeGenModule::GetAddrOfGlobalTemporary(
4880     const MaterializeTemporaryExpr *E, const Expr *Init) {
4881   assert((E->getStorageDuration() == SD_Static ||
4882           E->getStorageDuration() == SD_Thread) && "not a global temporary");
4883   const auto *VD = cast<VarDecl>(E->getExtendingDecl());
4884 
4885   // If we're not materializing a subobject of the temporary, keep the
4886   // cv-qualifiers from the type of the MaterializeTemporaryExpr.
4887   QualType MaterializedType = Init->getType();
4888   if (Init == E->GetTemporaryExpr())
4889     MaterializedType = E->getType();
4890 
4891   CharUnits Align = getContext().getTypeAlignInChars(MaterializedType);
4892 
4893   if (llvm::Constant *Slot = MaterializedGlobalTemporaryMap[E])
4894     return ConstantAddress(Slot, Align);
4895 
4896   // FIXME: If an externally-visible declaration extends multiple temporaries,
4897   // we need to give each temporary the same name in every translation unit (and
4898   // we also need to make the temporaries externally-visible).
4899   SmallString<256> Name;
4900   llvm::raw_svector_ostream Out(Name);
4901   getCXXABI().getMangleContext().mangleReferenceTemporary(
4902       VD, E->getManglingNumber(), Out);
4903 
4904   APValue *Value = nullptr;
4905   if (E->getStorageDuration() == SD_Static) {
4906     // We might have a cached constant initializer for this temporary. Note
4907     // that this might have a different value from the value computed by
4908     // evaluating the initializer if the surrounding constant expression
4909     // modifies the temporary.
4910     Value = getContext().getMaterializedTemporaryValue(E, false);
4911     if (Value && Value->isAbsent())
4912       Value = nullptr;
4913   }
4914 
4915   // Try evaluating it now, it might have a constant initializer.
4916   Expr::EvalResult EvalResult;
4917   if (!Value && Init->EvaluateAsRValue(EvalResult, getContext()) &&
4918       !EvalResult.hasSideEffects())
4919     Value = &EvalResult.Val;
4920 
4921   LangAS AddrSpace =
4922       VD ? GetGlobalVarAddressSpace(VD) : MaterializedType.getAddressSpace();
4923 
4924   Optional<ConstantEmitter> emitter;
4925   llvm::Constant *InitialValue = nullptr;
4926   bool Constant = false;
4927   llvm::Type *Type;
4928   if (Value) {
4929     // The temporary has a constant initializer, use it.
4930     emitter.emplace(*this);
4931     InitialValue = emitter->emitForInitializer(*Value, AddrSpace,
4932                                                MaterializedType);
4933     Constant = isTypeConstant(MaterializedType, /*ExcludeCtor*/Value);
4934     Type = InitialValue->getType();
4935   } else {
4936     // No initializer, the initialization will be provided when we
4937     // initialize the declaration which performed lifetime extension.
4938     Type = getTypes().ConvertTypeForMem(MaterializedType);
4939   }
4940 
4941   // Create a global variable for this lifetime-extended temporary.
4942   llvm::GlobalValue::LinkageTypes Linkage =
4943       getLLVMLinkageVarDefinition(VD, Constant);
4944   if (Linkage == llvm::GlobalVariable::ExternalLinkage) {
4945     const VarDecl *InitVD;
4946     if (VD->isStaticDataMember() && VD->getAnyInitializer(InitVD) &&
4947         isa<CXXRecordDecl>(InitVD->getLexicalDeclContext())) {
4948       // Temporaries defined inside a class get linkonce_odr linkage because the
4949       // class can be defined in multiple translation units.
4950       Linkage = llvm::GlobalVariable::LinkOnceODRLinkage;
4951     } else {
4952       // There is no need for this temporary to have external linkage if the
4953       // VarDecl has external linkage.
4954       Linkage = llvm::GlobalVariable::InternalLinkage;
4955     }
4956   }
4957   auto TargetAS = getContext().getTargetAddressSpace(AddrSpace);
4958   auto *GV = new llvm::GlobalVariable(
4959       getModule(), Type, Constant, Linkage, InitialValue, Name.c_str(),
4960       /*InsertBefore=*/nullptr, llvm::GlobalVariable::NotThreadLocal, TargetAS);
4961   if (emitter) emitter->finalize(GV);
4962   setGVProperties(GV, VD);
4963   GV->setAlignment(Align.getQuantity());
4964   if (supportsCOMDAT() && GV->isWeakForLinker())
4965     GV->setComdat(TheModule.getOrInsertComdat(GV->getName()));
4966   if (VD->getTLSKind())
4967     setTLSMode(GV, *VD);
4968   llvm::Constant *CV = GV;
4969   if (AddrSpace != LangAS::Default)
4970     CV = getTargetCodeGenInfo().performAddrSpaceCast(
4971         *this, GV, AddrSpace, LangAS::Default,
4972         Type->getPointerTo(
4973             getContext().getTargetAddressSpace(LangAS::Default)));
4974   MaterializedGlobalTemporaryMap[E] = CV;
4975   return ConstantAddress(CV, Align);
4976 }
4977 
4978 /// EmitObjCPropertyImplementations - Emit information for synthesized
4979 /// properties for an implementation.
4980 void CodeGenModule::EmitObjCPropertyImplementations(const
4981                                                     ObjCImplementationDecl *D) {
4982   for (const auto *PID : D->property_impls()) {
4983     // Dynamic is just for type-checking.
4984     if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize) {
4985       ObjCPropertyDecl *PD = PID->getPropertyDecl();
4986 
4987       // Determine which methods need to be implemented, some may have
4988       // been overridden. Note that ::isPropertyAccessor is not the method
4989       // we want, that just indicates if the decl came from a
4990       // property. What we want to know is if the method is defined in
4991       // this implementation.
4992       if (!D->getInstanceMethod(PD->getGetterName()))
4993         CodeGenFunction(*this).GenerateObjCGetter(
4994                                  const_cast<ObjCImplementationDecl *>(D), PID);
4995       if (!PD->isReadOnly() &&
4996           !D->getInstanceMethod(PD->getSetterName()))
4997         CodeGenFunction(*this).GenerateObjCSetter(
4998                                  const_cast<ObjCImplementationDecl *>(D), PID);
4999     }
5000   }
5001 }
5002 
5003 static bool needsDestructMethod(ObjCImplementationDecl *impl) {
5004   const ObjCInterfaceDecl *iface = impl->getClassInterface();
5005   for (const ObjCIvarDecl *ivar = iface->all_declared_ivar_begin();
5006        ivar; ivar = ivar->getNextIvar())
5007     if (ivar->getType().isDestructedType())
5008       return true;
5009 
5010   return false;
5011 }
5012 
5013 static bool AllTrivialInitializers(CodeGenModule &CGM,
5014                                    ObjCImplementationDecl *D) {
5015   CodeGenFunction CGF(CGM);
5016   for (ObjCImplementationDecl::init_iterator B = D->init_begin(),
5017        E = D->init_end(); B != E; ++B) {
5018     CXXCtorInitializer *CtorInitExp = *B;
5019     Expr *Init = CtorInitExp->getInit();
5020     if (!CGF.isTrivialInitializer(Init))
5021       return false;
5022   }
5023   return true;
5024 }
5025 
5026 /// EmitObjCIvarInitializations - Emit information for ivar initialization
5027 /// for an implementation.
5028 void CodeGenModule::EmitObjCIvarInitializations(ObjCImplementationDecl *D) {
5029   // We might need a .cxx_destruct even if we don't have any ivar initializers.
5030   if (needsDestructMethod(D)) {
5031     IdentifierInfo *II = &getContext().Idents.get(".cxx_destruct");
5032     Selector cxxSelector = getContext().Selectors.getSelector(0, &II);
5033     ObjCMethodDecl *DTORMethod =
5034       ObjCMethodDecl::Create(getContext(), D->getLocation(), D->getLocation(),
5035                              cxxSelector, getContext().VoidTy, nullptr, D,
5036                              /*isInstance=*/true, /*isVariadic=*/false,
5037                           /*isPropertyAccessor=*/true, /*isImplicitlyDeclared=*/true,
5038                              /*isDefined=*/false, ObjCMethodDecl::Required);
5039     D->addInstanceMethod(DTORMethod);
5040     CodeGenFunction(*this).GenerateObjCCtorDtorMethod(D, DTORMethod, false);
5041     D->setHasDestructors(true);
5042   }
5043 
5044   // If the implementation doesn't have any ivar initializers, we don't need
5045   // a .cxx_construct.
5046   if (D->getNumIvarInitializers() == 0 ||
5047       AllTrivialInitializers(*this, D))
5048     return;
5049 
5050   IdentifierInfo *II = &getContext().Idents.get(".cxx_construct");
5051   Selector cxxSelector = getContext().Selectors.getSelector(0, &II);
5052   // The constructor returns 'self'.
5053   ObjCMethodDecl *CTORMethod = ObjCMethodDecl::Create(getContext(),
5054                                                 D->getLocation(),
5055                                                 D->getLocation(),
5056                                                 cxxSelector,
5057                                                 getContext().getObjCIdType(),
5058                                                 nullptr, D, /*isInstance=*/true,
5059                                                 /*isVariadic=*/false,
5060                                                 /*isPropertyAccessor=*/true,
5061                                                 /*isImplicitlyDeclared=*/true,
5062                                                 /*isDefined=*/false,
5063                                                 ObjCMethodDecl::Required);
5064   D->addInstanceMethod(CTORMethod);
5065   CodeGenFunction(*this).GenerateObjCCtorDtorMethod(D, CTORMethod, true);
5066   D->setHasNonZeroConstructors(true);
5067 }
5068 
5069 // EmitLinkageSpec - Emit all declarations in a linkage spec.
5070 void CodeGenModule::EmitLinkageSpec(const LinkageSpecDecl *LSD) {
5071   if (LSD->getLanguage() != LinkageSpecDecl::lang_c &&
5072       LSD->getLanguage() != LinkageSpecDecl::lang_cxx) {
5073     ErrorUnsupported(LSD, "linkage spec");
5074     return;
5075   }
5076 
5077   EmitDeclContext(LSD);
5078 }
5079 
5080 void CodeGenModule::EmitDeclContext(const DeclContext *DC) {
5081   for (auto *I : DC->decls()) {
5082     // Unlike other DeclContexts, the contents of an ObjCImplDecl at TU scope
5083     // are themselves considered "top-level", so EmitTopLevelDecl on an
5084     // ObjCImplDecl does not recursively visit them. We need to do that in
5085     // case they're nested inside another construct (LinkageSpecDecl /
5086     // ExportDecl) that does stop them from being considered "top-level".
5087     if (auto *OID = dyn_cast<ObjCImplDecl>(I)) {
5088       for (auto *M : OID->methods())
5089         EmitTopLevelDecl(M);
5090     }
5091 
5092     EmitTopLevelDecl(I);
5093   }
5094 }
5095 
5096 /// EmitTopLevelDecl - Emit code for a single top level declaration.
5097 void CodeGenModule::EmitTopLevelDecl(Decl *D) {
5098   // Ignore dependent declarations.
5099   if (D->isTemplated())
5100     return;
5101 
5102   switch (D->getKind()) {
5103   case Decl::CXXConversion:
5104   case Decl::CXXMethod:
5105   case Decl::Function:
5106     EmitGlobal(cast<FunctionDecl>(D));
5107     // Always provide some coverage mapping
5108     // even for the functions that aren't emitted.
5109     AddDeferredUnusedCoverageMapping(D);
5110     break;
5111 
5112   case Decl::CXXDeductionGuide:
5113     // Function-like, but does not result in code emission.
5114     break;
5115 
5116   case Decl::Var:
5117   case Decl::Decomposition:
5118   case Decl::VarTemplateSpecialization:
5119     EmitGlobal(cast<VarDecl>(D));
5120     if (auto *DD = dyn_cast<DecompositionDecl>(D))
5121       for (auto *B : DD->bindings())
5122         if (auto *HD = B->getHoldingVar())
5123           EmitGlobal(HD);
5124     break;
5125 
5126   // Indirect fields from global anonymous structs and unions can be
5127   // ignored; only the actual variable requires IR gen support.
5128   case Decl::IndirectField:
5129     break;
5130 
5131   // C++ Decls
5132   case Decl::Namespace:
5133     EmitDeclContext(cast<NamespaceDecl>(D));
5134     break;
5135   case Decl::ClassTemplateSpecialization: {
5136     const auto *Spec = cast<ClassTemplateSpecializationDecl>(D);
5137     if (DebugInfo &&
5138         Spec->getSpecializationKind() == TSK_ExplicitInstantiationDefinition &&
5139         Spec->hasDefinition())
5140       DebugInfo->completeTemplateDefinition(*Spec);
5141   } LLVM_FALLTHROUGH;
5142   case Decl::CXXRecord:
5143     if (DebugInfo) {
5144       if (auto *ES = D->getASTContext().getExternalSource())
5145         if (ES->hasExternalDefinitions(D) == ExternalASTSource::EK_Never)
5146           DebugInfo->completeUnusedClass(cast<CXXRecordDecl>(*D));
5147     }
5148     // Emit any static data members, they may be definitions.
5149     for (auto *I : cast<CXXRecordDecl>(D)->decls())
5150       if (isa<VarDecl>(I) || isa<CXXRecordDecl>(I))
5151         EmitTopLevelDecl(I);
5152     break;
5153     // No code generation needed.
5154   case Decl::UsingShadow:
5155   case Decl::ClassTemplate:
5156   case Decl::VarTemplate:
5157   case Decl::VarTemplatePartialSpecialization:
5158   case Decl::FunctionTemplate:
5159   case Decl::TypeAliasTemplate:
5160   case Decl::Block:
5161   case Decl::Empty:
5162   case Decl::Binding:
5163     break;
5164   case Decl::Using:          // using X; [C++]
5165     if (CGDebugInfo *DI = getModuleDebugInfo())
5166         DI->EmitUsingDecl(cast<UsingDecl>(*D));
5167     return;
5168   case Decl::NamespaceAlias:
5169     if (CGDebugInfo *DI = getModuleDebugInfo())
5170         DI->EmitNamespaceAlias(cast<NamespaceAliasDecl>(*D));
5171     return;
5172   case Decl::UsingDirective: // using namespace X; [C++]
5173     if (CGDebugInfo *DI = getModuleDebugInfo())
5174       DI->EmitUsingDirective(cast<UsingDirectiveDecl>(*D));
5175     return;
5176   case Decl::CXXConstructor:
5177     getCXXABI().EmitCXXConstructors(cast<CXXConstructorDecl>(D));
5178     break;
5179   case Decl::CXXDestructor:
5180     getCXXABI().EmitCXXDestructors(cast<CXXDestructorDecl>(D));
5181     break;
5182 
5183   case Decl::StaticAssert:
5184     // Nothing to do.
5185     break;
5186 
5187   // Objective-C Decls
5188 
5189   // Forward declarations, no (immediate) code generation.
5190   case Decl::ObjCInterface:
5191   case Decl::ObjCCategory:
5192     break;
5193 
5194   case Decl::ObjCProtocol: {
5195     auto *Proto = cast<ObjCProtocolDecl>(D);
5196     if (Proto->isThisDeclarationADefinition())
5197       ObjCRuntime->GenerateProtocol(Proto);
5198     break;
5199   }
5200 
5201   case Decl::ObjCCategoryImpl:
5202     // Categories have properties but don't support synthesize so we
5203     // can ignore them here.
5204     ObjCRuntime->GenerateCategory(cast<ObjCCategoryImplDecl>(D));
5205     break;
5206 
5207   case Decl::ObjCImplementation: {
5208     auto *OMD = cast<ObjCImplementationDecl>(D);
5209     EmitObjCPropertyImplementations(OMD);
5210     EmitObjCIvarInitializations(OMD);
5211     ObjCRuntime->GenerateClass(OMD);
5212     // Emit global variable debug information.
5213     if (CGDebugInfo *DI = getModuleDebugInfo())
5214       if (getCodeGenOpts().getDebugInfo() >= codegenoptions::LimitedDebugInfo)
5215         DI->getOrCreateInterfaceType(getContext().getObjCInterfaceType(
5216             OMD->getClassInterface()), OMD->getLocation());
5217     break;
5218   }
5219   case Decl::ObjCMethod: {
5220     auto *OMD = cast<ObjCMethodDecl>(D);
5221     // If this is not a prototype, emit the body.
5222     if (OMD->getBody())
5223       CodeGenFunction(*this).GenerateObjCMethod(OMD);
5224     break;
5225   }
5226   case Decl::ObjCCompatibleAlias:
5227     ObjCRuntime->RegisterAlias(cast<ObjCCompatibleAliasDecl>(D));
5228     break;
5229 
5230   case Decl::PragmaComment: {
5231     const auto *PCD = cast<PragmaCommentDecl>(D);
5232     switch (PCD->getCommentKind()) {
5233     case PCK_Unknown:
5234       llvm_unreachable("unexpected pragma comment kind");
5235     case PCK_Linker:
5236       AppendLinkerOptions(PCD->getArg());
5237       break;
5238     case PCK_Lib:
5239         AddDependentLib(PCD->getArg());
5240       break;
5241     case PCK_Compiler:
5242     case PCK_ExeStr:
5243     case PCK_User:
5244       break; // We ignore all of these.
5245     }
5246     break;
5247   }
5248 
5249   case Decl::PragmaDetectMismatch: {
5250     const auto *PDMD = cast<PragmaDetectMismatchDecl>(D);
5251     AddDetectMismatch(PDMD->getName(), PDMD->getValue());
5252     break;
5253   }
5254 
5255   case Decl::LinkageSpec:
5256     EmitLinkageSpec(cast<LinkageSpecDecl>(D));
5257     break;
5258 
5259   case Decl::FileScopeAsm: {
5260     // File-scope asm is ignored during device-side CUDA compilation.
5261     if (LangOpts.CUDA && LangOpts.CUDAIsDevice)
5262       break;
5263     // File-scope asm is ignored during device-side OpenMP compilation.
5264     if (LangOpts.OpenMPIsDevice)
5265       break;
5266     auto *AD = cast<FileScopeAsmDecl>(D);
5267     getModule().appendModuleInlineAsm(AD->getAsmString()->getString());
5268     break;
5269   }
5270 
5271   case Decl::Import: {
5272     auto *Import = cast<ImportDecl>(D);
5273 
5274     // If we've already imported this module, we're done.
5275     if (!ImportedModules.insert(Import->getImportedModule()))
5276       break;
5277 
5278     // Emit debug information for direct imports.
5279     if (!Import->getImportedOwningModule()) {
5280       if (CGDebugInfo *DI = getModuleDebugInfo())
5281         DI->EmitImportDecl(*Import);
5282     }
5283 
5284     // Find all of the submodules and emit the module initializers.
5285     llvm::SmallPtrSet<clang::Module *, 16> Visited;
5286     SmallVector<clang::Module *, 16> Stack;
5287     Visited.insert(Import->getImportedModule());
5288     Stack.push_back(Import->getImportedModule());
5289 
5290     while (!Stack.empty()) {
5291       clang::Module *Mod = Stack.pop_back_val();
5292       if (!EmittedModuleInitializers.insert(Mod).second)
5293         continue;
5294 
5295       for (auto *D : Context.getModuleInitializers(Mod))
5296         EmitTopLevelDecl(D);
5297 
5298       // Visit the submodules of this module.
5299       for (clang::Module::submodule_iterator Sub = Mod->submodule_begin(),
5300                                              SubEnd = Mod->submodule_end();
5301            Sub != SubEnd; ++Sub) {
5302         // Skip explicit children; they need to be explicitly imported to emit
5303         // the initializers.
5304         if ((*Sub)->IsExplicit)
5305           continue;
5306 
5307         if (Visited.insert(*Sub).second)
5308           Stack.push_back(*Sub);
5309       }
5310     }
5311     break;
5312   }
5313 
5314   case Decl::Export:
5315     EmitDeclContext(cast<ExportDecl>(D));
5316     break;
5317 
5318   case Decl::OMPThreadPrivate:
5319     EmitOMPThreadPrivateDecl(cast<OMPThreadPrivateDecl>(D));
5320     break;
5321 
5322   case Decl::OMPAllocate:
5323     break;
5324 
5325   case Decl::OMPDeclareReduction:
5326     EmitOMPDeclareReduction(cast<OMPDeclareReductionDecl>(D));
5327     break;
5328 
5329   case Decl::OMPDeclareMapper:
5330     EmitOMPDeclareMapper(cast<OMPDeclareMapperDecl>(D));
5331     break;
5332 
5333   case Decl::OMPRequires:
5334     EmitOMPRequiresDecl(cast<OMPRequiresDecl>(D));
5335     break;
5336 
5337   default:
5338     // Make sure we handled everything we should, every other kind is a
5339     // non-top-level decl.  FIXME: Would be nice to have an isTopLevelDeclKind
5340     // function. Need to recode Decl::Kind to do that easily.
5341     assert(isa<TypeDecl>(D) && "Unsupported decl kind");
5342     break;
5343   }
5344 }
5345 
5346 void CodeGenModule::AddDeferredUnusedCoverageMapping(Decl *D) {
5347   // Do we need to generate coverage mapping?
5348   if (!CodeGenOpts.CoverageMapping)
5349     return;
5350   switch (D->getKind()) {
5351   case Decl::CXXConversion:
5352   case Decl::CXXMethod:
5353   case Decl::Function:
5354   case Decl::ObjCMethod:
5355   case Decl::CXXConstructor:
5356   case Decl::CXXDestructor: {
5357     if (!cast<FunctionDecl>(D)->doesThisDeclarationHaveABody())
5358       return;
5359     SourceManager &SM = getContext().getSourceManager();
5360     if (LimitedCoverage && SM.getMainFileID() != SM.getFileID(D->getBeginLoc()))
5361       return;
5362     auto I = DeferredEmptyCoverageMappingDecls.find(D);
5363     if (I == DeferredEmptyCoverageMappingDecls.end())
5364       DeferredEmptyCoverageMappingDecls[D] = true;
5365     break;
5366   }
5367   default:
5368     break;
5369   };
5370 }
5371 
5372 void CodeGenModule::ClearUnusedCoverageMapping(const Decl *D) {
5373   // Do we need to generate coverage mapping?
5374   if (!CodeGenOpts.CoverageMapping)
5375     return;
5376   if (const auto *Fn = dyn_cast<FunctionDecl>(D)) {
5377     if (Fn->isTemplateInstantiation())
5378       ClearUnusedCoverageMapping(Fn->getTemplateInstantiationPattern());
5379   }
5380   auto I = DeferredEmptyCoverageMappingDecls.find(D);
5381   if (I == DeferredEmptyCoverageMappingDecls.end())
5382     DeferredEmptyCoverageMappingDecls[D] = false;
5383   else
5384     I->second = false;
5385 }
5386 
5387 void CodeGenModule::EmitDeferredUnusedCoverageMappings() {
5388   // We call takeVector() here to avoid use-after-free.
5389   // FIXME: DeferredEmptyCoverageMappingDecls is getting mutated because
5390   // we deserialize function bodies to emit coverage info for them, and that
5391   // deserializes more declarations. How should we handle that case?
5392   for (const auto &Entry : DeferredEmptyCoverageMappingDecls.takeVector()) {
5393     if (!Entry.second)
5394       continue;
5395     const Decl *D = Entry.first;
5396     switch (D->getKind()) {
5397     case Decl::CXXConversion:
5398     case Decl::CXXMethod:
5399     case Decl::Function:
5400     case Decl::ObjCMethod: {
5401       CodeGenPGO PGO(*this);
5402       GlobalDecl GD(cast<FunctionDecl>(D));
5403       PGO.emitEmptyCounterMapping(D, getMangledName(GD),
5404                                   getFunctionLinkage(GD));
5405       break;
5406     }
5407     case Decl::CXXConstructor: {
5408       CodeGenPGO PGO(*this);
5409       GlobalDecl GD(cast<CXXConstructorDecl>(D), Ctor_Base);
5410       PGO.emitEmptyCounterMapping(D, getMangledName(GD),
5411                                   getFunctionLinkage(GD));
5412       break;
5413     }
5414     case Decl::CXXDestructor: {
5415       CodeGenPGO PGO(*this);
5416       GlobalDecl GD(cast<CXXDestructorDecl>(D), Dtor_Base);
5417       PGO.emitEmptyCounterMapping(D, getMangledName(GD),
5418                                   getFunctionLinkage(GD));
5419       break;
5420     }
5421     default:
5422       break;
5423     };
5424   }
5425 }
5426 
5427 /// Turns the given pointer into a constant.
5428 static llvm::Constant *GetPointerConstant(llvm::LLVMContext &Context,
5429                                           const void *Ptr) {
5430   uintptr_t PtrInt = reinterpret_cast<uintptr_t>(Ptr);
5431   llvm::Type *i64 = llvm::Type::getInt64Ty(Context);
5432   return llvm::ConstantInt::get(i64, PtrInt);
5433 }
5434 
5435 static void EmitGlobalDeclMetadata(CodeGenModule &CGM,
5436                                    llvm::NamedMDNode *&GlobalMetadata,
5437                                    GlobalDecl D,
5438                                    llvm::GlobalValue *Addr) {
5439   if (!GlobalMetadata)
5440     GlobalMetadata =
5441       CGM.getModule().getOrInsertNamedMetadata("clang.global.decl.ptrs");
5442 
5443   // TODO: should we report variant information for ctors/dtors?
5444   llvm::Metadata *Ops[] = {llvm::ConstantAsMetadata::get(Addr),
5445                            llvm::ConstantAsMetadata::get(GetPointerConstant(
5446                                CGM.getLLVMContext(), D.getDecl()))};
5447   GlobalMetadata->addOperand(llvm::MDNode::get(CGM.getLLVMContext(), Ops));
5448 }
5449 
5450 /// For each function which is declared within an extern "C" region and marked
5451 /// as 'used', but has internal linkage, create an alias from the unmangled
5452 /// name to the mangled name if possible. People expect to be able to refer
5453 /// to such functions with an unmangled name from inline assembly within the
5454 /// same translation unit.
5455 void CodeGenModule::EmitStaticExternCAliases() {
5456   if (!getTargetCodeGenInfo().shouldEmitStaticExternCAliases())
5457     return;
5458   for (auto &I : StaticExternCValues) {
5459     IdentifierInfo *Name = I.first;
5460     llvm::GlobalValue *Val = I.second;
5461     if (Val && !getModule().getNamedValue(Name->getName()))
5462       addUsedGlobal(llvm::GlobalAlias::create(Name->getName(), Val));
5463   }
5464 }
5465 
5466 bool CodeGenModule::lookupRepresentativeDecl(StringRef MangledName,
5467                                              GlobalDecl &Result) const {
5468   auto Res = Manglings.find(MangledName);
5469   if (Res == Manglings.end())
5470     return false;
5471   Result = Res->getValue();
5472   return true;
5473 }
5474 
5475 /// Emits metadata nodes associating all the global values in the
5476 /// current module with the Decls they came from.  This is useful for
5477 /// projects using IR gen as a subroutine.
5478 ///
5479 /// Since there's currently no way to associate an MDNode directly
5480 /// with an llvm::GlobalValue, we create a global named metadata
5481 /// with the name 'clang.global.decl.ptrs'.
5482 void CodeGenModule::EmitDeclMetadata() {
5483   llvm::NamedMDNode *GlobalMetadata = nullptr;
5484 
5485   for (auto &I : MangledDeclNames) {
5486     llvm::GlobalValue *Addr = getModule().getNamedValue(I.second);
5487     // Some mangled names don't necessarily have an associated GlobalValue
5488     // in this module, e.g. if we mangled it for DebugInfo.
5489     if (Addr)
5490       EmitGlobalDeclMetadata(*this, GlobalMetadata, I.first, Addr);
5491   }
5492 }
5493 
5494 /// Emits metadata nodes for all the local variables in the current
5495 /// function.
5496 void CodeGenFunction::EmitDeclMetadata() {
5497   if (LocalDeclMap.empty()) return;
5498 
5499   llvm::LLVMContext &Context = getLLVMContext();
5500 
5501   // Find the unique metadata ID for this name.
5502   unsigned DeclPtrKind = Context.getMDKindID("clang.decl.ptr");
5503 
5504   llvm::NamedMDNode *GlobalMetadata = nullptr;
5505 
5506   for (auto &I : LocalDeclMap) {
5507     const Decl *D = I.first;
5508     llvm::Value *Addr = I.second.getPointer();
5509     if (auto *Alloca = dyn_cast<llvm::AllocaInst>(Addr)) {
5510       llvm::Value *DAddr = GetPointerConstant(getLLVMContext(), D);
5511       Alloca->setMetadata(
5512           DeclPtrKind, llvm::MDNode::get(
5513                            Context, llvm::ValueAsMetadata::getConstant(DAddr)));
5514     } else if (auto *GV = dyn_cast<llvm::GlobalValue>(Addr)) {
5515       GlobalDecl GD = GlobalDecl(cast<VarDecl>(D));
5516       EmitGlobalDeclMetadata(CGM, GlobalMetadata, GD, GV);
5517     }
5518   }
5519 }
5520 
5521 void CodeGenModule::EmitVersionIdentMetadata() {
5522   llvm::NamedMDNode *IdentMetadata =
5523     TheModule.getOrInsertNamedMetadata("llvm.ident");
5524   std::string Version = getClangFullVersion();
5525   llvm::LLVMContext &Ctx = TheModule.getContext();
5526 
5527   llvm::Metadata *IdentNode[] = {llvm::MDString::get(Ctx, Version)};
5528   IdentMetadata->addOperand(llvm::MDNode::get(Ctx, IdentNode));
5529 }
5530 
5531 void CodeGenModule::EmitCommandLineMetadata() {
5532   llvm::NamedMDNode *CommandLineMetadata =
5533     TheModule.getOrInsertNamedMetadata("llvm.commandline");
5534   std::string CommandLine = getCodeGenOpts().RecordCommandLine;
5535   llvm::LLVMContext &Ctx = TheModule.getContext();
5536 
5537   llvm::Metadata *CommandLineNode[] = {llvm::MDString::get(Ctx, CommandLine)};
5538   CommandLineMetadata->addOperand(llvm::MDNode::get(Ctx, CommandLineNode));
5539 }
5540 
5541 void CodeGenModule::EmitTargetMetadata() {
5542   // Warning, new MangledDeclNames may be appended within this loop.
5543   // We rely on MapVector insertions adding new elements to the end
5544   // of the container.
5545   // FIXME: Move this loop into the one target that needs it, and only
5546   // loop over those declarations for which we couldn't emit the target
5547   // metadata when we emitted the declaration.
5548   for (unsigned I = 0; I != MangledDeclNames.size(); ++I) {
5549     auto Val = *(MangledDeclNames.begin() + I);
5550     const Decl *D = Val.first.getDecl()->getMostRecentDecl();
5551     llvm::GlobalValue *GV = GetGlobalValue(Val.second);
5552     getTargetCodeGenInfo().emitTargetMD(D, GV, *this);
5553   }
5554 }
5555 
5556 void CodeGenModule::EmitCoverageFile() {
5557   if (getCodeGenOpts().CoverageDataFile.empty() &&
5558       getCodeGenOpts().CoverageNotesFile.empty())
5559     return;
5560 
5561   llvm::NamedMDNode *CUNode = TheModule.getNamedMetadata("llvm.dbg.cu");
5562   if (!CUNode)
5563     return;
5564 
5565   llvm::NamedMDNode *GCov = TheModule.getOrInsertNamedMetadata("llvm.gcov");
5566   llvm::LLVMContext &Ctx = TheModule.getContext();
5567   auto *CoverageDataFile =
5568       llvm::MDString::get(Ctx, getCodeGenOpts().CoverageDataFile);
5569   auto *CoverageNotesFile =
5570       llvm::MDString::get(Ctx, getCodeGenOpts().CoverageNotesFile);
5571   for (int i = 0, e = CUNode->getNumOperands(); i != e; ++i) {
5572     llvm::MDNode *CU = CUNode->getOperand(i);
5573     llvm::Metadata *Elts[] = {CoverageNotesFile, CoverageDataFile, CU};
5574     GCov->addOperand(llvm::MDNode::get(Ctx, Elts));
5575   }
5576 }
5577 
5578 llvm::Constant *CodeGenModule::EmitUuidofInitializer(StringRef Uuid) {
5579   // Sema has checked that all uuid strings are of the form
5580   // "12345678-1234-1234-1234-1234567890ab".
5581   assert(Uuid.size() == 36);
5582   for (unsigned i = 0; i < 36; ++i) {
5583     if (i == 8 || i == 13 || i == 18 || i == 23) assert(Uuid[i] == '-');
5584     else                                         assert(isHexDigit(Uuid[i]));
5585   }
5586 
5587   // The starts of all bytes of Field3 in Uuid. Field 3 is "1234-1234567890ab".
5588   const unsigned Field3ValueOffsets[8] = { 19, 21, 24, 26, 28, 30, 32, 34 };
5589 
5590   llvm::Constant *Field3[8];
5591   for (unsigned Idx = 0; Idx < 8; ++Idx)
5592     Field3[Idx] = llvm::ConstantInt::get(
5593         Int8Ty, Uuid.substr(Field3ValueOffsets[Idx], 2), 16);
5594 
5595   llvm::Constant *Fields[4] = {
5596     llvm::ConstantInt::get(Int32Ty, Uuid.substr(0,  8), 16),
5597     llvm::ConstantInt::get(Int16Ty, Uuid.substr(9,  4), 16),
5598     llvm::ConstantInt::get(Int16Ty, Uuid.substr(14, 4), 16),
5599     llvm::ConstantArray::get(llvm::ArrayType::get(Int8Ty, 8), Field3)
5600   };
5601 
5602   return llvm::ConstantStruct::getAnon(Fields);
5603 }
5604 
5605 llvm::Constant *CodeGenModule::GetAddrOfRTTIDescriptor(QualType Ty,
5606                                                        bool ForEH) {
5607   // Return a bogus pointer if RTTI is disabled, unless it's for EH.
5608   // FIXME: should we even be calling this method if RTTI is disabled
5609   // and it's not for EH?
5610   if ((!ForEH && !getLangOpts().RTTI) || getLangOpts().CUDAIsDevice)
5611     return llvm::Constant::getNullValue(Int8PtrTy);
5612 
5613   if (ForEH && Ty->isObjCObjectPointerType() &&
5614       LangOpts.ObjCRuntime.isGNUFamily())
5615     return ObjCRuntime->GetEHType(Ty);
5616 
5617   return getCXXABI().getAddrOfRTTIDescriptor(Ty);
5618 }
5619 
5620 void CodeGenModule::EmitOMPThreadPrivateDecl(const OMPThreadPrivateDecl *D) {
5621   // Do not emit threadprivates in simd-only mode.
5622   if (LangOpts.OpenMP && LangOpts.OpenMPSimd)
5623     return;
5624   for (auto RefExpr : D->varlists()) {
5625     auto *VD = cast<VarDecl>(cast<DeclRefExpr>(RefExpr)->getDecl());
5626     bool PerformInit =
5627         VD->getAnyInitializer() &&
5628         !VD->getAnyInitializer()->isConstantInitializer(getContext(),
5629                                                         /*ForRef=*/false);
5630 
5631     Address Addr(GetAddrOfGlobalVar(VD), getContext().getDeclAlign(VD));
5632     if (auto InitFunction = getOpenMPRuntime().emitThreadPrivateVarDefinition(
5633             VD, Addr, RefExpr->getBeginLoc(), PerformInit))
5634       CXXGlobalInits.push_back(InitFunction);
5635   }
5636 }
5637 
5638 llvm::Metadata *
5639 CodeGenModule::CreateMetadataIdentifierImpl(QualType T, MetadataTypeMap &Map,
5640                                             StringRef Suffix) {
5641   llvm::Metadata *&InternalId = Map[T.getCanonicalType()];
5642   if (InternalId)
5643     return InternalId;
5644 
5645   if (isExternallyVisible(T->getLinkage())) {
5646     std::string OutName;
5647     llvm::raw_string_ostream Out(OutName);
5648     getCXXABI().getMangleContext().mangleTypeName(T, Out);
5649     Out << Suffix;
5650 
5651     InternalId = llvm::MDString::get(getLLVMContext(), Out.str());
5652   } else {
5653     InternalId = llvm::MDNode::getDistinct(getLLVMContext(),
5654                                            llvm::ArrayRef<llvm::Metadata *>());
5655   }
5656 
5657   return InternalId;
5658 }
5659 
5660 llvm::Metadata *CodeGenModule::CreateMetadataIdentifierForType(QualType T) {
5661   return CreateMetadataIdentifierImpl(T, MetadataIdMap, "");
5662 }
5663 
5664 llvm::Metadata *
5665 CodeGenModule::CreateMetadataIdentifierForVirtualMemPtrType(QualType T) {
5666   return CreateMetadataIdentifierImpl(T, VirtualMetadataIdMap, ".virtual");
5667 }
5668 
5669 // Generalize pointer types to a void pointer with the qualifiers of the
5670 // originally pointed-to type, e.g. 'const char *' and 'char * const *'
5671 // generalize to 'const void *' while 'char *' and 'const char **' generalize to
5672 // 'void *'.
5673 static QualType GeneralizeType(ASTContext &Ctx, QualType Ty) {
5674   if (!Ty->isPointerType())
5675     return Ty;
5676 
5677   return Ctx.getPointerType(
5678       QualType(Ctx.VoidTy).withCVRQualifiers(
5679           Ty->getPointeeType().getCVRQualifiers()));
5680 }
5681 
5682 // Apply type generalization to a FunctionType's return and argument types
5683 static QualType GeneralizeFunctionType(ASTContext &Ctx, QualType Ty) {
5684   if (auto *FnType = Ty->getAs<FunctionProtoType>()) {
5685     SmallVector<QualType, 8> GeneralizedParams;
5686     for (auto &Param : FnType->param_types())
5687       GeneralizedParams.push_back(GeneralizeType(Ctx, Param));
5688 
5689     return Ctx.getFunctionType(
5690         GeneralizeType(Ctx, FnType->getReturnType()),
5691         GeneralizedParams, FnType->getExtProtoInfo());
5692   }
5693 
5694   if (auto *FnType = Ty->getAs<FunctionNoProtoType>())
5695     return Ctx.getFunctionNoProtoType(
5696         GeneralizeType(Ctx, FnType->getReturnType()));
5697 
5698   llvm_unreachable("Encountered unknown FunctionType");
5699 }
5700 
5701 llvm::Metadata *CodeGenModule::CreateMetadataIdentifierGeneralized(QualType T) {
5702   return CreateMetadataIdentifierImpl(GeneralizeFunctionType(getContext(), T),
5703                                       GeneralizedMetadataIdMap, ".generalized");
5704 }
5705 
5706 /// Returns whether this module needs the "all-vtables" type identifier.
5707 bool CodeGenModule::NeedAllVtablesTypeId() const {
5708   // Returns true if at least one of vtable-based CFI checkers is enabled and
5709   // is not in the trapping mode.
5710   return ((LangOpts.Sanitize.has(SanitizerKind::CFIVCall) &&
5711            !CodeGenOpts.SanitizeTrap.has(SanitizerKind::CFIVCall)) ||
5712           (LangOpts.Sanitize.has(SanitizerKind::CFINVCall) &&
5713            !CodeGenOpts.SanitizeTrap.has(SanitizerKind::CFINVCall)) ||
5714           (LangOpts.Sanitize.has(SanitizerKind::CFIDerivedCast) &&
5715            !CodeGenOpts.SanitizeTrap.has(SanitizerKind::CFIDerivedCast)) ||
5716           (LangOpts.Sanitize.has(SanitizerKind::CFIUnrelatedCast) &&
5717            !CodeGenOpts.SanitizeTrap.has(SanitizerKind::CFIUnrelatedCast)));
5718 }
5719 
5720 void CodeGenModule::AddVTableTypeMetadata(llvm::GlobalVariable *VTable,
5721                                           CharUnits Offset,
5722                                           const CXXRecordDecl *RD) {
5723   llvm::Metadata *MD =
5724       CreateMetadataIdentifierForType(QualType(RD->getTypeForDecl(), 0));
5725   VTable->addTypeMetadata(Offset.getQuantity(), MD);
5726 
5727   if (CodeGenOpts.SanitizeCfiCrossDso)
5728     if (auto CrossDsoTypeId = CreateCrossDsoCfiTypeId(MD))
5729       VTable->addTypeMetadata(Offset.getQuantity(),
5730                               llvm::ConstantAsMetadata::get(CrossDsoTypeId));
5731 
5732   if (NeedAllVtablesTypeId()) {
5733     llvm::Metadata *MD = llvm::MDString::get(getLLVMContext(), "all-vtables");
5734     VTable->addTypeMetadata(Offset.getQuantity(), MD);
5735   }
5736 }
5737 
5738 TargetAttr::ParsedTargetAttr CodeGenModule::filterFunctionTargetAttrs(const TargetAttr *TD) {
5739   assert(TD != nullptr);
5740   TargetAttr::ParsedTargetAttr ParsedAttr = TD->parse();
5741 
5742   ParsedAttr.Features.erase(
5743       llvm::remove_if(ParsedAttr.Features,
5744                       [&](const std::string &Feat) {
5745                         return !Target.isValidFeatureName(
5746                             StringRef{Feat}.substr(1));
5747                       }),
5748       ParsedAttr.Features.end());
5749   return ParsedAttr;
5750 }
5751 
5752 
5753 // Fills in the supplied string map with the set of target features for the
5754 // passed in function.
5755 void CodeGenModule::getFunctionFeatureMap(llvm::StringMap<bool> &FeatureMap,
5756                                           GlobalDecl GD) {
5757   StringRef TargetCPU = Target.getTargetOpts().CPU;
5758   const FunctionDecl *FD = GD.getDecl()->getAsFunction();
5759   if (const auto *TD = FD->getAttr<TargetAttr>()) {
5760     TargetAttr::ParsedTargetAttr ParsedAttr = filterFunctionTargetAttrs(TD);
5761 
5762     // Make a copy of the features as passed on the command line into the
5763     // beginning of the additional features from the function to override.
5764     ParsedAttr.Features.insert(ParsedAttr.Features.begin(),
5765                             Target.getTargetOpts().FeaturesAsWritten.begin(),
5766                             Target.getTargetOpts().FeaturesAsWritten.end());
5767 
5768     if (ParsedAttr.Architecture != "" &&
5769         Target.isValidCPUName(ParsedAttr.Architecture))
5770       TargetCPU = ParsedAttr.Architecture;
5771 
5772     // Now populate the feature map, first with the TargetCPU which is either
5773     // the default or a new one from the target attribute string. Then we'll use
5774     // the passed in features (FeaturesAsWritten) along with the new ones from
5775     // the attribute.
5776     Target.initFeatureMap(FeatureMap, getDiags(), TargetCPU,
5777                           ParsedAttr.Features);
5778   } else if (const auto *SD = FD->getAttr<CPUSpecificAttr>()) {
5779     llvm::SmallVector<StringRef, 32> FeaturesTmp;
5780     Target.getCPUSpecificCPUDispatchFeatures(
5781         SD->getCPUName(GD.getMultiVersionIndex())->getName(), FeaturesTmp);
5782     std::vector<std::string> Features(FeaturesTmp.begin(), FeaturesTmp.end());
5783     Target.initFeatureMap(FeatureMap, getDiags(), TargetCPU, Features);
5784   } else {
5785     Target.initFeatureMap(FeatureMap, getDiags(), TargetCPU,
5786                           Target.getTargetOpts().Features);
5787   }
5788 }
5789 
5790 llvm::SanitizerStatReport &CodeGenModule::getSanStats() {
5791   if (!SanStats)
5792     SanStats = llvm::make_unique<llvm::SanitizerStatReport>(&getModule());
5793 
5794   return *SanStats;
5795 }
5796 llvm::Value *
5797 CodeGenModule::createOpenCLIntToSamplerConversion(const Expr *E,
5798                                                   CodeGenFunction &CGF) {
5799   llvm::Constant *C = ConstantEmitter(CGF).emitAbstract(E, E->getType());
5800   auto SamplerT = getOpenCLRuntime().getSamplerType(E->getType().getTypePtr());
5801   auto FTy = llvm::FunctionType::get(SamplerT, {C->getType()}, false);
5802   return CGF.Builder.CreateCall(CreateRuntimeFunction(FTy,
5803                                 "__translate_sampler_initializer"),
5804                                 {C});
5805 }
5806