1*0b57cec5SDimitry Andric //===--- CodeGenModule.cpp - Emit LLVM Code from ASTs for a Module --------===//
2*0b57cec5SDimitry Andric //
3*0b57cec5SDimitry Andric // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4*0b57cec5SDimitry Andric // See https://llvm.org/LICENSE.txt for license information.
5*0b57cec5SDimitry Andric // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6*0b57cec5SDimitry Andric //
7*0b57cec5SDimitry Andric //===----------------------------------------------------------------------===//
8*0b57cec5SDimitry Andric //
9*0b57cec5SDimitry Andric // This coordinates the per-module state used while generating code.
10*0b57cec5SDimitry Andric //
11*0b57cec5SDimitry Andric //===----------------------------------------------------------------------===//
12*0b57cec5SDimitry Andric 
13*0b57cec5SDimitry Andric #include "CodeGenModule.h"
14fcaf7f86SDimitry Andric #include "ABIInfo.h"
15*0b57cec5SDimitry Andric #include "CGBlocks.h"
16*0b57cec5SDimitry Andric #include "CGCUDARuntime.h"
17*0b57cec5SDimitry Andric #include "CGCXXABI.h"
18*0b57cec5SDimitry Andric #include "CGCall.h"
19*0b57cec5SDimitry Andric #include "CGDebugInfo.h"
2081ad6265SDimitry Andric #include "CGHLSLRuntime.h"
21*0b57cec5SDimitry Andric #include "CGObjCRuntime.h"
22*0b57cec5SDimitry Andric #include "CGOpenCLRuntime.h"
23*0b57cec5SDimitry Andric #include "CGOpenMPRuntime.h"
24349cc55cSDimitry Andric #include "CGOpenMPRuntimeGPU.h"
25*0b57cec5SDimitry Andric #include "CodeGenFunction.h"
26*0b57cec5SDimitry Andric #include "CodeGenPGO.h"
27*0b57cec5SDimitry Andric #include "ConstantEmitter.h"
28*0b57cec5SDimitry Andric #include "CoverageMappingGen.h"
29*0b57cec5SDimitry Andric #include "TargetInfo.h"
30*0b57cec5SDimitry Andric #include "clang/AST/ASTContext.h"
31*0b57cec5SDimitry Andric #include "clang/AST/CharUnits.h"
32*0b57cec5SDimitry Andric #include "clang/AST/DeclCXX.h"
33*0b57cec5SDimitry Andric #include "clang/AST/DeclObjC.h"
34*0b57cec5SDimitry Andric #include "clang/AST/DeclTemplate.h"
35*0b57cec5SDimitry Andric #include "clang/AST/Mangle.h"
36*0b57cec5SDimitry Andric #include "clang/AST/RecursiveASTVisitor.h"
37*0b57cec5SDimitry Andric #include "clang/AST/StmtVisitor.h"
38*0b57cec5SDimitry Andric #include "clang/Basic/Builtins.h"
39*0b57cec5SDimitry Andric #include "clang/Basic/CharInfo.h"
40*0b57cec5SDimitry Andric #include "clang/Basic/CodeGenOptions.h"
41*0b57cec5SDimitry Andric #include "clang/Basic/Diagnostic.h"
425ffd83dbSDimitry Andric #include "clang/Basic/FileManager.h"
43*0b57cec5SDimitry Andric #include "clang/Basic/Module.h"
44*0b57cec5SDimitry Andric #include "clang/Basic/SourceManager.h"
45*0b57cec5SDimitry Andric #include "clang/Basic/TargetInfo.h"
46*0b57cec5SDimitry Andric #include "clang/Basic/Version.h"
4781ad6265SDimitry Andric #include "clang/CodeGen/BackendUtil.h"
48*0b57cec5SDimitry Andric #include "clang/CodeGen/ConstantInitBuilder.h"
49*0b57cec5SDimitry Andric #include "clang/Frontend/FrontendDiagnostic.h"
50*0b57cec5SDimitry Andric #include "llvm/ADT/StringSwitch.h"
51*0b57cec5SDimitry Andric #include "llvm/ADT/Triple.h"
52*0b57cec5SDimitry Andric #include "llvm/Analysis/TargetLibraryInfo.h"
53480093f4SDimitry Andric #include "llvm/Frontend/OpenMP/OMPIRBuilder.h"
54*0b57cec5SDimitry Andric #include "llvm/IR/CallingConv.h"
55*0b57cec5SDimitry Andric #include "llvm/IR/DataLayout.h"
56*0b57cec5SDimitry Andric #include "llvm/IR/Intrinsics.h"
57*0b57cec5SDimitry Andric #include "llvm/IR/LLVMContext.h"
58*0b57cec5SDimitry Andric #include "llvm/IR/Module.h"
59*0b57cec5SDimitry Andric #include "llvm/IR/ProfileSummary.h"
60*0b57cec5SDimitry Andric #include "llvm/ProfileData/InstrProfReader.h"
61fcaf7f86SDimitry Andric #include "llvm/Support/CRC.h"
62*0b57cec5SDimitry Andric #include "llvm/Support/CodeGen.h"
63480093f4SDimitry Andric #include "llvm/Support/CommandLine.h"
64*0b57cec5SDimitry Andric #include "llvm/Support/ConvertUTF.h"
65*0b57cec5SDimitry Andric #include "llvm/Support/ErrorHandling.h"
66*0b57cec5SDimitry Andric #include "llvm/Support/MD5.h"
67*0b57cec5SDimitry Andric #include "llvm/Support/TimeProfiler.h"
68349cc55cSDimitry Andric #include "llvm/Support/X86TargetParser.h"
69*0b57cec5SDimitry Andric 
70*0b57cec5SDimitry Andric using namespace clang;
71*0b57cec5SDimitry Andric using namespace CodeGen;
72*0b57cec5SDimitry Andric 
73*0b57cec5SDimitry Andric static llvm::cl::opt<bool> LimitedCoverage(
7481ad6265SDimitry Andric     "limited-coverage-experimental", llvm::cl::Hidden,
7581ad6265SDimitry Andric     llvm::cl::desc("Emit limited coverage mapping information (experimental)"));
76*0b57cec5SDimitry Andric 
77*0b57cec5SDimitry Andric static const char AnnotationSection[] = "llvm.metadata";
78*0b57cec5SDimitry Andric 
79*0b57cec5SDimitry Andric static CGCXXABI *createCXXABI(CodeGenModule &CGM) {
80fe6060f1SDimitry Andric   switch (CGM.getContext().getCXXABIKind()) {
81e8d8bef9SDimitry Andric   case TargetCXXABI::AppleARM64:
82480093f4SDimitry Andric   case TargetCXXABI::Fuchsia:
83*0b57cec5SDimitry Andric   case TargetCXXABI::GenericAArch64:
84*0b57cec5SDimitry Andric   case TargetCXXABI::GenericARM:
85*0b57cec5SDimitry Andric   case TargetCXXABI::iOS:
86*0b57cec5SDimitry Andric   case TargetCXXABI::WatchOS:
87*0b57cec5SDimitry Andric   case TargetCXXABI::GenericMIPS:
88*0b57cec5SDimitry Andric   case TargetCXXABI::GenericItanium:
89*0b57cec5SDimitry Andric   case TargetCXXABI::WebAssembly:
905ffd83dbSDimitry Andric   case TargetCXXABI::XL:
91*0b57cec5SDimitry Andric     return CreateItaniumCXXABI(CGM);
92*0b57cec5SDimitry Andric   case TargetCXXABI::Microsoft:
93*0b57cec5SDimitry Andric     return CreateMicrosoftCXXABI(CGM);
94*0b57cec5SDimitry Andric   }
95*0b57cec5SDimitry Andric 
96*0b57cec5SDimitry Andric   llvm_unreachable("invalid C++ ABI kind");
97*0b57cec5SDimitry Andric }
98*0b57cec5SDimitry Andric 
99972a253aSDimitry Andric CodeGenModule::CodeGenModule(ASTContext &C,
100972a253aSDimitry Andric                              IntrusiveRefCntPtr<llvm::vfs::FileSystem> FS,
101972a253aSDimitry Andric                              const HeaderSearchOptions &HSO,
102*0b57cec5SDimitry Andric                              const PreprocessorOptions &PPO,
103*0b57cec5SDimitry Andric                              const CodeGenOptions &CGO, llvm::Module &M,
104*0b57cec5SDimitry Andric                              DiagnosticsEngine &diags,
105*0b57cec5SDimitry Andric                              CoverageSourceInfo *CoverageInfo)
106972a253aSDimitry Andric     : Context(C), LangOpts(C.getLangOpts()), FS(std::move(FS)),
107972a253aSDimitry Andric       HeaderSearchOpts(HSO), PreprocessorOpts(PPO), CodeGenOpts(CGO),
108972a253aSDimitry Andric       TheModule(M), Diags(diags), Target(C.getTargetInfo()),
109972a253aSDimitry Andric       ABI(createCXXABI(*this)), VMContext(M.getContext()), Types(*this),
110972a253aSDimitry Andric       VTables(*this), SanitizerMD(new SanitizerMetadata(*this)) {
111*0b57cec5SDimitry Andric 
112*0b57cec5SDimitry Andric   // Initialize the type cache.
113*0b57cec5SDimitry Andric   llvm::LLVMContext &LLVMContext = M.getContext();
114*0b57cec5SDimitry Andric   VoidTy = llvm::Type::getVoidTy(LLVMContext);
115*0b57cec5SDimitry Andric   Int8Ty = llvm::Type::getInt8Ty(LLVMContext);
116*0b57cec5SDimitry Andric   Int16Ty = llvm::Type::getInt16Ty(LLVMContext);
117*0b57cec5SDimitry Andric   Int32Ty = llvm::Type::getInt32Ty(LLVMContext);
118*0b57cec5SDimitry Andric   Int64Ty = llvm::Type::getInt64Ty(LLVMContext);
119*0b57cec5SDimitry Andric   HalfTy = llvm::Type::getHalfTy(LLVMContext);
1205ffd83dbSDimitry Andric   BFloatTy = llvm::Type::getBFloatTy(LLVMContext);
121*0b57cec5SDimitry Andric   FloatTy = llvm::Type::getFloatTy(LLVMContext);
122*0b57cec5SDimitry Andric   DoubleTy = llvm::Type::getDoubleTy(LLVMContext);
123*0b57cec5SDimitry Andric   PointerWidthInBits = C.getTargetInfo().getPointerWidth(0);
124*0b57cec5SDimitry Andric   PointerAlignInBytes =
125*0b57cec5SDimitry Andric     C.toCharUnitsFromBits(C.getTargetInfo().getPointerAlign(0)).getQuantity();
126*0b57cec5SDimitry Andric   SizeSizeInBytes =
127*0b57cec5SDimitry Andric     C.toCharUnitsFromBits(C.getTargetInfo().getMaxPointerWidth()).getQuantity();
128*0b57cec5SDimitry Andric   IntAlignInBytes =
129*0b57cec5SDimitry Andric     C.toCharUnitsFromBits(C.getTargetInfo().getIntAlign()).getQuantity();
130e8d8bef9SDimitry Andric   CharTy =
131e8d8bef9SDimitry Andric     llvm::IntegerType::get(LLVMContext, C.getTargetInfo().getCharWidth());
132*0b57cec5SDimitry Andric   IntTy = llvm::IntegerType::get(LLVMContext, C.getTargetInfo().getIntWidth());
133*0b57cec5SDimitry Andric   IntPtrTy = llvm::IntegerType::get(LLVMContext,
134*0b57cec5SDimitry Andric     C.getTargetInfo().getMaxPointerWidth());
135*0b57cec5SDimitry Andric   Int8PtrTy = Int8Ty->getPointerTo(0);
136*0b57cec5SDimitry Andric   Int8PtrPtrTy = Int8PtrTy->getPointerTo(0);
137349cc55cSDimitry Andric   const llvm::DataLayout &DL = M.getDataLayout();
138349cc55cSDimitry Andric   AllocaInt8PtrTy = Int8Ty->getPointerTo(DL.getAllocaAddrSpace());
139349cc55cSDimitry Andric   GlobalsInt8PtrTy = Int8Ty->getPointerTo(DL.getDefaultGlobalsAddressSpace());
140*0b57cec5SDimitry Andric   ASTAllocaAddressSpace = getTargetCodeGenInfo().getASTAllocaAddressSpace();
141*0b57cec5SDimitry Andric 
142fcaf7f86SDimitry Andric   // Build C++20 Module initializers.
143fcaf7f86SDimitry Andric   // TODO: Add Microsoft here once we know the mangling required for the
144fcaf7f86SDimitry Andric   // initializers.
145fcaf7f86SDimitry Andric   CXX20ModuleInits =
146fcaf7f86SDimitry Andric       LangOpts.CPlusPlusModules && getCXXABI().getMangleContext().getKind() ==
147fcaf7f86SDimitry Andric                                        ItaniumMangleContext::MK_Itanium;
148fcaf7f86SDimitry Andric 
149*0b57cec5SDimitry Andric   RuntimeCC = getTargetCodeGenInfo().getABIInfo().getRuntimeCC();
150*0b57cec5SDimitry Andric 
151*0b57cec5SDimitry Andric   if (LangOpts.ObjC)
152*0b57cec5SDimitry Andric     createObjCRuntime();
153*0b57cec5SDimitry Andric   if (LangOpts.OpenCL)
154*0b57cec5SDimitry Andric     createOpenCLRuntime();
155*0b57cec5SDimitry Andric   if (LangOpts.OpenMP)
156*0b57cec5SDimitry Andric     createOpenMPRuntime();
157*0b57cec5SDimitry Andric   if (LangOpts.CUDA)
158*0b57cec5SDimitry Andric     createCUDARuntime();
15981ad6265SDimitry Andric   if (LangOpts.HLSL)
16081ad6265SDimitry Andric     createHLSLRuntime();
161*0b57cec5SDimitry Andric 
162*0b57cec5SDimitry Andric   // Enable TBAA unless it's suppressed. ThreadSanitizer needs TBAA even at O0.
163*0b57cec5SDimitry Andric   if (LangOpts.Sanitize.has(SanitizerKind::Thread) ||
164*0b57cec5SDimitry Andric       (!CodeGenOpts.RelaxedAliasing && CodeGenOpts.OptimizationLevel > 0))
165*0b57cec5SDimitry Andric     TBAA.reset(new CodeGenTBAA(Context, TheModule, CodeGenOpts, getLangOpts(),
166*0b57cec5SDimitry Andric                                getCXXABI().getMangleContext()));
167*0b57cec5SDimitry Andric 
168*0b57cec5SDimitry Andric   // If debug info or coverage generation is enabled, create the CGDebugInfo
169*0b57cec5SDimitry Andric   // object.
170*0b57cec5SDimitry Andric   if (CodeGenOpts.getDebugInfo() != codegenoptions::NoDebugInfo ||
171*0b57cec5SDimitry Andric       CodeGenOpts.EmitGcovArcs || CodeGenOpts.EmitGcovNotes)
172*0b57cec5SDimitry Andric     DebugInfo.reset(new CGDebugInfo(*this));
173*0b57cec5SDimitry Andric 
174*0b57cec5SDimitry Andric   Block.GlobalUniqueCount = 0;
175*0b57cec5SDimitry Andric 
176*0b57cec5SDimitry Andric   if (C.getLangOpts().ObjC)
177*0b57cec5SDimitry Andric     ObjCData.reset(new ObjCEntrypoints());
178*0b57cec5SDimitry Andric 
179*0b57cec5SDimitry Andric   if (CodeGenOpts.hasProfileClangUse()) {
180*0b57cec5SDimitry Andric     auto ReaderOrErr = llvm::IndexedInstrProfReader::create(
181*0b57cec5SDimitry Andric         CodeGenOpts.ProfileInstrumentUsePath, CodeGenOpts.ProfileRemappingFile);
182*0b57cec5SDimitry Andric     if (auto E = ReaderOrErr.takeError()) {
183*0b57cec5SDimitry Andric       unsigned DiagID = Diags.getCustomDiagID(DiagnosticsEngine::Error,
184*0b57cec5SDimitry Andric                                               "Could not read profile %0: %1");
185*0b57cec5SDimitry Andric       llvm::handleAllErrors(std::move(E), [&](const llvm::ErrorInfoBase &EI) {
186*0b57cec5SDimitry Andric         getDiags().Report(DiagID) << CodeGenOpts.ProfileInstrumentUsePath
187*0b57cec5SDimitry Andric                                   << EI.message();
188*0b57cec5SDimitry Andric       });
189*0b57cec5SDimitry Andric     } else
190*0b57cec5SDimitry Andric       PGOReader = std::move(ReaderOrErr.get());
191*0b57cec5SDimitry Andric   }
192*0b57cec5SDimitry Andric 
193*0b57cec5SDimitry Andric   // If coverage mapping generation is enabled, create the
194*0b57cec5SDimitry Andric   // CoverageMappingModuleGen object.
195*0b57cec5SDimitry Andric   if (CodeGenOpts.CoverageMapping)
196*0b57cec5SDimitry Andric     CoverageMapping.reset(new CoverageMappingModuleGen(*this, *CoverageInfo));
197fe6060f1SDimitry Andric 
198fe6060f1SDimitry Andric   // Generate the module name hash here if needed.
199fe6060f1SDimitry Andric   if (CodeGenOpts.UniqueInternalLinkageNames &&
200fe6060f1SDimitry Andric       !getModule().getSourceFileName().empty()) {
201fe6060f1SDimitry Andric     std::string Path = getModule().getSourceFileName();
202fe6060f1SDimitry Andric     // Check if a path substitution is needed from the MacroPrefixMap.
2036e75b2fbSDimitry Andric     for (const auto &Entry : LangOpts.MacroPrefixMap)
204fe6060f1SDimitry Andric       if (Path.rfind(Entry.first, 0) != std::string::npos) {
205fe6060f1SDimitry Andric         Path = Entry.second + Path.substr(Entry.first.size());
206fe6060f1SDimitry Andric         break;
207fe6060f1SDimitry Andric       }
208fe6060f1SDimitry Andric     llvm::MD5 Md5;
209fe6060f1SDimitry Andric     Md5.update(Path);
210fe6060f1SDimitry Andric     llvm::MD5::MD5Result R;
211fe6060f1SDimitry Andric     Md5.final(R);
212fe6060f1SDimitry Andric     SmallString<32> Str;
213fe6060f1SDimitry Andric     llvm::MD5::stringifyResult(R, Str);
214fe6060f1SDimitry Andric     // Convert MD5hash to Decimal. Demangler suffixes can either contain
215fe6060f1SDimitry Andric     // numbers or characters but not both.
216fe6060f1SDimitry Andric     llvm::APInt IntHash(128, Str.str(), 16);
217fe6060f1SDimitry Andric     // Prepend "__uniq" before the hash for tools like profilers to understand
218fe6060f1SDimitry Andric     // that this symbol is of internal linkage type.  The "__uniq" is the
219fe6060f1SDimitry Andric     // pre-determined prefix that is used to tell tools that this symbol was
220fe6060f1SDimitry Andric     // created with -funique-internal-linakge-symbols and the tools can strip or
221fe6060f1SDimitry Andric     // keep the prefix as needed.
222fe6060f1SDimitry Andric     ModuleNameHash = (Twine(".__uniq.") +
223fe6060f1SDimitry Andric         Twine(toString(IntHash, /* Radix = */ 10, /* Signed = */false))).str();
224fe6060f1SDimitry Andric   }
225*0b57cec5SDimitry Andric }
226*0b57cec5SDimitry Andric 
227*0b57cec5SDimitry Andric CodeGenModule::~CodeGenModule() {}
228*0b57cec5SDimitry Andric 
229*0b57cec5SDimitry Andric void CodeGenModule::createObjCRuntime() {
230*0b57cec5SDimitry Andric   // This is just isGNUFamily(), but we want to force implementors of
231*0b57cec5SDimitry Andric   // new ABIs to decide how best to do this.
232*0b57cec5SDimitry Andric   switch (LangOpts.ObjCRuntime.getKind()) {
233*0b57cec5SDimitry Andric   case ObjCRuntime::GNUstep:
234*0b57cec5SDimitry Andric   case ObjCRuntime::GCC:
235*0b57cec5SDimitry Andric   case ObjCRuntime::ObjFW:
236*0b57cec5SDimitry Andric     ObjCRuntime.reset(CreateGNUObjCRuntime(*this));
237*0b57cec5SDimitry Andric     return;
238*0b57cec5SDimitry Andric 
239*0b57cec5SDimitry Andric   case ObjCRuntime::FragileMacOSX:
240*0b57cec5SDimitry Andric   case ObjCRuntime::MacOSX:
241*0b57cec5SDimitry Andric   case ObjCRuntime::iOS:
242*0b57cec5SDimitry Andric   case ObjCRuntime::WatchOS:
243*0b57cec5SDimitry Andric     ObjCRuntime.reset(CreateMacObjCRuntime(*this));
244*0b57cec5SDimitry Andric     return;
245*0b57cec5SDimitry Andric   }
246*0b57cec5SDimitry Andric   llvm_unreachable("bad runtime kind");
247*0b57cec5SDimitry Andric }
248*0b57cec5SDimitry Andric 
249*0b57cec5SDimitry Andric void CodeGenModule::createOpenCLRuntime() {
250*0b57cec5SDimitry Andric   OpenCLRuntime.reset(new CGOpenCLRuntime(*this));
251*0b57cec5SDimitry Andric }
252*0b57cec5SDimitry Andric 
253*0b57cec5SDimitry Andric void CodeGenModule::createOpenMPRuntime() {
254*0b57cec5SDimitry Andric   // Select a specialized code generation class based on the target, if any.
255*0b57cec5SDimitry Andric   // If it does not exist use the default implementation.
256*0b57cec5SDimitry Andric   switch (getTriple().getArch()) {
257*0b57cec5SDimitry Andric   case llvm::Triple::nvptx:
258*0b57cec5SDimitry Andric   case llvm::Triple::nvptx64:
259e8d8bef9SDimitry Andric   case llvm::Triple::amdgcn:
260e8d8bef9SDimitry Andric     assert(getLangOpts().OpenMPIsDevice &&
261349cc55cSDimitry Andric            "OpenMP AMDGPU/NVPTX is only prepared to deal with device code.");
262349cc55cSDimitry Andric     OpenMPRuntime.reset(new CGOpenMPRuntimeGPU(*this));
263e8d8bef9SDimitry Andric     break;
264*0b57cec5SDimitry Andric   default:
265*0b57cec5SDimitry Andric     if (LangOpts.OpenMPSimd)
266*0b57cec5SDimitry Andric       OpenMPRuntime.reset(new CGOpenMPSIMDRuntime(*this));
267*0b57cec5SDimitry Andric     else
268*0b57cec5SDimitry Andric       OpenMPRuntime.reset(new CGOpenMPRuntime(*this));
269*0b57cec5SDimitry Andric     break;
270*0b57cec5SDimitry Andric   }
271*0b57cec5SDimitry Andric }
272*0b57cec5SDimitry Andric 
273*0b57cec5SDimitry Andric void CodeGenModule::createCUDARuntime() {
274*0b57cec5SDimitry Andric   CUDARuntime.reset(CreateNVCUDARuntime(*this));
275*0b57cec5SDimitry Andric }
276*0b57cec5SDimitry Andric 
27781ad6265SDimitry Andric void CodeGenModule::createHLSLRuntime() {
27881ad6265SDimitry Andric   HLSLRuntime.reset(new CGHLSLRuntime(*this));
27981ad6265SDimitry Andric }
28081ad6265SDimitry Andric 
281*0b57cec5SDimitry Andric void CodeGenModule::addReplacement(StringRef Name, llvm::Constant *C) {
282*0b57cec5SDimitry Andric   Replacements[Name] = C;
283*0b57cec5SDimitry Andric }
284*0b57cec5SDimitry Andric 
285*0b57cec5SDimitry Andric void CodeGenModule::applyReplacements() {
286*0b57cec5SDimitry Andric   for (auto &I : Replacements) {
287*0b57cec5SDimitry Andric     StringRef MangledName = I.first();
288*0b57cec5SDimitry Andric     llvm::Constant *Replacement = I.second;
289*0b57cec5SDimitry Andric     llvm::GlobalValue *Entry = GetGlobalValue(MangledName);
290*0b57cec5SDimitry Andric     if (!Entry)
291*0b57cec5SDimitry Andric       continue;
292*0b57cec5SDimitry Andric     auto *OldF = cast<llvm::Function>(Entry);
293*0b57cec5SDimitry Andric     auto *NewF = dyn_cast<llvm::Function>(Replacement);
294*0b57cec5SDimitry Andric     if (!NewF) {
295*0b57cec5SDimitry Andric       if (auto *Alias = dyn_cast<llvm::GlobalAlias>(Replacement)) {
296*0b57cec5SDimitry Andric         NewF = dyn_cast<llvm::Function>(Alias->getAliasee());
297*0b57cec5SDimitry Andric       } else {
298*0b57cec5SDimitry Andric         auto *CE = cast<llvm::ConstantExpr>(Replacement);
299*0b57cec5SDimitry Andric         assert(CE->getOpcode() == llvm::Instruction::BitCast ||
300*0b57cec5SDimitry Andric                CE->getOpcode() == llvm::Instruction::GetElementPtr);
301*0b57cec5SDimitry Andric         NewF = dyn_cast<llvm::Function>(CE->getOperand(0));
302*0b57cec5SDimitry Andric       }
303*0b57cec5SDimitry Andric     }
304*0b57cec5SDimitry Andric 
305*0b57cec5SDimitry Andric     // Replace old with new, but keep the old order.
306*0b57cec5SDimitry Andric     OldF->replaceAllUsesWith(Replacement);
307*0b57cec5SDimitry Andric     if (NewF) {
308*0b57cec5SDimitry Andric       NewF->removeFromParent();
309*0b57cec5SDimitry Andric       OldF->getParent()->getFunctionList().insertAfter(OldF->getIterator(),
310*0b57cec5SDimitry Andric                                                        NewF);
311*0b57cec5SDimitry Andric     }
312*0b57cec5SDimitry Andric     OldF->eraseFromParent();
313*0b57cec5SDimitry Andric   }
314*0b57cec5SDimitry Andric }
315*0b57cec5SDimitry Andric 
316*0b57cec5SDimitry Andric void CodeGenModule::addGlobalValReplacement(llvm::GlobalValue *GV, llvm::Constant *C) {
317*0b57cec5SDimitry Andric   GlobalValReplacements.push_back(std::make_pair(GV, C));
318*0b57cec5SDimitry Andric }
319*0b57cec5SDimitry Andric 
320*0b57cec5SDimitry Andric void CodeGenModule::applyGlobalValReplacements() {
321*0b57cec5SDimitry Andric   for (auto &I : GlobalValReplacements) {
322*0b57cec5SDimitry Andric     llvm::GlobalValue *GV = I.first;
323*0b57cec5SDimitry Andric     llvm::Constant *C = I.second;
324*0b57cec5SDimitry Andric 
325*0b57cec5SDimitry Andric     GV->replaceAllUsesWith(C);
326*0b57cec5SDimitry Andric     GV->eraseFromParent();
327*0b57cec5SDimitry Andric   }
328*0b57cec5SDimitry Andric }
329*0b57cec5SDimitry Andric 
330*0b57cec5SDimitry Andric // This is only used in aliases that we created and we know they have a
331*0b57cec5SDimitry Andric // linear structure.
332349cc55cSDimitry Andric static const llvm::GlobalValue *getAliasedGlobal(const llvm::GlobalValue *GV) {
333349cc55cSDimitry Andric   const llvm::Constant *C;
334349cc55cSDimitry Andric   if (auto *GA = dyn_cast<llvm::GlobalAlias>(GV))
335349cc55cSDimitry Andric     C = GA->getAliasee();
336349cc55cSDimitry Andric   else if (auto *GI = dyn_cast<llvm::GlobalIFunc>(GV))
337349cc55cSDimitry Andric     C = GI->getResolver();
338349cc55cSDimitry Andric   else
339349cc55cSDimitry Andric     return GV;
340349cc55cSDimitry Andric 
341349cc55cSDimitry Andric   const auto *AliaseeGV = dyn_cast<llvm::GlobalValue>(C->stripPointerCasts());
342349cc55cSDimitry Andric   if (!AliaseeGV)
343*0b57cec5SDimitry Andric     return nullptr;
344349cc55cSDimitry Andric 
345349cc55cSDimitry Andric   const llvm::GlobalValue *FinalGV = AliaseeGV->getAliaseeObject();
346349cc55cSDimitry Andric   if (FinalGV == GV)
347*0b57cec5SDimitry Andric     return nullptr;
348349cc55cSDimitry Andric 
349349cc55cSDimitry Andric   return FinalGV;
350*0b57cec5SDimitry Andric }
351349cc55cSDimitry Andric 
352349cc55cSDimitry Andric static bool checkAliasedGlobal(DiagnosticsEngine &Diags,
353349cc55cSDimitry Andric                                SourceLocation Location, bool IsIFunc,
354349cc55cSDimitry Andric                                const llvm::GlobalValue *Alias,
355349cc55cSDimitry Andric                                const llvm::GlobalValue *&GV) {
356349cc55cSDimitry Andric   GV = getAliasedGlobal(Alias);
357349cc55cSDimitry Andric   if (!GV) {
358349cc55cSDimitry Andric     Diags.Report(Location, diag::err_cyclic_alias) << IsIFunc;
359349cc55cSDimitry Andric     return false;
360349cc55cSDimitry Andric   }
361349cc55cSDimitry Andric 
362349cc55cSDimitry Andric   if (GV->isDeclaration()) {
363349cc55cSDimitry Andric     Diags.Report(Location, diag::err_alias_to_undefined) << IsIFunc << IsIFunc;
364349cc55cSDimitry Andric     return false;
365349cc55cSDimitry Andric   }
366349cc55cSDimitry Andric 
367349cc55cSDimitry Andric   if (IsIFunc) {
368349cc55cSDimitry Andric     // Check resolver function type.
369349cc55cSDimitry Andric     const auto *F = dyn_cast<llvm::Function>(GV);
370349cc55cSDimitry Andric     if (!F) {
371349cc55cSDimitry Andric       Diags.Report(Location, diag::err_alias_to_undefined)
372349cc55cSDimitry Andric           << IsIFunc << IsIFunc;
373349cc55cSDimitry Andric       return false;
374349cc55cSDimitry Andric     }
375349cc55cSDimitry Andric 
376349cc55cSDimitry Andric     llvm::FunctionType *FTy = F->getFunctionType();
377349cc55cSDimitry Andric     if (!FTy->getReturnType()->isPointerTy()) {
378349cc55cSDimitry Andric       Diags.Report(Location, diag::err_ifunc_resolver_return);
379349cc55cSDimitry Andric       return false;
380349cc55cSDimitry Andric     }
381349cc55cSDimitry Andric   }
382349cc55cSDimitry Andric 
383349cc55cSDimitry Andric   return true;
384*0b57cec5SDimitry Andric }
385*0b57cec5SDimitry Andric 
386*0b57cec5SDimitry Andric void CodeGenModule::checkAliases() {
387*0b57cec5SDimitry Andric   // Check if the constructed aliases are well formed. It is really unfortunate
388*0b57cec5SDimitry Andric   // that we have to do this in CodeGen, but we only construct mangled names
389*0b57cec5SDimitry Andric   // and aliases during codegen.
390*0b57cec5SDimitry Andric   bool Error = false;
391*0b57cec5SDimitry Andric   DiagnosticsEngine &Diags = getDiags();
392*0b57cec5SDimitry Andric   for (const GlobalDecl &GD : Aliases) {
393*0b57cec5SDimitry Andric     const auto *D = cast<ValueDecl>(GD.getDecl());
394*0b57cec5SDimitry Andric     SourceLocation Location;
395*0b57cec5SDimitry Andric     bool IsIFunc = D->hasAttr<IFuncAttr>();
396*0b57cec5SDimitry Andric     if (const Attr *A = D->getDefiningAttr())
397*0b57cec5SDimitry Andric       Location = A->getLocation();
398*0b57cec5SDimitry Andric     else
399*0b57cec5SDimitry Andric       llvm_unreachable("Not an alias or ifunc?");
400349cc55cSDimitry Andric 
401*0b57cec5SDimitry Andric     StringRef MangledName = getMangledName(GD);
402349cc55cSDimitry Andric     llvm::GlobalValue *Alias = GetGlobalValue(MangledName);
403349cc55cSDimitry Andric     const llvm::GlobalValue *GV = nullptr;
404349cc55cSDimitry Andric     if (!checkAliasedGlobal(Diags, Location, IsIFunc, Alias, GV)) {
405*0b57cec5SDimitry Andric       Error = true;
406349cc55cSDimitry Andric       continue;
407*0b57cec5SDimitry Andric     }
408*0b57cec5SDimitry Andric 
409349cc55cSDimitry Andric     llvm::Constant *Aliasee =
410349cc55cSDimitry Andric         IsIFunc ? cast<llvm::GlobalIFunc>(Alias)->getResolver()
411349cc55cSDimitry Andric                 : cast<llvm::GlobalAlias>(Alias)->getAliasee();
412349cc55cSDimitry Andric 
413*0b57cec5SDimitry Andric     llvm::GlobalValue *AliaseeGV;
414*0b57cec5SDimitry Andric     if (auto CE = dyn_cast<llvm::ConstantExpr>(Aliasee))
415*0b57cec5SDimitry Andric       AliaseeGV = cast<llvm::GlobalValue>(CE->getOperand(0));
416*0b57cec5SDimitry Andric     else
417*0b57cec5SDimitry Andric       AliaseeGV = cast<llvm::GlobalValue>(Aliasee);
418*0b57cec5SDimitry Andric 
419*0b57cec5SDimitry Andric     if (const SectionAttr *SA = D->getAttr<SectionAttr>()) {
420*0b57cec5SDimitry Andric       StringRef AliasSection = SA->getName();
421*0b57cec5SDimitry Andric       if (AliasSection != AliaseeGV->getSection())
422*0b57cec5SDimitry Andric         Diags.Report(SA->getLocation(), diag::warn_alias_with_section)
423*0b57cec5SDimitry Andric             << AliasSection << IsIFunc << IsIFunc;
424*0b57cec5SDimitry Andric     }
425*0b57cec5SDimitry Andric 
426*0b57cec5SDimitry Andric     // We have to handle alias to weak aliases in here. LLVM itself disallows
427*0b57cec5SDimitry Andric     // this since the object semantics would not match the IL one. For
428*0b57cec5SDimitry Andric     // compatibility with gcc we implement it by just pointing the alias
429*0b57cec5SDimitry Andric     // to its aliasee's aliasee. We also warn, since the user is probably
430*0b57cec5SDimitry Andric     // expecting the link to be weak.
431349cc55cSDimitry Andric     if (auto *GA = dyn_cast<llvm::GlobalAlias>(AliaseeGV)) {
432*0b57cec5SDimitry Andric       if (GA->isInterposable()) {
433*0b57cec5SDimitry Andric         Diags.Report(Location, diag::warn_alias_to_weak_alias)
434*0b57cec5SDimitry Andric             << GV->getName() << GA->getName() << IsIFunc;
435*0b57cec5SDimitry Andric         Aliasee = llvm::ConstantExpr::getPointerBitCastOrAddrSpaceCast(
436349cc55cSDimitry Andric             GA->getAliasee(), Alias->getType());
437349cc55cSDimitry Andric 
438349cc55cSDimitry Andric         if (IsIFunc)
439349cc55cSDimitry Andric           cast<llvm::GlobalIFunc>(Alias)->setResolver(Aliasee);
440349cc55cSDimitry Andric         else
441349cc55cSDimitry Andric           cast<llvm::GlobalAlias>(Alias)->setAliasee(Aliasee);
442*0b57cec5SDimitry Andric       }
443*0b57cec5SDimitry Andric     }
444*0b57cec5SDimitry Andric   }
445*0b57cec5SDimitry Andric   if (!Error)
446*0b57cec5SDimitry Andric     return;
447*0b57cec5SDimitry Andric 
448*0b57cec5SDimitry Andric   for (const GlobalDecl &GD : Aliases) {
449*0b57cec5SDimitry Andric     StringRef MangledName = getMangledName(GD);
450349cc55cSDimitry Andric     llvm::GlobalValue *Alias = GetGlobalValue(MangledName);
451*0b57cec5SDimitry Andric     Alias->replaceAllUsesWith(llvm::UndefValue::get(Alias->getType()));
452*0b57cec5SDimitry Andric     Alias->eraseFromParent();
453*0b57cec5SDimitry Andric   }
454*0b57cec5SDimitry Andric }
455*0b57cec5SDimitry Andric 
456*0b57cec5SDimitry Andric void CodeGenModule::clear() {
457*0b57cec5SDimitry Andric   DeferredDeclsToEmit.clear();
458753f127fSDimitry Andric   EmittedDeferredDecls.clear();
459*0b57cec5SDimitry Andric   if (OpenMPRuntime)
460*0b57cec5SDimitry Andric     OpenMPRuntime->clear();
461*0b57cec5SDimitry Andric }
462*0b57cec5SDimitry Andric 
463*0b57cec5SDimitry Andric void InstrProfStats::reportDiagnostics(DiagnosticsEngine &Diags,
464*0b57cec5SDimitry Andric                                        StringRef MainFile) {
465*0b57cec5SDimitry Andric   if (!hasDiagnostics())
466*0b57cec5SDimitry Andric     return;
467*0b57cec5SDimitry Andric   if (VisitedInMainFile > 0 && VisitedInMainFile == MissingInMainFile) {
468*0b57cec5SDimitry Andric     if (MainFile.empty())
469*0b57cec5SDimitry Andric       MainFile = "<stdin>";
470*0b57cec5SDimitry Andric     Diags.Report(diag::warn_profile_data_unprofiled) << MainFile;
471*0b57cec5SDimitry Andric   } else {
472*0b57cec5SDimitry Andric     if (Mismatched > 0)
473*0b57cec5SDimitry Andric       Diags.Report(diag::warn_profile_data_out_of_date) << Visited << Mismatched;
474*0b57cec5SDimitry Andric 
475*0b57cec5SDimitry Andric     if (Missing > 0)
476*0b57cec5SDimitry Andric       Diags.Report(diag::warn_profile_data_missing) << Visited << Missing;
477*0b57cec5SDimitry Andric   }
478*0b57cec5SDimitry Andric }
479*0b57cec5SDimitry Andric 
480e8d8bef9SDimitry Andric static void setVisibilityFromDLLStorageClass(const clang::LangOptions &LO,
481e8d8bef9SDimitry Andric                                              llvm::Module &M) {
482e8d8bef9SDimitry Andric   if (!LO.VisibilityFromDLLStorageClass)
483e8d8bef9SDimitry Andric     return;
484e8d8bef9SDimitry Andric 
485e8d8bef9SDimitry Andric   llvm::GlobalValue::VisibilityTypes DLLExportVisibility =
486e8d8bef9SDimitry Andric       CodeGenModule::GetLLVMVisibility(LO.getDLLExportVisibility());
487e8d8bef9SDimitry Andric   llvm::GlobalValue::VisibilityTypes NoDLLStorageClassVisibility =
488e8d8bef9SDimitry Andric       CodeGenModule::GetLLVMVisibility(LO.getNoDLLStorageClassVisibility());
489e8d8bef9SDimitry Andric   llvm::GlobalValue::VisibilityTypes ExternDeclDLLImportVisibility =
490e8d8bef9SDimitry Andric       CodeGenModule::GetLLVMVisibility(LO.getExternDeclDLLImportVisibility());
491e8d8bef9SDimitry Andric   llvm::GlobalValue::VisibilityTypes ExternDeclNoDLLStorageClassVisibility =
492e8d8bef9SDimitry Andric       CodeGenModule::GetLLVMVisibility(
493e8d8bef9SDimitry Andric           LO.getExternDeclNoDLLStorageClassVisibility());
494e8d8bef9SDimitry Andric 
495e8d8bef9SDimitry Andric   for (llvm::GlobalValue &GV : M.global_values()) {
496e8d8bef9SDimitry Andric     if (GV.hasAppendingLinkage() || GV.hasLocalLinkage())
497e8d8bef9SDimitry Andric       continue;
498e8d8bef9SDimitry Andric 
499e8d8bef9SDimitry Andric     // Reset DSO locality before setting the visibility. This removes
500e8d8bef9SDimitry Andric     // any effects that visibility options and annotations may have
501e8d8bef9SDimitry Andric     // had on the DSO locality. Setting the visibility will implicitly set
502e8d8bef9SDimitry Andric     // appropriate globals to DSO Local; however, this will be pessimistic
503e8d8bef9SDimitry Andric     // w.r.t. to the normal compiler IRGen.
504e8d8bef9SDimitry Andric     GV.setDSOLocal(false);
505e8d8bef9SDimitry Andric 
506e8d8bef9SDimitry Andric     if (GV.isDeclarationForLinker()) {
507e8d8bef9SDimitry Andric       GV.setVisibility(GV.getDLLStorageClass() ==
508e8d8bef9SDimitry Andric                                llvm::GlobalValue::DLLImportStorageClass
509e8d8bef9SDimitry Andric                            ? ExternDeclDLLImportVisibility
510e8d8bef9SDimitry Andric                            : ExternDeclNoDLLStorageClassVisibility);
511e8d8bef9SDimitry Andric     } else {
512e8d8bef9SDimitry Andric       GV.setVisibility(GV.getDLLStorageClass() ==
513e8d8bef9SDimitry Andric                                llvm::GlobalValue::DLLExportStorageClass
514e8d8bef9SDimitry Andric                            ? DLLExportVisibility
515e8d8bef9SDimitry Andric                            : NoDLLStorageClassVisibility);
516e8d8bef9SDimitry Andric     }
517e8d8bef9SDimitry Andric 
518e8d8bef9SDimitry Andric     GV.setDLLStorageClass(llvm::GlobalValue::DefaultStorageClass);
519e8d8bef9SDimitry Andric   }
520e8d8bef9SDimitry Andric }
521e8d8bef9SDimitry Andric 
522*0b57cec5SDimitry Andric void CodeGenModule::Release() {
523fcaf7f86SDimitry Andric   Module *Primary = getContext().getModuleForCodeGen();
52461cfbce3SDimitry Andric   if (CXX20ModuleInits && Primary && !Primary->isHeaderLikeModule())
525fcaf7f86SDimitry Andric     EmitModuleInitializers(Primary);
526*0b57cec5SDimitry Andric   EmitDeferred();
527753f127fSDimitry Andric   DeferredDecls.insert(EmittedDeferredDecls.begin(),
528753f127fSDimitry Andric                        EmittedDeferredDecls.end());
529753f127fSDimitry Andric   EmittedDeferredDecls.clear();
530*0b57cec5SDimitry Andric   EmitVTablesOpportunistically();
531*0b57cec5SDimitry Andric   applyGlobalValReplacements();
532*0b57cec5SDimitry Andric   applyReplacements();
533*0b57cec5SDimitry Andric   emitMultiVersionFunctions();
534fcaf7f86SDimitry Andric   if (CXX20ModuleInits && Primary && Primary->isInterfaceOrPartition())
535fcaf7f86SDimitry Andric     EmitCXXModuleInitFunc(Primary);
536fcaf7f86SDimitry Andric   else
537*0b57cec5SDimitry Andric     EmitCXXGlobalInitFunc();
5385ffd83dbSDimitry Andric   EmitCXXGlobalCleanUpFunc();
539*0b57cec5SDimitry Andric   registerGlobalDtorsWithAtExit();
540*0b57cec5SDimitry Andric   EmitCXXThreadLocalInitFunc();
541*0b57cec5SDimitry Andric   if (ObjCRuntime)
542*0b57cec5SDimitry Andric     if (llvm::Function *ObjCInitFunction = ObjCRuntime->ModuleInitFunction())
543*0b57cec5SDimitry Andric       AddGlobalCtor(ObjCInitFunction);
544fe6060f1SDimitry Andric   if (Context.getLangOpts().CUDA && CUDARuntime) {
545fe6060f1SDimitry Andric     if (llvm::Function *CudaCtorFunction = CUDARuntime->finalizeModule())
546*0b57cec5SDimitry Andric       AddGlobalCtor(CudaCtorFunction);
547*0b57cec5SDimitry Andric   }
548*0b57cec5SDimitry Andric   if (OpenMPRuntime) {
549*0b57cec5SDimitry Andric     if (llvm::Function *OpenMPRequiresDirectiveRegFun =
550*0b57cec5SDimitry Andric             OpenMPRuntime->emitRequiresDirectiveRegFun()) {
551*0b57cec5SDimitry Andric       AddGlobalCtor(OpenMPRequiresDirectiveRegFun, 0);
552*0b57cec5SDimitry Andric     }
553a7dea167SDimitry Andric     OpenMPRuntime->createOffloadEntriesAndInfoMetadata();
554*0b57cec5SDimitry Andric     OpenMPRuntime->clear();
555*0b57cec5SDimitry Andric   }
556*0b57cec5SDimitry Andric   if (PGOReader) {
557*0b57cec5SDimitry Andric     getModule().setProfileSummary(
558*0b57cec5SDimitry Andric         PGOReader->getSummary(/* UseCS */ false).getMD(VMContext),
559*0b57cec5SDimitry Andric         llvm::ProfileSummary::PSK_Instr);
560*0b57cec5SDimitry Andric     if (PGOStats.hasDiagnostics())
561*0b57cec5SDimitry Andric       PGOStats.reportDiagnostics(getDiags(), getCodeGenOpts().MainFileName);
562*0b57cec5SDimitry Andric   }
563*0b57cec5SDimitry Andric   EmitCtorList(GlobalCtors, "llvm.global_ctors");
564*0b57cec5SDimitry Andric   EmitCtorList(GlobalDtors, "llvm.global_dtors");
565*0b57cec5SDimitry Andric   EmitGlobalAnnotations();
566*0b57cec5SDimitry Andric   EmitStaticExternCAliases();
56781ad6265SDimitry Andric   checkAliases();
568*0b57cec5SDimitry Andric   EmitDeferredUnusedCoverageMappings();
569fe6060f1SDimitry Andric   CodeGenPGO(*this).setValueProfilingFlag(getModule());
570*0b57cec5SDimitry Andric   if (CoverageMapping)
571*0b57cec5SDimitry Andric     CoverageMapping->emit();
572*0b57cec5SDimitry Andric   if (CodeGenOpts.SanitizeCfiCrossDso) {
573*0b57cec5SDimitry Andric     CodeGenFunction(*this).EmitCfiCheckFail();
574*0b57cec5SDimitry Andric     CodeGenFunction(*this).EmitCfiCheckStub();
575*0b57cec5SDimitry Andric   }
576*0b57cec5SDimitry Andric   emitAtAvailableLinkGuard();
57781ad6265SDimitry Andric   if (Context.getTargetInfo().getTriple().isWasm())
5785ffd83dbSDimitry Andric     EmitMainVoidAlias();
579fe6060f1SDimitry Andric 
58081ad6265SDimitry Andric   if (getTriple().isAMDGPU()) {
581fe6060f1SDimitry Andric     // Emit reference of __amdgpu_device_library_preserve_asan_functions to
582fe6060f1SDimitry Andric     // preserve ASAN functions in bitcode libraries.
58381ad6265SDimitry Andric     if (LangOpts.Sanitize.has(SanitizerKind::Address)) {
584fe6060f1SDimitry Andric       auto *FT = llvm::FunctionType::get(VoidTy, {});
585fe6060f1SDimitry Andric       auto *F = llvm::Function::Create(
586fe6060f1SDimitry Andric           FT, llvm::GlobalValue::ExternalLinkage,
587fe6060f1SDimitry Andric           "__amdgpu_device_library_preserve_asan_functions", &getModule());
588fe6060f1SDimitry Andric       auto *Var = new llvm::GlobalVariable(
589fe6060f1SDimitry Andric           getModule(), FT->getPointerTo(),
590fe6060f1SDimitry Andric           /*isConstant=*/true, llvm::GlobalValue::WeakAnyLinkage, F,
591fe6060f1SDimitry Andric           "__amdgpu_device_library_preserve_asan_functions_ptr", nullptr,
592fe6060f1SDimitry Andric           llvm::GlobalVariable::NotThreadLocal);
593fe6060f1SDimitry Andric       addCompilerUsedGlobal(Var);
594fe6060f1SDimitry Andric     }
59581ad6265SDimitry Andric     // Emit amdgpu_code_object_version module flag, which is code object version
59681ad6265SDimitry Andric     // times 100.
59781ad6265SDimitry Andric     // ToDo: Enable module flag for all code object version when ROCm device
59881ad6265SDimitry Andric     // library is ready.
59981ad6265SDimitry Andric     if (getTarget().getTargetOpts().CodeObjectVersion == TargetOptions::COV_5) {
60081ad6265SDimitry Andric       getModule().addModuleFlag(llvm::Module::Error,
60181ad6265SDimitry Andric                                 "amdgpu_code_object_version",
60281ad6265SDimitry Andric                                 getTarget().getTargetOpts().CodeObjectVersion);
60381ad6265SDimitry Andric     }
60481ad6265SDimitry Andric   }
60581ad6265SDimitry Andric 
60681ad6265SDimitry Andric   // Emit a global array containing all external kernels or device variables
60781ad6265SDimitry Andric   // used by host functions and mark it as used for CUDA/HIP. This is necessary
60881ad6265SDimitry Andric   // to get kernels or device variables in archives linked in even if these
60981ad6265SDimitry Andric   // kernels or device variables are only used in host functions.
61081ad6265SDimitry Andric   if (!Context.CUDAExternalDeviceDeclODRUsedByHost.empty()) {
61181ad6265SDimitry Andric     SmallVector<llvm::Constant *, 8> UsedArray;
61281ad6265SDimitry Andric     for (auto D : Context.CUDAExternalDeviceDeclODRUsedByHost) {
61381ad6265SDimitry Andric       GlobalDecl GD;
61481ad6265SDimitry Andric       if (auto *FD = dyn_cast<FunctionDecl>(D))
61581ad6265SDimitry Andric         GD = GlobalDecl(FD, KernelReferenceKind::Kernel);
61681ad6265SDimitry Andric       else
61781ad6265SDimitry Andric         GD = GlobalDecl(D);
61881ad6265SDimitry Andric       UsedArray.push_back(llvm::ConstantExpr::getPointerBitCastOrAddrSpaceCast(
61981ad6265SDimitry Andric           GetAddrOfGlobal(GD), Int8PtrTy));
62081ad6265SDimitry Andric     }
62181ad6265SDimitry Andric 
62281ad6265SDimitry Andric     llvm::ArrayType *ATy = llvm::ArrayType::get(Int8PtrTy, UsedArray.size());
62381ad6265SDimitry Andric 
62481ad6265SDimitry Andric     auto *GV = new llvm::GlobalVariable(
62581ad6265SDimitry Andric         getModule(), ATy, false, llvm::GlobalValue::InternalLinkage,
62681ad6265SDimitry Andric         llvm::ConstantArray::get(ATy, UsedArray), "__clang_gpu_used_external");
62781ad6265SDimitry Andric     addCompilerUsedGlobal(GV);
62804eeddc0SDimitry Andric   }
629fe6060f1SDimitry Andric 
630*0b57cec5SDimitry Andric   emitLLVMUsed();
631*0b57cec5SDimitry Andric   if (SanStats)
632*0b57cec5SDimitry Andric     SanStats->finish();
633*0b57cec5SDimitry Andric 
634*0b57cec5SDimitry Andric   if (CodeGenOpts.Autolink &&
635*0b57cec5SDimitry Andric       (Context.getLangOpts().Modules || !LinkerOptionsMetadata.empty())) {
636*0b57cec5SDimitry Andric     EmitModuleLinkOptions();
637*0b57cec5SDimitry Andric   }
638*0b57cec5SDimitry Andric 
639*0b57cec5SDimitry Andric   // On ELF we pass the dependent library specifiers directly to the linker
640*0b57cec5SDimitry Andric   // without manipulating them. This is in contrast to other platforms where
641*0b57cec5SDimitry Andric   // they are mapped to a specific linker option by the compiler. This
642*0b57cec5SDimitry Andric   // difference is a result of the greater variety of ELF linkers and the fact
643*0b57cec5SDimitry Andric   // that ELF linkers tend to handle libraries in a more complicated fashion
644*0b57cec5SDimitry Andric   // than on other platforms. This forces us to defer handling the dependent
645*0b57cec5SDimitry Andric   // libs to the linker.
646*0b57cec5SDimitry Andric   //
647*0b57cec5SDimitry Andric   // CUDA/HIP device and host libraries are different. Currently there is no
648*0b57cec5SDimitry Andric   // way to differentiate dependent libraries for host or device. Existing
649*0b57cec5SDimitry Andric   // usage of #pragma comment(lib, *) is intended for host libraries on
650*0b57cec5SDimitry Andric   // Windows. Therefore emit llvm.dependent-libraries only for host.
651*0b57cec5SDimitry Andric   if (!ELFDependentLibraries.empty() && !Context.getLangOpts().CUDAIsDevice) {
652*0b57cec5SDimitry Andric     auto *NMD = getModule().getOrInsertNamedMetadata("llvm.dependent-libraries");
653*0b57cec5SDimitry Andric     for (auto *MD : ELFDependentLibraries)
654*0b57cec5SDimitry Andric       NMD->addOperand(MD);
655*0b57cec5SDimitry Andric   }
656*0b57cec5SDimitry Andric 
657*0b57cec5SDimitry Andric   // Record mregparm value now so it is visible through rest of codegen.
658*0b57cec5SDimitry Andric   if (Context.getTargetInfo().getTriple().getArch() == llvm::Triple::x86)
659*0b57cec5SDimitry Andric     getModule().addModuleFlag(llvm::Module::Error, "NumRegisterParameters",
660*0b57cec5SDimitry Andric                               CodeGenOpts.NumRegisterParameters);
661*0b57cec5SDimitry Andric 
662*0b57cec5SDimitry Andric   if (CodeGenOpts.DwarfVersion) {
663480093f4SDimitry Andric     getModule().addModuleFlag(llvm::Module::Max, "Dwarf Version",
664*0b57cec5SDimitry Andric                               CodeGenOpts.DwarfVersion);
665*0b57cec5SDimitry Andric   }
6665ffd83dbSDimitry Andric 
667fe6060f1SDimitry Andric   if (CodeGenOpts.Dwarf64)
668fe6060f1SDimitry Andric     getModule().addModuleFlag(llvm::Module::Max, "DWARF64", 1);
669fe6060f1SDimitry Andric 
6705ffd83dbSDimitry Andric   if (Context.getLangOpts().SemanticInterposition)
6715ffd83dbSDimitry Andric     // Require various optimization to respect semantic interposition.
67204eeddc0SDimitry Andric     getModule().setSemanticInterposition(true);
6735ffd83dbSDimitry Andric 
674*0b57cec5SDimitry Andric   if (CodeGenOpts.EmitCodeView) {
675*0b57cec5SDimitry Andric     // Indicate that we want CodeView in the metadata.
676*0b57cec5SDimitry Andric     getModule().addModuleFlag(llvm::Module::Warning, "CodeView", 1);
677*0b57cec5SDimitry Andric   }
678*0b57cec5SDimitry Andric   if (CodeGenOpts.CodeViewGHash) {
679*0b57cec5SDimitry Andric     getModule().addModuleFlag(llvm::Module::Warning, "CodeViewGHash", 1);
680*0b57cec5SDimitry Andric   }
681*0b57cec5SDimitry Andric   if (CodeGenOpts.ControlFlowGuard) {
682480093f4SDimitry Andric     // Function ID tables and checks for Control Flow Guard (cfguard=2).
683480093f4SDimitry Andric     getModule().addModuleFlag(llvm::Module::Warning, "cfguard", 2);
684480093f4SDimitry Andric   } else if (CodeGenOpts.ControlFlowGuardNoChecks) {
685480093f4SDimitry Andric     // Function ID tables for Control Flow Guard (cfguard=1).
686480093f4SDimitry Andric     getModule().addModuleFlag(llvm::Module::Warning, "cfguard", 1);
687*0b57cec5SDimitry Andric   }
688fe6060f1SDimitry Andric   if (CodeGenOpts.EHContGuard) {
689fe6060f1SDimitry Andric     // Function ID tables for EH Continuation Guard.
690fe6060f1SDimitry Andric     getModule().addModuleFlag(llvm::Module::Warning, "ehcontguard", 1);
691fe6060f1SDimitry Andric   }
692*0b57cec5SDimitry Andric   if (CodeGenOpts.OptimizationLevel > 0 && CodeGenOpts.StrictVTablePointers) {
693*0b57cec5SDimitry Andric     // We don't support LTO with 2 with different StrictVTablePointers
694*0b57cec5SDimitry Andric     // FIXME: we could support it by stripping all the information introduced
695*0b57cec5SDimitry Andric     // by StrictVTablePointers.
696*0b57cec5SDimitry Andric 
697*0b57cec5SDimitry Andric     getModule().addModuleFlag(llvm::Module::Error, "StrictVTablePointers",1);
698*0b57cec5SDimitry Andric 
699*0b57cec5SDimitry Andric     llvm::Metadata *Ops[2] = {
700*0b57cec5SDimitry Andric               llvm::MDString::get(VMContext, "StrictVTablePointers"),
701*0b57cec5SDimitry Andric               llvm::ConstantAsMetadata::get(llvm::ConstantInt::get(
702*0b57cec5SDimitry Andric                   llvm::Type::getInt32Ty(VMContext), 1))};
703*0b57cec5SDimitry Andric 
704*0b57cec5SDimitry Andric     getModule().addModuleFlag(llvm::Module::Require,
705*0b57cec5SDimitry Andric                               "StrictVTablePointersRequirement",
706*0b57cec5SDimitry Andric                               llvm::MDNode::get(VMContext, Ops));
707*0b57cec5SDimitry Andric   }
7085ffd83dbSDimitry Andric   if (getModuleDebugInfo())
709*0b57cec5SDimitry Andric     // We support a single version in the linked module. The LLVM
710*0b57cec5SDimitry Andric     // parser will drop debug info with a different version number
711*0b57cec5SDimitry Andric     // (and warn about it, too).
712*0b57cec5SDimitry Andric     getModule().addModuleFlag(llvm::Module::Warning, "Debug Info Version",
713*0b57cec5SDimitry Andric                               llvm::DEBUG_METADATA_VERSION);
714*0b57cec5SDimitry Andric 
715*0b57cec5SDimitry Andric   // We need to record the widths of enums and wchar_t, so that we can generate
716*0b57cec5SDimitry Andric   // the correct build attributes in the ARM backend. wchar_size is also used by
717*0b57cec5SDimitry Andric   // TargetLibraryInfo.
718*0b57cec5SDimitry Andric   uint64_t WCharWidth =
719*0b57cec5SDimitry Andric       Context.getTypeSizeInChars(Context.getWideCharType()).getQuantity();
720*0b57cec5SDimitry Andric   getModule().addModuleFlag(llvm::Module::Error, "wchar_size", WCharWidth);
721*0b57cec5SDimitry Andric 
722*0b57cec5SDimitry Andric   llvm::Triple::ArchType Arch = Context.getTargetInfo().getTriple().getArch();
723*0b57cec5SDimitry Andric   if (   Arch == llvm::Triple::arm
724*0b57cec5SDimitry Andric       || Arch == llvm::Triple::armeb
725*0b57cec5SDimitry Andric       || Arch == llvm::Triple::thumb
726*0b57cec5SDimitry Andric       || Arch == llvm::Triple::thumbeb) {
727*0b57cec5SDimitry Andric     // The minimum width of an enum in bytes
728*0b57cec5SDimitry Andric     uint64_t EnumWidth = Context.getLangOpts().ShortEnums ? 1 : 4;
729*0b57cec5SDimitry Andric     getModule().addModuleFlag(llvm::Module::Error, "min_enum_size", EnumWidth);
730*0b57cec5SDimitry Andric   }
731*0b57cec5SDimitry Andric 
73213138422SDimitry Andric   if (Arch == llvm::Triple::riscv32 || Arch == llvm::Triple::riscv64) {
73313138422SDimitry Andric     StringRef ABIStr = Target.getABI();
73413138422SDimitry Andric     llvm::LLVMContext &Ctx = TheModule.getContext();
73513138422SDimitry Andric     getModule().addModuleFlag(llvm::Module::Error, "target-abi",
73613138422SDimitry Andric                               llvm::MDString::get(Ctx, ABIStr));
73713138422SDimitry Andric   }
73813138422SDimitry Andric 
739*0b57cec5SDimitry Andric   if (CodeGenOpts.SanitizeCfiCrossDso) {
740*0b57cec5SDimitry Andric     // Indicate that we want cross-DSO control flow integrity checks.
741*0b57cec5SDimitry Andric     getModule().addModuleFlag(llvm::Module::Override, "Cross-DSO CFI", 1);
742*0b57cec5SDimitry Andric   }
743*0b57cec5SDimitry Andric 
7445ffd83dbSDimitry Andric   if (CodeGenOpts.WholeProgramVTables) {
7455ffd83dbSDimitry Andric     // Indicate whether VFE was enabled for this module, so that the
7465ffd83dbSDimitry Andric     // vcall_visibility metadata added under whole program vtables is handled
7475ffd83dbSDimitry Andric     // appropriately in the optimizer.
7485ffd83dbSDimitry Andric     getModule().addModuleFlag(llvm::Module::Error, "Virtual Function Elim",
7495ffd83dbSDimitry Andric                               CodeGenOpts.VirtualFunctionElimination);
7505ffd83dbSDimitry Andric   }
7515ffd83dbSDimitry Andric 
752a7dea167SDimitry Andric   if (LangOpts.Sanitize.has(SanitizerKind::CFIICall)) {
753a7dea167SDimitry Andric     getModule().addModuleFlag(llvm::Module::Override,
754a7dea167SDimitry Andric                               "CFI Canonical Jump Tables",
755a7dea167SDimitry Andric                               CodeGenOpts.SanitizeCfiCanonicalJumpTables);
756a7dea167SDimitry Andric   }
757a7dea167SDimitry Andric 
758*0b57cec5SDimitry Andric   if (CodeGenOpts.CFProtectionReturn &&
759*0b57cec5SDimitry Andric       Target.checkCFProtectionReturnSupported(getDiags())) {
760*0b57cec5SDimitry Andric     // Indicate that we want to instrument return control flow protection.
761fcaf7f86SDimitry Andric     getModule().addModuleFlag(llvm::Module::Min, "cf-protection-return",
762*0b57cec5SDimitry Andric                               1);
763*0b57cec5SDimitry Andric   }
764*0b57cec5SDimitry Andric 
765*0b57cec5SDimitry Andric   if (CodeGenOpts.CFProtectionBranch &&
766*0b57cec5SDimitry Andric       Target.checkCFProtectionBranchSupported(getDiags())) {
767*0b57cec5SDimitry Andric     // Indicate that we want to instrument branch control flow protection.
768fcaf7f86SDimitry Andric     getModule().addModuleFlag(llvm::Module::Min, "cf-protection-branch",
769*0b57cec5SDimitry Andric                               1);
770*0b57cec5SDimitry Andric   }
771*0b57cec5SDimitry Andric 
77204eeddc0SDimitry Andric   if (CodeGenOpts.IBTSeal)
773fcaf7f86SDimitry Andric     getModule().addModuleFlag(llvm::Module::Min, "ibt-seal", 1);
774fcaf7f86SDimitry Andric 
775fcaf7f86SDimitry Andric   if (CodeGenOpts.FunctionReturnThunks)
776fcaf7f86SDimitry Andric     getModule().addModuleFlag(llvm::Module::Override, "function_return_thunk_extern", 1);
77704eeddc0SDimitry Andric 
7784824e7fdSDimitry Andric   // Add module metadata for return address signing (ignoring
7794824e7fdSDimitry Andric   // non-leaf/all) and stack tagging. These are actually turned on by function
7804824e7fdSDimitry Andric   // attributes, but we use module metadata to emit build attributes. This is
7814824e7fdSDimitry Andric   // needed for LTO, where the function attributes are inside bitcode
7824824e7fdSDimitry Andric   // serialised into a global variable by the time build attributes are
78381ad6265SDimitry Andric   // emitted, so we can't access them. LTO objects could be compiled with
78481ad6265SDimitry Andric   // different flags therefore module flags are set to "Min" behavior to achieve
78581ad6265SDimitry Andric   // the same end result of the normal build where e.g BTI is off if any object
78681ad6265SDimitry Andric   // doesn't support it.
7874824e7fdSDimitry Andric   if (Context.getTargetInfo().hasFeature("ptrauth") &&
7884824e7fdSDimitry Andric       LangOpts.getSignReturnAddressScope() !=
7894824e7fdSDimitry Andric           LangOptions::SignReturnAddressScopeKind::None)
7904824e7fdSDimitry Andric     getModule().addModuleFlag(llvm::Module::Override,
7914824e7fdSDimitry Andric                               "sign-return-address-buildattr", 1);
79281ad6265SDimitry Andric   if (LangOpts.Sanitize.has(SanitizerKind::MemtagStack))
7934824e7fdSDimitry Andric     getModule().addModuleFlag(llvm::Module::Override,
7944824e7fdSDimitry Andric                               "tag-stack-memory-buildattr", 1);
7954824e7fdSDimitry Andric 
7964824e7fdSDimitry Andric   if (Arch == llvm::Triple::thumb || Arch == llvm::Triple::thumbeb ||
7971fd87a68SDimitry Andric       Arch == llvm::Triple::arm || Arch == llvm::Triple::armeb ||
7984824e7fdSDimitry Andric       Arch == llvm::Triple::aarch64 || Arch == llvm::Triple::aarch64_32 ||
799e8d8bef9SDimitry Andric       Arch == llvm::Triple::aarch64_be) {
800972a253aSDimitry Andric     if (LangOpts.BranchTargetEnforcement)
80181ad6265SDimitry Andric       getModule().addModuleFlag(llvm::Module::Min, "branch-target-enforcement",
802972a253aSDimitry Andric                                 1);
803972a253aSDimitry Andric     if (LangOpts.hasSignReturnAddress())
804972a253aSDimitry Andric       getModule().addModuleFlag(llvm::Module::Min, "sign-return-address", 1);
805972a253aSDimitry Andric     if (LangOpts.isSignReturnAddressScopeAll())
80681ad6265SDimitry Andric       getModule().addModuleFlag(llvm::Module::Min, "sign-return-address-all",
807972a253aSDimitry Andric                                 1);
808972a253aSDimitry Andric     if (!LangOpts.isSignReturnAddressWithAKey())
80981ad6265SDimitry Andric       getModule().addModuleFlag(llvm::Module::Min,
810972a253aSDimitry Andric                                 "sign-return-address-with-bkey", 1);
811e8d8bef9SDimitry Andric   }
812e8d8bef9SDimitry Andric 
813e8d8bef9SDimitry Andric   if (!CodeGenOpts.MemoryProfileOutput.empty()) {
814e8d8bef9SDimitry Andric     llvm::LLVMContext &Ctx = TheModule.getContext();
815e8d8bef9SDimitry Andric     getModule().addModuleFlag(
816e8d8bef9SDimitry Andric         llvm::Module::Error, "MemProfProfileFilename",
817e8d8bef9SDimitry Andric         llvm::MDString::get(Ctx, CodeGenOpts.MemoryProfileOutput));
818e8d8bef9SDimitry Andric   }
819e8d8bef9SDimitry Andric 
820*0b57cec5SDimitry Andric   if (LangOpts.CUDAIsDevice && getTriple().isNVPTX()) {
821*0b57cec5SDimitry Andric     // Indicate whether __nvvm_reflect should be configured to flush denormal
822*0b57cec5SDimitry Andric     // floating point values to 0.  (This corresponds to its "__CUDA_FTZ"
823*0b57cec5SDimitry Andric     // property.)
824*0b57cec5SDimitry Andric     getModule().addModuleFlag(llvm::Module::Override, "nvvm-reflect-ftz",
8255ffd83dbSDimitry Andric                               CodeGenOpts.FP32DenormalMode.Output !=
8265ffd83dbSDimitry Andric                                   llvm::DenormalMode::IEEE);
827*0b57cec5SDimitry Andric   }
828*0b57cec5SDimitry Andric 
829fe6060f1SDimitry Andric   if (LangOpts.EHAsynch)
830fe6060f1SDimitry Andric     getModule().addModuleFlag(llvm::Module::Warning, "eh-asynch", 1);
831fe6060f1SDimitry Andric 
832fe6060f1SDimitry Andric   // Indicate whether this Module was compiled with -fopenmp
833fe6060f1SDimitry Andric   if (getLangOpts().OpenMP && !getLangOpts().OpenMPSimd)
834fe6060f1SDimitry Andric     getModule().addModuleFlag(llvm::Module::Max, "openmp", LangOpts.OpenMP);
835fe6060f1SDimitry Andric   if (getLangOpts().OpenMPIsDevice)
836fe6060f1SDimitry Andric     getModule().addModuleFlag(llvm::Module::Max, "openmp-device",
837fe6060f1SDimitry Andric                               LangOpts.OpenMP);
838fe6060f1SDimitry Andric 
839*0b57cec5SDimitry Andric   // Emit OpenCL specific module metadata: OpenCL/SPIR version.
84081ad6265SDimitry Andric   if (LangOpts.OpenCL || (LangOpts.CUDAIsDevice && getTriple().isSPIRV())) {
841*0b57cec5SDimitry Andric     EmitOpenCLMetadata();
842*0b57cec5SDimitry Andric     // Emit SPIR version.
843*0b57cec5SDimitry Andric     if (getTriple().isSPIR()) {
844*0b57cec5SDimitry Andric       // SPIR v2.0 s2.12 - The SPIR version used by the module is stored in the
845*0b57cec5SDimitry Andric       // opencl.spir.version named metadata.
846349cc55cSDimitry Andric       // C++ for OpenCL has a distinct mapping for version compatibility with
847349cc55cSDimitry Andric       // OpenCL.
848349cc55cSDimitry Andric       auto Version = LangOpts.getOpenCLCompatibleVersion();
849*0b57cec5SDimitry Andric       llvm::Metadata *SPIRVerElts[] = {
850*0b57cec5SDimitry Andric           llvm::ConstantAsMetadata::get(llvm::ConstantInt::get(
851*0b57cec5SDimitry Andric               Int32Ty, Version / 100)),
852*0b57cec5SDimitry Andric           llvm::ConstantAsMetadata::get(llvm::ConstantInt::get(
853*0b57cec5SDimitry Andric               Int32Ty, (Version / 100 > 1) ? 0 : 2))};
854*0b57cec5SDimitry Andric       llvm::NamedMDNode *SPIRVerMD =
855*0b57cec5SDimitry Andric           TheModule.getOrInsertNamedMetadata("opencl.spir.version");
856*0b57cec5SDimitry Andric       llvm::LLVMContext &Ctx = TheModule.getContext();
857*0b57cec5SDimitry Andric       SPIRVerMD->addOperand(llvm::MDNode::get(Ctx, SPIRVerElts));
858*0b57cec5SDimitry Andric     }
859*0b57cec5SDimitry Andric   }
860*0b57cec5SDimitry Andric 
86181ad6265SDimitry Andric   // HLSL related end of code gen work items.
86281ad6265SDimitry Andric   if (LangOpts.HLSL)
86381ad6265SDimitry Andric     getHLSLRuntime().finishCodeGen();
86481ad6265SDimitry Andric 
865*0b57cec5SDimitry Andric   if (uint32_t PLevel = Context.getLangOpts().PICLevel) {
866*0b57cec5SDimitry Andric     assert(PLevel < 3 && "Invalid PIC Level");
867*0b57cec5SDimitry Andric     getModule().setPICLevel(static_cast<llvm::PICLevel::Level>(PLevel));
868*0b57cec5SDimitry Andric     if (Context.getLangOpts().PIE)
869*0b57cec5SDimitry Andric       getModule().setPIELevel(static_cast<llvm::PIELevel::Level>(PLevel));
870*0b57cec5SDimitry Andric   }
871*0b57cec5SDimitry Andric 
872*0b57cec5SDimitry Andric   if (getCodeGenOpts().CodeModel.size() > 0) {
873*0b57cec5SDimitry Andric     unsigned CM = llvm::StringSwitch<unsigned>(getCodeGenOpts().CodeModel)
874*0b57cec5SDimitry Andric                   .Case("tiny", llvm::CodeModel::Tiny)
875*0b57cec5SDimitry Andric                   .Case("small", llvm::CodeModel::Small)
876*0b57cec5SDimitry Andric                   .Case("kernel", llvm::CodeModel::Kernel)
877*0b57cec5SDimitry Andric                   .Case("medium", llvm::CodeModel::Medium)
878*0b57cec5SDimitry Andric                   .Case("large", llvm::CodeModel::Large)
879*0b57cec5SDimitry Andric                   .Default(~0u);
880*0b57cec5SDimitry Andric     if (CM != ~0u) {
881*0b57cec5SDimitry Andric       llvm::CodeModel::Model codeModel = static_cast<llvm::CodeModel::Model>(CM);
882*0b57cec5SDimitry Andric       getModule().setCodeModel(codeModel);
883*0b57cec5SDimitry Andric     }
884*0b57cec5SDimitry Andric   }
885*0b57cec5SDimitry Andric 
886*0b57cec5SDimitry Andric   if (CodeGenOpts.NoPLT)
887*0b57cec5SDimitry Andric     getModule().setRtLibUseGOT();
888fe6060f1SDimitry Andric   if (CodeGenOpts.UnwindTables)
88981ad6265SDimitry Andric     getModule().setUwtable(llvm::UWTableKind(CodeGenOpts.UnwindTables));
890fe6060f1SDimitry Andric 
891fe6060f1SDimitry Andric   switch (CodeGenOpts.getFramePointer()) {
892fe6060f1SDimitry Andric   case CodeGenOptions::FramePointerKind::None:
893fe6060f1SDimitry Andric     // 0 ("none") is the default.
894fe6060f1SDimitry Andric     break;
895fe6060f1SDimitry Andric   case CodeGenOptions::FramePointerKind::NonLeaf:
896fe6060f1SDimitry Andric     getModule().setFramePointer(llvm::FramePointerKind::NonLeaf);
897fe6060f1SDimitry Andric     break;
898fe6060f1SDimitry Andric   case CodeGenOptions::FramePointerKind::All:
899fe6060f1SDimitry Andric     getModule().setFramePointer(llvm::FramePointerKind::All);
900fe6060f1SDimitry Andric     break;
901fe6060f1SDimitry Andric   }
902*0b57cec5SDimitry Andric 
903*0b57cec5SDimitry Andric   SimplifyPersonality();
904*0b57cec5SDimitry Andric 
905*0b57cec5SDimitry Andric   if (getCodeGenOpts().EmitDeclMetadata)
906*0b57cec5SDimitry Andric     EmitDeclMetadata();
907*0b57cec5SDimitry Andric 
908*0b57cec5SDimitry Andric   if (getCodeGenOpts().EmitGcovArcs || getCodeGenOpts().EmitGcovNotes)
909*0b57cec5SDimitry Andric     EmitCoverageFile();
910*0b57cec5SDimitry Andric 
9115ffd83dbSDimitry Andric   if (CGDebugInfo *DI = getModuleDebugInfo())
9125ffd83dbSDimitry Andric     DI->finalize();
913*0b57cec5SDimitry Andric 
914*0b57cec5SDimitry Andric   if (getCodeGenOpts().EmitVersionIdentMetadata)
915*0b57cec5SDimitry Andric     EmitVersionIdentMetadata();
916*0b57cec5SDimitry Andric 
917*0b57cec5SDimitry Andric   if (!getCodeGenOpts().RecordCommandLine.empty())
918*0b57cec5SDimitry Andric     EmitCommandLineMetadata();
919*0b57cec5SDimitry Andric 
920fe6060f1SDimitry Andric   if (!getCodeGenOpts().StackProtectorGuard.empty())
921fe6060f1SDimitry Andric     getModule().setStackProtectorGuard(getCodeGenOpts().StackProtectorGuard);
922fe6060f1SDimitry Andric   if (!getCodeGenOpts().StackProtectorGuardReg.empty())
923fe6060f1SDimitry Andric     getModule().setStackProtectorGuardReg(
924fe6060f1SDimitry Andric         getCodeGenOpts().StackProtectorGuardReg);
925753f127fSDimitry Andric   if (!getCodeGenOpts().StackProtectorGuardSymbol.empty())
926753f127fSDimitry Andric     getModule().setStackProtectorGuardSymbol(
927753f127fSDimitry Andric         getCodeGenOpts().StackProtectorGuardSymbol);
928fe6060f1SDimitry Andric   if (getCodeGenOpts().StackProtectorGuardOffset != INT_MAX)
929fe6060f1SDimitry Andric     getModule().setStackProtectorGuardOffset(
930fe6060f1SDimitry Andric         getCodeGenOpts().StackProtectorGuardOffset);
931fe6060f1SDimitry Andric   if (getCodeGenOpts().StackAlignment)
932fe6060f1SDimitry Andric     getModule().setOverrideStackAlignment(getCodeGenOpts().StackAlignment);
933349cc55cSDimitry Andric   if (getCodeGenOpts().SkipRaxSetup)
934349cc55cSDimitry Andric     getModule().addModuleFlag(llvm::Module::Override, "SkipRaxSetup", 1);
935fe6060f1SDimitry Andric 
9365ffd83dbSDimitry Andric   getTargetCodeGenInfo().emitTargetMetadata(*this, MangledDeclNames);
9375ffd83dbSDimitry Andric 
9385ffd83dbSDimitry Andric   EmitBackendOptionsMetadata(getCodeGenOpts());
939e8d8bef9SDimitry Andric 
94081ad6265SDimitry Andric   // If there is device offloading code embed it in the host now.
94181ad6265SDimitry Andric   EmbedObject(&getModule(), CodeGenOpts, getDiags());
94281ad6265SDimitry Andric 
943e8d8bef9SDimitry Andric   // Set visibility from DLL storage class
944e8d8bef9SDimitry Andric   // We do this at the end of LLVM IR generation; after any operation
945e8d8bef9SDimitry Andric   // that might affect the DLL storage class or the visibility, and
946e8d8bef9SDimitry Andric   // before anything that might act on these.
947e8d8bef9SDimitry Andric   setVisibilityFromDLLStorageClass(LangOpts, getModule());
948*0b57cec5SDimitry Andric }
949*0b57cec5SDimitry Andric 
950*0b57cec5SDimitry Andric void CodeGenModule::EmitOpenCLMetadata() {
951*0b57cec5SDimitry Andric   // SPIR v2.0 s2.13 - The OpenCL version used by the module is stored in the
952*0b57cec5SDimitry Andric   // opencl.ocl.version named metadata node.
953349cc55cSDimitry Andric   // C++ for OpenCL has a distinct mapping for versions compatibile with OpenCL.
954349cc55cSDimitry Andric   auto Version = LangOpts.getOpenCLCompatibleVersion();
955*0b57cec5SDimitry Andric   llvm::Metadata *OCLVerElts[] = {
956*0b57cec5SDimitry Andric       llvm::ConstantAsMetadata::get(llvm::ConstantInt::get(
957*0b57cec5SDimitry Andric           Int32Ty, Version / 100)),
958*0b57cec5SDimitry Andric       llvm::ConstantAsMetadata::get(llvm::ConstantInt::get(
959*0b57cec5SDimitry Andric           Int32Ty, (Version % 100) / 10))};
960*0b57cec5SDimitry Andric   llvm::NamedMDNode *OCLVerMD =
961*0b57cec5SDimitry Andric       TheModule.getOrInsertNamedMetadata("opencl.ocl.version");
962*0b57cec5SDimitry Andric   llvm::LLVMContext &Ctx = TheModule.getContext();
963*0b57cec5SDimitry Andric   OCLVerMD->addOperand(llvm::MDNode::get(Ctx, OCLVerElts));
964*0b57cec5SDimitry Andric }
965*0b57cec5SDimitry Andric 
9665ffd83dbSDimitry Andric void CodeGenModule::EmitBackendOptionsMetadata(
9675ffd83dbSDimitry Andric     const CodeGenOptions CodeGenOpts) {
9685ffd83dbSDimitry Andric   switch (getTriple().getArch()) {
9695ffd83dbSDimitry Andric   default:
9705ffd83dbSDimitry Andric     break;
9715ffd83dbSDimitry Andric   case llvm::Triple::riscv32:
9725ffd83dbSDimitry Andric   case llvm::Triple::riscv64:
9735ffd83dbSDimitry Andric     getModule().addModuleFlag(llvm::Module::Error, "SmallDataLimit",
9745ffd83dbSDimitry Andric                               CodeGenOpts.SmallDataLimit);
9755ffd83dbSDimitry Andric     break;
9765ffd83dbSDimitry Andric   }
9775ffd83dbSDimitry Andric }
9785ffd83dbSDimitry Andric 
979*0b57cec5SDimitry Andric void CodeGenModule::UpdateCompletedType(const TagDecl *TD) {
980*0b57cec5SDimitry Andric   // Make sure that this type is translated.
981*0b57cec5SDimitry Andric   Types.UpdateCompletedType(TD);
982*0b57cec5SDimitry Andric }
983*0b57cec5SDimitry Andric 
984*0b57cec5SDimitry Andric void CodeGenModule::RefreshTypeCacheForClass(const CXXRecordDecl *RD) {
985*0b57cec5SDimitry Andric   // Make sure that this type is translated.
986*0b57cec5SDimitry Andric   Types.RefreshTypeCacheForClass(RD);
987*0b57cec5SDimitry Andric }
988*0b57cec5SDimitry Andric 
989*0b57cec5SDimitry Andric llvm::MDNode *CodeGenModule::getTBAATypeInfo(QualType QTy) {
990*0b57cec5SDimitry Andric   if (!TBAA)
991*0b57cec5SDimitry Andric     return nullptr;
992*0b57cec5SDimitry Andric   return TBAA->getTypeInfo(QTy);
993*0b57cec5SDimitry Andric }
994*0b57cec5SDimitry Andric 
995*0b57cec5SDimitry Andric TBAAAccessInfo CodeGenModule::getTBAAAccessInfo(QualType AccessType) {
996*0b57cec5SDimitry Andric   if (!TBAA)
997*0b57cec5SDimitry Andric     return TBAAAccessInfo();
9985ffd83dbSDimitry Andric   if (getLangOpts().CUDAIsDevice) {
9995ffd83dbSDimitry Andric     // As CUDA builtin surface/texture types are replaced, skip generating TBAA
10005ffd83dbSDimitry Andric     // access info.
10015ffd83dbSDimitry Andric     if (AccessType->isCUDADeviceBuiltinSurfaceType()) {
10025ffd83dbSDimitry Andric       if (getTargetCodeGenInfo().getCUDADeviceBuiltinSurfaceDeviceType() !=
10035ffd83dbSDimitry Andric           nullptr)
10045ffd83dbSDimitry Andric         return TBAAAccessInfo();
10055ffd83dbSDimitry Andric     } else if (AccessType->isCUDADeviceBuiltinTextureType()) {
10065ffd83dbSDimitry Andric       if (getTargetCodeGenInfo().getCUDADeviceBuiltinTextureDeviceType() !=
10075ffd83dbSDimitry Andric           nullptr)
10085ffd83dbSDimitry Andric         return TBAAAccessInfo();
10095ffd83dbSDimitry Andric     }
10105ffd83dbSDimitry Andric   }
1011*0b57cec5SDimitry Andric   return TBAA->getAccessInfo(AccessType);
1012*0b57cec5SDimitry Andric }
1013*0b57cec5SDimitry Andric 
1014*0b57cec5SDimitry Andric TBAAAccessInfo
1015*0b57cec5SDimitry Andric CodeGenModule::getTBAAVTablePtrAccessInfo(llvm::Type *VTablePtrType) {
1016*0b57cec5SDimitry Andric   if (!TBAA)
1017*0b57cec5SDimitry Andric     return TBAAAccessInfo();
1018*0b57cec5SDimitry Andric   return TBAA->getVTablePtrAccessInfo(VTablePtrType);
1019*0b57cec5SDimitry Andric }
1020*0b57cec5SDimitry Andric 
1021*0b57cec5SDimitry Andric llvm::MDNode *CodeGenModule::getTBAAStructInfo(QualType QTy) {
1022*0b57cec5SDimitry Andric   if (!TBAA)
1023*0b57cec5SDimitry Andric     return nullptr;
1024*0b57cec5SDimitry Andric   return TBAA->getTBAAStructInfo(QTy);
1025*0b57cec5SDimitry Andric }
1026*0b57cec5SDimitry Andric 
1027*0b57cec5SDimitry Andric llvm::MDNode *CodeGenModule::getTBAABaseTypeInfo(QualType QTy) {
1028*0b57cec5SDimitry Andric   if (!TBAA)
1029*0b57cec5SDimitry Andric     return nullptr;
1030*0b57cec5SDimitry Andric   return TBAA->getBaseTypeInfo(QTy);
1031*0b57cec5SDimitry Andric }
1032*0b57cec5SDimitry Andric 
1033*0b57cec5SDimitry Andric llvm::MDNode *CodeGenModule::getTBAAAccessTagInfo(TBAAAccessInfo Info) {
1034*0b57cec5SDimitry Andric   if (!TBAA)
1035*0b57cec5SDimitry Andric     return nullptr;
1036*0b57cec5SDimitry Andric   return TBAA->getAccessTagInfo(Info);
1037*0b57cec5SDimitry Andric }
1038*0b57cec5SDimitry Andric 
1039*0b57cec5SDimitry Andric TBAAAccessInfo CodeGenModule::mergeTBAAInfoForCast(TBAAAccessInfo SourceInfo,
1040*0b57cec5SDimitry Andric                                                    TBAAAccessInfo TargetInfo) {
1041*0b57cec5SDimitry Andric   if (!TBAA)
1042*0b57cec5SDimitry Andric     return TBAAAccessInfo();
1043*0b57cec5SDimitry Andric   return TBAA->mergeTBAAInfoForCast(SourceInfo, TargetInfo);
1044*0b57cec5SDimitry Andric }
1045*0b57cec5SDimitry Andric 
1046*0b57cec5SDimitry Andric TBAAAccessInfo
1047*0b57cec5SDimitry Andric CodeGenModule::mergeTBAAInfoForConditionalOperator(TBAAAccessInfo InfoA,
1048*0b57cec5SDimitry Andric                                                    TBAAAccessInfo InfoB) {
1049*0b57cec5SDimitry Andric   if (!TBAA)
1050*0b57cec5SDimitry Andric     return TBAAAccessInfo();
1051*0b57cec5SDimitry Andric   return TBAA->mergeTBAAInfoForConditionalOperator(InfoA, InfoB);
1052*0b57cec5SDimitry Andric }
1053*0b57cec5SDimitry Andric 
1054*0b57cec5SDimitry Andric TBAAAccessInfo
1055*0b57cec5SDimitry Andric CodeGenModule::mergeTBAAInfoForMemoryTransfer(TBAAAccessInfo DestInfo,
1056*0b57cec5SDimitry Andric                                               TBAAAccessInfo SrcInfo) {
1057*0b57cec5SDimitry Andric   if (!TBAA)
1058*0b57cec5SDimitry Andric     return TBAAAccessInfo();
1059*0b57cec5SDimitry Andric   return TBAA->mergeTBAAInfoForConditionalOperator(DestInfo, SrcInfo);
1060*0b57cec5SDimitry Andric }
1061*0b57cec5SDimitry Andric 
1062*0b57cec5SDimitry Andric void CodeGenModule::DecorateInstructionWithTBAA(llvm::Instruction *Inst,
1063*0b57cec5SDimitry Andric                                                 TBAAAccessInfo TBAAInfo) {
1064*0b57cec5SDimitry Andric   if (llvm::MDNode *Tag = getTBAAAccessTagInfo(TBAAInfo))
1065*0b57cec5SDimitry Andric     Inst->setMetadata(llvm::LLVMContext::MD_tbaa, Tag);
1066*0b57cec5SDimitry Andric }
1067*0b57cec5SDimitry Andric 
1068*0b57cec5SDimitry Andric void CodeGenModule::DecorateInstructionWithInvariantGroup(
1069*0b57cec5SDimitry Andric     llvm::Instruction *I, const CXXRecordDecl *RD) {
1070*0b57cec5SDimitry Andric   I->setMetadata(llvm::LLVMContext::MD_invariant_group,
1071*0b57cec5SDimitry Andric                  llvm::MDNode::get(getLLVMContext(), {}));
1072*0b57cec5SDimitry Andric }
1073*0b57cec5SDimitry Andric 
1074*0b57cec5SDimitry Andric void CodeGenModule::Error(SourceLocation loc, StringRef message) {
1075*0b57cec5SDimitry Andric   unsigned diagID = getDiags().getCustomDiagID(DiagnosticsEngine::Error, "%0");
1076*0b57cec5SDimitry Andric   getDiags().Report(Context.getFullLoc(loc), diagID) << message;
1077*0b57cec5SDimitry Andric }
1078*0b57cec5SDimitry Andric 
1079*0b57cec5SDimitry Andric /// ErrorUnsupported - Print out an error that codegen doesn't support the
1080*0b57cec5SDimitry Andric /// specified stmt yet.
1081*0b57cec5SDimitry Andric void CodeGenModule::ErrorUnsupported(const Stmt *S, const char *Type) {
1082*0b57cec5SDimitry Andric   unsigned DiagID = getDiags().getCustomDiagID(DiagnosticsEngine::Error,
1083*0b57cec5SDimitry Andric                                                "cannot compile this %0 yet");
1084*0b57cec5SDimitry Andric   std::string Msg = Type;
1085*0b57cec5SDimitry Andric   getDiags().Report(Context.getFullLoc(S->getBeginLoc()), DiagID)
1086*0b57cec5SDimitry Andric       << Msg << S->getSourceRange();
1087*0b57cec5SDimitry Andric }
1088*0b57cec5SDimitry Andric 
1089*0b57cec5SDimitry Andric /// ErrorUnsupported - Print out an error that codegen doesn't support the
1090*0b57cec5SDimitry Andric /// specified decl yet.
1091*0b57cec5SDimitry Andric void CodeGenModule::ErrorUnsupported(const Decl *D, const char *Type) {
1092*0b57cec5SDimitry Andric   unsigned DiagID = getDiags().getCustomDiagID(DiagnosticsEngine::Error,
1093*0b57cec5SDimitry Andric                                                "cannot compile this %0 yet");
1094*0b57cec5SDimitry Andric   std::string Msg = Type;
1095*0b57cec5SDimitry Andric   getDiags().Report(Context.getFullLoc(D->getLocation()), DiagID) << Msg;
1096*0b57cec5SDimitry Andric }
1097*0b57cec5SDimitry Andric 
1098*0b57cec5SDimitry Andric llvm::ConstantInt *CodeGenModule::getSize(CharUnits size) {
1099*0b57cec5SDimitry Andric   return llvm::ConstantInt::get(SizeTy, size.getQuantity());
1100*0b57cec5SDimitry Andric }
1101*0b57cec5SDimitry Andric 
1102*0b57cec5SDimitry Andric void CodeGenModule::setGlobalVisibility(llvm::GlobalValue *GV,
1103*0b57cec5SDimitry Andric                                         const NamedDecl *D) const {
1104*0b57cec5SDimitry Andric   if (GV->hasDLLImportStorageClass())
1105*0b57cec5SDimitry Andric     return;
1106*0b57cec5SDimitry Andric   // Internal definitions always have default visibility.
1107*0b57cec5SDimitry Andric   if (GV->hasLocalLinkage()) {
1108*0b57cec5SDimitry Andric     GV->setVisibility(llvm::GlobalValue::DefaultVisibility);
1109*0b57cec5SDimitry Andric     return;
1110*0b57cec5SDimitry Andric   }
1111*0b57cec5SDimitry Andric   if (!D)
1112*0b57cec5SDimitry Andric     return;
1113*0b57cec5SDimitry Andric   // Set visibility for definitions, and for declarations if requested globally
1114*0b57cec5SDimitry Andric   // or set explicitly.
1115*0b57cec5SDimitry Andric   LinkageInfo LV = D->getLinkageAndVisibility();
1116*0b57cec5SDimitry Andric   if (LV.isVisibilityExplicit() || getLangOpts().SetVisibilityForExternDecls ||
1117*0b57cec5SDimitry Andric       !GV->isDeclarationForLinker())
1118*0b57cec5SDimitry Andric     GV->setVisibility(GetLLVMVisibility(LV.getVisibility()));
1119*0b57cec5SDimitry Andric }
1120*0b57cec5SDimitry Andric 
1121*0b57cec5SDimitry Andric static bool shouldAssumeDSOLocal(const CodeGenModule &CGM,
1122*0b57cec5SDimitry Andric                                  llvm::GlobalValue *GV) {
1123*0b57cec5SDimitry Andric   if (GV->hasLocalLinkage())
1124*0b57cec5SDimitry Andric     return true;
1125*0b57cec5SDimitry Andric 
1126*0b57cec5SDimitry Andric   if (!GV->hasDefaultVisibility() && !GV->hasExternalWeakLinkage())
1127*0b57cec5SDimitry Andric     return true;
1128*0b57cec5SDimitry Andric 
1129*0b57cec5SDimitry Andric   // DLLImport explicitly marks the GV as external.
1130*0b57cec5SDimitry Andric   if (GV->hasDLLImportStorageClass())
1131*0b57cec5SDimitry Andric     return false;
1132*0b57cec5SDimitry Andric 
1133*0b57cec5SDimitry Andric   const llvm::Triple &TT = CGM.getTriple();
1134*0b57cec5SDimitry Andric   if (TT.isWindowsGNUEnvironment()) {
1135*0b57cec5SDimitry Andric     // In MinGW, variables without DLLImport can still be automatically
1136*0b57cec5SDimitry Andric     // imported from a DLL by the linker; don't mark variables that
1137*0b57cec5SDimitry Andric     // potentially could come from another DLL as DSO local.
1138fe6060f1SDimitry Andric 
1139fe6060f1SDimitry Andric     // With EmulatedTLS, TLS variables can be autoimported from other DLLs
1140fe6060f1SDimitry Andric     // (and this actually happens in the public interface of libstdc++), so
1141fe6060f1SDimitry Andric     // such variables can't be marked as DSO local. (Native TLS variables
1142fe6060f1SDimitry Andric     // can't be dllimported at all, though.)
1143*0b57cec5SDimitry Andric     if (GV->isDeclarationForLinker() && isa<llvm::GlobalVariable>(GV) &&
1144fe6060f1SDimitry Andric         (!GV->isThreadLocal() || CGM.getCodeGenOpts().EmulatedTLS))
1145*0b57cec5SDimitry Andric       return false;
1146*0b57cec5SDimitry Andric   }
1147*0b57cec5SDimitry Andric 
1148*0b57cec5SDimitry Andric   // On COFF, don't mark 'extern_weak' symbols as DSO local. If these symbols
1149*0b57cec5SDimitry Andric   // remain unresolved in the link, they can be resolved to zero, which is
1150*0b57cec5SDimitry Andric   // outside the current DSO.
1151*0b57cec5SDimitry Andric   if (TT.isOSBinFormatCOFF() && GV->hasExternalWeakLinkage())
1152*0b57cec5SDimitry Andric     return false;
1153*0b57cec5SDimitry Andric 
1154*0b57cec5SDimitry Andric   // Every other GV is local on COFF.
1155*0b57cec5SDimitry Andric   // Make an exception for windows OS in the triple: Some firmware builds use
1156*0b57cec5SDimitry Andric   // *-win32-macho triples. This (accidentally?) produced windows relocations
1157*0b57cec5SDimitry Andric   // without GOT tables in older clang versions; Keep this behaviour.
1158*0b57cec5SDimitry Andric   // FIXME: even thread local variables?
1159*0b57cec5SDimitry Andric   if (TT.isOSBinFormatCOFF() || (TT.isOSWindows() && TT.isOSBinFormatMachO()))
1160*0b57cec5SDimitry Andric     return true;
1161*0b57cec5SDimitry Andric 
1162*0b57cec5SDimitry Andric   // Only handle COFF and ELF for now.
1163*0b57cec5SDimitry Andric   if (!TT.isOSBinFormatELF())
1164*0b57cec5SDimitry Andric     return false;
1165*0b57cec5SDimitry Andric 
1166fe6060f1SDimitry Andric   // If this is not an executable, don't assume anything is local.
1167fe6060f1SDimitry Andric   const auto &CGOpts = CGM.getCodeGenOpts();
1168fe6060f1SDimitry Andric   llvm::Reloc::Model RM = CGOpts.RelocationModel;
1169fe6060f1SDimitry Andric   const auto &LOpts = CGM.getLangOpts();
1170e8d8bef9SDimitry Andric   if (RM != llvm::Reloc::Static && !LOpts.PIE) {
1171e8d8bef9SDimitry Andric     // On ELF, if -fno-semantic-interposition is specified and the target
1172e8d8bef9SDimitry Andric     // supports local aliases, there will be neither CC1
1173e8d8bef9SDimitry Andric     // -fsemantic-interposition nor -fhalf-no-semantic-interposition. Set
1174fe6060f1SDimitry Andric     // dso_local on the function if using a local alias is preferable (can avoid
1175fe6060f1SDimitry Andric     // PLT indirection).
1176fe6060f1SDimitry Andric     if (!(isa<llvm::Function>(GV) && GV->canBenefitFromLocalAlias()))
1177*0b57cec5SDimitry Andric       return false;
1178e8d8bef9SDimitry Andric     return !(CGM.getLangOpts().SemanticInterposition ||
1179e8d8bef9SDimitry Andric              CGM.getLangOpts().HalfNoSemanticInterposition);
1180e8d8bef9SDimitry Andric   }
1181*0b57cec5SDimitry Andric 
1182*0b57cec5SDimitry Andric   // A definition cannot be preempted from an executable.
1183*0b57cec5SDimitry Andric   if (!GV->isDeclarationForLinker())
1184*0b57cec5SDimitry Andric     return true;
1185*0b57cec5SDimitry Andric 
1186*0b57cec5SDimitry Andric   // Most PIC code sequences that assume that a symbol is local cannot produce a
1187*0b57cec5SDimitry Andric   // 0 if it turns out the symbol is undefined. While this is ABI and relocation
1188*0b57cec5SDimitry Andric   // depended, it seems worth it to handle it here.
1189*0b57cec5SDimitry Andric   if (RM == llvm::Reloc::PIC_ && GV->hasExternalWeakLinkage())
1190*0b57cec5SDimitry Andric     return false;
1191*0b57cec5SDimitry Andric 
1192e8d8bef9SDimitry Andric   // PowerPC64 prefers TOC indirection to avoid copy relocations.
1193e8d8bef9SDimitry Andric   if (TT.isPPC64())
1194*0b57cec5SDimitry Andric     return false;
1195*0b57cec5SDimitry Andric 
1196e8d8bef9SDimitry Andric   if (CGOpts.DirectAccessExternalData) {
1197e8d8bef9SDimitry Andric     // If -fdirect-access-external-data (default for -fno-pic), set dso_local
1198e8d8bef9SDimitry Andric     // for non-thread-local variables. If the symbol is not defined in the
1199e8d8bef9SDimitry Andric     // executable, a copy relocation will be needed at link time. dso_local is
1200e8d8bef9SDimitry Andric     // excluded for thread-local variables because they generally don't support
1201e8d8bef9SDimitry Andric     // copy relocations.
1202*0b57cec5SDimitry Andric     if (auto *Var = dyn_cast<llvm::GlobalVariable>(GV))
1203e8d8bef9SDimitry Andric       if (!Var->isThreadLocal())
1204*0b57cec5SDimitry Andric         return true;
1205*0b57cec5SDimitry Andric 
1206e8d8bef9SDimitry Andric     // -fno-pic sets dso_local on a function declaration to allow direct
1207e8d8bef9SDimitry Andric     // accesses when taking its address (similar to a data symbol). If the
1208e8d8bef9SDimitry Andric     // function is not defined in the executable, a canonical PLT entry will be
1209e8d8bef9SDimitry Andric     // needed at link time. -fno-direct-access-external-data can avoid the
1210e8d8bef9SDimitry Andric     // canonical PLT entry. We don't generalize this condition to -fpie/-fpic as
1211e8d8bef9SDimitry Andric     // it could just cause trouble without providing perceptible benefits.
1212*0b57cec5SDimitry Andric     if (isa<llvm::Function>(GV) && !CGOpts.NoPLT && RM == llvm::Reloc::Static)
1213*0b57cec5SDimitry Andric       return true;
1214e8d8bef9SDimitry Andric   }
1215e8d8bef9SDimitry Andric 
1216e8d8bef9SDimitry Andric   // If we can use copy relocations we can assume it is local.
1217*0b57cec5SDimitry Andric 
12185ffd83dbSDimitry Andric   // Otherwise don't assume it is local.
1219*0b57cec5SDimitry Andric   return false;
1220*0b57cec5SDimitry Andric }
1221*0b57cec5SDimitry Andric 
1222*0b57cec5SDimitry Andric void CodeGenModule::setDSOLocal(llvm::GlobalValue *GV) const {
1223*0b57cec5SDimitry Andric   GV->setDSOLocal(shouldAssumeDSOLocal(*this, GV));
1224*0b57cec5SDimitry Andric }
1225*0b57cec5SDimitry Andric 
1226*0b57cec5SDimitry Andric void CodeGenModule::setDLLImportDLLExport(llvm::GlobalValue *GV,
1227*0b57cec5SDimitry Andric                                           GlobalDecl GD) const {
1228*0b57cec5SDimitry Andric   const auto *D = dyn_cast<NamedDecl>(GD.getDecl());
1229*0b57cec5SDimitry Andric   // C++ destructors have a few C++ ABI specific special cases.
1230*0b57cec5SDimitry Andric   if (const auto *Dtor = dyn_cast_or_null<CXXDestructorDecl>(D)) {
1231*0b57cec5SDimitry Andric     getCXXABI().setCXXDestructorDLLStorage(GV, Dtor, GD.getDtorType());
1232*0b57cec5SDimitry Andric     return;
1233*0b57cec5SDimitry Andric   }
1234*0b57cec5SDimitry Andric   setDLLImportDLLExport(GV, D);
1235*0b57cec5SDimitry Andric }
1236*0b57cec5SDimitry Andric 
1237*0b57cec5SDimitry Andric void CodeGenModule::setDLLImportDLLExport(llvm::GlobalValue *GV,
1238*0b57cec5SDimitry Andric                                           const NamedDecl *D) const {
1239*0b57cec5SDimitry Andric   if (D && D->isExternallyVisible()) {
1240*0b57cec5SDimitry Andric     if (D->hasAttr<DLLImportAttr>())
1241*0b57cec5SDimitry Andric       GV->setDLLStorageClass(llvm::GlobalVariable::DLLImportStorageClass);
124281ad6265SDimitry Andric     else if ((D->hasAttr<DLLExportAttr>() ||
124381ad6265SDimitry Andric               shouldMapVisibilityToDLLExport(D)) &&
124481ad6265SDimitry Andric              !GV->isDeclarationForLinker())
1245*0b57cec5SDimitry Andric       GV->setDLLStorageClass(llvm::GlobalVariable::DLLExportStorageClass);
1246*0b57cec5SDimitry Andric   }
1247*0b57cec5SDimitry Andric }
1248*0b57cec5SDimitry Andric 
1249*0b57cec5SDimitry Andric void CodeGenModule::setGVProperties(llvm::GlobalValue *GV,
1250*0b57cec5SDimitry Andric                                     GlobalDecl GD) const {
1251*0b57cec5SDimitry Andric   setDLLImportDLLExport(GV, GD);
1252*0b57cec5SDimitry Andric   setGVPropertiesAux(GV, dyn_cast<NamedDecl>(GD.getDecl()));
1253*0b57cec5SDimitry Andric }
1254*0b57cec5SDimitry Andric 
1255*0b57cec5SDimitry Andric void CodeGenModule::setGVProperties(llvm::GlobalValue *GV,
1256*0b57cec5SDimitry Andric                                     const NamedDecl *D) const {
1257*0b57cec5SDimitry Andric   setDLLImportDLLExport(GV, D);
1258*0b57cec5SDimitry Andric   setGVPropertiesAux(GV, D);
1259*0b57cec5SDimitry Andric }
1260*0b57cec5SDimitry Andric 
1261*0b57cec5SDimitry Andric void CodeGenModule::setGVPropertiesAux(llvm::GlobalValue *GV,
1262*0b57cec5SDimitry Andric                                        const NamedDecl *D) const {
1263*0b57cec5SDimitry Andric   setGlobalVisibility(GV, D);
1264*0b57cec5SDimitry Andric   setDSOLocal(GV);
1265*0b57cec5SDimitry Andric   GV->setPartition(CodeGenOpts.SymbolPartition);
1266*0b57cec5SDimitry Andric }
1267*0b57cec5SDimitry Andric 
1268*0b57cec5SDimitry Andric static llvm::GlobalVariable::ThreadLocalMode GetLLVMTLSModel(StringRef S) {
1269*0b57cec5SDimitry Andric   return llvm::StringSwitch<llvm::GlobalVariable::ThreadLocalMode>(S)
1270*0b57cec5SDimitry Andric       .Case("global-dynamic", llvm::GlobalVariable::GeneralDynamicTLSModel)
1271*0b57cec5SDimitry Andric       .Case("local-dynamic", llvm::GlobalVariable::LocalDynamicTLSModel)
1272*0b57cec5SDimitry Andric       .Case("initial-exec", llvm::GlobalVariable::InitialExecTLSModel)
1273*0b57cec5SDimitry Andric       .Case("local-exec", llvm::GlobalVariable::LocalExecTLSModel);
1274*0b57cec5SDimitry Andric }
1275*0b57cec5SDimitry Andric 
12765ffd83dbSDimitry Andric llvm::GlobalVariable::ThreadLocalMode
12775ffd83dbSDimitry Andric CodeGenModule::GetDefaultLLVMTLSModel() const {
12785ffd83dbSDimitry Andric   switch (CodeGenOpts.getDefaultTLSModel()) {
1279*0b57cec5SDimitry Andric   case CodeGenOptions::GeneralDynamicTLSModel:
1280*0b57cec5SDimitry Andric     return llvm::GlobalVariable::GeneralDynamicTLSModel;
1281*0b57cec5SDimitry Andric   case CodeGenOptions::LocalDynamicTLSModel:
1282*0b57cec5SDimitry Andric     return llvm::GlobalVariable::LocalDynamicTLSModel;
1283*0b57cec5SDimitry Andric   case CodeGenOptions::InitialExecTLSModel:
1284*0b57cec5SDimitry Andric     return llvm::GlobalVariable::InitialExecTLSModel;
1285*0b57cec5SDimitry Andric   case CodeGenOptions::LocalExecTLSModel:
1286*0b57cec5SDimitry Andric     return llvm::GlobalVariable::LocalExecTLSModel;
1287*0b57cec5SDimitry Andric   }
1288*0b57cec5SDimitry Andric   llvm_unreachable("Invalid TLS model!");
1289*0b57cec5SDimitry Andric }
1290*0b57cec5SDimitry Andric 
1291*0b57cec5SDimitry Andric void CodeGenModule::setTLSMode(llvm::GlobalValue *GV, const VarDecl &D) const {
1292*0b57cec5SDimitry Andric   assert(D.getTLSKind() && "setting TLS mode on non-TLS var!");
1293*0b57cec5SDimitry Andric 
1294*0b57cec5SDimitry Andric   llvm::GlobalValue::ThreadLocalMode TLM;
12955ffd83dbSDimitry Andric   TLM = GetDefaultLLVMTLSModel();
1296*0b57cec5SDimitry Andric 
1297*0b57cec5SDimitry Andric   // Override the TLS model if it is explicitly specified.
1298*0b57cec5SDimitry Andric   if (const TLSModelAttr *Attr = D.getAttr<TLSModelAttr>()) {
1299*0b57cec5SDimitry Andric     TLM = GetLLVMTLSModel(Attr->getModel());
1300*0b57cec5SDimitry Andric   }
1301*0b57cec5SDimitry Andric 
1302*0b57cec5SDimitry Andric   GV->setThreadLocalMode(TLM);
1303*0b57cec5SDimitry Andric }
1304*0b57cec5SDimitry Andric 
1305*0b57cec5SDimitry Andric static std::string getCPUSpecificMangling(const CodeGenModule &CGM,
1306*0b57cec5SDimitry Andric                                           StringRef Name) {
1307*0b57cec5SDimitry Andric   const TargetInfo &Target = CGM.getTarget();
1308*0b57cec5SDimitry Andric   return (Twine('.') + Twine(Target.CPUSpecificManglingCharacter(Name))).str();
1309*0b57cec5SDimitry Andric }
1310*0b57cec5SDimitry Andric 
1311*0b57cec5SDimitry Andric static void AppendCPUSpecificCPUDispatchMangling(const CodeGenModule &CGM,
1312*0b57cec5SDimitry Andric                                                  const CPUSpecificAttr *Attr,
1313*0b57cec5SDimitry Andric                                                  unsigned CPUIndex,
1314*0b57cec5SDimitry Andric                                                  raw_ostream &Out) {
1315*0b57cec5SDimitry Andric   // cpu_specific gets the current name, dispatch gets the resolver if IFunc is
1316*0b57cec5SDimitry Andric   // supported.
1317*0b57cec5SDimitry Andric   if (Attr)
1318*0b57cec5SDimitry Andric     Out << getCPUSpecificMangling(CGM, Attr->getCPUName(CPUIndex)->getName());
1319*0b57cec5SDimitry Andric   else if (CGM.getTarget().supportsIFunc())
1320*0b57cec5SDimitry Andric     Out << ".resolver";
1321*0b57cec5SDimitry Andric }
1322*0b57cec5SDimitry Andric 
1323*0b57cec5SDimitry Andric static void AppendTargetMangling(const CodeGenModule &CGM,
1324*0b57cec5SDimitry Andric                                  const TargetAttr *Attr, raw_ostream &Out) {
1325*0b57cec5SDimitry Andric   if (Attr->isDefaultVersion())
1326*0b57cec5SDimitry Andric     return;
1327*0b57cec5SDimitry Andric 
1328*0b57cec5SDimitry Andric   Out << '.';
1329*0b57cec5SDimitry Andric   const TargetInfo &Target = CGM.getTarget();
1330480093f4SDimitry Andric   ParsedTargetAttr Info =
1331*0b57cec5SDimitry Andric       Attr->parse([&Target](StringRef LHS, StringRef RHS) {
1332*0b57cec5SDimitry Andric         // Multiversioning doesn't allow "no-${feature}", so we can
1333*0b57cec5SDimitry Andric         // only have "+" prefixes here.
1334*0b57cec5SDimitry Andric         assert(LHS.startswith("+") && RHS.startswith("+") &&
1335*0b57cec5SDimitry Andric                "Features should always have a prefix.");
1336*0b57cec5SDimitry Andric         return Target.multiVersionSortPriority(LHS.substr(1)) >
1337*0b57cec5SDimitry Andric                Target.multiVersionSortPriority(RHS.substr(1));
1338*0b57cec5SDimitry Andric       });
1339*0b57cec5SDimitry Andric 
1340*0b57cec5SDimitry Andric   bool IsFirst = true;
1341*0b57cec5SDimitry Andric 
1342*0b57cec5SDimitry Andric   if (!Info.Architecture.empty()) {
1343*0b57cec5SDimitry Andric     IsFirst = false;
1344*0b57cec5SDimitry Andric     Out << "arch_" << Info.Architecture;
1345*0b57cec5SDimitry Andric   }
1346*0b57cec5SDimitry Andric 
1347*0b57cec5SDimitry Andric   for (StringRef Feat : Info.Features) {
1348*0b57cec5SDimitry Andric     if (!IsFirst)
1349*0b57cec5SDimitry Andric       Out << '_';
1350*0b57cec5SDimitry Andric     IsFirst = false;
1351*0b57cec5SDimitry Andric     Out << Feat.substr(1);
1352*0b57cec5SDimitry Andric   }
1353*0b57cec5SDimitry Andric }
1354*0b57cec5SDimitry Andric 
1355fe6060f1SDimitry Andric // Returns true if GD is a function decl with internal linkage and
1356fe6060f1SDimitry Andric // needs a unique suffix after the mangled name.
1357fe6060f1SDimitry Andric static bool isUniqueInternalLinkageDecl(GlobalDecl GD,
1358fe6060f1SDimitry Andric                                         CodeGenModule &CGM) {
1359fe6060f1SDimitry Andric   const Decl *D = GD.getDecl();
1360fe6060f1SDimitry Andric   return !CGM.getModuleNameHash().empty() && isa<FunctionDecl>(D) &&
1361fe6060f1SDimitry Andric          (CGM.getFunctionLinkage(GD) == llvm::GlobalValue::InternalLinkage);
1362fe6060f1SDimitry Andric }
1363fe6060f1SDimitry Andric 
13644824e7fdSDimitry Andric static void AppendTargetClonesMangling(const CodeGenModule &CGM,
13654824e7fdSDimitry Andric                                        const TargetClonesAttr *Attr,
13664824e7fdSDimitry Andric                                        unsigned VersionIndex,
13674824e7fdSDimitry Andric                                        raw_ostream &Out) {
13684824e7fdSDimitry Andric   Out << '.';
13694824e7fdSDimitry Andric   StringRef FeatureStr = Attr->getFeatureStr(VersionIndex);
13704824e7fdSDimitry Andric   if (FeatureStr.startswith("arch="))
13714824e7fdSDimitry Andric     Out << "arch_" << FeatureStr.substr(sizeof("arch=") - 1);
13724824e7fdSDimitry Andric   else
13734824e7fdSDimitry Andric     Out << FeatureStr;
13744824e7fdSDimitry Andric 
13754824e7fdSDimitry Andric   Out << '.' << Attr->getMangledIndex(VersionIndex);
13764824e7fdSDimitry Andric }
13774824e7fdSDimitry Andric 
1378fe6060f1SDimitry Andric static std::string getMangledNameImpl(CodeGenModule &CGM, GlobalDecl GD,
1379*0b57cec5SDimitry Andric                                       const NamedDecl *ND,
1380*0b57cec5SDimitry Andric                                       bool OmitMultiVersionMangling = false) {
1381*0b57cec5SDimitry Andric   SmallString<256> Buffer;
1382*0b57cec5SDimitry Andric   llvm::raw_svector_ostream Out(Buffer);
1383*0b57cec5SDimitry Andric   MangleContext &MC = CGM.getCXXABI().getMangleContext();
1384fe6060f1SDimitry Andric   if (!CGM.getModuleNameHash().empty())
1385fe6060f1SDimitry Andric     MC.needsUniqueInternalLinkageNames();
1386fe6060f1SDimitry Andric   bool ShouldMangle = MC.shouldMangleDeclName(ND);
1387fe6060f1SDimitry Andric   if (ShouldMangle)
13885ffd83dbSDimitry Andric     MC.mangleName(GD.getWithDecl(ND), Out);
13895ffd83dbSDimitry Andric   else {
1390*0b57cec5SDimitry Andric     IdentifierInfo *II = ND->getIdentifier();
1391*0b57cec5SDimitry Andric     assert(II && "Attempt to mangle unnamed decl.");
1392*0b57cec5SDimitry Andric     const auto *FD = dyn_cast<FunctionDecl>(ND);
1393*0b57cec5SDimitry Andric 
1394*0b57cec5SDimitry Andric     if (FD &&
1395*0b57cec5SDimitry Andric         FD->getType()->castAs<FunctionType>()->getCallConv() == CC_X86RegCall) {
1396*0b57cec5SDimitry Andric       Out << "__regcall3__" << II->getName();
13975ffd83dbSDimitry Andric     } else if (FD && FD->hasAttr<CUDAGlobalAttr>() &&
13985ffd83dbSDimitry Andric                GD.getKernelReferenceKind() == KernelReferenceKind::Stub) {
13995ffd83dbSDimitry Andric       Out << "__device_stub__" << II->getName();
1400*0b57cec5SDimitry Andric     } else {
1401*0b57cec5SDimitry Andric       Out << II->getName();
1402*0b57cec5SDimitry Andric     }
1403*0b57cec5SDimitry Andric   }
1404*0b57cec5SDimitry Andric 
1405fe6060f1SDimitry Andric   // Check if the module name hash should be appended for internal linkage
1406fe6060f1SDimitry Andric   // symbols.   This should come before multi-version target suffixes are
1407fe6060f1SDimitry Andric   // appended. This is to keep the name and module hash suffix of the
1408fe6060f1SDimitry Andric   // internal linkage function together.  The unique suffix should only be
1409fe6060f1SDimitry Andric   // added when name mangling is done to make sure that the final name can
1410fe6060f1SDimitry Andric   // be properly demangled.  For example, for C functions without prototypes,
1411fe6060f1SDimitry Andric   // name mangling is not done and the unique suffix should not be appeneded
1412fe6060f1SDimitry Andric   // then.
1413fe6060f1SDimitry Andric   if (ShouldMangle && isUniqueInternalLinkageDecl(GD, CGM)) {
1414fe6060f1SDimitry Andric     assert(CGM.getCodeGenOpts().UniqueInternalLinkageNames &&
1415fe6060f1SDimitry Andric            "Hash computed when not explicitly requested");
1416fe6060f1SDimitry Andric     Out << CGM.getModuleNameHash();
1417fe6060f1SDimitry Andric   }
1418fe6060f1SDimitry Andric 
1419*0b57cec5SDimitry Andric   if (const auto *FD = dyn_cast<FunctionDecl>(ND))
1420*0b57cec5SDimitry Andric     if (FD->isMultiVersion() && !OmitMultiVersionMangling) {
1421*0b57cec5SDimitry Andric       switch (FD->getMultiVersionKind()) {
1422*0b57cec5SDimitry Andric       case MultiVersionKind::CPUDispatch:
1423*0b57cec5SDimitry Andric       case MultiVersionKind::CPUSpecific:
1424*0b57cec5SDimitry Andric         AppendCPUSpecificCPUDispatchMangling(CGM,
1425*0b57cec5SDimitry Andric                                              FD->getAttr<CPUSpecificAttr>(),
1426*0b57cec5SDimitry Andric                                              GD.getMultiVersionIndex(), Out);
1427*0b57cec5SDimitry Andric         break;
1428*0b57cec5SDimitry Andric       case MultiVersionKind::Target:
1429*0b57cec5SDimitry Andric         AppendTargetMangling(CGM, FD->getAttr<TargetAttr>(), Out);
1430*0b57cec5SDimitry Andric         break;
14314824e7fdSDimitry Andric       case MultiVersionKind::TargetClones:
14324824e7fdSDimitry Andric         AppendTargetClonesMangling(CGM, FD->getAttr<TargetClonesAttr>(),
14334824e7fdSDimitry Andric                                    GD.getMultiVersionIndex(), Out);
14344824e7fdSDimitry Andric         break;
1435*0b57cec5SDimitry Andric       case MultiVersionKind::None:
1436*0b57cec5SDimitry Andric         llvm_unreachable("None multiversion type isn't valid here");
1437*0b57cec5SDimitry Andric       }
1438*0b57cec5SDimitry Andric     }
1439*0b57cec5SDimitry Andric 
1440fe6060f1SDimitry Andric   // Make unique name for device side static file-scope variable for HIP.
144181ad6265SDimitry Andric   if (CGM.getContext().shouldExternalize(ND) &&
1442fe6060f1SDimitry Andric       CGM.getLangOpts().GPURelocatableDeviceCode &&
144381ad6265SDimitry Andric       CGM.getLangOpts().CUDAIsDevice)
14442a66634dSDimitry Andric     CGM.printPostfixForExternalizedDecl(Out, ND);
144581ad6265SDimitry Andric 
14465ffd83dbSDimitry Andric   return std::string(Out.str());
1447*0b57cec5SDimitry Andric }
1448*0b57cec5SDimitry Andric 
1449*0b57cec5SDimitry Andric void CodeGenModule::UpdateMultiVersionNames(GlobalDecl GD,
145004eeddc0SDimitry Andric                                             const FunctionDecl *FD,
145104eeddc0SDimitry Andric                                             StringRef &CurName) {
1452*0b57cec5SDimitry Andric   if (!FD->isMultiVersion())
1453*0b57cec5SDimitry Andric     return;
1454*0b57cec5SDimitry Andric 
1455*0b57cec5SDimitry Andric   // Get the name of what this would be without the 'target' attribute.  This
1456*0b57cec5SDimitry Andric   // allows us to lookup the version that was emitted when this wasn't a
1457*0b57cec5SDimitry Andric   // multiversion function.
1458*0b57cec5SDimitry Andric   std::string NonTargetName =
1459*0b57cec5SDimitry Andric       getMangledNameImpl(*this, GD, FD, /*OmitMultiVersionMangling=*/true);
1460*0b57cec5SDimitry Andric   GlobalDecl OtherGD;
1461*0b57cec5SDimitry Andric   if (lookupRepresentativeDecl(NonTargetName, OtherGD)) {
1462*0b57cec5SDimitry Andric     assert(OtherGD.getCanonicalDecl()
1463*0b57cec5SDimitry Andric                .getDecl()
1464*0b57cec5SDimitry Andric                ->getAsFunction()
1465*0b57cec5SDimitry Andric                ->isMultiVersion() &&
1466*0b57cec5SDimitry Andric            "Other GD should now be a multiversioned function");
1467*0b57cec5SDimitry Andric     // OtherFD is the version of this function that was mangled BEFORE
1468*0b57cec5SDimitry Andric     // becoming a MultiVersion function.  It potentially needs to be updated.
1469*0b57cec5SDimitry Andric     const FunctionDecl *OtherFD = OtherGD.getCanonicalDecl()
1470*0b57cec5SDimitry Andric                                       .getDecl()
1471*0b57cec5SDimitry Andric                                       ->getAsFunction()
1472*0b57cec5SDimitry Andric                                       ->getMostRecentDecl();
1473*0b57cec5SDimitry Andric     std::string OtherName = getMangledNameImpl(*this, OtherGD, OtherFD);
1474*0b57cec5SDimitry Andric     // This is so that if the initial version was already the 'default'
1475*0b57cec5SDimitry Andric     // version, we don't try to update it.
1476*0b57cec5SDimitry Andric     if (OtherName != NonTargetName) {
1477*0b57cec5SDimitry Andric       // Remove instead of erase, since others may have stored the StringRef
1478*0b57cec5SDimitry Andric       // to this.
1479*0b57cec5SDimitry Andric       const auto ExistingRecord = Manglings.find(NonTargetName);
1480*0b57cec5SDimitry Andric       if (ExistingRecord != std::end(Manglings))
1481*0b57cec5SDimitry Andric         Manglings.remove(&(*ExistingRecord));
1482*0b57cec5SDimitry Andric       auto Result = Manglings.insert(std::make_pair(OtherName, OtherGD));
148304eeddc0SDimitry Andric       StringRef OtherNameRef = MangledDeclNames[OtherGD.getCanonicalDecl()] =
148404eeddc0SDimitry Andric           Result.first->first();
148504eeddc0SDimitry Andric       // If this is the current decl is being created, make sure we update the name.
148604eeddc0SDimitry Andric       if (GD.getCanonicalDecl() == OtherGD.getCanonicalDecl())
148704eeddc0SDimitry Andric         CurName = OtherNameRef;
1488*0b57cec5SDimitry Andric       if (llvm::GlobalValue *Entry = GetGlobalValue(NonTargetName))
1489*0b57cec5SDimitry Andric         Entry->setName(OtherName);
1490*0b57cec5SDimitry Andric     }
1491*0b57cec5SDimitry Andric   }
1492*0b57cec5SDimitry Andric }
1493*0b57cec5SDimitry Andric 
1494*0b57cec5SDimitry Andric StringRef CodeGenModule::getMangledName(GlobalDecl GD) {
1495*0b57cec5SDimitry Andric   GlobalDecl CanonicalGD = GD.getCanonicalDecl();
1496*0b57cec5SDimitry Andric 
1497*0b57cec5SDimitry Andric   // Some ABIs don't have constructor variants.  Make sure that base and
1498*0b57cec5SDimitry Andric   // complete constructors get mangled the same.
1499*0b57cec5SDimitry Andric   if (const auto *CD = dyn_cast<CXXConstructorDecl>(CanonicalGD.getDecl())) {
1500*0b57cec5SDimitry Andric     if (!getTarget().getCXXABI().hasConstructorVariants()) {
1501*0b57cec5SDimitry Andric       CXXCtorType OrigCtorType = GD.getCtorType();
1502*0b57cec5SDimitry Andric       assert(OrigCtorType == Ctor_Base || OrigCtorType == Ctor_Complete);
1503*0b57cec5SDimitry Andric       if (OrigCtorType == Ctor_Base)
1504*0b57cec5SDimitry Andric         CanonicalGD = GlobalDecl(CD, Ctor_Complete);
1505*0b57cec5SDimitry Andric     }
1506*0b57cec5SDimitry Andric   }
1507*0b57cec5SDimitry Andric 
1508fe6060f1SDimitry Andric   // In CUDA/HIP device compilation with -fgpu-rdc, the mangled name of a
1509fe6060f1SDimitry Andric   // static device variable depends on whether the variable is referenced by
1510fe6060f1SDimitry Andric   // a host or device host function. Therefore the mangled name cannot be
1511fe6060f1SDimitry Andric   // cached.
151281ad6265SDimitry Andric   if (!LangOpts.CUDAIsDevice || !getContext().mayExternalize(GD.getDecl())) {
1513*0b57cec5SDimitry Andric     auto FoundName = MangledDeclNames.find(CanonicalGD);
1514*0b57cec5SDimitry Andric     if (FoundName != MangledDeclNames.end())
1515*0b57cec5SDimitry Andric       return FoundName->second;
1516fe6060f1SDimitry Andric   }
1517*0b57cec5SDimitry Andric 
1518*0b57cec5SDimitry Andric   // Keep the first result in the case of a mangling collision.
1519*0b57cec5SDimitry Andric   const auto *ND = cast<NamedDecl>(GD.getDecl());
1520*0b57cec5SDimitry Andric   std::string MangledName = getMangledNameImpl(*this, GD, ND);
1521*0b57cec5SDimitry Andric 
15225ffd83dbSDimitry Andric   // Ensure either we have different ABIs between host and device compilations,
15235ffd83dbSDimitry Andric   // says host compilation following MSVC ABI but device compilation follows
15245ffd83dbSDimitry Andric   // Itanium C++ ABI or, if they follow the same ABI, kernel names after
15255ffd83dbSDimitry Andric   // mangling should be the same after name stubbing. The later checking is
15265ffd83dbSDimitry Andric   // very important as the device kernel name being mangled in host-compilation
15275ffd83dbSDimitry Andric   // is used to resolve the device binaries to be executed. Inconsistent naming
15285ffd83dbSDimitry Andric   // result in undefined behavior. Even though we cannot check that naming
15295ffd83dbSDimitry Andric   // directly between host- and device-compilations, the host- and
15305ffd83dbSDimitry Andric   // device-mangling in host compilation could help catching certain ones.
15315ffd83dbSDimitry Andric   assert(!isa<FunctionDecl>(ND) || !ND->hasAttr<CUDAGlobalAttr>() ||
153281ad6265SDimitry Andric          getContext().shouldExternalize(ND) || getLangOpts().CUDAIsDevice ||
15335ffd83dbSDimitry Andric          (getContext().getAuxTargetInfo() &&
15345ffd83dbSDimitry Andric           (getContext().getAuxTargetInfo()->getCXXABI() !=
15355ffd83dbSDimitry Andric            getContext().getTargetInfo().getCXXABI())) ||
15365ffd83dbSDimitry Andric          getCUDARuntime().getDeviceSideName(ND) ==
15375ffd83dbSDimitry Andric              getMangledNameImpl(
15385ffd83dbSDimitry Andric                  *this,
15395ffd83dbSDimitry Andric                  GD.getWithKernelReferenceKind(KernelReferenceKind::Kernel),
15405ffd83dbSDimitry Andric                  ND));
1541*0b57cec5SDimitry Andric 
1542*0b57cec5SDimitry Andric   auto Result = Manglings.insert(std::make_pair(MangledName, GD));
1543*0b57cec5SDimitry Andric   return MangledDeclNames[CanonicalGD] = Result.first->first();
1544*0b57cec5SDimitry Andric }
1545*0b57cec5SDimitry Andric 
1546*0b57cec5SDimitry Andric StringRef CodeGenModule::getBlockMangledName(GlobalDecl GD,
1547*0b57cec5SDimitry Andric                                              const BlockDecl *BD) {
1548*0b57cec5SDimitry Andric   MangleContext &MangleCtx = getCXXABI().getMangleContext();
1549*0b57cec5SDimitry Andric   const Decl *D = GD.getDecl();
1550*0b57cec5SDimitry Andric 
1551*0b57cec5SDimitry Andric   SmallString<256> Buffer;
1552*0b57cec5SDimitry Andric   llvm::raw_svector_ostream Out(Buffer);
1553*0b57cec5SDimitry Andric   if (!D)
1554*0b57cec5SDimitry Andric     MangleCtx.mangleGlobalBlock(BD,
1555*0b57cec5SDimitry Andric       dyn_cast_or_null<VarDecl>(initializedGlobalDecl.getDecl()), Out);
1556*0b57cec5SDimitry Andric   else if (const auto *CD = dyn_cast<CXXConstructorDecl>(D))
1557*0b57cec5SDimitry Andric     MangleCtx.mangleCtorBlock(CD, GD.getCtorType(), BD, Out);
1558*0b57cec5SDimitry Andric   else if (const auto *DD = dyn_cast<CXXDestructorDecl>(D))
1559*0b57cec5SDimitry Andric     MangleCtx.mangleDtorBlock(DD, GD.getDtorType(), BD, Out);
1560*0b57cec5SDimitry Andric   else
1561*0b57cec5SDimitry Andric     MangleCtx.mangleBlock(cast<DeclContext>(D), BD, Out);
1562*0b57cec5SDimitry Andric 
1563*0b57cec5SDimitry Andric   auto Result = Manglings.insert(std::make_pair(Out.str(), BD));
1564*0b57cec5SDimitry Andric   return Result.first->first();
1565*0b57cec5SDimitry Andric }
1566*0b57cec5SDimitry Andric 
156781ad6265SDimitry Andric const GlobalDecl CodeGenModule::getMangledNameDecl(StringRef Name) {
156881ad6265SDimitry Andric   auto it = MangledDeclNames.begin();
156981ad6265SDimitry Andric   while (it != MangledDeclNames.end()) {
157081ad6265SDimitry Andric     if (it->second == Name)
157181ad6265SDimitry Andric       return it->first;
157281ad6265SDimitry Andric     it++;
157381ad6265SDimitry Andric   }
157481ad6265SDimitry Andric   return GlobalDecl();
157581ad6265SDimitry Andric }
157681ad6265SDimitry Andric 
1577*0b57cec5SDimitry Andric llvm::GlobalValue *CodeGenModule::GetGlobalValue(StringRef Name) {
1578*0b57cec5SDimitry Andric   return getModule().getNamedValue(Name);
1579*0b57cec5SDimitry Andric }
1580*0b57cec5SDimitry Andric 
1581*0b57cec5SDimitry Andric /// AddGlobalCtor - Add a function to the list that will be called before
1582*0b57cec5SDimitry Andric /// main() runs.
1583*0b57cec5SDimitry Andric void CodeGenModule::AddGlobalCtor(llvm::Function *Ctor, int Priority,
1584*0b57cec5SDimitry Andric                                   llvm::Constant *AssociatedData) {
1585*0b57cec5SDimitry Andric   // FIXME: Type coercion of void()* types.
1586*0b57cec5SDimitry Andric   GlobalCtors.push_back(Structor(Priority, Ctor, AssociatedData));
1587*0b57cec5SDimitry Andric }
1588*0b57cec5SDimitry Andric 
1589*0b57cec5SDimitry Andric /// AddGlobalDtor - Add a function to the list that will be called
1590*0b57cec5SDimitry Andric /// when the module is unloaded.
1591e8d8bef9SDimitry Andric void CodeGenModule::AddGlobalDtor(llvm::Function *Dtor, int Priority,
1592e8d8bef9SDimitry Andric                                   bool IsDtorAttrFunc) {
1593e8d8bef9SDimitry Andric   if (CodeGenOpts.RegisterGlobalDtorsWithAtExit &&
1594e8d8bef9SDimitry Andric       (!getContext().getTargetInfo().getTriple().isOSAIX() || IsDtorAttrFunc)) {
1595*0b57cec5SDimitry Andric     DtorsUsingAtExit[Priority].push_back(Dtor);
1596*0b57cec5SDimitry Andric     return;
1597*0b57cec5SDimitry Andric   }
1598*0b57cec5SDimitry Andric 
1599*0b57cec5SDimitry Andric   // FIXME: Type coercion of void()* types.
1600*0b57cec5SDimitry Andric   GlobalDtors.push_back(Structor(Priority, Dtor, nullptr));
1601*0b57cec5SDimitry Andric }
1602*0b57cec5SDimitry Andric 
1603*0b57cec5SDimitry Andric void CodeGenModule::EmitCtorList(CtorList &Fns, const char *GlobalName) {
1604*0b57cec5SDimitry Andric   if (Fns.empty()) return;
1605*0b57cec5SDimitry Andric 
1606*0b57cec5SDimitry Andric   // Ctor function type is void()*.
1607*0b57cec5SDimitry Andric   llvm::FunctionType* CtorFTy = llvm::FunctionType::get(VoidTy, false);
1608*0b57cec5SDimitry Andric   llvm::Type *CtorPFTy = llvm::PointerType::get(CtorFTy,
1609*0b57cec5SDimitry Andric       TheModule.getDataLayout().getProgramAddressSpace());
1610*0b57cec5SDimitry Andric 
1611*0b57cec5SDimitry Andric   // Get the type of a ctor entry, { i32, void ()*, i8* }.
1612*0b57cec5SDimitry Andric   llvm::StructType *CtorStructTy = llvm::StructType::get(
1613*0b57cec5SDimitry Andric       Int32Ty, CtorPFTy, VoidPtrTy);
1614*0b57cec5SDimitry Andric 
1615*0b57cec5SDimitry Andric   // Construct the constructor and destructor arrays.
1616*0b57cec5SDimitry Andric   ConstantInitBuilder builder(*this);
1617*0b57cec5SDimitry Andric   auto ctors = builder.beginArray(CtorStructTy);
1618*0b57cec5SDimitry Andric   for (const auto &I : Fns) {
1619*0b57cec5SDimitry Andric     auto ctor = ctors.beginStruct(CtorStructTy);
1620*0b57cec5SDimitry Andric     ctor.addInt(Int32Ty, I.Priority);
1621*0b57cec5SDimitry Andric     ctor.add(llvm::ConstantExpr::getBitCast(I.Initializer, CtorPFTy));
1622*0b57cec5SDimitry Andric     if (I.AssociatedData)
1623*0b57cec5SDimitry Andric       ctor.add(llvm::ConstantExpr::getBitCast(I.AssociatedData, VoidPtrTy));
1624*0b57cec5SDimitry Andric     else
1625*0b57cec5SDimitry Andric       ctor.addNullPointer(VoidPtrTy);
1626*0b57cec5SDimitry Andric     ctor.finishAndAddTo(ctors);
1627*0b57cec5SDimitry Andric   }
1628*0b57cec5SDimitry Andric 
1629*0b57cec5SDimitry Andric   auto list =
1630*0b57cec5SDimitry Andric     ctors.finishAndCreateGlobal(GlobalName, getPointerAlign(),
1631*0b57cec5SDimitry Andric                                 /*constant*/ false,
1632*0b57cec5SDimitry Andric                                 llvm::GlobalValue::AppendingLinkage);
1633*0b57cec5SDimitry Andric 
1634*0b57cec5SDimitry Andric   // The LTO linker doesn't seem to like it when we set an alignment
1635*0b57cec5SDimitry Andric   // on appending variables.  Take it off as a workaround.
1636a7dea167SDimitry Andric   list->setAlignment(llvm::None);
1637*0b57cec5SDimitry Andric 
1638*0b57cec5SDimitry Andric   Fns.clear();
1639*0b57cec5SDimitry Andric }
1640*0b57cec5SDimitry Andric 
1641*0b57cec5SDimitry Andric llvm::GlobalValue::LinkageTypes
1642*0b57cec5SDimitry Andric CodeGenModule::getFunctionLinkage(GlobalDecl GD) {
1643*0b57cec5SDimitry Andric   const auto *D = cast<FunctionDecl>(GD.getDecl());
1644*0b57cec5SDimitry Andric 
1645*0b57cec5SDimitry Andric   GVALinkage Linkage = getContext().GetGVALinkageForFunction(D);
1646*0b57cec5SDimitry Andric 
1647*0b57cec5SDimitry Andric   if (const auto *Dtor = dyn_cast<CXXDestructorDecl>(D))
1648*0b57cec5SDimitry Andric     return getCXXABI().getCXXDestructorLinkage(Linkage, Dtor, GD.getDtorType());
1649*0b57cec5SDimitry Andric 
1650*0b57cec5SDimitry Andric   if (isa<CXXConstructorDecl>(D) &&
1651*0b57cec5SDimitry Andric       cast<CXXConstructorDecl>(D)->isInheritingConstructor() &&
1652*0b57cec5SDimitry Andric       Context.getTargetInfo().getCXXABI().isMicrosoft()) {
1653*0b57cec5SDimitry Andric     // Our approach to inheriting constructors is fundamentally different from
1654*0b57cec5SDimitry Andric     // that used by the MS ABI, so keep our inheriting constructor thunks
1655*0b57cec5SDimitry Andric     // internal rather than trying to pick an unambiguous mangling for them.
1656*0b57cec5SDimitry Andric     return llvm::GlobalValue::InternalLinkage;
1657*0b57cec5SDimitry Andric   }
1658*0b57cec5SDimitry Andric 
1659*0b57cec5SDimitry Andric   return getLLVMLinkageForDeclarator(D, Linkage, /*IsConstantVariable=*/false);
1660*0b57cec5SDimitry Andric }
1661*0b57cec5SDimitry Andric 
1662*0b57cec5SDimitry Andric llvm::ConstantInt *CodeGenModule::CreateCrossDsoCfiTypeId(llvm::Metadata *MD) {
1663*0b57cec5SDimitry Andric   llvm::MDString *MDS = dyn_cast<llvm::MDString>(MD);
1664*0b57cec5SDimitry Andric   if (!MDS) return nullptr;
1665*0b57cec5SDimitry Andric 
1666*0b57cec5SDimitry Andric   return llvm::ConstantInt::get(Int64Ty, llvm::MD5Hash(MDS->getString()));
1667*0b57cec5SDimitry Andric }
1668*0b57cec5SDimitry Andric 
1669*0b57cec5SDimitry Andric void CodeGenModule::SetLLVMFunctionAttributes(GlobalDecl GD,
1670*0b57cec5SDimitry Andric                                               const CGFunctionInfo &Info,
1671fe6060f1SDimitry Andric                                               llvm::Function *F, bool IsThunk) {
1672*0b57cec5SDimitry Andric   unsigned CallingConv;
1673*0b57cec5SDimitry Andric   llvm::AttributeList PAL;
1674fe6060f1SDimitry Andric   ConstructAttributeList(F->getName(), Info, GD, PAL, CallingConv,
1675fe6060f1SDimitry Andric                          /*AttrOnCallSite=*/false, IsThunk);
1676*0b57cec5SDimitry Andric   F->setAttributes(PAL);
1677*0b57cec5SDimitry Andric   F->setCallingConv(static_cast<llvm::CallingConv::ID>(CallingConv));
1678*0b57cec5SDimitry Andric }
1679*0b57cec5SDimitry Andric 
1680*0b57cec5SDimitry Andric static void removeImageAccessQualifier(std::string& TyName) {
1681*0b57cec5SDimitry Andric   std::string ReadOnlyQual("__read_only");
1682*0b57cec5SDimitry Andric   std::string::size_type ReadOnlyPos = TyName.find(ReadOnlyQual);
1683*0b57cec5SDimitry Andric   if (ReadOnlyPos != std::string::npos)
1684*0b57cec5SDimitry Andric     // "+ 1" for the space after access qualifier.
1685*0b57cec5SDimitry Andric     TyName.erase(ReadOnlyPos, ReadOnlyQual.size() + 1);
1686*0b57cec5SDimitry Andric   else {
1687*0b57cec5SDimitry Andric     std::string WriteOnlyQual("__write_only");
1688*0b57cec5SDimitry Andric     std::string::size_type WriteOnlyPos = TyName.find(WriteOnlyQual);
1689*0b57cec5SDimitry Andric     if (WriteOnlyPos != std::string::npos)
1690*0b57cec5SDimitry Andric       TyName.erase(WriteOnlyPos, WriteOnlyQual.size() + 1);
1691*0b57cec5SDimitry Andric     else {
1692*0b57cec5SDimitry Andric       std::string ReadWriteQual("__read_write");
1693*0b57cec5SDimitry Andric       std::string::size_type ReadWritePos = TyName.find(ReadWriteQual);
1694*0b57cec5SDimitry Andric       if (ReadWritePos != std::string::npos)
1695*0b57cec5SDimitry Andric         TyName.erase(ReadWritePos, ReadWriteQual.size() + 1);
1696*0b57cec5SDimitry Andric     }
1697*0b57cec5SDimitry Andric   }
1698*0b57cec5SDimitry Andric }
1699*0b57cec5SDimitry Andric 
1700*0b57cec5SDimitry Andric // Returns the address space id that should be produced to the
1701*0b57cec5SDimitry Andric // kernel_arg_addr_space metadata. This is always fixed to the ids
1702*0b57cec5SDimitry Andric // as specified in the SPIR 2.0 specification in order to differentiate
1703*0b57cec5SDimitry Andric // for example in clGetKernelArgInfo() implementation between the address
1704*0b57cec5SDimitry Andric // spaces with targets without unique mapping to the OpenCL address spaces
1705*0b57cec5SDimitry Andric // (basically all single AS CPUs).
1706*0b57cec5SDimitry Andric static unsigned ArgInfoAddressSpace(LangAS AS) {
1707*0b57cec5SDimitry Andric   switch (AS) {
1708e8d8bef9SDimitry Andric   case LangAS::opencl_global:
1709e8d8bef9SDimitry Andric     return 1;
1710e8d8bef9SDimitry Andric   case LangAS::opencl_constant:
1711e8d8bef9SDimitry Andric     return 2;
1712e8d8bef9SDimitry Andric   case LangAS::opencl_local:
1713e8d8bef9SDimitry Andric     return 3;
1714e8d8bef9SDimitry Andric   case LangAS::opencl_generic:
1715e8d8bef9SDimitry Andric     return 4; // Not in SPIR 2.0 specs.
1716e8d8bef9SDimitry Andric   case LangAS::opencl_global_device:
1717e8d8bef9SDimitry Andric     return 5;
1718e8d8bef9SDimitry Andric   case LangAS::opencl_global_host:
1719e8d8bef9SDimitry Andric     return 6;
1720*0b57cec5SDimitry Andric   default:
1721*0b57cec5SDimitry Andric     return 0; // Assume private.
1722*0b57cec5SDimitry Andric   }
1723*0b57cec5SDimitry Andric }
1724*0b57cec5SDimitry Andric 
172581ad6265SDimitry Andric void CodeGenModule::GenKernelArgMetadata(llvm::Function *Fn,
1726*0b57cec5SDimitry Andric                                          const FunctionDecl *FD,
1727*0b57cec5SDimitry Andric                                          CodeGenFunction *CGF) {
1728*0b57cec5SDimitry Andric   assert(((FD && CGF) || (!FD && !CGF)) &&
1729*0b57cec5SDimitry Andric          "Incorrect use - FD and CGF should either be both null or not!");
1730*0b57cec5SDimitry Andric   // Create MDNodes that represent the kernel arg metadata.
1731*0b57cec5SDimitry Andric   // Each MDNode is a list in the form of "key", N number of values which is
1732*0b57cec5SDimitry Andric   // the same number of values as their are kernel arguments.
1733*0b57cec5SDimitry Andric 
1734*0b57cec5SDimitry Andric   const PrintingPolicy &Policy = Context.getPrintingPolicy();
1735*0b57cec5SDimitry Andric 
1736*0b57cec5SDimitry Andric   // MDNode for the kernel argument address space qualifiers.
1737*0b57cec5SDimitry Andric   SmallVector<llvm::Metadata *, 8> addressQuals;
1738*0b57cec5SDimitry Andric 
1739*0b57cec5SDimitry Andric   // MDNode for the kernel argument access qualifiers (images only).
1740*0b57cec5SDimitry Andric   SmallVector<llvm::Metadata *, 8> accessQuals;
1741*0b57cec5SDimitry Andric 
1742*0b57cec5SDimitry Andric   // MDNode for the kernel argument type names.
1743*0b57cec5SDimitry Andric   SmallVector<llvm::Metadata *, 8> argTypeNames;
1744*0b57cec5SDimitry Andric 
1745*0b57cec5SDimitry Andric   // MDNode for the kernel argument base type names.
1746*0b57cec5SDimitry Andric   SmallVector<llvm::Metadata *, 8> argBaseTypeNames;
1747*0b57cec5SDimitry Andric 
1748*0b57cec5SDimitry Andric   // MDNode for the kernel argument type qualifiers.
1749*0b57cec5SDimitry Andric   SmallVector<llvm::Metadata *, 8> argTypeQuals;
1750*0b57cec5SDimitry Andric 
1751*0b57cec5SDimitry Andric   // MDNode for the kernel argument names.
1752*0b57cec5SDimitry Andric   SmallVector<llvm::Metadata *, 8> argNames;
1753*0b57cec5SDimitry Andric 
1754*0b57cec5SDimitry Andric   if (FD && CGF)
1755*0b57cec5SDimitry Andric     for (unsigned i = 0, e = FD->getNumParams(); i != e; ++i) {
1756*0b57cec5SDimitry Andric       const ParmVarDecl *parm = FD->getParamDecl(i);
175781ad6265SDimitry Andric       // Get argument name.
175881ad6265SDimitry Andric       argNames.push_back(llvm::MDString::get(VMContext, parm->getName()));
175981ad6265SDimitry Andric 
176081ad6265SDimitry Andric       if (!getLangOpts().OpenCL)
176181ad6265SDimitry Andric         continue;
1762*0b57cec5SDimitry Andric       QualType ty = parm->getType();
1763*0b57cec5SDimitry Andric       std::string typeQuals;
1764*0b57cec5SDimitry Andric 
1765fe6060f1SDimitry Andric       // Get image and pipe access qualifier:
1766fe6060f1SDimitry Andric       if (ty->isImageType() || ty->isPipeType()) {
1767fe6060f1SDimitry Andric         const Decl *PDecl = parm;
1768fe6060f1SDimitry Andric         if (auto *TD = dyn_cast<TypedefType>(ty))
1769fe6060f1SDimitry Andric           PDecl = TD->getDecl();
1770fe6060f1SDimitry Andric         const OpenCLAccessAttr *A = PDecl->getAttr<OpenCLAccessAttr>();
1771fe6060f1SDimitry Andric         if (A && A->isWriteOnly())
1772fe6060f1SDimitry Andric           accessQuals.push_back(llvm::MDString::get(VMContext, "write_only"));
1773fe6060f1SDimitry Andric         else if (A && A->isReadWrite())
1774fe6060f1SDimitry Andric           accessQuals.push_back(llvm::MDString::get(VMContext, "read_write"));
1775fe6060f1SDimitry Andric         else
1776fe6060f1SDimitry Andric           accessQuals.push_back(llvm::MDString::get(VMContext, "read_only"));
1777fe6060f1SDimitry Andric       } else
1778fe6060f1SDimitry Andric         accessQuals.push_back(llvm::MDString::get(VMContext, "none"));
1779fe6060f1SDimitry Andric 
1780fe6060f1SDimitry Andric       auto getTypeSpelling = [&](QualType Ty) {
1781fe6060f1SDimitry Andric         auto typeName = Ty.getUnqualifiedType().getAsString(Policy);
1782fe6060f1SDimitry Andric 
1783fe6060f1SDimitry Andric         if (Ty.isCanonical()) {
1784fe6060f1SDimitry Andric           StringRef typeNameRef = typeName;
1785fe6060f1SDimitry Andric           // Turn "unsigned type" to "utype"
1786fe6060f1SDimitry Andric           if (typeNameRef.consume_front("unsigned "))
1787fe6060f1SDimitry Andric             return std::string("u") + typeNameRef.str();
1788fe6060f1SDimitry Andric           if (typeNameRef.consume_front("signed "))
1789fe6060f1SDimitry Andric             return typeNameRef.str();
1790fe6060f1SDimitry Andric         }
1791fe6060f1SDimitry Andric 
1792fe6060f1SDimitry Andric         return typeName;
1793fe6060f1SDimitry Andric       };
1794fe6060f1SDimitry Andric 
1795*0b57cec5SDimitry Andric       if (ty->isPointerType()) {
1796*0b57cec5SDimitry Andric         QualType pointeeTy = ty->getPointeeType();
1797*0b57cec5SDimitry Andric 
1798*0b57cec5SDimitry Andric         // Get address qualifier.
1799*0b57cec5SDimitry Andric         addressQuals.push_back(
1800*0b57cec5SDimitry Andric             llvm::ConstantAsMetadata::get(CGF->Builder.getInt32(
1801*0b57cec5SDimitry Andric                 ArgInfoAddressSpace(pointeeTy.getAddressSpace()))));
1802*0b57cec5SDimitry Andric 
1803*0b57cec5SDimitry Andric         // Get argument type name.
1804fe6060f1SDimitry Andric         std::string typeName = getTypeSpelling(pointeeTy) + "*";
1805*0b57cec5SDimitry Andric         std::string baseTypeName =
1806fe6060f1SDimitry Andric             getTypeSpelling(pointeeTy.getCanonicalType()) + "*";
1807fe6060f1SDimitry Andric         argTypeNames.push_back(llvm::MDString::get(VMContext, typeName));
1808*0b57cec5SDimitry Andric         argBaseTypeNames.push_back(
1809*0b57cec5SDimitry Andric             llvm::MDString::get(VMContext, baseTypeName));
1810*0b57cec5SDimitry Andric 
1811*0b57cec5SDimitry Andric         // Get argument type qualifiers:
1812*0b57cec5SDimitry Andric         if (ty.isRestrictQualified())
1813*0b57cec5SDimitry Andric           typeQuals = "restrict";
1814*0b57cec5SDimitry Andric         if (pointeeTy.isConstQualified() ||
1815*0b57cec5SDimitry Andric             (pointeeTy.getAddressSpace() == LangAS::opencl_constant))
1816*0b57cec5SDimitry Andric           typeQuals += typeQuals.empty() ? "const" : " const";
1817*0b57cec5SDimitry Andric         if (pointeeTy.isVolatileQualified())
1818*0b57cec5SDimitry Andric           typeQuals += typeQuals.empty() ? "volatile" : " volatile";
1819*0b57cec5SDimitry Andric       } else {
1820*0b57cec5SDimitry Andric         uint32_t AddrSpc = 0;
1821*0b57cec5SDimitry Andric         bool isPipe = ty->isPipeType();
1822*0b57cec5SDimitry Andric         if (ty->isImageType() || isPipe)
1823*0b57cec5SDimitry Andric           AddrSpc = ArgInfoAddressSpace(LangAS::opencl_global);
1824*0b57cec5SDimitry Andric 
1825*0b57cec5SDimitry Andric         addressQuals.push_back(
1826*0b57cec5SDimitry Andric             llvm::ConstantAsMetadata::get(CGF->Builder.getInt32(AddrSpc)));
1827*0b57cec5SDimitry Andric 
1828*0b57cec5SDimitry Andric         // Get argument type name.
1829fe6060f1SDimitry Andric         ty = isPipe ? ty->castAs<PipeType>()->getElementType() : ty;
1830fe6060f1SDimitry Andric         std::string typeName = getTypeSpelling(ty);
1831fe6060f1SDimitry Andric         std::string baseTypeName = getTypeSpelling(ty.getCanonicalType());
1832*0b57cec5SDimitry Andric 
1833*0b57cec5SDimitry Andric         // Remove access qualifiers on images
1834*0b57cec5SDimitry Andric         // (as they are inseparable from type in clang implementation,
1835*0b57cec5SDimitry Andric         // but OpenCL spec provides a special query to get access qualifier
1836*0b57cec5SDimitry Andric         // via clGetKernelArgInfo with CL_KERNEL_ARG_ACCESS_QUALIFIER):
1837*0b57cec5SDimitry Andric         if (ty->isImageType()) {
1838*0b57cec5SDimitry Andric           removeImageAccessQualifier(typeName);
1839*0b57cec5SDimitry Andric           removeImageAccessQualifier(baseTypeName);
1840*0b57cec5SDimitry Andric         }
1841*0b57cec5SDimitry Andric 
1842*0b57cec5SDimitry Andric         argTypeNames.push_back(llvm::MDString::get(VMContext, typeName));
1843*0b57cec5SDimitry Andric         argBaseTypeNames.push_back(
1844*0b57cec5SDimitry Andric             llvm::MDString::get(VMContext, baseTypeName));
1845*0b57cec5SDimitry Andric 
1846*0b57cec5SDimitry Andric         if (isPipe)
1847*0b57cec5SDimitry Andric           typeQuals = "pipe";
1848*0b57cec5SDimitry Andric       }
1849*0b57cec5SDimitry Andric       argTypeQuals.push_back(llvm::MDString::get(VMContext, typeQuals));
1850*0b57cec5SDimitry Andric     }
1851*0b57cec5SDimitry Andric 
185281ad6265SDimitry Andric   if (getLangOpts().OpenCL) {
1853*0b57cec5SDimitry Andric     Fn->setMetadata("kernel_arg_addr_space",
1854*0b57cec5SDimitry Andric                     llvm::MDNode::get(VMContext, addressQuals));
1855*0b57cec5SDimitry Andric     Fn->setMetadata("kernel_arg_access_qual",
1856*0b57cec5SDimitry Andric                     llvm::MDNode::get(VMContext, accessQuals));
1857*0b57cec5SDimitry Andric     Fn->setMetadata("kernel_arg_type",
1858*0b57cec5SDimitry Andric                     llvm::MDNode::get(VMContext, argTypeNames));
1859*0b57cec5SDimitry Andric     Fn->setMetadata("kernel_arg_base_type",
1860*0b57cec5SDimitry Andric                     llvm::MDNode::get(VMContext, argBaseTypeNames));
1861*0b57cec5SDimitry Andric     Fn->setMetadata("kernel_arg_type_qual",
1862*0b57cec5SDimitry Andric                     llvm::MDNode::get(VMContext, argTypeQuals));
186381ad6265SDimitry Andric   }
186481ad6265SDimitry Andric   if (getCodeGenOpts().EmitOpenCLArgMetadata ||
186581ad6265SDimitry Andric       getCodeGenOpts().HIPSaveKernelArgName)
1866*0b57cec5SDimitry Andric     Fn->setMetadata("kernel_arg_name",
1867*0b57cec5SDimitry Andric                     llvm::MDNode::get(VMContext, argNames));
1868*0b57cec5SDimitry Andric }
1869*0b57cec5SDimitry Andric 
1870*0b57cec5SDimitry Andric /// Determines whether the language options require us to model
1871*0b57cec5SDimitry Andric /// unwind exceptions.  We treat -fexceptions as mandating this
1872*0b57cec5SDimitry Andric /// except under the fragile ObjC ABI with only ObjC exceptions
1873*0b57cec5SDimitry Andric /// enabled.  This means, for example, that C with -fexceptions
1874*0b57cec5SDimitry Andric /// enables this.
1875*0b57cec5SDimitry Andric static bool hasUnwindExceptions(const LangOptions &LangOpts) {
1876*0b57cec5SDimitry Andric   // If exceptions are completely disabled, obviously this is false.
1877*0b57cec5SDimitry Andric   if (!LangOpts.Exceptions) return false;
1878*0b57cec5SDimitry Andric 
1879*0b57cec5SDimitry Andric   // If C++ exceptions are enabled, this is true.
1880*0b57cec5SDimitry Andric   if (LangOpts.CXXExceptions) return true;
1881*0b57cec5SDimitry Andric 
1882*0b57cec5SDimitry Andric   // If ObjC exceptions are enabled, this depends on the ABI.
1883*0b57cec5SDimitry Andric   if (LangOpts.ObjCExceptions) {
1884*0b57cec5SDimitry Andric     return LangOpts.ObjCRuntime.hasUnwindExceptions();
1885*0b57cec5SDimitry Andric   }
1886*0b57cec5SDimitry Andric 
1887*0b57cec5SDimitry Andric   return true;
1888*0b57cec5SDimitry Andric }
1889*0b57cec5SDimitry Andric 
1890*0b57cec5SDimitry Andric static bool requiresMemberFunctionPointerTypeMetadata(CodeGenModule &CGM,
1891*0b57cec5SDimitry Andric                                                       const CXXMethodDecl *MD) {
1892*0b57cec5SDimitry Andric   // Check that the type metadata can ever actually be used by a call.
1893*0b57cec5SDimitry Andric   if (!CGM.getCodeGenOpts().LTOUnit ||
1894*0b57cec5SDimitry Andric       !CGM.HasHiddenLTOVisibility(MD->getParent()))
1895*0b57cec5SDimitry Andric     return false;
1896*0b57cec5SDimitry Andric 
1897*0b57cec5SDimitry Andric   // Only functions whose address can be taken with a member function pointer
1898*0b57cec5SDimitry Andric   // need this sort of type metadata.
1899*0b57cec5SDimitry Andric   return !MD->isStatic() && !MD->isVirtual() && !isa<CXXConstructorDecl>(MD) &&
1900*0b57cec5SDimitry Andric          !isa<CXXDestructorDecl>(MD);
1901*0b57cec5SDimitry Andric }
1902*0b57cec5SDimitry Andric 
1903*0b57cec5SDimitry Andric std::vector<const CXXRecordDecl *>
1904*0b57cec5SDimitry Andric CodeGenModule::getMostBaseClasses(const CXXRecordDecl *RD) {
1905*0b57cec5SDimitry Andric   llvm::SetVector<const CXXRecordDecl *> MostBases;
1906*0b57cec5SDimitry Andric 
1907*0b57cec5SDimitry Andric   std::function<void (const CXXRecordDecl *)> CollectMostBases;
1908*0b57cec5SDimitry Andric   CollectMostBases = [&](const CXXRecordDecl *RD) {
1909*0b57cec5SDimitry Andric     if (RD->getNumBases() == 0)
1910*0b57cec5SDimitry Andric       MostBases.insert(RD);
1911*0b57cec5SDimitry Andric     for (const CXXBaseSpecifier &B : RD->bases())
1912*0b57cec5SDimitry Andric       CollectMostBases(B.getType()->getAsCXXRecordDecl());
1913*0b57cec5SDimitry Andric   };
1914*0b57cec5SDimitry Andric   CollectMostBases(RD);
1915*0b57cec5SDimitry Andric   return MostBases.takeVector();
1916*0b57cec5SDimitry Andric }
1917*0b57cec5SDimitry Andric 
191881ad6265SDimitry Andric llvm::GlobalVariable *
191981ad6265SDimitry Andric CodeGenModule::GetOrCreateRTTIProxyGlobalVariable(llvm::Constant *Addr) {
192081ad6265SDimitry Andric   auto It = RTTIProxyMap.find(Addr);
192181ad6265SDimitry Andric   if (It != RTTIProxyMap.end())
192281ad6265SDimitry Andric     return It->second;
192381ad6265SDimitry Andric 
192481ad6265SDimitry Andric   auto *FTRTTIProxy = new llvm::GlobalVariable(
192581ad6265SDimitry Andric       TheModule, Addr->getType(),
192681ad6265SDimitry Andric       /*isConstant=*/true, llvm::GlobalValue::PrivateLinkage, Addr,
192781ad6265SDimitry Andric       "__llvm_rtti_proxy");
192881ad6265SDimitry Andric   FTRTTIProxy->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global);
192981ad6265SDimitry Andric 
193081ad6265SDimitry Andric   RTTIProxyMap[Addr] = FTRTTIProxy;
193181ad6265SDimitry Andric   return FTRTTIProxy;
193281ad6265SDimitry Andric }
193381ad6265SDimitry Andric 
1934*0b57cec5SDimitry Andric void CodeGenModule::SetLLVMFunctionAttributesForDefinition(const Decl *D,
1935*0b57cec5SDimitry Andric                                                            llvm::Function *F) {
193604eeddc0SDimitry Andric   llvm::AttrBuilder B(F->getContext());
1937*0b57cec5SDimitry Andric 
1938*0b57cec5SDimitry Andric   if (CodeGenOpts.UnwindTables)
193981ad6265SDimitry Andric     B.addUWTableAttr(llvm::UWTableKind(CodeGenOpts.UnwindTables));
1940*0b57cec5SDimitry Andric 
19415ffd83dbSDimitry Andric   if (CodeGenOpts.StackClashProtector)
19425ffd83dbSDimitry Andric     B.addAttribute("probe-stack", "inline-asm");
19435ffd83dbSDimitry Andric 
1944*0b57cec5SDimitry Andric   if (!hasUnwindExceptions(LangOpts))
1945*0b57cec5SDimitry Andric     B.addAttribute(llvm::Attribute::NoUnwind);
1946*0b57cec5SDimitry Andric 
1947*0b57cec5SDimitry Andric   if (!D || !D->hasAttr<NoStackProtectorAttr>()) {
1948*0b57cec5SDimitry Andric     if (LangOpts.getStackProtector() == LangOptions::SSPOn)
1949*0b57cec5SDimitry Andric       B.addAttribute(llvm::Attribute::StackProtect);
1950*0b57cec5SDimitry Andric     else if (LangOpts.getStackProtector() == LangOptions::SSPStrong)
1951*0b57cec5SDimitry Andric       B.addAttribute(llvm::Attribute::StackProtectStrong);
1952*0b57cec5SDimitry Andric     else if (LangOpts.getStackProtector() == LangOptions::SSPReq)
1953*0b57cec5SDimitry Andric       B.addAttribute(llvm::Attribute::StackProtectReq);
1954*0b57cec5SDimitry Andric   }
1955*0b57cec5SDimitry Andric 
1956*0b57cec5SDimitry Andric   if (!D) {
1957*0b57cec5SDimitry Andric     // If we don't have a declaration to control inlining, the function isn't
1958*0b57cec5SDimitry Andric     // explicitly marked as alwaysinline for semantic reasons, and inlining is
1959*0b57cec5SDimitry Andric     // disabled, mark the function as noinline.
1960*0b57cec5SDimitry Andric     if (!F->hasFnAttribute(llvm::Attribute::AlwaysInline) &&
1961*0b57cec5SDimitry Andric         CodeGenOpts.getInlining() == CodeGenOptions::OnlyAlwaysInlining)
1962*0b57cec5SDimitry Andric       B.addAttribute(llvm::Attribute::NoInline);
1963*0b57cec5SDimitry Andric 
1964349cc55cSDimitry Andric     F->addFnAttrs(B);
1965*0b57cec5SDimitry Andric     return;
1966*0b57cec5SDimitry Andric   }
1967*0b57cec5SDimitry Andric 
1968*0b57cec5SDimitry Andric   // Track whether we need to add the optnone LLVM attribute,
1969*0b57cec5SDimitry Andric   // starting with the default for this optimization level.
1970*0b57cec5SDimitry Andric   bool ShouldAddOptNone =
1971*0b57cec5SDimitry Andric       !CodeGenOpts.DisableO0ImplyOptNone && CodeGenOpts.OptimizationLevel == 0;
1972*0b57cec5SDimitry Andric   // We can't add optnone in the following cases, it won't pass the verifier.
1973*0b57cec5SDimitry Andric   ShouldAddOptNone &= !D->hasAttr<MinSizeAttr>();
1974*0b57cec5SDimitry Andric   ShouldAddOptNone &= !D->hasAttr<AlwaysInlineAttr>();
1975*0b57cec5SDimitry Andric 
1976480093f4SDimitry Andric   // Add optnone, but do so only if the function isn't always_inline.
1977480093f4SDimitry Andric   if ((ShouldAddOptNone || D->hasAttr<OptimizeNoneAttr>()) &&
1978480093f4SDimitry Andric       !F->hasFnAttribute(llvm::Attribute::AlwaysInline)) {
1979*0b57cec5SDimitry Andric     B.addAttribute(llvm::Attribute::OptimizeNone);
1980*0b57cec5SDimitry Andric 
1981*0b57cec5SDimitry Andric     // OptimizeNone implies noinline; we should not be inlining such functions.
1982*0b57cec5SDimitry Andric     B.addAttribute(llvm::Attribute::NoInline);
1983*0b57cec5SDimitry Andric 
1984*0b57cec5SDimitry Andric     // We still need to handle naked functions even though optnone subsumes
1985*0b57cec5SDimitry Andric     // much of their semantics.
1986*0b57cec5SDimitry Andric     if (D->hasAttr<NakedAttr>())
1987*0b57cec5SDimitry Andric       B.addAttribute(llvm::Attribute::Naked);
1988*0b57cec5SDimitry Andric 
1989*0b57cec5SDimitry Andric     // OptimizeNone wins over OptimizeForSize and MinSize.
1990*0b57cec5SDimitry Andric     F->removeFnAttr(llvm::Attribute::OptimizeForSize);
1991*0b57cec5SDimitry Andric     F->removeFnAttr(llvm::Attribute::MinSize);
1992*0b57cec5SDimitry Andric   } else if (D->hasAttr<NakedAttr>()) {
1993*0b57cec5SDimitry Andric     // Naked implies noinline: we should not be inlining such functions.
1994*0b57cec5SDimitry Andric     B.addAttribute(llvm::Attribute::Naked);
1995*0b57cec5SDimitry Andric     B.addAttribute(llvm::Attribute::NoInline);
1996*0b57cec5SDimitry Andric   } else if (D->hasAttr<NoDuplicateAttr>()) {
1997*0b57cec5SDimitry Andric     B.addAttribute(llvm::Attribute::NoDuplicate);
1998480093f4SDimitry Andric   } else if (D->hasAttr<NoInlineAttr>() && !F->hasFnAttribute(llvm::Attribute::AlwaysInline)) {
1999480093f4SDimitry Andric     // Add noinline if the function isn't always_inline.
2000*0b57cec5SDimitry Andric     B.addAttribute(llvm::Attribute::NoInline);
2001*0b57cec5SDimitry Andric   } else if (D->hasAttr<AlwaysInlineAttr>() &&
2002*0b57cec5SDimitry Andric              !F->hasFnAttribute(llvm::Attribute::NoInline)) {
2003*0b57cec5SDimitry Andric     // (noinline wins over always_inline, and we can't specify both in IR)
2004*0b57cec5SDimitry Andric     B.addAttribute(llvm::Attribute::AlwaysInline);
2005*0b57cec5SDimitry Andric   } else if (CodeGenOpts.getInlining() == CodeGenOptions::OnlyAlwaysInlining) {
2006*0b57cec5SDimitry Andric     // If we're not inlining, then force everything that isn't always_inline to
2007*0b57cec5SDimitry Andric     // carry an explicit noinline attribute.
2008*0b57cec5SDimitry Andric     if (!F->hasFnAttribute(llvm::Attribute::AlwaysInline))
2009*0b57cec5SDimitry Andric       B.addAttribute(llvm::Attribute::NoInline);
2010*0b57cec5SDimitry Andric   } else {
2011*0b57cec5SDimitry Andric     // Otherwise, propagate the inline hint attribute and potentially use its
2012*0b57cec5SDimitry Andric     // absence to mark things as noinline.
2013*0b57cec5SDimitry Andric     if (auto *FD = dyn_cast<FunctionDecl>(D)) {
2014*0b57cec5SDimitry Andric       // Search function and template pattern redeclarations for inline.
2015*0b57cec5SDimitry Andric       auto CheckForInline = [](const FunctionDecl *FD) {
2016*0b57cec5SDimitry Andric         auto CheckRedeclForInline = [](const FunctionDecl *Redecl) {
2017*0b57cec5SDimitry Andric           return Redecl->isInlineSpecified();
2018*0b57cec5SDimitry Andric         };
2019*0b57cec5SDimitry Andric         if (any_of(FD->redecls(), CheckRedeclForInline))
2020*0b57cec5SDimitry Andric           return true;
2021*0b57cec5SDimitry Andric         const FunctionDecl *Pattern = FD->getTemplateInstantiationPattern();
2022*0b57cec5SDimitry Andric         if (!Pattern)
2023*0b57cec5SDimitry Andric           return false;
2024*0b57cec5SDimitry Andric         return any_of(Pattern->redecls(), CheckRedeclForInline);
2025*0b57cec5SDimitry Andric       };
2026*0b57cec5SDimitry Andric       if (CheckForInline(FD)) {
2027*0b57cec5SDimitry Andric         B.addAttribute(llvm::Attribute::InlineHint);
2028*0b57cec5SDimitry Andric       } else if (CodeGenOpts.getInlining() ==
2029*0b57cec5SDimitry Andric                      CodeGenOptions::OnlyHintInlining &&
2030*0b57cec5SDimitry Andric                  !FD->isInlined() &&
2031*0b57cec5SDimitry Andric                  !F->hasFnAttribute(llvm::Attribute::AlwaysInline)) {
2032*0b57cec5SDimitry Andric         B.addAttribute(llvm::Attribute::NoInline);
2033*0b57cec5SDimitry Andric       }
2034*0b57cec5SDimitry Andric     }
2035*0b57cec5SDimitry Andric   }
2036*0b57cec5SDimitry Andric 
2037*0b57cec5SDimitry Andric   // Add other optimization related attributes if we are optimizing this
2038*0b57cec5SDimitry Andric   // function.
2039*0b57cec5SDimitry Andric   if (!D->hasAttr<OptimizeNoneAttr>()) {
2040*0b57cec5SDimitry Andric     if (D->hasAttr<ColdAttr>()) {
2041*0b57cec5SDimitry Andric       if (!ShouldAddOptNone)
2042*0b57cec5SDimitry Andric         B.addAttribute(llvm::Attribute::OptimizeForSize);
2043*0b57cec5SDimitry Andric       B.addAttribute(llvm::Attribute::Cold);
2044*0b57cec5SDimitry Andric     }
2045e8d8bef9SDimitry Andric     if (D->hasAttr<HotAttr>())
2046e8d8bef9SDimitry Andric       B.addAttribute(llvm::Attribute::Hot);
2047*0b57cec5SDimitry Andric     if (D->hasAttr<MinSizeAttr>())
2048*0b57cec5SDimitry Andric       B.addAttribute(llvm::Attribute::MinSize);
2049*0b57cec5SDimitry Andric   }
2050*0b57cec5SDimitry Andric 
2051349cc55cSDimitry Andric   F->addFnAttrs(B);
2052*0b57cec5SDimitry Andric 
2053*0b57cec5SDimitry Andric   unsigned alignment = D->getMaxAlignment() / Context.getCharWidth();
2054*0b57cec5SDimitry Andric   if (alignment)
2055a7dea167SDimitry Andric     F->setAlignment(llvm::Align(alignment));
2056*0b57cec5SDimitry Andric 
2057*0b57cec5SDimitry Andric   if (!D->hasAttr<AlignedAttr>())
2058*0b57cec5SDimitry Andric     if (LangOpts.FunctionAlignment)
2059a7dea167SDimitry Andric       F->setAlignment(llvm::Align(1ull << LangOpts.FunctionAlignment));
2060*0b57cec5SDimitry Andric 
2061*0b57cec5SDimitry Andric   // Some C++ ABIs require 2-byte alignment for member functions, in order to
2062*0b57cec5SDimitry Andric   // reserve a bit for differentiating between virtual and non-virtual member
2063*0b57cec5SDimitry Andric   // functions. If the current target's C++ ABI requires this and this is a
2064*0b57cec5SDimitry Andric   // member function, set its alignment accordingly.
2065*0b57cec5SDimitry Andric   if (getTarget().getCXXABI().areMemberFunctionsAligned()) {
2066*0b57cec5SDimitry Andric     if (F->getAlignment() < 2 && isa<CXXMethodDecl>(D))
2067a7dea167SDimitry Andric       F->setAlignment(llvm::Align(2));
2068*0b57cec5SDimitry Andric   }
2069*0b57cec5SDimitry Andric 
2070a7dea167SDimitry Andric   // In the cross-dso CFI mode with canonical jump tables, we want !type
2071a7dea167SDimitry Andric   // attributes on definitions only.
2072a7dea167SDimitry Andric   if (CodeGenOpts.SanitizeCfiCrossDso &&
2073a7dea167SDimitry Andric       CodeGenOpts.SanitizeCfiCanonicalJumpTables) {
2074a7dea167SDimitry Andric     if (auto *FD = dyn_cast<FunctionDecl>(D)) {
2075a7dea167SDimitry Andric       // Skip available_externally functions. They won't be codegen'ed in the
2076a7dea167SDimitry Andric       // current module anyway.
2077a7dea167SDimitry Andric       if (getContext().GetGVALinkageForFunction(FD) != GVA_AvailableExternally)
2078*0b57cec5SDimitry Andric         CreateFunctionTypeMetadataForIcall(FD, F);
2079a7dea167SDimitry Andric     }
2080a7dea167SDimitry Andric   }
2081*0b57cec5SDimitry Andric 
2082*0b57cec5SDimitry Andric   // Emit type metadata on member functions for member function pointer checks.
2083*0b57cec5SDimitry Andric   // These are only ever necessary on definitions; we're guaranteed that the
2084*0b57cec5SDimitry Andric   // definition will be present in the LTO unit as a result of LTO visibility.
2085*0b57cec5SDimitry Andric   auto *MD = dyn_cast<CXXMethodDecl>(D);
2086*0b57cec5SDimitry Andric   if (MD && requiresMemberFunctionPointerTypeMetadata(*this, MD)) {
2087*0b57cec5SDimitry Andric     for (const CXXRecordDecl *Base : getMostBaseClasses(MD->getParent())) {
2088*0b57cec5SDimitry Andric       llvm::Metadata *Id =
2089*0b57cec5SDimitry Andric           CreateMetadataIdentifierForType(Context.getMemberPointerType(
2090*0b57cec5SDimitry Andric               MD->getType(), Context.getRecordType(Base).getTypePtr()));
2091*0b57cec5SDimitry Andric       F->addTypeMetadata(0, Id);
2092*0b57cec5SDimitry Andric     }
2093*0b57cec5SDimitry Andric   }
2094*0b57cec5SDimitry Andric }
2095*0b57cec5SDimitry Andric 
2096e8d8bef9SDimitry Andric void CodeGenModule::setLLVMFunctionFEnvAttributes(const FunctionDecl *D,
2097e8d8bef9SDimitry Andric                                                   llvm::Function *F) {
2098e8d8bef9SDimitry Andric   if (D->hasAttr<StrictFPAttr>()) {
209904eeddc0SDimitry Andric     llvm::AttrBuilder FuncAttrs(F->getContext());
2100e8d8bef9SDimitry Andric     FuncAttrs.addAttribute("strictfp");
2101349cc55cSDimitry Andric     F->addFnAttrs(FuncAttrs);
2102e8d8bef9SDimitry Andric   }
2103e8d8bef9SDimitry Andric }
2104e8d8bef9SDimitry Andric 
2105*0b57cec5SDimitry Andric void CodeGenModule::SetCommonAttributes(GlobalDecl GD, llvm::GlobalValue *GV) {
2106*0b57cec5SDimitry Andric   const Decl *D = GD.getDecl();
2107349cc55cSDimitry Andric   if (isa_and_nonnull<NamedDecl>(D))
2108*0b57cec5SDimitry Andric     setGVProperties(GV, GD);
2109*0b57cec5SDimitry Andric   else
2110*0b57cec5SDimitry Andric     GV->setVisibility(llvm::GlobalValue::DefaultVisibility);
2111*0b57cec5SDimitry Andric 
2112*0b57cec5SDimitry Andric   if (D && D->hasAttr<UsedAttr>())
2113fe6060f1SDimitry Andric     addUsedOrCompilerUsedGlobal(GV);
2114*0b57cec5SDimitry Andric 
2115*0b57cec5SDimitry Andric   if (CodeGenOpts.KeepStaticConsts && D && isa<VarDecl>(D)) {
2116*0b57cec5SDimitry Andric     const auto *VD = cast<VarDecl>(D);
2117*0b57cec5SDimitry Andric     if (VD->getType().isConstQualified() &&
2118*0b57cec5SDimitry Andric         VD->getStorageDuration() == SD_Static)
2119fe6060f1SDimitry Andric       addUsedOrCompilerUsedGlobal(GV);
2120*0b57cec5SDimitry Andric   }
2121*0b57cec5SDimitry Andric }
2122*0b57cec5SDimitry Andric 
2123*0b57cec5SDimitry Andric bool CodeGenModule::GetCPUAndFeaturesAttributes(GlobalDecl GD,
2124*0b57cec5SDimitry Andric                                                 llvm::AttrBuilder &Attrs) {
2125*0b57cec5SDimitry Andric   // Add target-cpu and target-features attributes to functions. If
2126*0b57cec5SDimitry Andric   // we have a decl for the function and it has a target attribute then
2127*0b57cec5SDimitry Andric   // parse that and add it to the feature set.
2128*0b57cec5SDimitry Andric   StringRef TargetCPU = getTarget().getTargetOpts().CPU;
2129e8d8bef9SDimitry Andric   StringRef TuneCPU = getTarget().getTargetOpts().TuneCPU;
2130*0b57cec5SDimitry Andric   std::vector<std::string> Features;
2131*0b57cec5SDimitry Andric   const auto *FD = dyn_cast_or_null<FunctionDecl>(GD.getDecl());
2132*0b57cec5SDimitry Andric   FD = FD ? FD->getMostRecentDecl() : FD;
2133*0b57cec5SDimitry Andric   const auto *TD = FD ? FD->getAttr<TargetAttr>() : nullptr;
2134*0b57cec5SDimitry Andric   const auto *SD = FD ? FD->getAttr<CPUSpecificAttr>() : nullptr;
21354824e7fdSDimitry Andric   const auto *TC = FD ? FD->getAttr<TargetClonesAttr>() : nullptr;
2136*0b57cec5SDimitry Andric   bool AddedAttr = false;
21374824e7fdSDimitry Andric   if (TD || SD || TC) {
2138*0b57cec5SDimitry Andric     llvm::StringMap<bool> FeatureMap;
2139480093f4SDimitry Andric     getContext().getFunctionFeatureMap(FeatureMap, GD);
2140*0b57cec5SDimitry Andric 
2141*0b57cec5SDimitry Andric     // Produce the canonical string for this set of features.
2142*0b57cec5SDimitry Andric     for (const llvm::StringMap<bool>::value_type &Entry : FeatureMap)
2143*0b57cec5SDimitry Andric       Features.push_back((Entry.getValue() ? "+" : "-") + Entry.getKey().str());
2144*0b57cec5SDimitry Andric 
2145*0b57cec5SDimitry Andric     // Now add the target-cpu and target-features to the function.
2146*0b57cec5SDimitry Andric     // While we populated the feature map above, we still need to
2147*0b57cec5SDimitry Andric     // get and parse the target attribute so we can get the cpu for
2148*0b57cec5SDimitry Andric     // the function.
2149*0b57cec5SDimitry Andric     if (TD) {
2150480093f4SDimitry Andric       ParsedTargetAttr ParsedAttr = TD->parse();
2151e8d8bef9SDimitry Andric       if (!ParsedAttr.Architecture.empty() &&
2152e8d8bef9SDimitry Andric           getTarget().isValidCPUName(ParsedAttr.Architecture)) {
2153*0b57cec5SDimitry Andric         TargetCPU = ParsedAttr.Architecture;
2154e8d8bef9SDimitry Andric         TuneCPU = ""; // Clear the tune CPU.
2155e8d8bef9SDimitry Andric       }
2156e8d8bef9SDimitry Andric       if (!ParsedAttr.Tune.empty() &&
2157e8d8bef9SDimitry Andric           getTarget().isValidCPUName(ParsedAttr.Tune))
2158e8d8bef9SDimitry Andric         TuneCPU = ParsedAttr.Tune;
2159*0b57cec5SDimitry Andric     }
216081ad6265SDimitry Andric 
216181ad6265SDimitry Andric     if (SD) {
216281ad6265SDimitry Andric       // Apply the given CPU name as the 'tune-cpu' so that the optimizer can
216381ad6265SDimitry Andric       // favor this processor.
216481ad6265SDimitry Andric       TuneCPU = getTarget().getCPUSpecificTuneName(
216581ad6265SDimitry Andric           SD->getCPUName(GD.getMultiVersionIndex())->getName());
216681ad6265SDimitry Andric     }
2167*0b57cec5SDimitry Andric   } else {
2168*0b57cec5SDimitry Andric     // Otherwise just add the existing target cpu and target features to the
2169*0b57cec5SDimitry Andric     // function.
2170*0b57cec5SDimitry Andric     Features = getTarget().getTargetOpts().Features;
2171*0b57cec5SDimitry Andric   }
2172*0b57cec5SDimitry Andric 
2173e8d8bef9SDimitry Andric   if (!TargetCPU.empty()) {
2174*0b57cec5SDimitry Andric     Attrs.addAttribute("target-cpu", TargetCPU);
2175*0b57cec5SDimitry Andric     AddedAttr = true;
2176*0b57cec5SDimitry Andric   }
2177e8d8bef9SDimitry Andric   if (!TuneCPU.empty()) {
2178e8d8bef9SDimitry Andric     Attrs.addAttribute("tune-cpu", TuneCPU);
2179e8d8bef9SDimitry Andric     AddedAttr = true;
2180e8d8bef9SDimitry Andric   }
2181*0b57cec5SDimitry Andric   if (!Features.empty()) {
2182*0b57cec5SDimitry Andric     llvm::sort(Features);
2183*0b57cec5SDimitry Andric     Attrs.addAttribute("target-features", llvm::join(Features, ","));
2184*0b57cec5SDimitry Andric     AddedAttr = true;
2185*0b57cec5SDimitry Andric   }
2186*0b57cec5SDimitry Andric 
2187*0b57cec5SDimitry Andric   return AddedAttr;
2188*0b57cec5SDimitry Andric }
2189*0b57cec5SDimitry Andric 
2190*0b57cec5SDimitry Andric void CodeGenModule::setNonAliasAttributes(GlobalDecl GD,
2191*0b57cec5SDimitry Andric                                           llvm::GlobalObject *GO) {
2192*0b57cec5SDimitry Andric   const Decl *D = GD.getDecl();
2193*0b57cec5SDimitry Andric   SetCommonAttributes(GD, GO);
2194*0b57cec5SDimitry Andric 
2195*0b57cec5SDimitry Andric   if (D) {
2196*0b57cec5SDimitry Andric     if (auto *GV = dyn_cast<llvm::GlobalVariable>(GO)) {
2197fe6060f1SDimitry Andric       if (D->hasAttr<RetainAttr>())
2198fe6060f1SDimitry Andric         addUsedGlobal(GV);
2199*0b57cec5SDimitry Andric       if (auto *SA = D->getAttr<PragmaClangBSSSectionAttr>())
2200*0b57cec5SDimitry Andric         GV->addAttribute("bss-section", SA->getName());
2201*0b57cec5SDimitry Andric       if (auto *SA = D->getAttr<PragmaClangDataSectionAttr>())
2202*0b57cec5SDimitry Andric         GV->addAttribute("data-section", SA->getName());
2203*0b57cec5SDimitry Andric       if (auto *SA = D->getAttr<PragmaClangRodataSectionAttr>())
2204*0b57cec5SDimitry Andric         GV->addAttribute("rodata-section", SA->getName());
2205a7dea167SDimitry Andric       if (auto *SA = D->getAttr<PragmaClangRelroSectionAttr>())
2206a7dea167SDimitry Andric         GV->addAttribute("relro-section", SA->getName());
2207*0b57cec5SDimitry Andric     }
2208*0b57cec5SDimitry Andric 
2209*0b57cec5SDimitry Andric     if (auto *F = dyn_cast<llvm::Function>(GO)) {
2210fe6060f1SDimitry Andric       if (D->hasAttr<RetainAttr>())
2211fe6060f1SDimitry Andric         addUsedGlobal(F);
2212*0b57cec5SDimitry Andric       if (auto *SA = D->getAttr<PragmaClangTextSectionAttr>())
2213*0b57cec5SDimitry Andric         if (!D->getAttr<SectionAttr>())
2214*0b57cec5SDimitry Andric           F->addFnAttr("implicit-section-name", SA->getName());
2215*0b57cec5SDimitry Andric 
221604eeddc0SDimitry Andric       llvm::AttrBuilder Attrs(F->getContext());
2217*0b57cec5SDimitry Andric       if (GetCPUAndFeaturesAttributes(GD, Attrs)) {
2218*0b57cec5SDimitry Andric         // We know that GetCPUAndFeaturesAttributes will always have the
2219*0b57cec5SDimitry Andric         // newest set, since it has the newest possible FunctionDecl, so the
2220*0b57cec5SDimitry Andric         // new ones should replace the old.
222104eeddc0SDimitry Andric         llvm::AttributeMask RemoveAttrs;
2222e8d8bef9SDimitry Andric         RemoveAttrs.addAttribute("target-cpu");
2223e8d8bef9SDimitry Andric         RemoveAttrs.addAttribute("target-features");
2224e8d8bef9SDimitry Andric         RemoveAttrs.addAttribute("tune-cpu");
2225349cc55cSDimitry Andric         F->removeFnAttrs(RemoveAttrs);
2226349cc55cSDimitry Andric         F->addFnAttrs(Attrs);
2227*0b57cec5SDimitry Andric       }
2228*0b57cec5SDimitry Andric     }
2229*0b57cec5SDimitry Andric 
2230*0b57cec5SDimitry Andric     if (const auto *CSA = D->getAttr<CodeSegAttr>())
2231*0b57cec5SDimitry Andric       GO->setSection(CSA->getName());
2232*0b57cec5SDimitry Andric     else if (const auto *SA = D->getAttr<SectionAttr>())
2233*0b57cec5SDimitry Andric       GO->setSection(SA->getName());
2234*0b57cec5SDimitry Andric   }
2235*0b57cec5SDimitry Andric 
2236*0b57cec5SDimitry Andric   getTargetCodeGenInfo().setTargetAttributes(D, GO, *this);
2237*0b57cec5SDimitry Andric }
2238*0b57cec5SDimitry Andric 
2239*0b57cec5SDimitry Andric void CodeGenModule::SetInternalFunctionAttributes(GlobalDecl GD,
2240*0b57cec5SDimitry Andric                                                   llvm::Function *F,
2241*0b57cec5SDimitry Andric                                                   const CGFunctionInfo &FI) {
2242*0b57cec5SDimitry Andric   const Decl *D = GD.getDecl();
2243fe6060f1SDimitry Andric   SetLLVMFunctionAttributes(GD, FI, F, /*IsThunk=*/false);
2244*0b57cec5SDimitry Andric   SetLLVMFunctionAttributesForDefinition(D, F);
2245*0b57cec5SDimitry Andric 
2246*0b57cec5SDimitry Andric   F->setLinkage(llvm::Function::InternalLinkage);
2247*0b57cec5SDimitry Andric 
2248*0b57cec5SDimitry Andric   setNonAliasAttributes(GD, F);
2249*0b57cec5SDimitry Andric }
2250*0b57cec5SDimitry Andric 
2251*0b57cec5SDimitry Andric static void setLinkageForGV(llvm::GlobalValue *GV, const NamedDecl *ND) {
2252*0b57cec5SDimitry Andric   // Set linkage and visibility in case we never see a definition.
2253*0b57cec5SDimitry Andric   LinkageInfo LV = ND->getLinkageAndVisibility();
2254*0b57cec5SDimitry Andric   // Don't set internal linkage on declarations.
2255*0b57cec5SDimitry Andric   // "extern_weak" is overloaded in LLVM; we probably should have
2256*0b57cec5SDimitry Andric   // separate linkage types for this.
2257*0b57cec5SDimitry Andric   if (isExternallyVisible(LV.getLinkage()) &&
2258*0b57cec5SDimitry Andric       (ND->hasAttr<WeakAttr>() || ND->isWeakImported()))
2259*0b57cec5SDimitry Andric     GV->setLinkage(llvm::GlobalValue::ExternalWeakLinkage);
2260*0b57cec5SDimitry Andric }
2261*0b57cec5SDimitry Andric 
2262*0b57cec5SDimitry Andric void CodeGenModule::CreateFunctionTypeMetadataForIcall(const FunctionDecl *FD,
2263*0b57cec5SDimitry Andric                                                        llvm::Function *F) {
2264*0b57cec5SDimitry Andric   // Only if we are checking indirect calls.
2265*0b57cec5SDimitry Andric   if (!LangOpts.Sanitize.has(SanitizerKind::CFIICall))
2266*0b57cec5SDimitry Andric     return;
2267*0b57cec5SDimitry Andric 
2268*0b57cec5SDimitry Andric   // Non-static class methods are handled via vtable or member function pointer
2269*0b57cec5SDimitry Andric   // checks elsewhere.
2270*0b57cec5SDimitry Andric   if (isa<CXXMethodDecl>(FD) && !cast<CXXMethodDecl>(FD)->isStatic())
2271*0b57cec5SDimitry Andric     return;
2272*0b57cec5SDimitry Andric 
2273*0b57cec5SDimitry Andric   llvm::Metadata *MD = CreateMetadataIdentifierForType(FD->getType());
2274*0b57cec5SDimitry Andric   F->addTypeMetadata(0, MD);
2275*0b57cec5SDimitry Andric   F->addTypeMetadata(0, CreateMetadataIdentifierGeneralized(FD->getType()));
2276*0b57cec5SDimitry Andric 
2277*0b57cec5SDimitry Andric   // Emit a hash-based bit set entry for cross-DSO calls.
2278*0b57cec5SDimitry Andric   if (CodeGenOpts.SanitizeCfiCrossDso)
2279*0b57cec5SDimitry Andric     if (auto CrossDsoTypeId = CreateCrossDsoCfiTypeId(MD))
2280*0b57cec5SDimitry Andric       F->addTypeMetadata(0, llvm::ConstantAsMetadata::get(CrossDsoTypeId));
2281*0b57cec5SDimitry Andric }
2282*0b57cec5SDimitry Andric 
2283*0b57cec5SDimitry Andric void CodeGenModule::SetFunctionAttributes(GlobalDecl GD, llvm::Function *F,
2284*0b57cec5SDimitry Andric                                           bool IsIncompleteFunction,
2285*0b57cec5SDimitry Andric                                           bool IsThunk) {
2286*0b57cec5SDimitry Andric 
2287*0b57cec5SDimitry Andric   if (llvm::Intrinsic::ID IID = F->getIntrinsicID()) {
2288*0b57cec5SDimitry Andric     // If this is an intrinsic function, set the function's attributes
2289*0b57cec5SDimitry Andric     // to the intrinsic's attributes.
2290*0b57cec5SDimitry Andric     F->setAttributes(llvm::Intrinsic::getAttributes(getLLVMContext(), IID));
2291*0b57cec5SDimitry Andric     return;
2292*0b57cec5SDimitry Andric   }
2293*0b57cec5SDimitry Andric 
2294*0b57cec5SDimitry Andric   const auto *FD = cast<FunctionDecl>(GD.getDecl());
2295*0b57cec5SDimitry Andric 
2296*0b57cec5SDimitry Andric   if (!IsIncompleteFunction)
2297fe6060f1SDimitry Andric     SetLLVMFunctionAttributes(GD, getTypes().arrangeGlobalDeclaration(GD), F,
2298fe6060f1SDimitry Andric                               IsThunk);
2299*0b57cec5SDimitry Andric 
2300*0b57cec5SDimitry Andric   // Add the Returned attribute for "this", except for iOS 5 and earlier
2301*0b57cec5SDimitry Andric   // where substantial code, including the libstdc++ dylib, was compiled with
2302*0b57cec5SDimitry Andric   // GCC and does not actually return "this".
2303*0b57cec5SDimitry Andric   if (!IsThunk && getCXXABI().HasThisReturn(GD) &&
2304*0b57cec5SDimitry Andric       !(getTriple().isiOS() && getTriple().isOSVersionLT(6))) {
2305*0b57cec5SDimitry Andric     assert(!F->arg_empty() &&
2306*0b57cec5SDimitry Andric            F->arg_begin()->getType()
2307*0b57cec5SDimitry Andric              ->canLosslesslyBitCastTo(F->getReturnType()) &&
2308*0b57cec5SDimitry Andric            "unexpected this return");
2309349cc55cSDimitry Andric     F->addParamAttr(0, llvm::Attribute::Returned);
2310*0b57cec5SDimitry Andric   }
2311*0b57cec5SDimitry Andric 
2312*0b57cec5SDimitry Andric   // Only a few attributes are set on declarations; these may later be
2313*0b57cec5SDimitry Andric   // overridden by a definition.
2314*0b57cec5SDimitry Andric 
2315*0b57cec5SDimitry Andric   setLinkageForGV(F, FD);
2316*0b57cec5SDimitry Andric   setGVProperties(F, FD);
2317*0b57cec5SDimitry Andric 
2318*0b57cec5SDimitry Andric   // Setup target-specific attributes.
2319*0b57cec5SDimitry Andric   if (!IsIncompleteFunction && F->isDeclaration())
2320*0b57cec5SDimitry Andric     getTargetCodeGenInfo().setTargetAttributes(FD, F, *this);
2321*0b57cec5SDimitry Andric 
2322*0b57cec5SDimitry Andric   if (const auto *CSA = FD->getAttr<CodeSegAttr>())
2323*0b57cec5SDimitry Andric     F->setSection(CSA->getName());
2324*0b57cec5SDimitry Andric   else if (const auto *SA = FD->getAttr<SectionAttr>())
2325*0b57cec5SDimitry Andric      F->setSection(SA->getName());
2326*0b57cec5SDimitry Andric 
2327349cc55cSDimitry Andric   if (const auto *EA = FD->getAttr<ErrorAttr>()) {
2328349cc55cSDimitry Andric     if (EA->isError())
2329349cc55cSDimitry Andric       F->addFnAttr("dontcall-error", EA->getUserDiagnostic());
2330349cc55cSDimitry Andric     else if (EA->isWarning())
2331349cc55cSDimitry Andric       F->addFnAttr("dontcall-warn", EA->getUserDiagnostic());
2332349cc55cSDimitry Andric   }
2333349cc55cSDimitry Andric 
2334d65cd7a5SDimitry Andric   // If we plan on emitting this inline builtin, we can't treat it as a builtin.
2335480093f4SDimitry Andric   if (FD->isInlineBuiltinDeclaration()) {
2336d65cd7a5SDimitry Andric     const FunctionDecl *FDBody;
2337d65cd7a5SDimitry Andric     bool HasBody = FD->hasBody(FDBody);
2338d65cd7a5SDimitry Andric     (void)HasBody;
2339d65cd7a5SDimitry Andric     assert(HasBody && "Inline builtin declarations should always have an "
2340d65cd7a5SDimitry Andric                       "available body!");
2341d65cd7a5SDimitry Andric     if (shouldEmitFunction(FDBody))
2342349cc55cSDimitry Andric       F->addFnAttr(llvm::Attribute::NoBuiltin);
2343480093f4SDimitry Andric   }
2344480093f4SDimitry Andric 
2345*0b57cec5SDimitry Andric   if (FD->isReplaceableGlobalAllocationFunction()) {
2346*0b57cec5SDimitry Andric     // A replaceable global allocation function does not act like a builtin by
2347*0b57cec5SDimitry Andric     // default, only if it is invoked by a new-expression or delete-expression.
2348349cc55cSDimitry Andric     F->addFnAttr(llvm::Attribute::NoBuiltin);
2349*0b57cec5SDimitry Andric   }
2350*0b57cec5SDimitry Andric 
2351*0b57cec5SDimitry Andric   if (isa<CXXConstructorDecl>(FD) || isa<CXXDestructorDecl>(FD))
2352*0b57cec5SDimitry Andric     F->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global);
2353*0b57cec5SDimitry Andric   else if (const auto *MD = dyn_cast<CXXMethodDecl>(FD))
2354*0b57cec5SDimitry Andric     if (MD->isVirtual())
2355*0b57cec5SDimitry Andric       F->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global);
2356*0b57cec5SDimitry Andric 
2357*0b57cec5SDimitry Andric   // Don't emit entries for function declarations in the cross-DSO mode. This
2358a7dea167SDimitry Andric   // is handled with better precision by the receiving DSO. But if jump tables
2359a7dea167SDimitry Andric   // are non-canonical then we need type metadata in order to produce the local
2360a7dea167SDimitry Andric   // jump table.
2361a7dea167SDimitry Andric   if (!CodeGenOpts.SanitizeCfiCrossDso ||
2362a7dea167SDimitry Andric       !CodeGenOpts.SanitizeCfiCanonicalJumpTables)
2363*0b57cec5SDimitry Andric     CreateFunctionTypeMetadataForIcall(FD, F);
2364*0b57cec5SDimitry Andric 
2365*0b57cec5SDimitry Andric   if (getLangOpts().OpenMP && FD->hasAttr<OMPDeclareSimdDeclAttr>())
2366*0b57cec5SDimitry Andric     getOpenMPRuntime().emitDeclareSimdFunction(FD, F);
2367*0b57cec5SDimitry Andric 
2368*0b57cec5SDimitry Andric   if (const auto *CB = FD->getAttr<CallbackAttr>()) {
2369*0b57cec5SDimitry Andric     // Annotate the callback behavior as metadata:
2370*0b57cec5SDimitry Andric     //  - The callback callee (as argument number).
2371*0b57cec5SDimitry Andric     //  - The callback payloads (as argument numbers).
2372*0b57cec5SDimitry Andric     llvm::LLVMContext &Ctx = F->getContext();
2373*0b57cec5SDimitry Andric     llvm::MDBuilder MDB(Ctx);
2374*0b57cec5SDimitry Andric 
2375*0b57cec5SDimitry Andric     // The payload indices are all but the first one in the encoding. The first
2376*0b57cec5SDimitry Andric     // identifies the callback callee.
2377*0b57cec5SDimitry Andric     int CalleeIdx = *CB->encoding_begin();
2378*0b57cec5SDimitry Andric     ArrayRef<int> PayloadIndices(CB->encoding_begin() + 1, CB->encoding_end());
2379*0b57cec5SDimitry Andric     F->addMetadata(llvm::LLVMContext::MD_callback,
2380*0b57cec5SDimitry Andric                    *llvm::MDNode::get(Ctx, {MDB.createCallbackEncoding(
2381*0b57cec5SDimitry Andric                                                CalleeIdx, PayloadIndices,
2382*0b57cec5SDimitry Andric                                                /* VarArgsArePassed */ false)}));
2383*0b57cec5SDimitry Andric   }
2384*0b57cec5SDimitry Andric }
2385*0b57cec5SDimitry Andric 
2386*0b57cec5SDimitry Andric void CodeGenModule::addUsedGlobal(llvm::GlobalValue *GV) {
2387e8d8bef9SDimitry Andric   assert((isa<llvm::Function>(GV) || !GV->isDeclaration()) &&
2388*0b57cec5SDimitry Andric          "Only globals with definition can force usage.");
2389*0b57cec5SDimitry Andric   LLVMUsed.emplace_back(GV);
2390*0b57cec5SDimitry Andric }
2391*0b57cec5SDimitry Andric 
2392*0b57cec5SDimitry Andric void CodeGenModule::addCompilerUsedGlobal(llvm::GlobalValue *GV) {
2393*0b57cec5SDimitry Andric   assert(!GV->isDeclaration() &&
2394*0b57cec5SDimitry Andric          "Only globals with definition can force usage.");
2395*0b57cec5SDimitry Andric   LLVMCompilerUsed.emplace_back(GV);
2396*0b57cec5SDimitry Andric }
2397*0b57cec5SDimitry Andric 
2398fe6060f1SDimitry Andric void CodeGenModule::addUsedOrCompilerUsedGlobal(llvm::GlobalValue *GV) {
2399fe6060f1SDimitry Andric   assert((isa<llvm::Function>(GV) || !GV->isDeclaration()) &&
2400fe6060f1SDimitry Andric          "Only globals with definition can force usage.");
2401fe6060f1SDimitry Andric   if (getTriple().isOSBinFormatELF())
2402fe6060f1SDimitry Andric     LLVMCompilerUsed.emplace_back(GV);
2403fe6060f1SDimitry Andric   else
2404fe6060f1SDimitry Andric     LLVMUsed.emplace_back(GV);
2405fe6060f1SDimitry Andric }
2406fe6060f1SDimitry Andric 
2407*0b57cec5SDimitry Andric static void emitUsed(CodeGenModule &CGM, StringRef Name,
2408*0b57cec5SDimitry Andric                      std::vector<llvm::WeakTrackingVH> &List) {
2409*0b57cec5SDimitry Andric   // Don't create llvm.used if there is no need.
2410*0b57cec5SDimitry Andric   if (List.empty())
2411*0b57cec5SDimitry Andric     return;
2412*0b57cec5SDimitry Andric 
2413*0b57cec5SDimitry Andric   // Convert List to what ConstantArray needs.
2414*0b57cec5SDimitry Andric   SmallVector<llvm::Constant*, 8> UsedArray;
2415*0b57cec5SDimitry Andric   UsedArray.resize(List.size());
2416*0b57cec5SDimitry Andric   for (unsigned i = 0, e = List.size(); i != e; ++i) {
2417*0b57cec5SDimitry Andric     UsedArray[i] =
2418*0b57cec5SDimitry Andric         llvm::ConstantExpr::getPointerBitCastOrAddrSpaceCast(
2419*0b57cec5SDimitry Andric             cast<llvm::Constant>(&*List[i]), CGM.Int8PtrTy);
2420*0b57cec5SDimitry Andric   }
2421*0b57cec5SDimitry Andric 
2422*0b57cec5SDimitry Andric   if (UsedArray.empty())
2423*0b57cec5SDimitry Andric     return;
2424*0b57cec5SDimitry Andric   llvm::ArrayType *ATy = llvm::ArrayType::get(CGM.Int8PtrTy, UsedArray.size());
2425*0b57cec5SDimitry Andric 
2426*0b57cec5SDimitry Andric   auto *GV = new llvm::GlobalVariable(
2427*0b57cec5SDimitry Andric       CGM.getModule(), ATy, false, llvm::GlobalValue::AppendingLinkage,
2428*0b57cec5SDimitry Andric       llvm::ConstantArray::get(ATy, UsedArray), Name);
2429*0b57cec5SDimitry Andric 
2430*0b57cec5SDimitry Andric   GV->setSection("llvm.metadata");
2431*0b57cec5SDimitry Andric }
2432*0b57cec5SDimitry Andric 
2433*0b57cec5SDimitry Andric void CodeGenModule::emitLLVMUsed() {
2434*0b57cec5SDimitry Andric   emitUsed(*this, "llvm.used", LLVMUsed);
2435*0b57cec5SDimitry Andric   emitUsed(*this, "llvm.compiler.used", LLVMCompilerUsed);
2436*0b57cec5SDimitry Andric }
2437*0b57cec5SDimitry Andric 
2438*0b57cec5SDimitry Andric void CodeGenModule::AppendLinkerOptions(StringRef Opts) {
2439*0b57cec5SDimitry Andric   auto *MDOpts = llvm::MDString::get(getLLVMContext(), Opts);
2440*0b57cec5SDimitry Andric   LinkerOptionsMetadata.push_back(llvm::MDNode::get(getLLVMContext(), MDOpts));
2441*0b57cec5SDimitry Andric }
2442*0b57cec5SDimitry Andric 
2443*0b57cec5SDimitry Andric void CodeGenModule::AddDetectMismatch(StringRef Name, StringRef Value) {
2444*0b57cec5SDimitry Andric   llvm::SmallString<32> Opt;
2445*0b57cec5SDimitry Andric   getTargetCodeGenInfo().getDetectMismatchOption(Name, Value, Opt);
2446480093f4SDimitry Andric   if (Opt.empty())
2447480093f4SDimitry Andric     return;
2448*0b57cec5SDimitry Andric   auto *MDOpts = llvm::MDString::get(getLLVMContext(), Opt);
2449*0b57cec5SDimitry Andric   LinkerOptionsMetadata.push_back(llvm::MDNode::get(getLLVMContext(), MDOpts));
2450*0b57cec5SDimitry Andric }
2451*0b57cec5SDimitry Andric 
2452*0b57cec5SDimitry Andric void CodeGenModule::AddDependentLib(StringRef Lib) {
2453*0b57cec5SDimitry Andric   auto &C = getLLVMContext();
2454*0b57cec5SDimitry Andric   if (getTarget().getTriple().isOSBinFormatELF()) {
2455*0b57cec5SDimitry Andric       ELFDependentLibraries.push_back(
2456*0b57cec5SDimitry Andric         llvm::MDNode::get(C, llvm::MDString::get(C, Lib)));
2457*0b57cec5SDimitry Andric     return;
2458*0b57cec5SDimitry Andric   }
2459*0b57cec5SDimitry Andric 
2460*0b57cec5SDimitry Andric   llvm::SmallString<24> Opt;
2461*0b57cec5SDimitry Andric   getTargetCodeGenInfo().getDependentLibraryOption(Lib, Opt);
2462*0b57cec5SDimitry Andric   auto *MDOpts = llvm::MDString::get(getLLVMContext(), Opt);
2463*0b57cec5SDimitry Andric   LinkerOptionsMetadata.push_back(llvm::MDNode::get(C, MDOpts));
2464*0b57cec5SDimitry Andric }
2465*0b57cec5SDimitry Andric 
2466*0b57cec5SDimitry Andric /// Add link options implied by the given module, including modules
2467*0b57cec5SDimitry Andric /// it depends on, using a postorder walk.
2468*0b57cec5SDimitry Andric static void addLinkOptionsPostorder(CodeGenModule &CGM, Module *Mod,
2469*0b57cec5SDimitry Andric                                     SmallVectorImpl<llvm::MDNode *> &Metadata,
2470*0b57cec5SDimitry Andric                                     llvm::SmallPtrSet<Module *, 16> &Visited) {
2471*0b57cec5SDimitry Andric   // Import this module's parent.
2472*0b57cec5SDimitry Andric   if (Mod->Parent && Visited.insert(Mod->Parent).second) {
2473*0b57cec5SDimitry Andric     addLinkOptionsPostorder(CGM, Mod->Parent, Metadata, Visited);
2474*0b57cec5SDimitry Andric   }
2475*0b57cec5SDimitry Andric 
2476*0b57cec5SDimitry Andric   // Import this module's dependencies.
2477349cc55cSDimitry Andric   for (Module *Import : llvm::reverse(Mod->Imports)) {
2478349cc55cSDimitry Andric     if (Visited.insert(Import).second)
2479349cc55cSDimitry Andric       addLinkOptionsPostorder(CGM, Import, Metadata, Visited);
2480*0b57cec5SDimitry Andric   }
2481*0b57cec5SDimitry Andric 
2482*0b57cec5SDimitry Andric   // Add linker options to link against the libraries/frameworks
2483*0b57cec5SDimitry Andric   // described by this module.
2484*0b57cec5SDimitry Andric   llvm::LLVMContext &Context = CGM.getLLVMContext();
2485*0b57cec5SDimitry Andric   bool IsELF = CGM.getTarget().getTriple().isOSBinFormatELF();
2486*0b57cec5SDimitry Andric 
2487*0b57cec5SDimitry Andric   // For modules that use export_as for linking, use that module
2488*0b57cec5SDimitry Andric   // name instead.
2489*0b57cec5SDimitry Andric   if (Mod->UseExportAsModuleLinkName)
2490*0b57cec5SDimitry Andric     return;
2491*0b57cec5SDimitry Andric 
2492349cc55cSDimitry Andric   for (const Module::LinkLibrary &LL : llvm::reverse(Mod->LinkLibraries)) {
2493*0b57cec5SDimitry Andric     // Link against a framework.  Frameworks are currently Darwin only, so we
2494*0b57cec5SDimitry Andric     // don't to ask TargetCodeGenInfo for the spelling of the linker option.
2495349cc55cSDimitry Andric     if (LL.IsFramework) {
2496349cc55cSDimitry Andric       llvm::Metadata *Args[2] = {llvm::MDString::get(Context, "-framework"),
2497349cc55cSDimitry Andric                                  llvm::MDString::get(Context, LL.Library)};
2498*0b57cec5SDimitry Andric 
2499*0b57cec5SDimitry Andric       Metadata.push_back(llvm::MDNode::get(Context, Args));
2500*0b57cec5SDimitry Andric       continue;
2501*0b57cec5SDimitry Andric     }
2502*0b57cec5SDimitry Andric 
2503*0b57cec5SDimitry Andric     // Link against a library.
2504*0b57cec5SDimitry Andric     if (IsELF) {
2505*0b57cec5SDimitry Andric       llvm::Metadata *Args[2] = {
2506*0b57cec5SDimitry Andric           llvm::MDString::get(Context, "lib"),
2507349cc55cSDimitry Andric           llvm::MDString::get(Context, LL.Library),
2508*0b57cec5SDimitry Andric       };
2509*0b57cec5SDimitry Andric       Metadata.push_back(llvm::MDNode::get(Context, Args));
2510*0b57cec5SDimitry Andric     } else {
2511*0b57cec5SDimitry Andric       llvm::SmallString<24> Opt;
2512349cc55cSDimitry Andric       CGM.getTargetCodeGenInfo().getDependentLibraryOption(LL.Library, Opt);
2513*0b57cec5SDimitry Andric       auto *OptString = llvm::MDString::get(Context, Opt);
2514*0b57cec5SDimitry Andric       Metadata.push_back(llvm::MDNode::get(Context, OptString));
2515*0b57cec5SDimitry Andric     }
2516*0b57cec5SDimitry Andric   }
2517*0b57cec5SDimitry Andric }
2518*0b57cec5SDimitry Andric 
2519fcaf7f86SDimitry Andric void CodeGenModule::EmitModuleInitializers(clang::Module *Primary) {
2520fcaf7f86SDimitry Andric   // Emit the initializers in the order that sub-modules appear in the
2521fcaf7f86SDimitry Andric   // source, first Global Module Fragments, if present.
2522fcaf7f86SDimitry Andric   if (auto GMF = Primary->getGlobalModuleFragment()) {
2523fcaf7f86SDimitry Andric     for (Decl *D : getContext().getModuleInitializers(GMF)) {
252461cfbce3SDimitry Andric       if (isa<ImportDecl>(D))
252561cfbce3SDimitry Andric         continue;
252661cfbce3SDimitry Andric       assert(isa<VarDecl>(D) && "GMF initializer decl is not a var?");
2527fcaf7f86SDimitry Andric       EmitTopLevelDecl(D);
2528fcaf7f86SDimitry Andric     }
2529fcaf7f86SDimitry Andric   }
2530fcaf7f86SDimitry Andric   // Second any associated with the module, itself.
2531fcaf7f86SDimitry Andric   for (Decl *D : getContext().getModuleInitializers(Primary)) {
2532fcaf7f86SDimitry Andric     // Skip import decls, the inits for those are called explicitly.
253361cfbce3SDimitry Andric     if (isa<ImportDecl>(D))
2534fcaf7f86SDimitry Andric       continue;
2535fcaf7f86SDimitry Andric     EmitTopLevelDecl(D);
2536fcaf7f86SDimitry Andric   }
2537fcaf7f86SDimitry Andric   // Third any associated with the Privat eMOdule Fragment, if present.
2538fcaf7f86SDimitry Andric   if (auto PMF = Primary->getPrivateModuleFragment()) {
2539fcaf7f86SDimitry Andric     for (Decl *D : getContext().getModuleInitializers(PMF)) {
254061cfbce3SDimitry Andric       assert(isa<VarDecl>(D) && "PMF initializer decl is not a var?");
2541fcaf7f86SDimitry Andric       EmitTopLevelDecl(D);
2542fcaf7f86SDimitry Andric     }
2543fcaf7f86SDimitry Andric   }
2544fcaf7f86SDimitry Andric }
2545fcaf7f86SDimitry Andric 
2546*0b57cec5SDimitry Andric void CodeGenModule::EmitModuleLinkOptions() {
2547*0b57cec5SDimitry Andric   // Collect the set of all of the modules we want to visit to emit link
2548*0b57cec5SDimitry Andric   // options, which is essentially the imported modules and all of their
2549*0b57cec5SDimitry Andric   // non-explicit child modules.
2550*0b57cec5SDimitry Andric   llvm::SetVector<clang::Module *> LinkModules;
2551*0b57cec5SDimitry Andric   llvm::SmallPtrSet<clang::Module *, 16> Visited;
2552*0b57cec5SDimitry Andric   SmallVector<clang::Module *, 16> Stack;
2553*0b57cec5SDimitry Andric 
2554*0b57cec5SDimitry Andric   // Seed the stack with imported modules.
2555*0b57cec5SDimitry Andric   for (Module *M : ImportedModules) {
2556*0b57cec5SDimitry Andric     // Do not add any link flags when an implementation TU of a module imports
2557*0b57cec5SDimitry Andric     // a header of that same module.
2558*0b57cec5SDimitry Andric     if (M->getTopLevelModuleName() == getLangOpts().CurrentModule &&
2559*0b57cec5SDimitry Andric         !getLangOpts().isCompilingModule())
2560*0b57cec5SDimitry Andric       continue;
2561*0b57cec5SDimitry Andric     if (Visited.insert(M).second)
2562*0b57cec5SDimitry Andric       Stack.push_back(M);
2563*0b57cec5SDimitry Andric   }
2564*0b57cec5SDimitry Andric 
2565*0b57cec5SDimitry Andric   // Find all of the modules to import, making a little effort to prune
2566*0b57cec5SDimitry Andric   // non-leaf modules.
2567*0b57cec5SDimitry Andric   while (!Stack.empty()) {
2568*0b57cec5SDimitry Andric     clang::Module *Mod = Stack.pop_back_val();
2569*0b57cec5SDimitry Andric 
2570*0b57cec5SDimitry Andric     bool AnyChildren = false;
2571*0b57cec5SDimitry Andric 
2572*0b57cec5SDimitry Andric     // Visit the submodules of this module.
2573*0b57cec5SDimitry Andric     for (const auto &SM : Mod->submodules()) {
2574*0b57cec5SDimitry Andric       // Skip explicit children; they need to be explicitly imported to be
2575*0b57cec5SDimitry Andric       // linked against.
2576*0b57cec5SDimitry Andric       if (SM->IsExplicit)
2577*0b57cec5SDimitry Andric         continue;
2578*0b57cec5SDimitry Andric 
2579*0b57cec5SDimitry Andric       if (Visited.insert(SM).second) {
2580*0b57cec5SDimitry Andric         Stack.push_back(SM);
2581*0b57cec5SDimitry Andric         AnyChildren = true;
2582*0b57cec5SDimitry Andric       }
2583*0b57cec5SDimitry Andric     }
2584*0b57cec5SDimitry Andric 
2585*0b57cec5SDimitry Andric     // We didn't find any children, so add this module to the list of
2586*0b57cec5SDimitry Andric     // modules to link against.
2587*0b57cec5SDimitry Andric     if (!AnyChildren) {
2588*0b57cec5SDimitry Andric       LinkModules.insert(Mod);
2589*0b57cec5SDimitry Andric     }
2590*0b57cec5SDimitry Andric   }
2591*0b57cec5SDimitry Andric 
2592*0b57cec5SDimitry Andric   // Add link options for all of the imported modules in reverse topological
2593*0b57cec5SDimitry Andric   // order.  We don't do anything to try to order import link flags with respect
2594*0b57cec5SDimitry Andric   // to linker options inserted by things like #pragma comment().
2595*0b57cec5SDimitry Andric   SmallVector<llvm::MDNode *, 16> MetadataArgs;
2596*0b57cec5SDimitry Andric   Visited.clear();
2597*0b57cec5SDimitry Andric   for (Module *M : LinkModules)
2598*0b57cec5SDimitry Andric     if (Visited.insert(M).second)
2599*0b57cec5SDimitry Andric       addLinkOptionsPostorder(*this, M, MetadataArgs, Visited);
2600*0b57cec5SDimitry Andric   std::reverse(MetadataArgs.begin(), MetadataArgs.end());
2601*0b57cec5SDimitry Andric   LinkerOptionsMetadata.append(MetadataArgs.begin(), MetadataArgs.end());
2602*0b57cec5SDimitry Andric 
2603*0b57cec5SDimitry Andric   // Add the linker options metadata flag.
2604*0b57cec5SDimitry Andric   auto *NMD = getModule().getOrInsertNamedMetadata("llvm.linker.options");
2605*0b57cec5SDimitry Andric   for (auto *MD : LinkerOptionsMetadata)
2606*0b57cec5SDimitry Andric     NMD->addOperand(MD);
2607*0b57cec5SDimitry Andric }
2608*0b57cec5SDimitry Andric 
2609*0b57cec5SDimitry Andric void CodeGenModule::EmitDeferred() {
2610*0b57cec5SDimitry Andric   // Emit deferred declare target declarations.
2611*0b57cec5SDimitry Andric   if (getLangOpts().OpenMP && !getLangOpts().OpenMPSimd)
2612*0b57cec5SDimitry Andric     getOpenMPRuntime().emitDeferredTargetDecls();
2613*0b57cec5SDimitry Andric 
2614*0b57cec5SDimitry Andric   // Emit code for any potentially referenced deferred decls.  Since a
2615*0b57cec5SDimitry Andric   // previously unused static decl may become used during the generation of code
2616*0b57cec5SDimitry Andric   // for a static function, iterate until no changes are made.
2617*0b57cec5SDimitry Andric 
2618*0b57cec5SDimitry Andric   if (!DeferredVTables.empty()) {
2619*0b57cec5SDimitry Andric     EmitDeferredVTables();
2620*0b57cec5SDimitry Andric 
2621*0b57cec5SDimitry Andric     // Emitting a vtable doesn't directly cause more vtables to
2622*0b57cec5SDimitry Andric     // become deferred, although it can cause functions to be
2623*0b57cec5SDimitry Andric     // emitted that then need those vtables.
2624*0b57cec5SDimitry Andric     assert(DeferredVTables.empty());
2625*0b57cec5SDimitry Andric   }
2626*0b57cec5SDimitry Andric 
2627e8d8bef9SDimitry Andric   // Emit CUDA/HIP static device variables referenced by host code only.
2628fe6060f1SDimitry Andric   // Note we should not clear CUDADeviceVarODRUsedByHost since it is still
2629fe6060f1SDimitry Andric   // needed for further handling.
2630fe6060f1SDimitry Andric   if (getLangOpts().CUDA && getLangOpts().CUDAIsDevice)
263181ad6265SDimitry Andric     llvm::append_range(DeferredDeclsToEmit,
263281ad6265SDimitry Andric                        getContext().CUDADeviceVarODRUsedByHost);
2633e8d8bef9SDimitry Andric 
2634*0b57cec5SDimitry Andric   // Stop if we're out of both deferred vtables and deferred declarations.
2635*0b57cec5SDimitry Andric   if (DeferredDeclsToEmit.empty())
2636*0b57cec5SDimitry Andric     return;
2637*0b57cec5SDimitry Andric 
2638*0b57cec5SDimitry Andric   // Grab the list of decls to emit. If EmitGlobalDefinition schedules more
2639*0b57cec5SDimitry Andric   // work, it will not interfere with this.
2640*0b57cec5SDimitry Andric   std::vector<GlobalDecl> CurDeclsToEmit;
2641*0b57cec5SDimitry Andric   CurDeclsToEmit.swap(DeferredDeclsToEmit);
2642*0b57cec5SDimitry Andric 
2643*0b57cec5SDimitry Andric   for (GlobalDecl &D : CurDeclsToEmit) {
2644*0b57cec5SDimitry Andric     // We should call GetAddrOfGlobal with IsForDefinition set to true in order
2645*0b57cec5SDimitry Andric     // to get GlobalValue with exactly the type we need, not something that
2646*0b57cec5SDimitry Andric     // might had been created for another decl with the same mangled name but
2647*0b57cec5SDimitry Andric     // different type.
2648*0b57cec5SDimitry Andric     llvm::GlobalValue *GV = dyn_cast<llvm::GlobalValue>(
2649*0b57cec5SDimitry Andric         GetAddrOfGlobal(D, ForDefinition));
2650*0b57cec5SDimitry Andric 
2651*0b57cec5SDimitry Andric     // In case of different address spaces, we may still get a cast, even with
2652*0b57cec5SDimitry Andric     // IsForDefinition equal to true. Query mangled names table to get
2653*0b57cec5SDimitry Andric     // GlobalValue.
2654*0b57cec5SDimitry Andric     if (!GV)
2655*0b57cec5SDimitry Andric       GV = GetGlobalValue(getMangledName(D));
2656*0b57cec5SDimitry Andric 
2657*0b57cec5SDimitry Andric     // Make sure GetGlobalValue returned non-null.
2658*0b57cec5SDimitry Andric     assert(GV);
2659*0b57cec5SDimitry Andric 
2660*0b57cec5SDimitry Andric     // Check to see if we've already emitted this.  This is necessary
2661*0b57cec5SDimitry Andric     // for a couple of reasons: first, decls can end up in the
2662*0b57cec5SDimitry Andric     // deferred-decls queue multiple times, and second, decls can end
2663*0b57cec5SDimitry Andric     // up with definitions in unusual ways (e.g. by an extern inline
2664*0b57cec5SDimitry Andric     // function acquiring a strong function redefinition).  Just
2665*0b57cec5SDimitry Andric     // ignore these cases.
2666*0b57cec5SDimitry Andric     if (!GV->isDeclaration())
2667*0b57cec5SDimitry Andric       continue;
2668*0b57cec5SDimitry Andric 
2669a7dea167SDimitry Andric     // If this is OpenMP, check if it is legal to emit this global normally.
2670a7dea167SDimitry Andric     if (LangOpts.OpenMP && OpenMPRuntime && OpenMPRuntime->emitTargetGlobal(D))
2671a7dea167SDimitry Andric       continue;
2672a7dea167SDimitry Andric 
2673*0b57cec5SDimitry Andric     // Otherwise, emit the definition and move on to the next one.
2674*0b57cec5SDimitry Andric     EmitGlobalDefinition(D, GV);
2675*0b57cec5SDimitry Andric 
2676*0b57cec5SDimitry Andric     // If we found out that we need to emit more decls, do that recursively.
2677*0b57cec5SDimitry Andric     // This has the advantage that the decls are emitted in a DFS and related
2678*0b57cec5SDimitry Andric     // ones are close together, which is convenient for testing.
2679*0b57cec5SDimitry Andric     if (!DeferredVTables.empty() || !DeferredDeclsToEmit.empty()) {
2680*0b57cec5SDimitry Andric       EmitDeferred();
2681*0b57cec5SDimitry Andric       assert(DeferredVTables.empty() && DeferredDeclsToEmit.empty());
2682*0b57cec5SDimitry Andric     }
2683*0b57cec5SDimitry Andric   }
2684*0b57cec5SDimitry Andric }
2685*0b57cec5SDimitry Andric 
2686*0b57cec5SDimitry Andric void CodeGenModule::EmitVTablesOpportunistically() {
2687*0b57cec5SDimitry Andric   // Try to emit external vtables as available_externally if they have emitted
2688*0b57cec5SDimitry Andric   // all inlined virtual functions.  It runs after EmitDeferred() and therefore
2689*0b57cec5SDimitry Andric   // is not allowed to create new references to things that need to be emitted
2690*0b57cec5SDimitry Andric   // lazily. Note that it also uses fact that we eagerly emitting RTTI.
2691*0b57cec5SDimitry Andric 
2692*0b57cec5SDimitry Andric   assert((OpportunisticVTables.empty() || shouldOpportunisticallyEmitVTables())
2693*0b57cec5SDimitry Andric          && "Only emit opportunistic vtables with optimizations");
2694*0b57cec5SDimitry Andric 
2695*0b57cec5SDimitry Andric   for (const CXXRecordDecl *RD : OpportunisticVTables) {
2696*0b57cec5SDimitry Andric     assert(getVTables().isVTableExternal(RD) &&
2697*0b57cec5SDimitry Andric            "This queue should only contain external vtables");
2698*0b57cec5SDimitry Andric     if (getCXXABI().canSpeculativelyEmitVTable(RD))
2699*0b57cec5SDimitry Andric       VTables.GenerateClassData(RD);
2700*0b57cec5SDimitry Andric   }
2701*0b57cec5SDimitry Andric   OpportunisticVTables.clear();
2702*0b57cec5SDimitry Andric }
2703*0b57cec5SDimitry Andric 
2704*0b57cec5SDimitry Andric void CodeGenModule::EmitGlobalAnnotations() {
2705*0b57cec5SDimitry Andric   if (Annotations.empty())
2706*0b57cec5SDimitry Andric     return;
2707*0b57cec5SDimitry Andric 
2708*0b57cec5SDimitry Andric   // Create a new global variable for the ConstantStruct in the Module.
2709*0b57cec5SDimitry Andric   llvm::Constant *Array = llvm::ConstantArray::get(llvm::ArrayType::get(
2710*0b57cec5SDimitry Andric     Annotations[0]->getType(), Annotations.size()), Annotations);
2711*0b57cec5SDimitry Andric   auto *gv = new llvm::GlobalVariable(getModule(), Array->getType(), false,
2712*0b57cec5SDimitry Andric                                       llvm::GlobalValue::AppendingLinkage,
2713*0b57cec5SDimitry Andric                                       Array, "llvm.global.annotations");
2714*0b57cec5SDimitry Andric   gv->setSection(AnnotationSection);
2715*0b57cec5SDimitry Andric }
2716*0b57cec5SDimitry Andric 
2717*0b57cec5SDimitry Andric llvm::Constant *CodeGenModule::EmitAnnotationString(StringRef Str) {
2718*0b57cec5SDimitry Andric   llvm::Constant *&AStr = AnnotationStrings[Str];
2719*0b57cec5SDimitry Andric   if (AStr)
2720*0b57cec5SDimitry Andric     return AStr;
2721*0b57cec5SDimitry Andric 
2722*0b57cec5SDimitry Andric   // Not found yet, create a new global.
2723*0b57cec5SDimitry Andric   llvm::Constant *s = llvm::ConstantDataArray::getString(getLLVMContext(), Str);
2724*0b57cec5SDimitry Andric   auto *gv =
2725*0b57cec5SDimitry Andric       new llvm::GlobalVariable(getModule(), s->getType(), true,
2726*0b57cec5SDimitry Andric                                llvm::GlobalValue::PrivateLinkage, s, ".str");
2727*0b57cec5SDimitry Andric   gv->setSection(AnnotationSection);
2728*0b57cec5SDimitry Andric   gv->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global);
2729*0b57cec5SDimitry Andric   AStr = gv;
2730*0b57cec5SDimitry Andric   return gv;
2731*0b57cec5SDimitry Andric }
2732*0b57cec5SDimitry Andric 
2733*0b57cec5SDimitry Andric llvm::Constant *CodeGenModule::EmitAnnotationUnit(SourceLocation Loc) {
2734*0b57cec5SDimitry Andric   SourceManager &SM = getContext().getSourceManager();
2735*0b57cec5SDimitry Andric   PresumedLoc PLoc = SM.getPresumedLoc(Loc);
2736*0b57cec5SDimitry Andric   if (PLoc.isValid())
2737*0b57cec5SDimitry Andric     return EmitAnnotationString(PLoc.getFilename());
2738*0b57cec5SDimitry Andric   return EmitAnnotationString(SM.getBufferName(Loc));
2739*0b57cec5SDimitry Andric }
2740*0b57cec5SDimitry Andric 
2741*0b57cec5SDimitry Andric llvm::Constant *CodeGenModule::EmitAnnotationLineNo(SourceLocation L) {
2742*0b57cec5SDimitry Andric   SourceManager &SM = getContext().getSourceManager();
2743*0b57cec5SDimitry Andric   PresumedLoc PLoc = SM.getPresumedLoc(L);
2744*0b57cec5SDimitry Andric   unsigned LineNo = PLoc.isValid() ? PLoc.getLine() :
2745*0b57cec5SDimitry Andric     SM.getExpansionLineNumber(L);
2746*0b57cec5SDimitry Andric   return llvm::ConstantInt::get(Int32Ty, LineNo);
2747*0b57cec5SDimitry Andric }
2748*0b57cec5SDimitry Andric 
2749e8d8bef9SDimitry Andric llvm::Constant *CodeGenModule::EmitAnnotationArgs(const AnnotateAttr *Attr) {
2750e8d8bef9SDimitry Andric   ArrayRef<Expr *> Exprs = {Attr->args_begin(), Attr->args_size()};
2751e8d8bef9SDimitry Andric   if (Exprs.empty())
2752349cc55cSDimitry Andric     return llvm::ConstantPointerNull::get(GlobalsInt8PtrTy);
2753e8d8bef9SDimitry Andric 
2754e8d8bef9SDimitry Andric   llvm::FoldingSetNodeID ID;
2755e8d8bef9SDimitry Andric   for (Expr *E : Exprs) {
2756e8d8bef9SDimitry Andric     ID.Add(cast<clang::ConstantExpr>(E)->getAPValueResult());
2757e8d8bef9SDimitry Andric   }
2758e8d8bef9SDimitry Andric   llvm::Constant *&Lookup = AnnotationArgs[ID.ComputeHash()];
2759e8d8bef9SDimitry Andric   if (Lookup)
2760e8d8bef9SDimitry Andric     return Lookup;
2761e8d8bef9SDimitry Andric 
2762e8d8bef9SDimitry Andric   llvm::SmallVector<llvm::Constant *, 4> LLVMArgs;
2763e8d8bef9SDimitry Andric   LLVMArgs.reserve(Exprs.size());
2764e8d8bef9SDimitry Andric   ConstantEmitter ConstEmiter(*this);
2765e8d8bef9SDimitry Andric   llvm::transform(Exprs, std::back_inserter(LLVMArgs), [&](const Expr *E) {
2766e8d8bef9SDimitry Andric     const auto *CE = cast<clang::ConstantExpr>(E);
2767e8d8bef9SDimitry Andric     return ConstEmiter.emitAbstract(CE->getBeginLoc(), CE->getAPValueResult(),
2768e8d8bef9SDimitry Andric                                     CE->getType());
2769e8d8bef9SDimitry Andric   });
2770e8d8bef9SDimitry Andric   auto *Struct = llvm::ConstantStruct::getAnon(LLVMArgs);
2771e8d8bef9SDimitry Andric   auto *GV = new llvm::GlobalVariable(getModule(), Struct->getType(), true,
2772e8d8bef9SDimitry Andric                                       llvm::GlobalValue::PrivateLinkage, Struct,
2773e8d8bef9SDimitry Andric                                       ".args");
2774e8d8bef9SDimitry Andric   GV->setSection(AnnotationSection);
2775e8d8bef9SDimitry Andric   GV->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global);
2776349cc55cSDimitry Andric   auto *Bitcasted = llvm::ConstantExpr::getBitCast(GV, GlobalsInt8PtrTy);
2777e8d8bef9SDimitry Andric 
2778e8d8bef9SDimitry Andric   Lookup = Bitcasted;
2779e8d8bef9SDimitry Andric   return Bitcasted;
2780e8d8bef9SDimitry Andric }
2781e8d8bef9SDimitry Andric 
2782*0b57cec5SDimitry Andric llvm::Constant *CodeGenModule::EmitAnnotateAttr(llvm::GlobalValue *GV,
2783*0b57cec5SDimitry Andric                                                 const AnnotateAttr *AA,
2784*0b57cec5SDimitry Andric                                                 SourceLocation L) {
2785*0b57cec5SDimitry Andric   // Get the globals for file name, annotation, and the line number.
2786*0b57cec5SDimitry Andric   llvm::Constant *AnnoGV = EmitAnnotationString(AA->getAnnotation()),
2787*0b57cec5SDimitry Andric                  *UnitGV = EmitAnnotationUnit(L),
2788e8d8bef9SDimitry Andric                  *LineNoCst = EmitAnnotationLineNo(L),
2789e8d8bef9SDimitry Andric                  *Args = EmitAnnotationArgs(AA);
2790*0b57cec5SDimitry Andric 
2791349cc55cSDimitry Andric   llvm::Constant *GVInGlobalsAS = GV;
2792349cc55cSDimitry Andric   if (GV->getAddressSpace() !=
2793349cc55cSDimitry Andric       getDataLayout().getDefaultGlobalsAddressSpace()) {
2794349cc55cSDimitry Andric     GVInGlobalsAS = llvm::ConstantExpr::getAddrSpaceCast(
2795349cc55cSDimitry Andric         GV, GV->getValueType()->getPointerTo(
2796349cc55cSDimitry Andric                 getDataLayout().getDefaultGlobalsAddressSpace()));
2797480093f4SDimitry Andric   }
2798480093f4SDimitry Andric 
2799*0b57cec5SDimitry Andric   // Create the ConstantStruct for the global annotation.
2800e8d8bef9SDimitry Andric   llvm::Constant *Fields[] = {
2801349cc55cSDimitry Andric       llvm::ConstantExpr::getBitCast(GVInGlobalsAS, GlobalsInt8PtrTy),
2802349cc55cSDimitry Andric       llvm::ConstantExpr::getBitCast(AnnoGV, GlobalsInt8PtrTy),
2803349cc55cSDimitry Andric       llvm::ConstantExpr::getBitCast(UnitGV, GlobalsInt8PtrTy),
2804e8d8bef9SDimitry Andric       LineNoCst,
2805e8d8bef9SDimitry Andric       Args,
2806*0b57cec5SDimitry Andric   };
2807*0b57cec5SDimitry Andric   return llvm::ConstantStruct::getAnon(Fields);
2808*0b57cec5SDimitry Andric }
2809*0b57cec5SDimitry Andric 
2810*0b57cec5SDimitry Andric void CodeGenModule::AddGlobalAnnotations(const ValueDecl *D,
2811*0b57cec5SDimitry Andric                                          llvm::GlobalValue *GV) {
2812*0b57cec5SDimitry Andric   assert(D->hasAttr<AnnotateAttr>() && "no annotate attribute");
2813*0b57cec5SDimitry Andric   // Get the struct elements for these annotations.
2814*0b57cec5SDimitry Andric   for (const auto *I : D->specific_attrs<AnnotateAttr>())
2815*0b57cec5SDimitry Andric     Annotations.push_back(EmitAnnotateAttr(GV, I, D->getLocation()));
2816*0b57cec5SDimitry Andric }
2817*0b57cec5SDimitry Andric 
2818fe6060f1SDimitry Andric bool CodeGenModule::isInNoSanitizeList(SanitizerMask Kind, llvm::Function *Fn,
2819*0b57cec5SDimitry Andric                                        SourceLocation Loc) const {
2820fe6060f1SDimitry Andric   const auto &NoSanitizeL = getContext().getNoSanitizeList();
2821fe6060f1SDimitry Andric   // NoSanitize by function name.
2822fe6060f1SDimitry Andric   if (NoSanitizeL.containsFunction(Kind, Fn->getName()))
2823*0b57cec5SDimitry Andric     return true;
2824fcaf7f86SDimitry Andric   // NoSanitize by location. Check "mainfile" prefix.
2825fcaf7f86SDimitry Andric   auto &SM = Context.getSourceManager();
2826fcaf7f86SDimitry Andric   const FileEntry &MainFile = *SM.getFileEntryForID(SM.getMainFileID());
2827fcaf7f86SDimitry Andric   if (NoSanitizeL.containsMainFile(Kind, MainFile.getName()))
2828fcaf7f86SDimitry Andric     return true;
2829fcaf7f86SDimitry Andric 
2830fcaf7f86SDimitry Andric   // Check "src" prefix.
2831*0b57cec5SDimitry Andric   if (Loc.isValid())
2832fe6060f1SDimitry Andric     return NoSanitizeL.containsLocation(Kind, Loc);
2833*0b57cec5SDimitry Andric   // If location is unknown, this may be a compiler-generated function. Assume
2834*0b57cec5SDimitry Andric   // it's located in the main file.
2835fcaf7f86SDimitry Andric   return NoSanitizeL.containsFile(Kind, MainFile.getName());
2836*0b57cec5SDimitry Andric }
2837*0b57cec5SDimitry Andric 
283881ad6265SDimitry Andric bool CodeGenModule::isInNoSanitizeList(SanitizerMask Kind,
283981ad6265SDimitry Andric                                        llvm::GlobalVariable *GV,
2840*0b57cec5SDimitry Andric                                        SourceLocation Loc, QualType Ty,
2841*0b57cec5SDimitry Andric                                        StringRef Category) const {
2842fe6060f1SDimitry Andric   const auto &NoSanitizeL = getContext().getNoSanitizeList();
284381ad6265SDimitry Andric   if (NoSanitizeL.containsGlobal(Kind, GV->getName(), Category))
2844*0b57cec5SDimitry Andric     return true;
2845fcaf7f86SDimitry Andric   auto &SM = Context.getSourceManager();
2846fcaf7f86SDimitry Andric   if (NoSanitizeL.containsMainFile(
2847fcaf7f86SDimitry Andric           Kind, SM.getFileEntryForID(SM.getMainFileID())->getName(), Category))
2848fcaf7f86SDimitry Andric     return true;
284981ad6265SDimitry Andric   if (NoSanitizeL.containsLocation(Kind, Loc, Category))
2850*0b57cec5SDimitry Andric     return true;
2851fcaf7f86SDimitry Andric 
2852*0b57cec5SDimitry Andric   // Check global type.
2853*0b57cec5SDimitry Andric   if (!Ty.isNull()) {
2854*0b57cec5SDimitry Andric     // Drill down the array types: if global variable of a fixed type is
2855fe6060f1SDimitry Andric     // not sanitized, we also don't instrument arrays of them.
2856*0b57cec5SDimitry Andric     while (auto AT = dyn_cast<ArrayType>(Ty.getTypePtr()))
2857*0b57cec5SDimitry Andric       Ty = AT->getElementType();
2858*0b57cec5SDimitry Andric     Ty = Ty.getCanonicalType().getUnqualifiedType();
2859fe6060f1SDimitry Andric     // Only record types (classes, structs etc.) are ignored.
2860*0b57cec5SDimitry Andric     if (Ty->isRecordType()) {
2861*0b57cec5SDimitry Andric       std::string TypeStr = Ty.getAsString(getContext().getPrintingPolicy());
286281ad6265SDimitry Andric       if (NoSanitizeL.containsType(Kind, TypeStr, Category))
2863*0b57cec5SDimitry Andric         return true;
2864*0b57cec5SDimitry Andric     }
2865*0b57cec5SDimitry Andric   }
2866*0b57cec5SDimitry Andric   return false;
2867*0b57cec5SDimitry Andric }
2868*0b57cec5SDimitry Andric 
2869*0b57cec5SDimitry Andric bool CodeGenModule::imbueXRayAttrs(llvm::Function *Fn, SourceLocation Loc,
2870*0b57cec5SDimitry Andric                                    StringRef Category) const {
2871*0b57cec5SDimitry Andric   const auto &XRayFilter = getContext().getXRayFilter();
2872*0b57cec5SDimitry Andric   using ImbueAttr = XRayFunctionFilter::ImbueAttribute;
2873*0b57cec5SDimitry Andric   auto Attr = ImbueAttr::NONE;
2874*0b57cec5SDimitry Andric   if (Loc.isValid())
2875*0b57cec5SDimitry Andric     Attr = XRayFilter.shouldImbueLocation(Loc, Category);
2876*0b57cec5SDimitry Andric   if (Attr == ImbueAttr::NONE)
2877*0b57cec5SDimitry Andric     Attr = XRayFilter.shouldImbueFunction(Fn->getName());
2878*0b57cec5SDimitry Andric   switch (Attr) {
2879*0b57cec5SDimitry Andric   case ImbueAttr::NONE:
2880*0b57cec5SDimitry Andric     return false;
2881*0b57cec5SDimitry Andric   case ImbueAttr::ALWAYS:
2882*0b57cec5SDimitry Andric     Fn->addFnAttr("function-instrument", "xray-always");
2883*0b57cec5SDimitry Andric     break;
2884*0b57cec5SDimitry Andric   case ImbueAttr::ALWAYS_ARG1:
2885*0b57cec5SDimitry Andric     Fn->addFnAttr("function-instrument", "xray-always");
2886*0b57cec5SDimitry Andric     Fn->addFnAttr("xray-log-args", "1");
2887*0b57cec5SDimitry Andric     break;
2888*0b57cec5SDimitry Andric   case ImbueAttr::NEVER:
2889*0b57cec5SDimitry Andric     Fn->addFnAttr("function-instrument", "xray-never");
2890*0b57cec5SDimitry Andric     break;
2891*0b57cec5SDimitry Andric   }
2892*0b57cec5SDimitry Andric   return true;
2893*0b57cec5SDimitry Andric }
2894*0b57cec5SDimitry Andric 
2895fcaf7f86SDimitry Andric bool CodeGenModule::isFunctionBlockedByProfileList(llvm::Function *Fn,
2896e8d8bef9SDimitry Andric                                                    SourceLocation Loc) const {
2897e8d8bef9SDimitry Andric   const auto &ProfileList = getContext().getProfileList();
2898e8d8bef9SDimitry Andric   // If the profile list is empty, then instrument everything.
2899e8d8bef9SDimitry Andric   if (ProfileList.isEmpty())
2900e8d8bef9SDimitry Andric     return false;
2901e8d8bef9SDimitry Andric   CodeGenOptions::ProfileInstrKind Kind = getCodeGenOpts().getProfileInstr();
2902e8d8bef9SDimitry Andric   // First, check the function name.
2903e8d8bef9SDimitry Andric   Optional<bool> V = ProfileList.isFunctionExcluded(Fn->getName(), Kind);
290481ad6265SDimitry Andric   if (V)
2905e8d8bef9SDimitry Andric     return *V;
2906e8d8bef9SDimitry Andric   // Next, check the source location.
2907e8d8bef9SDimitry Andric   if (Loc.isValid()) {
2908e8d8bef9SDimitry Andric     Optional<bool> V = ProfileList.isLocationExcluded(Loc, Kind);
290981ad6265SDimitry Andric     if (V)
2910e8d8bef9SDimitry Andric       return *V;
2911e8d8bef9SDimitry Andric   }
2912e8d8bef9SDimitry Andric   // If location is unknown, this may be a compiler-generated function. Assume
2913e8d8bef9SDimitry Andric   // it's located in the main file.
2914e8d8bef9SDimitry Andric   auto &SM = Context.getSourceManager();
2915e8d8bef9SDimitry Andric   if (const auto *MainFile = SM.getFileEntryForID(SM.getMainFileID())) {
2916e8d8bef9SDimitry Andric     Optional<bool> V = ProfileList.isFileExcluded(MainFile->getName(), Kind);
291781ad6265SDimitry Andric     if (V)
2918e8d8bef9SDimitry Andric       return *V;
2919e8d8bef9SDimitry Andric   }
2920e8d8bef9SDimitry Andric   return ProfileList.getDefault();
2921e8d8bef9SDimitry Andric }
2922e8d8bef9SDimitry Andric 
2923fcaf7f86SDimitry Andric bool CodeGenModule::isFunctionBlockedFromProfileInstr(
2924fcaf7f86SDimitry Andric     llvm::Function *Fn, SourceLocation Loc) const {
2925fcaf7f86SDimitry Andric   if (isFunctionBlockedByProfileList(Fn, Loc))
2926fcaf7f86SDimitry Andric     return true;
2927fcaf7f86SDimitry Andric 
2928fcaf7f86SDimitry Andric   auto NumGroups = getCodeGenOpts().ProfileTotalFunctionGroups;
2929fcaf7f86SDimitry Andric   if (NumGroups > 1) {
2930fcaf7f86SDimitry Andric     auto Group = llvm::crc32(arrayRefFromStringRef(Fn->getName())) % NumGroups;
2931fcaf7f86SDimitry Andric     if (Group != getCodeGenOpts().ProfileSelectedFunctionGroup)
2932fcaf7f86SDimitry Andric       return true;
2933fcaf7f86SDimitry Andric   }
2934fcaf7f86SDimitry Andric   return false;
2935fcaf7f86SDimitry Andric }
2936fcaf7f86SDimitry Andric 
2937*0b57cec5SDimitry Andric bool CodeGenModule::MustBeEmitted(const ValueDecl *Global) {
2938*0b57cec5SDimitry Andric   // Never defer when EmitAllDecls is specified.
2939*0b57cec5SDimitry Andric   if (LangOpts.EmitAllDecls)
2940*0b57cec5SDimitry Andric     return true;
2941*0b57cec5SDimitry Andric 
2942*0b57cec5SDimitry Andric   if (CodeGenOpts.KeepStaticConsts) {
2943*0b57cec5SDimitry Andric     const auto *VD = dyn_cast<VarDecl>(Global);
2944*0b57cec5SDimitry Andric     if (VD && VD->getType().isConstQualified() &&
2945*0b57cec5SDimitry Andric         VD->getStorageDuration() == SD_Static)
2946*0b57cec5SDimitry Andric       return true;
2947*0b57cec5SDimitry Andric   }
2948*0b57cec5SDimitry Andric 
2949*0b57cec5SDimitry Andric   return getContext().DeclMustBeEmitted(Global);
2950*0b57cec5SDimitry Andric }
2951*0b57cec5SDimitry Andric 
2952*0b57cec5SDimitry Andric bool CodeGenModule::MayBeEmittedEagerly(const ValueDecl *Global) {
2953fe6060f1SDimitry Andric   // In OpenMP 5.0 variables and function may be marked as
2954fe6060f1SDimitry Andric   // device_type(host/nohost) and we should not emit them eagerly unless we sure
2955fe6060f1SDimitry Andric   // that they must be emitted on the host/device. To be sure we need to have
2956fe6060f1SDimitry Andric   // seen a declare target with an explicit mentioning of the function, we know
2957fe6060f1SDimitry Andric   // we have if the level of the declare target attribute is -1. Note that we
2958fe6060f1SDimitry Andric   // check somewhere else if we should emit this at all.
2959fe6060f1SDimitry Andric   if (LangOpts.OpenMP >= 50 && !LangOpts.OpenMPSimd) {
2960fe6060f1SDimitry Andric     llvm::Optional<OMPDeclareTargetDeclAttr *> ActiveAttr =
2961fe6060f1SDimitry Andric         OMPDeclareTargetDeclAttr::getActiveAttr(Global);
2962fe6060f1SDimitry Andric     if (!ActiveAttr || (*ActiveAttr)->getLevel() != (unsigned)-1)
2963fe6060f1SDimitry Andric       return false;
2964fe6060f1SDimitry Andric   }
2965fe6060f1SDimitry Andric 
2966a7dea167SDimitry Andric   if (const auto *FD = dyn_cast<FunctionDecl>(Global)) {
2967*0b57cec5SDimitry Andric     if (FD->getTemplateSpecializationKind() == TSK_ImplicitInstantiation)
2968*0b57cec5SDimitry Andric       // Implicit template instantiations may change linkage if they are later
2969*0b57cec5SDimitry Andric       // explicitly instantiated, so they should not be emitted eagerly.
2970*0b57cec5SDimitry Andric       return false;
2971a7dea167SDimitry Andric   }
2972fcaf7f86SDimitry Andric   if (const auto *VD = dyn_cast<VarDecl>(Global)) {
2973*0b57cec5SDimitry Andric     if (Context.getInlineVariableDefinitionKind(VD) ==
2974*0b57cec5SDimitry Andric         ASTContext::InlineVariableDefinitionKind::WeakUnknown)
2975*0b57cec5SDimitry Andric       // A definition of an inline constexpr static data member may change
2976*0b57cec5SDimitry Andric       // linkage later if it's redeclared outside the class.
2977*0b57cec5SDimitry Andric       return false;
2978fcaf7f86SDimitry Andric     if (CXX20ModuleInits && VD->getOwningModule() &&
2979fcaf7f86SDimitry Andric         !VD->getOwningModule()->isModuleMapModule()) {
2980fcaf7f86SDimitry Andric       // For CXX20, module-owned initializers need to be deferred, since it is
2981fcaf7f86SDimitry Andric       // not known at this point if they will be run for the current module or
2982fcaf7f86SDimitry Andric       // as part of the initializer for an imported one.
2983fcaf7f86SDimitry Andric       return false;
2984fcaf7f86SDimitry Andric     }
2985fcaf7f86SDimitry Andric   }
2986*0b57cec5SDimitry Andric   // If OpenMP is enabled and threadprivates must be generated like TLS, delay
2987*0b57cec5SDimitry Andric   // codegen for global variables, because they may be marked as threadprivate.
2988*0b57cec5SDimitry Andric   if (LangOpts.OpenMP && LangOpts.OpenMPUseTLS &&
2989*0b57cec5SDimitry Andric       getContext().getTargetInfo().isTLSSupported() && isa<VarDecl>(Global) &&
2990*0b57cec5SDimitry Andric       !isTypeConstant(Global->getType(), false) &&
2991*0b57cec5SDimitry Andric       !OMPDeclareTargetDeclAttr::isDeclareTargetDeclaration(Global))
2992*0b57cec5SDimitry Andric     return false;
2993*0b57cec5SDimitry Andric 
2994*0b57cec5SDimitry Andric   return true;
2995*0b57cec5SDimitry Andric }
2996*0b57cec5SDimitry Andric 
29975ffd83dbSDimitry Andric ConstantAddress CodeGenModule::GetAddrOfMSGuidDecl(const MSGuidDecl *GD) {
29985ffd83dbSDimitry Andric   StringRef Name = getMangledName(GD);
2999*0b57cec5SDimitry Andric 
3000*0b57cec5SDimitry Andric   // The UUID descriptor should be pointer aligned.
3001*0b57cec5SDimitry Andric   CharUnits Alignment = CharUnits::fromQuantity(PointerAlignInBytes);
3002*0b57cec5SDimitry Andric 
3003*0b57cec5SDimitry Andric   // Look for an existing global.
3004*0b57cec5SDimitry Andric   if (llvm::GlobalVariable *GV = getModule().getNamedGlobal(Name))
30050eae32dcSDimitry Andric     return ConstantAddress(GV, GV->getValueType(), Alignment);
3006*0b57cec5SDimitry Andric 
30075ffd83dbSDimitry Andric   ConstantEmitter Emitter(*this);
30085ffd83dbSDimitry Andric   llvm::Constant *Init;
30095ffd83dbSDimitry Andric 
30105ffd83dbSDimitry Andric   APValue &V = GD->getAsAPValue();
30115ffd83dbSDimitry Andric   if (!V.isAbsent()) {
30125ffd83dbSDimitry Andric     // If possible, emit the APValue version of the initializer. In particular,
30135ffd83dbSDimitry Andric     // this gets the type of the constant right.
30145ffd83dbSDimitry Andric     Init = Emitter.emitForInitializer(
30155ffd83dbSDimitry Andric         GD->getAsAPValue(), GD->getType().getAddressSpace(), GD->getType());
30165ffd83dbSDimitry Andric   } else {
30175ffd83dbSDimitry Andric     // As a fallback, directly construct the constant.
30185ffd83dbSDimitry Andric     // FIXME: This may get padding wrong under esoteric struct layout rules.
30195ffd83dbSDimitry Andric     // MSVC appears to create a complete type 'struct __s_GUID' that it
30205ffd83dbSDimitry Andric     // presumably uses to represent these constants.
30215ffd83dbSDimitry Andric     MSGuidDecl::Parts Parts = GD->getParts();
30225ffd83dbSDimitry Andric     llvm::Constant *Fields[4] = {
30235ffd83dbSDimitry Andric         llvm::ConstantInt::get(Int32Ty, Parts.Part1),
30245ffd83dbSDimitry Andric         llvm::ConstantInt::get(Int16Ty, Parts.Part2),
30255ffd83dbSDimitry Andric         llvm::ConstantInt::get(Int16Ty, Parts.Part3),
30265ffd83dbSDimitry Andric         llvm::ConstantDataArray::getRaw(
30275ffd83dbSDimitry Andric             StringRef(reinterpret_cast<char *>(Parts.Part4And5), 8), 8,
30285ffd83dbSDimitry Andric             Int8Ty)};
30295ffd83dbSDimitry Andric     Init = llvm::ConstantStruct::getAnon(Fields);
30305ffd83dbSDimitry Andric   }
3031*0b57cec5SDimitry Andric 
3032*0b57cec5SDimitry Andric   auto *GV = new llvm::GlobalVariable(
3033*0b57cec5SDimitry Andric       getModule(), Init->getType(),
3034*0b57cec5SDimitry Andric       /*isConstant=*/true, llvm::GlobalValue::LinkOnceODRLinkage, Init, Name);
3035*0b57cec5SDimitry Andric   if (supportsCOMDAT())
3036*0b57cec5SDimitry Andric     GV->setComdat(TheModule.getOrInsertComdat(GV->getName()));
3037*0b57cec5SDimitry Andric   setDSOLocal(GV);
30385ffd83dbSDimitry Andric 
30395ffd83dbSDimitry Andric   if (!V.isAbsent()) {
30405ffd83dbSDimitry Andric     Emitter.finalize(GV);
30410eae32dcSDimitry Andric     return ConstantAddress(GV, GV->getValueType(), Alignment);
30425ffd83dbSDimitry Andric   }
30430eae32dcSDimitry Andric 
30440eae32dcSDimitry Andric   llvm::Type *Ty = getTypes().ConvertTypeForMem(GD->getType());
30450eae32dcSDimitry Andric   llvm::Constant *Addr = llvm::ConstantExpr::getBitCast(
30460eae32dcSDimitry Andric       GV, Ty->getPointerTo(GV->getAddressSpace()));
30470eae32dcSDimitry Andric   return ConstantAddress(Addr, Ty, Alignment);
3048*0b57cec5SDimitry Andric }
3049*0b57cec5SDimitry Andric 
305081ad6265SDimitry Andric ConstantAddress CodeGenModule::GetAddrOfUnnamedGlobalConstantDecl(
305181ad6265SDimitry Andric     const UnnamedGlobalConstantDecl *GCD) {
305281ad6265SDimitry Andric   CharUnits Alignment = getContext().getTypeAlignInChars(GCD->getType());
305381ad6265SDimitry Andric 
305481ad6265SDimitry Andric   llvm::GlobalVariable **Entry = nullptr;
305581ad6265SDimitry Andric   Entry = &UnnamedGlobalConstantDeclMap[GCD];
305681ad6265SDimitry Andric   if (*Entry)
305781ad6265SDimitry Andric     return ConstantAddress(*Entry, (*Entry)->getValueType(), Alignment);
305881ad6265SDimitry Andric 
305981ad6265SDimitry Andric   ConstantEmitter Emitter(*this);
306081ad6265SDimitry Andric   llvm::Constant *Init;
306181ad6265SDimitry Andric 
306281ad6265SDimitry Andric   const APValue &V = GCD->getValue();
306381ad6265SDimitry Andric 
306481ad6265SDimitry Andric   assert(!V.isAbsent());
306581ad6265SDimitry Andric   Init = Emitter.emitForInitializer(V, GCD->getType().getAddressSpace(),
306681ad6265SDimitry Andric                                     GCD->getType());
306781ad6265SDimitry Andric 
306881ad6265SDimitry Andric   auto *GV = new llvm::GlobalVariable(getModule(), Init->getType(),
306981ad6265SDimitry Andric                                       /*isConstant=*/true,
307081ad6265SDimitry Andric                                       llvm::GlobalValue::PrivateLinkage, Init,
307181ad6265SDimitry Andric                                       ".constant");
307281ad6265SDimitry Andric   GV->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global);
307381ad6265SDimitry Andric   GV->setAlignment(Alignment.getAsAlign());
307481ad6265SDimitry Andric 
307581ad6265SDimitry Andric   Emitter.finalize(GV);
307681ad6265SDimitry Andric 
307781ad6265SDimitry Andric   *Entry = GV;
307881ad6265SDimitry Andric   return ConstantAddress(GV, GV->getValueType(), Alignment);
307981ad6265SDimitry Andric }
308081ad6265SDimitry Andric 
3081e8d8bef9SDimitry Andric ConstantAddress CodeGenModule::GetAddrOfTemplateParamObject(
3082e8d8bef9SDimitry Andric     const TemplateParamObjectDecl *TPO) {
3083e8d8bef9SDimitry Andric   StringRef Name = getMangledName(TPO);
3084e8d8bef9SDimitry Andric   CharUnits Alignment = getNaturalTypeAlignment(TPO->getType());
3085e8d8bef9SDimitry Andric 
3086e8d8bef9SDimitry Andric   if (llvm::GlobalVariable *GV = getModule().getNamedGlobal(Name))
30870eae32dcSDimitry Andric     return ConstantAddress(GV, GV->getValueType(), Alignment);
3088e8d8bef9SDimitry Andric 
3089e8d8bef9SDimitry Andric   ConstantEmitter Emitter(*this);
3090e8d8bef9SDimitry Andric   llvm::Constant *Init = Emitter.emitForInitializer(
3091e8d8bef9SDimitry Andric         TPO->getValue(), TPO->getType().getAddressSpace(), TPO->getType());
3092e8d8bef9SDimitry Andric 
3093e8d8bef9SDimitry Andric   if (!Init) {
3094e8d8bef9SDimitry Andric     ErrorUnsupported(TPO, "template parameter object");
3095e8d8bef9SDimitry Andric     return ConstantAddress::invalid();
3096e8d8bef9SDimitry Andric   }
3097e8d8bef9SDimitry Andric 
3098e8d8bef9SDimitry Andric   auto *GV = new llvm::GlobalVariable(
3099e8d8bef9SDimitry Andric       getModule(), Init->getType(),
3100e8d8bef9SDimitry Andric       /*isConstant=*/true, llvm::GlobalValue::LinkOnceODRLinkage, Init, Name);
3101e8d8bef9SDimitry Andric   if (supportsCOMDAT())
3102e8d8bef9SDimitry Andric     GV->setComdat(TheModule.getOrInsertComdat(GV->getName()));
3103e8d8bef9SDimitry Andric   Emitter.finalize(GV);
3104e8d8bef9SDimitry Andric 
31050eae32dcSDimitry Andric   return ConstantAddress(GV, GV->getValueType(), Alignment);
3106e8d8bef9SDimitry Andric }
3107e8d8bef9SDimitry Andric 
3108*0b57cec5SDimitry Andric ConstantAddress CodeGenModule::GetWeakRefReference(const ValueDecl *VD) {
3109*0b57cec5SDimitry Andric   const AliasAttr *AA = VD->getAttr<AliasAttr>();
3110*0b57cec5SDimitry Andric   assert(AA && "No alias?");
3111*0b57cec5SDimitry Andric 
3112*0b57cec5SDimitry Andric   CharUnits Alignment = getContext().getDeclAlign(VD);
3113*0b57cec5SDimitry Andric   llvm::Type *DeclTy = getTypes().ConvertTypeForMem(VD->getType());
3114*0b57cec5SDimitry Andric 
3115*0b57cec5SDimitry Andric   // See if there is already something with the target's name in the module.
3116*0b57cec5SDimitry Andric   llvm::GlobalValue *Entry = GetGlobalValue(AA->getAliasee());
3117*0b57cec5SDimitry Andric   if (Entry) {
3118*0b57cec5SDimitry Andric     unsigned AS = getContext().getTargetAddressSpace(VD->getType());
3119*0b57cec5SDimitry Andric     auto Ptr = llvm::ConstantExpr::getBitCast(Entry, DeclTy->getPointerTo(AS));
31200eae32dcSDimitry Andric     return ConstantAddress(Ptr, DeclTy, Alignment);
3121*0b57cec5SDimitry Andric   }
3122*0b57cec5SDimitry Andric 
3123*0b57cec5SDimitry Andric   llvm::Constant *Aliasee;
3124*0b57cec5SDimitry Andric   if (isa<llvm::FunctionType>(DeclTy))
3125*0b57cec5SDimitry Andric     Aliasee = GetOrCreateLLVMFunction(AA->getAliasee(), DeclTy,
3126*0b57cec5SDimitry Andric                                       GlobalDecl(cast<FunctionDecl>(VD)),
3127*0b57cec5SDimitry Andric                                       /*ForVTable=*/false);
3128*0b57cec5SDimitry Andric   else
3129349cc55cSDimitry Andric     Aliasee = GetOrCreateLLVMGlobal(AA->getAliasee(), DeclTy, LangAS::Default,
3130349cc55cSDimitry Andric                                     nullptr);
3131*0b57cec5SDimitry Andric 
3132*0b57cec5SDimitry Andric   auto *F = cast<llvm::GlobalValue>(Aliasee);
3133*0b57cec5SDimitry Andric   F->setLinkage(llvm::Function::ExternalWeakLinkage);
3134*0b57cec5SDimitry Andric   WeakRefReferences.insert(F);
3135*0b57cec5SDimitry Andric 
31360eae32dcSDimitry Andric   return ConstantAddress(Aliasee, DeclTy, Alignment);
3137*0b57cec5SDimitry Andric }
3138*0b57cec5SDimitry Andric 
3139*0b57cec5SDimitry Andric void CodeGenModule::EmitGlobal(GlobalDecl GD) {
3140*0b57cec5SDimitry Andric   const auto *Global = cast<ValueDecl>(GD.getDecl());
3141*0b57cec5SDimitry Andric 
3142*0b57cec5SDimitry Andric   // Weak references don't produce any output by themselves.
3143*0b57cec5SDimitry Andric   if (Global->hasAttr<WeakRefAttr>())
3144*0b57cec5SDimitry Andric     return;
3145*0b57cec5SDimitry Andric 
3146*0b57cec5SDimitry Andric   // If this is an alias definition (which otherwise looks like a declaration)
3147*0b57cec5SDimitry Andric   // emit it now.
3148*0b57cec5SDimitry Andric   if (Global->hasAttr<AliasAttr>())
3149*0b57cec5SDimitry Andric     return EmitAliasDefinition(GD);
3150*0b57cec5SDimitry Andric 
3151*0b57cec5SDimitry Andric   // IFunc like an alias whose value is resolved at runtime by calling resolver.
3152*0b57cec5SDimitry Andric   if (Global->hasAttr<IFuncAttr>())
3153*0b57cec5SDimitry Andric     return emitIFuncDefinition(GD);
3154*0b57cec5SDimitry Andric 
3155*0b57cec5SDimitry Andric   // If this is a cpu_dispatch multiversion function, emit the resolver.
3156*0b57cec5SDimitry Andric   if (Global->hasAttr<CPUDispatchAttr>())
3157*0b57cec5SDimitry Andric     return emitCPUDispatchDefinition(GD);
3158*0b57cec5SDimitry Andric 
3159*0b57cec5SDimitry Andric   // If this is CUDA, be selective about which declarations we emit.
3160*0b57cec5SDimitry Andric   if (LangOpts.CUDA) {
3161*0b57cec5SDimitry Andric     if (LangOpts.CUDAIsDevice) {
3162*0b57cec5SDimitry Andric       if (!Global->hasAttr<CUDADeviceAttr>() &&
3163*0b57cec5SDimitry Andric           !Global->hasAttr<CUDAGlobalAttr>() &&
3164*0b57cec5SDimitry Andric           !Global->hasAttr<CUDAConstantAttr>() &&
3165*0b57cec5SDimitry Andric           !Global->hasAttr<CUDASharedAttr>() &&
31665ffd83dbSDimitry Andric           !Global->getType()->isCUDADeviceBuiltinSurfaceType() &&
31675ffd83dbSDimitry Andric           !Global->getType()->isCUDADeviceBuiltinTextureType())
3168*0b57cec5SDimitry Andric         return;
3169*0b57cec5SDimitry Andric     } else {
3170*0b57cec5SDimitry Andric       // We need to emit host-side 'shadows' for all global
3171*0b57cec5SDimitry Andric       // device-side variables because the CUDA runtime needs their
3172*0b57cec5SDimitry Andric       // size and host-side address in order to provide access to
3173*0b57cec5SDimitry Andric       // their device-side incarnations.
3174*0b57cec5SDimitry Andric 
3175*0b57cec5SDimitry Andric       // So device-only functions are the only things we skip.
3176*0b57cec5SDimitry Andric       if (isa<FunctionDecl>(Global) && !Global->hasAttr<CUDAHostAttr>() &&
3177*0b57cec5SDimitry Andric           Global->hasAttr<CUDADeviceAttr>())
3178*0b57cec5SDimitry Andric         return;
3179*0b57cec5SDimitry Andric 
3180*0b57cec5SDimitry Andric       assert((isa<FunctionDecl>(Global) || isa<VarDecl>(Global)) &&
3181*0b57cec5SDimitry Andric              "Expected Variable or Function");
3182*0b57cec5SDimitry Andric     }
3183*0b57cec5SDimitry Andric   }
3184*0b57cec5SDimitry Andric 
3185*0b57cec5SDimitry Andric   if (LangOpts.OpenMP) {
3186a7dea167SDimitry Andric     // If this is OpenMP, check if it is legal to emit this global normally.
3187*0b57cec5SDimitry Andric     if (OpenMPRuntime && OpenMPRuntime->emitTargetGlobal(GD))
3188*0b57cec5SDimitry Andric       return;
3189*0b57cec5SDimitry Andric     if (auto *DRD = dyn_cast<OMPDeclareReductionDecl>(Global)) {
3190*0b57cec5SDimitry Andric       if (MustBeEmitted(Global))
3191*0b57cec5SDimitry Andric         EmitOMPDeclareReduction(DRD);
3192*0b57cec5SDimitry Andric       return;
3193*0b57cec5SDimitry Andric     } else if (auto *DMD = dyn_cast<OMPDeclareMapperDecl>(Global)) {
3194*0b57cec5SDimitry Andric       if (MustBeEmitted(Global))
3195*0b57cec5SDimitry Andric         EmitOMPDeclareMapper(DMD);
3196*0b57cec5SDimitry Andric       return;
3197*0b57cec5SDimitry Andric     }
3198*0b57cec5SDimitry Andric   }
3199*0b57cec5SDimitry Andric 
3200*0b57cec5SDimitry Andric   // Ignore declarations, they will be emitted on their first use.
3201*0b57cec5SDimitry Andric   if (const auto *FD = dyn_cast<FunctionDecl>(Global)) {
3202*0b57cec5SDimitry Andric     // Forward declarations are emitted lazily on first use.
3203*0b57cec5SDimitry Andric     if (!FD->doesThisDeclarationHaveABody()) {
3204*0b57cec5SDimitry Andric       if (!FD->doesDeclarationForceExternallyVisibleDefinition())
3205*0b57cec5SDimitry Andric         return;
3206*0b57cec5SDimitry Andric 
3207*0b57cec5SDimitry Andric       StringRef MangledName = getMangledName(GD);
3208*0b57cec5SDimitry Andric 
3209*0b57cec5SDimitry Andric       // Compute the function info and LLVM type.
3210*0b57cec5SDimitry Andric       const CGFunctionInfo &FI = getTypes().arrangeGlobalDeclaration(GD);
3211*0b57cec5SDimitry Andric       llvm::Type *Ty = getTypes().GetFunctionType(FI);
3212*0b57cec5SDimitry Andric 
3213*0b57cec5SDimitry Andric       GetOrCreateLLVMFunction(MangledName, Ty, GD, /*ForVTable=*/false,
3214*0b57cec5SDimitry Andric                               /*DontDefer=*/false);
3215*0b57cec5SDimitry Andric       return;
3216*0b57cec5SDimitry Andric     }
3217*0b57cec5SDimitry Andric   } else {
3218*0b57cec5SDimitry Andric     const auto *VD = cast<VarDecl>(Global);
3219*0b57cec5SDimitry Andric     assert(VD->isFileVarDecl() && "Cannot emit local var decl as global.");
3220*0b57cec5SDimitry Andric     if (VD->isThisDeclarationADefinition() != VarDecl::Definition &&
3221*0b57cec5SDimitry Andric         !Context.isMSStaticDataMemberInlineDefinition(VD)) {
3222*0b57cec5SDimitry Andric       if (LangOpts.OpenMP) {
3223*0b57cec5SDimitry Andric         // Emit declaration of the must-be-emitted declare target variable.
3224*0b57cec5SDimitry Andric         if (llvm::Optional<OMPDeclareTargetDeclAttr::MapTypeTy> Res =
3225*0b57cec5SDimitry Andric                 OMPDeclareTargetDeclAttr::isDeclareTargetDeclaration(VD)) {
3226*0b57cec5SDimitry Andric           bool UnifiedMemoryEnabled =
3227*0b57cec5SDimitry Andric               getOpenMPRuntime().hasRequiresUnifiedSharedMemory();
3228*0b57cec5SDimitry Andric           if (*Res == OMPDeclareTargetDeclAttr::MT_To &&
3229*0b57cec5SDimitry Andric               !UnifiedMemoryEnabled) {
3230*0b57cec5SDimitry Andric             (void)GetAddrOfGlobalVar(VD);
3231*0b57cec5SDimitry Andric           } else {
3232*0b57cec5SDimitry Andric             assert(((*Res == OMPDeclareTargetDeclAttr::MT_Link) ||
3233*0b57cec5SDimitry Andric                     (*Res == OMPDeclareTargetDeclAttr::MT_To &&
3234*0b57cec5SDimitry Andric                      UnifiedMemoryEnabled)) &&
3235*0b57cec5SDimitry Andric                    "Link clause or to clause with unified memory expected.");
3236*0b57cec5SDimitry Andric             (void)getOpenMPRuntime().getAddrOfDeclareTargetVar(VD);
3237*0b57cec5SDimitry Andric           }
3238*0b57cec5SDimitry Andric 
3239*0b57cec5SDimitry Andric           return;
3240*0b57cec5SDimitry Andric         }
3241*0b57cec5SDimitry Andric       }
3242*0b57cec5SDimitry Andric       // If this declaration may have caused an inline variable definition to
3243*0b57cec5SDimitry Andric       // change linkage, make sure that it's emitted.
3244*0b57cec5SDimitry Andric       if (Context.getInlineVariableDefinitionKind(VD) ==
3245*0b57cec5SDimitry Andric           ASTContext::InlineVariableDefinitionKind::Strong)
3246*0b57cec5SDimitry Andric         GetAddrOfGlobalVar(VD);
3247*0b57cec5SDimitry Andric       return;
3248*0b57cec5SDimitry Andric     }
3249*0b57cec5SDimitry Andric   }
3250*0b57cec5SDimitry Andric 
3251*0b57cec5SDimitry Andric   // Defer code generation to first use when possible, e.g. if this is an inline
3252*0b57cec5SDimitry Andric   // function. If the global must always be emitted, do it eagerly if possible
3253*0b57cec5SDimitry Andric   // to benefit from cache locality.
3254*0b57cec5SDimitry Andric   if (MustBeEmitted(Global) && MayBeEmittedEagerly(Global)) {
3255*0b57cec5SDimitry Andric     // Emit the definition if it can't be deferred.
3256*0b57cec5SDimitry Andric     EmitGlobalDefinition(GD);
3257*0b57cec5SDimitry Andric     return;
3258*0b57cec5SDimitry Andric   }
3259*0b57cec5SDimitry Andric 
3260*0b57cec5SDimitry Andric   // If we're deferring emission of a C++ variable with an
3261*0b57cec5SDimitry Andric   // initializer, remember the order in which it appeared in the file.
3262*0b57cec5SDimitry Andric   if (getLangOpts().CPlusPlus && isa<VarDecl>(Global) &&
3263*0b57cec5SDimitry Andric       cast<VarDecl>(Global)->hasInit()) {
3264*0b57cec5SDimitry Andric     DelayedCXXInitPosition[Global] = CXXGlobalInits.size();
3265*0b57cec5SDimitry Andric     CXXGlobalInits.push_back(nullptr);
3266*0b57cec5SDimitry Andric   }
3267*0b57cec5SDimitry Andric 
3268*0b57cec5SDimitry Andric   StringRef MangledName = getMangledName(GD);
3269*0b57cec5SDimitry Andric   if (GetGlobalValue(MangledName) != nullptr) {
3270*0b57cec5SDimitry Andric     // The value has already been used and should therefore be emitted.
3271*0b57cec5SDimitry Andric     addDeferredDeclToEmit(GD);
3272*0b57cec5SDimitry Andric   } else if (MustBeEmitted(Global)) {
3273*0b57cec5SDimitry Andric     // The value must be emitted, but cannot be emitted eagerly.
3274*0b57cec5SDimitry Andric     assert(!MayBeEmittedEagerly(Global));
3275*0b57cec5SDimitry Andric     addDeferredDeclToEmit(GD);
3276*0b57cec5SDimitry Andric   } else {
3277*0b57cec5SDimitry Andric     // Otherwise, remember that we saw a deferred decl with this name.  The
3278*0b57cec5SDimitry Andric     // first use of the mangled name will cause it to move into
3279*0b57cec5SDimitry Andric     // DeferredDeclsToEmit.
3280*0b57cec5SDimitry Andric     DeferredDecls[MangledName] = GD;
3281*0b57cec5SDimitry Andric   }
3282*0b57cec5SDimitry Andric }
3283*0b57cec5SDimitry Andric 
3284*0b57cec5SDimitry Andric // Check if T is a class type with a destructor that's not dllimport.
3285*0b57cec5SDimitry Andric static bool HasNonDllImportDtor(QualType T) {
3286*0b57cec5SDimitry Andric   if (const auto *RT = T->getBaseElementTypeUnsafe()->getAs<RecordType>())
3287*0b57cec5SDimitry Andric     if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(RT->getDecl()))
3288*0b57cec5SDimitry Andric       if (RD->getDestructor() && !RD->getDestructor()->hasAttr<DLLImportAttr>())
3289*0b57cec5SDimitry Andric         return true;
3290*0b57cec5SDimitry Andric 
3291*0b57cec5SDimitry Andric   return false;
3292*0b57cec5SDimitry Andric }
3293*0b57cec5SDimitry Andric 
3294*0b57cec5SDimitry Andric namespace {
3295*0b57cec5SDimitry Andric   struct FunctionIsDirectlyRecursive
3296*0b57cec5SDimitry Andric       : public ConstStmtVisitor<FunctionIsDirectlyRecursive, bool> {
3297*0b57cec5SDimitry Andric     const StringRef Name;
3298*0b57cec5SDimitry Andric     const Builtin::Context &BI;
3299*0b57cec5SDimitry Andric     FunctionIsDirectlyRecursive(StringRef N, const Builtin::Context &C)
3300*0b57cec5SDimitry Andric         : Name(N), BI(C) {}
3301*0b57cec5SDimitry Andric 
3302*0b57cec5SDimitry Andric     bool VisitCallExpr(const CallExpr *E) {
3303*0b57cec5SDimitry Andric       const FunctionDecl *FD = E->getDirectCallee();
3304*0b57cec5SDimitry Andric       if (!FD)
3305*0b57cec5SDimitry Andric         return false;
3306*0b57cec5SDimitry Andric       AsmLabelAttr *Attr = FD->getAttr<AsmLabelAttr>();
3307*0b57cec5SDimitry Andric       if (Attr && Name == Attr->getLabel())
3308*0b57cec5SDimitry Andric         return true;
3309*0b57cec5SDimitry Andric       unsigned BuiltinID = FD->getBuiltinID();
3310*0b57cec5SDimitry Andric       if (!BuiltinID || !BI.isLibFunction(BuiltinID))
3311*0b57cec5SDimitry Andric         return false;
3312*0b57cec5SDimitry Andric       StringRef BuiltinName = BI.getName(BuiltinID);
3313*0b57cec5SDimitry Andric       if (BuiltinName.startswith("__builtin_") &&
3314*0b57cec5SDimitry Andric           Name == BuiltinName.slice(strlen("__builtin_"), StringRef::npos)) {
3315*0b57cec5SDimitry Andric         return true;
3316*0b57cec5SDimitry Andric       }
3317*0b57cec5SDimitry Andric       return false;
3318*0b57cec5SDimitry Andric     }
3319*0b57cec5SDimitry Andric 
3320*0b57cec5SDimitry Andric     bool VisitStmt(const Stmt *S) {
3321*0b57cec5SDimitry Andric       for (const Stmt *Child : S->children())
3322*0b57cec5SDimitry Andric         if (Child && this->Visit(Child))
3323*0b57cec5SDimitry Andric           return true;
3324*0b57cec5SDimitry Andric       return false;
3325*0b57cec5SDimitry Andric     }
3326*0b57cec5SDimitry Andric   };
3327*0b57cec5SDimitry Andric 
3328*0b57cec5SDimitry Andric   // Make sure we're not referencing non-imported vars or functions.
3329*0b57cec5SDimitry Andric   struct DLLImportFunctionVisitor
3330*0b57cec5SDimitry Andric       : public RecursiveASTVisitor<DLLImportFunctionVisitor> {
3331*0b57cec5SDimitry Andric     bool SafeToInline = true;
3332*0b57cec5SDimitry Andric 
3333*0b57cec5SDimitry Andric     bool shouldVisitImplicitCode() const { return true; }
3334*0b57cec5SDimitry Andric 
3335*0b57cec5SDimitry Andric     bool VisitVarDecl(VarDecl *VD) {
3336*0b57cec5SDimitry Andric       if (VD->getTLSKind()) {
3337*0b57cec5SDimitry Andric         // A thread-local variable cannot be imported.
3338*0b57cec5SDimitry Andric         SafeToInline = false;
3339*0b57cec5SDimitry Andric         return SafeToInline;
3340*0b57cec5SDimitry Andric       }
3341*0b57cec5SDimitry Andric 
3342*0b57cec5SDimitry Andric       // A variable definition might imply a destructor call.
3343*0b57cec5SDimitry Andric       if (VD->isThisDeclarationADefinition())
3344*0b57cec5SDimitry Andric         SafeToInline = !HasNonDllImportDtor(VD->getType());
3345*0b57cec5SDimitry Andric 
3346*0b57cec5SDimitry Andric       return SafeToInline;
3347*0b57cec5SDimitry Andric     }
3348*0b57cec5SDimitry Andric 
3349*0b57cec5SDimitry Andric     bool VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E) {
3350*0b57cec5SDimitry Andric       if (const auto *D = E->getTemporary()->getDestructor())
3351*0b57cec5SDimitry Andric         SafeToInline = D->hasAttr<DLLImportAttr>();
3352*0b57cec5SDimitry Andric       return SafeToInline;
3353*0b57cec5SDimitry Andric     }
3354*0b57cec5SDimitry Andric 
3355*0b57cec5SDimitry Andric     bool VisitDeclRefExpr(DeclRefExpr *E) {
3356*0b57cec5SDimitry Andric       ValueDecl *VD = E->getDecl();
3357*0b57cec5SDimitry Andric       if (isa<FunctionDecl>(VD))
3358*0b57cec5SDimitry Andric         SafeToInline = VD->hasAttr<DLLImportAttr>();
3359*0b57cec5SDimitry Andric       else if (VarDecl *V = dyn_cast<VarDecl>(VD))
3360*0b57cec5SDimitry Andric         SafeToInline = !V->hasGlobalStorage() || V->hasAttr<DLLImportAttr>();
3361*0b57cec5SDimitry Andric       return SafeToInline;
3362*0b57cec5SDimitry Andric     }
3363*0b57cec5SDimitry Andric 
3364*0b57cec5SDimitry Andric     bool VisitCXXConstructExpr(CXXConstructExpr *E) {
3365*0b57cec5SDimitry Andric       SafeToInline = E->getConstructor()->hasAttr<DLLImportAttr>();
3366*0b57cec5SDimitry Andric       return SafeToInline;
3367*0b57cec5SDimitry Andric     }
3368*0b57cec5SDimitry Andric 
3369*0b57cec5SDimitry Andric     bool VisitCXXMemberCallExpr(CXXMemberCallExpr *E) {
3370*0b57cec5SDimitry Andric       CXXMethodDecl *M = E->getMethodDecl();
3371*0b57cec5SDimitry Andric       if (!M) {
3372*0b57cec5SDimitry Andric         // Call through a pointer to member function. This is safe to inline.
3373*0b57cec5SDimitry Andric         SafeToInline = true;
3374*0b57cec5SDimitry Andric       } else {
3375*0b57cec5SDimitry Andric         SafeToInline = M->hasAttr<DLLImportAttr>();
3376*0b57cec5SDimitry Andric       }
3377*0b57cec5SDimitry Andric       return SafeToInline;
3378*0b57cec5SDimitry Andric     }
3379*0b57cec5SDimitry Andric 
3380*0b57cec5SDimitry Andric     bool VisitCXXDeleteExpr(CXXDeleteExpr *E) {
3381*0b57cec5SDimitry Andric       SafeToInline = E->getOperatorDelete()->hasAttr<DLLImportAttr>();
3382*0b57cec5SDimitry Andric       return SafeToInline;
3383*0b57cec5SDimitry Andric     }
3384*0b57cec5SDimitry Andric 
3385*0b57cec5SDimitry Andric     bool VisitCXXNewExpr(CXXNewExpr *E) {
3386*0b57cec5SDimitry Andric       SafeToInline = E->getOperatorNew()->hasAttr<DLLImportAttr>();
3387*0b57cec5SDimitry Andric       return SafeToInline;
3388*0b57cec5SDimitry Andric     }
3389*0b57cec5SDimitry Andric   };
3390*0b57cec5SDimitry Andric }
3391*0b57cec5SDimitry Andric 
3392*0b57cec5SDimitry Andric // isTriviallyRecursive - Check if this function calls another
3393*0b57cec5SDimitry Andric // decl that, because of the asm attribute or the other decl being a builtin,
3394*0b57cec5SDimitry Andric // ends up pointing to itself.
3395*0b57cec5SDimitry Andric bool
3396*0b57cec5SDimitry Andric CodeGenModule::isTriviallyRecursive(const FunctionDecl *FD) {
3397*0b57cec5SDimitry Andric   StringRef Name;
3398*0b57cec5SDimitry Andric   if (getCXXABI().getMangleContext().shouldMangleDeclName(FD)) {
3399*0b57cec5SDimitry Andric     // asm labels are a special kind of mangling we have to support.
3400*0b57cec5SDimitry Andric     AsmLabelAttr *Attr = FD->getAttr<AsmLabelAttr>();
3401*0b57cec5SDimitry Andric     if (!Attr)
3402*0b57cec5SDimitry Andric       return false;
3403*0b57cec5SDimitry Andric     Name = Attr->getLabel();
3404*0b57cec5SDimitry Andric   } else {
3405*0b57cec5SDimitry Andric     Name = FD->getName();
3406*0b57cec5SDimitry Andric   }
3407*0b57cec5SDimitry Andric 
3408*0b57cec5SDimitry Andric   FunctionIsDirectlyRecursive Walker(Name, Context.BuiltinInfo);
3409*0b57cec5SDimitry Andric   const Stmt *Body = FD->getBody();
3410*0b57cec5SDimitry Andric   return Body ? Walker.Visit(Body) : false;
3411*0b57cec5SDimitry Andric }
3412*0b57cec5SDimitry Andric 
3413*0b57cec5SDimitry Andric bool CodeGenModule::shouldEmitFunction(GlobalDecl GD) {
3414*0b57cec5SDimitry Andric   if (getFunctionLinkage(GD) != llvm::Function::AvailableExternallyLinkage)
3415*0b57cec5SDimitry Andric     return true;
3416*0b57cec5SDimitry Andric   const auto *F = cast<FunctionDecl>(GD.getDecl());
3417*0b57cec5SDimitry Andric   if (CodeGenOpts.OptimizationLevel == 0 && !F->hasAttr<AlwaysInlineAttr>())
3418*0b57cec5SDimitry Andric     return false;
3419*0b57cec5SDimitry Andric 
3420fe6060f1SDimitry Andric   if (F->hasAttr<DLLImportAttr>() && !F->hasAttr<AlwaysInlineAttr>()) {
3421*0b57cec5SDimitry Andric     // Check whether it would be safe to inline this dllimport function.
3422*0b57cec5SDimitry Andric     DLLImportFunctionVisitor Visitor;
3423*0b57cec5SDimitry Andric     Visitor.TraverseFunctionDecl(const_cast<FunctionDecl*>(F));
3424*0b57cec5SDimitry Andric     if (!Visitor.SafeToInline)
3425*0b57cec5SDimitry Andric       return false;
3426*0b57cec5SDimitry Andric 
3427*0b57cec5SDimitry Andric     if (const CXXDestructorDecl *Dtor = dyn_cast<CXXDestructorDecl>(F)) {
3428*0b57cec5SDimitry Andric       // Implicit destructor invocations aren't captured in the AST, so the
3429*0b57cec5SDimitry Andric       // check above can't see them. Check for them manually here.
3430*0b57cec5SDimitry Andric       for (const Decl *Member : Dtor->getParent()->decls())
3431*0b57cec5SDimitry Andric         if (isa<FieldDecl>(Member))
3432*0b57cec5SDimitry Andric           if (HasNonDllImportDtor(cast<FieldDecl>(Member)->getType()))
3433*0b57cec5SDimitry Andric             return false;
3434*0b57cec5SDimitry Andric       for (const CXXBaseSpecifier &B : Dtor->getParent()->bases())
3435*0b57cec5SDimitry Andric         if (HasNonDllImportDtor(B.getType()))
3436*0b57cec5SDimitry Andric           return false;
3437*0b57cec5SDimitry Andric     }
3438*0b57cec5SDimitry Andric   }
3439*0b57cec5SDimitry Andric 
3440349cc55cSDimitry Andric   // Inline builtins declaration must be emitted. They often are fortified
3441349cc55cSDimitry Andric   // functions.
3442349cc55cSDimitry Andric   if (F->isInlineBuiltinDeclaration())
3443349cc55cSDimitry Andric     return true;
3444349cc55cSDimitry Andric 
3445*0b57cec5SDimitry Andric   // PR9614. Avoid cases where the source code is lying to us. An available
3446*0b57cec5SDimitry Andric   // externally function should have an equivalent function somewhere else,
34475ffd83dbSDimitry Andric   // but a function that calls itself through asm label/`__builtin_` trickery is
34485ffd83dbSDimitry Andric   // clearly not equivalent to the real implementation.
3449*0b57cec5SDimitry Andric   // This happens in glibc's btowc and in some configure checks.
3450*0b57cec5SDimitry Andric   return !isTriviallyRecursive(F);
3451*0b57cec5SDimitry Andric }
3452*0b57cec5SDimitry Andric 
3453*0b57cec5SDimitry Andric bool CodeGenModule::shouldOpportunisticallyEmitVTables() {
3454*0b57cec5SDimitry Andric   return CodeGenOpts.OptimizationLevel > 0;
3455*0b57cec5SDimitry Andric }
3456*0b57cec5SDimitry Andric 
3457*0b57cec5SDimitry Andric void CodeGenModule::EmitMultiVersionFunctionDefinition(GlobalDecl GD,
3458*0b57cec5SDimitry Andric                                                        llvm::GlobalValue *GV) {
3459*0b57cec5SDimitry Andric   const auto *FD = cast<FunctionDecl>(GD.getDecl());
3460*0b57cec5SDimitry Andric 
3461*0b57cec5SDimitry Andric   if (FD->isCPUSpecificMultiVersion()) {
3462*0b57cec5SDimitry Andric     auto *Spec = FD->getAttr<CPUSpecificAttr>();
3463*0b57cec5SDimitry Andric     for (unsigned I = 0; I < Spec->cpus_size(); ++I)
3464*0b57cec5SDimitry Andric       EmitGlobalFunctionDefinition(GD.getWithMultiVersionIndex(I), nullptr);
34654824e7fdSDimitry Andric   } else if (FD->isTargetClonesMultiVersion()) {
34664824e7fdSDimitry Andric     auto *Clone = FD->getAttr<TargetClonesAttr>();
34674824e7fdSDimitry Andric     for (unsigned I = 0; I < Clone->featuresStrs_size(); ++I)
34684824e7fdSDimitry Andric       if (Clone->isFirstOfVersion(I))
34694824e7fdSDimitry Andric         EmitGlobalFunctionDefinition(GD.getWithMultiVersionIndex(I), nullptr);
347081ad6265SDimitry Andric     // Ensure that the resolver function is also emitted.
347181ad6265SDimitry Andric     GetOrCreateMultiVersionResolver(GD);
3472*0b57cec5SDimitry Andric   } else
3473*0b57cec5SDimitry Andric     EmitGlobalFunctionDefinition(GD, GV);
3474*0b57cec5SDimitry Andric }
3475*0b57cec5SDimitry Andric 
3476*0b57cec5SDimitry Andric void CodeGenModule::EmitGlobalDefinition(GlobalDecl GD, llvm::GlobalValue *GV) {
3477*0b57cec5SDimitry Andric   const auto *D = cast<ValueDecl>(GD.getDecl());
3478*0b57cec5SDimitry Andric 
3479*0b57cec5SDimitry Andric   PrettyStackTraceDecl CrashInfo(const_cast<ValueDecl *>(D), D->getLocation(),
3480*0b57cec5SDimitry Andric                                  Context.getSourceManager(),
3481*0b57cec5SDimitry Andric                                  "Generating code for declaration");
3482*0b57cec5SDimitry Andric 
3483*0b57cec5SDimitry Andric   if (const auto *FD = dyn_cast<FunctionDecl>(D)) {
3484*0b57cec5SDimitry Andric     // At -O0, don't generate IR for functions with available_externally
3485*0b57cec5SDimitry Andric     // linkage.
3486*0b57cec5SDimitry Andric     if (!shouldEmitFunction(GD))
3487*0b57cec5SDimitry Andric       return;
3488*0b57cec5SDimitry Andric 
3489*0b57cec5SDimitry Andric     llvm::TimeTraceScope TimeScope("CodeGen Function", [&]() {
3490*0b57cec5SDimitry Andric       std::string Name;
3491*0b57cec5SDimitry Andric       llvm::raw_string_ostream OS(Name);
3492*0b57cec5SDimitry Andric       FD->getNameForDiagnostic(OS, getContext().getPrintingPolicy(),
3493*0b57cec5SDimitry Andric                                /*Qualified=*/true);
3494*0b57cec5SDimitry Andric       return Name;
3495*0b57cec5SDimitry Andric     });
3496*0b57cec5SDimitry Andric 
3497*0b57cec5SDimitry Andric     if (const auto *Method = dyn_cast<CXXMethodDecl>(D)) {
3498*0b57cec5SDimitry Andric       // Make sure to emit the definition(s) before we emit the thunks.
3499*0b57cec5SDimitry Andric       // This is necessary for the generation of certain thunks.
3500*0b57cec5SDimitry Andric       if (isa<CXXConstructorDecl>(Method) || isa<CXXDestructorDecl>(Method))
3501*0b57cec5SDimitry Andric         ABI->emitCXXStructor(GD);
3502*0b57cec5SDimitry Andric       else if (FD->isMultiVersion())
3503*0b57cec5SDimitry Andric         EmitMultiVersionFunctionDefinition(GD, GV);
3504*0b57cec5SDimitry Andric       else
3505*0b57cec5SDimitry Andric         EmitGlobalFunctionDefinition(GD, GV);
3506*0b57cec5SDimitry Andric 
3507*0b57cec5SDimitry Andric       if (Method->isVirtual())
3508*0b57cec5SDimitry Andric         getVTables().EmitThunks(GD);
3509*0b57cec5SDimitry Andric 
3510*0b57cec5SDimitry Andric       return;
3511*0b57cec5SDimitry Andric     }
3512*0b57cec5SDimitry Andric 
3513*0b57cec5SDimitry Andric     if (FD->isMultiVersion())
3514*0b57cec5SDimitry Andric       return EmitMultiVersionFunctionDefinition(GD, GV);
3515*0b57cec5SDimitry Andric     return EmitGlobalFunctionDefinition(GD, GV);
3516*0b57cec5SDimitry Andric   }
3517*0b57cec5SDimitry Andric 
3518*0b57cec5SDimitry Andric   if (const auto *VD = dyn_cast<VarDecl>(D))
3519*0b57cec5SDimitry Andric     return EmitGlobalVarDefinition(VD, !VD->hasDefinition());
3520*0b57cec5SDimitry Andric 
3521*0b57cec5SDimitry Andric   llvm_unreachable("Invalid argument to EmitGlobalDefinition()");
3522*0b57cec5SDimitry Andric }
3523*0b57cec5SDimitry Andric 
3524*0b57cec5SDimitry Andric static void ReplaceUsesOfNonProtoTypeWithRealFunction(llvm::GlobalValue *Old,
3525*0b57cec5SDimitry Andric                                                       llvm::Function *NewFn);
3526*0b57cec5SDimitry Andric 
3527*0b57cec5SDimitry Andric static unsigned
3528*0b57cec5SDimitry Andric TargetMVPriority(const TargetInfo &TI,
3529*0b57cec5SDimitry Andric                  const CodeGenFunction::MultiVersionResolverOption &RO) {
3530*0b57cec5SDimitry Andric   unsigned Priority = 0;
3531*0b57cec5SDimitry Andric   for (StringRef Feat : RO.Conditions.Features)
3532*0b57cec5SDimitry Andric     Priority = std::max(Priority, TI.multiVersionSortPriority(Feat));
3533*0b57cec5SDimitry Andric 
3534*0b57cec5SDimitry Andric   if (!RO.Conditions.Architecture.empty())
3535*0b57cec5SDimitry Andric     Priority = std::max(
3536*0b57cec5SDimitry Andric         Priority, TI.multiVersionSortPriority(RO.Conditions.Architecture));
3537*0b57cec5SDimitry Andric   return Priority;
3538*0b57cec5SDimitry Andric }
3539*0b57cec5SDimitry Andric 
3540349cc55cSDimitry Andric // Multiversion functions should be at most 'WeakODRLinkage' so that a different
3541349cc55cSDimitry Andric // TU can forward declare the function without causing problems.  Particularly
3542349cc55cSDimitry Andric // in the cases of CPUDispatch, this causes issues. This also makes sure we
3543349cc55cSDimitry Andric // work with internal linkage functions, so that the same function name can be
3544349cc55cSDimitry Andric // used with internal linkage in multiple TUs.
3545349cc55cSDimitry Andric llvm::GlobalValue::LinkageTypes getMultiversionLinkage(CodeGenModule &CGM,
3546349cc55cSDimitry Andric                                                        GlobalDecl GD) {
3547349cc55cSDimitry Andric   const FunctionDecl *FD = cast<FunctionDecl>(GD.getDecl());
3548349cc55cSDimitry Andric   if (FD->getFormalLinkage() == InternalLinkage)
3549349cc55cSDimitry Andric     return llvm::GlobalValue::InternalLinkage;
3550349cc55cSDimitry Andric   return llvm::GlobalValue::WeakODRLinkage;
3551349cc55cSDimitry Andric }
3552349cc55cSDimitry Andric 
3553*0b57cec5SDimitry Andric void CodeGenModule::emitMultiVersionFunctions() {
3554fe6060f1SDimitry Andric   std::vector<GlobalDecl> MVFuncsToEmit;
3555fe6060f1SDimitry Andric   MultiVersionFuncs.swap(MVFuncsToEmit);
3556fe6060f1SDimitry Andric   for (GlobalDecl GD : MVFuncsToEmit) {
355781ad6265SDimitry Andric     const auto *FD = cast<FunctionDecl>(GD.getDecl());
355881ad6265SDimitry Andric     assert(FD && "Expected a FunctionDecl");
355981ad6265SDimitry Andric 
3560*0b57cec5SDimitry Andric     SmallVector<CodeGenFunction::MultiVersionResolverOption, 10> Options;
356181ad6265SDimitry Andric     if (FD->isTargetMultiVersion()) {
3562*0b57cec5SDimitry Andric       getContext().forEachMultiversionedFunctionVersion(
3563*0b57cec5SDimitry Andric           FD, [this, &GD, &Options](const FunctionDecl *CurFD) {
3564*0b57cec5SDimitry Andric             GlobalDecl CurGD{
3565*0b57cec5SDimitry Andric                 (CurFD->isDefined() ? CurFD->getDefinition() : CurFD)};
3566*0b57cec5SDimitry Andric             StringRef MangledName = getMangledName(CurGD);
3567*0b57cec5SDimitry Andric             llvm::Constant *Func = GetGlobalValue(MangledName);
3568*0b57cec5SDimitry Andric             if (!Func) {
3569*0b57cec5SDimitry Andric               if (CurFD->isDefined()) {
3570*0b57cec5SDimitry Andric                 EmitGlobalFunctionDefinition(CurGD, nullptr);
3571*0b57cec5SDimitry Andric                 Func = GetGlobalValue(MangledName);
3572*0b57cec5SDimitry Andric               } else {
3573*0b57cec5SDimitry Andric                 const CGFunctionInfo &FI =
3574*0b57cec5SDimitry Andric                     getTypes().arrangeGlobalDeclaration(GD);
3575*0b57cec5SDimitry Andric                 llvm::FunctionType *Ty = getTypes().GetFunctionType(FI);
3576*0b57cec5SDimitry Andric                 Func = GetAddrOfFunction(CurGD, Ty, /*ForVTable=*/false,
3577*0b57cec5SDimitry Andric                                          /*DontDefer=*/false, ForDefinition);
3578*0b57cec5SDimitry Andric               }
3579*0b57cec5SDimitry Andric               assert(Func && "This should have just been created");
3580*0b57cec5SDimitry Andric             }
3581*0b57cec5SDimitry Andric 
3582*0b57cec5SDimitry Andric             const auto *TA = CurFD->getAttr<TargetAttr>();
3583*0b57cec5SDimitry Andric             llvm::SmallVector<StringRef, 8> Feats;
3584*0b57cec5SDimitry Andric             TA->getAddedFeatures(Feats);
3585*0b57cec5SDimitry Andric 
3586*0b57cec5SDimitry Andric             Options.emplace_back(cast<llvm::Function>(Func),
3587*0b57cec5SDimitry Andric                                  TA->getArchitecture(), Feats);
3588*0b57cec5SDimitry Andric           });
358981ad6265SDimitry Andric     } else if (FD->isTargetClonesMultiVersion()) {
359081ad6265SDimitry Andric       const auto *TC = FD->getAttr<TargetClonesAttr>();
359181ad6265SDimitry Andric       for (unsigned VersionIndex = 0; VersionIndex < TC->featuresStrs_size();
359281ad6265SDimitry Andric            ++VersionIndex) {
359381ad6265SDimitry Andric         if (!TC->isFirstOfVersion(VersionIndex))
359481ad6265SDimitry Andric           continue;
359581ad6265SDimitry Andric         GlobalDecl CurGD{(FD->isDefined() ? FD->getDefinition() : FD),
359681ad6265SDimitry Andric                          VersionIndex};
359781ad6265SDimitry Andric         StringRef Version = TC->getFeatureStr(VersionIndex);
359881ad6265SDimitry Andric         StringRef MangledName = getMangledName(CurGD);
359981ad6265SDimitry Andric         llvm::Constant *Func = GetGlobalValue(MangledName);
360081ad6265SDimitry Andric         if (!Func) {
360181ad6265SDimitry Andric           if (FD->isDefined()) {
360281ad6265SDimitry Andric             EmitGlobalFunctionDefinition(CurGD, nullptr);
360381ad6265SDimitry Andric             Func = GetGlobalValue(MangledName);
3604a7dea167SDimitry Andric           } else {
360581ad6265SDimitry Andric             const CGFunctionInfo &FI =
360681ad6265SDimitry Andric                 getTypes().arrangeGlobalDeclaration(CurGD);
360781ad6265SDimitry Andric             llvm::FunctionType *Ty = getTypes().GetFunctionType(FI);
360881ad6265SDimitry Andric             Func = GetAddrOfFunction(CurGD, Ty, /*ForVTable=*/false,
360981ad6265SDimitry Andric                                      /*DontDefer=*/false, ForDefinition);
3610a7dea167SDimitry Andric           }
361181ad6265SDimitry Andric           assert(Func && "This should have just been created");
361281ad6265SDimitry Andric         }
361381ad6265SDimitry Andric 
361481ad6265SDimitry Andric         StringRef Architecture;
361581ad6265SDimitry Andric         llvm::SmallVector<StringRef, 1> Feature;
361681ad6265SDimitry Andric 
361781ad6265SDimitry Andric         if (Version.startswith("arch="))
361881ad6265SDimitry Andric           Architecture = Version.drop_front(sizeof("arch=") - 1);
361981ad6265SDimitry Andric         else if (Version != "default")
362081ad6265SDimitry Andric           Feature.push_back(Version);
362181ad6265SDimitry Andric 
362281ad6265SDimitry Andric         Options.emplace_back(cast<llvm::Function>(Func), Architecture, Feature);
362381ad6265SDimitry Andric       }
362481ad6265SDimitry Andric     } else {
362581ad6265SDimitry Andric       assert(0 && "Expected a target or target_clones multiversion function");
362681ad6265SDimitry Andric       continue;
362781ad6265SDimitry Andric     }
362881ad6265SDimitry Andric 
362981ad6265SDimitry Andric     llvm::Constant *ResolverConstant = GetOrCreateMultiVersionResolver(GD);
363081ad6265SDimitry Andric     if (auto *IFunc = dyn_cast<llvm::GlobalIFunc>(ResolverConstant))
363181ad6265SDimitry Andric       ResolverConstant = IFunc->getResolver();
363281ad6265SDimitry Andric     llvm::Function *ResolverFunc = cast<llvm::Function>(ResolverConstant);
363381ad6265SDimitry Andric 
363481ad6265SDimitry Andric     ResolverFunc->setLinkage(getMultiversionLinkage(*this, GD));
3635*0b57cec5SDimitry Andric 
3636*0b57cec5SDimitry Andric     if (supportsCOMDAT())
3637*0b57cec5SDimitry Andric       ResolverFunc->setComdat(
3638*0b57cec5SDimitry Andric           getModule().getOrInsertComdat(ResolverFunc->getName()));
3639*0b57cec5SDimitry Andric 
364081ad6265SDimitry Andric     const TargetInfo &TI = getTarget();
3641*0b57cec5SDimitry Andric     llvm::stable_sort(
3642*0b57cec5SDimitry Andric         Options, [&TI](const CodeGenFunction::MultiVersionResolverOption &LHS,
3643*0b57cec5SDimitry Andric                        const CodeGenFunction::MultiVersionResolverOption &RHS) {
3644*0b57cec5SDimitry Andric           return TargetMVPriority(TI, LHS) > TargetMVPriority(TI, RHS);
3645*0b57cec5SDimitry Andric         });
3646*0b57cec5SDimitry Andric     CodeGenFunction CGF(*this);
3647*0b57cec5SDimitry Andric     CGF.EmitMultiVersionResolver(ResolverFunc, Options);
3648*0b57cec5SDimitry Andric   }
3649fe6060f1SDimitry Andric 
3650fe6060f1SDimitry Andric   // Ensure that any additions to the deferred decls list caused by emitting a
3651fe6060f1SDimitry Andric   // variant are emitted.  This can happen when the variant itself is inline and
3652fe6060f1SDimitry Andric   // calls a function without linkage.
3653fe6060f1SDimitry Andric   if (!MVFuncsToEmit.empty())
3654fe6060f1SDimitry Andric     EmitDeferred();
3655fe6060f1SDimitry Andric 
3656fe6060f1SDimitry Andric   // Ensure that any additions to the multiversion funcs list from either the
3657fe6060f1SDimitry Andric   // deferred decls or the multiversion functions themselves are emitted.
3658fe6060f1SDimitry Andric   if (!MultiVersionFuncs.empty())
3659fe6060f1SDimitry Andric     emitMultiVersionFunctions();
3660*0b57cec5SDimitry Andric }
3661*0b57cec5SDimitry Andric 
3662*0b57cec5SDimitry Andric void CodeGenModule::emitCPUDispatchDefinition(GlobalDecl GD) {
3663*0b57cec5SDimitry Andric   const auto *FD = cast<FunctionDecl>(GD.getDecl());
3664*0b57cec5SDimitry Andric   assert(FD && "Not a FunctionDecl?");
366504eeddc0SDimitry Andric   assert(FD->isCPUDispatchMultiVersion() && "Not a multiversion function?");
3666*0b57cec5SDimitry Andric   const auto *DD = FD->getAttr<CPUDispatchAttr>();
3667*0b57cec5SDimitry Andric   assert(DD && "Not a cpu_dispatch Function?");
3668*0b57cec5SDimitry Andric 
366981ad6265SDimitry Andric   const CGFunctionInfo &FI = getTypes().arrangeGlobalDeclaration(GD);
367081ad6265SDimitry Andric   llvm::FunctionType *DeclTy = getTypes().GetFunctionType(FI);
3671*0b57cec5SDimitry Andric 
3672*0b57cec5SDimitry Andric   StringRef ResolverName = getMangledName(GD);
367304eeddc0SDimitry Andric   UpdateMultiVersionNames(GD, FD, ResolverName);
3674*0b57cec5SDimitry Andric 
3675*0b57cec5SDimitry Andric   llvm::Type *ResolverType;
3676*0b57cec5SDimitry Andric   GlobalDecl ResolverGD;
367704eeddc0SDimitry Andric   if (getTarget().supportsIFunc()) {
3678*0b57cec5SDimitry Andric     ResolverType = llvm::FunctionType::get(
3679*0b57cec5SDimitry Andric         llvm::PointerType::get(DeclTy,
3680*0b57cec5SDimitry Andric                                Context.getTargetAddressSpace(FD->getType())),
3681*0b57cec5SDimitry Andric         false);
368204eeddc0SDimitry Andric   }
3683*0b57cec5SDimitry Andric   else {
3684*0b57cec5SDimitry Andric     ResolverType = DeclTy;
3685*0b57cec5SDimitry Andric     ResolverGD = GD;
3686*0b57cec5SDimitry Andric   }
3687*0b57cec5SDimitry Andric 
3688*0b57cec5SDimitry Andric   auto *ResolverFunc = cast<llvm::Function>(GetOrCreateLLVMFunction(
3689*0b57cec5SDimitry Andric       ResolverName, ResolverType, ResolverGD, /*ForVTable=*/false));
3690349cc55cSDimitry Andric   ResolverFunc->setLinkage(getMultiversionLinkage(*this, GD));
3691a7dea167SDimitry Andric   if (supportsCOMDAT())
3692a7dea167SDimitry Andric     ResolverFunc->setComdat(
3693a7dea167SDimitry Andric         getModule().getOrInsertComdat(ResolverFunc->getName()));
3694*0b57cec5SDimitry Andric 
3695*0b57cec5SDimitry Andric   SmallVector<CodeGenFunction::MultiVersionResolverOption, 10> Options;
3696*0b57cec5SDimitry Andric   const TargetInfo &Target = getTarget();
3697*0b57cec5SDimitry Andric   unsigned Index = 0;
3698*0b57cec5SDimitry Andric   for (const IdentifierInfo *II : DD->cpus()) {
3699*0b57cec5SDimitry Andric     // Get the name of the target function so we can look it up/create it.
3700*0b57cec5SDimitry Andric     std::string MangledName = getMangledNameImpl(*this, GD, FD, true) +
3701*0b57cec5SDimitry Andric                               getCPUSpecificMangling(*this, II->getName());
3702*0b57cec5SDimitry Andric 
3703*0b57cec5SDimitry Andric     llvm::Constant *Func = GetGlobalValue(MangledName);
3704*0b57cec5SDimitry Andric 
3705*0b57cec5SDimitry Andric     if (!Func) {
3706*0b57cec5SDimitry Andric       GlobalDecl ExistingDecl = Manglings.lookup(MangledName);
3707*0b57cec5SDimitry Andric       if (ExistingDecl.getDecl() &&
3708*0b57cec5SDimitry Andric           ExistingDecl.getDecl()->getAsFunction()->isDefined()) {
3709*0b57cec5SDimitry Andric         EmitGlobalFunctionDefinition(ExistingDecl, nullptr);
3710*0b57cec5SDimitry Andric         Func = GetGlobalValue(MangledName);
3711*0b57cec5SDimitry Andric       } else {
3712*0b57cec5SDimitry Andric         if (!ExistingDecl.getDecl())
3713*0b57cec5SDimitry Andric           ExistingDecl = GD.getWithMultiVersionIndex(Index);
3714*0b57cec5SDimitry Andric 
3715*0b57cec5SDimitry Andric       Func = GetOrCreateLLVMFunction(
3716*0b57cec5SDimitry Andric           MangledName, DeclTy, ExistingDecl,
3717*0b57cec5SDimitry Andric           /*ForVTable=*/false, /*DontDefer=*/true,
3718*0b57cec5SDimitry Andric           /*IsThunk=*/false, llvm::AttributeList(), ForDefinition);
3719*0b57cec5SDimitry Andric       }
3720*0b57cec5SDimitry Andric     }
3721*0b57cec5SDimitry Andric 
3722*0b57cec5SDimitry Andric     llvm::SmallVector<StringRef, 32> Features;
3723*0b57cec5SDimitry Andric     Target.getCPUSpecificCPUDispatchFeatures(II->getName(), Features);
3724*0b57cec5SDimitry Andric     llvm::transform(Features, Features.begin(),
3725*0b57cec5SDimitry Andric                     [](StringRef Str) { return Str.substr(1); });
3726349cc55cSDimitry Andric     llvm::erase_if(Features, [&Target](StringRef Feat) {
3727*0b57cec5SDimitry Andric       return !Target.validateCpuSupports(Feat);
3728349cc55cSDimitry Andric     });
3729*0b57cec5SDimitry Andric     Options.emplace_back(cast<llvm::Function>(Func), StringRef{}, Features);
3730*0b57cec5SDimitry Andric     ++Index;
3731*0b57cec5SDimitry Andric   }
3732*0b57cec5SDimitry Andric 
3733fe6060f1SDimitry Andric   llvm::stable_sort(
3734*0b57cec5SDimitry Andric       Options, [](const CodeGenFunction::MultiVersionResolverOption &LHS,
3735*0b57cec5SDimitry Andric                   const CodeGenFunction::MultiVersionResolverOption &RHS) {
3736349cc55cSDimitry Andric         return llvm::X86::getCpuSupportsMask(LHS.Conditions.Features) >
3737349cc55cSDimitry Andric                llvm::X86::getCpuSupportsMask(RHS.Conditions.Features);
3738*0b57cec5SDimitry Andric       });
3739*0b57cec5SDimitry Andric 
3740*0b57cec5SDimitry Andric   // If the list contains multiple 'default' versions, such as when it contains
3741*0b57cec5SDimitry Andric   // 'pentium' and 'generic', don't emit the call to the generic one (since we
3742*0b57cec5SDimitry Andric   // always run on at least a 'pentium'). We do this by deleting the 'least
3743*0b57cec5SDimitry Andric   // advanced' (read, lowest mangling letter).
3744*0b57cec5SDimitry Andric   while (Options.size() > 1 &&
3745349cc55cSDimitry Andric          llvm::X86::getCpuSupportsMask(
3746*0b57cec5SDimitry Andric              (Options.end() - 2)->Conditions.Features) == 0) {
3747*0b57cec5SDimitry Andric     StringRef LHSName = (Options.end() - 2)->Function->getName();
3748*0b57cec5SDimitry Andric     StringRef RHSName = (Options.end() - 1)->Function->getName();
3749*0b57cec5SDimitry Andric     if (LHSName.compare(RHSName) < 0)
3750*0b57cec5SDimitry Andric       Options.erase(Options.end() - 2);
3751*0b57cec5SDimitry Andric     else
3752*0b57cec5SDimitry Andric       Options.erase(Options.end() - 1);
3753*0b57cec5SDimitry Andric   }
3754*0b57cec5SDimitry Andric 
3755*0b57cec5SDimitry Andric   CodeGenFunction CGF(*this);
3756*0b57cec5SDimitry Andric   CGF.EmitMultiVersionResolver(ResolverFunc, Options);
3757a7dea167SDimitry Andric 
3758a7dea167SDimitry Andric   if (getTarget().supportsIFunc()) {
375981ad6265SDimitry Andric     llvm::GlobalValue::LinkageTypes Linkage = getMultiversionLinkage(*this, GD);
376081ad6265SDimitry Andric     auto *IFunc = cast<llvm::GlobalValue>(GetOrCreateMultiVersionResolver(GD));
376181ad6265SDimitry Andric 
376281ad6265SDimitry Andric     // Fix up function declarations that were created for cpu_specific before
376381ad6265SDimitry Andric     // cpu_dispatch was known
376481ad6265SDimitry Andric     if (!isa<llvm::GlobalIFunc>(IFunc)) {
376581ad6265SDimitry Andric       assert(cast<llvm::Function>(IFunc)->isDeclaration());
376681ad6265SDimitry Andric       auto *GI = llvm::GlobalIFunc::create(DeclTy, 0, Linkage, "", ResolverFunc,
376781ad6265SDimitry Andric                                            &getModule());
376881ad6265SDimitry Andric       GI->takeName(IFunc);
376981ad6265SDimitry Andric       IFunc->replaceAllUsesWith(GI);
377081ad6265SDimitry Andric       IFunc->eraseFromParent();
377181ad6265SDimitry Andric       IFunc = GI;
377281ad6265SDimitry Andric     }
377381ad6265SDimitry Andric 
3774a7dea167SDimitry Andric     std::string AliasName = getMangledNameImpl(
3775a7dea167SDimitry Andric         *this, GD, FD, /*OmitMultiVersionMangling=*/true);
3776a7dea167SDimitry Andric     llvm::Constant *AliasFunc = GetGlobalValue(AliasName);
3777a7dea167SDimitry Andric     if (!AliasFunc) {
377881ad6265SDimitry Andric       auto *GA = llvm::GlobalAlias::create(DeclTy, 0, Linkage, AliasName, IFunc,
377981ad6265SDimitry Andric                                            &getModule());
3780a7dea167SDimitry Andric       SetCommonAttributes(GD, GA);
3781a7dea167SDimitry Andric     }
3782a7dea167SDimitry Andric   }
3783*0b57cec5SDimitry Andric }
3784*0b57cec5SDimitry Andric 
3785*0b57cec5SDimitry Andric /// If a dispatcher for the specified mangled name is not in the module, create
3786*0b57cec5SDimitry Andric /// and return an llvm Function with the specified type.
378781ad6265SDimitry Andric llvm::Constant *CodeGenModule::GetOrCreateMultiVersionResolver(GlobalDecl GD) {
378881ad6265SDimitry Andric   const auto *FD = cast<FunctionDecl>(GD.getDecl());
378981ad6265SDimitry Andric   assert(FD && "Not a FunctionDecl?");
379081ad6265SDimitry Andric 
3791*0b57cec5SDimitry Andric   std::string MangledName =
3792*0b57cec5SDimitry Andric       getMangledNameImpl(*this, GD, FD, /*OmitMultiVersionMangling=*/true);
3793*0b57cec5SDimitry Andric 
3794*0b57cec5SDimitry Andric   // Holds the name of the resolver, in ifunc mode this is the ifunc (which has
3795*0b57cec5SDimitry Andric   // a separate resolver).
3796*0b57cec5SDimitry Andric   std::string ResolverName = MangledName;
3797*0b57cec5SDimitry Andric   if (getTarget().supportsIFunc())
3798*0b57cec5SDimitry Andric     ResolverName += ".ifunc";
3799*0b57cec5SDimitry Andric   else if (FD->isTargetMultiVersion())
3800*0b57cec5SDimitry Andric     ResolverName += ".resolver";
3801*0b57cec5SDimitry Andric 
380281ad6265SDimitry Andric   // If the resolver has already been created, just return it.
3803*0b57cec5SDimitry Andric   if (llvm::GlobalValue *ResolverGV = GetGlobalValue(ResolverName))
3804*0b57cec5SDimitry Andric     return ResolverGV;
3805*0b57cec5SDimitry Andric 
380681ad6265SDimitry Andric   const CGFunctionInfo &FI = getTypes().arrangeGlobalDeclaration(GD);
380781ad6265SDimitry Andric   llvm::FunctionType *DeclTy = getTypes().GetFunctionType(FI);
3808*0b57cec5SDimitry Andric 
380981ad6265SDimitry Andric   // The resolver needs to be created. For target and target_clones, defer
381081ad6265SDimitry Andric   // creation until the end of the TU.
381181ad6265SDimitry Andric   if (FD->isTargetMultiVersion() || FD->isTargetClonesMultiVersion())
381281ad6265SDimitry Andric     MultiVersionFuncs.push_back(GD);
381381ad6265SDimitry Andric 
381481ad6265SDimitry Andric   // For cpu_specific, don't create an ifunc yet because we don't know if the
381581ad6265SDimitry Andric   // cpu_dispatch will be emitted in this translation unit.
381681ad6265SDimitry Andric   if (getTarget().supportsIFunc() && !FD->isCPUSpecificMultiVersion()) {
3817*0b57cec5SDimitry Andric     llvm::Type *ResolverType = llvm::FunctionType::get(
3818*0b57cec5SDimitry Andric         llvm::PointerType::get(
3819*0b57cec5SDimitry Andric             DeclTy, getContext().getTargetAddressSpace(FD->getType())),
3820*0b57cec5SDimitry Andric         false);
3821*0b57cec5SDimitry Andric     llvm::Constant *Resolver = GetOrCreateLLVMFunction(
3822*0b57cec5SDimitry Andric         MangledName + ".resolver", ResolverType, GlobalDecl{},
3823*0b57cec5SDimitry Andric         /*ForVTable=*/false);
3824349cc55cSDimitry Andric     llvm::GlobalIFunc *GIF =
3825349cc55cSDimitry Andric         llvm::GlobalIFunc::create(DeclTy, 0, getMultiversionLinkage(*this, GD),
3826349cc55cSDimitry Andric                                   "", Resolver, &getModule());
3827*0b57cec5SDimitry Andric     GIF->setName(ResolverName);
3828*0b57cec5SDimitry Andric     SetCommonAttributes(FD, GIF);
3829*0b57cec5SDimitry Andric 
3830*0b57cec5SDimitry Andric     return GIF;
3831*0b57cec5SDimitry Andric   }
3832*0b57cec5SDimitry Andric 
3833*0b57cec5SDimitry Andric   llvm::Constant *Resolver = GetOrCreateLLVMFunction(
3834*0b57cec5SDimitry Andric       ResolverName, DeclTy, GlobalDecl{}, /*ForVTable=*/false);
3835*0b57cec5SDimitry Andric   assert(isa<llvm::GlobalValue>(Resolver) &&
3836*0b57cec5SDimitry Andric          "Resolver should be created for the first time");
3837*0b57cec5SDimitry Andric   SetCommonAttributes(FD, cast<llvm::GlobalValue>(Resolver));
3838*0b57cec5SDimitry Andric   return Resolver;
3839*0b57cec5SDimitry Andric }
3840*0b57cec5SDimitry Andric 
3841*0b57cec5SDimitry Andric /// GetOrCreateLLVMFunction - If the specified mangled name is not in the
3842*0b57cec5SDimitry Andric /// module, create and return an llvm Function with the specified type. If there
3843*0b57cec5SDimitry Andric /// is something in the module with the specified name, return it potentially
3844*0b57cec5SDimitry Andric /// bitcasted to the right type.
3845*0b57cec5SDimitry Andric ///
3846*0b57cec5SDimitry Andric /// If D is non-null, it specifies a decl that correspond to this.  This is used
3847*0b57cec5SDimitry Andric /// to set the attributes on the function when it is first created.
3848*0b57cec5SDimitry Andric llvm::Constant *CodeGenModule::GetOrCreateLLVMFunction(
3849*0b57cec5SDimitry Andric     StringRef MangledName, llvm::Type *Ty, GlobalDecl GD, bool ForVTable,
3850*0b57cec5SDimitry Andric     bool DontDefer, bool IsThunk, llvm::AttributeList ExtraAttrs,
3851*0b57cec5SDimitry Andric     ForDefinition_t IsForDefinition) {
3852*0b57cec5SDimitry Andric   const Decl *D = GD.getDecl();
3853*0b57cec5SDimitry Andric 
3854*0b57cec5SDimitry Andric   // Any attempts to use a MultiVersion function should result in retrieving
3855*0b57cec5SDimitry Andric   // the iFunc instead. Name Mangling will handle the rest of the changes.
3856*0b57cec5SDimitry Andric   if (const FunctionDecl *FD = cast_or_null<FunctionDecl>(D)) {
3857*0b57cec5SDimitry Andric     // For the device mark the function as one that should be emitted.
3858*0b57cec5SDimitry Andric     if (getLangOpts().OpenMPIsDevice && OpenMPRuntime &&
3859*0b57cec5SDimitry Andric         !OpenMPRuntime->markAsGlobalTarget(GD) && FD->isDefined() &&
3860*0b57cec5SDimitry Andric         !DontDefer && !IsForDefinition) {
3861*0b57cec5SDimitry Andric       if (const FunctionDecl *FDDef = FD->getDefinition()) {
3862*0b57cec5SDimitry Andric         GlobalDecl GDDef;
3863*0b57cec5SDimitry Andric         if (const auto *CD = dyn_cast<CXXConstructorDecl>(FDDef))
3864*0b57cec5SDimitry Andric           GDDef = GlobalDecl(CD, GD.getCtorType());
3865*0b57cec5SDimitry Andric         else if (const auto *DD = dyn_cast<CXXDestructorDecl>(FDDef))
3866*0b57cec5SDimitry Andric           GDDef = GlobalDecl(DD, GD.getDtorType());
3867*0b57cec5SDimitry Andric         else
3868*0b57cec5SDimitry Andric           GDDef = GlobalDecl(FDDef);
3869*0b57cec5SDimitry Andric         EmitGlobal(GDDef);
3870*0b57cec5SDimitry Andric       }
3871*0b57cec5SDimitry Andric     }
3872*0b57cec5SDimitry Andric 
3873*0b57cec5SDimitry Andric     if (FD->isMultiVersion()) {
387404eeddc0SDimitry Andric       UpdateMultiVersionNames(GD, FD, MangledName);
3875*0b57cec5SDimitry Andric       if (!IsForDefinition)
387681ad6265SDimitry Andric         return GetOrCreateMultiVersionResolver(GD);
3877*0b57cec5SDimitry Andric     }
3878*0b57cec5SDimitry Andric   }
3879*0b57cec5SDimitry Andric 
3880*0b57cec5SDimitry Andric   // Lookup the entry, lazily creating it if necessary.
3881*0b57cec5SDimitry Andric   llvm::GlobalValue *Entry = GetGlobalValue(MangledName);
3882*0b57cec5SDimitry Andric   if (Entry) {
3883*0b57cec5SDimitry Andric     if (WeakRefReferences.erase(Entry)) {
3884*0b57cec5SDimitry Andric       const FunctionDecl *FD = cast_or_null<FunctionDecl>(D);
3885*0b57cec5SDimitry Andric       if (FD && !FD->hasAttr<WeakAttr>())
3886*0b57cec5SDimitry Andric         Entry->setLinkage(llvm::Function::ExternalLinkage);
3887*0b57cec5SDimitry Andric     }
3888*0b57cec5SDimitry Andric 
3889*0b57cec5SDimitry Andric     // Handle dropped DLL attributes.
389081ad6265SDimitry Andric     if (D && !D->hasAttr<DLLImportAttr>() && !D->hasAttr<DLLExportAttr>() &&
389181ad6265SDimitry Andric         !shouldMapVisibilityToDLLExport(cast_or_null<NamedDecl>(D))) {
3892*0b57cec5SDimitry Andric       Entry->setDLLStorageClass(llvm::GlobalValue::DefaultStorageClass);
3893*0b57cec5SDimitry Andric       setDSOLocal(Entry);
3894*0b57cec5SDimitry Andric     }
3895*0b57cec5SDimitry Andric 
3896*0b57cec5SDimitry Andric     // If there are two attempts to define the same mangled name, issue an
3897*0b57cec5SDimitry Andric     // error.
3898*0b57cec5SDimitry Andric     if (IsForDefinition && !Entry->isDeclaration()) {
3899*0b57cec5SDimitry Andric       GlobalDecl OtherGD;
3900*0b57cec5SDimitry Andric       // Check that GD is not yet in DiagnosedConflictingDefinitions is required
3901*0b57cec5SDimitry Andric       // to make sure that we issue an error only once.
3902*0b57cec5SDimitry Andric       if (lookupRepresentativeDecl(MangledName, OtherGD) &&
3903*0b57cec5SDimitry Andric           (GD.getCanonicalDecl().getDecl() !=
3904*0b57cec5SDimitry Andric            OtherGD.getCanonicalDecl().getDecl()) &&
3905*0b57cec5SDimitry Andric           DiagnosedConflictingDefinitions.insert(GD).second) {
3906*0b57cec5SDimitry Andric         getDiags().Report(D->getLocation(), diag::err_duplicate_mangled_name)
3907*0b57cec5SDimitry Andric             << MangledName;
3908*0b57cec5SDimitry Andric         getDiags().Report(OtherGD.getDecl()->getLocation(),
3909*0b57cec5SDimitry Andric                           diag::note_previous_definition);
3910*0b57cec5SDimitry Andric       }
3911*0b57cec5SDimitry Andric     }
3912*0b57cec5SDimitry Andric 
3913*0b57cec5SDimitry Andric     if ((isa<llvm::Function>(Entry) || isa<llvm::GlobalAlias>(Entry)) &&
39145ffd83dbSDimitry Andric         (Entry->getValueType() == Ty)) {
3915*0b57cec5SDimitry Andric       return Entry;
3916*0b57cec5SDimitry Andric     }
3917*0b57cec5SDimitry Andric 
3918*0b57cec5SDimitry Andric     // Make sure the result is of the correct type.
3919*0b57cec5SDimitry Andric     // (If function is requested for a definition, we always need to create a new
3920*0b57cec5SDimitry Andric     // function, not just return a bitcast.)
3921*0b57cec5SDimitry Andric     if (!IsForDefinition)
3922*0b57cec5SDimitry Andric       return llvm::ConstantExpr::getBitCast(Entry, Ty->getPointerTo());
3923*0b57cec5SDimitry Andric   }
3924*0b57cec5SDimitry Andric 
3925*0b57cec5SDimitry Andric   // This function doesn't have a complete type (for example, the return
3926*0b57cec5SDimitry Andric   // type is an incomplete struct). Use a fake type instead, and make
3927*0b57cec5SDimitry Andric   // sure not to try to set attributes.
3928*0b57cec5SDimitry Andric   bool IsIncompleteFunction = false;
3929*0b57cec5SDimitry Andric 
3930*0b57cec5SDimitry Andric   llvm::FunctionType *FTy;
3931*0b57cec5SDimitry Andric   if (isa<llvm::FunctionType>(Ty)) {
3932*0b57cec5SDimitry Andric     FTy = cast<llvm::FunctionType>(Ty);
3933*0b57cec5SDimitry Andric   } else {
3934*0b57cec5SDimitry Andric     FTy = llvm::FunctionType::get(VoidTy, false);
3935*0b57cec5SDimitry Andric     IsIncompleteFunction = true;
3936*0b57cec5SDimitry Andric   }
3937*0b57cec5SDimitry Andric 
3938*0b57cec5SDimitry Andric   llvm::Function *F =
3939*0b57cec5SDimitry Andric       llvm::Function::Create(FTy, llvm::Function::ExternalLinkage,
3940*0b57cec5SDimitry Andric                              Entry ? StringRef() : MangledName, &getModule());
3941*0b57cec5SDimitry Andric 
3942*0b57cec5SDimitry Andric   // If we already created a function with the same mangled name (but different
3943*0b57cec5SDimitry Andric   // type) before, take its name and add it to the list of functions to be
3944*0b57cec5SDimitry Andric   // replaced with F at the end of CodeGen.
3945*0b57cec5SDimitry Andric   //
3946*0b57cec5SDimitry Andric   // This happens if there is a prototype for a function (e.g. "int f()") and
3947*0b57cec5SDimitry Andric   // then a definition of a different type (e.g. "int f(int x)").
3948*0b57cec5SDimitry Andric   if (Entry) {
3949*0b57cec5SDimitry Andric     F->takeName(Entry);
3950*0b57cec5SDimitry Andric 
3951*0b57cec5SDimitry Andric     // This might be an implementation of a function without a prototype, in
3952*0b57cec5SDimitry Andric     // which case, try to do special replacement of calls which match the new
3953*0b57cec5SDimitry Andric     // prototype.  The really key thing here is that we also potentially drop
3954*0b57cec5SDimitry Andric     // arguments from the call site so as to make a direct call, which makes the
3955*0b57cec5SDimitry Andric     // inliner happier and suppresses a number of optimizer warnings (!) about
3956*0b57cec5SDimitry Andric     // dropping arguments.
3957*0b57cec5SDimitry Andric     if (!Entry->use_empty()) {
3958*0b57cec5SDimitry Andric       ReplaceUsesOfNonProtoTypeWithRealFunction(Entry, F);
3959*0b57cec5SDimitry Andric       Entry->removeDeadConstantUsers();
3960*0b57cec5SDimitry Andric     }
3961*0b57cec5SDimitry Andric 
3962*0b57cec5SDimitry Andric     llvm::Constant *BC = llvm::ConstantExpr::getBitCast(
39635ffd83dbSDimitry Andric         F, Entry->getValueType()->getPointerTo());
3964*0b57cec5SDimitry Andric     addGlobalValReplacement(Entry, BC);
3965*0b57cec5SDimitry Andric   }
3966*0b57cec5SDimitry Andric 
3967*0b57cec5SDimitry Andric   assert(F->getName() == MangledName && "name was uniqued!");
3968*0b57cec5SDimitry Andric   if (D)
3969*0b57cec5SDimitry Andric     SetFunctionAttributes(GD, F, IsIncompleteFunction, IsThunk);
3970349cc55cSDimitry Andric   if (ExtraAttrs.hasFnAttrs()) {
397104eeddc0SDimitry Andric     llvm::AttrBuilder B(F->getContext(), ExtraAttrs.getFnAttrs());
3972349cc55cSDimitry Andric     F->addFnAttrs(B);
3973*0b57cec5SDimitry Andric   }
3974*0b57cec5SDimitry Andric 
3975*0b57cec5SDimitry Andric   if (!DontDefer) {
3976*0b57cec5SDimitry Andric     // All MSVC dtors other than the base dtor are linkonce_odr and delegate to
3977*0b57cec5SDimitry Andric     // each other bottoming out with the base dtor.  Therefore we emit non-base
3978*0b57cec5SDimitry Andric     // dtors on usage, even if there is no dtor definition in the TU.
3979*0b57cec5SDimitry Andric     if (D && isa<CXXDestructorDecl>(D) &&
3980*0b57cec5SDimitry Andric         getCXXABI().useThunkForDtorVariant(cast<CXXDestructorDecl>(D),
3981*0b57cec5SDimitry Andric                                            GD.getDtorType()))
3982*0b57cec5SDimitry Andric       addDeferredDeclToEmit(GD);
3983*0b57cec5SDimitry Andric 
3984*0b57cec5SDimitry Andric     // This is the first use or definition of a mangled name.  If there is a
3985*0b57cec5SDimitry Andric     // deferred decl with this name, remember that we need to emit it at the end
3986*0b57cec5SDimitry Andric     // of the file.
3987*0b57cec5SDimitry Andric     auto DDI = DeferredDecls.find(MangledName);
3988*0b57cec5SDimitry Andric     if (DDI != DeferredDecls.end()) {
3989*0b57cec5SDimitry Andric       // Move the potentially referenced deferred decl to the
3990*0b57cec5SDimitry Andric       // DeferredDeclsToEmit list, and remove it from DeferredDecls (since we
3991*0b57cec5SDimitry Andric       // don't need it anymore).
3992*0b57cec5SDimitry Andric       addDeferredDeclToEmit(DDI->second);
3993*0b57cec5SDimitry Andric       DeferredDecls.erase(DDI);
3994*0b57cec5SDimitry Andric 
3995*0b57cec5SDimitry Andric       // Otherwise, there are cases we have to worry about where we're
3996*0b57cec5SDimitry Andric       // using a declaration for which we must emit a definition but where
3997*0b57cec5SDimitry Andric       // we might not find a top-level definition:
3998*0b57cec5SDimitry Andric       //   - member functions defined inline in their classes
3999*0b57cec5SDimitry Andric       //   - friend functions defined inline in some class
4000*0b57cec5SDimitry Andric       //   - special member functions with implicit definitions
4001*0b57cec5SDimitry Andric       // If we ever change our AST traversal to walk into class methods,
4002*0b57cec5SDimitry Andric       // this will be unnecessary.
4003*0b57cec5SDimitry Andric       //
4004*0b57cec5SDimitry Andric       // We also don't emit a definition for a function if it's going to be an
4005*0b57cec5SDimitry Andric       // entry in a vtable, unless it's already marked as used.
4006*0b57cec5SDimitry Andric     } else if (getLangOpts().CPlusPlus && D) {
4007*0b57cec5SDimitry Andric       // Look for a declaration that's lexically in a record.
4008*0b57cec5SDimitry Andric       for (const auto *FD = cast<FunctionDecl>(D)->getMostRecentDecl(); FD;
4009*0b57cec5SDimitry Andric            FD = FD->getPreviousDecl()) {
4010*0b57cec5SDimitry Andric         if (isa<CXXRecordDecl>(FD->getLexicalDeclContext())) {
4011*0b57cec5SDimitry Andric           if (FD->doesThisDeclarationHaveABody()) {
4012*0b57cec5SDimitry Andric             addDeferredDeclToEmit(GD.getWithDecl(FD));
4013*0b57cec5SDimitry Andric             break;
4014*0b57cec5SDimitry Andric           }
4015*0b57cec5SDimitry Andric         }
4016*0b57cec5SDimitry Andric       }
4017*0b57cec5SDimitry Andric     }
4018*0b57cec5SDimitry Andric   }
4019*0b57cec5SDimitry Andric 
4020*0b57cec5SDimitry Andric   // Make sure the result is of the requested type.
4021*0b57cec5SDimitry Andric   if (!IsIncompleteFunction) {
40225ffd83dbSDimitry Andric     assert(F->getFunctionType() == Ty);
4023*0b57cec5SDimitry Andric     return F;
4024*0b57cec5SDimitry Andric   }
4025*0b57cec5SDimitry Andric 
4026*0b57cec5SDimitry Andric   llvm::Type *PTy = llvm::PointerType::getUnqual(Ty);
4027*0b57cec5SDimitry Andric   return llvm::ConstantExpr::getBitCast(F, PTy);
4028*0b57cec5SDimitry Andric }
4029*0b57cec5SDimitry Andric 
4030*0b57cec5SDimitry Andric /// GetAddrOfFunction - Return the address of the given function.  If Ty is
4031*0b57cec5SDimitry Andric /// non-null, then this function will use the specified type if it has to
4032*0b57cec5SDimitry Andric /// create it (this occurs when we see a definition of the function).
4033*0b57cec5SDimitry Andric llvm::Constant *CodeGenModule::GetAddrOfFunction(GlobalDecl GD,
4034*0b57cec5SDimitry Andric                                                  llvm::Type *Ty,
4035*0b57cec5SDimitry Andric                                                  bool ForVTable,
4036*0b57cec5SDimitry Andric                                                  bool DontDefer,
4037*0b57cec5SDimitry Andric                                               ForDefinition_t IsForDefinition) {
40385ffd83dbSDimitry Andric   assert(!cast<FunctionDecl>(GD.getDecl())->isConsteval() &&
40395ffd83dbSDimitry Andric          "consteval function should never be emitted");
4040*0b57cec5SDimitry Andric   // If there was no specific requested type, just convert it now.
4041*0b57cec5SDimitry Andric   if (!Ty) {
4042*0b57cec5SDimitry Andric     const auto *FD = cast<FunctionDecl>(GD.getDecl());
4043*0b57cec5SDimitry Andric     Ty = getTypes().ConvertType(FD->getType());
4044*0b57cec5SDimitry Andric   }
4045*0b57cec5SDimitry Andric 
4046*0b57cec5SDimitry Andric   // Devirtualized destructor calls may come through here instead of via
4047*0b57cec5SDimitry Andric   // getAddrOfCXXStructor. Make sure we use the MS ABI base destructor instead
4048*0b57cec5SDimitry Andric   // of the complete destructor when necessary.
4049*0b57cec5SDimitry Andric   if (const auto *DD = dyn_cast<CXXDestructorDecl>(GD.getDecl())) {
4050*0b57cec5SDimitry Andric     if (getTarget().getCXXABI().isMicrosoft() &&
4051*0b57cec5SDimitry Andric         GD.getDtorType() == Dtor_Complete &&
4052*0b57cec5SDimitry Andric         DD->getParent()->getNumVBases() == 0)
4053*0b57cec5SDimitry Andric       GD = GlobalDecl(DD, Dtor_Base);
4054*0b57cec5SDimitry Andric   }
4055*0b57cec5SDimitry Andric 
4056*0b57cec5SDimitry Andric   StringRef MangledName = getMangledName(GD);
4057fe6060f1SDimitry Andric   auto *F = GetOrCreateLLVMFunction(MangledName, Ty, GD, ForVTable, DontDefer,
4058*0b57cec5SDimitry Andric                                     /*IsThunk=*/false, llvm::AttributeList(),
4059*0b57cec5SDimitry Andric                                     IsForDefinition);
4060fe6060f1SDimitry Andric   // Returns kernel handle for HIP kernel stub function.
4061fe6060f1SDimitry Andric   if (LangOpts.CUDA && !LangOpts.CUDAIsDevice &&
4062fe6060f1SDimitry Andric       cast<FunctionDecl>(GD.getDecl())->hasAttr<CUDAGlobalAttr>()) {
4063fe6060f1SDimitry Andric     auto *Handle = getCUDARuntime().getKernelHandle(
4064fe6060f1SDimitry Andric         cast<llvm::Function>(F->stripPointerCasts()), GD);
4065fe6060f1SDimitry Andric     if (IsForDefinition)
4066fe6060f1SDimitry Andric       return F;
4067fe6060f1SDimitry Andric     return llvm::ConstantExpr::getBitCast(Handle, Ty->getPointerTo());
4068fe6060f1SDimitry Andric   }
4069fe6060f1SDimitry Andric   return F;
4070*0b57cec5SDimitry Andric }
4071*0b57cec5SDimitry Andric 
40720eae32dcSDimitry Andric llvm::Constant *CodeGenModule::GetFunctionStart(const ValueDecl *Decl) {
40730eae32dcSDimitry Andric   llvm::GlobalValue *F =
40740eae32dcSDimitry Andric       cast<llvm::GlobalValue>(GetAddrOfFunction(Decl)->stripPointerCasts());
40750eae32dcSDimitry Andric 
40760eae32dcSDimitry Andric   return llvm::ConstantExpr::getBitCast(llvm::NoCFIValue::get(F),
40770eae32dcSDimitry Andric                                         llvm::Type::getInt8PtrTy(VMContext));
40780eae32dcSDimitry Andric }
40790eae32dcSDimitry Andric 
4080*0b57cec5SDimitry Andric static const FunctionDecl *
4081*0b57cec5SDimitry Andric GetRuntimeFunctionDecl(ASTContext &C, StringRef Name) {
4082*0b57cec5SDimitry Andric   TranslationUnitDecl *TUDecl = C.getTranslationUnitDecl();
4083*0b57cec5SDimitry Andric   DeclContext *DC = TranslationUnitDecl::castToDeclContext(TUDecl);
4084*0b57cec5SDimitry Andric 
4085*0b57cec5SDimitry Andric   IdentifierInfo &CII = C.Idents.get(Name);
4086fe6060f1SDimitry Andric   for (const auto *Result : DC->lookup(&CII))
4087fe6060f1SDimitry Andric     if (const auto *FD = dyn_cast<FunctionDecl>(Result))
4088*0b57cec5SDimitry Andric       return FD;
4089*0b57cec5SDimitry Andric 
4090*0b57cec5SDimitry Andric   if (!C.getLangOpts().CPlusPlus)
4091*0b57cec5SDimitry Andric     return nullptr;
4092*0b57cec5SDimitry Andric 
4093*0b57cec5SDimitry Andric   // Demangle the premangled name from getTerminateFn()
4094*0b57cec5SDimitry Andric   IdentifierInfo &CXXII =
4095*0b57cec5SDimitry Andric       (Name == "_ZSt9terminatev" || Name == "?terminate@@YAXXZ")
4096*0b57cec5SDimitry Andric           ? C.Idents.get("terminate")
4097*0b57cec5SDimitry Andric           : C.Idents.get(Name);
4098*0b57cec5SDimitry Andric 
4099*0b57cec5SDimitry Andric   for (const auto &N : {"__cxxabiv1", "std"}) {
4100*0b57cec5SDimitry Andric     IdentifierInfo &NS = C.Idents.get(N);
4101fe6060f1SDimitry Andric     for (const auto *Result : DC->lookup(&NS)) {
4102fe6060f1SDimitry Andric       const NamespaceDecl *ND = dyn_cast<NamespaceDecl>(Result);
4103fe6060f1SDimitry Andric       if (auto *LSD = dyn_cast<LinkageSpecDecl>(Result))
4104fe6060f1SDimitry Andric         for (const auto *Result : LSD->lookup(&NS))
4105*0b57cec5SDimitry Andric           if ((ND = dyn_cast<NamespaceDecl>(Result)))
4106*0b57cec5SDimitry Andric             break;
4107*0b57cec5SDimitry Andric 
4108*0b57cec5SDimitry Andric       if (ND)
4109fe6060f1SDimitry Andric         for (const auto *Result : ND->lookup(&CXXII))
4110*0b57cec5SDimitry Andric           if (const auto *FD = dyn_cast<FunctionDecl>(Result))
4111*0b57cec5SDimitry Andric             return FD;
4112*0b57cec5SDimitry Andric     }
4113*0b57cec5SDimitry Andric   }
4114*0b57cec5SDimitry Andric 
4115*0b57cec5SDimitry Andric   return nullptr;
4116*0b57cec5SDimitry Andric }
4117*0b57cec5SDimitry Andric 
4118*0b57cec5SDimitry Andric /// CreateRuntimeFunction - Create a new runtime function with the specified
4119*0b57cec5SDimitry Andric /// type and name.
4120*0b57cec5SDimitry Andric llvm::FunctionCallee
4121*0b57cec5SDimitry Andric CodeGenModule::CreateRuntimeFunction(llvm::FunctionType *FTy, StringRef Name,
4122480093f4SDimitry Andric                                      llvm::AttributeList ExtraAttrs, bool Local,
4123480093f4SDimitry Andric                                      bool AssumeConvergent) {
4124480093f4SDimitry Andric   if (AssumeConvergent) {
4125480093f4SDimitry Andric     ExtraAttrs =
4126349cc55cSDimitry Andric         ExtraAttrs.addFnAttribute(VMContext, llvm::Attribute::Convergent);
4127480093f4SDimitry Andric   }
4128480093f4SDimitry Andric 
4129*0b57cec5SDimitry Andric   llvm::Constant *C =
4130*0b57cec5SDimitry Andric       GetOrCreateLLVMFunction(Name, FTy, GlobalDecl(), /*ForVTable=*/false,
4131*0b57cec5SDimitry Andric                               /*DontDefer=*/false, /*IsThunk=*/false,
4132*0b57cec5SDimitry Andric                               ExtraAttrs);
4133*0b57cec5SDimitry Andric 
4134*0b57cec5SDimitry Andric   if (auto *F = dyn_cast<llvm::Function>(C)) {
4135*0b57cec5SDimitry Andric     if (F->empty()) {
4136*0b57cec5SDimitry Andric       F->setCallingConv(getRuntimeCC());
4137*0b57cec5SDimitry Andric 
4138*0b57cec5SDimitry Andric       // In Windows Itanium environments, try to mark runtime functions
4139*0b57cec5SDimitry Andric       // dllimport. For Mingw and MSVC, don't. We don't really know if the user
4140*0b57cec5SDimitry Andric       // will link their standard library statically or dynamically. Marking
4141*0b57cec5SDimitry Andric       // functions imported when they are not imported can cause linker errors
4142*0b57cec5SDimitry Andric       // and warnings.
4143*0b57cec5SDimitry Andric       if (!Local && getTriple().isWindowsItaniumEnvironment() &&
4144*0b57cec5SDimitry Andric           !getCodeGenOpts().LTOVisibilityPublicStd) {
4145*0b57cec5SDimitry Andric         const FunctionDecl *FD = GetRuntimeFunctionDecl(Context, Name);
4146*0b57cec5SDimitry Andric         if (!FD || FD->hasAttr<DLLImportAttr>()) {
4147*0b57cec5SDimitry Andric           F->setDLLStorageClass(llvm::GlobalValue::DLLImportStorageClass);
4148*0b57cec5SDimitry Andric           F->setLinkage(llvm::GlobalValue::ExternalLinkage);
4149*0b57cec5SDimitry Andric         }
4150*0b57cec5SDimitry Andric       }
4151*0b57cec5SDimitry Andric       setDSOLocal(F);
4152*0b57cec5SDimitry Andric     }
4153*0b57cec5SDimitry Andric   }
4154*0b57cec5SDimitry Andric 
4155*0b57cec5SDimitry Andric   return {FTy, C};
4156*0b57cec5SDimitry Andric }
4157*0b57cec5SDimitry Andric 
4158*0b57cec5SDimitry Andric /// isTypeConstant - Determine whether an object of this type can be emitted
4159*0b57cec5SDimitry Andric /// as a constant.
4160*0b57cec5SDimitry Andric ///
4161*0b57cec5SDimitry Andric /// If ExcludeCtor is true, the duration when the object's constructor runs
4162*0b57cec5SDimitry Andric /// will not be considered. The caller will need to verify that the object is
4163*0b57cec5SDimitry Andric /// not written to during its construction.
4164*0b57cec5SDimitry Andric bool CodeGenModule::isTypeConstant(QualType Ty, bool ExcludeCtor) {
4165*0b57cec5SDimitry Andric   if (!Ty.isConstant(Context) && !Ty->isReferenceType())
4166*0b57cec5SDimitry Andric     return false;
4167*0b57cec5SDimitry Andric 
4168*0b57cec5SDimitry Andric   if (Context.getLangOpts().CPlusPlus) {
4169*0b57cec5SDimitry Andric     if (const CXXRecordDecl *Record
4170*0b57cec5SDimitry Andric           = Context.getBaseElementType(Ty)->getAsCXXRecordDecl())
4171*0b57cec5SDimitry Andric       return ExcludeCtor && !Record->hasMutableFields() &&
4172*0b57cec5SDimitry Andric              Record->hasTrivialDestructor();
4173*0b57cec5SDimitry Andric   }
4174*0b57cec5SDimitry Andric 
4175*0b57cec5SDimitry Andric   return true;
4176*0b57cec5SDimitry Andric }
4177*0b57cec5SDimitry Andric 
4178*0b57cec5SDimitry Andric /// GetOrCreateLLVMGlobal - If the specified mangled name is not in the module,
4179fe6060f1SDimitry Andric /// create and return an llvm GlobalVariable with the specified type and address
4180fe6060f1SDimitry Andric /// space. If there is something in the module with the specified name, return
4181fe6060f1SDimitry Andric /// it potentially bitcasted to the right type.
4182*0b57cec5SDimitry Andric ///
4183*0b57cec5SDimitry Andric /// If D is non-null, it specifies a decl that correspond to this.  This is used
4184*0b57cec5SDimitry Andric /// to set the attributes on the global when it is first created.
4185*0b57cec5SDimitry Andric ///
4186*0b57cec5SDimitry Andric /// If IsForDefinition is true, it is guaranteed that an actual global with
4187*0b57cec5SDimitry Andric /// type Ty will be returned, not conversion of a variable with the same
4188*0b57cec5SDimitry Andric /// mangled name but some other type.
4189*0b57cec5SDimitry Andric llvm::Constant *
4190fe6060f1SDimitry Andric CodeGenModule::GetOrCreateLLVMGlobal(StringRef MangledName, llvm::Type *Ty,
4191349cc55cSDimitry Andric                                      LangAS AddrSpace, const VarDecl *D,
4192*0b57cec5SDimitry Andric                                      ForDefinition_t IsForDefinition) {
4193*0b57cec5SDimitry Andric   // Lookup the entry, lazily creating it if necessary.
4194*0b57cec5SDimitry Andric   llvm::GlobalValue *Entry = GetGlobalValue(MangledName);
4195349cc55cSDimitry Andric   unsigned TargetAS = getContext().getTargetAddressSpace(AddrSpace);
4196*0b57cec5SDimitry Andric   if (Entry) {
4197*0b57cec5SDimitry Andric     if (WeakRefReferences.erase(Entry)) {
4198*0b57cec5SDimitry Andric       if (D && !D->hasAttr<WeakAttr>())
4199*0b57cec5SDimitry Andric         Entry->setLinkage(llvm::Function::ExternalLinkage);
4200*0b57cec5SDimitry Andric     }
4201*0b57cec5SDimitry Andric 
4202*0b57cec5SDimitry Andric     // Handle dropped DLL attributes.
420381ad6265SDimitry Andric     if (D && !D->hasAttr<DLLImportAttr>() && !D->hasAttr<DLLExportAttr>() &&
420481ad6265SDimitry Andric         !shouldMapVisibilityToDLLExport(D))
4205*0b57cec5SDimitry Andric       Entry->setDLLStorageClass(llvm::GlobalValue::DefaultStorageClass);
4206*0b57cec5SDimitry Andric 
4207*0b57cec5SDimitry Andric     if (LangOpts.OpenMP && !LangOpts.OpenMPSimd && D)
4208*0b57cec5SDimitry Andric       getOpenMPRuntime().registerTargetGlobalVariable(D, Entry);
4209*0b57cec5SDimitry Andric 
4210349cc55cSDimitry Andric     if (Entry->getValueType() == Ty && Entry->getAddressSpace() == TargetAS)
4211*0b57cec5SDimitry Andric       return Entry;
4212*0b57cec5SDimitry Andric 
4213*0b57cec5SDimitry Andric     // If there are two attempts to define the same mangled name, issue an
4214*0b57cec5SDimitry Andric     // error.
4215*0b57cec5SDimitry Andric     if (IsForDefinition && !Entry->isDeclaration()) {
4216*0b57cec5SDimitry Andric       GlobalDecl OtherGD;
4217*0b57cec5SDimitry Andric       const VarDecl *OtherD;
4218*0b57cec5SDimitry Andric 
4219*0b57cec5SDimitry Andric       // Check that D is not yet in DiagnosedConflictingDefinitions is required
4220*0b57cec5SDimitry Andric       // to make sure that we issue an error only once.
4221*0b57cec5SDimitry Andric       if (D && lookupRepresentativeDecl(MangledName, OtherGD) &&
4222*0b57cec5SDimitry Andric           (D->getCanonicalDecl() != OtherGD.getCanonicalDecl().getDecl()) &&
4223*0b57cec5SDimitry Andric           (OtherD = dyn_cast<VarDecl>(OtherGD.getDecl())) &&
4224*0b57cec5SDimitry Andric           OtherD->hasInit() &&
4225*0b57cec5SDimitry Andric           DiagnosedConflictingDefinitions.insert(D).second) {
4226*0b57cec5SDimitry Andric         getDiags().Report(D->getLocation(), diag::err_duplicate_mangled_name)
4227*0b57cec5SDimitry Andric             << MangledName;
4228*0b57cec5SDimitry Andric         getDiags().Report(OtherGD.getDecl()->getLocation(),
4229*0b57cec5SDimitry Andric                           diag::note_previous_definition);
4230*0b57cec5SDimitry Andric       }
4231*0b57cec5SDimitry Andric     }
4232*0b57cec5SDimitry Andric 
4233*0b57cec5SDimitry Andric     // Make sure the result is of the correct type.
4234349cc55cSDimitry Andric     if (Entry->getType()->getAddressSpace() != TargetAS) {
4235fe6060f1SDimitry Andric       return llvm::ConstantExpr::getAddrSpaceCast(Entry,
4236349cc55cSDimitry Andric                                                   Ty->getPointerTo(TargetAS));
4237fe6060f1SDimitry Andric     }
4238*0b57cec5SDimitry Andric 
4239*0b57cec5SDimitry Andric     // (If global is requested for a definition, we always need to create a new
4240*0b57cec5SDimitry Andric     // global, not just return a bitcast.)
4241*0b57cec5SDimitry Andric     if (!IsForDefinition)
4242349cc55cSDimitry Andric       return llvm::ConstantExpr::getBitCast(Entry, Ty->getPointerTo(TargetAS));
4243*0b57cec5SDimitry Andric   }
4244*0b57cec5SDimitry Andric 
4245fe6060f1SDimitry Andric   auto DAddrSpace = GetGlobalVarAddressSpace(D);
4246*0b57cec5SDimitry Andric 
4247*0b57cec5SDimitry Andric   auto *GV = new llvm::GlobalVariable(
4248fe6060f1SDimitry Andric       getModule(), Ty, false, llvm::GlobalValue::ExternalLinkage, nullptr,
4249fe6060f1SDimitry Andric       MangledName, nullptr, llvm::GlobalVariable::NotThreadLocal,
4250349cc55cSDimitry Andric       getContext().getTargetAddressSpace(DAddrSpace));
4251*0b57cec5SDimitry Andric 
4252*0b57cec5SDimitry Andric   // If we already created a global with the same mangled name (but different
4253*0b57cec5SDimitry Andric   // type) before, take its name and remove it from its parent.
4254*0b57cec5SDimitry Andric   if (Entry) {
4255*0b57cec5SDimitry Andric     GV->takeName(Entry);
4256*0b57cec5SDimitry Andric 
4257*0b57cec5SDimitry Andric     if (!Entry->use_empty()) {
4258*0b57cec5SDimitry Andric       llvm::Constant *NewPtrForOldDecl =
4259*0b57cec5SDimitry Andric           llvm::ConstantExpr::getBitCast(GV, Entry->getType());
4260*0b57cec5SDimitry Andric       Entry->replaceAllUsesWith(NewPtrForOldDecl);
4261*0b57cec5SDimitry Andric     }
4262*0b57cec5SDimitry Andric 
4263*0b57cec5SDimitry Andric     Entry->eraseFromParent();
4264*0b57cec5SDimitry Andric   }
4265*0b57cec5SDimitry Andric 
4266*0b57cec5SDimitry Andric   // This is the first use or definition of a mangled name.  If there is a
4267*0b57cec5SDimitry Andric   // deferred decl with this name, remember that we need to emit it at the end
4268*0b57cec5SDimitry Andric   // of the file.
4269*0b57cec5SDimitry Andric   auto DDI = DeferredDecls.find(MangledName);
4270*0b57cec5SDimitry Andric   if (DDI != DeferredDecls.end()) {
4271*0b57cec5SDimitry Andric     // Move the potentially referenced deferred decl to the DeferredDeclsToEmit
4272*0b57cec5SDimitry Andric     // list, and remove it from DeferredDecls (since we don't need it anymore).
4273*0b57cec5SDimitry Andric     addDeferredDeclToEmit(DDI->second);
4274*0b57cec5SDimitry Andric     DeferredDecls.erase(DDI);
4275*0b57cec5SDimitry Andric   }
4276*0b57cec5SDimitry Andric 
4277*0b57cec5SDimitry Andric   // Handle things which are present even on external declarations.
4278*0b57cec5SDimitry Andric   if (D) {
4279*0b57cec5SDimitry Andric     if (LangOpts.OpenMP && !LangOpts.OpenMPSimd)
4280*0b57cec5SDimitry Andric       getOpenMPRuntime().registerTargetGlobalVariable(D, GV);
4281*0b57cec5SDimitry Andric 
4282*0b57cec5SDimitry Andric     // FIXME: This code is overly simple and should be merged with other global
4283*0b57cec5SDimitry Andric     // handling.
4284*0b57cec5SDimitry Andric     GV->setConstant(isTypeConstant(D->getType(), false));
4285*0b57cec5SDimitry Andric 
4286a7dea167SDimitry Andric     GV->setAlignment(getContext().getDeclAlign(D).getAsAlign());
4287*0b57cec5SDimitry Andric 
4288*0b57cec5SDimitry Andric     setLinkageForGV(GV, D);
4289*0b57cec5SDimitry Andric 
4290*0b57cec5SDimitry Andric     if (D->getTLSKind()) {
4291*0b57cec5SDimitry Andric       if (D->getTLSKind() == VarDecl::TLS_Dynamic)
4292*0b57cec5SDimitry Andric         CXXThreadLocals.push_back(D);
4293*0b57cec5SDimitry Andric       setTLSMode(GV, *D);
4294*0b57cec5SDimitry Andric     }
4295*0b57cec5SDimitry Andric 
4296*0b57cec5SDimitry Andric     setGVProperties(GV, D);
4297*0b57cec5SDimitry Andric 
4298*0b57cec5SDimitry Andric     // If required by the ABI, treat declarations of static data members with
4299*0b57cec5SDimitry Andric     // inline initializers as definitions.
4300*0b57cec5SDimitry Andric     if (getContext().isMSStaticDataMemberInlineDefinition(D)) {
4301*0b57cec5SDimitry Andric       EmitGlobalVarDefinition(D);
4302*0b57cec5SDimitry Andric     }
4303*0b57cec5SDimitry Andric 
4304*0b57cec5SDimitry Andric     // Emit section information for extern variables.
4305*0b57cec5SDimitry Andric     if (D->hasExternalStorage()) {
4306*0b57cec5SDimitry Andric       if (const SectionAttr *SA = D->getAttr<SectionAttr>())
4307*0b57cec5SDimitry Andric         GV->setSection(SA->getName());
4308*0b57cec5SDimitry Andric     }
4309*0b57cec5SDimitry Andric 
4310*0b57cec5SDimitry Andric     // Handle XCore specific ABI requirements.
4311*0b57cec5SDimitry Andric     if (getTriple().getArch() == llvm::Triple::xcore &&
4312*0b57cec5SDimitry Andric         D->getLanguageLinkage() == CLanguageLinkage &&
4313*0b57cec5SDimitry Andric         D->getType().isConstant(Context) &&
4314*0b57cec5SDimitry Andric         isExternallyVisible(D->getLinkageAndVisibility().getLinkage()))
4315*0b57cec5SDimitry Andric       GV->setSection(".cp.rodata");
4316*0b57cec5SDimitry Andric 
4317*0b57cec5SDimitry Andric     // Check if we a have a const declaration with an initializer, we may be
4318*0b57cec5SDimitry Andric     // able to emit it as available_externally to expose it's value to the
4319*0b57cec5SDimitry Andric     // optimizer.
4320*0b57cec5SDimitry Andric     if (Context.getLangOpts().CPlusPlus && GV->hasExternalLinkage() &&
4321*0b57cec5SDimitry Andric         D->getType().isConstQualified() && !GV->hasInitializer() &&
4322*0b57cec5SDimitry Andric         !D->hasDefinition() && D->hasInit() && !D->hasAttr<DLLImportAttr>()) {
4323*0b57cec5SDimitry Andric       const auto *Record =
4324*0b57cec5SDimitry Andric           Context.getBaseElementType(D->getType())->getAsCXXRecordDecl();
4325*0b57cec5SDimitry Andric       bool HasMutableFields = Record && Record->hasMutableFields();
4326*0b57cec5SDimitry Andric       if (!HasMutableFields) {
4327*0b57cec5SDimitry Andric         const VarDecl *InitDecl;
4328*0b57cec5SDimitry Andric         const Expr *InitExpr = D->getAnyInitializer(InitDecl);
4329*0b57cec5SDimitry Andric         if (InitExpr) {
4330*0b57cec5SDimitry Andric           ConstantEmitter emitter(*this);
4331*0b57cec5SDimitry Andric           llvm::Constant *Init = emitter.tryEmitForInitializer(*InitDecl);
4332*0b57cec5SDimitry Andric           if (Init) {
4333*0b57cec5SDimitry Andric             auto *InitType = Init->getType();
43345ffd83dbSDimitry Andric             if (GV->getValueType() != InitType) {
4335*0b57cec5SDimitry Andric               // The type of the initializer does not match the definition.
4336*0b57cec5SDimitry Andric               // This happens when an initializer has a different type from
4337*0b57cec5SDimitry Andric               // the type of the global (because of padding at the end of a
4338*0b57cec5SDimitry Andric               // structure for instance).
4339*0b57cec5SDimitry Andric               GV->setName(StringRef());
4340*0b57cec5SDimitry Andric               // Make a new global with the correct type, this is now guaranteed
4341*0b57cec5SDimitry Andric               // to work.
4342*0b57cec5SDimitry Andric               auto *NewGV = cast<llvm::GlobalVariable>(
4343a7dea167SDimitry Andric                   GetAddrOfGlobalVar(D, InitType, IsForDefinition)
4344a7dea167SDimitry Andric                       ->stripPointerCasts());
4345*0b57cec5SDimitry Andric 
4346*0b57cec5SDimitry Andric               // Erase the old global, since it is no longer used.
4347*0b57cec5SDimitry Andric               GV->eraseFromParent();
4348*0b57cec5SDimitry Andric               GV = NewGV;
4349*0b57cec5SDimitry Andric             } else {
4350*0b57cec5SDimitry Andric               GV->setInitializer(Init);
4351*0b57cec5SDimitry Andric               GV->setConstant(true);
4352*0b57cec5SDimitry Andric               GV->setLinkage(llvm::GlobalValue::AvailableExternallyLinkage);
4353*0b57cec5SDimitry Andric             }
4354*0b57cec5SDimitry Andric             emitter.finalize(GV);
4355*0b57cec5SDimitry Andric           }
4356*0b57cec5SDimitry Andric         }
4357*0b57cec5SDimitry Andric       }
4358*0b57cec5SDimitry Andric     }
4359*0b57cec5SDimitry Andric   }
4360*0b57cec5SDimitry Andric 
4361fe6060f1SDimitry Andric   if (GV->isDeclaration()) {
4362480093f4SDimitry Andric     getTargetCodeGenInfo().setTargetAttributes(D, GV, *this);
4363fe6060f1SDimitry Andric     // External HIP managed variables needed to be recorded for transformation
4364fe6060f1SDimitry Andric     // in both device and host compilations.
4365fe6060f1SDimitry Andric     if (getLangOpts().CUDA && D && D->hasAttr<HIPManagedAttr>() &&
4366fe6060f1SDimitry Andric         D->hasExternalStorage())
4367fe6060f1SDimitry Andric       getCUDARuntime().handleVarRegistration(D, *GV);
4368fe6060f1SDimitry Andric   }
4369480093f4SDimitry Andric 
4370753f127fSDimitry Andric   if (D)
4371753f127fSDimitry Andric     SanitizerMD->reportGlobal(GV, *D);
4372753f127fSDimitry Andric 
4373*0b57cec5SDimitry Andric   LangAS ExpectedAS =
4374*0b57cec5SDimitry Andric       D ? D->getType().getAddressSpace()
4375*0b57cec5SDimitry Andric         : (LangOpts.OpenCL ? LangAS::opencl_global : LangAS::Default);
4376349cc55cSDimitry Andric   assert(getContext().getTargetAddressSpace(ExpectedAS) == TargetAS);
4377fe6060f1SDimitry Andric   if (DAddrSpace != ExpectedAS) {
4378fe6060f1SDimitry Andric     return getTargetCodeGenInfo().performAddrSpaceCast(
4379349cc55cSDimitry Andric         *this, GV, DAddrSpace, ExpectedAS, Ty->getPointerTo(TargetAS));
4380fe6060f1SDimitry Andric   }
4381*0b57cec5SDimitry Andric 
4382*0b57cec5SDimitry Andric   return GV;
4383*0b57cec5SDimitry Andric }
4384*0b57cec5SDimitry Andric 
4385*0b57cec5SDimitry Andric llvm::Constant *
43865ffd83dbSDimitry Andric CodeGenModule::GetAddrOfGlobal(GlobalDecl GD, ForDefinition_t IsForDefinition) {
4387*0b57cec5SDimitry Andric   const Decl *D = GD.getDecl();
43885ffd83dbSDimitry Andric 
4389*0b57cec5SDimitry Andric   if (isa<CXXConstructorDecl>(D) || isa<CXXDestructorDecl>(D))
4390*0b57cec5SDimitry Andric     return getAddrOfCXXStructor(GD, /*FnInfo=*/nullptr, /*FnType=*/nullptr,
4391*0b57cec5SDimitry Andric                                 /*DontDefer=*/false, IsForDefinition);
43925ffd83dbSDimitry Andric 
43935ffd83dbSDimitry Andric   if (isa<CXXMethodDecl>(D)) {
43945ffd83dbSDimitry Andric     auto FInfo =
43955ffd83dbSDimitry Andric         &getTypes().arrangeCXXMethodDeclaration(cast<CXXMethodDecl>(D));
4396*0b57cec5SDimitry Andric     auto Ty = getTypes().GetFunctionType(*FInfo);
4397*0b57cec5SDimitry Andric     return GetAddrOfFunction(GD, Ty, /*ForVTable=*/false, /*DontDefer=*/false,
4398*0b57cec5SDimitry Andric                              IsForDefinition);
43995ffd83dbSDimitry Andric   }
44005ffd83dbSDimitry Andric 
44015ffd83dbSDimitry Andric   if (isa<FunctionDecl>(D)) {
4402*0b57cec5SDimitry Andric     const CGFunctionInfo &FI = getTypes().arrangeGlobalDeclaration(GD);
4403*0b57cec5SDimitry Andric     llvm::FunctionType *Ty = getTypes().GetFunctionType(FI);
4404*0b57cec5SDimitry Andric     return GetAddrOfFunction(GD, Ty, /*ForVTable=*/false, /*DontDefer=*/false,
4405*0b57cec5SDimitry Andric                              IsForDefinition);
44065ffd83dbSDimitry Andric   }
44075ffd83dbSDimitry Andric 
44085ffd83dbSDimitry Andric   return GetAddrOfGlobalVar(cast<VarDecl>(D), /*Ty=*/nullptr, IsForDefinition);
4409*0b57cec5SDimitry Andric }
4410*0b57cec5SDimitry Andric 
4411*0b57cec5SDimitry Andric llvm::GlobalVariable *CodeGenModule::CreateOrReplaceCXXRuntimeVariable(
4412*0b57cec5SDimitry Andric     StringRef Name, llvm::Type *Ty, llvm::GlobalValue::LinkageTypes Linkage,
4413*0b57cec5SDimitry Andric     unsigned Alignment) {
4414*0b57cec5SDimitry Andric   llvm::GlobalVariable *GV = getModule().getNamedGlobal(Name);
4415*0b57cec5SDimitry Andric   llvm::GlobalVariable *OldGV = nullptr;
4416*0b57cec5SDimitry Andric 
4417*0b57cec5SDimitry Andric   if (GV) {
4418*0b57cec5SDimitry Andric     // Check if the variable has the right type.
44195ffd83dbSDimitry Andric     if (GV->getValueType() == Ty)
4420*0b57cec5SDimitry Andric       return GV;
4421*0b57cec5SDimitry Andric 
4422*0b57cec5SDimitry Andric     // Because C++ name mangling, the only way we can end up with an already
4423*0b57cec5SDimitry Andric     // existing global with the same name is if it has been declared extern "C".
4424*0b57cec5SDimitry Andric     assert(GV->isDeclaration() && "Declaration has wrong type!");
4425*0b57cec5SDimitry Andric     OldGV = GV;
4426*0b57cec5SDimitry Andric   }
4427*0b57cec5SDimitry Andric 
4428*0b57cec5SDimitry Andric   // Create a new variable.
4429*0b57cec5SDimitry Andric   GV = new llvm::GlobalVariable(getModule(), Ty, /*isConstant=*/true,
4430*0b57cec5SDimitry Andric                                 Linkage, nullptr, Name);
4431*0b57cec5SDimitry Andric 
4432*0b57cec5SDimitry Andric   if (OldGV) {
4433*0b57cec5SDimitry Andric     // Replace occurrences of the old variable if needed.
4434*0b57cec5SDimitry Andric     GV->takeName(OldGV);
4435*0b57cec5SDimitry Andric 
4436*0b57cec5SDimitry Andric     if (!OldGV->use_empty()) {
4437*0b57cec5SDimitry Andric       llvm::Constant *NewPtrForOldDecl =
4438*0b57cec5SDimitry Andric       llvm::ConstantExpr::getBitCast(GV, OldGV->getType());
4439*0b57cec5SDimitry Andric       OldGV->replaceAllUsesWith(NewPtrForOldDecl);
4440*0b57cec5SDimitry Andric     }
4441*0b57cec5SDimitry Andric 
4442*0b57cec5SDimitry Andric     OldGV->eraseFromParent();
4443*0b57cec5SDimitry Andric   }
4444*0b57cec5SDimitry Andric 
4445*0b57cec5SDimitry Andric   if (supportsCOMDAT() && GV->isWeakForLinker() &&
4446*0b57cec5SDimitry Andric       !GV->hasAvailableExternallyLinkage())
4447*0b57cec5SDimitry Andric     GV->setComdat(TheModule.getOrInsertComdat(GV->getName()));
4448*0b57cec5SDimitry Andric 
4449a7dea167SDimitry Andric   GV->setAlignment(llvm::MaybeAlign(Alignment));
4450*0b57cec5SDimitry Andric 
4451*0b57cec5SDimitry Andric   return GV;
4452*0b57cec5SDimitry Andric }
4453*0b57cec5SDimitry Andric 
4454*0b57cec5SDimitry Andric /// GetAddrOfGlobalVar - Return the llvm::Constant for the address of the
4455*0b57cec5SDimitry Andric /// given global variable.  If Ty is non-null and if the global doesn't exist,
4456*0b57cec5SDimitry Andric /// then it will be created with the specified type instead of whatever the
4457*0b57cec5SDimitry Andric /// normal requested type would be. If IsForDefinition is true, it is guaranteed
4458*0b57cec5SDimitry Andric /// that an actual global with type Ty will be returned, not conversion of a
4459*0b57cec5SDimitry Andric /// variable with the same mangled name but some other type.
4460*0b57cec5SDimitry Andric llvm::Constant *CodeGenModule::GetAddrOfGlobalVar(const VarDecl *D,
4461*0b57cec5SDimitry Andric                                                   llvm::Type *Ty,
4462*0b57cec5SDimitry Andric                                            ForDefinition_t IsForDefinition) {
4463*0b57cec5SDimitry Andric   assert(D->hasGlobalStorage() && "Not a global variable");
4464*0b57cec5SDimitry Andric   QualType ASTTy = D->getType();
4465*0b57cec5SDimitry Andric   if (!Ty)
4466*0b57cec5SDimitry Andric     Ty = getTypes().ConvertTypeForMem(ASTTy);
4467*0b57cec5SDimitry Andric 
4468*0b57cec5SDimitry Andric   StringRef MangledName = getMangledName(D);
4469349cc55cSDimitry Andric   return GetOrCreateLLVMGlobal(MangledName, Ty, ASTTy.getAddressSpace(), D,
4470fe6060f1SDimitry Andric                                IsForDefinition);
4471*0b57cec5SDimitry Andric }
4472*0b57cec5SDimitry Andric 
4473*0b57cec5SDimitry Andric /// CreateRuntimeVariable - Create a new runtime global variable with the
4474*0b57cec5SDimitry Andric /// specified type and name.
4475*0b57cec5SDimitry Andric llvm::Constant *
4476*0b57cec5SDimitry Andric CodeGenModule::CreateRuntimeVariable(llvm::Type *Ty,
4477*0b57cec5SDimitry Andric                                      StringRef Name) {
4478349cc55cSDimitry Andric   LangAS AddrSpace = getContext().getLangOpts().OpenCL ? LangAS::opencl_global
4479349cc55cSDimitry Andric                                                        : LangAS::Default;
4480fe6060f1SDimitry Andric   auto *Ret = GetOrCreateLLVMGlobal(Name, Ty, AddrSpace, nullptr);
4481*0b57cec5SDimitry Andric   setDSOLocal(cast<llvm::GlobalValue>(Ret->stripPointerCasts()));
4482*0b57cec5SDimitry Andric   return Ret;
4483*0b57cec5SDimitry Andric }
4484*0b57cec5SDimitry Andric 
4485*0b57cec5SDimitry Andric void CodeGenModule::EmitTentativeDefinition(const VarDecl *D) {
4486*0b57cec5SDimitry Andric   assert(!D->getInit() && "Cannot emit definite definitions here!");
4487*0b57cec5SDimitry Andric 
4488*0b57cec5SDimitry Andric   StringRef MangledName = getMangledName(D);
4489*0b57cec5SDimitry Andric   llvm::GlobalValue *GV = GetGlobalValue(MangledName);
4490*0b57cec5SDimitry Andric 
4491*0b57cec5SDimitry Andric   // We already have a definition, not declaration, with the same mangled name.
4492*0b57cec5SDimitry Andric   // Emitting of declaration is not required (and actually overwrites emitted
4493*0b57cec5SDimitry Andric   // definition).
4494*0b57cec5SDimitry Andric   if (GV && !GV->isDeclaration())
4495*0b57cec5SDimitry Andric     return;
4496*0b57cec5SDimitry Andric 
4497*0b57cec5SDimitry Andric   // If we have not seen a reference to this variable yet, place it into the
4498*0b57cec5SDimitry Andric   // deferred declarations table to be emitted if needed later.
4499*0b57cec5SDimitry Andric   if (!MustBeEmitted(D) && !GV) {
4500*0b57cec5SDimitry Andric       DeferredDecls[MangledName] = D;
4501*0b57cec5SDimitry Andric       return;
4502*0b57cec5SDimitry Andric   }
4503*0b57cec5SDimitry Andric 
4504*0b57cec5SDimitry Andric   // The tentative definition is the only definition.
4505*0b57cec5SDimitry Andric   EmitGlobalVarDefinition(D);
4506*0b57cec5SDimitry Andric }
4507*0b57cec5SDimitry Andric 
4508480093f4SDimitry Andric void CodeGenModule::EmitExternalDeclaration(const VarDecl *D) {
4509480093f4SDimitry Andric   EmitExternalVarDeclaration(D);
4510480093f4SDimitry Andric }
4511480093f4SDimitry Andric 
4512*0b57cec5SDimitry Andric CharUnits CodeGenModule::GetTargetTypeStoreSize(llvm::Type *Ty) const {
4513*0b57cec5SDimitry Andric   return Context.toCharUnitsFromBits(
4514*0b57cec5SDimitry Andric       getDataLayout().getTypeStoreSizeInBits(Ty));
4515*0b57cec5SDimitry Andric }
4516*0b57cec5SDimitry Andric 
4517*0b57cec5SDimitry Andric LangAS CodeGenModule::GetGlobalVarAddressSpace(const VarDecl *D) {
4518*0b57cec5SDimitry Andric   if (LangOpts.OpenCL) {
4519349cc55cSDimitry Andric     LangAS AS = D ? D->getType().getAddressSpace() : LangAS::opencl_global;
4520349cc55cSDimitry Andric     assert(AS == LangAS::opencl_global ||
4521349cc55cSDimitry Andric            AS == LangAS::opencl_global_device ||
4522349cc55cSDimitry Andric            AS == LangAS::opencl_global_host ||
4523349cc55cSDimitry Andric            AS == LangAS::opencl_constant ||
4524349cc55cSDimitry Andric            AS == LangAS::opencl_local ||
4525349cc55cSDimitry Andric            AS >= LangAS::FirstTargetAddressSpace);
4526349cc55cSDimitry Andric     return AS;
4527*0b57cec5SDimitry Andric   }
4528*0b57cec5SDimitry Andric 
4529fe6060f1SDimitry Andric   if (LangOpts.SYCLIsDevice &&
4530fe6060f1SDimitry Andric       (!D || D->getType().getAddressSpace() == LangAS::Default))
4531fe6060f1SDimitry Andric     return LangAS::sycl_global;
4532fe6060f1SDimitry Andric 
4533*0b57cec5SDimitry Andric   if (LangOpts.CUDA && LangOpts.CUDAIsDevice) {
4534*0b57cec5SDimitry Andric     if (D && D->hasAttr<CUDAConstantAttr>())
4535*0b57cec5SDimitry Andric       return LangAS::cuda_constant;
4536*0b57cec5SDimitry Andric     else if (D && D->hasAttr<CUDASharedAttr>())
4537*0b57cec5SDimitry Andric       return LangAS::cuda_shared;
4538*0b57cec5SDimitry Andric     else if (D && D->hasAttr<CUDADeviceAttr>())
4539*0b57cec5SDimitry Andric       return LangAS::cuda_device;
4540*0b57cec5SDimitry Andric     else if (D && D->getType().isConstQualified())
4541*0b57cec5SDimitry Andric       return LangAS::cuda_constant;
4542*0b57cec5SDimitry Andric     else
4543*0b57cec5SDimitry Andric       return LangAS::cuda_device;
4544*0b57cec5SDimitry Andric   }
4545*0b57cec5SDimitry Andric 
4546*0b57cec5SDimitry Andric   if (LangOpts.OpenMP) {
4547*0b57cec5SDimitry Andric     LangAS AS;
4548*0b57cec5SDimitry Andric     if (OpenMPRuntime->hasAllocateAttributeForGlobalVar(D, AS))
4549*0b57cec5SDimitry Andric       return AS;
4550*0b57cec5SDimitry Andric   }
4551*0b57cec5SDimitry Andric   return getTargetCodeGenInfo().getGlobalVarAddressSpace(*this, D);
4552*0b57cec5SDimitry Andric }
4553*0b57cec5SDimitry Andric 
4554fe6060f1SDimitry Andric LangAS CodeGenModule::GetGlobalConstantAddressSpace() const {
4555*0b57cec5SDimitry Andric   // OpenCL v1.2 s6.5.3: a string literal is in the constant address space.
4556*0b57cec5SDimitry Andric   if (LangOpts.OpenCL)
4557*0b57cec5SDimitry Andric     return LangAS::opencl_constant;
4558fe6060f1SDimitry Andric   if (LangOpts.SYCLIsDevice)
4559fe6060f1SDimitry Andric     return LangAS::sycl_global;
4560d56accc7SDimitry Andric   if (LangOpts.HIP && LangOpts.CUDAIsDevice && getTriple().isSPIRV())
4561d56accc7SDimitry Andric     // For HIPSPV map literals to cuda_device (maps to CrossWorkGroup in SPIR-V)
4562d56accc7SDimitry Andric     // instead of default AS (maps to Generic in SPIR-V). Otherwise, we end up
4563d56accc7SDimitry Andric     // with OpVariable instructions with Generic storage class which is not
4564d56accc7SDimitry Andric     // allowed (SPIR-V V1.6 s3.42.8). Also, mapping literals to SPIR-V
4565d56accc7SDimitry Andric     // UniformConstant storage class is not viable as pointers to it may not be
4566d56accc7SDimitry Andric     // casted to Generic pointers which are used to model HIP's "flat" pointers.
4567d56accc7SDimitry Andric     return LangAS::cuda_device;
4568*0b57cec5SDimitry Andric   if (auto AS = getTarget().getConstantAddressSpace())
456981ad6265SDimitry Andric     return *AS;
4570*0b57cec5SDimitry Andric   return LangAS::Default;
4571*0b57cec5SDimitry Andric }
4572*0b57cec5SDimitry Andric 
4573*0b57cec5SDimitry Andric // In address space agnostic languages, string literals are in default address
4574*0b57cec5SDimitry Andric // space in AST. However, certain targets (e.g. amdgcn) request them to be
4575*0b57cec5SDimitry Andric // emitted in constant address space in LLVM IR. To be consistent with other
4576*0b57cec5SDimitry Andric // parts of AST, string literal global variables in constant address space
4577*0b57cec5SDimitry Andric // need to be casted to default address space before being put into address
4578*0b57cec5SDimitry Andric // map and referenced by other part of CodeGen.
4579*0b57cec5SDimitry Andric // In OpenCL, string literals are in constant address space in AST, therefore
4580*0b57cec5SDimitry Andric // they should not be casted to default address space.
4581*0b57cec5SDimitry Andric static llvm::Constant *
4582*0b57cec5SDimitry Andric castStringLiteralToDefaultAddressSpace(CodeGenModule &CGM,
4583*0b57cec5SDimitry Andric                                        llvm::GlobalVariable *GV) {
4584*0b57cec5SDimitry Andric   llvm::Constant *Cast = GV;
4585*0b57cec5SDimitry Andric   if (!CGM.getLangOpts().OpenCL) {
4586fe6060f1SDimitry Andric     auto AS = CGM.GetGlobalConstantAddressSpace();
4587*0b57cec5SDimitry Andric     if (AS != LangAS::Default)
4588*0b57cec5SDimitry Andric       Cast = CGM.getTargetCodeGenInfo().performAddrSpaceCast(
4589fe6060f1SDimitry Andric           CGM, GV, AS, LangAS::Default,
4590*0b57cec5SDimitry Andric           GV->getValueType()->getPointerTo(
4591*0b57cec5SDimitry Andric               CGM.getContext().getTargetAddressSpace(LangAS::Default)));
4592*0b57cec5SDimitry Andric   }
4593*0b57cec5SDimitry Andric   return Cast;
4594*0b57cec5SDimitry Andric }
4595*0b57cec5SDimitry Andric 
4596*0b57cec5SDimitry Andric template<typename SomeDecl>
4597*0b57cec5SDimitry Andric void CodeGenModule::MaybeHandleStaticInExternC(const SomeDecl *D,
4598*0b57cec5SDimitry Andric                                                llvm::GlobalValue *GV) {
4599*0b57cec5SDimitry Andric   if (!getLangOpts().CPlusPlus)
4600*0b57cec5SDimitry Andric     return;
4601*0b57cec5SDimitry Andric 
4602*0b57cec5SDimitry Andric   // Must have 'used' attribute, or else inline assembly can't rely on
4603*0b57cec5SDimitry Andric   // the name existing.
4604*0b57cec5SDimitry Andric   if (!D->template hasAttr<UsedAttr>())
4605*0b57cec5SDimitry Andric     return;
4606*0b57cec5SDimitry Andric 
4607*0b57cec5SDimitry Andric   // Must have internal linkage and an ordinary name.
4608*0b57cec5SDimitry Andric   if (!D->getIdentifier() || D->getFormalLinkage() != InternalLinkage)
4609*0b57cec5SDimitry Andric     return;
4610*0b57cec5SDimitry Andric 
4611*0b57cec5SDimitry Andric   // Must be in an extern "C" context. Entities declared directly within
4612*0b57cec5SDimitry Andric   // a record are not extern "C" even if the record is in such a context.
4613*0b57cec5SDimitry Andric   const SomeDecl *First = D->getFirstDecl();
4614*0b57cec5SDimitry Andric   if (First->getDeclContext()->isRecord() || !First->isInExternCContext())
4615*0b57cec5SDimitry Andric     return;
4616*0b57cec5SDimitry Andric 
4617*0b57cec5SDimitry Andric   // OK, this is an internal linkage entity inside an extern "C" linkage
4618*0b57cec5SDimitry Andric   // specification. Make a note of that so we can give it the "expected"
4619*0b57cec5SDimitry Andric   // mangled name if nothing else is using that name.
4620*0b57cec5SDimitry Andric   std::pair<StaticExternCMap::iterator, bool> R =
4621*0b57cec5SDimitry Andric       StaticExternCValues.insert(std::make_pair(D->getIdentifier(), GV));
4622*0b57cec5SDimitry Andric 
4623*0b57cec5SDimitry Andric   // If we have multiple internal linkage entities with the same name
4624*0b57cec5SDimitry Andric   // in extern "C" regions, none of them gets that name.
4625*0b57cec5SDimitry Andric   if (!R.second)
4626*0b57cec5SDimitry Andric     R.first->second = nullptr;
4627*0b57cec5SDimitry Andric }
4628*0b57cec5SDimitry Andric 
4629*0b57cec5SDimitry Andric static bool shouldBeInCOMDAT(CodeGenModule &CGM, const Decl &D) {
4630*0b57cec5SDimitry Andric   if (!CGM.supportsCOMDAT())
4631*0b57cec5SDimitry Andric     return false;
4632*0b57cec5SDimitry Andric 
4633*0b57cec5SDimitry Andric   if (D.hasAttr<SelectAnyAttr>())
4634*0b57cec5SDimitry Andric     return true;
4635*0b57cec5SDimitry Andric 
4636*0b57cec5SDimitry Andric   GVALinkage Linkage;
4637*0b57cec5SDimitry Andric   if (auto *VD = dyn_cast<VarDecl>(&D))
4638*0b57cec5SDimitry Andric     Linkage = CGM.getContext().GetGVALinkageForVariable(VD);
4639*0b57cec5SDimitry Andric   else
4640*0b57cec5SDimitry Andric     Linkage = CGM.getContext().GetGVALinkageForFunction(cast<FunctionDecl>(&D));
4641*0b57cec5SDimitry Andric 
4642*0b57cec5SDimitry Andric   switch (Linkage) {
4643*0b57cec5SDimitry Andric   case GVA_Internal:
4644*0b57cec5SDimitry Andric   case GVA_AvailableExternally:
4645*0b57cec5SDimitry Andric   case GVA_StrongExternal:
4646*0b57cec5SDimitry Andric     return false;
4647*0b57cec5SDimitry Andric   case GVA_DiscardableODR:
4648*0b57cec5SDimitry Andric   case GVA_StrongODR:
4649*0b57cec5SDimitry Andric     return true;
4650*0b57cec5SDimitry Andric   }
4651*0b57cec5SDimitry Andric   llvm_unreachable("No such linkage");
4652*0b57cec5SDimitry Andric }
4653*0b57cec5SDimitry Andric 
4654*0b57cec5SDimitry Andric void CodeGenModule::maybeSetTrivialComdat(const Decl &D,
4655*0b57cec5SDimitry Andric                                           llvm::GlobalObject &GO) {
4656*0b57cec5SDimitry Andric   if (!shouldBeInCOMDAT(*this, D))
4657*0b57cec5SDimitry Andric     return;
4658*0b57cec5SDimitry Andric   GO.setComdat(TheModule.getOrInsertComdat(GO.getName()));
4659*0b57cec5SDimitry Andric }
4660*0b57cec5SDimitry Andric 
4661*0b57cec5SDimitry Andric /// Pass IsTentative as true if you want to create a tentative definition.
4662*0b57cec5SDimitry Andric void CodeGenModule::EmitGlobalVarDefinition(const VarDecl *D,
4663*0b57cec5SDimitry Andric                                             bool IsTentative) {
4664*0b57cec5SDimitry Andric   // OpenCL global variables of sampler type are translated to function calls,
4665*0b57cec5SDimitry Andric   // therefore no need to be translated.
4666*0b57cec5SDimitry Andric   QualType ASTTy = D->getType();
4667*0b57cec5SDimitry Andric   if (getLangOpts().OpenCL && ASTTy->isSamplerT())
4668*0b57cec5SDimitry Andric     return;
4669*0b57cec5SDimitry Andric 
4670*0b57cec5SDimitry Andric   // If this is OpenMP device, check if it is legal to emit this global
4671*0b57cec5SDimitry Andric   // normally.
4672*0b57cec5SDimitry Andric   if (LangOpts.OpenMPIsDevice && OpenMPRuntime &&
4673*0b57cec5SDimitry Andric       OpenMPRuntime->emitTargetGlobalVariable(D))
4674*0b57cec5SDimitry Andric     return;
4675*0b57cec5SDimitry Andric 
4676fe6060f1SDimitry Andric   llvm::TrackingVH<llvm::Constant> Init;
4677*0b57cec5SDimitry Andric   bool NeedsGlobalCtor = false;
4678a7dea167SDimitry Andric   bool NeedsGlobalDtor =
4679a7dea167SDimitry Andric       D->needsDestruction(getContext()) == QualType::DK_cxx_destructor;
4680*0b57cec5SDimitry Andric 
4681*0b57cec5SDimitry Andric   const VarDecl *InitDecl;
4682*0b57cec5SDimitry Andric   const Expr *InitExpr = D->getAnyInitializer(InitDecl);
4683*0b57cec5SDimitry Andric 
4684*0b57cec5SDimitry Andric   Optional<ConstantEmitter> emitter;
4685*0b57cec5SDimitry Andric 
4686*0b57cec5SDimitry Andric   // CUDA E.2.4.1 "__shared__ variables cannot have an initialization
4687*0b57cec5SDimitry Andric   // as part of their declaration."  Sema has already checked for
4688*0b57cec5SDimitry Andric   // error cases, so we just need to set Init to UndefValue.
4689*0b57cec5SDimitry Andric   bool IsCUDASharedVar =
4690*0b57cec5SDimitry Andric       getLangOpts().CUDAIsDevice && D->hasAttr<CUDASharedAttr>();
4691*0b57cec5SDimitry Andric   // Shadows of initialized device-side global variables are also left
4692*0b57cec5SDimitry Andric   // undefined.
4693fe6060f1SDimitry Andric   // Managed Variables should be initialized on both host side and device side.
4694*0b57cec5SDimitry Andric   bool IsCUDAShadowVar =
4695e8d8bef9SDimitry Andric       !getLangOpts().CUDAIsDevice && !D->hasAttr<HIPManagedAttr>() &&
4696*0b57cec5SDimitry Andric       (D->hasAttr<CUDAConstantAttr>() || D->hasAttr<CUDADeviceAttr>() ||
4697*0b57cec5SDimitry Andric        D->hasAttr<CUDASharedAttr>());
46985ffd83dbSDimitry Andric   bool IsCUDADeviceShadowVar =
4699fe6060f1SDimitry Andric       getLangOpts().CUDAIsDevice && !D->hasAttr<HIPManagedAttr>() &&
47005ffd83dbSDimitry Andric       (D->getType()->isCUDADeviceBuiltinSurfaceType() ||
4701fe6060f1SDimitry Andric        D->getType()->isCUDADeviceBuiltinTextureType());
4702*0b57cec5SDimitry Andric   if (getLangOpts().CUDA &&
47035ffd83dbSDimitry Andric       (IsCUDASharedVar || IsCUDAShadowVar || IsCUDADeviceShadowVar))
4704fe6060f1SDimitry Andric     Init = llvm::UndefValue::get(getTypes().ConvertTypeForMem(ASTTy));
47055ffd83dbSDimitry Andric   else if (D->hasAttr<LoaderUninitializedAttr>())
4706fe6060f1SDimitry Andric     Init = llvm::UndefValue::get(getTypes().ConvertTypeForMem(ASTTy));
4707*0b57cec5SDimitry Andric   else if (!InitExpr) {
4708*0b57cec5SDimitry Andric     // This is a tentative definition; tentative definitions are
4709*0b57cec5SDimitry Andric     // implicitly initialized with { 0 }.
4710*0b57cec5SDimitry Andric     //
4711*0b57cec5SDimitry Andric     // Note that tentative definitions are only emitted at the end of
4712*0b57cec5SDimitry Andric     // a translation unit, so they should never have incomplete
4713*0b57cec5SDimitry Andric     // type. In addition, EmitTentativeDefinition makes sure that we
4714*0b57cec5SDimitry Andric     // never attempt to emit a tentative definition if a real one
4715*0b57cec5SDimitry Andric     // exists. A use may still exists, however, so we still may need
4716*0b57cec5SDimitry Andric     // to do a RAUW.
4717*0b57cec5SDimitry Andric     assert(!ASTTy->isIncompleteType() && "Unexpected incomplete type");
4718*0b57cec5SDimitry Andric     Init = EmitNullConstant(D->getType());
4719*0b57cec5SDimitry Andric   } else {
4720*0b57cec5SDimitry Andric     initializedGlobalDecl = GlobalDecl(D);
4721*0b57cec5SDimitry Andric     emitter.emplace(*this);
4722fe6060f1SDimitry Andric     llvm::Constant *Initializer = emitter->tryEmitForInitializer(*InitDecl);
4723fe6060f1SDimitry Andric     if (!Initializer) {
4724*0b57cec5SDimitry Andric       QualType T = InitExpr->getType();
4725*0b57cec5SDimitry Andric       if (D->getType()->isReferenceType())
4726*0b57cec5SDimitry Andric         T = D->getType();
4727*0b57cec5SDimitry Andric 
4728*0b57cec5SDimitry Andric       if (getLangOpts().CPlusPlus) {
472981ad6265SDimitry Andric         if (InitDecl->hasFlexibleArrayInit(getContext()))
473081ad6265SDimitry Andric           ErrorUnsupported(D, "flexible array initializer");
4731*0b57cec5SDimitry Andric         Init = EmitNullConstant(T);
4732*0b57cec5SDimitry Andric         NeedsGlobalCtor = true;
4733*0b57cec5SDimitry Andric       } else {
4734*0b57cec5SDimitry Andric         ErrorUnsupported(D, "static initializer");
4735*0b57cec5SDimitry Andric         Init = llvm::UndefValue::get(getTypes().ConvertType(T));
4736*0b57cec5SDimitry Andric       }
4737*0b57cec5SDimitry Andric     } else {
4738fe6060f1SDimitry Andric       Init = Initializer;
4739*0b57cec5SDimitry Andric       // We don't need an initializer, so remove the entry for the delayed
4740*0b57cec5SDimitry Andric       // initializer position (just in case this entry was delayed) if we
4741*0b57cec5SDimitry Andric       // also don't need to register a destructor.
4742*0b57cec5SDimitry Andric       if (getLangOpts().CPlusPlus && !NeedsGlobalDtor)
4743*0b57cec5SDimitry Andric         DelayedCXXInitPosition.erase(D);
474481ad6265SDimitry Andric 
474581ad6265SDimitry Andric #ifndef NDEBUG
474681ad6265SDimitry Andric       CharUnits VarSize = getContext().getTypeSizeInChars(ASTTy) +
474781ad6265SDimitry Andric                           InitDecl->getFlexibleArrayInitChars(getContext());
474881ad6265SDimitry Andric       CharUnits CstSize = CharUnits::fromQuantity(
474981ad6265SDimitry Andric           getDataLayout().getTypeAllocSize(Init->getType()));
475081ad6265SDimitry Andric       assert(VarSize == CstSize && "Emitted constant has unexpected size");
475181ad6265SDimitry Andric #endif
4752*0b57cec5SDimitry Andric     }
4753*0b57cec5SDimitry Andric   }
4754*0b57cec5SDimitry Andric 
4755*0b57cec5SDimitry Andric   llvm::Type* InitType = Init->getType();
4756*0b57cec5SDimitry Andric   llvm::Constant *Entry =
4757*0b57cec5SDimitry Andric       GetAddrOfGlobalVar(D, InitType, ForDefinition_t(!IsTentative));
4758*0b57cec5SDimitry Andric 
4759a7dea167SDimitry Andric   // Strip off pointer casts if we got them.
4760a7dea167SDimitry Andric   Entry = Entry->stripPointerCasts();
4761*0b57cec5SDimitry Andric 
4762*0b57cec5SDimitry Andric   // Entry is now either a Function or GlobalVariable.
4763*0b57cec5SDimitry Andric   auto *GV = dyn_cast<llvm::GlobalVariable>(Entry);
4764*0b57cec5SDimitry Andric 
4765*0b57cec5SDimitry Andric   // We have a definition after a declaration with the wrong type.
4766*0b57cec5SDimitry Andric   // We must make a new GlobalVariable* and update everything that used OldGV
4767*0b57cec5SDimitry Andric   // (a declaration or tentative definition) with the new GlobalVariable*
4768*0b57cec5SDimitry Andric   // (which will be a definition).
4769*0b57cec5SDimitry Andric   //
4770*0b57cec5SDimitry Andric   // This happens if there is a prototype for a global (e.g.
4771*0b57cec5SDimitry Andric   // "extern int x[];") and then a definition of a different type (e.g.
4772*0b57cec5SDimitry Andric   // "int x[10];"). This also happens when an initializer has a different type
4773*0b57cec5SDimitry Andric   // from the type of the global (this happens with unions).
47745ffd83dbSDimitry Andric   if (!GV || GV->getValueType() != InitType ||
4775*0b57cec5SDimitry Andric       GV->getType()->getAddressSpace() !=
4776*0b57cec5SDimitry Andric           getContext().getTargetAddressSpace(GetGlobalVarAddressSpace(D))) {
4777*0b57cec5SDimitry Andric 
4778*0b57cec5SDimitry Andric     // Move the old entry aside so that we'll create a new one.
4779*0b57cec5SDimitry Andric     Entry->setName(StringRef());
4780*0b57cec5SDimitry Andric 
4781*0b57cec5SDimitry Andric     // Make a new global with the correct type, this is now guaranteed to work.
4782*0b57cec5SDimitry Andric     GV = cast<llvm::GlobalVariable>(
4783a7dea167SDimitry Andric         GetAddrOfGlobalVar(D, InitType, ForDefinition_t(!IsTentative))
4784a7dea167SDimitry Andric             ->stripPointerCasts());
4785*0b57cec5SDimitry Andric 
4786*0b57cec5SDimitry Andric     // Replace all uses of the old global with the new global
4787*0b57cec5SDimitry Andric     llvm::Constant *NewPtrForOldDecl =
4788fe6060f1SDimitry Andric         llvm::ConstantExpr::getPointerBitCastOrAddrSpaceCast(GV,
4789fe6060f1SDimitry Andric                                                              Entry->getType());
4790*0b57cec5SDimitry Andric     Entry->replaceAllUsesWith(NewPtrForOldDecl);
4791*0b57cec5SDimitry Andric 
4792*0b57cec5SDimitry Andric     // Erase the old global, since it is no longer used.
4793*0b57cec5SDimitry Andric     cast<llvm::GlobalValue>(Entry)->eraseFromParent();
4794*0b57cec5SDimitry Andric   }
4795*0b57cec5SDimitry Andric 
4796*0b57cec5SDimitry Andric   MaybeHandleStaticInExternC(D, GV);
4797*0b57cec5SDimitry Andric 
4798*0b57cec5SDimitry Andric   if (D->hasAttr<AnnotateAttr>())
4799*0b57cec5SDimitry Andric     AddGlobalAnnotations(D, GV);
4800*0b57cec5SDimitry Andric 
4801*0b57cec5SDimitry Andric   // Set the llvm linkage type as appropriate.
4802*0b57cec5SDimitry Andric   llvm::GlobalValue::LinkageTypes Linkage =
4803*0b57cec5SDimitry Andric       getLLVMLinkageVarDefinition(D, GV->isConstant());
4804*0b57cec5SDimitry Andric 
4805*0b57cec5SDimitry Andric   // CUDA B.2.1 "The __device__ qualifier declares a variable that resides on
4806*0b57cec5SDimitry Andric   // the device. [...]"
4807*0b57cec5SDimitry Andric   // CUDA B.2.2 "The __constant__ qualifier, optionally used together with
4808*0b57cec5SDimitry Andric   // __device__, declares a variable that: [...]
4809*0b57cec5SDimitry Andric   // Is accessible from all the threads within the grid and from the host
4810*0b57cec5SDimitry Andric   // through the runtime library (cudaGetSymbolAddress() / cudaGetSymbolSize()
4811*0b57cec5SDimitry Andric   // / cudaMemcpyToSymbol() / cudaMemcpyFromSymbol())."
4812*0b57cec5SDimitry Andric   if (GV && LangOpts.CUDA) {
4813*0b57cec5SDimitry Andric     if (LangOpts.CUDAIsDevice) {
4814*0b57cec5SDimitry Andric       if (Linkage != llvm::GlobalValue::InternalLinkage &&
4815349cc55cSDimitry Andric           (D->hasAttr<CUDADeviceAttr>() || D->hasAttr<CUDAConstantAttr>() ||
4816349cc55cSDimitry Andric            D->getType()->isCUDADeviceBuiltinSurfaceType() ||
4817349cc55cSDimitry Andric            D->getType()->isCUDADeviceBuiltinTextureType()))
4818*0b57cec5SDimitry Andric         GV->setExternallyInitialized(true);
4819*0b57cec5SDimitry Andric     } else {
4820fe6060f1SDimitry Andric       getCUDARuntime().internalizeDeviceSideVar(D, Linkage);
48215ffd83dbSDimitry Andric     }
4822fe6060f1SDimitry Andric     getCUDARuntime().handleVarRegistration(D, *GV);
4823*0b57cec5SDimitry Andric   }
4824*0b57cec5SDimitry Andric 
4825*0b57cec5SDimitry Andric   GV->setInitializer(Init);
48265ffd83dbSDimitry Andric   if (emitter)
48275ffd83dbSDimitry Andric     emitter->finalize(GV);
4828*0b57cec5SDimitry Andric 
4829*0b57cec5SDimitry Andric   // If it is safe to mark the global 'constant', do so now.
4830*0b57cec5SDimitry Andric   GV->setConstant(!NeedsGlobalCtor && !NeedsGlobalDtor &&
4831*0b57cec5SDimitry Andric                   isTypeConstant(D->getType(), true));
4832*0b57cec5SDimitry Andric 
4833*0b57cec5SDimitry Andric   // If it is in a read-only section, mark it 'constant'.
4834*0b57cec5SDimitry Andric   if (const SectionAttr *SA = D->getAttr<SectionAttr>()) {
4835*0b57cec5SDimitry Andric     const ASTContext::SectionInfo &SI = Context.SectionInfos[SA->getName()];
4836*0b57cec5SDimitry Andric     if ((SI.SectionFlags & ASTContext::PSF_Write) == 0)
4837*0b57cec5SDimitry Andric       GV->setConstant(true);
4838*0b57cec5SDimitry Andric   }
4839*0b57cec5SDimitry Andric 
484081ad6265SDimitry Andric   CharUnits AlignVal = getContext().getDeclAlign(D);
484181ad6265SDimitry Andric   // Check for alignment specifed in an 'omp allocate' directive.
484281ad6265SDimitry Andric   if (llvm::Optional<CharUnits> AlignValFromAllocate =
484381ad6265SDimitry Andric           getOMPAllocateAlignment(D))
484481ad6265SDimitry Andric     AlignVal = *AlignValFromAllocate;
484581ad6265SDimitry Andric   GV->setAlignment(AlignVal.getAsAlign());
4846*0b57cec5SDimitry Andric 
48475ffd83dbSDimitry Andric   // On Darwin, unlike other Itanium C++ ABI platforms, the thread-wrapper
48485ffd83dbSDimitry Andric   // function is only defined alongside the variable, not also alongside
48495ffd83dbSDimitry Andric   // callers. Normally, all accesses to a thread_local go through the
48505ffd83dbSDimitry Andric   // thread-wrapper in order to ensure initialization has occurred, underlying
48515ffd83dbSDimitry Andric   // variable will never be used other than the thread-wrapper, so it can be
48525ffd83dbSDimitry Andric   // converted to internal linkage.
48535ffd83dbSDimitry Andric   //
48545ffd83dbSDimitry Andric   // However, if the variable has the 'constinit' attribute, it _can_ be
48555ffd83dbSDimitry Andric   // referenced directly, without calling the thread-wrapper, so the linkage
48565ffd83dbSDimitry Andric   // must not be changed.
48575ffd83dbSDimitry Andric   //
48585ffd83dbSDimitry Andric   // Additionally, if the variable isn't plain external linkage, e.g. if it's
48595ffd83dbSDimitry Andric   // weak or linkonce, the de-duplication semantics are important to preserve,
48605ffd83dbSDimitry Andric   // so we don't change the linkage.
48615ffd83dbSDimitry Andric   if (D->getTLSKind() == VarDecl::TLS_Dynamic &&
48625ffd83dbSDimitry Andric       Linkage == llvm::GlobalValue::ExternalLinkage &&
4863*0b57cec5SDimitry Andric       Context.getTargetInfo().getTriple().isOSDarwin() &&
48645ffd83dbSDimitry Andric       !D->hasAttr<ConstInitAttr>())
4865*0b57cec5SDimitry Andric     Linkage = llvm::GlobalValue::InternalLinkage;
4866*0b57cec5SDimitry Andric 
4867*0b57cec5SDimitry Andric   GV->setLinkage(Linkage);
4868*0b57cec5SDimitry Andric   if (D->hasAttr<DLLImportAttr>())
4869*0b57cec5SDimitry Andric     GV->setDLLStorageClass(llvm::GlobalVariable::DLLImportStorageClass);
4870*0b57cec5SDimitry Andric   else if (D->hasAttr<DLLExportAttr>())
4871*0b57cec5SDimitry Andric     GV->setDLLStorageClass(llvm::GlobalVariable::DLLExportStorageClass);
4872*0b57cec5SDimitry Andric   else
4873*0b57cec5SDimitry Andric     GV->setDLLStorageClass(llvm::GlobalVariable::DefaultStorageClass);
4874*0b57cec5SDimitry Andric 
4875*0b57cec5SDimitry Andric   if (Linkage == llvm::GlobalVariable::CommonLinkage) {
4876*0b57cec5SDimitry Andric     // common vars aren't constant even if declared const.
4877*0b57cec5SDimitry Andric     GV->setConstant(false);
4878*0b57cec5SDimitry Andric     // Tentative definition of global variables may be initialized with
4879*0b57cec5SDimitry Andric     // non-zero null pointers. In this case they should have weak linkage
4880*0b57cec5SDimitry Andric     // since common linkage must have zero initializer and must not have
4881*0b57cec5SDimitry Andric     // explicit section therefore cannot have non-zero initial value.
4882*0b57cec5SDimitry Andric     if (!GV->getInitializer()->isNullValue())
4883*0b57cec5SDimitry Andric       GV->setLinkage(llvm::GlobalVariable::WeakAnyLinkage);
4884*0b57cec5SDimitry Andric   }
4885*0b57cec5SDimitry Andric 
4886*0b57cec5SDimitry Andric   setNonAliasAttributes(D, GV);
4887*0b57cec5SDimitry Andric 
4888*0b57cec5SDimitry Andric   if (D->getTLSKind() && !GV->isThreadLocal()) {
4889*0b57cec5SDimitry Andric     if (D->getTLSKind() == VarDecl::TLS_Dynamic)
4890*0b57cec5SDimitry Andric       CXXThreadLocals.push_back(D);
4891*0b57cec5SDimitry Andric     setTLSMode(GV, *D);
4892*0b57cec5SDimitry Andric   }
4893*0b57cec5SDimitry Andric 
4894*0b57cec5SDimitry Andric   maybeSetTrivialComdat(*D, *GV);
4895*0b57cec5SDimitry Andric 
4896*0b57cec5SDimitry Andric   // Emit the initializer function if necessary.
4897*0b57cec5SDimitry Andric   if (NeedsGlobalCtor || NeedsGlobalDtor)
4898*0b57cec5SDimitry Andric     EmitCXXGlobalVarDeclInitFunc(D, GV, NeedsGlobalCtor);
4899*0b57cec5SDimitry Andric 
490081ad6265SDimitry Andric   SanitizerMD->reportGlobal(GV, *D, NeedsGlobalCtor);
4901*0b57cec5SDimitry Andric 
4902*0b57cec5SDimitry Andric   // Emit global variable debug information.
4903*0b57cec5SDimitry Andric   if (CGDebugInfo *DI = getModuleDebugInfo())
4904480093f4SDimitry Andric     if (getCodeGenOpts().hasReducedDebugInfo())
4905*0b57cec5SDimitry Andric       DI->EmitGlobalVariable(GV, D);
4906*0b57cec5SDimitry Andric }
4907*0b57cec5SDimitry Andric 
4908480093f4SDimitry Andric void CodeGenModule::EmitExternalVarDeclaration(const VarDecl *D) {
4909480093f4SDimitry Andric   if (CGDebugInfo *DI = getModuleDebugInfo())
4910480093f4SDimitry Andric     if (getCodeGenOpts().hasReducedDebugInfo()) {
4911480093f4SDimitry Andric       QualType ASTTy = D->getType();
4912480093f4SDimitry Andric       llvm::Type *Ty = getTypes().ConvertTypeForMem(D->getType());
4913349cc55cSDimitry Andric       llvm::Constant *GV =
4914349cc55cSDimitry Andric           GetOrCreateLLVMGlobal(D->getName(), Ty, ASTTy.getAddressSpace(), D);
4915480093f4SDimitry Andric       DI->EmitExternalVariable(
4916480093f4SDimitry Andric           cast<llvm::GlobalVariable>(GV->stripPointerCasts()), D);
4917480093f4SDimitry Andric     }
4918480093f4SDimitry Andric }
4919480093f4SDimitry Andric 
4920*0b57cec5SDimitry Andric static bool isVarDeclStrongDefinition(const ASTContext &Context,
4921*0b57cec5SDimitry Andric                                       CodeGenModule &CGM, const VarDecl *D,
4922*0b57cec5SDimitry Andric                                       bool NoCommon) {
4923*0b57cec5SDimitry Andric   // Don't give variables common linkage if -fno-common was specified unless it
4924*0b57cec5SDimitry Andric   // was overridden by a NoCommon attribute.
4925*0b57cec5SDimitry Andric   if ((NoCommon || D->hasAttr<NoCommonAttr>()) && !D->hasAttr<CommonAttr>())
4926*0b57cec5SDimitry Andric     return true;
4927*0b57cec5SDimitry Andric 
4928*0b57cec5SDimitry Andric   // C11 6.9.2/2:
4929*0b57cec5SDimitry Andric   //   A declaration of an identifier for an object that has file scope without
4930*0b57cec5SDimitry Andric   //   an initializer, and without a storage-class specifier or with the
4931*0b57cec5SDimitry Andric   //   storage-class specifier static, constitutes a tentative definition.
4932*0b57cec5SDimitry Andric   if (D->getInit() || D->hasExternalStorage())
4933*0b57cec5SDimitry Andric     return true;
4934*0b57cec5SDimitry Andric 
4935*0b57cec5SDimitry Andric   // A variable cannot be both common and exist in a section.
4936*0b57cec5SDimitry Andric   if (D->hasAttr<SectionAttr>())
4937*0b57cec5SDimitry Andric     return true;
4938*0b57cec5SDimitry Andric 
4939*0b57cec5SDimitry Andric   // A variable cannot be both common and exist in a section.
4940*0b57cec5SDimitry Andric   // We don't try to determine which is the right section in the front-end.
4941*0b57cec5SDimitry Andric   // If no specialized section name is applicable, it will resort to default.
4942*0b57cec5SDimitry Andric   if (D->hasAttr<PragmaClangBSSSectionAttr>() ||
4943*0b57cec5SDimitry Andric       D->hasAttr<PragmaClangDataSectionAttr>() ||
4944a7dea167SDimitry Andric       D->hasAttr<PragmaClangRelroSectionAttr>() ||
4945*0b57cec5SDimitry Andric       D->hasAttr<PragmaClangRodataSectionAttr>())
4946*0b57cec5SDimitry Andric     return true;
4947*0b57cec5SDimitry Andric 
4948*0b57cec5SDimitry Andric   // Thread local vars aren't considered common linkage.
4949*0b57cec5SDimitry Andric   if (D->getTLSKind())
4950*0b57cec5SDimitry Andric     return true;
4951*0b57cec5SDimitry Andric 
4952*0b57cec5SDimitry Andric   // Tentative definitions marked with WeakImportAttr are true definitions.
4953*0b57cec5SDimitry Andric   if (D->hasAttr<WeakImportAttr>())
4954*0b57cec5SDimitry Andric     return true;
4955*0b57cec5SDimitry Andric 
4956*0b57cec5SDimitry Andric   // A variable cannot be both common and exist in a comdat.
4957*0b57cec5SDimitry Andric   if (shouldBeInCOMDAT(CGM, *D))
4958*0b57cec5SDimitry Andric     return true;
4959*0b57cec5SDimitry Andric 
4960*0b57cec5SDimitry Andric   // Declarations with a required alignment do not have common linkage in MSVC
4961*0b57cec5SDimitry Andric   // mode.
4962*0b57cec5SDimitry Andric   if (Context.getTargetInfo().getCXXABI().isMicrosoft()) {
4963*0b57cec5SDimitry Andric     if (D->hasAttr<AlignedAttr>())
4964*0b57cec5SDimitry Andric       return true;
4965*0b57cec5SDimitry Andric     QualType VarType = D->getType();
4966*0b57cec5SDimitry Andric     if (Context.isAlignmentRequired(VarType))
4967*0b57cec5SDimitry Andric       return true;
4968*0b57cec5SDimitry Andric 
4969*0b57cec5SDimitry Andric     if (const auto *RT = VarType->getAs<RecordType>()) {
4970*0b57cec5SDimitry Andric       const RecordDecl *RD = RT->getDecl();
4971*0b57cec5SDimitry Andric       for (const FieldDecl *FD : RD->fields()) {
4972*0b57cec5SDimitry Andric         if (FD->isBitField())
4973*0b57cec5SDimitry Andric           continue;
4974*0b57cec5SDimitry Andric         if (FD->hasAttr<AlignedAttr>())
4975*0b57cec5SDimitry Andric           return true;
4976*0b57cec5SDimitry Andric         if (Context.isAlignmentRequired(FD->getType()))
4977*0b57cec5SDimitry Andric           return true;
4978*0b57cec5SDimitry Andric       }
4979*0b57cec5SDimitry Andric     }
4980*0b57cec5SDimitry Andric   }
4981*0b57cec5SDimitry Andric 
4982*0b57cec5SDimitry Andric   // Microsoft's link.exe doesn't support alignments greater than 32 bytes for
4983*0b57cec5SDimitry Andric   // common symbols, so symbols with greater alignment requirements cannot be
4984*0b57cec5SDimitry Andric   // common.
4985*0b57cec5SDimitry Andric   // Other COFF linkers (ld.bfd and LLD) support arbitrary power-of-two
4986*0b57cec5SDimitry Andric   // alignments for common symbols via the aligncomm directive, so this
4987*0b57cec5SDimitry Andric   // restriction only applies to MSVC environments.
4988*0b57cec5SDimitry Andric   if (Context.getTargetInfo().getTriple().isKnownWindowsMSVCEnvironment() &&
4989*0b57cec5SDimitry Andric       Context.getTypeAlignIfKnown(D->getType()) >
4990*0b57cec5SDimitry Andric           Context.toBits(CharUnits::fromQuantity(32)))
4991*0b57cec5SDimitry Andric     return true;
4992*0b57cec5SDimitry Andric 
4993*0b57cec5SDimitry Andric   return false;
4994*0b57cec5SDimitry Andric }
4995*0b57cec5SDimitry Andric 
4996*0b57cec5SDimitry Andric llvm::GlobalValue::LinkageTypes CodeGenModule::getLLVMLinkageForDeclarator(
4997*0b57cec5SDimitry Andric     const DeclaratorDecl *D, GVALinkage Linkage, bool IsConstantVariable) {
4998*0b57cec5SDimitry Andric   if (Linkage == GVA_Internal)
4999*0b57cec5SDimitry Andric     return llvm::Function::InternalLinkage;
5000*0b57cec5SDimitry Andric 
500181ad6265SDimitry Andric   if (D->hasAttr<WeakAttr>())
5002*0b57cec5SDimitry Andric     return llvm::GlobalVariable::WeakAnyLinkage;
5003*0b57cec5SDimitry Andric 
5004*0b57cec5SDimitry Andric   if (const auto *FD = D->getAsFunction())
5005*0b57cec5SDimitry Andric     if (FD->isMultiVersion() && Linkage == GVA_AvailableExternally)
5006*0b57cec5SDimitry Andric       return llvm::GlobalVariable::LinkOnceAnyLinkage;
5007*0b57cec5SDimitry Andric 
5008*0b57cec5SDimitry Andric   // We are guaranteed to have a strong definition somewhere else,
5009*0b57cec5SDimitry Andric   // so we can use available_externally linkage.
5010*0b57cec5SDimitry Andric   if (Linkage == GVA_AvailableExternally)
5011*0b57cec5SDimitry Andric     return llvm::GlobalValue::AvailableExternallyLinkage;
5012*0b57cec5SDimitry Andric 
5013*0b57cec5SDimitry Andric   // Note that Apple's kernel linker doesn't support symbol
5014*0b57cec5SDimitry Andric   // coalescing, so we need to avoid linkonce and weak linkages there.
5015*0b57cec5SDimitry Andric   // Normally, this means we just map to internal, but for explicit
5016*0b57cec5SDimitry Andric   // instantiations we'll map to external.
5017*0b57cec5SDimitry Andric 
5018*0b57cec5SDimitry Andric   // In C++, the compiler has to emit a definition in every translation unit
5019*0b57cec5SDimitry Andric   // that references the function.  We should use linkonce_odr because
5020*0b57cec5SDimitry Andric   // a) if all references in this translation unit are optimized away, we
5021*0b57cec5SDimitry Andric   // don't need to codegen it.  b) if the function persists, it needs to be
5022*0b57cec5SDimitry Andric   // merged with other definitions. c) C++ has the ODR, so we know the
5023*0b57cec5SDimitry Andric   // definition is dependable.
5024*0b57cec5SDimitry Andric   if (Linkage == GVA_DiscardableODR)
5025*0b57cec5SDimitry Andric     return !Context.getLangOpts().AppleKext ? llvm::Function::LinkOnceODRLinkage
5026*0b57cec5SDimitry Andric                                             : llvm::Function::InternalLinkage;
5027*0b57cec5SDimitry Andric 
5028*0b57cec5SDimitry Andric   // An explicit instantiation of a template has weak linkage, since
5029*0b57cec5SDimitry Andric   // explicit instantiations can occur in multiple translation units
5030*0b57cec5SDimitry Andric   // and must all be equivalent. However, we are not allowed to
5031*0b57cec5SDimitry Andric   // throw away these explicit instantiations.
5032*0b57cec5SDimitry Andric   //
5033e8d8bef9SDimitry Andric   // CUDA/HIP: For -fno-gpu-rdc case, device code is limited to one TU,
5034*0b57cec5SDimitry Andric   // so say that CUDA templates are either external (for kernels) or internal.
5035e8d8bef9SDimitry Andric   // This lets llvm perform aggressive inter-procedural optimizations. For
5036e8d8bef9SDimitry Andric   // -fgpu-rdc case, device function calls across multiple TU's are allowed,
5037e8d8bef9SDimitry Andric   // therefore we need to follow the normal linkage paradigm.
5038*0b57cec5SDimitry Andric   if (Linkage == GVA_StrongODR) {
5039e8d8bef9SDimitry Andric     if (getLangOpts().AppleKext)
5040*0b57cec5SDimitry Andric       return llvm::Function::ExternalLinkage;
5041e8d8bef9SDimitry Andric     if (getLangOpts().CUDA && getLangOpts().CUDAIsDevice &&
5042e8d8bef9SDimitry Andric         !getLangOpts().GPURelocatableDeviceCode)
5043*0b57cec5SDimitry Andric       return D->hasAttr<CUDAGlobalAttr>() ? llvm::Function::ExternalLinkage
5044*0b57cec5SDimitry Andric                                           : llvm::Function::InternalLinkage;
5045*0b57cec5SDimitry Andric     return llvm::Function::WeakODRLinkage;
5046*0b57cec5SDimitry Andric   }
5047*0b57cec5SDimitry Andric 
5048*0b57cec5SDimitry Andric   // C++ doesn't have tentative definitions and thus cannot have common
5049*0b57cec5SDimitry Andric   // linkage.
5050*0b57cec5SDimitry Andric   if (!getLangOpts().CPlusPlus && isa<VarDecl>(D) &&
5051*0b57cec5SDimitry Andric       !isVarDeclStrongDefinition(Context, *this, cast<VarDecl>(D),
5052*0b57cec5SDimitry Andric                                  CodeGenOpts.NoCommon))
5053*0b57cec5SDimitry Andric     return llvm::GlobalVariable::CommonLinkage;
5054*0b57cec5SDimitry Andric 
5055*0b57cec5SDimitry Andric   // selectany symbols are externally visible, so use weak instead of
5056*0b57cec5SDimitry Andric   // linkonce.  MSVC optimizes away references to const selectany globals, so
5057*0b57cec5SDimitry Andric   // all definitions should be the same and ODR linkage should be used.
5058*0b57cec5SDimitry Andric   // http://msdn.microsoft.com/en-us/library/5tkz6s71.aspx
5059*0b57cec5SDimitry Andric   if (D->hasAttr<SelectAnyAttr>())
5060*0b57cec5SDimitry Andric     return llvm::GlobalVariable::WeakODRLinkage;
5061*0b57cec5SDimitry Andric 
5062*0b57cec5SDimitry Andric   // Otherwise, we have strong external linkage.
5063*0b57cec5SDimitry Andric   assert(Linkage == GVA_StrongExternal);
5064*0b57cec5SDimitry Andric   return llvm::GlobalVariable::ExternalLinkage;
5065*0b57cec5SDimitry Andric }
5066*0b57cec5SDimitry Andric 
5067*0b57cec5SDimitry Andric llvm::GlobalValue::LinkageTypes CodeGenModule::getLLVMLinkageVarDefinition(
5068*0b57cec5SDimitry Andric     const VarDecl *VD, bool IsConstant) {
5069*0b57cec5SDimitry Andric   GVALinkage Linkage = getContext().GetGVALinkageForVariable(VD);
5070*0b57cec5SDimitry Andric   return getLLVMLinkageForDeclarator(VD, Linkage, IsConstant);
5071*0b57cec5SDimitry Andric }
5072*0b57cec5SDimitry Andric 
5073*0b57cec5SDimitry Andric /// Replace the uses of a function that was declared with a non-proto type.
5074*0b57cec5SDimitry Andric /// We want to silently drop extra arguments from call sites
5075*0b57cec5SDimitry Andric static void replaceUsesOfNonProtoConstant(llvm::Constant *old,
5076*0b57cec5SDimitry Andric                                           llvm::Function *newFn) {
5077*0b57cec5SDimitry Andric   // Fast path.
5078*0b57cec5SDimitry Andric   if (old->use_empty()) return;
5079*0b57cec5SDimitry Andric 
5080*0b57cec5SDimitry Andric   llvm::Type *newRetTy = newFn->getReturnType();
5081*0b57cec5SDimitry Andric   SmallVector<llvm::Value*, 4> newArgs;
5082*0b57cec5SDimitry Andric 
5083*0b57cec5SDimitry Andric   for (llvm::Value::use_iterator ui = old->use_begin(), ue = old->use_end();
5084*0b57cec5SDimitry Andric          ui != ue; ) {
5085*0b57cec5SDimitry Andric     llvm::Value::use_iterator use = ui++; // Increment before the use is erased.
5086*0b57cec5SDimitry Andric     llvm::User *user = use->getUser();
5087*0b57cec5SDimitry Andric 
5088*0b57cec5SDimitry Andric     // Recognize and replace uses of bitcasts.  Most calls to
5089*0b57cec5SDimitry Andric     // unprototyped functions will use bitcasts.
5090*0b57cec5SDimitry Andric     if (auto *bitcast = dyn_cast<llvm::ConstantExpr>(user)) {
5091*0b57cec5SDimitry Andric       if (bitcast->getOpcode() == llvm::Instruction::BitCast)
5092*0b57cec5SDimitry Andric         replaceUsesOfNonProtoConstant(bitcast, newFn);
5093*0b57cec5SDimitry Andric       continue;
5094*0b57cec5SDimitry Andric     }
5095*0b57cec5SDimitry Andric 
5096*0b57cec5SDimitry Andric     // Recognize calls to the function.
5097*0b57cec5SDimitry Andric     llvm::CallBase *callSite = dyn_cast<llvm::CallBase>(user);
5098*0b57cec5SDimitry Andric     if (!callSite) continue;
5099*0b57cec5SDimitry Andric     if (!callSite->isCallee(&*use))
5100*0b57cec5SDimitry Andric       continue;
5101*0b57cec5SDimitry Andric 
5102*0b57cec5SDimitry Andric     // If the return types don't match exactly, then we can't
5103*0b57cec5SDimitry Andric     // transform this call unless it's dead.
5104*0b57cec5SDimitry Andric     if (callSite->getType() != newRetTy && !callSite->use_empty())
5105*0b57cec5SDimitry Andric       continue;
5106*0b57cec5SDimitry Andric 
5107*0b57cec5SDimitry Andric     // Get the call site's attribute list.
5108*0b57cec5SDimitry Andric     SmallVector<llvm::AttributeSet, 8> newArgAttrs;
5109*0b57cec5SDimitry Andric     llvm::AttributeList oldAttrs = callSite->getAttributes();
5110*0b57cec5SDimitry Andric 
5111*0b57cec5SDimitry Andric     // If the function was passed too few arguments, don't transform.
5112*0b57cec5SDimitry Andric     unsigned newNumArgs = newFn->arg_size();
5113*0b57cec5SDimitry Andric     if (callSite->arg_size() < newNumArgs)
5114*0b57cec5SDimitry Andric       continue;
5115*0b57cec5SDimitry Andric 
5116*0b57cec5SDimitry Andric     // If extra arguments were passed, we silently drop them.
5117*0b57cec5SDimitry Andric     // If any of the types mismatch, we don't transform.
5118*0b57cec5SDimitry Andric     unsigned argNo = 0;
5119*0b57cec5SDimitry Andric     bool dontTransform = false;
5120*0b57cec5SDimitry Andric     for (llvm::Argument &A : newFn->args()) {
5121*0b57cec5SDimitry Andric       if (callSite->getArgOperand(argNo)->getType() != A.getType()) {
5122*0b57cec5SDimitry Andric         dontTransform = true;
5123*0b57cec5SDimitry Andric         break;
5124*0b57cec5SDimitry Andric       }
5125*0b57cec5SDimitry Andric 
5126*0b57cec5SDimitry Andric       // Add any parameter attributes.
5127349cc55cSDimitry Andric       newArgAttrs.push_back(oldAttrs.getParamAttrs(argNo));
5128*0b57cec5SDimitry Andric       argNo++;
5129*0b57cec5SDimitry Andric     }
5130*0b57cec5SDimitry Andric     if (dontTransform)
5131*0b57cec5SDimitry Andric       continue;
5132*0b57cec5SDimitry Andric 
5133*0b57cec5SDimitry Andric     // Okay, we can transform this.  Create the new call instruction and copy
5134*0b57cec5SDimitry Andric     // over the required information.
5135*0b57cec5SDimitry Andric     newArgs.append(callSite->arg_begin(), callSite->arg_begin() + argNo);
5136*0b57cec5SDimitry Andric 
5137*0b57cec5SDimitry Andric     // Copy over any operand bundles.
5138fe6060f1SDimitry Andric     SmallVector<llvm::OperandBundleDef, 1> newBundles;
5139*0b57cec5SDimitry Andric     callSite->getOperandBundlesAsDefs(newBundles);
5140*0b57cec5SDimitry Andric 
5141*0b57cec5SDimitry Andric     llvm::CallBase *newCall;
5142349cc55cSDimitry Andric     if (isa<llvm::CallInst>(callSite)) {
5143*0b57cec5SDimitry Andric       newCall =
5144*0b57cec5SDimitry Andric           llvm::CallInst::Create(newFn, newArgs, newBundles, "", callSite);
5145*0b57cec5SDimitry Andric     } else {
5146*0b57cec5SDimitry Andric       auto *oldInvoke = cast<llvm::InvokeInst>(callSite);
5147*0b57cec5SDimitry Andric       newCall = llvm::InvokeInst::Create(newFn, oldInvoke->getNormalDest(),
5148*0b57cec5SDimitry Andric                                          oldInvoke->getUnwindDest(), newArgs,
5149*0b57cec5SDimitry Andric                                          newBundles, "", callSite);
5150*0b57cec5SDimitry Andric     }
5151*0b57cec5SDimitry Andric     newArgs.clear(); // for the next iteration
5152*0b57cec5SDimitry Andric 
5153*0b57cec5SDimitry Andric     if (!newCall->getType()->isVoidTy())
5154*0b57cec5SDimitry Andric       newCall->takeName(callSite);
5155349cc55cSDimitry Andric     newCall->setAttributes(
5156349cc55cSDimitry Andric         llvm::AttributeList::get(newFn->getContext(), oldAttrs.getFnAttrs(),
5157349cc55cSDimitry Andric                                  oldAttrs.getRetAttrs(), newArgAttrs));
5158*0b57cec5SDimitry Andric     newCall->setCallingConv(callSite->getCallingConv());
5159*0b57cec5SDimitry Andric 
5160*0b57cec5SDimitry Andric     // Finally, remove the old call, replacing any uses with the new one.
5161*0b57cec5SDimitry Andric     if (!callSite->use_empty())
5162*0b57cec5SDimitry Andric       callSite->replaceAllUsesWith(newCall);
5163*0b57cec5SDimitry Andric 
5164*0b57cec5SDimitry Andric     // Copy debug location attached to CI.
5165*0b57cec5SDimitry Andric     if (callSite->getDebugLoc())
5166*0b57cec5SDimitry Andric       newCall->setDebugLoc(callSite->getDebugLoc());
5167*0b57cec5SDimitry Andric 
5168*0b57cec5SDimitry Andric     callSite->eraseFromParent();
5169*0b57cec5SDimitry Andric   }
5170*0b57cec5SDimitry Andric }
5171*0b57cec5SDimitry Andric 
5172*0b57cec5SDimitry Andric /// ReplaceUsesOfNonProtoTypeWithRealFunction - This function is called when we
5173*0b57cec5SDimitry Andric /// implement a function with no prototype, e.g. "int foo() {}".  If there are
5174*0b57cec5SDimitry Andric /// existing call uses of the old function in the module, this adjusts them to
5175*0b57cec5SDimitry Andric /// call the new function directly.
5176*0b57cec5SDimitry Andric ///
5177*0b57cec5SDimitry Andric /// This is not just a cleanup: the always_inline pass requires direct calls to
5178*0b57cec5SDimitry Andric /// functions to be able to inline them.  If there is a bitcast in the way, it
5179*0b57cec5SDimitry Andric /// won't inline them.  Instcombine normally deletes these calls, but it isn't
5180*0b57cec5SDimitry Andric /// run at -O0.
5181*0b57cec5SDimitry Andric static void ReplaceUsesOfNonProtoTypeWithRealFunction(llvm::GlobalValue *Old,
5182*0b57cec5SDimitry Andric                                                       llvm::Function *NewFn) {
5183*0b57cec5SDimitry Andric   // If we're redefining a global as a function, don't transform it.
5184*0b57cec5SDimitry Andric   if (!isa<llvm::Function>(Old)) return;
5185*0b57cec5SDimitry Andric 
5186*0b57cec5SDimitry Andric   replaceUsesOfNonProtoConstant(Old, NewFn);
5187*0b57cec5SDimitry Andric }
5188*0b57cec5SDimitry Andric 
5189*0b57cec5SDimitry Andric void CodeGenModule::HandleCXXStaticMemberVarInstantiation(VarDecl *VD) {
5190*0b57cec5SDimitry Andric   auto DK = VD->isThisDeclarationADefinition();
5191*0b57cec5SDimitry Andric   if (DK == VarDecl::Definition && VD->hasAttr<DLLImportAttr>())
5192*0b57cec5SDimitry Andric     return;
5193*0b57cec5SDimitry Andric 
5194*0b57cec5SDimitry Andric   TemplateSpecializationKind TSK = VD->getTemplateSpecializationKind();
5195*0b57cec5SDimitry Andric   // If we have a definition, this might be a deferred decl. If the
5196*0b57cec5SDimitry Andric   // instantiation is explicit, make sure we emit it at the end.
5197*0b57cec5SDimitry Andric   if (VD->getDefinition() && TSK == TSK_ExplicitInstantiationDefinition)
5198*0b57cec5SDimitry Andric     GetAddrOfGlobalVar(VD);
5199*0b57cec5SDimitry Andric 
5200*0b57cec5SDimitry Andric   EmitTopLevelDecl(VD);
5201*0b57cec5SDimitry Andric }
5202*0b57cec5SDimitry Andric 
5203*0b57cec5SDimitry Andric void CodeGenModule::EmitGlobalFunctionDefinition(GlobalDecl GD,
5204*0b57cec5SDimitry Andric                                                  llvm::GlobalValue *GV) {
5205*0b57cec5SDimitry Andric   const auto *D = cast<FunctionDecl>(GD.getDecl());
5206*0b57cec5SDimitry Andric 
5207*0b57cec5SDimitry Andric   // Compute the function info and LLVM type.
5208*0b57cec5SDimitry Andric   const CGFunctionInfo &FI = getTypes().arrangeGlobalDeclaration(GD);
5209*0b57cec5SDimitry Andric   llvm::FunctionType *Ty = getTypes().GetFunctionType(FI);
5210*0b57cec5SDimitry Andric 
5211*0b57cec5SDimitry Andric   // Get or create the prototype for the function.
52125ffd83dbSDimitry Andric   if (!GV || (GV->getValueType() != Ty))
5213*0b57cec5SDimitry Andric     GV = cast<llvm::GlobalValue>(GetAddrOfFunction(GD, Ty, /*ForVTable=*/false,
5214*0b57cec5SDimitry Andric                                                    /*DontDefer=*/true,
5215*0b57cec5SDimitry Andric                                                    ForDefinition));
5216*0b57cec5SDimitry Andric 
5217*0b57cec5SDimitry Andric   // Already emitted.
5218*0b57cec5SDimitry Andric   if (!GV->isDeclaration())
5219*0b57cec5SDimitry Andric     return;
5220*0b57cec5SDimitry Andric 
5221*0b57cec5SDimitry Andric   // We need to set linkage and visibility on the function before
5222*0b57cec5SDimitry Andric   // generating code for it because various parts of IR generation
5223*0b57cec5SDimitry Andric   // want to propagate this information down (e.g. to local static
5224*0b57cec5SDimitry Andric   // declarations).
5225*0b57cec5SDimitry Andric   auto *Fn = cast<llvm::Function>(GV);
5226*0b57cec5SDimitry Andric   setFunctionLinkage(GD, Fn);
5227*0b57cec5SDimitry Andric 
5228*0b57cec5SDimitry Andric   // FIXME: this is redundant with part of setFunctionDefinitionAttributes
5229*0b57cec5SDimitry Andric   setGVProperties(Fn, GD);
5230*0b57cec5SDimitry Andric 
5231*0b57cec5SDimitry Andric   MaybeHandleStaticInExternC(D, Fn);
5232*0b57cec5SDimitry Andric 
5233*0b57cec5SDimitry Andric   maybeSetTrivialComdat(*D, *Fn);
5234*0b57cec5SDimitry Andric 
5235e8d8bef9SDimitry Andric   // Set CodeGen attributes that represent floating point environment.
5236e8d8bef9SDimitry Andric   setLLVMFunctionFEnvAttributes(D, Fn);
5237e8d8bef9SDimitry Andric 
52385ffd83dbSDimitry Andric   CodeGenFunction(*this).GenerateCode(GD, Fn, FI);
5239*0b57cec5SDimitry Andric 
5240*0b57cec5SDimitry Andric   setNonAliasAttributes(GD, Fn);
5241*0b57cec5SDimitry Andric   SetLLVMFunctionAttributesForDefinition(D, Fn);
5242*0b57cec5SDimitry Andric 
5243*0b57cec5SDimitry Andric   if (const ConstructorAttr *CA = D->getAttr<ConstructorAttr>())
5244*0b57cec5SDimitry Andric     AddGlobalCtor(Fn, CA->getPriority());
5245*0b57cec5SDimitry Andric   if (const DestructorAttr *DA = D->getAttr<DestructorAttr>())
5246e8d8bef9SDimitry Andric     AddGlobalDtor(Fn, DA->getPriority(), true);
5247*0b57cec5SDimitry Andric   if (D->hasAttr<AnnotateAttr>())
5248*0b57cec5SDimitry Andric     AddGlobalAnnotations(D, Fn);
5249*0b57cec5SDimitry Andric }
5250*0b57cec5SDimitry Andric 
5251*0b57cec5SDimitry Andric void CodeGenModule::EmitAliasDefinition(GlobalDecl GD) {
5252*0b57cec5SDimitry Andric   const auto *D = cast<ValueDecl>(GD.getDecl());
5253*0b57cec5SDimitry Andric   const AliasAttr *AA = D->getAttr<AliasAttr>();
5254*0b57cec5SDimitry Andric   assert(AA && "Not an alias?");
5255*0b57cec5SDimitry Andric 
5256*0b57cec5SDimitry Andric   StringRef MangledName = getMangledName(GD);
5257*0b57cec5SDimitry Andric 
5258*0b57cec5SDimitry Andric   if (AA->getAliasee() == MangledName) {
5259*0b57cec5SDimitry Andric     Diags.Report(AA->getLocation(), diag::err_cyclic_alias) << 0;
5260*0b57cec5SDimitry Andric     return;
5261*0b57cec5SDimitry Andric   }
5262*0b57cec5SDimitry Andric 
5263*0b57cec5SDimitry Andric   // If there is a definition in the module, then it wins over the alias.
5264*0b57cec5SDimitry Andric   // This is dubious, but allow it to be safe.  Just ignore the alias.
5265*0b57cec5SDimitry Andric   llvm::GlobalValue *Entry = GetGlobalValue(MangledName);
5266*0b57cec5SDimitry Andric   if (Entry && !Entry->isDeclaration())
5267*0b57cec5SDimitry Andric     return;
5268*0b57cec5SDimitry Andric 
5269*0b57cec5SDimitry Andric   Aliases.push_back(GD);
5270*0b57cec5SDimitry Andric 
5271*0b57cec5SDimitry Andric   llvm::Type *DeclTy = getTypes().ConvertTypeForMem(D->getType());
5272*0b57cec5SDimitry Andric 
5273*0b57cec5SDimitry Andric   // Create a reference to the named value.  This ensures that it is emitted
5274*0b57cec5SDimitry Andric   // if a deferred decl.
5275*0b57cec5SDimitry Andric   llvm::Constant *Aliasee;
5276*0b57cec5SDimitry Andric   llvm::GlobalValue::LinkageTypes LT;
5277*0b57cec5SDimitry Andric   if (isa<llvm::FunctionType>(DeclTy)) {
5278*0b57cec5SDimitry Andric     Aliasee = GetOrCreateLLVMFunction(AA->getAliasee(), DeclTy, GD,
5279*0b57cec5SDimitry Andric                                       /*ForVTable=*/false);
5280*0b57cec5SDimitry Andric     LT = getFunctionLinkage(GD);
5281*0b57cec5SDimitry Andric   } else {
5282349cc55cSDimitry Andric     Aliasee = GetOrCreateLLVMGlobal(AA->getAliasee(), DeclTy, LangAS::Default,
5283*0b57cec5SDimitry Andric                                     /*D=*/nullptr);
5284e8d8bef9SDimitry Andric     if (const auto *VD = dyn_cast<VarDecl>(GD.getDecl()))
5285e8d8bef9SDimitry Andric       LT = getLLVMLinkageVarDefinition(VD, D->getType().isConstQualified());
5286e8d8bef9SDimitry Andric     else
5287e8d8bef9SDimitry Andric       LT = getFunctionLinkage(GD);
5288*0b57cec5SDimitry Andric   }
5289*0b57cec5SDimitry Andric 
5290*0b57cec5SDimitry Andric   // Create the new alias itself, but don't set a name yet.
52915ffd83dbSDimitry Andric   unsigned AS = Aliasee->getType()->getPointerAddressSpace();
5292*0b57cec5SDimitry Andric   auto *GA =
52935ffd83dbSDimitry Andric       llvm::GlobalAlias::create(DeclTy, AS, LT, "", Aliasee, &getModule());
5294*0b57cec5SDimitry Andric 
5295*0b57cec5SDimitry Andric   if (Entry) {
5296*0b57cec5SDimitry Andric     if (GA->getAliasee() == Entry) {
5297*0b57cec5SDimitry Andric       Diags.Report(AA->getLocation(), diag::err_cyclic_alias) << 0;
5298*0b57cec5SDimitry Andric       return;
5299*0b57cec5SDimitry Andric     }
5300*0b57cec5SDimitry Andric 
5301*0b57cec5SDimitry Andric     assert(Entry->isDeclaration());
5302*0b57cec5SDimitry Andric 
5303*0b57cec5SDimitry Andric     // If there is a declaration in the module, then we had an extern followed
5304*0b57cec5SDimitry Andric     // by the alias, as in:
5305*0b57cec5SDimitry Andric     //   extern int test6();
5306*0b57cec5SDimitry Andric     //   ...
5307*0b57cec5SDimitry Andric     //   int test6() __attribute__((alias("test7")));
5308*0b57cec5SDimitry Andric     //
5309*0b57cec5SDimitry Andric     // Remove it and replace uses of it with the alias.
5310*0b57cec5SDimitry Andric     GA->takeName(Entry);
5311*0b57cec5SDimitry Andric 
5312*0b57cec5SDimitry Andric     Entry->replaceAllUsesWith(llvm::ConstantExpr::getBitCast(GA,
5313*0b57cec5SDimitry Andric                                                           Entry->getType()));
5314*0b57cec5SDimitry Andric     Entry->eraseFromParent();
5315*0b57cec5SDimitry Andric   } else {
5316*0b57cec5SDimitry Andric     GA->setName(MangledName);
5317*0b57cec5SDimitry Andric   }
5318*0b57cec5SDimitry Andric 
5319*0b57cec5SDimitry Andric   // Set attributes which are particular to an alias; this is a
5320*0b57cec5SDimitry Andric   // specialization of the attributes which may be set on a global
5321*0b57cec5SDimitry Andric   // variable/function.
5322*0b57cec5SDimitry Andric   if (D->hasAttr<WeakAttr>() || D->hasAttr<WeakRefAttr>() ||
5323*0b57cec5SDimitry Andric       D->isWeakImported()) {
5324*0b57cec5SDimitry Andric     GA->setLinkage(llvm::Function::WeakAnyLinkage);
5325*0b57cec5SDimitry Andric   }
5326*0b57cec5SDimitry Andric 
5327*0b57cec5SDimitry Andric   if (const auto *VD = dyn_cast<VarDecl>(D))
5328*0b57cec5SDimitry Andric     if (VD->getTLSKind())
5329*0b57cec5SDimitry Andric       setTLSMode(GA, *VD);
5330*0b57cec5SDimitry Andric 
5331*0b57cec5SDimitry Andric   SetCommonAttributes(GD, GA);
533281ad6265SDimitry Andric 
533381ad6265SDimitry Andric   // Emit global alias debug information.
533481ad6265SDimitry Andric   if (isa<VarDecl>(D))
533581ad6265SDimitry Andric     if (CGDebugInfo *DI = getModuleDebugInfo())
533681ad6265SDimitry Andric       DI->EmitGlobalAlias(cast<llvm::GlobalValue>(GA->getAliasee()), GD);
5337*0b57cec5SDimitry Andric }
5338*0b57cec5SDimitry Andric 
5339*0b57cec5SDimitry Andric void CodeGenModule::emitIFuncDefinition(GlobalDecl GD) {
5340*0b57cec5SDimitry Andric   const auto *D = cast<ValueDecl>(GD.getDecl());
5341*0b57cec5SDimitry Andric   const IFuncAttr *IFA = D->getAttr<IFuncAttr>();
5342*0b57cec5SDimitry Andric   assert(IFA && "Not an ifunc?");
5343*0b57cec5SDimitry Andric 
5344*0b57cec5SDimitry Andric   StringRef MangledName = getMangledName(GD);
5345*0b57cec5SDimitry Andric 
5346*0b57cec5SDimitry Andric   if (IFA->getResolver() == MangledName) {
5347*0b57cec5SDimitry Andric     Diags.Report(IFA->getLocation(), diag::err_cyclic_alias) << 1;
5348*0b57cec5SDimitry Andric     return;
5349*0b57cec5SDimitry Andric   }
5350*0b57cec5SDimitry Andric 
5351*0b57cec5SDimitry Andric   // Report an error if some definition overrides ifunc.
5352*0b57cec5SDimitry Andric   llvm::GlobalValue *Entry = GetGlobalValue(MangledName);
5353*0b57cec5SDimitry Andric   if (Entry && !Entry->isDeclaration()) {
5354*0b57cec5SDimitry Andric     GlobalDecl OtherGD;
5355*0b57cec5SDimitry Andric     if (lookupRepresentativeDecl(MangledName, OtherGD) &&
5356*0b57cec5SDimitry Andric         DiagnosedConflictingDefinitions.insert(GD).second) {
5357*0b57cec5SDimitry Andric       Diags.Report(D->getLocation(), diag::err_duplicate_mangled_name)
5358*0b57cec5SDimitry Andric           << MangledName;
5359*0b57cec5SDimitry Andric       Diags.Report(OtherGD.getDecl()->getLocation(),
5360*0b57cec5SDimitry Andric                    diag::note_previous_definition);
5361*0b57cec5SDimitry Andric     }
5362*0b57cec5SDimitry Andric     return;
5363*0b57cec5SDimitry Andric   }
5364*0b57cec5SDimitry Andric 
5365*0b57cec5SDimitry Andric   Aliases.push_back(GD);
5366*0b57cec5SDimitry Andric 
5367*0b57cec5SDimitry Andric   llvm::Type *DeclTy = getTypes().ConvertTypeForMem(D->getType());
5368349cc55cSDimitry Andric   llvm::Type *ResolverTy = llvm::GlobalIFunc::getResolverFunctionType(DeclTy);
5369*0b57cec5SDimitry Andric   llvm::Constant *Resolver =
5370349cc55cSDimitry Andric       GetOrCreateLLVMFunction(IFA->getResolver(), ResolverTy, {},
5371*0b57cec5SDimitry Andric                               /*ForVTable=*/false);
5372*0b57cec5SDimitry Andric   llvm::GlobalIFunc *GIF =
5373*0b57cec5SDimitry Andric       llvm::GlobalIFunc::create(DeclTy, 0, llvm::Function::ExternalLinkage,
5374*0b57cec5SDimitry Andric                                 "", Resolver, &getModule());
5375*0b57cec5SDimitry Andric   if (Entry) {
5376*0b57cec5SDimitry Andric     if (GIF->getResolver() == Entry) {
5377*0b57cec5SDimitry Andric       Diags.Report(IFA->getLocation(), diag::err_cyclic_alias) << 1;
5378*0b57cec5SDimitry Andric       return;
5379*0b57cec5SDimitry Andric     }
5380*0b57cec5SDimitry Andric     assert(Entry->isDeclaration());
5381*0b57cec5SDimitry Andric 
5382*0b57cec5SDimitry Andric     // If there is a declaration in the module, then we had an extern followed
5383*0b57cec5SDimitry Andric     // by the ifunc, as in:
5384*0b57cec5SDimitry Andric     //   extern int test();
5385*0b57cec5SDimitry Andric     //   ...
5386*0b57cec5SDimitry Andric     //   int test() __attribute__((ifunc("resolver")));
5387*0b57cec5SDimitry Andric     //
5388*0b57cec5SDimitry Andric     // Remove it and replace uses of it with the ifunc.
5389*0b57cec5SDimitry Andric     GIF->takeName(Entry);
5390*0b57cec5SDimitry Andric 
5391*0b57cec5SDimitry Andric     Entry->replaceAllUsesWith(llvm::ConstantExpr::getBitCast(GIF,
5392*0b57cec5SDimitry Andric                                                           Entry->getType()));
5393*0b57cec5SDimitry Andric     Entry->eraseFromParent();
5394*0b57cec5SDimitry Andric   } else
5395*0b57cec5SDimitry Andric     GIF->setName(MangledName);
5396*0b57cec5SDimitry Andric 
5397*0b57cec5SDimitry Andric   SetCommonAttributes(GD, GIF);
5398*0b57cec5SDimitry Andric }
5399*0b57cec5SDimitry Andric 
5400*0b57cec5SDimitry Andric llvm::Function *CodeGenModule::getIntrinsic(unsigned IID,
5401*0b57cec5SDimitry Andric                                             ArrayRef<llvm::Type*> Tys) {
5402*0b57cec5SDimitry Andric   return llvm::Intrinsic::getDeclaration(&getModule(), (llvm::Intrinsic::ID)IID,
5403*0b57cec5SDimitry Andric                                          Tys);
5404*0b57cec5SDimitry Andric }
5405*0b57cec5SDimitry Andric 
5406*0b57cec5SDimitry Andric static llvm::StringMapEntry<llvm::GlobalVariable *> &
5407*0b57cec5SDimitry Andric GetConstantCFStringEntry(llvm::StringMap<llvm::GlobalVariable *> &Map,
5408*0b57cec5SDimitry Andric                          const StringLiteral *Literal, bool TargetIsLSB,
5409*0b57cec5SDimitry Andric                          bool &IsUTF16, unsigned &StringLength) {
5410*0b57cec5SDimitry Andric   StringRef String = Literal->getString();
5411*0b57cec5SDimitry Andric   unsigned NumBytes = String.size();
5412*0b57cec5SDimitry Andric 
5413*0b57cec5SDimitry Andric   // Check for simple case.
5414*0b57cec5SDimitry Andric   if (!Literal->containsNonAsciiOrNull()) {
5415*0b57cec5SDimitry Andric     StringLength = NumBytes;
5416*0b57cec5SDimitry Andric     return *Map.insert(std::make_pair(String, nullptr)).first;
5417*0b57cec5SDimitry Andric   }
5418*0b57cec5SDimitry Andric 
5419*0b57cec5SDimitry Andric   // Otherwise, convert the UTF8 literals into a string of shorts.
5420*0b57cec5SDimitry Andric   IsUTF16 = true;
5421*0b57cec5SDimitry Andric 
5422*0b57cec5SDimitry Andric   SmallVector<llvm::UTF16, 128> ToBuf(NumBytes + 1); // +1 for ending nulls.
5423*0b57cec5SDimitry Andric   const llvm::UTF8 *FromPtr = (const llvm::UTF8 *)String.data();
5424*0b57cec5SDimitry Andric   llvm::UTF16 *ToPtr = &ToBuf[0];
5425*0b57cec5SDimitry Andric 
5426*0b57cec5SDimitry Andric   (void)llvm::ConvertUTF8toUTF16(&FromPtr, FromPtr + NumBytes, &ToPtr,
5427*0b57cec5SDimitry Andric                                  ToPtr + NumBytes, llvm::strictConversion);
5428*0b57cec5SDimitry Andric 
5429*0b57cec5SDimitry Andric   // ConvertUTF8toUTF16 returns the length in ToPtr.
5430*0b57cec5SDimitry Andric   StringLength = ToPtr - &ToBuf[0];
5431*0b57cec5SDimitry Andric 
5432*0b57cec5SDimitry Andric   // Add an explicit null.
5433*0b57cec5SDimitry Andric   *ToPtr = 0;
5434*0b57cec5SDimitry Andric   return *Map.insert(std::make_pair(
5435*0b57cec5SDimitry Andric                          StringRef(reinterpret_cast<const char *>(ToBuf.data()),
5436*0b57cec5SDimitry Andric                                    (StringLength + 1) * 2),
5437*0b57cec5SDimitry Andric                          nullptr)).first;
5438*0b57cec5SDimitry Andric }
5439*0b57cec5SDimitry Andric 
5440*0b57cec5SDimitry Andric ConstantAddress
5441*0b57cec5SDimitry Andric CodeGenModule::GetAddrOfConstantCFString(const StringLiteral *Literal) {
5442*0b57cec5SDimitry Andric   unsigned StringLength = 0;
5443*0b57cec5SDimitry Andric   bool isUTF16 = false;
5444*0b57cec5SDimitry Andric   llvm::StringMapEntry<llvm::GlobalVariable *> &Entry =
5445*0b57cec5SDimitry Andric       GetConstantCFStringEntry(CFConstantStringMap, Literal,
5446*0b57cec5SDimitry Andric                                getDataLayout().isLittleEndian(), isUTF16,
5447*0b57cec5SDimitry Andric                                StringLength);
5448*0b57cec5SDimitry Andric 
5449*0b57cec5SDimitry Andric   if (auto *C = Entry.second)
54500eae32dcSDimitry Andric     return ConstantAddress(
54510eae32dcSDimitry Andric         C, C->getValueType(), CharUnits::fromQuantity(C->getAlignment()));
5452*0b57cec5SDimitry Andric 
5453*0b57cec5SDimitry Andric   llvm::Constant *Zero = llvm::Constant::getNullValue(Int32Ty);
5454*0b57cec5SDimitry Andric   llvm::Constant *Zeros[] = { Zero, Zero };
5455*0b57cec5SDimitry Andric 
5456*0b57cec5SDimitry Andric   const ASTContext &Context = getContext();
5457*0b57cec5SDimitry Andric   const llvm::Triple &Triple = getTriple();
5458*0b57cec5SDimitry Andric 
5459*0b57cec5SDimitry Andric   const auto CFRuntime = getLangOpts().CFRuntime;
5460*0b57cec5SDimitry Andric   const bool IsSwiftABI =
5461*0b57cec5SDimitry Andric       static_cast<unsigned>(CFRuntime) >=
5462*0b57cec5SDimitry Andric       static_cast<unsigned>(LangOptions::CoreFoundationABI::Swift);
5463*0b57cec5SDimitry Andric   const bool IsSwift4_1 = CFRuntime == LangOptions::CoreFoundationABI::Swift4_1;
5464*0b57cec5SDimitry Andric 
5465*0b57cec5SDimitry Andric   // If we don't already have it, get __CFConstantStringClassReference.
5466*0b57cec5SDimitry Andric   if (!CFConstantStringClassRef) {
5467*0b57cec5SDimitry Andric     const char *CFConstantStringClassName = "__CFConstantStringClassReference";
5468*0b57cec5SDimitry Andric     llvm::Type *Ty = getTypes().ConvertType(getContext().IntTy);
5469*0b57cec5SDimitry Andric     Ty = llvm::ArrayType::get(Ty, 0);
5470*0b57cec5SDimitry Andric 
5471*0b57cec5SDimitry Andric     switch (CFRuntime) {
5472*0b57cec5SDimitry Andric     default: break;
5473*0b57cec5SDimitry Andric     case LangOptions::CoreFoundationABI::Swift: LLVM_FALLTHROUGH;
5474*0b57cec5SDimitry Andric     case LangOptions::CoreFoundationABI::Swift5_0:
5475*0b57cec5SDimitry Andric       CFConstantStringClassName =
5476*0b57cec5SDimitry Andric           Triple.isOSDarwin() ? "$s15SwiftFoundation19_NSCFConstantStringCN"
5477*0b57cec5SDimitry Andric                               : "$s10Foundation19_NSCFConstantStringCN";
5478*0b57cec5SDimitry Andric       Ty = IntPtrTy;
5479*0b57cec5SDimitry Andric       break;
5480*0b57cec5SDimitry Andric     case LangOptions::CoreFoundationABI::Swift4_2:
5481*0b57cec5SDimitry Andric       CFConstantStringClassName =
5482*0b57cec5SDimitry Andric           Triple.isOSDarwin() ? "$S15SwiftFoundation19_NSCFConstantStringCN"
5483*0b57cec5SDimitry Andric                               : "$S10Foundation19_NSCFConstantStringCN";
5484*0b57cec5SDimitry Andric       Ty = IntPtrTy;
5485*0b57cec5SDimitry Andric       break;
5486*0b57cec5SDimitry Andric     case LangOptions::CoreFoundationABI::Swift4_1:
5487*0b57cec5SDimitry Andric       CFConstantStringClassName =
5488*0b57cec5SDimitry Andric           Triple.isOSDarwin() ? "__T015SwiftFoundation19_NSCFConstantStringCN"
5489*0b57cec5SDimitry Andric                               : "__T010Foundation19_NSCFConstantStringCN";
5490*0b57cec5SDimitry Andric       Ty = IntPtrTy;
5491*0b57cec5SDimitry Andric       break;
5492*0b57cec5SDimitry Andric     }
5493*0b57cec5SDimitry Andric 
5494*0b57cec5SDimitry Andric     llvm::Constant *C = CreateRuntimeVariable(Ty, CFConstantStringClassName);
5495*0b57cec5SDimitry Andric 
5496*0b57cec5SDimitry Andric     if (Triple.isOSBinFormatELF() || Triple.isOSBinFormatCOFF()) {
5497*0b57cec5SDimitry Andric       llvm::GlobalValue *GV = nullptr;
5498*0b57cec5SDimitry Andric 
5499*0b57cec5SDimitry Andric       if ((GV = dyn_cast<llvm::GlobalValue>(C))) {
5500*0b57cec5SDimitry Andric         IdentifierInfo &II = Context.Idents.get(GV->getName());
5501*0b57cec5SDimitry Andric         TranslationUnitDecl *TUDecl = Context.getTranslationUnitDecl();
5502*0b57cec5SDimitry Andric         DeclContext *DC = TranslationUnitDecl::castToDeclContext(TUDecl);
5503*0b57cec5SDimitry Andric 
5504*0b57cec5SDimitry Andric         const VarDecl *VD = nullptr;
5505fe6060f1SDimitry Andric         for (const auto *Result : DC->lookup(&II))
5506*0b57cec5SDimitry Andric           if ((VD = dyn_cast<VarDecl>(Result)))
5507*0b57cec5SDimitry Andric             break;
5508*0b57cec5SDimitry Andric 
5509*0b57cec5SDimitry Andric         if (Triple.isOSBinFormatELF()) {
5510*0b57cec5SDimitry Andric           if (!VD)
5511*0b57cec5SDimitry Andric             GV->setLinkage(llvm::GlobalValue::ExternalLinkage);
5512*0b57cec5SDimitry Andric         } else {
5513*0b57cec5SDimitry Andric           GV->setLinkage(llvm::GlobalValue::ExternalLinkage);
5514*0b57cec5SDimitry Andric           if (!VD || !VD->hasAttr<DLLExportAttr>())
5515*0b57cec5SDimitry Andric             GV->setDLLStorageClass(llvm::GlobalValue::DLLImportStorageClass);
5516*0b57cec5SDimitry Andric           else
5517*0b57cec5SDimitry Andric             GV->setDLLStorageClass(llvm::GlobalValue::DLLExportStorageClass);
5518*0b57cec5SDimitry Andric         }
5519*0b57cec5SDimitry Andric 
5520*0b57cec5SDimitry Andric         setDSOLocal(GV);
5521*0b57cec5SDimitry Andric       }
5522*0b57cec5SDimitry Andric     }
5523*0b57cec5SDimitry Andric 
5524*0b57cec5SDimitry Andric     // Decay array -> ptr
5525*0b57cec5SDimitry Andric     CFConstantStringClassRef =
5526*0b57cec5SDimitry Andric         IsSwiftABI ? llvm::ConstantExpr::getPtrToInt(C, Ty)
5527*0b57cec5SDimitry Andric                    : llvm::ConstantExpr::getGetElementPtr(Ty, C, Zeros);
5528*0b57cec5SDimitry Andric   }
5529*0b57cec5SDimitry Andric 
5530*0b57cec5SDimitry Andric   QualType CFTy = Context.getCFConstantStringType();
5531*0b57cec5SDimitry Andric 
5532*0b57cec5SDimitry Andric   auto *STy = cast<llvm::StructType>(getTypes().ConvertType(CFTy));
5533*0b57cec5SDimitry Andric 
5534*0b57cec5SDimitry Andric   ConstantInitBuilder Builder(*this);
5535*0b57cec5SDimitry Andric   auto Fields = Builder.beginStruct(STy);
5536*0b57cec5SDimitry Andric 
5537*0b57cec5SDimitry Andric   // Class pointer.
553881ad6265SDimitry Andric   Fields.add(cast<llvm::Constant>(CFConstantStringClassRef));
5539*0b57cec5SDimitry Andric 
5540*0b57cec5SDimitry Andric   // Flags.
5541*0b57cec5SDimitry Andric   if (IsSwiftABI) {
5542*0b57cec5SDimitry Andric     Fields.addInt(IntPtrTy, IsSwift4_1 ? 0x05 : 0x01);
5543*0b57cec5SDimitry Andric     Fields.addInt(Int64Ty, isUTF16 ? 0x07d0 : 0x07c8);
5544*0b57cec5SDimitry Andric   } else {
5545*0b57cec5SDimitry Andric     Fields.addInt(IntTy, isUTF16 ? 0x07d0 : 0x07C8);
5546*0b57cec5SDimitry Andric   }
5547*0b57cec5SDimitry Andric 
5548*0b57cec5SDimitry Andric   // String pointer.
5549*0b57cec5SDimitry Andric   llvm::Constant *C = nullptr;
5550*0b57cec5SDimitry Andric   if (isUTF16) {
5551*0b57cec5SDimitry Andric     auto Arr = llvm::makeArrayRef(
5552*0b57cec5SDimitry Andric         reinterpret_cast<uint16_t *>(const_cast<char *>(Entry.first().data())),
5553*0b57cec5SDimitry Andric         Entry.first().size() / 2);
5554*0b57cec5SDimitry Andric     C = llvm::ConstantDataArray::get(VMContext, Arr);
5555*0b57cec5SDimitry Andric   } else {
5556*0b57cec5SDimitry Andric     C = llvm::ConstantDataArray::getString(VMContext, Entry.first());
5557*0b57cec5SDimitry Andric   }
5558*0b57cec5SDimitry Andric 
5559*0b57cec5SDimitry Andric   // Note: -fwritable-strings doesn't make the backing store strings of
5560*0b57cec5SDimitry Andric   // CFStrings writable. (See <rdar://problem/10657500>)
5561*0b57cec5SDimitry Andric   auto *GV =
5562*0b57cec5SDimitry Andric       new llvm::GlobalVariable(getModule(), C->getType(), /*isConstant=*/true,
5563*0b57cec5SDimitry Andric                                llvm::GlobalValue::PrivateLinkage, C, ".str");
5564*0b57cec5SDimitry Andric   GV->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global);
5565*0b57cec5SDimitry Andric   // Don't enforce the target's minimum global alignment, since the only use
5566*0b57cec5SDimitry Andric   // of the string is via this class initializer.
5567*0b57cec5SDimitry Andric   CharUnits Align = isUTF16 ? Context.getTypeAlignInChars(Context.ShortTy)
5568*0b57cec5SDimitry Andric                             : Context.getTypeAlignInChars(Context.CharTy);
5569a7dea167SDimitry Andric   GV->setAlignment(Align.getAsAlign());
5570*0b57cec5SDimitry Andric 
5571*0b57cec5SDimitry Andric   // FIXME: We set the section explicitly to avoid a bug in ld64 224.1.
5572*0b57cec5SDimitry Andric   // Without it LLVM can merge the string with a non unnamed_addr one during
5573*0b57cec5SDimitry Andric   // LTO.  Doing that changes the section it ends in, which surprises ld64.
5574*0b57cec5SDimitry Andric   if (Triple.isOSBinFormatMachO())
5575*0b57cec5SDimitry Andric     GV->setSection(isUTF16 ? "__TEXT,__ustring"
5576*0b57cec5SDimitry Andric                            : "__TEXT,__cstring,cstring_literals");
5577*0b57cec5SDimitry Andric   // Make sure the literal ends up in .rodata to allow for safe ICF and for
5578*0b57cec5SDimitry Andric   // the static linker to adjust permissions to read-only later on.
5579*0b57cec5SDimitry Andric   else if (Triple.isOSBinFormatELF())
5580*0b57cec5SDimitry Andric     GV->setSection(".rodata");
5581*0b57cec5SDimitry Andric 
5582*0b57cec5SDimitry Andric   // String.
5583*0b57cec5SDimitry Andric   llvm::Constant *Str =
5584*0b57cec5SDimitry Andric       llvm::ConstantExpr::getGetElementPtr(GV->getValueType(), GV, Zeros);
5585*0b57cec5SDimitry Andric 
5586*0b57cec5SDimitry Andric   if (isUTF16)
5587*0b57cec5SDimitry Andric     // Cast the UTF16 string to the correct type.
5588*0b57cec5SDimitry Andric     Str = llvm::ConstantExpr::getBitCast(Str, Int8PtrTy);
5589*0b57cec5SDimitry Andric   Fields.add(Str);
5590*0b57cec5SDimitry Andric 
5591*0b57cec5SDimitry Andric   // String length.
5592*0b57cec5SDimitry Andric   llvm::IntegerType *LengthTy =
5593*0b57cec5SDimitry Andric       llvm::IntegerType::get(getModule().getContext(),
5594*0b57cec5SDimitry Andric                              Context.getTargetInfo().getLongWidth());
5595*0b57cec5SDimitry Andric   if (IsSwiftABI) {
5596*0b57cec5SDimitry Andric     if (CFRuntime == LangOptions::CoreFoundationABI::Swift4_1 ||
5597*0b57cec5SDimitry Andric         CFRuntime == LangOptions::CoreFoundationABI::Swift4_2)
5598*0b57cec5SDimitry Andric       LengthTy = Int32Ty;
5599*0b57cec5SDimitry Andric     else
5600*0b57cec5SDimitry Andric       LengthTy = IntPtrTy;
5601*0b57cec5SDimitry Andric   }
5602*0b57cec5SDimitry Andric   Fields.addInt(LengthTy, StringLength);
5603*0b57cec5SDimitry Andric 
5604a7dea167SDimitry Andric   // Swift ABI requires 8-byte alignment to ensure that the _Atomic(uint64_t) is
5605a7dea167SDimitry Andric   // properly aligned on 32-bit platforms.
5606a7dea167SDimitry Andric   CharUnits Alignment =
5607a7dea167SDimitry Andric       IsSwiftABI ? Context.toCharUnitsFromBits(64) : getPointerAlign();
5608*0b57cec5SDimitry Andric 
5609*0b57cec5SDimitry Andric   // The struct.
5610*0b57cec5SDimitry Andric   GV = Fields.finishAndCreateGlobal("_unnamed_cfstring_", Alignment,
5611*0b57cec5SDimitry Andric                                     /*isConstant=*/false,
5612*0b57cec5SDimitry Andric                                     llvm::GlobalVariable::PrivateLinkage);
5613*0b57cec5SDimitry Andric   GV->addAttribute("objc_arc_inert");
5614*0b57cec5SDimitry Andric   switch (Triple.getObjectFormat()) {
5615*0b57cec5SDimitry Andric   case llvm::Triple::UnknownObjectFormat:
5616*0b57cec5SDimitry Andric     llvm_unreachable("unknown file format");
561781ad6265SDimitry Andric   case llvm::Triple::DXContainer:
5618e8d8bef9SDimitry Andric   case llvm::Triple::GOFF:
561981ad6265SDimitry Andric   case llvm::Triple::SPIRV:
5620*0b57cec5SDimitry Andric   case llvm::Triple::XCOFF:
562181ad6265SDimitry Andric     llvm_unreachable("unimplemented");
5622*0b57cec5SDimitry Andric   case llvm::Triple::COFF:
5623*0b57cec5SDimitry Andric   case llvm::Triple::ELF:
5624*0b57cec5SDimitry Andric   case llvm::Triple::Wasm:
5625*0b57cec5SDimitry Andric     GV->setSection("cfstring");
5626*0b57cec5SDimitry Andric     break;
5627*0b57cec5SDimitry Andric   case llvm::Triple::MachO:
5628*0b57cec5SDimitry Andric     GV->setSection("__DATA,__cfstring");
5629*0b57cec5SDimitry Andric     break;
5630*0b57cec5SDimitry Andric   }
5631*0b57cec5SDimitry Andric   Entry.second = GV;
5632*0b57cec5SDimitry Andric 
56330eae32dcSDimitry Andric   return ConstantAddress(GV, GV->getValueType(), Alignment);
5634*0b57cec5SDimitry Andric }
5635*0b57cec5SDimitry Andric 
5636*0b57cec5SDimitry Andric bool CodeGenModule::getExpressionLocationsEnabled() const {
5637*0b57cec5SDimitry Andric   return !CodeGenOpts.EmitCodeView || CodeGenOpts.DebugColumnInfo;
5638*0b57cec5SDimitry Andric }
5639*0b57cec5SDimitry Andric 
5640*0b57cec5SDimitry Andric QualType CodeGenModule::getObjCFastEnumerationStateType() {
5641*0b57cec5SDimitry Andric   if (ObjCFastEnumerationStateType.isNull()) {
5642*0b57cec5SDimitry Andric     RecordDecl *D = Context.buildImplicitRecord("__objcFastEnumerationState");
5643*0b57cec5SDimitry Andric     D->startDefinition();
5644*0b57cec5SDimitry Andric 
5645*0b57cec5SDimitry Andric     QualType FieldTypes[] = {
5646*0b57cec5SDimitry Andric       Context.UnsignedLongTy,
5647*0b57cec5SDimitry Andric       Context.getPointerType(Context.getObjCIdType()),
5648*0b57cec5SDimitry Andric       Context.getPointerType(Context.UnsignedLongTy),
5649*0b57cec5SDimitry Andric       Context.getConstantArrayType(Context.UnsignedLongTy,
5650a7dea167SDimitry Andric                            llvm::APInt(32, 5), nullptr, ArrayType::Normal, 0)
5651*0b57cec5SDimitry Andric     };
5652*0b57cec5SDimitry Andric 
5653*0b57cec5SDimitry Andric     for (size_t i = 0; i < 4; ++i) {
5654*0b57cec5SDimitry Andric       FieldDecl *Field = FieldDecl::Create(Context,
5655*0b57cec5SDimitry Andric                                            D,
5656*0b57cec5SDimitry Andric                                            SourceLocation(),
5657*0b57cec5SDimitry Andric                                            SourceLocation(), nullptr,
5658*0b57cec5SDimitry Andric                                            FieldTypes[i], /*TInfo=*/nullptr,
5659*0b57cec5SDimitry Andric                                            /*BitWidth=*/nullptr,
5660*0b57cec5SDimitry Andric                                            /*Mutable=*/false,
5661*0b57cec5SDimitry Andric                                            ICIS_NoInit);
5662*0b57cec5SDimitry Andric       Field->setAccess(AS_public);
5663*0b57cec5SDimitry Andric       D->addDecl(Field);
5664*0b57cec5SDimitry Andric     }
5665*0b57cec5SDimitry Andric 
5666*0b57cec5SDimitry Andric     D->completeDefinition();
5667*0b57cec5SDimitry Andric     ObjCFastEnumerationStateType = Context.getTagDeclType(D);
5668*0b57cec5SDimitry Andric   }
5669*0b57cec5SDimitry Andric 
5670*0b57cec5SDimitry Andric   return ObjCFastEnumerationStateType;
5671*0b57cec5SDimitry Andric }
5672*0b57cec5SDimitry Andric 
5673*0b57cec5SDimitry Andric llvm::Constant *
5674*0b57cec5SDimitry Andric CodeGenModule::GetConstantArrayFromStringLiteral(const StringLiteral *E) {
5675*0b57cec5SDimitry Andric   assert(!E->getType()->isPointerType() && "Strings are always arrays");
5676*0b57cec5SDimitry Andric 
5677*0b57cec5SDimitry Andric   // Don't emit it as the address of the string, emit the string data itself
5678*0b57cec5SDimitry Andric   // as an inline array.
5679*0b57cec5SDimitry Andric   if (E->getCharByteWidth() == 1) {
5680*0b57cec5SDimitry Andric     SmallString<64> Str(E->getString());
5681*0b57cec5SDimitry Andric 
5682*0b57cec5SDimitry Andric     // Resize the string to the right size, which is indicated by its type.
5683*0b57cec5SDimitry Andric     const ConstantArrayType *CAT = Context.getAsConstantArrayType(E->getType());
5684*0b57cec5SDimitry Andric     Str.resize(CAT->getSize().getZExtValue());
5685*0b57cec5SDimitry Andric     return llvm::ConstantDataArray::getString(VMContext, Str, false);
5686*0b57cec5SDimitry Andric   }
5687*0b57cec5SDimitry Andric 
5688*0b57cec5SDimitry Andric   auto *AType = cast<llvm::ArrayType>(getTypes().ConvertType(E->getType()));
5689*0b57cec5SDimitry Andric   llvm::Type *ElemTy = AType->getElementType();
5690*0b57cec5SDimitry Andric   unsigned NumElements = AType->getNumElements();
5691*0b57cec5SDimitry Andric 
5692*0b57cec5SDimitry Andric   // Wide strings have either 2-byte or 4-byte elements.
5693*0b57cec5SDimitry Andric   if (ElemTy->getPrimitiveSizeInBits() == 16) {
5694*0b57cec5SDimitry Andric     SmallVector<uint16_t, 32> Elements;
5695*0b57cec5SDimitry Andric     Elements.reserve(NumElements);
5696*0b57cec5SDimitry Andric 
5697*0b57cec5SDimitry Andric     for(unsigned i = 0, e = E->getLength(); i != e; ++i)
5698*0b57cec5SDimitry Andric       Elements.push_back(E->getCodeUnit(i));
5699*0b57cec5SDimitry Andric     Elements.resize(NumElements);
5700*0b57cec5SDimitry Andric     return llvm::ConstantDataArray::get(VMContext, Elements);
5701*0b57cec5SDimitry Andric   }
5702*0b57cec5SDimitry Andric 
5703*0b57cec5SDimitry Andric   assert(ElemTy->getPrimitiveSizeInBits() == 32);
5704*0b57cec5SDimitry Andric   SmallVector<uint32_t, 32> Elements;
5705*0b57cec5SDimitry Andric   Elements.reserve(NumElements);
5706*0b57cec5SDimitry Andric 
5707*0b57cec5SDimitry Andric   for(unsigned i = 0, e = E->getLength(); i != e; ++i)
5708*0b57cec5SDimitry Andric     Elements.push_back(E->getCodeUnit(i));
5709*0b57cec5SDimitry Andric   Elements.resize(NumElements);
5710*0b57cec5SDimitry Andric   return llvm::ConstantDataArray::get(VMContext, Elements);
5711*0b57cec5SDimitry Andric }
5712*0b57cec5SDimitry Andric 
5713*0b57cec5SDimitry Andric static llvm::GlobalVariable *
5714*0b57cec5SDimitry Andric GenerateStringLiteral(llvm::Constant *C, llvm::GlobalValue::LinkageTypes LT,
5715*0b57cec5SDimitry Andric                       CodeGenModule &CGM, StringRef GlobalName,
5716*0b57cec5SDimitry Andric                       CharUnits Alignment) {
5717*0b57cec5SDimitry Andric   unsigned AddrSpace = CGM.getContext().getTargetAddressSpace(
5718fe6060f1SDimitry Andric       CGM.GetGlobalConstantAddressSpace());
5719*0b57cec5SDimitry Andric 
5720*0b57cec5SDimitry Andric   llvm::Module &M = CGM.getModule();
5721*0b57cec5SDimitry Andric   // Create a global variable for this string
5722*0b57cec5SDimitry Andric   auto *GV = new llvm::GlobalVariable(
5723*0b57cec5SDimitry Andric       M, C->getType(), !CGM.getLangOpts().WritableStrings, LT, C, GlobalName,
5724*0b57cec5SDimitry Andric       nullptr, llvm::GlobalVariable::NotThreadLocal, AddrSpace);
5725a7dea167SDimitry Andric   GV->setAlignment(Alignment.getAsAlign());
5726*0b57cec5SDimitry Andric   GV->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global);
5727*0b57cec5SDimitry Andric   if (GV->isWeakForLinker()) {
5728*0b57cec5SDimitry Andric     assert(CGM.supportsCOMDAT() && "Only COFF uses weak string literals");
5729*0b57cec5SDimitry Andric     GV->setComdat(M.getOrInsertComdat(GV->getName()));
5730*0b57cec5SDimitry Andric   }
5731*0b57cec5SDimitry Andric   CGM.setDSOLocal(GV);
5732*0b57cec5SDimitry Andric 
5733*0b57cec5SDimitry Andric   return GV;
5734*0b57cec5SDimitry Andric }
5735*0b57cec5SDimitry Andric 
5736*0b57cec5SDimitry Andric /// GetAddrOfConstantStringFromLiteral - Return a pointer to a
5737*0b57cec5SDimitry Andric /// constant array for the given string literal.
5738*0b57cec5SDimitry Andric ConstantAddress
5739*0b57cec5SDimitry Andric CodeGenModule::GetAddrOfConstantStringFromLiteral(const StringLiteral *S,
5740*0b57cec5SDimitry Andric                                                   StringRef Name) {
5741*0b57cec5SDimitry Andric   CharUnits Alignment = getContext().getAlignOfGlobalVarInChars(S->getType());
5742*0b57cec5SDimitry Andric 
5743*0b57cec5SDimitry Andric   llvm::Constant *C = GetConstantArrayFromStringLiteral(S);
5744*0b57cec5SDimitry Andric   llvm::GlobalVariable **Entry = nullptr;
5745*0b57cec5SDimitry Andric   if (!LangOpts.WritableStrings) {
5746*0b57cec5SDimitry Andric     Entry = &ConstantStringMap[C];
5747*0b57cec5SDimitry Andric     if (auto GV = *Entry) {
5748349cc55cSDimitry Andric       if (uint64_t(Alignment.getQuantity()) > GV->getAlignment())
5749a7dea167SDimitry Andric         GV->setAlignment(Alignment.getAsAlign());
5750*0b57cec5SDimitry Andric       return ConstantAddress(castStringLiteralToDefaultAddressSpace(*this, GV),
57510eae32dcSDimitry Andric                              GV->getValueType(), Alignment);
5752*0b57cec5SDimitry Andric     }
5753*0b57cec5SDimitry Andric   }
5754*0b57cec5SDimitry Andric 
5755*0b57cec5SDimitry Andric   SmallString<256> MangledNameBuffer;
5756*0b57cec5SDimitry Andric   StringRef GlobalVariableName;
5757*0b57cec5SDimitry Andric   llvm::GlobalValue::LinkageTypes LT;
5758*0b57cec5SDimitry Andric 
5759*0b57cec5SDimitry Andric   // Mangle the string literal if that's how the ABI merges duplicate strings.
5760*0b57cec5SDimitry Andric   // Don't do it if they are writable, since we don't want writes in one TU to
5761*0b57cec5SDimitry Andric   // affect strings in another.
5762*0b57cec5SDimitry Andric   if (getCXXABI().getMangleContext().shouldMangleStringLiteral(S) &&
5763*0b57cec5SDimitry Andric       !LangOpts.WritableStrings) {
5764*0b57cec5SDimitry Andric     llvm::raw_svector_ostream Out(MangledNameBuffer);
5765*0b57cec5SDimitry Andric     getCXXABI().getMangleContext().mangleStringLiteral(S, Out);
5766*0b57cec5SDimitry Andric     LT = llvm::GlobalValue::LinkOnceODRLinkage;
5767*0b57cec5SDimitry Andric     GlobalVariableName = MangledNameBuffer;
5768*0b57cec5SDimitry Andric   } else {
5769*0b57cec5SDimitry Andric     LT = llvm::GlobalValue::PrivateLinkage;
5770*0b57cec5SDimitry Andric     GlobalVariableName = Name;
5771*0b57cec5SDimitry Andric   }
5772*0b57cec5SDimitry Andric 
5773*0b57cec5SDimitry Andric   auto GV = GenerateStringLiteral(C, LT, *this, GlobalVariableName, Alignment);
577481ad6265SDimitry Andric 
577581ad6265SDimitry Andric   CGDebugInfo *DI = getModuleDebugInfo();
577681ad6265SDimitry Andric   if (DI && getCodeGenOpts().hasReducedDebugInfo())
577781ad6265SDimitry Andric     DI->AddStringLiteralDebugInfo(GV, S);
577881ad6265SDimitry Andric 
5779*0b57cec5SDimitry Andric   if (Entry)
5780*0b57cec5SDimitry Andric     *Entry = GV;
5781*0b57cec5SDimitry Andric 
578281ad6265SDimitry Andric   SanitizerMD->reportGlobal(GV, S->getStrTokenLoc(0), "<string literal>");
5783*0b57cec5SDimitry Andric 
5784*0b57cec5SDimitry Andric   return ConstantAddress(castStringLiteralToDefaultAddressSpace(*this, GV),
57850eae32dcSDimitry Andric                          GV->getValueType(), Alignment);
5786*0b57cec5SDimitry Andric }
5787*0b57cec5SDimitry Andric 
5788*0b57cec5SDimitry Andric /// GetAddrOfConstantStringFromObjCEncode - Return a pointer to a constant
5789*0b57cec5SDimitry Andric /// array for the given ObjCEncodeExpr node.
5790*0b57cec5SDimitry Andric ConstantAddress
5791*0b57cec5SDimitry Andric CodeGenModule::GetAddrOfConstantStringFromObjCEncode(const ObjCEncodeExpr *E) {
5792*0b57cec5SDimitry Andric   std::string Str;
5793*0b57cec5SDimitry Andric   getContext().getObjCEncodingForType(E->getEncodedType(), Str);
5794*0b57cec5SDimitry Andric 
5795*0b57cec5SDimitry Andric   return GetAddrOfConstantCString(Str);
5796*0b57cec5SDimitry Andric }
5797*0b57cec5SDimitry Andric 
5798*0b57cec5SDimitry Andric /// GetAddrOfConstantCString - Returns a pointer to a character array containing
5799*0b57cec5SDimitry Andric /// the literal and a terminating '\0' character.
5800*0b57cec5SDimitry Andric /// The result has pointer to array type.
5801*0b57cec5SDimitry Andric ConstantAddress CodeGenModule::GetAddrOfConstantCString(
5802*0b57cec5SDimitry Andric     const std::string &Str, const char *GlobalName) {
5803*0b57cec5SDimitry Andric   StringRef StrWithNull(Str.c_str(), Str.size() + 1);
5804*0b57cec5SDimitry Andric   CharUnits Alignment =
5805*0b57cec5SDimitry Andric     getContext().getAlignOfGlobalVarInChars(getContext().CharTy);
5806*0b57cec5SDimitry Andric 
5807*0b57cec5SDimitry Andric   llvm::Constant *C =
5808*0b57cec5SDimitry Andric       llvm::ConstantDataArray::getString(getLLVMContext(), StrWithNull, false);
5809*0b57cec5SDimitry Andric 
5810*0b57cec5SDimitry Andric   // Don't share any string literals if strings aren't constant.
5811*0b57cec5SDimitry Andric   llvm::GlobalVariable **Entry = nullptr;
5812*0b57cec5SDimitry Andric   if (!LangOpts.WritableStrings) {
5813*0b57cec5SDimitry Andric     Entry = &ConstantStringMap[C];
5814*0b57cec5SDimitry Andric     if (auto GV = *Entry) {
5815349cc55cSDimitry Andric       if (uint64_t(Alignment.getQuantity()) > GV->getAlignment())
5816a7dea167SDimitry Andric         GV->setAlignment(Alignment.getAsAlign());
5817*0b57cec5SDimitry Andric       return ConstantAddress(castStringLiteralToDefaultAddressSpace(*this, GV),
58180eae32dcSDimitry Andric                              GV->getValueType(), Alignment);
5819*0b57cec5SDimitry Andric     }
5820*0b57cec5SDimitry Andric   }
5821*0b57cec5SDimitry Andric 
5822*0b57cec5SDimitry Andric   // Get the default prefix if a name wasn't specified.
5823*0b57cec5SDimitry Andric   if (!GlobalName)
5824*0b57cec5SDimitry Andric     GlobalName = ".str";
5825*0b57cec5SDimitry Andric   // Create a global variable for this.
5826*0b57cec5SDimitry Andric   auto GV = GenerateStringLiteral(C, llvm::GlobalValue::PrivateLinkage, *this,
5827*0b57cec5SDimitry Andric                                   GlobalName, Alignment);
5828*0b57cec5SDimitry Andric   if (Entry)
5829*0b57cec5SDimitry Andric     *Entry = GV;
5830*0b57cec5SDimitry Andric 
5831*0b57cec5SDimitry Andric   return ConstantAddress(castStringLiteralToDefaultAddressSpace(*this, GV),
58320eae32dcSDimitry Andric                          GV->getValueType(), Alignment);
5833*0b57cec5SDimitry Andric }
5834*0b57cec5SDimitry Andric 
5835*0b57cec5SDimitry Andric ConstantAddress CodeGenModule::GetAddrOfGlobalTemporary(
5836*0b57cec5SDimitry Andric     const MaterializeTemporaryExpr *E, const Expr *Init) {
5837*0b57cec5SDimitry Andric   assert((E->getStorageDuration() == SD_Static ||
5838*0b57cec5SDimitry Andric           E->getStorageDuration() == SD_Thread) && "not a global temporary");
5839*0b57cec5SDimitry Andric   const auto *VD = cast<VarDecl>(E->getExtendingDecl());
5840*0b57cec5SDimitry Andric 
5841*0b57cec5SDimitry Andric   // If we're not materializing a subobject of the temporary, keep the
5842*0b57cec5SDimitry Andric   // cv-qualifiers from the type of the MaterializeTemporaryExpr.
5843*0b57cec5SDimitry Andric   QualType MaterializedType = Init->getType();
5844480093f4SDimitry Andric   if (Init == E->getSubExpr())
5845*0b57cec5SDimitry Andric     MaterializedType = E->getType();
5846*0b57cec5SDimitry Andric 
5847*0b57cec5SDimitry Andric   CharUnits Align = getContext().getTypeAlignInChars(MaterializedType);
5848*0b57cec5SDimitry Andric 
5849fe6060f1SDimitry Andric   auto InsertResult = MaterializedGlobalTemporaryMap.insert({E, nullptr});
5850fe6060f1SDimitry Andric   if (!InsertResult.second) {
5851fe6060f1SDimitry Andric     // We've seen this before: either we already created it or we're in the
5852fe6060f1SDimitry Andric     // process of doing so.
5853fe6060f1SDimitry Andric     if (!InsertResult.first->second) {
5854fe6060f1SDimitry Andric       // We recursively re-entered this function, probably during emission of
5855fe6060f1SDimitry Andric       // the initializer. Create a placeholder. We'll clean this up in the
5856fe6060f1SDimitry Andric       // outer call, at the end of this function.
5857fe6060f1SDimitry Andric       llvm::Type *Type = getTypes().ConvertTypeForMem(MaterializedType);
5858fe6060f1SDimitry Andric       InsertResult.first->second = new llvm::GlobalVariable(
5859fe6060f1SDimitry Andric           getModule(), Type, false, llvm::GlobalVariable::InternalLinkage,
5860fe6060f1SDimitry Andric           nullptr);
5861fe6060f1SDimitry Andric     }
586281ad6265SDimitry Andric     return ConstantAddress(InsertResult.first->second,
586381ad6265SDimitry Andric                            llvm::cast<llvm::GlobalVariable>(
586481ad6265SDimitry Andric                                InsertResult.first->second->stripPointerCasts())
586581ad6265SDimitry Andric                                ->getValueType(),
586681ad6265SDimitry Andric                            Align);
5867fe6060f1SDimitry Andric   }
5868*0b57cec5SDimitry Andric 
5869*0b57cec5SDimitry Andric   // FIXME: If an externally-visible declaration extends multiple temporaries,
5870*0b57cec5SDimitry Andric   // we need to give each temporary the same name in every translation unit (and
5871*0b57cec5SDimitry Andric   // we also need to make the temporaries externally-visible).
5872*0b57cec5SDimitry Andric   SmallString<256> Name;
5873*0b57cec5SDimitry Andric   llvm::raw_svector_ostream Out(Name);
5874*0b57cec5SDimitry Andric   getCXXABI().getMangleContext().mangleReferenceTemporary(
5875*0b57cec5SDimitry Andric       VD, E->getManglingNumber(), Out);
5876*0b57cec5SDimitry Andric 
5877*0b57cec5SDimitry Andric   APValue *Value = nullptr;
5878a7dea167SDimitry Andric   if (E->getStorageDuration() == SD_Static && VD && VD->evaluateValue()) {
5879a7dea167SDimitry Andric     // If the initializer of the extending declaration is a constant
5880a7dea167SDimitry Andric     // initializer, we should have a cached constant initializer for this
5881a7dea167SDimitry Andric     // temporary. Note that this might have a different value from the value
5882a7dea167SDimitry Andric     // computed by evaluating the initializer if the surrounding constant
5883a7dea167SDimitry Andric     // expression modifies the temporary.
5884480093f4SDimitry Andric     Value = E->getOrCreateValue(false);
5885*0b57cec5SDimitry Andric   }
5886*0b57cec5SDimitry Andric 
5887*0b57cec5SDimitry Andric   // Try evaluating it now, it might have a constant initializer.
5888*0b57cec5SDimitry Andric   Expr::EvalResult EvalResult;
5889*0b57cec5SDimitry Andric   if (!Value && Init->EvaluateAsRValue(EvalResult, getContext()) &&
5890*0b57cec5SDimitry Andric       !EvalResult.hasSideEffects())
5891*0b57cec5SDimitry Andric     Value = &EvalResult.Val;
5892*0b57cec5SDimitry Andric 
5893*0b57cec5SDimitry Andric   LangAS AddrSpace =
5894*0b57cec5SDimitry Andric       VD ? GetGlobalVarAddressSpace(VD) : MaterializedType.getAddressSpace();
5895*0b57cec5SDimitry Andric 
5896*0b57cec5SDimitry Andric   Optional<ConstantEmitter> emitter;
5897*0b57cec5SDimitry Andric   llvm::Constant *InitialValue = nullptr;
5898*0b57cec5SDimitry Andric   bool Constant = false;
5899*0b57cec5SDimitry Andric   llvm::Type *Type;
5900*0b57cec5SDimitry Andric   if (Value) {
5901*0b57cec5SDimitry Andric     // The temporary has a constant initializer, use it.
5902*0b57cec5SDimitry Andric     emitter.emplace(*this);
5903*0b57cec5SDimitry Andric     InitialValue = emitter->emitForInitializer(*Value, AddrSpace,
5904*0b57cec5SDimitry Andric                                                MaterializedType);
5905*0b57cec5SDimitry Andric     Constant = isTypeConstant(MaterializedType, /*ExcludeCtor*/Value);
5906*0b57cec5SDimitry Andric     Type = InitialValue->getType();
5907*0b57cec5SDimitry Andric   } else {
5908*0b57cec5SDimitry Andric     // No initializer, the initialization will be provided when we
5909*0b57cec5SDimitry Andric     // initialize the declaration which performed lifetime extension.
5910*0b57cec5SDimitry Andric     Type = getTypes().ConvertTypeForMem(MaterializedType);
5911*0b57cec5SDimitry Andric   }
5912*0b57cec5SDimitry Andric 
5913*0b57cec5SDimitry Andric   // Create a global variable for this lifetime-extended temporary.
5914*0b57cec5SDimitry Andric   llvm::GlobalValue::LinkageTypes Linkage =
5915*0b57cec5SDimitry Andric       getLLVMLinkageVarDefinition(VD, Constant);
5916*0b57cec5SDimitry Andric   if (Linkage == llvm::GlobalVariable::ExternalLinkage) {
5917*0b57cec5SDimitry Andric     const VarDecl *InitVD;
5918*0b57cec5SDimitry Andric     if (VD->isStaticDataMember() && VD->getAnyInitializer(InitVD) &&
5919*0b57cec5SDimitry Andric         isa<CXXRecordDecl>(InitVD->getLexicalDeclContext())) {
5920*0b57cec5SDimitry Andric       // Temporaries defined inside a class get linkonce_odr linkage because the
5921*0b57cec5SDimitry Andric       // class can be defined in multiple translation units.
5922*0b57cec5SDimitry Andric       Linkage = llvm::GlobalVariable::LinkOnceODRLinkage;
5923*0b57cec5SDimitry Andric     } else {
5924*0b57cec5SDimitry Andric       // There is no need for this temporary to have external linkage if the
5925*0b57cec5SDimitry Andric       // VarDecl has external linkage.
5926*0b57cec5SDimitry Andric       Linkage = llvm::GlobalVariable::InternalLinkage;
5927*0b57cec5SDimitry Andric     }
5928*0b57cec5SDimitry Andric   }
5929*0b57cec5SDimitry Andric   auto TargetAS = getContext().getTargetAddressSpace(AddrSpace);
5930*0b57cec5SDimitry Andric   auto *GV = new llvm::GlobalVariable(
5931*0b57cec5SDimitry Andric       getModule(), Type, Constant, Linkage, InitialValue, Name.c_str(),
5932*0b57cec5SDimitry Andric       /*InsertBefore=*/nullptr, llvm::GlobalVariable::NotThreadLocal, TargetAS);
5933*0b57cec5SDimitry Andric   if (emitter) emitter->finalize(GV);
5934*0b57cec5SDimitry Andric   setGVProperties(GV, VD);
593581ad6265SDimitry Andric   if (GV->getDLLStorageClass() == llvm::GlobalVariable::DLLExportStorageClass)
593681ad6265SDimitry Andric     // The reference temporary should never be dllexport.
593781ad6265SDimitry Andric     GV->setDLLStorageClass(llvm::GlobalVariable::DefaultStorageClass);
5938a7dea167SDimitry Andric   GV->setAlignment(Align.getAsAlign());
5939*0b57cec5SDimitry Andric   if (supportsCOMDAT() && GV->isWeakForLinker())
5940*0b57cec5SDimitry Andric     GV->setComdat(TheModule.getOrInsertComdat(GV->getName()));
5941*0b57cec5SDimitry Andric   if (VD->getTLSKind())
5942*0b57cec5SDimitry Andric     setTLSMode(GV, *VD);
5943*0b57cec5SDimitry Andric   llvm::Constant *CV = GV;
5944*0b57cec5SDimitry Andric   if (AddrSpace != LangAS::Default)
5945*0b57cec5SDimitry Andric     CV = getTargetCodeGenInfo().performAddrSpaceCast(
5946*0b57cec5SDimitry Andric         *this, GV, AddrSpace, LangAS::Default,
5947*0b57cec5SDimitry Andric         Type->getPointerTo(
5948*0b57cec5SDimitry Andric             getContext().getTargetAddressSpace(LangAS::Default)));
5949fe6060f1SDimitry Andric 
5950fe6060f1SDimitry Andric   // Update the map with the new temporary. If we created a placeholder above,
5951fe6060f1SDimitry Andric   // replace it with the new global now.
5952fe6060f1SDimitry Andric   llvm::Constant *&Entry = MaterializedGlobalTemporaryMap[E];
5953fe6060f1SDimitry Andric   if (Entry) {
5954fe6060f1SDimitry Andric     Entry->replaceAllUsesWith(
5955fe6060f1SDimitry Andric         llvm::ConstantExpr::getBitCast(CV, Entry->getType()));
5956fe6060f1SDimitry Andric     llvm::cast<llvm::GlobalVariable>(Entry)->eraseFromParent();
5957fe6060f1SDimitry Andric   }
5958fe6060f1SDimitry Andric   Entry = CV;
5959fe6060f1SDimitry Andric 
59600eae32dcSDimitry Andric   return ConstantAddress(CV, Type, Align);
5961*0b57cec5SDimitry Andric }
5962*0b57cec5SDimitry Andric 
5963*0b57cec5SDimitry Andric /// EmitObjCPropertyImplementations - Emit information for synthesized
5964*0b57cec5SDimitry Andric /// properties for an implementation.
5965*0b57cec5SDimitry Andric void CodeGenModule::EmitObjCPropertyImplementations(const
5966*0b57cec5SDimitry Andric                                                     ObjCImplementationDecl *D) {
5967*0b57cec5SDimitry Andric   for (const auto *PID : D->property_impls()) {
5968*0b57cec5SDimitry Andric     // Dynamic is just for type-checking.
5969*0b57cec5SDimitry Andric     if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize) {
5970*0b57cec5SDimitry Andric       ObjCPropertyDecl *PD = PID->getPropertyDecl();
5971*0b57cec5SDimitry Andric 
5972*0b57cec5SDimitry Andric       // Determine which methods need to be implemented, some may have
5973*0b57cec5SDimitry Andric       // been overridden. Note that ::isPropertyAccessor is not the method
5974*0b57cec5SDimitry Andric       // we want, that just indicates if the decl came from a
5975*0b57cec5SDimitry Andric       // property. What we want to know is if the method is defined in
5976*0b57cec5SDimitry Andric       // this implementation.
5977480093f4SDimitry Andric       auto *Getter = PID->getGetterMethodDecl();
5978480093f4SDimitry Andric       if (!Getter || Getter->isSynthesizedAccessorStub())
5979*0b57cec5SDimitry Andric         CodeGenFunction(*this).GenerateObjCGetter(
5980*0b57cec5SDimitry Andric             const_cast<ObjCImplementationDecl *>(D), PID);
5981480093f4SDimitry Andric       auto *Setter = PID->getSetterMethodDecl();
5982480093f4SDimitry Andric       if (!PD->isReadOnly() && (!Setter || Setter->isSynthesizedAccessorStub()))
5983*0b57cec5SDimitry Andric         CodeGenFunction(*this).GenerateObjCSetter(
5984*0b57cec5SDimitry Andric                                  const_cast<ObjCImplementationDecl *>(D), PID);
5985*0b57cec5SDimitry Andric     }
5986*0b57cec5SDimitry Andric   }
5987*0b57cec5SDimitry Andric }
5988*0b57cec5SDimitry Andric 
5989*0b57cec5SDimitry Andric static bool needsDestructMethod(ObjCImplementationDecl *impl) {
5990*0b57cec5SDimitry Andric   const ObjCInterfaceDecl *iface = impl->getClassInterface();
5991*0b57cec5SDimitry Andric   for (const ObjCIvarDecl *ivar = iface->all_declared_ivar_begin();
5992*0b57cec5SDimitry Andric        ivar; ivar = ivar->getNextIvar())
5993*0b57cec5SDimitry Andric     if (ivar->getType().isDestructedType())
5994*0b57cec5SDimitry Andric       return true;
5995*0b57cec5SDimitry Andric 
5996*0b57cec5SDimitry Andric   return false;
5997*0b57cec5SDimitry Andric }
5998*0b57cec5SDimitry Andric 
5999*0b57cec5SDimitry Andric static bool AllTrivialInitializers(CodeGenModule &CGM,
6000*0b57cec5SDimitry Andric                                    ObjCImplementationDecl *D) {
6001*0b57cec5SDimitry Andric   CodeGenFunction CGF(CGM);
6002*0b57cec5SDimitry Andric   for (ObjCImplementationDecl::init_iterator B = D->init_begin(),
6003*0b57cec5SDimitry Andric        E = D->init_end(); B != E; ++B) {
6004*0b57cec5SDimitry Andric     CXXCtorInitializer *CtorInitExp = *B;
6005*0b57cec5SDimitry Andric     Expr *Init = CtorInitExp->getInit();
6006*0b57cec5SDimitry Andric     if (!CGF.isTrivialInitializer(Init))
6007*0b57cec5SDimitry Andric       return false;
6008*0b57cec5SDimitry Andric   }
6009*0b57cec5SDimitry Andric   return true;
6010*0b57cec5SDimitry Andric }
6011*0b57cec5SDimitry Andric 
6012*0b57cec5SDimitry Andric /// EmitObjCIvarInitializations - Emit information for ivar initialization
6013*0b57cec5SDimitry Andric /// for an implementation.
6014*0b57cec5SDimitry Andric void CodeGenModule::EmitObjCIvarInitializations(ObjCImplementationDecl *D) {
6015*0b57cec5SDimitry Andric   // We might need a .cxx_destruct even if we don't have any ivar initializers.
6016*0b57cec5SDimitry Andric   if (needsDestructMethod(D)) {
6017*0b57cec5SDimitry Andric     IdentifierInfo *II = &getContext().Idents.get(".cxx_destruct");
6018*0b57cec5SDimitry Andric     Selector cxxSelector = getContext().Selectors.getSelector(0, &II);
6019480093f4SDimitry Andric     ObjCMethodDecl *DTORMethod = ObjCMethodDecl::Create(
6020480093f4SDimitry Andric         getContext(), D->getLocation(), D->getLocation(), cxxSelector,
6021480093f4SDimitry Andric         getContext().VoidTy, nullptr, D,
6022*0b57cec5SDimitry Andric         /*isInstance=*/true, /*isVariadic=*/false,
6023480093f4SDimitry Andric         /*isPropertyAccessor=*/true, /*isSynthesizedAccessorStub=*/false,
6024480093f4SDimitry Andric         /*isImplicitlyDeclared=*/true,
6025*0b57cec5SDimitry Andric         /*isDefined=*/false, ObjCMethodDecl::Required);
6026*0b57cec5SDimitry Andric     D->addInstanceMethod(DTORMethod);
6027*0b57cec5SDimitry Andric     CodeGenFunction(*this).GenerateObjCCtorDtorMethod(D, DTORMethod, false);
6028*0b57cec5SDimitry Andric     D->setHasDestructors(true);
6029*0b57cec5SDimitry Andric   }
6030*0b57cec5SDimitry Andric 
6031*0b57cec5SDimitry Andric   // If the implementation doesn't have any ivar initializers, we don't need
6032*0b57cec5SDimitry Andric   // a .cxx_construct.
6033*0b57cec5SDimitry Andric   if (D->getNumIvarInitializers() == 0 ||
6034*0b57cec5SDimitry Andric       AllTrivialInitializers(*this, D))
6035*0b57cec5SDimitry Andric     return;
6036*0b57cec5SDimitry Andric 
6037*0b57cec5SDimitry Andric   IdentifierInfo *II = &getContext().Idents.get(".cxx_construct");
6038*0b57cec5SDimitry Andric   Selector cxxSelector = getContext().Selectors.getSelector(0, &II);
6039*0b57cec5SDimitry Andric   // The constructor returns 'self'.
6040480093f4SDimitry Andric   ObjCMethodDecl *CTORMethod = ObjCMethodDecl::Create(
6041480093f4SDimitry Andric       getContext(), D->getLocation(), D->getLocation(), cxxSelector,
6042480093f4SDimitry Andric       getContext().getObjCIdType(), nullptr, D, /*isInstance=*/true,
6043*0b57cec5SDimitry Andric       /*isVariadic=*/false,
6044480093f4SDimitry Andric       /*isPropertyAccessor=*/true, /*isSynthesizedAccessorStub=*/false,
6045*0b57cec5SDimitry Andric       /*isImplicitlyDeclared=*/true,
6046480093f4SDimitry Andric       /*isDefined=*/false, ObjCMethodDecl::Required);
6047*0b57cec5SDimitry Andric   D->addInstanceMethod(CTORMethod);
6048*0b57cec5SDimitry Andric   CodeGenFunction(*this).GenerateObjCCtorDtorMethod(D, CTORMethod, true);
6049*0b57cec5SDimitry Andric   D->setHasNonZeroConstructors(true);
6050*0b57cec5SDimitry Andric }
6051*0b57cec5SDimitry Andric 
6052*0b57cec5SDimitry Andric // EmitLinkageSpec - Emit all declarations in a linkage spec.
6053*0b57cec5SDimitry Andric void CodeGenModule::EmitLinkageSpec(const LinkageSpecDecl *LSD) {
6054*0b57cec5SDimitry Andric   if (LSD->getLanguage() != LinkageSpecDecl::lang_c &&
6055480093f4SDimitry Andric       LSD->getLanguage() != LinkageSpecDecl::lang_cxx) {
6056*0b57cec5SDimitry Andric     ErrorUnsupported(LSD, "linkage spec");
6057*0b57cec5SDimitry Andric     return;
6058*0b57cec5SDimitry Andric   }
6059*0b57cec5SDimitry Andric 
6060*0b57cec5SDimitry Andric   EmitDeclContext(LSD);
6061*0b57cec5SDimitry Andric }
6062*0b57cec5SDimitry Andric 
6063*0b57cec5SDimitry Andric void CodeGenModule::EmitDeclContext(const DeclContext *DC) {
6064*0b57cec5SDimitry Andric   for (auto *I : DC->decls()) {
6065*0b57cec5SDimitry Andric     // Unlike other DeclContexts, the contents of an ObjCImplDecl at TU scope
6066*0b57cec5SDimitry Andric     // are themselves considered "top-level", so EmitTopLevelDecl on an
6067*0b57cec5SDimitry Andric     // ObjCImplDecl does not recursively visit them. We need to do that in
6068*0b57cec5SDimitry Andric     // case they're nested inside another construct (LinkageSpecDecl /
6069*0b57cec5SDimitry Andric     // ExportDecl) that does stop them from being considered "top-level".
6070*0b57cec5SDimitry Andric     if (auto *OID = dyn_cast<ObjCImplDecl>(I)) {
6071*0b57cec5SDimitry Andric       for (auto *M : OID->methods())
6072*0b57cec5SDimitry Andric         EmitTopLevelDecl(M);
6073*0b57cec5SDimitry Andric     }
6074*0b57cec5SDimitry Andric 
6075*0b57cec5SDimitry Andric     EmitTopLevelDecl(I);
6076*0b57cec5SDimitry Andric   }
6077*0b57cec5SDimitry Andric }
6078*0b57cec5SDimitry Andric 
6079*0b57cec5SDimitry Andric /// EmitTopLevelDecl - Emit code for a single top level declaration.
6080*0b57cec5SDimitry Andric void CodeGenModule::EmitTopLevelDecl(Decl *D) {
6081*0b57cec5SDimitry Andric   // Ignore dependent declarations.
6082*0b57cec5SDimitry Andric   if (D->isTemplated())
6083*0b57cec5SDimitry Andric     return;
6084*0b57cec5SDimitry Andric 
60855ffd83dbSDimitry Andric   // Consteval function shouldn't be emitted.
60865ffd83dbSDimitry Andric   if (auto *FD = dyn_cast<FunctionDecl>(D))
60875ffd83dbSDimitry Andric     if (FD->isConsteval())
60885ffd83dbSDimitry Andric       return;
60895ffd83dbSDimitry Andric 
6090*0b57cec5SDimitry Andric   switch (D->getKind()) {
6091*0b57cec5SDimitry Andric   case Decl::CXXConversion:
6092*0b57cec5SDimitry Andric   case Decl::CXXMethod:
6093*0b57cec5SDimitry Andric   case Decl::Function:
6094*0b57cec5SDimitry Andric     EmitGlobal(cast<FunctionDecl>(D));
6095*0b57cec5SDimitry Andric     // Always provide some coverage mapping
6096*0b57cec5SDimitry Andric     // even for the functions that aren't emitted.
6097*0b57cec5SDimitry Andric     AddDeferredUnusedCoverageMapping(D);
6098*0b57cec5SDimitry Andric     break;
6099*0b57cec5SDimitry Andric 
6100*0b57cec5SDimitry Andric   case Decl::CXXDeductionGuide:
6101*0b57cec5SDimitry Andric     // Function-like, but does not result in code emission.
6102*0b57cec5SDimitry Andric     break;
6103*0b57cec5SDimitry Andric 
6104*0b57cec5SDimitry Andric   case Decl::Var:
6105*0b57cec5SDimitry Andric   case Decl::Decomposition:
6106*0b57cec5SDimitry Andric   case Decl::VarTemplateSpecialization:
6107*0b57cec5SDimitry Andric     EmitGlobal(cast<VarDecl>(D));
6108*0b57cec5SDimitry Andric     if (auto *DD = dyn_cast<DecompositionDecl>(D))
6109*0b57cec5SDimitry Andric       for (auto *B : DD->bindings())
6110*0b57cec5SDimitry Andric         if (auto *HD = B->getHoldingVar())
6111*0b57cec5SDimitry Andric           EmitGlobal(HD);
6112*0b57cec5SDimitry Andric     break;
6113*0b57cec5SDimitry Andric 
6114*0b57cec5SDimitry Andric   // Indirect fields from global anonymous structs and unions can be
6115*0b57cec5SDimitry Andric   // ignored; only the actual variable requires IR gen support.
6116*0b57cec5SDimitry Andric   case Decl::IndirectField:
6117*0b57cec5SDimitry Andric     break;
6118*0b57cec5SDimitry Andric 
6119*0b57cec5SDimitry Andric   // C++ Decls
6120*0b57cec5SDimitry Andric   case Decl::Namespace:
6121*0b57cec5SDimitry Andric     EmitDeclContext(cast<NamespaceDecl>(D));
6122*0b57cec5SDimitry Andric     break;
6123*0b57cec5SDimitry Andric   case Decl::ClassTemplateSpecialization: {
6124*0b57cec5SDimitry Andric     const auto *Spec = cast<ClassTemplateSpecializationDecl>(D);
61255ffd83dbSDimitry Andric     if (CGDebugInfo *DI = getModuleDebugInfo())
61265ffd83dbSDimitry Andric       if (Spec->getSpecializationKind() ==
61275ffd83dbSDimitry Andric               TSK_ExplicitInstantiationDefinition &&
6128*0b57cec5SDimitry Andric           Spec->hasDefinition())
61295ffd83dbSDimitry Andric         DI->completeTemplateDefinition(*Spec);
6130*0b57cec5SDimitry Andric   } LLVM_FALLTHROUGH;
6131e8d8bef9SDimitry Andric   case Decl::CXXRecord: {
6132e8d8bef9SDimitry Andric     CXXRecordDecl *CRD = cast<CXXRecordDecl>(D);
6133e8d8bef9SDimitry Andric     if (CGDebugInfo *DI = getModuleDebugInfo()) {
6134e8d8bef9SDimitry Andric       if (CRD->hasDefinition())
6135e8d8bef9SDimitry Andric         DI->EmitAndRetainType(getContext().getRecordType(cast<RecordDecl>(D)));
6136*0b57cec5SDimitry Andric       if (auto *ES = D->getASTContext().getExternalSource())
6137*0b57cec5SDimitry Andric         if (ES->hasExternalDefinitions(D) == ExternalASTSource::EK_Never)
6138e8d8bef9SDimitry Andric           DI->completeUnusedClass(*CRD);
6139e8d8bef9SDimitry Andric     }
6140*0b57cec5SDimitry Andric     // Emit any static data members, they may be definitions.
6141e8d8bef9SDimitry Andric     for (auto *I : CRD->decls())
6142*0b57cec5SDimitry Andric       if (isa<VarDecl>(I) || isa<CXXRecordDecl>(I))
6143*0b57cec5SDimitry Andric         EmitTopLevelDecl(I);
6144*0b57cec5SDimitry Andric     break;
6145e8d8bef9SDimitry Andric   }
6146*0b57cec5SDimitry Andric     // No code generation needed.
6147*0b57cec5SDimitry Andric   case Decl::UsingShadow:
6148*0b57cec5SDimitry Andric   case Decl::ClassTemplate:
6149*0b57cec5SDimitry Andric   case Decl::VarTemplate:
6150*0b57cec5SDimitry Andric   case Decl::Concept:
6151*0b57cec5SDimitry Andric   case Decl::VarTemplatePartialSpecialization:
6152*0b57cec5SDimitry Andric   case Decl::FunctionTemplate:
6153*0b57cec5SDimitry Andric   case Decl::TypeAliasTemplate:
6154*0b57cec5SDimitry Andric   case Decl::Block:
6155*0b57cec5SDimitry Andric   case Decl::Empty:
6156*0b57cec5SDimitry Andric   case Decl::Binding:
6157*0b57cec5SDimitry Andric     break;
6158*0b57cec5SDimitry Andric   case Decl::Using:          // using X; [C++]
6159*0b57cec5SDimitry Andric     if (CGDebugInfo *DI = getModuleDebugInfo())
6160*0b57cec5SDimitry Andric         DI->EmitUsingDecl(cast<UsingDecl>(*D));
61615ffd83dbSDimitry Andric     break;
6162fe6060f1SDimitry Andric   case Decl::UsingEnum: // using enum X; [C++]
6163fe6060f1SDimitry Andric     if (CGDebugInfo *DI = getModuleDebugInfo())
6164fe6060f1SDimitry Andric       DI->EmitUsingEnumDecl(cast<UsingEnumDecl>(*D));
6165fe6060f1SDimitry Andric     break;
6166*0b57cec5SDimitry Andric   case Decl::NamespaceAlias:
6167*0b57cec5SDimitry Andric     if (CGDebugInfo *DI = getModuleDebugInfo())
6168*0b57cec5SDimitry Andric         DI->EmitNamespaceAlias(cast<NamespaceAliasDecl>(*D));
61695ffd83dbSDimitry Andric     break;
6170*0b57cec5SDimitry Andric   case Decl::UsingDirective: // using namespace X; [C++]
6171*0b57cec5SDimitry Andric     if (CGDebugInfo *DI = getModuleDebugInfo())
6172*0b57cec5SDimitry Andric       DI->EmitUsingDirective(cast<UsingDirectiveDecl>(*D));
61735ffd83dbSDimitry Andric     break;
6174*0b57cec5SDimitry Andric   case Decl::CXXConstructor:
6175*0b57cec5SDimitry Andric     getCXXABI().EmitCXXConstructors(cast<CXXConstructorDecl>(D));
6176*0b57cec5SDimitry Andric     break;
6177*0b57cec5SDimitry Andric   case Decl::CXXDestructor:
6178*0b57cec5SDimitry Andric     getCXXABI().EmitCXXDestructors(cast<CXXDestructorDecl>(D));
6179*0b57cec5SDimitry Andric     break;
6180*0b57cec5SDimitry Andric 
6181*0b57cec5SDimitry Andric   case Decl::StaticAssert:
6182*0b57cec5SDimitry Andric     // Nothing to do.
6183*0b57cec5SDimitry Andric     break;
6184*0b57cec5SDimitry Andric 
6185*0b57cec5SDimitry Andric   // Objective-C Decls
6186*0b57cec5SDimitry Andric 
6187*0b57cec5SDimitry Andric   // Forward declarations, no (immediate) code generation.
6188*0b57cec5SDimitry Andric   case Decl::ObjCInterface:
6189*0b57cec5SDimitry Andric   case Decl::ObjCCategory:
6190*0b57cec5SDimitry Andric     break;
6191*0b57cec5SDimitry Andric 
6192*0b57cec5SDimitry Andric   case Decl::ObjCProtocol: {
6193*0b57cec5SDimitry Andric     auto *Proto = cast<ObjCProtocolDecl>(D);
6194*0b57cec5SDimitry Andric     if (Proto->isThisDeclarationADefinition())
6195*0b57cec5SDimitry Andric       ObjCRuntime->GenerateProtocol(Proto);
6196*0b57cec5SDimitry Andric     break;
6197*0b57cec5SDimitry Andric   }
6198*0b57cec5SDimitry Andric 
6199*0b57cec5SDimitry Andric   case Decl::ObjCCategoryImpl:
6200*0b57cec5SDimitry Andric     // Categories have properties but don't support synthesize so we
6201*0b57cec5SDimitry Andric     // can ignore them here.
6202*0b57cec5SDimitry Andric     ObjCRuntime->GenerateCategory(cast<ObjCCategoryImplDecl>(D));
6203*0b57cec5SDimitry Andric     break;
6204*0b57cec5SDimitry Andric 
6205*0b57cec5SDimitry Andric   case Decl::ObjCImplementation: {
6206*0b57cec5SDimitry Andric     auto *OMD = cast<ObjCImplementationDecl>(D);
6207*0b57cec5SDimitry Andric     EmitObjCPropertyImplementations(OMD);
6208*0b57cec5SDimitry Andric     EmitObjCIvarInitializations(OMD);
6209*0b57cec5SDimitry Andric     ObjCRuntime->GenerateClass(OMD);
6210*0b57cec5SDimitry Andric     // Emit global variable debug information.
6211*0b57cec5SDimitry Andric     if (CGDebugInfo *DI = getModuleDebugInfo())
6212480093f4SDimitry Andric       if (getCodeGenOpts().hasReducedDebugInfo())
6213*0b57cec5SDimitry Andric         DI->getOrCreateInterfaceType(getContext().getObjCInterfaceType(
6214*0b57cec5SDimitry Andric             OMD->getClassInterface()), OMD->getLocation());
6215*0b57cec5SDimitry Andric     break;
6216*0b57cec5SDimitry Andric   }
6217*0b57cec5SDimitry Andric   case Decl::ObjCMethod: {
6218*0b57cec5SDimitry Andric     auto *OMD = cast<ObjCMethodDecl>(D);
6219*0b57cec5SDimitry Andric     // If this is not a prototype, emit the body.
6220*0b57cec5SDimitry Andric     if (OMD->getBody())
6221*0b57cec5SDimitry Andric       CodeGenFunction(*this).GenerateObjCMethod(OMD);
6222*0b57cec5SDimitry Andric     break;
6223*0b57cec5SDimitry Andric   }
6224*0b57cec5SDimitry Andric   case Decl::ObjCCompatibleAlias:
6225*0b57cec5SDimitry Andric     ObjCRuntime->RegisterAlias(cast<ObjCCompatibleAliasDecl>(D));
6226*0b57cec5SDimitry Andric     break;
6227*0b57cec5SDimitry Andric 
6228*0b57cec5SDimitry Andric   case Decl::PragmaComment: {
6229*0b57cec5SDimitry Andric     const auto *PCD = cast<PragmaCommentDecl>(D);
6230*0b57cec5SDimitry Andric     switch (PCD->getCommentKind()) {
6231*0b57cec5SDimitry Andric     case PCK_Unknown:
6232*0b57cec5SDimitry Andric       llvm_unreachable("unexpected pragma comment kind");
6233*0b57cec5SDimitry Andric     case PCK_Linker:
6234*0b57cec5SDimitry Andric       AppendLinkerOptions(PCD->getArg());
6235*0b57cec5SDimitry Andric       break;
6236*0b57cec5SDimitry Andric     case PCK_Lib:
6237*0b57cec5SDimitry Andric         AddDependentLib(PCD->getArg());
6238*0b57cec5SDimitry Andric       break;
6239*0b57cec5SDimitry Andric     case PCK_Compiler:
6240*0b57cec5SDimitry Andric     case PCK_ExeStr:
6241*0b57cec5SDimitry Andric     case PCK_User:
6242*0b57cec5SDimitry Andric       break; // We ignore all of these.
6243*0b57cec5SDimitry Andric     }
6244*0b57cec5SDimitry Andric     break;
6245*0b57cec5SDimitry Andric   }
6246*0b57cec5SDimitry Andric 
6247*0b57cec5SDimitry Andric   case Decl::PragmaDetectMismatch: {
6248*0b57cec5SDimitry Andric     const auto *PDMD = cast<PragmaDetectMismatchDecl>(D);
6249*0b57cec5SDimitry Andric     AddDetectMismatch(PDMD->getName(), PDMD->getValue());
6250*0b57cec5SDimitry Andric     break;
6251*0b57cec5SDimitry Andric   }
6252*0b57cec5SDimitry Andric 
6253*0b57cec5SDimitry Andric   case Decl::LinkageSpec:
6254*0b57cec5SDimitry Andric     EmitLinkageSpec(cast<LinkageSpecDecl>(D));
6255*0b57cec5SDimitry Andric     break;
6256*0b57cec5SDimitry Andric 
6257*0b57cec5SDimitry Andric   case Decl::FileScopeAsm: {
6258*0b57cec5SDimitry Andric     // File-scope asm is ignored during device-side CUDA compilation.
6259*0b57cec5SDimitry Andric     if (LangOpts.CUDA && LangOpts.CUDAIsDevice)
6260*0b57cec5SDimitry Andric       break;
6261*0b57cec5SDimitry Andric     // File-scope asm is ignored during device-side OpenMP compilation.
6262*0b57cec5SDimitry Andric     if (LangOpts.OpenMPIsDevice)
6263*0b57cec5SDimitry Andric       break;
6264fe6060f1SDimitry Andric     // File-scope asm is ignored during device-side SYCL compilation.
6265fe6060f1SDimitry Andric     if (LangOpts.SYCLIsDevice)
6266fe6060f1SDimitry Andric       break;
6267*0b57cec5SDimitry Andric     auto *AD = cast<FileScopeAsmDecl>(D);
6268*0b57cec5SDimitry Andric     getModule().appendModuleInlineAsm(AD->getAsmString()->getString());
6269*0b57cec5SDimitry Andric     break;
6270*0b57cec5SDimitry Andric   }
6271*0b57cec5SDimitry Andric 
6272*0b57cec5SDimitry Andric   case Decl::Import: {
6273*0b57cec5SDimitry Andric     auto *Import = cast<ImportDecl>(D);
6274*0b57cec5SDimitry Andric 
6275*0b57cec5SDimitry Andric     // If we've already imported this module, we're done.
6276*0b57cec5SDimitry Andric     if (!ImportedModules.insert(Import->getImportedModule()))
6277*0b57cec5SDimitry Andric       break;
6278*0b57cec5SDimitry Andric 
6279*0b57cec5SDimitry Andric     // Emit debug information for direct imports.
6280*0b57cec5SDimitry Andric     if (!Import->getImportedOwningModule()) {
6281*0b57cec5SDimitry Andric       if (CGDebugInfo *DI = getModuleDebugInfo())
6282*0b57cec5SDimitry Andric         DI->EmitImportDecl(*Import);
6283*0b57cec5SDimitry Andric     }
6284*0b57cec5SDimitry Andric 
6285fcaf7f86SDimitry Andric     // For C++ standard modules we are done - we will call the module
6286fcaf7f86SDimitry Andric     // initializer for imported modules, and that will likewise call those for
6287fcaf7f86SDimitry Andric     // any imports it has.
6288fcaf7f86SDimitry Andric     if (CXX20ModuleInits && Import->getImportedOwningModule() &&
6289fcaf7f86SDimitry Andric         !Import->getImportedOwningModule()->isModuleMapModule())
6290fcaf7f86SDimitry Andric       break;
6291fcaf7f86SDimitry Andric 
6292fcaf7f86SDimitry Andric     // For clang C++ module map modules the initializers for sub-modules are
6293fcaf7f86SDimitry Andric     // emitted here.
6294fcaf7f86SDimitry Andric 
6295*0b57cec5SDimitry Andric     // Find all of the submodules and emit the module initializers.
6296*0b57cec5SDimitry Andric     llvm::SmallPtrSet<clang::Module *, 16> Visited;
6297*0b57cec5SDimitry Andric     SmallVector<clang::Module *, 16> Stack;
6298*0b57cec5SDimitry Andric     Visited.insert(Import->getImportedModule());
6299*0b57cec5SDimitry Andric     Stack.push_back(Import->getImportedModule());
6300*0b57cec5SDimitry Andric 
6301*0b57cec5SDimitry Andric     while (!Stack.empty()) {
6302*0b57cec5SDimitry Andric       clang::Module *Mod = Stack.pop_back_val();
6303*0b57cec5SDimitry Andric       if (!EmittedModuleInitializers.insert(Mod).second)
6304*0b57cec5SDimitry Andric         continue;
6305*0b57cec5SDimitry Andric 
6306*0b57cec5SDimitry Andric       for (auto *D : Context.getModuleInitializers(Mod))
6307*0b57cec5SDimitry Andric         EmitTopLevelDecl(D);
6308*0b57cec5SDimitry Andric 
6309*0b57cec5SDimitry Andric       // Visit the submodules of this module.
6310*0b57cec5SDimitry Andric       for (clang::Module::submodule_iterator Sub = Mod->submodule_begin(),
6311*0b57cec5SDimitry Andric                                              SubEnd = Mod->submodule_end();
6312*0b57cec5SDimitry Andric            Sub != SubEnd; ++Sub) {
6313*0b57cec5SDimitry Andric         // Skip explicit children; they need to be explicitly imported to emit
6314*0b57cec5SDimitry Andric         // the initializers.
6315*0b57cec5SDimitry Andric         if ((*Sub)->IsExplicit)
6316*0b57cec5SDimitry Andric           continue;
6317*0b57cec5SDimitry Andric 
6318*0b57cec5SDimitry Andric         if (Visited.insert(*Sub).second)
6319*0b57cec5SDimitry Andric           Stack.push_back(*Sub);
6320*0b57cec5SDimitry Andric       }
6321*0b57cec5SDimitry Andric     }
6322*0b57cec5SDimitry Andric     break;
6323*0b57cec5SDimitry Andric   }
6324*0b57cec5SDimitry Andric 
6325*0b57cec5SDimitry Andric   case Decl::Export:
6326*0b57cec5SDimitry Andric     EmitDeclContext(cast<ExportDecl>(D));
6327*0b57cec5SDimitry Andric     break;
6328*0b57cec5SDimitry Andric 
6329*0b57cec5SDimitry Andric   case Decl::OMPThreadPrivate:
6330*0b57cec5SDimitry Andric     EmitOMPThreadPrivateDecl(cast<OMPThreadPrivateDecl>(D));
6331*0b57cec5SDimitry Andric     break;
6332*0b57cec5SDimitry Andric 
6333*0b57cec5SDimitry Andric   case Decl::OMPAllocate:
6334fe6060f1SDimitry Andric     EmitOMPAllocateDecl(cast<OMPAllocateDecl>(D));
6335*0b57cec5SDimitry Andric     break;
6336*0b57cec5SDimitry Andric 
6337*0b57cec5SDimitry Andric   case Decl::OMPDeclareReduction:
6338*0b57cec5SDimitry Andric     EmitOMPDeclareReduction(cast<OMPDeclareReductionDecl>(D));
6339*0b57cec5SDimitry Andric     break;
6340*0b57cec5SDimitry Andric 
6341*0b57cec5SDimitry Andric   case Decl::OMPDeclareMapper:
6342*0b57cec5SDimitry Andric     EmitOMPDeclareMapper(cast<OMPDeclareMapperDecl>(D));
6343*0b57cec5SDimitry Andric     break;
6344*0b57cec5SDimitry Andric 
6345*0b57cec5SDimitry Andric   case Decl::OMPRequires:
6346*0b57cec5SDimitry Andric     EmitOMPRequiresDecl(cast<OMPRequiresDecl>(D));
6347*0b57cec5SDimitry Andric     break;
6348*0b57cec5SDimitry Andric 
6349e8d8bef9SDimitry Andric   case Decl::Typedef:
6350e8d8bef9SDimitry Andric   case Decl::TypeAlias: // using foo = bar; [C++11]
6351e8d8bef9SDimitry Andric     if (CGDebugInfo *DI = getModuleDebugInfo())
6352e8d8bef9SDimitry Andric       DI->EmitAndRetainType(
6353e8d8bef9SDimitry Andric           getContext().getTypedefType(cast<TypedefNameDecl>(D)));
6354e8d8bef9SDimitry Andric     break;
6355e8d8bef9SDimitry Andric 
6356e8d8bef9SDimitry Andric   case Decl::Record:
6357e8d8bef9SDimitry Andric     if (CGDebugInfo *DI = getModuleDebugInfo())
6358e8d8bef9SDimitry Andric       if (cast<RecordDecl>(D)->getDefinition())
6359e8d8bef9SDimitry Andric         DI->EmitAndRetainType(getContext().getRecordType(cast<RecordDecl>(D)));
6360e8d8bef9SDimitry Andric     break;
6361e8d8bef9SDimitry Andric 
6362e8d8bef9SDimitry Andric   case Decl::Enum:
6363e8d8bef9SDimitry Andric     if (CGDebugInfo *DI = getModuleDebugInfo())
6364e8d8bef9SDimitry Andric       if (cast<EnumDecl>(D)->getDefinition())
6365e8d8bef9SDimitry Andric         DI->EmitAndRetainType(getContext().getEnumType(cast<EnumDecl>(D)));
6366e8d8bef9SDimitry Andric     break;
6367e8d8bef9SDimitry Andric 
6368*0b57cec5SDimitry Andric   default:
6369*0b57cec5SDimitry Andric     // Make sure we handled everything we should, every other kind is a
6370*0b57cec5SDimitry Andric     // non-top-level decl.  FIXME: Would be nice to have an isTopLevelDeclKind
6371*0b57cec5SDimitry Andric     // function. Need to recode Decl::Kind to do that easily.
6372*0b57cec5SDimitry Andric     assert(isa<TypeDecl>(D) && "Unsupported decl kind");
6373*0b57cec5SDimitry Andric     break;
6374*0b57cec5SDimitry Andric   }
6375*0b57cec5SDimitry Andric }
6376*0b57cec5SDimitry Andric 
6377*0b57cec5SDimitry Andric void CodeGenModule::AddDeferredUnusedCoverageMapping(Decl *D) {
6378*0b57cec5SDimitry Andric   // Do we need to generate coverage mapping?
6379*0b57cec5SDimitry Andric   if (!CodeGenOpts.CoverageMapping)
6380*0b57cec5SDimitry Andric     return;
6381*0b57cec5SDimitry Andric   switch (D->getKind()) {
6382*0b57cec5SDimitry Andric   case Decl::CXXConversion:
6383*0b57cec5SDimitry Andric   case Decl::CXXMethod:
6384*0b57cec5SDimitry Andric   case Decl::Function:
6385*0b57cec5SDimitry Andric   case Decl::ObjCMethod:
6386*0b57cec5SDimitry Andric   case Decl::CXXConstructor:
6387*0b57cec5SDimitry Andric   case Decl::CXXDestructor: {
6388*0b57cec5SDimitry Andric     if (!cast<FunctionDecl>(D)->doesThisDeclarationHaveABody())
63895ffd83dbSDimitry Andric       break;
6390*0b57cec5SDimitry Andric     SourceManager &SM = getContext().getSourceManager();
6391*0b57cec5SDimitry Andric     if (LimitedCoverage && SM.getMainFileID() != SM.getFileID(D->getBeginLoc()))
63925ffd83dbSDimitry Andric       break;
6393*0b57cec5SDimitry Andric     auto I = DeferredEmptyCoverageMappingDecls.find(D);
6394*0b57cec5SDimitry Andric     if (I == DeferredEmptyCoverageMappingDecls.end())
6395*0b57cec5SDimitry Andric       DeferredEmptyCoverageMappingDecls[D] = true;
6396*0b57cec5SDimitry Andric     break;
6397*0b57cec5SDimitry Andric   }
6398*0b57cec5SDimitry Andric   default:
6399*0b57cec5SDimitry Andric     break;
6400*0b57cec5SDimitry Andric   };
6401*0b57cec5SDimitry Andric }
6402*0b57cec5SDimitry Andric 
6403*0b57cec5SDimitry Andric void CodeGenModule::ClearUnusedCoverageMapping(const Decl *D) {
6404*0b57cec5SDimitry Andric   // Do we need to generate coverage mapping?
6405*0b57cec5SDimitry Andric   if (!CodeGenOpts.CoverageMapping)
6406*0b57cec5SDimitry Andric     return;
6407*0b57cec5SDimitry Andric   if (const auto *Fn = dyn_cast<FunctionDecl>(D)) {
6408*0b57cec5SDimitry Andric     if (Fn->isTemplateInstantiation())
6409*0b57cec5SDimitry Andric       ClearUnusedCoverageMapping(Fn->getTemplateInstantiationPattern());
6410*0b57cec5SDimitry Andric   }
6411*0b57cec5SDimitry Andric   auto I = DeferredEmptyCoverageMappingDecls.find(D);
6412*0b57cec5SDimitry Andric   if (I == DeferredEmptyCoverageMappingDecls.end())
6413*0b57cec5SDimitry Andric     DeferredEmptyCoverageMappingDecls[D] = false;
6414*0b57cec5SDimitry Andric   else
6415*0b57cec5SDimitry Andric     I->second = false;
6416*0b57cec5SDimitry Andric }
6417*0b57cec5SDimitry Andric 
6418*0b57cec5SDimitry Andric void CodeGenModule::EmitDeferredUnusedCoverageMappings() {
6419*0b57cec5SDimitry Andric   // We call takeVector() here to avoid use-after-free.
6420*0b57cec5SDimitry Andric   // FIXME: DeferredEmptyCoverageMappingDecls is getting mutated because
6421*0b57cec5SDimitry Andric   // we deserialize function bodies to emit coverage info for them, and that
6422*0b57cec5SDimitry Andric   // deserializes more declarations. How should we handle that case?
6423*0b57cec5SDimitry Andric   for (const auto &Entry : DeferredEmptyCoverageMappingDecls.takeVector()) {
6424*0b57cec5SDimitry Andric     if (!Entry.second)
6425*0b57cec5SDimitry Andric       continue;
6426*0b57cec5SDimitry Andric     const Decl *D = Entry.first;
6427*0b57cec5SDimitry Andric     switch (D->getKind()) {
6428*0b57cec5SDimitry Andric     case Decl::CXXConversion:
6429*0b57cec5SDimitry Andric     case Decl::CXXMethod:
6430*0b57cec5SDimitry Andric     case Decl::Function:
6431*0b57cec5SDimitry Andric     case Decl::ObjCMethod: {
6432*0b57cec5SDimitry Andric       CodeGenPGO PGO(*this);
6433*0b57cec5SDimitry Andric       GlobalDecl GD(cast<FunctionDecl>(D));
6434*0b57cec5SDimitry Andric       PGO.emitEmptyCounterMapping(D, getMangledName(GD),
6435*0b57cec5SDimitry Andric                                   getFunctionLinkage(GD));
6436*0b57cec5SDimitry Andric       break;
6437*0b57cec5SDimitry Andric     }
6438*0b57cec5SDimitry Andric     case Decl::CXXConstructor: {
6439*0b57cec5SDimitry Andric       CodeGenPGO PGO(*this);
6440*0b57cec5SDimitry Andric       GlobalDecl GD(cast<CXXConstructorDecl>(D), Ctor_Base);
6441*0b57cec5SDimitry Andric       PGO.emitEmptyCounterMapping(D, getMangledName(GD),
6442*0b57cec5SDimitry Andric                                   getFunctionLinkage(GD));
6443*0b57cec5SDimitry Andric       break;
6444*0b57cec5SDimitry Andric     }
6445*0b57cec5SDimitry Andric     case Decl::CXXDestructor: {
6446*0b57cec5SDimitry Andric       CodeGenPGO PGO(*this);
6447*0b57cec5SDimitry Andric       GlobalDecl GD(cast<CXXDestructorDecl>(D), Dtor_Base);
6448*0b57cec5SDimitry Andric       PGO.emitEmptyCounterMapping(D, getMangledName(GD),
6449*0b57cec5SDimitry Andric                                   getFunctionLinkage(GD));
6450*0b57cec5SDimitry Andric       break;
6451*0b57cec5SDimitry Andric     }
6452*0b57cec5SDimitry Andric     default:
6453*0b57cec5SDimitry Andric       break;
6454*0b57cec5SDimitry Andric     };
6455*0b57cec5SDimitry Andric   }
6456*0b57cec5SDimitry Andric }
6457*0b57cec5SDimitry Andric 
64585ffd83dbSDimitry Andric void CodeGenModule::EmitMainVoidAlias() {
64595ffd83dbSDimitry Andric   // In order to transition away from "__original_main" gracefully, emit an
64605ffd83dbSDimitry Andric   // alias for "main" in the no-argument case so that libc can detect when
64615ffd83dbSDimitry Andric   // new-style no-argument main is in used.
64625ffd83dbSDimitry Andric   if (llvm::Function *F = getModule().getFunction("main")) {
64635ffd83dbSDimitry Andric     if (!F->isDeclaration() && F->arg_size() == 0 && !F->isVarArg() &&
646481ad6265SDimitry Andric         F->getReturnType()->isIntegerTy(Context.getTargetInfo().getIntWidth())) {
646581ad6265SDimitry Andric       auto *GA = llvm::GlobalAlias::create("__main_void", F);
646681ad6265SDimitry Andric       GA->setVisibility(llvm::GlobalValue::HiddenVisibility);
646781ad6265SDimitry Andric     }
64685ffd83dbSDimitry Andric   }
64695ffd83dbSDimitry Andric }
64705ffd83dbSDimitry Andric 
6471*0b57cec5SDimitry Andric /// Turns the given pointer into a constant.
6472*0b57cec5SDimitry Andric static llvm::Constant *GetPointerConstant(llvm::LLVMContext &Context,
6473*0b57cec5SDimitry Andric                                           const void *Ptr) {
6474*0b57cec5SDimitry Andric   uintptr_t PtrInt = reinterpret_cast<uintptr_t>(Ptr);
6475*0b57cec5SDimitry Andric   llvm::Type *i64 = llvm::Type::getInt64Ty(Context);
6476*0b57cec5SDimitry Andric   return llvm::ConstantInt::get(i64, PtrInt);
6477*0b57cec5SDimitry Andric }
6478*0b57cec5SDimitry Andric 
6479*0b57cec5SDimitry Andric static void EmitGlobalDeclMetadata(CodeGenModule &CGM,
6480*0b57cec5SDimitry Andric                                    llvm::NamedMDNode *&GlobalMetadata,
6481*0b57cec5SDimitry Andric                                    GlobalDecl D,
6482*0b57cec5SDimitry Andric                                    llvm::GlobalValue *Addr) {
6483*0b57cec5SDimitry Andric   if (!GlobalMetadata)
6484*0b57cec5SDimitry Andric     GlobalMetadata =
6485*0b57cec5SDimitry Andric       CGM.getModule().getOrInsertNamedMetadata("clang.global.decl.ptrs");
6486*0b57cec5SDimitry Andric 
6487*0b57cec5SDimitry Andric   // TODO: should we report variant information for ctors/dtors?
6488*0b57cec5SDimitry Andric   llvm::Metadata *Ops[] = {llvm::ConstantAsMetadata::get(Addr),
6489*0b57cec5SDimitry Andric                            llvm::ConstantAsMetadata::get(GetPointerConstant(
6490*0b57cec5SDimitry Andric                                CGM.getLLVMContext(), D.getDecl()))};
6491*0b57cec5SDimitry Andric   GlobalMetadata->addOperand(llvm::MDNode::get(CGM.getLLVMContext(), Ops));
6492*0b57cec5SDimitry Andric }
6493*0b57cec5SDimitry Andric 
649481ad6265SDimitry Andric bool CodeGenModule::CheckAndReplaceExternCIFuncs(llvm::GlobalValue *Elem,
649581ad6265SDimitry Andric                                                  llvm::GlobalValue *CppFunc) {
649681ad6265SDimitry Andric   // Store the list of ifuncs we need to replace uses in.
649781ad6265SDimitry Andric   llvm::SmallVector<llvm::GlobalIFunc *> IFuncs;
649881ad6265SDimitry Andric   // List of ConstantExprs that we should be able to delete when we're done
649981ad6265SDimitry Andric   // here.
650081ad6265SDimitry Andric   llvm::SmallVector<llvm::ConstantExpr *> CEs;
650181ad6265SDimitry Andric 
650281ad6265SDimitry Andric   // It isn't valid to replace the extern-C ifuncs if all we find is itself!
650381ad6265SDimitry Andric   if (Elem == CppFunc)
650481ad6265SDimitry Andric     return false;
650581ad6265SDimitry Andric 
650681ad6265SDimitry Andric   // First make sure that all users of this are ifuncs (or ifuncs via a
650781ad6265SDimitry Andric   // bitcast), and collect the list of ifuncs and CEs so we can work on them
650881ad6265SDimitry Andric   // later.
650981ad6265SDimitry Andric   for (llvm::User *User : Elem->users()) {
651081ad6265SDimitry Andric     // Users can either be a bitcast ConstExpr that is used by the ifuncs, OR an
651181ad6265SDimitry Andric     // ifunc directly. In any other case, just give up, as we don't know what we
651281ad6265SDimitry Andric     // could break by changing those.
651381ad6265SDimitry Andric     if (auto *ConstExpr = dyn_cast<llvm::ConstantExpr>(User)) {
651481ad6265SDimitry Andric       if (ConstExpr->getOpcode() != llvm::Instruction::BitCast)
651581ad6265SDimitry Andric         return false;
651681ad6265SDimitry Andric 
651781ad6265SDimitry Andric       for (llvm::User *CEUser : ConstExpr->users()) {
651881ad6265SDimitry Andric         if (auto *IFunc = dyn_cast<llvm::GlobalIFunc>(CEUser)) {
651981ad6265SDimitry Andric           IFuncs.push_back(IFunc);
652081ad6265SDimitry Andric         } else {
652181ad6265SDimitry Andric           return false;
652281ad6265SDimitry Andric         }
652381ad6265SDimitry Andric       }
652481ad6265SDimitry Andric       CEs.push_back(ConstExpr);
652581ad6265SDimitry Andric     } else if (auto *IFunc = dyn_cast<llvm::GlobalIFunc>(User)) {
652681ad6265SDimitry Andric       IFuncs.push_back(IFunc);
652781ad6265SDimitry Andric     } else {
652881ad6265SDimitry Andric       // This user is one we don't know how to handle, so fail redirection. This
652981ad6265SDimitry Andric       // will result in an ifunc retaining a resolver name that will ultimately
653081ad6265SDimitry Andric       // fail to be resolved to a defined function.
653181ad6265SDimitry Andric       return false;
653281ad6265SDimitry Andric     }
653381ad6265SDimitry Andric   }
653481ad6265SDimitry Andric 
653581ad6265SDimitry Andric   // Now we know this is a valid case where we can do this alias replacement, we
653681ad6265SDimitry Andric   // need to remove all of the references to Elem (and the bitcasts!) so we can
653781ad6265SDimitry Andric   // delete it.
653881ad6265SDimitry Andric   for (llvm::GlobalIFunc *IFunc : IFuncs)
653981ad6265SDimitry Andric     IFunc->setResolver(nullptr);
654081ad6265SDimitry Andric   for (llvm::ConstantExpr *ConstExpr : CEs)
654181ad6265SDimitry Andric     ConstExpr->destroyConstant();
654281ad6265SDimitry Andric 
654381ad6265SDimitry Andric   // We should now be out of uses for the 'old' version of this function, so we
654481ad6265SDimitry Andric   // can erase it as well.
654581ad6265SDimitry Andric   Elem->eraseFromParent();
654681ad6265SDimitry Andric 
654781ad6265SDimitry Andric   for (llvm::GlobalIFunc *IFunc : IFuncs) {
654881ad6265SDimitry Andric     // The type of the resolver is always just a function-type that returns the
654981ad6265SDimitry Andric     // type of the IFunc, so create that here. If the type of the actual
655081ad6265SDimitry Andric     // resolver doesn't match, it just gets bitcast to the right thing.
655181ad6265SDimitry Andric     auto *ResolverTy =
655281ad6265SDimitry Andric         llvm::FunctionType::get(IFunc->getType(), /*isVarArg*/ false);
655381ad6265SDimitry Andric     llvm::Constant *Resolver = GetOrCreateLLVMFunction(
655481ad6265SDimitry Andric         CppFunc->getName(), ResolverTy, {}, /*ForVTable*/ false);
655581ad6265SDimitry Andric     IFunc->setResolver(Resolver);
655681ad6265SDimitry Andric   }
655781ad6265SDimitry Andric   return true;
655881ad6265SDimitry Andric }
655981ad6265SDimitry Andric 
6560*0b57cec5SDimitry Andric /// For each function which is declared within an extern "C" region and marked
6561*0b57cec5SDimitry Andric /// as 'used', but has internal linkage, create an alias from the unmangled
6562*0b57cec5SDimitry Andric /// name to the mangled name if possible. People expect to be able to refer
6563*0b57cec5SDimitry Andric /// to such functions with an unmangled name from inline assembly within the
6564*0b57cec5SDimitry Andric /// same translation unit.
6565*0b57cec5SDimitry Andric void CodeGenModule::EmitStaticExternCAliases() {
6566*0b57cec5SDimitry Andric   if (!getTargetCodeGenInfo().shouldEmitStaticExternCAliases())
6567*0b57cec5SDimitry Andric     return;
6568*0b57cec5SDimitry Andric   for (auto &I : StaticExternCValues) {
6569*0b57cec5SDimitry Andric     IdentifierInfo *Name = I.first;
6570*0b57cec5SDimitry Andric     llvm::GlobalValue *Val = I.second;
657181ad6265SDimitry Andric 
657281ad6265SDimitry Andric     // If Val is null, that implies there were multiple declarations that each
657381ad6265SDimitry Andric     // had a claim to the unmangled name. In this case, generation of the alias
657481ad6265SDimitry Andric     // is suppressed. See CodeGenModule::MaybeHandleStaticInExternC.
657581ad6265SDimitry Andric     if (!Val)
657681ad6265SDimitry Andric       break;
657781ad6265SDimitry Andric 
657881ad6265SDimitry Andric     llvm::GlobalValue *ExistingElem =
657981ad6265SDimitry Andric         getModule().getNamedValue(Name->getName());
658081ad6265SDimitry Andric 
658181ad6265SDimitry Andric     // If there is either not something already by this name, or we were able to
658281ad6265SDimitry Andric     // replace all uses from IFuncs, create the alias.
658381ad6265SDimitry Andric     if (!ExistingElem || CheckAndReplaceExternCIFuncs(ExistingElem, Val))
6584fe6060f1SDimitry Andric       addCompilerUsedGlobal(llvm::GlobalAlias::create(Name->getName(), Val));
6585*0b57cec5SDimitry Andric   }
6586*0b57cec5SDimitry Andric }
6587*0b57cec5SDimitry Andric 
6588*0b57cec5SDimitry Andric bool CodeGenModule::lookupRepresentativeDecl(StringRef MangledName,
6589*0b57cec5SDimitry Andric                                              GlobalDecl &Result) const {
6590*0b57cec5SDimitry Andric   auto Res = Manglings.find(MangledName);
6591*0b57cec5SDimitry Andric   if (Res == Manglings.end())
6592*0b57cec5SDimitry Andric     return false;
6593*0b57cec5SDimitry Andric   Result = Res->getValue();
6594*0b57cec5SDimitry Andric   return true;
6595*0b57cec5SDimitry Andric }
6596*0b57cec5SDimitry Andric 
6597*0b57cec5SDimitry Andric /// Emits metadata nodes associating all the global values in the
6598*0b57cec5SDimitry Andric /// current module with the Decls they came from.  This is useful for
6599*0b57cec5SDimitry Andric /// projects using IR gen as a subroutine.
6600*0b57cec5SDimitry Andric ///
6601*0b57cec5SDimitry Andric /// Since there's currently no way to associate an MDNode directly
6602*0b57cec5SDimitry Andric /// with an llvm::GlobalValue, we create a global named metadata
6603*0b57cec5SDimitry Andric /// with the name 'clang.global.decl.ptrs'.
6604*0b57cec5SDimitry Andric void CodeGenModule::EmitDeclMetadata() {
6605*0b57cec5SDimitry Andric   llvm::NamedMDNode *GlobalMetadata = nullptr;
6606*0b57cec5SDimitry Andric 
6607*0b57cec5SDimitry Andric   for (auto &I : MangledDeclNames) {
6608*0b57cec5SDimitry Andric     llvm::GlobalValue *Addr = getModule().getNamedValue(I.second);
6609*0b57cec5SDimitry Andric     // Some mangled names don't necessarily have an associated GlobalValue
6610*0b57cec5SDimitry Andric     // in this module, e.g. if we mangled it for DebugInfo.
6611*0b57cec5SDimitry Andric     if (Addr)
6612*0b57cec5SDimitry Andric       EmitGlobalDeclMetadata(*this, GlobalMetadata, I.first, Addr);
6613*0b57cec5SDimitry Andric   }
6614*0b57cec5SDimitry Andric }
6615*0b57cec5SDimitry Andric 
6616*0b57cec5SDimitry Andric /// Emits metadata nodes for all the local variables in the current
6617*0b57cec5SDimitry Andric /// function.
6618*0b57cec5SDimitry Andric void CodeGenFunction::EmitDeclMetadata() {
6619*0b57cec5SDimitry Andric   if (LocalDeclMap.empty()) return;
6620*0b57cec5SDimitry Andric 
6621*0b57cec5SDimitry Andric   llvm::LLVMContext &Context = getLLVMContext();
6622*0b57cec5SDimitry Andric 
6623*0b57cec5SDimitry Andric   // Find the unique metadata ID for this name.
6624*0b57cec5SDimitry Andric   unsigned DeclPtrKind = Context.getMDKindID("clang.decl.ptr");
6625*0b57cec5SDimitry Andric 
6626*0b57cec5SDimitry Andric   llvm::NamedMDNode *GlobalMetadata = nullptr;
6627*0b57cec5SDimitry Andric 
6628*0b57cec5SDimitry Andric   for (auto &I : LocalDeclMap) {
6629*0b57cec5SDimitry Andric     const Decl *D = I.first;
6630*0b57cec5SDimitry Andric     llvm::Value *Addr = I.second.getPointer();
6631*0b57cec5SDimitry Andric     if (auto *Alloca = dyn_cast<llvm::AllocaInst>(Addr)) {
6632*0b57cec5SDimitry Andric       llvm::Value *DAddr = GetPointerConstant(getLLVMContext(), D);
6633*0b57cec5SDimitry Andric       Alloca->setMetadata(
6634*0b57cec5SDimitry Andric           DeclPtrKind, llvm::MDNode::get(
6635*0b57cec5SDimitry Andric                            Context, llvm::ValueAsMetadata::getConstant(DAddr)));
6636*0b57cec5SDimitry Andric     } else if (auto *GV = dyn_cast<llvm::GlobalValue>(Addr)) {
6637*0b57cec5SDimitry Andric       GlobalDecl GD = GlobalDecl(cast<VarDecl>(D));
6638*0b57cec5SDimitry Andric       EmitGlobalDeclMetadata(CGM, GlobalMetadata, GD, GV);
6639*0b57cec5SDimitry Andric     }
6640*0b57cec5SDimitry Andric   }
6641*0b57cec5SDimitry Andric }
6642*0b57cec5SDimitry Andric 
6643*0b57cec5SDimitry Andric void CodeGenModule::EmitVersionIdentMetadata() {
6644*0b57cec5SDimitry Andric   llvm::NamedMDNode *IdentMetadata =
6645*0b57cec5SDimitry Andric     TheModule.getOrInsertNamedMetadata("llvm.ident");
6646*0b57cec5SDimitry Andric   std::string Version = getClangFullVersion();
6647*0b57cec5SDimitry Andric   llvm::LLVMContext &Ctx = TheModule.getContext();
6648*0b57cec5SDimitry Andric 
6649*0b57cec5SDimitry Andric   llvm::Metadata *IdentNode[] = {llvm::MDString::get(Ctx, Version)};
6650*0b57cec5SDimitry Andric   IdentMetadata->addOperand(llvm::MDNode::get(Ctx, IdentNode));
6651*0b57cec5SDimitry Andric }
6652*0b57cec5SDimitry Andric 
6653*0b57cec5SDimitry Andric void CodeGenModule::EmitCommandLineMetadata() {
6654*0b57cec5SDimitry Andric   llvm::NamedMDNode *CommandLineMetadata =
6655*0b57cec5SDimitry Andric     TheModule.getOrInsertNamedMetadata("llvm.commandline");
6656*0b57cec5SDimitry Andric   std::string CommandLine = getCodeGenOpts().RecordCommandLine;
6657*0b57cec5SDimitry Andric   llvm::LLVMContext &Ctx = TheModule.getContext();
6658*0b57cec5SDimitry Andric 
6659*0b57cec5SDimitry Andric   llvm::Metadata *CommandLineNode[] = {llvm::MDString::get(Ctx, CommandLine)};
6660*0b57cec5SDimitry Andric   CommandLineMetadata->addOperand(llvm::MDNode::get(Ctx, CommandLineNode));
6661*0b57cec5SDimitry Andric }
6662*0b57cec5SDimitry Andric 
6663*0b57cec5SDimitry Andric void CodeGenModule::EmitCoverageFile() {
6664*0b57cec5SDimitry Andric   if (getCodeGenOpts().CoverageDataFile.empty() &&
6665*0b57cec5SDimitry Andric       getCodeGenOpts().CoverageNotesFile.empty())
6666*0b57cec5SDimitry Andric     return;
6667*0b57cec5SDimitry Andric 
6668*0b57cec5SDimitry Andric   llvm::NamedMDNode *CUNode = TheModule.getNamedMetadata("llvm.dbg.cu");
6669*0b57cec5SDimitry Andric   if (!CUNode)
6670*0b57cec5SDimitry Andric     return;
6671*0b57cec5SDimitry Andric 
6672*0b57cec5SDimitry Andric   llvm::NamedMDNode *GCov = TheModule.getOrInsertNamedMetadata("llvm.gcov");
6673*0b57cec5SDimitry Andric   llvm::LLVMContext &Ctx = TheModule.getContext();
6674*0b57cec5SDimitry Andric   auto *CoverageDataFile =
6675*0b57cec5SDimitry Andric       llvm::MDString::get(Ctx, getCodeGenOpts().CoverageDataFile);
6676*0b57cec5SDimitry Andric   auto *CoverageNotesFile =
6677*0b57cec5SDimitry Andric       llvm::MDString::get(Ctx, getCodeGenOpts().CoverageNotesFile);
6678*0b57cec5SDimitry Andric   for (int i = 0, e = CUNode->getNumOperands(); i != e; ++i) {
6679*0b57cec5SDimitry Andric     llvm::MDNode *CU = CUNode->getOperand(i);
6680*0b57cec5SDimitry Andric     llvm::Metadata *Elts[] = {CoverageNotesFile, CoverageDataFile, CU};
6681*0b57cec5SDimitry Andric     GCov->addOperand(llvm::MDNode::get(Ctx, Elts));
6682*0b57cec5SDimitry Andric   }
6683*0b57cec5SDimitry Andric }
6684*0b57cec5SDimitry Andric 
6685*0b57cec5SDimitry Andric llvm::Constant *CodeGenModule::GetAddrOfRTTIDescriptor(QualType Ty,
6686*0b57cec5SDimitry Andric                                                        bool ForEH) {
6687*0b57cec5SDimitry Andric   // Return a bogus pointer if RTTI is disabled, unless it's for EH.
6688*0b57cec5SDimitry Andric   // FIXME: should we even be calling this method if RTTI is disabled
6689*0b57cec5SDimitry Andric   // and it's not for EH?
66905ffd83dbSDimitry Andric   if ((!ForEH && !getLangOpts().RTTI) || getLangOpts().CUDAIsDevice ||
66915ffd83dbSDimitry Andric       (getLangOpts().OpenMP && getLangOpts().OpenMPIsDevice &&
66925ffd83dbSDimitry Andric        getTriple().isNVPTX()))
6693*0b57cec5SDimitry Andric     return llvm::Constant::getNullValue(Int8PtrTy);
6694*0b57cec5SDimitry Andric 
6695*0b57cec5SDimitry Andric   if (ForEH && Ty->isObjCObjectPointerType() &&
6696*0b57cec5SDimitry Andric       LangOpts.ObjCRuntime.isGNUFamily())
6697*0b57cec5SDimitry Andric     return ObjCRuntime->GetEHType(Ty);
6698*0b57cec5SDimitry Andric 
6699*0b57cec5SDimitry Andric   return getCXXABI().getAddrOfRTTIDescriptor(Ty);
6700*0b57cec5SDimitry Andric }
6701*0b57cec5SDimitry Andric 
6702*0b57cec5SDimitry Andric void CodeGenModule::EmitOMPThreadPrivateDecl(const OMPThreadPrivateDecl *D) {
6703*0b57cec5SDimitry Andric   // Do not emit threadprivates in simd-only mode.
6704*0b57cec5SDimitry Andric   if (LangOpts.OpenMP && LangOpts.OpenMPSimd)
6705*0b57cec5SDimitry Andric     return;
6706*0b57cec5SDimitry Andric   for (auto RefExpr : D->varlists()) {
6707*0b57cec5SDimitry Andric     auto *VD = cast<VarDecl>(cast<DeclRefExpr>(RefExpr)->getDecl());
6708*0b57cec5SDimitry Andric     bool PerformInit =
6709*0b57cec5SDimitry Andric         VD->getAnyInitializer() &&
6710*0b57cec5SDimitry Andric         !VD->getAnyInitializer()->isConstantInitializer(getContext(),
6711*0b57cec5SDimitry Andric                                                         /*ForRef=*/false);
6712*0b57cec5SDimitry Andric 
671381ad6265SDimitry Andric     Address Addr(GetAddrOfGlobalVar(VD),
671481ad6265SDimitry Andric                  getTypes().ConvertTypeForMem(VD->getType()),
671581ad6265SDimitry Andric                  getContext().getDeclAlign(VD));
6716*0b57cec5SDimitry Andric     if (auto InitFunction = getOpenMPRuntime().emitThreadPrivateVarDefinition(
6717*0b57cec5SDimitry Andric             VD, Addr, RefExpr->getBeginLoc(), PerformInit))
6718*0b57cec5SDimitry Andric       CXXGlobalInits.push_back(InitFunction);
6719*0b57cec5SDimitry Andric   }
6720*0b57cec5SDimitry Andric }
6721*0b57cec5SDimitry Andric 
6722*0b57cec5SDimitry Andric llvm::Metadata *
6723*0b57cec5SDimitry Andric CodeGenModule::CreateMetadataIdentifierImpl(QualType T, MetadataTypeMap &Map,
6724*0b57cec5SDimitry Andric                                             StringRef Suffix) {
67250eae32dcSDimitry Andric   if (auto *FnType = T->getAs<FunctionProtoType>())
67260eae32dcSDimitry Andric     T = getContext().getFunctionType(
67270eae32dcSDimitry Andric         FnType->getReturnType(), FnType->getParamTypes(),
67280eae32dcSDimitry Andric         FnType->getExtProtoInfo().withExceptionSpec(EST_None));
67290eae32dcSDimitry Andric 
6730*0b57cec5SDimitry Andric   llvm::Metadata *&InternalId = Map[T.getCanonicalType()];
6731*0b57cec5SDimitry Andric   if (InternalId)
6732*0b57cec5SDimitry Andric     return InternalId;
6733*0b57cec5SDimitry Andric 
6734*0b57cec5SDimitry Andric   if (isExternallyVisible(T->getLinkage())) {
6735*0b57cec5SDimitry Andric     std::string OutName;
6736*0b57cec5SDimitry Andric     llvm::raw_string_ostream Out(OutName);
6737*0b57cec5SDimitry Andric     getCXXABI().getMangleContext().mangleTypeName(T, Out);
6738*0b57cec5SDimitry Andric     Out << Suffix;
6739*0b57cec5SDimitry Andric 
6740*0b57cec5SDimitry Andric     InternalId = llvm::MDString::get(getLLVMContext(), Out.str());
6741*0b57cec5SDimitry Andric   } else {
6742*0b57cec5SDimitry Andric     InternalId = llvm::MDNode::getDistinct(getLLVMContext(),
6743*0b57cec5SDimitry Andric                                            llvm::ArrayRef<llvm::Metadata *>());
6744*0b57cec5SDimitry Andric   }
6745*0b57cec5SDimitry Andric 
6746*0b57cec5SDimitry Andric   return InternalId;
6747*0b57cec5SDimitry Andric }
6748*0b57cec5SDimitry Andric 
6749*0b57cec5SDimitry Andric llvm::Metadata *CodeGenModule::CreateMetadataIdentifierForType(QualType T) {
6750*0b57cec5SDimitry Andric   return CreateMetadataIdentifierImpl(T, MetadataIdMap, "");
6751*0b57cec5SDimitry Andric }
6752*0b57cec5SDimitry Andric 
6753*0b57cec5SDimitry Andric llvm::Metadata *
6754*0b57cec5SDimitry Andric CodeGenModule::CreateMetadataIdentifierForVirtualMemPtrType(QualType T) {
6755*0b57cec5SDimitry Andric   return CreateMetadataIdentifierImpl(T, VirtualMetadataIdMap, ".virtual");
6756*0b57cec5SDimitry Andric }
6757*0b57cec5SDimitry Andric 
6758*0b57cec5SDimitry Andric // Generalize pointer types to a void pointer with the qualifiers of the
6759*0b57cec5SDimitry Andric // originally pointed-to type, e.g. 'const char *' and 'char * const *'
6760*0b57cec5SDimitry Andric // generalize to 'const void *' while 'char *' and 'const char **' generalize to
6761*0b57cec5SDimitry Andric // 'void *'.
6762*0b57cec5SDimitry Andric static QualType GeneralizeType(ASTContext &Ctx, QualType Ty) {
6763*0b57cec5SDimitry Andric   if (!Ty->isPointerType())
6764*0b57cec5SDimitry Andric     return Ty;
6765*0b57cec5SDimitry Andric 
6766*0b57cec5SDimitry Andric   return Ctx.getPointerType(
6767*0b57cec5SDimitry Andric       QualType(Ctx.VoidTy).withCVRQualifiers(
6768*0b57cec5SDimitry Andric           Ty->getPointeeType().getCVRQualifiers()));
6769*0b57cec5SDimitry Andric }
6770*0b57cec5SDimitry Andric 
6771*0b57cec5SDimitry Andric // Apply type generalization to a FunctionType's return and argument types
6772*0b57cec5SDimitry Andric static QualType GeneralizeFunctionType(ASTContext &Ctx, QualType Ty) {
6773*0b57cec5SDimitry Andric   if (auto *FnType = Ty->getAs<FunctionProtoType>()) {
6774*0b57cec5SDimitry Andric     SmallVector<QualType, 8> GeneralizedParams;
6775*0b57cec5SDimitry Andric     for (auto &Param : FnType->param_types())
6776*0b57cec5SDimitry Andric       GeneralizedParams.push_back(GeneralizeType(Ctx, Param));
6777*0b57cec5SDimitry Andric 
6778*0b57cec5SDimitry Andric     return Ctx.getFunctionType(
6779*0b57cec5SDimitry Andric         GeneralizeType(Ctx, FnType->getReturnType()),
6780*0b57cec5SDimitry Andric         GeneralizedParams, FnType->getExtProtoInfo());
6781*0b57cec5SDimitry Andric   }
6782*0b57cec5SDimitry Andric 
6783*0b57cec5SDimitry Andric   if (auto *FnType = Ty->getAs<FunctionNoProtoType>())
6784*0b57cec5SDimitry Andric     return Ctx.getFunctionNoProtoType(
6785*0b57cec5SDimitry Andric         GeneralizeType(Ctx, FnType->getReturnType()));
6786*0b57cec5SDimitry Andric 
6787*0b57cec5SDimitry Andric   llvm_unreachable("Encountered unknown FunctionType");
6788*0b57cec5SDimitry Andric }
6789*0b57cec5SDimitry Andric 
6790*0b57cec5SDimitry Andric llvm::Metadata *CodeGenModule::CreateMetadataIdentifierGeneralized(QualType T) {
6791*0b57cec5SDimitry Andric   return CreateMetadataIdentifierImpl(GeneralizeFunctionType(getContext(), T),
6792*0b57cec5SDimitry Andric                                       GeneralizedMetadataIdMap, ".generalized");
6793*0b57cec5SDimitry Andric }
6794*0b57cec5SDimitry Andric 
6795*0b57cec5SDimitry Andric /// Returns whether this module needs the "all-vtables" type identifier.
6796*0b57cec5SDimitry Andric bool CodeGenModule::NeedAllVtablesTypeId() const {
6797*0b57cec5SDimitry Andric   // Returns true if at least one of vtable-based CFI checkers is enabled and
6798*0b57cec5SDimitry Andric   // is not in the trapping mode.
6799*0b57cec5SDimitry Andric   return ((LangOpts.Sanitize.has(SanitizerKind::CFIVCall) &&
6800*0b57cec5SDimitry Andric            !CodeGenOpts.SanitizeTrap.has(SanitizerKind::CFIVCall)) ||
6801*0b57cec5SDimitry Andric           (LangOpts.Sanitize.has(SanitizerKind::CFINVCall) &&
6802*0b57cec5SDimitry Andric            !CodeGenOpts.SanitizeTrap.has(SanitizerKind::CFINVCall)) ||
6803*0b57cec5SDimitry Andric           (LangOpts.Sanitize.has(SanitizerKind::CFIDerivedCast) &&
6804*0b57cec5SDimitry Andric            !CodeGenOpts.SanitizeTrap.has(SanitizerKind::CFIDerivedCast)) ||
6805*0b57cec5SDimitry Andric           (LangOpts.Sanitize.has(SanitizerKind::CFIUnrelatedCast) &&
6806*0b57cec5SDimitry Andric            !CodeGenOpts.SanitizeTrap.has(SanitizerKind::CFIUnrelatedCast)));
6807*0b57cec5SDimitry Andric }
6808*0b57cec5SDimitry Andric 
6809*0b57cec5SDimitry Andric void CodeGenModule::AddVTableTypeMetadata(llvm::GlobalVariable *VTable,
6810*0b57cec5SDimitry Andric                                           CharUnits Offset,
6811*0b57cec5SDimitry Andric                                           const CXXRecordDecl *RD) {
6812*0b57cec5SDimitry Andric   llvm::Metadata *MD =
6813*0b57cec5SDimitry Andric       CreateMetadataIdentifierForType(QualType(RD->getTypeForDecl(), 0));
6814*0b57cec5SDimitry Andric   VTable->addTypeMetadata(Offset.getQuantity(), MD);
6815*0b57cec5SDimitry Andric 
6816*0b57cec5SDimitry Andric   if (CodeGenOpts.SanitizeCfiCrossDso)
6817*0b57cec5SDimitry Andric     if (auto CrossDsoTypeId = CreateCrossDsoCfiTypeId(MD))
6818*0b57cec5SDimitry Andric       VTable->addTypeMetadata(Offset.getQuantity(),
6819*0b57cec5SDimitry Andric                               llvm::ConstantAsMetadata::get(CrossDsoTypeId));
6820*0b57cec5SDimitry Andric 
6821*0b57cec5SDimitry Andric   if (NeedAllVtablesTypeId()) {
6822*0b57cec5SDimitry Andric     llvm::Metadata *MD = llvm::MDString::get(getLLVMContext(), "all-vtables");
6823*0b57cec5SDimitry Andric     VTable->addTypeMetadata(Offset.getQuantity(), MD);
6824*0b57cec5SDimitry Andric   }
6825*0b57cec5SDimitry Andric }
6826*0b57cec5SDimitry Andric 
6827*0b57cec5SDimitry Andric llvm::SanitizerStatReport &CodeGenModule::getSanStats() {
6828*0b57cec5SDimitry Andric   if (!SanStats)
6829a7dea167SDimitry Andric     SanStats = std::make_unique<llvm::SanitizerStatReport>(&getModule());
6830*0b57cec5SDimitry Andric 
6831*0b57cec5SDimitry Andric   return *SanStats;
6832*0b57cec5SDimitry Andric }
683323408297SDimitry Andric 
6834*0b57cec5SDimitry Andric llvm::Value *
6835*0b57cec5SDimitry Andric CodeGenModule::createOpenCLIntToSamplerConversion(const Expr *E,
6836*0b57cec5SDimitry Andric                                                   CodeGenFunction &CGF) {
6837*0b57cec5SDimitry Andric   llvm::Constant *C = ConstantEmitter(CGF).emitAbstract(E, E->getType());
683823408297SDimitry Andric   auto *SamplerT = getOpenCLRuntime().getSamplerType(E->getType().getTypePtr());
683923408297SDimitry Andric   auto *FTy = llvm::FunctionType::get(SamplerT, {C->getType()}, false);
6840fe6060f1SDimitry Andric   auto *Call = CGF.EmitRuntimeCall(
684123408297SDimitry Andric       CreateRuntimeFunction(FTy, "__translate_sampler_initializer"), {C});
684223408297SDimitry Andric   return Call;
6843*0b57cec5SDimitry Andric }
68445ffd83dbSDimitry Andric 
68455ffd83dbSDimitry Andric CharUnits CodeGenModule::getNaturalPointeeTypeAlignment(
68465ffd83dbSDimitry Andric     QualType T, LValueBaseInfo *BaseInfo, TBAAAccessInfo *TBAAInfo) {
68475ffd83dbSDimitry Andric   return getNaturalTypeAlignment(T->getPointeeType(), BaseInfo, TBAAInfo,
68485ffd83dbSDimitry Andric                                  /* forPointeeType= */ true);
68495ffd83dbSDimitry Andric }
68505ffd83dbSDimitry Andric 
68515ffd83dbSDimitry Andric CharUnits CodeGenModule::getNaturalTypeAlignment(QualType T,
68525ffd83dbSDimitry Andric                                                  LValueBaseInfo *BaseInfo,
68535ffd83dbSDimitry Andric                                                  TBAAAccessInfo *TBAAInfo,
68545ffd83dbSDimitry Andric                                                  bool forPointeeType) {
68555ffd83dbSDimitry Andric   if (TBAAInfo)
68565ffd83dbSDimitry Andric     *TBAAInfo = getTBAAAccessInfo(T);
68575ffd83dbSDimitry Andric 
68585ffd83dbSDimitry Andric   // FIXME: This duplicates logic in ASTContext::getTypeAlignIfKnown. But
68595ffd83dbSDimitry Andric   // that doesn't return the information we need to compute BaseInfo.
68605ffd83dbSDimitry Andric 
68615ffd83dbSDimitry Andric   // Honor alignment typedef attributes even on incomplete types.
68625ffd83dbSDimitry Andric   // We also honor them straight for C++ class types, even as pointees;
68635ffd83dbSDimitry Andric   // there's an expressivity gap here.
68645ffd83dbSDimitry Andric   if (auto TT = T->getAs<TypedefType>()) {
68655ffd83dbSDimitry Andric     if (auto Align = TT->getDecl()->getMaxAlignment()) {
68665ffd83dbSDimitry Andric       if (BaseInfo)
68675ffd83dbSDimitry Andric         *BaseInfo = LValueBaseInfo(AlignmentSource::AttributedType);
68685ffd83dbSDimitry Andric       return getContext().toCharUnitsFromBits(Align);
68695ffd83dbSDimitry Andric     }
68705ffd83dbSDimitry Andric   }
68715ffd83dbSDimitry Andric 
68725ffd83dbSDimitry Andric   bool AlignForArray = T->isArrayType();
68735ffd83dbSDimitry Andric 
68745ffd83dbSDimitry Andric   // Analyze the base element type, so we don't get confused by incomplete
68755ffd83dbSDimitry Andric   // array types.
68765ffd83dbSDimitry Andric   T = getContext().getBaseElementType(T);
68775ffd83dbSDimitry Andric 
68785ffd83dbSDimitry Andric   if (T->isIncompleteType()) {
68795ffd83dbSDimitry Andric     // We could try to replicate the logic from
68805ffd83dbSDimitry Andric     // ASTContext::getTypeAlignIfKnown, but nothing uses the alignment if the
68815ffd83dbSDimitry Andric     // type is incomplete, so it's impossible to test. We could try to reuse
68825ffd83dbSDimitry Andric     // getTypeAlignIfKnown, but that doesn't return the information we need
68835ffd83dbSDimitry Andric     // to set BaseInfo.  So just ignore the possibility that the alignment is
68845ffd83dbSDimitry Andric     // greater than one.
68855ffd83dbSDimitry Andric     if (BaseInfo)
68865ffd83dbSDimitry Andric       *BaseInfo = LValueBaseInfo(AlignmentSource::Type);
68875ffd83dbSDimitry Andric     return CharUnits::One();
68885ffd83dbSDimitry Andric   }
68895ffd83dbSDimitry Andric 
68905ffd83dbSDimitry Andric   if (BaseInfo)
68915ffd83dbSDimitry Andric     *BaseInfo = LValueBaseInfo(AlignmentSource::Type);
68925ffd83dbSDimitry Andric 
68935ffd83dbSDimitry Andric   CharUnits Alignment;
6894e8d8bef9SDimitry Andric   const CXXRecordDecl *RD;
6895e8d8bef9SDimitry Andric   if (T.getQualifiers().hasUnaligned()) {
6896e8d8bef9SDimitry Andric     Alignment = CharUnits::One();
6897e8d8bef9SDimitry Andric   } else if (forPointeeType && !AlignForArray &&
6898e8d8bef9SDimitry Andric              (RD = T->getAsCXXRecordDecl())) {
68995ffd83dbSDimitry Andric     // For C++ class pointees, we don't know whether we're pointing at a
69005ffd83dbSDimitry Andric     // base or a complete object, so we generally need to use the
69015ffd83dbSDimitry Andric     // non-virtual alignment.
69025ffd83dbSDimitry Andric     Alignment = getClassPointerAlignment(RD);
69035ffd83dbSDimitry Andric   } else {
69045ffd83dbSDimitry Andric     Alignment = getContext().getTypeAlignInChars(T);
69055ffd83dbSDimitry Andric   }
69065ffd83dbSDimitry Andric 
69075ffd83dbSDimitry Andric   // Cap to the global maximum type alignment unless the alignment
69085ffd83dbSDimitry Andric   // was somehow explicit on the type.
69095ffd83dbSDimitry Andric   if (unsigned MaxAlign = getLangOpts().MaxTypeAlign) {
69105ffd83dbSDimitry Andric     if (Alignment.getQuantity() > MaxAlign &&
69115ffd83dbSDimitry Andric         !getContext().isAlignmentRequired(T))
69125ffd83dbSDimitry Andric       Alignment = CharUnits::fromQuantity(MaxAlign);
69135ffd83dbSDimitry Andric   }
69145ffd83dbSDimitry Andric   return Alignment;
69155ffd83dbSDimitry Andric }
69165ffd83dbSDimitry Andric 
69175ffd83dbSDimitry Andric bool CodeGenModule::stopAutoInit() {
69185ffd83dbSDimitry Andric   unsigned StopAfter = getContext().getLangOpts().TrivialAutoVarInitStopAfter;
69195ffd83dbSDimitry Andric   if (StopAfter) {
69205ffd83dbSDimitry Andric     // This number is positive only when -ftrivial-auto-var-init-stop-after=* is
69215ffd83dbSDimitry Andric     // used
69225ffd83dbSDimitry Andric     if (NumAutoVarInit >= StopAfter) {
69235ffd83dbSDimitry Andric       return true;
69245ffd83dbSDimitry Andric     }
69255ffd83dbSDimitry Andric     if (!NumAutoVarInit) {
69265ffd83dbSDimitry Andric       unsigned DiagID = getDiags().getCustomDiagID(
69275ffd83dbSDimitry Andric           DiagnosticsEngine::Warning,
69285ffd83dbSDimitry Andric           "-ftrivial-auto-var-init-stop-after=%0 has been enabled to limit the "
69295ffd83dbSDimitry Andric           "number of times ftrivial-auto-var-init=%1 gets applied.");
69305ffd83dbSDimitry Andric       getDiags().Report(DiagID)
69315ffd83dbSDimitry Andric           << StopAfter
69325ffd83dbSDimitry Andric           << (getContext().getLangOpts().getTrivialAutoVarInit() ==
69335ffd83dbSDimitry Andric                       LangOptions::TrivialAutoVarInitKind::Zero
69345ffd83dbSDimitry Andric                   ? "zero"
69355ffd83dbSDimitry Andric                   : "pattern");
69365ffd83dbSDimitry Andric     }
69375ffd83dbSDimitry Andric     ++NumAutoVarInit;
69385ffd83dbSDimitry Andric   }
69395ffd83dbSDimitry Andric   return false;
69405ffd83dbSDimitry Andric }
6941fe6060f1SDimitry Andric 
69422a66634dSDimitry Andric void CodeGenModule::printPostfixForExternalizedDecl(llvm::raw_ostream &OS,
69432a66634dSDimitry Andric                                                     const Decl *D) const {
69442a66634dSDimitry Andric   // ptxas does not allow '.' in symbol names. On the other hand, HIP prefers
69452a66634dSDimitry Andric   // postfix beginning with '.' since the symbol name can be demangled.
69462a66634dSDimitry Andric   if (LangOpts.HIP)
694781ad6265SDimitry Andric     OS << (isa<VarDecl>(D) ? ".static." : ".intern.");
69482a66634dSDimitry Andric   else
694981ad6265SDimitry Andric     OS << (isa<VarDecl>(D) ? "__static__" : "__intern__");
695081ad6265SDimitry Andric 
695181ad6265SDimitry Andric   // If the CUID is not specified we try to generate a unique postfix.
695281ad6265SDimitry Andric   if (getLangOpts().CUID.empty()) {
695381ad6265SDimitry Andric     SourceManager &SM = getContext().getSourceManager();
695481ad6265SDimitry Andric     PresumedLoc PLoc = SM.getPresumedLoc(D->getLocation());
695581ad6265SDimitry Andric     assert(PLoc.isValid() && "Source location is expected to be valid.");
695681ad6265SDimitry Andric 
695781ad6265SDimitry Andric     // Get the hash of the user defined macros.
695881ad6265SDimitry Andric     llvm::MD5 Hash;
695981ad6265SDimitry Andric     llvm::MD5::MD5Result Result;
696081ad6265SDimitry Andric     for (const auto &Arg : PreprocessorOpts.Macros)
696181ad6265SDimitry Andric       Hash.update(Arg.first);
696281ad6265SDimitry Andric     Hash.final(Result);
696381ad6265SDimitry Andric 
696481ad6265SDimitry Andric     // Get the UniqueID for the file containing the decl.
696581ad6265SDimitry Andric     llvm::sys::fs::UniqueID ID;
696681ad6265SDimitry Andric     if (auto EC = llvm::sys::fs::getUniqueID(PLoc.getFilename(), ID)) {
696781ad6265SDimitry Andric       PLoc = SM.getPresumedLoc(D->getLocation(), /*UseLineDirectives=*/false);
696881ad6265SDimitry Andric       assert(PLoc.isValid() && "Source location is expected to be valid.");
696981ad6265SDimitry Andric       if (auto EC = llvm::sys::fs::getUniqueID(PLoc.getFilename(), ID))
697081ad6265SDimitry Andric         SM.getDiagnostics().Report(diag::err_cannot_open_file)
697181ad6265SDimitry Andric             << PLoc.getFilename() << EC.message();
697281ad6265SDimitry Andric     }
697381ad6265SDimitry Andric     OS << llvm::format("%x", ID.getFile()) << llvm::format("%x", ID.getDevice())
697481ad6265SDimitry Andric        << "_" << llvm::utohexstr(Result.low(), /*LowerCase=*/true, /*Width=*/8);
697581ad6265SDimitry Andric   } else {
697681ad6265SDimitry Andric     OS << getContext().getCUIDHash();
697781ad6265SDimitry Andric   }
6978fe6060f1SDimitry Andric }
6979fcaf7f86SDimitry Andric 
6980fcaf7f86SDimitry Andric void CodeGenModule::moveLazyEmissionStates(CodeGenModule *NewBuilder) {
6981fcaf7f86SDimitry Andric   assert(DeferredDeclsToEmit.empty() &&
6982fcaf7f86SDimitry Andric          "Should have emitted all decls deferred to emit.");
6983fcaf7f86SDimitry Andric   assert(NewBuilder->DeferredDecls.empty() &&
6984fcaf7f86SDimitry Andric          "Newly created module should not have deferred decls");
6985fcaf7f86SDimitry Andric   NewBuilder->DeferredDecls = std::move(DeferredDecls);
6986fcaf7f86SDimitry Andric 
6987fcaf7f86SDimitry Andric   assert(NewBuilder->DeferredVTables.empty() &&
6988fcaf7f86SDimitry Andric          "Newly created module should not have deferred vtables");
6989fcaf7f86SDimitry Andric   NewBuilder->DeferredVTables = std::move(DeferredVTables);
6990fcaf7f86SDimitry Andric 
6991fcaf7f86SDimitry Andric   assert(NewBuilder->MangledDeclNames.empty() &&
6992fcaf7f86SDimitry Andric          "Newly created module should not have mangled decl names");
6993fcaf7f86SDimitry Andric   assert(NewBuilder->Manglings.empty() &&
6994fcaf7f86SDimitry Andric          "Newly created module should not have manglings");
6995fcaf7f86SDimitry Andric   NewBuilder->Manglings = std::move(Manglings);
6996fcaf7f86SDimitry Andric 
6997fcaf7f86SDimitry Andric   assert(WeakRefReferences.empty() && "Not all WeakRefRefs have been applied");
6998fcaf7f86SDimitry Andric   NewBuilder->WeakRefReferences = std::move(WeakRefReferences);
6999fcaf7f86SDimitry Andric 
7000fcaf7f86SDimitry Andric   NewBuilder->TBAA = std::move(TBAA);
7001fcaf7f86SDimitry Andric 
7002fcaf7f86SDimitry Andric   assert(NewBuilder->EmittedDeferredDecls.empty() &&
7003fcaf7f86SDimitry Andric          "Still have (unmerged) EmittedDeferredDecls deferred decls");
7004fcaf7f86SDimitry Andric 
7005fcaf7f86SDimitry Andric   NewBuilder->EmittedDeferredDecls = std::move(EmittedDeferredDecls);
7006972a253aSDimitry Andric 
7007972a253aSDimitry Andric   NewBuilder->ABI->MangleCtx = std::move(ABI->MangleCtx);
7008fcaf7f86SDimitry Andric }
7009