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