1 //===--- CGDeclCXX.cpp - Emit LLVM Code for C++ declarations --------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This contains code dealing with code generation of C++ declarations
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #include "CodeGenFunction.h"
15 #include "CGCXXABI.h"
16 #include "CGObjCRuntime.h"
17 #include "CGOpenMPRuntime.h"
18 #include "clang/Frontend/CodeGenOptions.h"
19 #include "llvm/ADT/StringExtras.h"
20 #include "llvm/IR/Intrinsics.h"
21 #include "llvm/IR/MDBuilder.h"
22 #include "llvm/Support/Path.h"
23 
24 using namespace clang;
25 using namespace CodeGen;
26 
27 static void EmitDeclInit(CodeGenFunction &CGF, const VarDecl &D,
28                          ConstantAddress DeclPtr) {
29   assert(D.hasGlobalStorage() && "VarDecl must have global storage!");
30   assert(!D.getType()->isReferenceType() &&
31          "Should not call EmitDeclInit on a reference!");
32 
33   QualType type = D.getType();
34   LValue lv = CGF.MakeAddrLValue(DeclPtr, type);
35 
36   const Expr *Init = D.getInit();
37   switch (CGF.getEvaluationKind(type)) {
38   case TEK_Scalar: {
39     CodeGenModule &CGM = CGF.CGM;
40     if (lv.isObjCStrong())
41       CGM.getObjCRuntime().EmitObjCGlobalAssign(CGF, CGF.EmitScalarExpr(Init),
42                                                 DeclPtr, D.getTLSKind());
43     else if (lv.isObjCWeak())
44       CGM.getObjCRuntime().EmitObjCWeakAssign(CGF, CGF.EmitScalarExpr(Init),
45                                               DeclPtr);
46     else
47       CGF.EmitScalarInit(Init, &D, lv, false);
48     return;
49   }
50   case TEK_Complex:
51     CGF.EmitComplexExprIntoLValue(Init, lv, /*isInit*/ true);
52     return;
53   case TEK_Aggregate:
54     CGF.EmitAggExpr(Init, AggValueSlot::forLValue(lv,AggValueSlot::IsDestructed,
55                                           AggValueSlot::DoesNotNeedGCBarriers,
56                                                   AggValueSlot::IsNotAliased,
57                                                   AggValueSlot::DoesNotOverlap));
58     return;
59   }
60   llvm_unreachable("bad evaluation kind");
61 }
62 
63 /// Emit code to cause the destruction of the given variable with
64 /// static storage duration.
65 static void EmitDeclDestroy(CodeGenFunction &CGF, const VarDecl &D,
66                             ConstantAddress addr) {
67   CodeGenModule &CGM = CGF.CGM;
68 
69   // FIXME:  __attribute__((cleanup)) ?
70 
71   QualType type = D.getType();
72   QualType::DestructionKind dtorKind = type.isDestructedType();
73 
74   switch (dtorKind) {
75   case QualType::DK_none:
76     return;
77 
78   case QualType::DK_cxx_destructor:
79     break;
80 
81   case QualType::DK_objc_strong_lifetime:
82   case QualType::DK_objc_weak_lifetime:
83   case QualType::DK_nontrivial_c_struct:
84     // We don't care about releasing objects during process teardown.
85     assert(!D.getTLSKind() && "should have rejected this");
86     return;
87   }
88 
89   llvm::Constant *function;
90   llvm::Constant *argument;
91 
92   // Special-case non-array C++ destructors, if they have the right signature.
93   // Under some ABIs, destructors return this instead of void, and cannot be
94   // passed directly to __cxa_atexit if the target does not allow this mismatch.
95   const CXXRecordDecl *Record = type->getAsCXXRecordDecl();
96   bool CanRegisterDestructor =
97       Record && (!CGM.getCXXABI().HasThisReturn(
98                      GlobalDecl(Record->getDestructor(), Dtor_Complete)) ||
99                  CGM.getCXXABI().canCallMismatchedFunctionType());
100   // If __cxa_atexit is disabled via a flag, a different helper function is
101   // generated elsewhere which uses atexit instead, and it takes the destructor
102   // directly.
103   bool UsingExternalHelper = !CGM.getCodeGenOpts().CXAAtExit;
104   if (Record && (CanRegisterDestructor || UsingExternalHelper)) {
105     assert(!Record->hasTrivialDestructor());
106     CXXDestructorDecl *dtor = Record->getDestructor();
107 
108     function = CGM.getAddrOfCXXStructor(dtor, StructorType::Complete);
109     argument = llvm::ConstantExpr::getBitCast(
110         addr.getPointer(), CGF.getTypes().ConvertType(type)->getPointerTo());
111 
112   // Otherwise, the standard logic requires a helper function.
113   } else {
114     function = CodeGenFunction(CGM)
115         .generateDestroyHelper(addr, type, CGF.getDestroyer(dtorKind),
116                                CGF.needsEHCleanup(dtorKind), &D);
117     argument = llvm::Constant::getNullValue(CGF.Int8PtrTy);
118   }
119 
120   CGM.getCXXABI().registerGlobalDtor(CGF, D, function, argument);
121 }
122 
123 /// Emit code to cause the variable at the given address to be considered as
124 /// constant from this point onwards.
125 static void EmitDeclInvariant(CodeGenFunction &CGF, const VarDecl &D,
126                               llvm::Constant *Addr) {
127   // Do not emit the intrinsic if we're not optimizing.
128   if (!CGF.CGM.getCodeGenOpts().OptimizationLevel)
129     return;
130 
131   // Grab the llvm.invariant.start intrinsic.
132   llvm::Intrinsic::ID InvStartID = llvm::Intrinsic::invariant_start;
133   // Overloaded address space type.
134   llvm::Type *ObjectPtr[1] = {CGF.Int8PtrTy};
135   llvm::Constant *InvariantStart = CGF.CGM.getIntrinsic(InvStartID, ObjectPtr);
136 
137   // Emit a call with the size in bytes of the object.
138   CharUnits WidthChars = CGF.getContext().getTypeSizeInChars(D.getType());
139   uint64_t Width = WidthChars.getQuantity();
140   llvm::Value *Args[2] = { llvm::ConstantInt::getSigned(CGF.Int64Ty, Width),
141                            llvm::ConstantExpr::getBitCast(Addr, CGF.Int8PtrTy)};
142   CGF.Builder.CreateCall(InvariantStart, Args);
143 }
144 
145 void CodeGenFunction::EmitCXXGlobalVarDeclInit(const VarDecl &D,
146                                                llvm::Constant *DeclPtr,
147                                                bool PerformInit) {
148 
149   const Expr *Init = D.getInit();
150   QualType T = D.getType();
151 
152   // The address space of a static local variable (DeclPtr) may be different
153   // from the address space of the "this" argument of the constructor. In that
154   // case, we need an addrspacecast before calling the constructor.
155   //
156   // struct StructWithCtor {
157   //   __device__ StructWithCtor() {...}
158   // };
159   // __device__ void foo() {
160   //   __shared__ StructWithCtor s;
161   //   ...
162   // }
163   //
164   // For example, in the above CUDA code, the static local variable s has a
165   // "shared" address space qualifier, but the constructor of StructWithCtor
166   // expects "this" in the "generic" address space.
167   unsigned ExpectedAddrSpace = getContext().getTargetAddressSpace(T);
168   unsigned ActualAddrSpace = DeclPtr->getType()->getPointerAddressSpace();
169   if (ActualAddrSpace != ExpectedAddrSpace) {
170     llvm::Type *LTy = CGM.getTypes().ConvertTypeForMem(T);
171     llvm::PointerType *PTy = llvm::PointerType::get(LTy, ExpectedAddrSpace);
172     DeclPtr = llvm::ConstantExpr::getAddrSpaceCast(DeclPtr, PTy);
173   }
174 
175   ConstantAddress DeclAddr(DeclPtr, getContext().getDeclAlign(&D));
176 
177   if (!T->isReferenceType()) {
178     if (getLangOpts().OpenMP && !getLangOpts().OpenMPSimd &&
179         D.hasAttr<OMPThreadPrivateDeclAttr>()) {
180       (void)CGM.getOpenMPRuntime().emitThreadPrivateVarDefinition(
181           &D, DeclAddr, D.getAttr<OMPThreadPrivateDeclAttr>()->getLocation(),
182           PerformInit, this);
183     }
184     if (PerformInit)
185       EmitDeclInit(*this, D, DeclAddr);
186     if (CGM.isTypeConstant(D.getType(), true))
187       EmitDeclInvariant(*this, D, DeclPtr);
188     else
189       EmitDeclDestroy(*this, D, DeclAddr);
190     return;
191   }
192 
193   assert(PerformInit && "cannot have constant initializer which needs "
194          "destruction for reference");
195   RValue RV = EmitReferenceBindingToExpr(Init);
196   EmitStoreOfScalar(RV.getScalarVal(), DeclAddr, false, T);
197 }
198 
199 /// Create a stub function, suitable for being passed to atexit,
200 /// which passes the given address to the given destructor function.
201 llvm::Constant *CodeGenFunction::createAtExitStub(const VarDecl &VD,
202                                                   llvm::Constant *dtor,
203                                                   llvm::Constant *addr) {
204   // Get the destructor function type, void(*)(void).
205   llvm::FunctionType *ty = llvm::FunctionType::get(CGM.VoidTy, false);
206   SmallString<256> FnName;
207   {
208     llvm::raw_svector_ostream Out(FnName);
209     CGM.getCXXABI().getMangleContext().mangleDynamicAtExitDestructor(&VD, Out);
210   }
211 
212   const CGFunctionInfo &FI = CGM.getTypes().arrangeNullaryFunction();
213   llvm::Function *fn = CGM.CreateGlobalInitOrDestructFunction(ty, FnName.str(),
214                                                               FI,
215                                                               VD.getLocation());
216 
217   CodeGenFunction CGF(CGM);
218 
219   CGF.StartFunction(&VD, CGM.getContext().VoidTy, fn, FI, FunctionArgList());
220 
221   llvm::CallInst *call = CGF.Builder.CreateCall(dtor, addr);
222 
223  // Make sure the call and the callee agree on calling convention.
224   if (llvm::Function *dtorFn =
225         dyn_cast<llvm::Function>(dtor->stripPointerCasts()))
226     call->setCallingConv(dtorFn->getCallingConv());
227 
228   CGF.FinishFunction();
229 
230   return fn;
231 }
232 
233 /// Register a global destructor using the C atexit runtime function.
234 void CodeGenFunction::registerGlobalDtorWithAtExit(const VarDecl &VD,
235                                                    llvm::Constant *dtor,
236                                                    llvm::Constant *addr) {
237   // Create a function which calls the destructor.
238   llvm::Constant *dtorStub = createAtExitStub(VD, dtor, addr);
239   registerGlobalDtorWithAtExit(dtorStub);
240 }
241 
242 void CodeGenFunction::registerGlobalDtorWithAtExit(llvm::Constant *dtorStub) {
243   // extern "C" int atexit(void (*f)(void));
244   llvm::FunctionType *atexitTy =
245     llvm::FunctionType::get(IntTy, dtorStub->getType(), false);
246 
247   llvm::Constant *atexit =
248       CGM.CreateRuntimeFunction(atexitTy, "atexit", llvm::AttributeList(),
249                                 /*Local=*/true);
250   if (llvm::Function *atexitFn = dyn_cast<llvm::Function>(atexit))
251     atexitFn->setDoesNotThrow();
252 
253   EmitNounwindRuntimeCall(atexit, dtorStub);
254 }
255 
256 void CodeGenFunction::EmitCXXGuardedInit(const VarDecl &D,
257                                          llvm::GlobalVariable *DeclPtr,
258                                          bool PerformInit) {
259   // If we've been asked to forbid guard variables, emit an error now.
260   // This diagnostic is hard-coded for Darwin's use case;  we can find
261   // better phrasing if someone else needs it.
262   if (CGM.getCodeGenOpts().ForbidGuardVariables)
263     CGM.Error(D.getLocation(),
264               "this initialization requires a guard variable, which "
265               "the kernel does not support");
266 
267   CGM.getCXXABI().EmitGuardedInit(*this, D, DeclPtr, PerformInit);
268 }
269 
270 void CodeGenFunction::EmitCXXGuardedInitBranch(llvm::Value *NeedsInit,
271                                                llvm::BasicBlock *InitBlock,
272                                                llvm::BasicBlock *NoInitBlock,
273                                                GuardKind Kind,
274                                                const VarDecl *D) {
275   assert((Kind == GuardKind::TlsGuard || D) && "no guarded variable");
276 
277   // A guess at how many times we will enter the initialization of a
278   // variable, depending on the kind of variable.
279   static const uint64_t InitsPerTLSVar = 1024;
280   static const uint64_t InitsPerLocalVar = 1024 * 1024;
281 
282   llvm::MDNode *Weights;
283   if (Kind == GuardKind::VariableGuard && !D->isLocalVarDecl()) {
284     // For non-local variables, don't apply any weighting for now. Due to our
285     // use of COMDATs, we expect there to be at most one initialization of the
286     // variable per DSO, but we have no way to know how many DSOs will try to
287     // initialize the variable.
288     Weights = nullptr;
289   } else {
290     uint64_t NumInits;
291     // FIXME: For the TLS case, collect and use profiling information to
292     // determine a more accurate brach weight.
293     if (Kind == GuardKind::TlsGuard || D->getTLSKind())
294       NumInits = InitsPerTLSVar;
295     else
296       NumInits = InitsPerLocalVar;
297 
298     // The probability of us entering the initializer is
299     //   1 / (total number of times we attempt to initialize the variable).
300     llvm::MDBuilder MDHelper(CGM.getLLVMContext());
301     Weights = MDHelper.createBranchWeights(1, NumInits - 1);
302   }
303 
304   Builder.CreateCondBr(NeedsInit, InitBlock, NoInitBlock, Weights);
305 }
306 
307 llvm::Function *CodeGenModule::CreateGlobalInitOrDestructFunction(
308     llvm::FunctionType *FTy, const Twine &Name, const CGFunctionInfo &FI,
309     SourceLocation Loc, bool TLS) {
310   llvm::Function *Fn =
311     llvm::Function::Create(FTy, llvm::GlobalValue::InternalLinkage,
312                            Name, &getModule());
313   if (!getLangOpts().AppleKext && !TLS) {
314     // Set the section if needed.
315     if (const char *Section = getTarget().getStaticInitSectionSpecifier())
316       Fn->setSection(Section);
317   }
318 
319   SetInternalFunctionAttributes(GlobalDecl(), Fn, FI);
320 
321   Fn->setCallingConv(getRuntimeCC());
322 
323   if (!getLangOpts().Exceptions)
324     Fn->setDoesNotThrow();
325 
326   if (getLangOpts().Sanitize.has(SanitizerKind::Address) &&
327       !isInSanitizerBlacklist(SanitizerKind::Address, Fn, Loc))
328     Fn->addFnAttr(llvm::Attribute::SanitizeAddress);
329 
330   if (getLangOpts().Sanitize.has(SanitizerKind::KernelAddress) &&
331       !isInSanitizerBlacklist(SanitizerKind::KernelAddress, Fn, Loc))
332     Fn->addFnAttr(llvm::Attribute::SanitizeAddress);
333 
334   if (getLangOpts().Sanitize.has(SanitizerKind::HWAddress) &&
335       !isInSanitizerBlacklist(SanitizerKind::HWAddress, Fn, Loc))
336     Fn->addFnAttr(llvm::Attribute::SanitizeHWAddress);
337 
338   if (getLangOpts().Sanitize.has(SanitizerKind::KernelHWAddress) &&
339       !isInSanitizerBlacklist(SanitizerKind::KernelHWAddress, Fn, Loc))
340     Fn->addFnAttr(llvm::Attribute::SanitizeHWAddress);
341 
342   if (getLangOpts().Sanitize.has(SanitizerKind::Thread) &&
343       !isInSanitizerBlacklist(SanitizerKind::Thread, Fn, Loc))
344     Fn->addFnAttr(llvm::Attribute::SanitizeThread);
345 
346   if (getLangOpts().Sanitize.has(SanitizerKind::Memory) &&
347       !isInSanitizerBlacklist(SanitizerKind::Memory, Fn, Loc))
348     Fn->addFnAttr(llvm::Attribute::SanitizeMemory);
349 
350   if (getLangOpts().Sanitize.has(SanitizerKind::KernelMemory) &&
351       !isInSanitizerBlacklist(SanitizerKind::KernelMemory, Fn, Loc))
352     Fn->addFnAttr(llvm::Attribute::SanitizeMemory);
353 
354   if (getLangOpts().Sanitize.has(SanitizerKind::SafeStack) &&
355       !isInSanitizerBlacklist(SanitizerKind::SafeStack, Fn, Loc))
356     Fn->addFnAttr(llvm::Attribute::SafeStack);
357 
358   if (getLangOpts().Sanitize.has(SanitizerKind::ShadowCallStack) &&
359       !isInSanitizerBlacklist(SanitizerKind::ShadowCallStack, Fn, Loc))
360     Fn->addFnAttr(llvm::Attribute::ShadowCallStack);
361 
362   auto RASignKind = getCodeGenOpts().getSignReturnAddress();
363   if (RASignKind != CodeGenOptions::SignReturnAddressScope::None)
364     Fn->addFnAttr("sign-return-address",
365                   RASignKind == CodeGenOptions::SignReturnAddressScope::All
366                       ? "all"
367                       : "non-leaf");
368   return Fn;
369 }
370 
371 /// Create a global pointer to a function that will initialize a global
372 /// variable.  The user has requested that this pointer be emitted in a specific
373 /// section.
374 void CodeGenModule::EmitPointerToInitFunc(const VarDecl *D,
375                                           llvm::GlobalVariable *GV,
376                                           llvm::Function *InitFunc,
377                                           InitSegAttr *ISA) {
378   llvm::GlobalVariable *PtrArray = new llvm::GlobalVariable(
379       TheModule, InitFunc->getType(), /*isConstant=*/true,
380       llvm::GlobalValue::PrivateLinkage, InitFunc, "__cxx_init_fn_ptr");
381   PtrArray->setSection(ISA->getSection());
382   addUsedGlobal(PtrArray);
383 
384   // If the GV is already in a comdat group, then we have to join it.
385   if (llvm::Comdat *C = GV->getComdat())
386     PtrArray->setComdat(C);
387 }
388 
389 void
390 CodeGenModule::EmitCXXGlobalVarDeclInitFunc(const VarDecl *D,
391                                             llvm::GlobalVariable *Addr,
392                                             bool PerformInit) {
393 
394   // According to E.2.3.1 in CUDA-7.5 Programming guide: __device__,
395   // __constant__ and __shared__ variables defined in namespace scope,
396   // that are of class type, cannot have a non-empty constructor. All
397   // the checks have been done in Sema by now. Whatever initializers
398   // are allowed are empty and we just need to ignore them here.
399   if (getLangOpts().CUDA && getLangOpts().CUDAIsDevice &&
400       (D->hasAttr<CUDADeviceAttr>() || D->hasAttr<CUDAConstantAttr>() ||
401        D->hasAttr<CUDASharedAttr>()))
402     return;
403 
404   if (getLangOpts().OpenMP &&
405       getOpenMPRuntime().emitDeclareTargetVarDefinition(D, Addr, PerformInit))
406     return;
407 
408   // Check if we've already initialized this decl.
409   auto I = DelayedCXXInitPosition.find(D);
410   if (I != DelayedCXXInitPosition.end() && I->second == ~0U)
411     return;
412 
413   llvm::FunctionType *FTy = llvm::FunctionType::get(VoidTy, false);
414   SmallString<256> FnName;
415   {
416     llvm::raw_svector_ostream Out(FnName);
417     getCXXABI().getMangleContext().mangleDynamicInitializer(D, Out);
418   }
419 
420   // Create a variable initialization function.
421   llvm::Function *Fn =
422       CreateGlobalInitOrDestructFunction(FTy, FnName.str(),
423                                          getTypes().arrangeNullaryFunction(),
424                                          D->getLocation());
425 
426   auto *ISA = D->getAttr<InitSegAttr>();
427   CodeGenFunction(*this).GenerateCXXGlobalVarDeclInitFunc(Fn, D, Addr,
428                                                           PerformInit);
429 
430   llvm::GlobalVariable *COMDATKey =
431       supportsCOMDAT() && D->isExternallyVisible() ? Addr : nullptr;
432 
433   if (D->getTLSKind()) {
434     // FIXME: Should we support init_priority for thread_local?
435     // FIXME: We only need to register one __cxa_thread_atexit function for the
436     // entire TU.
437     CXXThreadLocalInits.push_back(Fn);
438     CXXThreadLocalInitVars.push_back(D);
439   } else if (PerformInit && ISA) {
440     EmitPointerToInitFunc(D, Addr, Fn, ISA);
441   } else if (auto *IPA = D->getAttr<InitPriorityAttr>()) {
442     OrderGlobalInits Key(IPA->getPriority(), PrioritizedCXXGlobalInits.size());
443     PrioritizedCXXGlobalInits.push_back(std::make_pair(Key, Fn));
444   } else if (isTemplateInstantiation(D->getTemplateSpecializationKind())) {
445     // C++ [basic.start.init]p2:
446     //   Definitions of explicitly specialized class template static data
447     //   members have ordered initialization. Other class template static data
448     //   members (i.e., implicitly or explicitly instantiated specializations)
449     //   have unordered initialization.
450     //
451     // As a consequence, we can put them into their own llvm.global_ctors entry.
452     //
453     // If the global is externally visible, put the initializer into a COMDAT
454     // group with the global being initialized.  On most platforms, this is a
455     // minor startup time optimization.  In the MS C++ ABI, there are no guard
456     // variables, so this COMDAT key is required for correctness.
457     AddGlobalCtor(Fn, 65535, COMDATKey);
458   } else if (D->hasAttr<SelectAnyAttr>()) {
459     // SelectAny globals will be comdat-folded. Put the initializer into a
460     // COMDAT group associated with the global, so the initializers get folded
461     // too.
462     AddGlobalCtor(Fn, 65535, COMDATKey);
463   } else {
464     I = DelayedCXXInitPosition.find(D); // Re-do lookup in case of re-hash.
465     if (I == DelayedCXXInitPosition.end()) {
466       CXXGlobalInits.push_back(Fn);
467     } else if (I->second != ~0U) {
468       assert(I->second < CXXGlobalInits.size() &&
469              CXXGlobalInits[I->second] == nullptr);
470       CXXGlobalInits[I->second] = Fn;
471     }
472   }
473 
474   // Remember that we already emitted the initializer for this global.
475   DelayedCXXInitPosition[D] = ~0U;
476 }
477 
478 void CodeGenModule::EmitCXXThreadLocalInitFunc() {
479   getCXXABI().EmitThreadLocalInitFuncs(
480       *this, CXXThreadLocals, CXXThreadLocalInits, CXXThreadLocalInitVars);
481 
482   CXXThreadLocalInits.clear();
483   CXXThreadLocalInitVars.clear();
484   CXXThreadLocals.clear();
485 }
486 
487 void
488 CodeGenModule::EmitCXXGlobalInitFunc() {
489   while (!CXXGlobalInits.empty() && !CXXGlobalInits.back())
490     CXXGlobalInits.pop_back();
491 
492   if (CXXGlobalInits.empty() && PrioritizedCXXGlobalInits.empty())
493     return;
494 
495   llvm::FunctionType *FTy = llvm::FunctionType::get(VoidTy, false);
496   const CGFunctionInfo &FI = getTypes().arrangeNullaryFunction();
497 
498   // Create our global initialization function.
499   if (!PrioritizedCXXGlobalInits.empty()) {
500     SmallVector<llvm::Function *, 8> LocalCXXGlobalInits;
501     llvm::array_pod_sort(PrioritizedCXXGlobalInits.begin(),
502                          PrioritizedCXXGlobalInits.end());
503     // Iterate over "chunks" of ctors with same priority and emit each chunk
504     // into separate function. Note - everything is sorted first by priority,
505     // second - by lex order, so we emit ctor functions in proper order.
506     for (SmallVectorImpl<GlobalInitData >::iterator
507            I = PrioritizedCXXGlobalInits.begin(),
508            E = PrioritizedCXXGlobalInits.end(); I != E; ) {
509       SmallVectorImpl<GlobalInitData >::iterator
510         PrioE = std::upper_bound(I + 1, E, *I, GlobalInitPriorityCmp());
511 
512       LocalCXXGlobalInits.clear();
513       unsigned Priority = I->first.priority;
514       // Compute the function suffix from priority. Prepend with zeroes to make
515       // sure the function names are also ordered as priorities.
516       std::string PrioritySuffix = llvm::utostr(Priority);
517       // Priority is always <= 65535 (enforced by sema).
518       PrioritySuffix = std::string(6-PrioritySuffix.size(), '0')+PrioritySuffix;
519       llvm::Function *Fn = CreateGlobalInitOrDestructFunction(
520           FTy, "_GLOBAL__I_" + PrioritySuffix, FI);
521 
522       for (; I < PrioE; ++I)
523         LocalCXXGlobalInits.push_back(I->second);
524 
525       CodeGenFunction(*this).GenerateCXXGlobalInitFunc(Fn, LocalCXXGlobalInits);
526       AddGlobalCtor(Fn, Priority);
527     }
528     PrioritizedCXXGlobalInits.clear();
529   }
530 
531   // Include the filename in the symbol name. Including "sub_" matches gcc and
532   // makes sure these symbols appear lexicographically behind the symbols with
533   // priority emitted above.
534   SmallString<128> FileName = llvm::sys::path::filename(getModule().getName());
535   if (FileName.empty())
536     FileName = "<null>";
537 
538   for (size_t i = 0; i < FileName.size(); ++i) {
539     // Replace everything that's not [a-zA-Z0-9._] with a _. This set happens
540     // to be the set of C preprocessing numbers.
541     if (!isPreprocessingNumberBody(FileName[i]))
542       FileName[i] = '_';
543   }
544 
545   llvm::Function *Fn = CreateGlobalInitOrDestructFunction(
546       FTy, llvm::Twine("_GLOBAL__sub_I_", FileName), FI);
547 
548   CodeGenFunction(*this).GenerateCXXGlobalInitFunc(Fn, CXXGlobalInits);
549   AddGlobalCtor(Fn);
550 
551   CXXGlobalInits.clear();
552 }
553 
554 void CodeGenModule::EmitCXXGlobalDtorFunc() {
555   if (CXXGlobalDtors.empty())
556     return;
557 
558   llvm::FunctionType *FTy = llvm::FunctionType::get(VoidTy, false);
559 
560   // Create our global destructor function.
561   const CGFunctionInfo &FI = getTypes().arrangeNullaryFunction();
562   llvm::Function *Fn =
563       CreateGlobalInitOrDestructFunction(FTy, "_GLOBAL__D_a", FI);
564 
565   CodeGenFunction(*this).GenerateCXXGlobalDtorsFunc(Fn, CXXGlobalDtors);
566   AddGlobalDtor(Fn);
567 }
568 
569 /// Emit the code necessary to initialize the given global variable.
570 void CodeGenFunction::GenerateCXXGlobalVarDeclInitFunc(llvm::Function *Fn,
571                                                        const VarDecl *D,
572                                                  llvm::GlobalVariable *Addr,
573                                                        bool PerformInit) {
574   // Check if we need to emit debug info for variable initializer.
575   if (D->hasAttr<NoDebugAttr>())
576     DebugInfo = nullptr; // disable debug info indefinitely for this function
577 
578   CurEHLocation = D->getBeginLoc();
579 
580   StartFunction(GlobalDecl(D), getContext().VoidTy, Fn,
581                 getTypes().arrangeNullaryFunction(),
582                 FunctionArgList(), D->getLocation(),
583                 D->getInit()->getExprLoc());
584 
585   // Use guarded initialization if the global variable is weak. This
586   // occurs for, e.g., instantiated static data members and
587   // definitions explicitly marked weak.
588   if (Addr->hasWeakLinkage() || Addr->hasLinkOnceLinkage()) {
589     EmitCXXGuardedInit(*D, Addr, PerformInit);
590   } else {
591     EmitCXXGlobalVarDeclInit(*D, Addr, PerformInit);
592   }
593 
594   FinishFunction();
595 }
596 
597 void
598 CodeGenFunction::GenerateCXXGlobalInitFunc(llvm::Function *Fn,
599                                            ArrayRef<llvm::Function *> Decls,
600                                            Address Guard) {
601   {
602     auto NL = ApplyDebugLocation::CreateEmpty(*this);
603     StartFunction(GlobalDecl(), getContext().VoidTy, Fn,
604                   getTypes().arrangeNullaryFunction(), FunctionArgList());
605     // Emit an artificial location for this function.
606     auto AL = ApplyDebugLocation::CreateArtificial(*this);
607 
608     llvm::BasicBlock *ExitBlock = nullptr;
609     if (Guard.isValid()) {
610       // If we have a guard variable, check whether we've already performed
611       // these initializations. This happens for TLS initialization functions.
612       llvm::Value *GuardVal = Builder.CreateLoad(Guard);
613       llvm::Value *Uninit = Builder.CreateIsNull(GuardVal,
614                                                  "guard.uninitialized");
615       llvm::BasicBlock *InitBlock = createBasicBlock("init");
616       ExitBlock = createBasicBlock("exit");
617       EmitCXXGuardedInitBranch(Uninit, InitBlock, ExitBlock,
618                                GuardKind::TlsGuard, nullptr);
619       EmitBlock(InitBlock);
620       // Mark as initialized before initializing anything else. If the
621       // initializers use previously-initialized thread_local vars, that's
622       // probably supposed to be OK, but the standard doesn't say.
623       Builder.CreateStore(llvm::ConstantInt::get(GuardVal->getType(),1), Guard);
624     }
625 
626     RunCleanupsScope Scope(*this);
627 
628     // When building in Objective-C++ ARC mode, create an autorelease pool
629     // around the global initializers.
630     if (getLangOpts().ObjCAutoRefCount && getLangOpts().CPlusPlus) {
631       llvm::Value *token = EmitObjCAutoreleasePoolPush();
632       EmitObjCAutoreleasePoolCleanup(token);
633     }
634 
635     for (unsigned i = 0, e = Decls.size(); i != e; ++i)
636       if (Decls[i])
637         EmitRuntimeCall(Decls[i]);
638 
639     Scope.ForceCleanup();
640 
641     if (ExitBlock) {
642       Builder.CreateBr(ExitBlock);
643       EmitBlock(ExitBlock);
644     }
645   }
646 
647   FinishFunction();
648 }
649 
650 void CodeGenFunction::GenerateCXXGlobalDtorsFunc(
651     llvm::Function *Fn,
652     const std::vector<std::pair<llvm::WeakTrackingVH, llvm::Constant *>>
653         &DtorsAndObjects) {
654   {
655     auto NL = ApplyDebugLocation::CreateEmpty(*this);
656     StartFunction(GlobalDecl(), getContext().VoidTy, Fn,
657                   getTypes().arrangeNullaryFunction(), FunctionArgList());
658     // Emit an artificial location for this function.
659     auto AL = ApplyDebugLocation::CreateArtificial(*this);
660 
661     // Emit the dtors, in reverse order from construction.
662     for (unsigned i = 0, e = DtorsAndObjects.size(); i != e; ++i) {
663       llvm::Value *Callee = DtorsAndObjects[e - i - 1].first;
664       llvm::CallInst *CI = Builder.CreateCall(Callee,
665                                           DtorsAndObjects[e - i - 1].second);
666       // Make sure the call and the callee agree on calling convention.
667       if (llvm::Function *F = dyn_cast<llvm::Function>(Callee))
668         CI->setCallingConv(F->getCallingConv());
669     }
670   }
671 
672   FinishFunction();
673 }
674 
675 /// generateDestroyHelper - Generates a helper function which, when
676 /// invoked, destroys the given object.  The address of the object
677 /// should be in global memory.
678 llvm::Function *CodeGenFunction::generateDestroyHelper(
679     Address addr, QualType type, Destroyer *destroyer,
680     bool useEHCleanupForArray, const VarDecl *VD) {
681   FunctionArgList args;
682   ImplicitParamDecl Dst(getContext(), getContext().VoidPtrTy,
683                         ImplicitParamDecl::Other);
684   args.push_back(&Dst);
685 
686   const CGFunctionInfo &FI =
687     CGM.getTypes().arrangeBuiltinFunctionDeclaration(getContext().VoidTy, args);
688   llvm::FunctionType *FTy = CGM.getTypes().GetFunctionType(FI);
689   llvm::Function *fn = CGM.CreateGlobalInitOrDestructFunction(
690       FTy, "__cxx_global_array_dtor", FI, VD->getLocation());
691 
692   CurEHLocation = VD->getBeginLoc();
693 
694   StartFunction(VD, getContext().VoidTy, fn, FI, args);
695 
696   emitDestroy(addr, type, destroyer, useEHCleanupForArray);
697 
698   FinishFunction();
699 
700   return fn;
701 }
702