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