blob: d527aa93d32750e758746d3c015d49ebfe9b4a30 [file] [log] [blame]
Anders Carlssonbc49cfe2009-12-10 00:16:00 +00001//===--- CGDeclCXX.cpp - Emit LLVM Code for C++ declarations --------------===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Anders Carlssonbc49cfe2009-12-10 00:16:00 +00006//
7//===----------------------------------------------------------------------===//
8//
9// This contains code dealing with code generation of C++ declarations
10//
11//===----------------------------------------------------------------------===//
12
13#include "CodeGenFunction.h"
John McCall5d865c322010-08-31 07:33:07 +000014#include "CGCXXABI.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000015#include "CGObjCRuntime.h"
Alexey Bataev97720002014-11-11 04:05:39 +000016#include "CGOpenMPRuntime.h"
Richard Trieu63688182018-12-11 03:18:39 +000017#include "clang/Basic/CodeGenOptions.h"
Anton Korobeynikovabed7492012-11-06 22:44:45 +000018#include "llvm/ADT/StringExtras.h"
Chandler Carruthffd55512013-01-02 11:45:17 +000019#include "llvm/IR/Intrinsics.h"
Richard Smithae8d62c2017-07-26 22:01:09 +000020#include "llvm/IR/MDBuilder.h"
Nico Weberbdc96982014-05-06 20:32:45 +000021#include "llvm/Support/Path.h"
Douglas Gregor51150ab2010-05-16 01:24:12 +000022
Anders Carlssonbc49cfe2009-12-10 00:16:00 +000023using namespace clang;
24using namespace CodeGen;
25
Anders Carlsson364051c2009-12-10 00:57:45 +000026static void EmitDeclInit(CodeGenFunction &CGF, const VarDecl &D,
John McCall7f416cc2015-09-08 08:05:57 +000027 ConstantAddress DeclPtr) {
Mikael Nilsson9d2872d2018-12-13 10:15:27 +000028 assert(
29 (D.hasGlobalStorage() ||
30 (D.hasLocalStorage() && CGF.getContext().getLangOpts().OpenCLCPlusPlus)) &&
31 "VarDecl must have global or local (in the case of OpenCL) storage!");
Fangrui Song6907ce22018-07-30 19:24:48 +000032 assert(!D.getType()->isReferenceType() &&
Anders Carlsson364051c2009-12-10 00:57:45 +000033 "Should not call EmitDeclInit on a reference!");
Fangrui Song6907ce22018-07-30 19:24:48 +000034
John McCall1553b192011-06-16 04:16:24 +000035 QualType type = D.getType();
John McCall7f416cc2015-09-08 08:05:57 +000036 LValue lv = CGF.MakeAddrLValue(DeclPtr, type);
John McCall1553b192011-06-16 04:16:24 +000037
38 const Expr *Init = D.getInit();
John McCall47fb9502013-03-07 21:37:08 +000039 switch (CGF.getEvaluationKind(type)) {
40 case TEK_Scalar: {
Fariborz Jahaniand1339792011-01-13 20:00:54 +000041 CodeGenModule &CGM = CGF.CGM;
John McCall1553b192011-06-16 04:16:24 +000042 if (lv.isObjCStrong())
John McCall31168b02011-06-15 23:02:42 +000043 CGM.getObjCRuntime().EmitObjCGlobalAssign(CGF, CGF.EmitScalarExpr(Init),
Richard Smithfd3834f2013-04-13 02:43:54 +000044 DeclPtr, D.getTLSKind());
John McCall1553b192011-06-16 04:16:24 +000045 else if (lv.isObjCWeak())
46 CGM.getObjCRuntime().EmitObjCWeakAssign(CGF, CGF.EmitScalarExpr(Init),
47 DeclPtr);
Fariborz Jahaniand1339792011-01-13 20:00:54 +000048 else
John McCall1553b192011-06-16 04:16:24 +000049 CGF.EmitScalarInit(Init, &D, lv, false);
John McCall47fb9502013-03-07 21:37:08 +000050 return;
51 }
52 case TEK_Complex:
53 CGF.EmitComplexExprIntoLValue(Init, lv, /*isInit*/ true);
54 return;
55 case TEK_Aggregate:
Chad Rosier615ed1a2012-03-29 17:37:10 +000056 CGF.EmitAggExpr(Init, AggValueSlot::forLValue(lv,AggValueSlot::IsDestructed,
57 AggValueSlot::DoesNotNeedGCBarriers,
Richard Smithe78fac52018-04-05 20:52:58 +000058 AggValueSlot::IsNotAliased,
59 AggValueSlot::DoesNotOverlap));
John McCall47fb9502013-03-07 21:37:08 +000060 return;
Anders Carlssonbc49cfe2009-12-10 00:16:00 +000061 }
John McCall47fb9502013-03-07 21:37:08 +000062 llvm_unreachable("bad evaluation kind");
Anders Carlssonbc49cfe2009-12-10 00:16:00 +000063}
64
John McCall68ff0372010-09-08 01:44:27 +000065/// Emit code to cause the destruction of the given variable with
66/// static storage duration.
Douglas Gregor370eadf2010-05-05 15:38:32 +000067static void EmitDeclDestroy(CodeGenFunction &CGF, const VarDecl &D,
Kristina Brooks825f9d32018-11-10 08:04:38 +000068 ConstantAddress Addr) {
Kristina Brooks7349d902018-11-12 01:19:16 +000069 // Honor __attribute__((no_destroy)) and bail instead of attempting
70 // to emit a reference to a possibly nonexistent destructor, which
71 // in turn can cause a crash. This will result in a global constructor
72 // that isn't balanced out by a destructor call as intended by the
73 // attribute. This also checks for -fno-c++-static-destructors and
74 // bails even if the attribute is not present.
75 if (D.isNoDestroy(CGF.getContext()))
76 return;
77
Douglas Gregor370eadf2010-05-05 15:38:32 +000078 CodeGenModule &CGM = CGF.CGM;
John McCall98de3d72011-07-13 03:01:35 +000079
80 // FIXME: __attribute__((cleanup)) ?
Fangrui Song6907ce22018-07-30 19:24:48 +000081
Kristina Brooks1333b572018-11-10 07:53:47 +000082 QualType Type = D.getType();
83 QualType::DestructionKind DtorKind = Type.isDestructedType();
John McCall98de3d72011-07-13 03:01:35 +000084
Kristina Brooks1333b572018-11-10 07:53:47 +000085 switch (DtorKind) {
John McCall98de3d72011-07-13 03:01:35 +000086 case QualType::DK_none:
Douglas Gregor370eadf2010-05-05 15:38:32 +000087 return;
John McCall98de3d72011-07-13 03:01:35 +000088
89 case QualType::DK_cxx_destructor:
90 break;
91
92 case QualType::DK_objc_strong_lifetime:
93 case QualType::DK_objc_weak_lifetime:
Akira Hatanaka7275da02018-02-28 07:15:55 +000094 case QualType::DK_nontrivial_c_struct:
John McCall98de3d72011-07-13 03:01:35 +000095 // We don't care about releasing objects during process teardown.
Richard Smithdbf74ba2013-04-14 23:01:42 +000096 assert(!D.getTLSKind() && "should have rejected this");
Douglas Gregor370eadf2010-05-05 15:38:32 +000097 return;
John McCall98de3d72011-07-13 03:01:35 +000098 }
99
Kristina Brooks1333b572018-11-10 07:53:47 +0000100 llvm::Constant *Func;
101 llvm::Constant *Argument;
John McCall98de3d72011-07-13 03:01:35 +0000102
Derek Schuff09b24922016-05-10 17:44:52 +0000103 // Special-case non-array C++ destructors, if they have the right signature.
104 // Under some ABIs, destructors return this instead of void, and cannot be
Kristina Brooks1333b572018-11-10 07:53:47 +0000105 // passed directly to __cxa_atexit if the target does not allow this
106 // mismatch.
107 const CXXRecordDecl *Record = Type->getAsCXXRecordDecl();
Derek Schuff8179be42016-05-10 17:44:55 +0000108 bool CanRegisterDestructor =
109 Record && (!CGM.getCXXABI().HasThisReturn(
110 GlobalDecl(Record->getDestructor(), Dtor_Complete)) ||
111 CGM.getCXXABI().canCallMismatchedFunctionType());
Derek Schuff2136eed2016-05-10 17:44:50 +0000112 // If __cxa_atexit is disabled via a flag, a different helper function is
113 // generated elsewhere which uses atexit instead, and it takes the destructor
114 // directly.
115 bool UsingExternalHelper = !CGM.getCodeGenOpts().CXAAtExit;
Derek Schuff09b24922016-05-10 17:44:52 +0000116 if (Record && (CanRegisterDestructor || UsingExternalHelper)) {
Derek Schuff060fd222016-05-10 17:44:48 +0000117 assert(!Record->hasTrivialDestructor());
Kristina Brooks1333b572018-11-10 07:53:47 +0000118 CXXDestructorDecl *Dtor = Record->getDestructor();
John McCall98de3d72011-07-13 03:01:35 +0000119
Kristina Brooks1333b572018-11-10 07:53:47 +0000120 Func = CGM.getAddrOfCXXStructor(Dtor, StructorType::Complete);
121 Argument = llvm::ConstantExpr::getBitCast(
122 Addr.getPointer(), CGF.getTypes().ConvertType(Type)->getPointerTo());
John McCall98de3d72011-07-13 03:01:35 +0000123
124 // Otherwise, the standard logic requires a helper function.
125 } else {
Kristina Brooks1333b572018-11-10 07:53:47 +0000126 Func = CodeGenFunction(CGM)
127 .generateDestroyHelper(Addr, Type, CGF.getDestroyer(DtorKind),
128 CGF.needsEHCleanup(DtorKind), &D);
129 Argument = llvm::Constant::getNullValue(CGF.Int8PtrTy);
John McCall98de3d72011-07-13 03:01:35 +0000130 }
131
Kristina Brooks1333b572018-11-10 07:53:47 +0000132 CGM.getCXXABI().registerGlobalDtor(CGF, D, Func, Argument);
Douglas Gregor370eadf2010-05-05 15:38:32 +0000133}
134
Richard Smith08a51442012-02-17 07:31:37 +0000135/// Emit code to cause the variable at the given address to be considered as
136/// constant from this point onwards.
Nick Lewycky45062042012-02-21 00:26:58 +0000137static void EmitDeclInvariant(CodeGenFunction &CGF, const VarDecl &D,
138 llvm::Constant *Addr) {
Richard Smith3ad06362018-10-31 20:39:26 +0000139 return CGF.EmitInvariantStart(
140 Addr, CGF.getContext().getTypeSizeInChars(D.getType()));
141}
142
143void CodeGenFunction::EmitInvariantStart(llvm::Constant *Addr, CharUnits Size) {
Anna Thomasb7721512016-07-22 15:37:56 +0000144 // Do not emit the intrinsic if we're not optimizing.
Richard Smith3ad06362018-10-31 20:39:26 +0000145 if (!CGM.getCodeGenOpts().OptimizationLevel)
Richard Smith132bea92012-02-17 20:12:52 +0000146 return;
147
Richard Smith08a51442012-02-17 07:31:37 +0000148 // Grab the llvm.invariant.start intrinsic.
149 llvm::Intrinsic::ID InvStartID = llvm::Intrinsic::invariant_start;
Anna Thomas142ea992016-07-22 17:50:08 +0000150 // Overloaded address space type.
Richard Smith3ad06362018-10-31 20:39:26 +0000151 llvm::Type *ObjectPtr[1] = {Int8PtrTy};
James Y Knight8799cae2019-02-03 21:53:49 +0000152 llvm::Function *InvariantStart = CGM.getIntrinsic(InvStartID, ObjectPtr);
Richard Smith08a51442012-02-17 07:31:37 +0000153
Nick Lewycky45062042012-02-21 00:26:58 +0000154 // Emit a call with the size in bytes of the object.
Richard Smith3ad06362018-10-31 20:39:26 +0000155 uint64_t Width = Size.getQuantity();
156 llvm::Value *Args[2] = { llvm::ConstantInt::getSigned(Int64Ty, Width),
157 llvm::ConstantExpr::getBitCast(Addr, Int8PtrTy)};
158 Builder.CreateCall(InvariantStart, Args);
Richard Smith08a51442012-02-17 07:31:37 +0000159}
160
Anders Carlsson364051c2009-12-10 00:57:45 +0000161void CodeGenFunction::EmitCXXGlobalVarDeclInit(const VarDecl &D,
Richard Smith6331c402012-02-13 22:16:19 +0000162 llvm::Constant *DeclPtr,
163 bool PerformInit) {
Anders Carlsson364051c2009-12-10 00:57:45 +0000164
165 const Expr *Init = D.getInit();
166 QualType T = D.getType();
167
Jingyue Wu4f7b9eb2015-03-25 20:06:28 +0000168 // The address space of a static local variable (DeclPtr) may be different
169 // from the address space of the "this" argument of the constructor. In that
170 // case, we need an addrspacecast before calling the constructor.
171 //
172 // struct StructWithCtor {
173 // __device__ StructWithCtor() {...}
174 // };
175 // __device__ void foo() {
176 // __shared__ StructWithCtor s;
177 // ...
178 // }
179 //
180 // For example, in the above CUDA code, the static local variable s has a
181 // "shared" address space qualifier, but the constructor of StructWithCtor
182 // expects "this" in the "generic" address space.
183 unsigned ExpectedAddrSpace = getContext().getTargetAddressSpace(T);
184 unsigned ActualAddrSpace = DeclPtr->getType()->getPointerAddressSpace();
185 if (ActualAddrSpace != ExpectedAddrSpace) {
186 llvm::Type *LTy = CGM.getTypes().ConvertTypeForMem(T);
187 llvm::PointerType *PTy = llvm::PointerType::get(LTy, ExpectedAddrSpace);
188 DeclPtr = llvm::ConstantExpr::getAddrSpaceCast(DeclPtr, PTy);
189 }
190
John McCall7f416cc2015-09-08 08:05:57 +0000191 ConstantAddress DeclAddr(DeclPtr, getContext().getDeclAlign(&D));
192
Anders Carlsson364051c2009-12-10 00:57:45 +0000193 if (!T->isReferenceType()) {
Alexey Bataeva8a9153a2017-12-29 18:07:07 +0000194 if (getLangOpts().OpenMP && !getLangOpts().OpenMPSimd &&
195 D.hasAttr<OMPThreadPrivateDeclAttr>()) {
Alexey Bataev3eff5f42015-02-25 08:32:46 +0000196 (void)CGM.getOpenMPRuntime().emitThreadPrivateVarDefinition(
John McCall7f416cc2015-09-08 08:05:57 +0000197 &D, DeclAddr, D.getAttr<OMPThreadPrivateDeclAttr>()->getLocation(),
Alexey Bataev97720002014-11-11 04:05:39 +0000198 PerformInit, this);
Alexey Bataeva8a9153a2017-12-29 18:07:07 +0000199 }
Richard Smith6331c402012-02-13 22:16:19 +0000200 if (PerformInit)
John McCall7f416cc2015-09-08 08:05:57 +0000201 EmitDeclInit(*this, D, DeclAddr);
Richard Smith08a51442012-02-17 07:31:37 +0000202 if (CGM.isTypeConstant(D.getType(), true))
Nick Lewycky45062042012-02-21 00:26:58 +0000203 EmitDeclInvariant(*this, D, DeclPtr);
Richard Smith08a51442012-02-17 07:31:37 +0000204 else
John McCall7f416cc2015-09-08 08:05:57 +0000205 EmitDeclDestroy(*this, D, DeclAddr);
Anders Carlsson364051c2009-12-10 00:57:45 +0000206 return;
207 }
Anders Carlsson3f48c602010-06-27 17:52:15 +0000208
Richard Smith6331c402012-02-13 22:16:19 +0000209 assert(PerformInit && "cannot have constant initializer which needs "
210 "destruction for reference");
Richard Smitha1c9d4d2013-06-12 23:38:09 +0000211 RValue RV = EmitReferenceBindingToExpr(Init);
John McCall7f416cc2015-09-08 08:05:57 +0000212 EmitStoreOfScalar(RV.getScalarVal(), DeclAddr, false, T);
Anders Carlsson364051c2009-12-10 00:57:45 +0000213}
Anders Carlsson633c6f62009-12-10 00:30:05 +0000214
John McCall76cc43a2012-04-06 18:21:06 +0000215/// Create a stub function, suitable for being passed to atexit,
216/// which passes the given address to the given destructor function.
David Majnemerb3341ea2014-10-05 05:05:40 +0000217llvm::Constant *CodeGenFunction::createAtExitStub(const VarDecl &VD,
218 llvm::Constant *dtor,
219 llvm::Constant *addr) {
John McCall76cc43a2012-04-06 18:21:06 +0000220 // Get the destructor function type, void(*)(void).
221 llvm::FunctionType *ty = llvm::FunctionType::get(CGM.VoidTy, false);
Reid Klecknerd8110b62013-09-10 20:14:30 +0000222 SmallString<256> FnName;
223 {
224 llvm::raw_svector_ostream Out(FnName);
225 CGM.getCXXABI().getMangleContext().mangleDynamicAtExitDestructor(&VD, Out);
226 }
Akira Hatanaka7791f1a42015-10-31 01:28:07 +0000227
228 const CGFunctionInfo &FI = CGM.getTypes().arrangeNullaryFunction();
Alexey Samsonov1444bb92014-10-17 00:20:19 +0000229 llvm::Function *fn = CGM.CreateGlobalInitOrDestructFunction(ty, FnName.str(),
Akira Hatanaka7791f1a42015-10-31 01:28:07 +0000230 FI,
Alexey Samsonov1444bb92014-10-17 00:20:19 +0000231 VD.getLocation());
John McCall76cc43a2012-04-06 18:21:06 +0000232
233 CodeGenFunction CGF(CGM);
234
Akira Hatanaka7791f1a42015-10-31 01:28:07 +0000235 CGF.StartFunction(&VD, CGM.getContext().VoidTy, fn, FI, FunctionArgList());
John McCall76cc43a2012-04-06 18:21:06 +0000236
237 llvm::CallInst *call = CGF.Builder.CreateCall(dtor, addr);
Fangrui Song6907ce22018-07-30 19:24:48 +0000238
John McCall76cc43a2012-04-06 18:21:06 +0000239 // Make sure the call and the callee agree on calling convention.
240 if (llvm::Function *dtorFn =
241 dyn_cast<llvm::Function>(dtor->stripPointerCasts()))
242 call->setCallingConv(dtorFn->getCallingConv());
243
244 CGF.FinishFunction();
245
246 return fn;
247}
248
John McCallc84ed6a2012-05-01 06:13:13 +0000249/// Register a global destructor using the C atexit runtime function.
David Blaikieebe87e12013-08-27 23:57:18 +0000250void CodeGenFunction::registerGlobalDtorWithAtExit(const VarDecl &VD,
251 llvm::Constant *dtor,
John McCallc84ed6a2012-05-01 06:13:13 +0000252 llvm::Constant *addr) {
John McCall76cc43a2012-04-06 18:21:06 +0000253 // Create a function which calls the destructor.
David Majnemerb3341ea2014-10-05 05:05:40 +0000254 llvm::Constant *dtorStub = createAtExitStub(VD, dtor, addr);
Akira Hatanaka617e2612018-04-17 18:41:52 +0000255 registerGlobalDtorWithAtExit(dtorStub);
256}
John McCall76cc43a2012-04-06 18:21:06 +0000257
Akira Hatanaka617e2612018-04-17 18:41:52 +0000258void CodeGenFunction::registerGlobalDtorWithAtExit(llvm::Constant *dtorStub) {
John McCall76cc43a2012-04-06 18:21:06 +0000259 // extern "C" int atexit(void (*f)(void));
260 llvm::FunctionType *atexitTy =
John McCallc84ed6a2012-05-01 06:13:13 +0000261 llvm::FunctionType::get(IntTy, dtorStub->getType(), false);
John McCall76cc43a2012-04-06 18:21:06 +0000262
263 llvm::Constant *atexit =
Reid Klecknerde864822017-03-21 16:57:30 +0000264 CGM.CreateRuntimeFunction(atexitTy, "atexit", llvm::AttributeList(),
Saleem Abdulrasool6cb07442016-12-15 06:59:05 +0000265 /*Local=*/true);
John McCall76cc43a2012-04-06 18:21:06 +0000266 if (llvm::Function *atexitFn = dyn_cast<llvm::Function>(atexit))
267 atexitFn->setDoesNotThrow();
268
John McCall882987f2013-02-28 19:01:20 +0000269 EmitNounwindRuntimeCall(atexit, dtorStub);
Anders Carlsson633c6f62009-12-10 00:30:05 +0000270}
271
John McCallcdf7ef52010-11-06 09:44:32 +0000272void CodeGenFunction::EmitCXXGuardedInit(const VarDecl &D,
Chandler Carruth84537952012-03-30 19:44:53 +0000273 llvm::GlobalVariable *DeclPtr,
Richard Smith6331c402012-02-13 22:16:19 +0000274 bool PerformInit) {
John McCall7ef5cb32011-03-18 02:56:14 +0000275 // If we've been asked to forbid guard variables, emit an error now.
276 // This diagnostic is hard-coded for Darwin's use case; we can find
277 // better phrasing if someone else needs it.
278 if (CGM.getCodeGenOpts().ForbidGuardVariables)
279 CGM.Error(D.getLocation(),
280 "this initialization requires a guard variable, which "
281 "the kernel does not support");
282
Chandler Carruth84537952012-03-30 19:44:53 +0000283 CGM.getCXXABI().EmitGuardedInit(*this, D, DeclPtr, PerformInit);
John McCall68ff0372010-09-08 01:44:27 +0000284}
285
Richard Smithae8d62c2017-07-26 22:01:09 +0000286void CodeGenFunction::EmitCXXGuardedInitBranch(llvm::Value *NeedsInit,
287 llvm::BasicBlock *InitBlock,
288 llvm::BasicBlock *NoInitBlock,
289 GuardKind Kind,
290 const VarDecl *D) {
291 assert((Kind == GuardKind::TlsGuard || D) && "no guarded variable");
292
293 // A guess at how many times we will enter the initialization of a
294 // variable, depending on the kind of variable.
295 static const uint64_t InitsPerTLSVar = 1024;
296 static const uint64_t InitsPerLocalVar = 1024 * 1024;
297
298 llvm::MDNode *Weights;
299 if (Kind == GuardKind::VariableGuard && !D->isLocalVarDecl()) {
300 // For non-local variables, don't apply any weighting for now. Due to our
301 // use of COMDATs, we expect there to be at most one initialization of the
302 // variable per DSO, but we have no way to know how many DSOs will try to
303 // initialize the variable.
304 Weights = nullptr;
305 } else {
306 uint64_t NumInits;
307 // FIXME: For the TLS case, collect and use profiling information to
308 // determine a more accurate brach weight.
309 if (Kind == GuardKind::TlsGuard || D->getTLSKind())
310 NumInits = InitsPerTLSVar;
311 else
312 NumInits = InitsPerLocalVar;
313
314 // The probability of us entering the initializer is
315 // 1 / (total number of times we attempt to initialize the variable).
316 llvm::MDBuilder MDHelper(CGM.getLLVMContext());
317 Weights = MDHelper.createBranchWeights(1, NumInits - 1);
318 }
319
320 Builder.CreateCondBr(NeedsInit, InitBlock, NoInitBlock, Weights);
321}
322
Alexey Samsonov1444bb92014-10-17 00:20:19 +0000323llvm::Function *CodeGenModule::CreateGlobalInitOrDestructFunction(
Akira Hatanaka7791f1a42015-10-31 01:28:07 +0000324 llvm::FunctionType *FTy, const Twine &Name, const CGFunctionInfo &FI,
325 SourceLocation Loc, bool TLS) {
Anders Carlssonb2839e42010-06-08 22:40:05 +0000326 llvm::Function *Fn =
327 llvm::Function::Create(FTy, llvm::GlobalValue::InternalLinkage,
David Majnemerb3341ea2014-10-05 05:05:40 +0000328 Name, &getModule());
329 if (!getLangOpts().AppleKext && !TLS) {
Fariborz Jahanian09948f12011-02-15 18:54:46 +0000330 // Set the section if needed.
David Majnemerb3341ea2014-10-05 05:05:40 +0000331 if (const char *Section = getTarget().getStaticInitSectionSpecifier())
Fariborz Jahanian09948f12011-02-15 18:54:46 +0000332 Fn->setSection(Section);
333 }
Anders Carlsson851318a2010-06-08 22:47:50 +0000334
Rafael Espindola51ec5a92018-02-28 23:46:35 +0000335 SetInternalFunctionAttributes(GlobalDecl(), Fn, FI);
Reid Kleckner787dc432015-04-22 19:37:32 +0000336
David Majnemerb3341ea2014-10-05 05:05:40 +0000337 Fn->setCallingConv(getRuntimeCC());
John McCall882987f2013-02-28 19:01:20 +0000338
David Majnemerb3341ea2014-10-05 05:05:40 +0000339 if (!getLangOpts().Exceptions)
John McCall466e2212010-07-06 04:38:10 +0000340 Fn->setDoesNotThrow();
341
Vlad Tsyrklevich2eccdab2017-09-25 22:11:12 +0000342 if (getLangOpts().Sanitize.has(SanitizerKind::Address) &&
343 !isInSanitizerBlacklist(SanitizerKind::Address, Fn, Loc))
344 Fn->addFnAttr(llvm::Attribute::SanitizeAddress);
345
346 if (getLangOpts().Sanitize.has(SanitizerKind::KernelAddress) &&
347 !isInSanitizerBlacklist(SanitizerKind::KernelAddress, Fn, Loc))
348 Fn->addFnAttr(llvm::Attribute::SanitizeAddress);
349
Evgeniy Stepanov12817e52017-12-09 01:32:07 +0000350 if (getLangOpts().Sanitize.has(SanitizerKind::HWAddress) &&
351 !isInSanitizerBlacklist(SanitizerKind::HWAddress, Fn, Loc))
352 Fn->addFnAttr(llvm::Attribute::SanitizeHWAddress);
353
Andrey Konovalov1ba9d9c2018-04-13 18:05:21 +0000354 if (getLangOpts().Sanitize.has(SanitizerKind::KernelHWAddress) &&
355 !isInSanitizerBlacklist(SanitizerKind::KernelHWAddress, Fn, Loc))
356 Fn->addFnAttr(llvm::Attribute::SanitizeHWAddress);
357
Vlad Tsyrklevich2eccdab2017-09-25 22:11:12 +0000358 if (getLangOpts().Sanitize.has(SanitizerKind::Thread) &&
359 !isInSanitizerBlacklist(SanitizerKind::Thread, Fn, Loc))
360 Fn->addFnAttr(llvm::Attribute::SanitizeThread);
361
362 if (getLangOpts().Sanitize.has(SanitizerKind::Memory) &&
363 !isInSanitizerBlacklist(SanitizerKind::Memory, Fn, Loc))
364 Fn->addFnAttr(llvm::Attribute::SanitizeMemory);
365
Alexander Potapenkod49c32c2018-09-07 09:21:09 +0000366 if (getLangOpts().Sanitize.has(SanitizerKind::KernelMemory) &&
367 !isInSanitizerBlacklist(SanitizerKind::KernelMemory, Fn, Loc))
368 Fn->addFnAttr(llvm::Attribute::SanitizeMemory);
369
Vlad Tsyrklevich2eccdab2017-09-25 22:11:12 +0000370 if (getLangOpts().Sanitize.has(SanitizerKind::SafeStack) &&
371 !isInSanitizerBlacklist(SanitizerKind::SafeStack, Fn, Loc))
372 Fn->addFnAttr(llvm::Attribute::SafeStack);
Kostya Serebryanybf84b8f2012-06-26 08:56:33 +0000373
Vlad Tsyrkleviche55aa032018-04-03 22:33:53 +0000374 if (getLangOpts().Sanitize.has(SanitizerKind::ShadowCallStack) &&
375 !isInSanitizerBlacklist(SanitizerKind::ShadowCallStack, Fn, Loc))
376 Fn->addFnAttr(llvm::Attribute::ShadowCallStack);
377
Oliver Stannard95ac65b2018-09-13 10:25:36 +0000378 auto RASignKind = getCodeGenOpts().getSignReturnAddress();
Luke Cheesemana8a24aa2018-10-25 15:23:49 +0000379 if (RASignKind != CodeGenOptions::SignReturnAddressScope::None) {
Oliver Stannard95ac65b2018-09-13 10:25:36 +0000380 Fn->addFnAttr("sign-return-address",
381 RASignKind == CodeGenOptions::SignReturnAddressScope::All
382 ? "all"
383 : "non-leaf");
Luke Cheesemana8a24aa2018-10-25 15:23:49 +0000384 auto RASignKey = getCodeGenOpts().getSignReturnAddressKey();
385 Fn->addFnAttr("sign-return-address-key",
386 RASignKey == CodeGenOptions::SignReturnAddressKeyValue::AKey
387 ? "a_key"
388 : "b_key");
389 }
390
391 if (getCodeGenOpts().BranchTargetEnforcement)
392 Fn->addFnAttr("branch-target-enforcement");
393
Anders Carlssonb2839e42010-06-08 22:40:05 +0000394 return Fn;
395}
396
Reid Kleckner1a711b12014-07-22 00:53:05 +0000397/// Create a global pointer to a function that will initialize a global
398/// variable. The user has requested that this pointer be emitted in a specific
399/// section.
400void CodeGenModule::EmitPointerToInitFunc(const VarDecl *D,
401 llvm::GlobalVariable *GV,
402 llvm::Function *InitFunc,
403 InitSegAttr *ISA) {
404 llvm::GlobalVariable *PtrArray = new llvm::GlobalVariable(
405 TheModule, InitFunc->getType(), /*isConstant=*/true,
406 llvm::GlobalValue::PrivateLinkage, InitFunc, "__cxx_init_fn_ptr");
407 PtrArray->setSection(ISA->getSection());
408 addUsedGlobal(PtrArray);
409
410 // If the GV is already in a comdat group, then we have to join it.
Rafael Espindola0d4fb982015-01-12 22:13:53 +0000411 if (llvm::Comdat *C = GV->getComdat())
Reid Kleckner1a711b12014-07-22 00:53:05 +0000412 PtrArray->setComdat(C);
413}
414
Daniel Dunbarfe06df42010-03-20 04:15:41 +0000415void
John McCallcdf7ef52010-11-06 09:44:32 +0000416CodeGenModule::EmitCXXGlobalVarDeclInitFunc(const VarDecl *D,
Richard Smith6331c402012-02-13 22:16:19 +0000417 llvm::GlobalVariable *Addr,
418 bool PerformInit) {
Artem Belevich97c01c32016-02-02 22:29:48 +0000419
420 // According to E.2.3.1 in CUDA-7.5 Programming guide: __device__,
421 // __constant__ and __shared__ variables defined in namespace scope,
422 // that are of class type, cannot have a non-empty constructor. All
423 // the checks have been done in Sema by now. Whatever initializers
424 // are allowed are empty and we just need to ignore them here.
425 if (getLangOpts().CUDA && getLangOpts().CUDAIsDevice &&
426 (D->hasAttr<CUDADeviceAttr>() || D->hasAttr<CUDAConstantAttr>() ||
427 D->hasAttr<CUDASharedAttr>()))
428 return;
429
Alexey Bataev34f8a702018-03-28 14:28:54 +0000430 if (getLangOpts().OpenMP &&
431 getOpenMPRuntime().emitDeclareTargetVarDefinition(D, Addr, PerformInit))
432 return;
433
Reid Klecknere07140e2015-04-15 01:08:06 +0000434 // Check if we've already initialized this decl.
435 auto I = DelayedCXXInitPosition.find(D);
436 if (I != DelayedCXXInitPosition.end() && I->second == ~0U)
437 return;
438
Chris Lattnerece04092012-02-07 00:39:47 +0000439 llvm::FunctionType *FTy = llvm::FunctionType::get(VoidTy, false);
Reid Kleckner1ece9fc2013-09-10 20:43:12 +0000440 SmallString<256> FnName;
441 {
442 llvm::raw_svector_ostream Out(FnName);
443 getCXXABI().getMangleContext().mangleDynamicInitializer(D, Out);
444 }
Eli Friedman5866fe32010-01-08 00:50:11 +0000445
446 // Create a variable initialization function.
Alexey Samsonov1444bb92014-10-17 00:20:19 +0000447 llvm::Function *Fn =
Akira Hatanaka7791f1a42015-10-31 01:28:07 +0000448 CreateGlobalInitOrDestructFunction(FTy, FnName.str(),
449 getTypes().arrangeNullaryFunction(),
450 D->getLocation());
Eli Friedman5866fe32010-01-08 00:50:11 +0000451
Reid Kleckner1a711b12014-07-22 00:53:05 +0000452 auto *ISA = D->getAttr<InitSegAttr>();
Richard Smith6331c402012-02-13 22:16:19 +0000453 CodeGenFunction(*this).GenerateCXXGlobalVarDeclInitFunc(Fn, D, Addr,
454 PerformInit);
Rafael Espindola9f834732014-09-19 01:54:22 +0000455
Reid Kleckner72d03be2014-10-15 16:38:00 +0000456 llvm::GlobalVariable *COMDATKey =
457 supportsCOMDAT() && D->isExternallyVisible() ? Addr : nullptr;
Rafael Espindola9f834732014-09-19 01:54:22 +0000458
Richard Smith2fd1d7a2013-04-19 16:42:07 +0000459 if (D->getTLSKind()) {
460 // FIXME: Should we support init_priority for thread_local?
Richard Smith2fd1d7a2013-04-19 16:42:07 +0000461 // FIXME: We only need to register one __cxa_thread_atexit function for the
462 // entire TU.
463 CXXThreadLocalInits.push_back(Fn);
Richard Smith5a99c492015-12-01 01:10:48 +0000464 CXXThreadLocalInitVars.push_back(D);
Reid Kleckner1a711b12014-07-22 00:53:05 +0000465 } else if (PerformInit && ISA) {
466 EmitPointerToInitFunc(D, Addr, Fn, ISA);
Reid Kleckner1a711b12014-07-22 00:53:05 +0000467 } else if (auto *IPA = D->getAttr<InitPriorityAttr>()) {
Aaron Ballmane8d9f8d2013-12-19 03:02:49 +0000468 OrderGlobalInits Key(IPA->getPriority(), PrioritizedCXXGlobalInits.size());
Fariborz Jahanian89bdd142010-06-21 21:27:42 +0000469 PrioritizedCXXGlobalInits.push_back(std::make_pair(Key, Fn));
Reid Kleckner72d03be2014-10-15 16:38:00 +0000470 } else if (isTemplateInstantiation(D->getTemplateSpecializationKind())) {
Reid Kleckner37384452013-08-22 20:07:45 +0000471 // C++ [basic.start.init]p2:
Reid Kleckner27533242013-09-04 00:54:24 +0000472 // Definitions of explicitly specialized class template static data
473 // members have ordered initialization. Other class template static data
474 // members (i.e., implicitly or explicitly instantiated specializations)
475 // have unordered initialization.
Reid Kleckner37384452013-08-22 20:07:45 +0000476 //
477 // As a consequence, we can put them into their own llvm.global_ctors entry.
Reid Kleckner563f0e82014-05-23 21:13:45 +0000478 //
Reid Kleckner72d03be2014-10-15 16:38:00 +0000479 // If the global is externally visible, put the initializer into a COMDAT
480 // group with the global being initialized. On most platforms, this is a
481 // minor startup time optimization. In the MS C++ ABI, there are no guard
482 // variables, so this COMDAT key is required for correctness.
483 AddGlobalCtor(Fn, 65535, COMDATKey);
Hans Wennborg7b556ea2014-09-10 19:28:48 +0000484 } else if (D->hasAttr<SelectAnyAttr>()) {
Nico Weber0a029922015-01-12 21:24:10 +0000485 // SelectAny globals will be comdat-folded. Put the initializer into a
486 // COMDAT group associated with the global, so the initializers get folded
487 // too.
Reid Kleckner72d03be2014-10-15 16:38:00 +0000488 AddGlobalCtor(Fn, 65535, COMDATKey);
Richard Smith2fd1d7a2013-04-19 16:42:07 +0000489 } else {
Reid Klecknere07140e2015-04-15 01:08:06 +0000490 I = DelayedCXXInitPosition.find(D); // Re-do lookup in case of re-hash.
John McCall70013b62010-07-15 23:40:35 +0000491 if (I == DelayedCXXInitPosition.end()) {
492 CXXGlobalInits.push_back(Fn);
Reid Klecknere07140e2015-04-15 01:08:06 +0000493 } else if (I->second != ~0U) {
494 assert(I->second < CXXGlobalInits.size() &&
495 CXXGlobalInits[I->second] == nullptr);
John McCall70013b62010-07-15 23:40:35 +0000496 CXXGlobalInits[I->second] = Fn;
John McCall70013b62010-07-15 23:40:35 +0000497 }
498 }
Reid Klecknere07140e2015-04-15 01:08:06 +0000499
500 // Remember that we already emitted the initializer for this global.
501 DelayedCXXInitPosition[D] = ~0U;
Eli Friedman5866fe32010-01-08 00:50:11 +0000502}
503
Richard Smith2fd1d7a2013-04-19 16:42:07 +0000504void CodeGenModule::EmitCXXThreadLocalInitFunc() {
David Majnemerb3341ea2014-10-05 05:05:40 +0000505 getCXXABI().EmitThreadLocalInitFuncs(
506 *this, CXXThreadLocals, CXXThreadLocalInits, CXXThreadLocalInitVars);
Richard Smith2fd1d7a2013-04-19 16:42:07 +0000507
508 CXXThreadLocalInits.clear();
David Majnemerb3341ea2014-10-05 05:05:40 +0000509 CXXThreadLocalInitVars.clear();
Richard Smith2fd1d7a2013-04-19 16:42:07 +0000510 CXXThreadLocals.clear();
511}
512
Daniel Dunbarfe06df42010-03-20 04:15:41 +0000513void
514CodeGenModule::EmitCXXGlobalInitFunc() {
John McCall70013b62010-07-15 23:40:35 +0000515 while (!CXXGlobalInits.empty() && !CXXGlobalInits.back())
516 CXXGlobalInits.pop_back();
517
Fariborz Jahanian9f2a4ee2010-06-21 18:45:05 +0000518 if (CXXGlobalInits.empty() && PrioritizedCXXGlobalInits.empty())
Anders Carlsson633c6f62009-12-10 00:30:05 +0000519 return;
520
Chris Lattnerece04092012-02-07 00:39:47 +0000521 llvm::FunctionType *FTy = llvm::FunctionType::get(VoidTy, false);
Akira Hatanaka7791f1a42015-10-31 01:28:07 +0000522 const CGFunctionInfo &FI = getTypes().arrangeNullaryFunction();
Anders Carlsson633c6f62009-12-10 00:30:05 +0000523
Anton Korobeynikovabed7492012-11-06 22:44:45 +0000524 // Create our global initialization function.
Fariborz Jahanian9f2a4ee2010-06-21 18:45:05 +0000525 if (!PrioritizedCXXGlobalInits.empty()) {
David Majnemerb3341ea2014-10-05 05:05:40 +0000526 SmallVector<llvm::Function *, 8> LocalCXXGlobalInits;
Fangrui Song6907ce22018-07-30 19:24:48 +0000527 llvm::array_pod_sort(PrioritizedCXXGlobalInits.begin(),
Anton Korobeynikovabed7492012-11-06 22:44:45 +0000528 PrioritizedCXXGlobalInits.end());
529 // Iterate over "chunks" of ctors with same priority and emit each chunk
530 // into separate function. Note - everything is sorted first by priority,
531 // second - by lex order, so we emit ctor functions in proper order.
532 for (SmallVectorImpl<GlobalInitData >::iterator
533 I = PrioritizedCXXGlobalInits.begin(),
534 E = PrioritizedCXXGlobalInits.end(); I != E; ) {
535 SmallVectorImpl<GlobalInitData >::iterator
536 PrioE = std::upper_bound(I + 1, E, *I, GlobalInitPriorityCmp());
537
538 LocalCXXGlobalInits.clear();
539 unsigned Priority = I->first.priority;
540 // Compute the function suffix from priority. Prepend with zeroes to make
541 // sure the function names are also ordered as priorities.
542 std::string PrioritySuffix = llvm::utostr(Priority);
Nico Weberbdc96982014-05-06 20:32:45 +0000543 // Priority is always <= 65535 (enforced by sema).
Anton Korobeynikovabed7492012-11-06 22:44:45 +0000544 PrioritySuffix = std::string(6-PrioritySuffix.size(), '0')+PrioritySuffix;
David Majnemerb3341ea2014-10-05 05:05:40 +0000545 llvm::Function *Fn = CreateGlobalInitOrDestructFunction(
Akira Hatanaka7791f1a42015-10-31 01:28:07 +0000546 FTy, "_GLOBAL__I_" + PrioritySuffix, FI);
David Majnemerb3341ea2014-10-05 05:05:40 +0000547
Anton Korobeynikovabed7492012-11-06 22:44:45 +0000548 for (; I < PrioE; ++I)
549 LocalCXXGlobalInits.push_back(I->second);
550
Benjamin Kramer139cfc22013-04-26 21:32:52 +0000551 CodeGenFunction(*this).GenerateCXXGlobalInitFunc(Fn, LocalCXXGlobalInits);
Anton Korobeynikovabed7492012-11-06 22:44:45 +0000552 AddGlobalCtor(Fn, Priority);
553 }
Yaron Keren35071ac2015-06-20 15:51:52 +0000554 PrioritizedCXXGlobalInits.clear();
Fariborz Jahanian9f2a4ee2010-06-21 18:45:05 +0000555 }
Keno Fischer84778b22014-08-26 22:10:15 +0000556
Vassil Vassilev3d05c562017-08-27 11:27:30 +0000557 // Include the filename in the symbol name. Including "sub_" matches gcc and
558 // makes sure these symbols appear lexicographically behind the symbols with
559 // priority emitted above.
560 SmallString<128> FileName = llvm::sys::path::filename(getModule().getName());
561 if (FileName.empty())
Yaron Kereneac8a1e2015-05-12 12:47:05 +0000562 FileName = "<null>";
Keno Fischer84778b22014-08-26 22:10:15 +0000563
Nico Weberbdc96982014-05-06 20:32:45 +0000564 for (size_t i = 0; i < FileName.size(); ++i) {
565 // Replace everything that's not [a-zA-Z0-9._] with a _. This set happens
566 // to be the set of C preprocessing numbers.
567 if (!isPreprocessingNumberBody(FileName[i]))
568 FileName[i] = '_';
569 }
Keno Fischer84778b22014-08-26 22:10:15 +0000570
Nico Weberbdc96982014-05-06 20:32:45 +0000571 llvm::Function *Fn = CreateGlobalInitOrDestructFunction(
Akira Hatanaka7791f1a42015-10-31 01:28:07 +0000572 FTy, llvm::Twine("_GLOBAL__sub_I_", FileName), FI);
Anton Korobeynikovabed7492012-11-06 22:44:45 +0000573
Benjamin Kramer139cfc22013-04-26 21:32:52 +0000574 CodeGenFunction(*this).GenerateCXXGlobalInitFunc(Fn, CXXGlobalInits);
Daniel Dunbarfe06df42010-03-20 04:15:41 +0000575 AddGlobalCtor(Fn);
Anton Korobeynikovabed7492012-11-06 22:44:45 +0000576
Axel Naumannbd26a582011-05-06 15:24:04 +0000577 CXXGlobalInits.clear();
Daniel Dunbarfe06df42010-03-20 04:15:41 +0000578}
579
Daniel Dunbarfe06df42010-03-20 04:15:41 +0000580void CodeGenModule::EmitCXXGlobalDtorFunc() {
581 if (CXXGlobalDtors.empty())
582 return;
583
Chris Lattnerece04092012-02-07 00:39:47 +0000584 llvm::FunctionType *FTy = llvm::FunctionType::get(VoidTy, false);
Daniel Dunbarfe06df42010-03-20 04:15:41 +0000585
586 // Create our global destructor function.
Akira Hatanaka7791f1a42015-10-31 01:28:07 +0000587 const CGFunctionInfo &FI = getTypes().arrangeNullaryFunction();
588 llvm::Function *Fn =
589 CreateGlobalInitOrDestructFunction(FTy, "_GLOBAL__D_a", FI);
Daniel Dunbarfe06df42010-03-20 04:15:41 +0000590
John McCallee08c532012-04-06 18:21:03 +0000591 CodeGenFunction(*this).GenerateCXXGlobalDtorsFunc(Fn, CXXGlobalDtors);
Daniel Dunbarfe06df42010-03-20 04:15:41 +0000592 AddGlobalDtor(Fn);
593}
594
John McCallcdf7ef52010-11-06 09:44:32 +0000595/// Emit the code necessary to initialize the given global variable.
Daniel Dunbarfe06df42010-03-20 04:15:41 +0000596void CodeGenFunction::GenerateCXXGlobalVarDeclInitFunc(llvm::Function *Fn,
John McCallcdf7ef52010-11-06 09:44:32 +0000597 const VarDecl *D,
Richard Smith6331c402012-02-13 22:16:19 +0000598 llvm::GlobalVariable *Addr,
599 bool PerformInit) {
Alexey Samsonov38e24962012-10-16 07:22:28 +0000600 // Check if we need to emit debug info for variable initializer.
David Blaikie92848de2013-08-26 20:33:21 +0000601 if (D->hasAttr<NoDebugAttr>())
Craig Topper8a13c412014-05-21 05:09:00 +0000602 DebugInfo = nullptr; // disable debug info indefinitely for this function
Nick Lewycky08597072012-07-24 01:40:49 +0000603
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000604 CurEHLocation = D->getBeginLoc();
David Blaikie47d28e02015-01-14 07:10:46 +0000605
Nick Lewycky08597072012-07-24 01:40:49 +0000606 StartFunction(GlobalDecl(D), getContext().VoidTy, Fn,
John McCalla729c622012-02-17 03:33:10 +0000607 getTypes().arrangeNullaryFunction(),
Adrian Prantl42d71b92014-04-10 23:21:53 +0000608 FunctionArgList(), D->getLocation(),
609 D->getInit()->getExprLoc());
Daniel Dunbar75722842010-03-20 04:15:29 +0000610
Douglas Gregorfa918f62011-07-01 21:54:36 +0000611 // Use guarded initialization if the global variable is weak. This
612 // occurs for, e.g., instantiated static data members and
613 // definitions explicitly marked weak.
Reid Kleckner563f0e82014-05-23 21:13:45 +0000614 if (Addr->hasWeakLinkage() || Addr->hasLinkOnceLinkage()) {
Richard Smith6331c402012-02-13 22:16:19 +0000615 EmitCXXGuardedInit(*D, Addr, PerformInit);
John McCallcdf7ef52010-11-06 09:44:32 +0000616 } else {
Richard Smith6331c402012-02-13 22:16:19 +0000617 EmitCXXGlobalVarDeclInit(*D, Addr, PerformInit);
Fariborz Jahanian67ca8c42010-10-26 22:47:47 +0000618 }
Daniel Dunbar75722842010-03-20 04:15:29 +0000619
620 FinishFunction();
Daniel Dunbarfe06df42010-03-20 04:15:41 +0000621}
Daniel Dunbar75722842010-03-20 04:15:29 +0000622
Benjamin Kramer139cfc22013-04-26 21:32:52 +0000623void
624CodeGenFunction::GenerateCXXGlobalInitFunc(llvm::Function *Fn,
David Majnemerb3341ea2014-10-05 05:05:40 +0000625 ArrayRef<llvm::Function *> Decls,
Richard Smith3ad06362018-10-31 20:39:26 +0000626 ConstantAddress Guard) {
Adrian Prantl0ce2b872014-04-11 23:45:01 +0000627 {
Adrian Prantl95b24e92015-02-03 20:00:54 +0000628 auto NL = ApplyDebugLocation::CreateEmpty(*this);
Adrian Prantl0ce2b872014-04-11 23:45:01 +0000629 StartFunction(GlobalDecl(), getContext().VoidTy, Fn,
630 getTypes().arrangeNullaryFunction(), FunctionArgList());
631 // Emit an artificial location for this function.
Adrian Prantl95b24e92015-02-03 20:00:54 +0000632 auto AL = ApplyDebugLocation::CreateArtificial(*this);
Daniel Dunbarfe06df42010-03-20 04:15:41 +0000633
Craig Topper8a13c412014-05-21 05:09:00 +0000634 llvm::BasicBlock *ExitBlock = nullptr;
John McCall7f416cc2015-09-08 08:05:57 +0000635 if (Guard.isValid()) {
Adrian Prantl0ce2b872014-04-11 23:45:01 +0000636 // If we have a guard variable, check whether we've already performed
637 // these initializations. This happens for TLS initialization functions.
638 llvm::Value *GuardVal = Builder.CreateLoad(Guard);
639 llvm::Value *Uninit = Builder.CreateIsNull(GuardVal,
640 "guard.uninitialized");
Adrian Prantl0ce2b872014-04-11 23:45:01 +0000641 llvm::BasicBlock *InitBlock = createBasicBlock("init");
642 ExitBlock = createBasicBlock("exit");
Richard Smithae8d62c2017-07-26 22:01:09 +0000643 EmitCXXGuardedInitBranch(Uninit, InitBlock, ExitBlock,
644 GuardKind::TlsGuard, nullptr);
Adrian Prantl0ce2b872014-04-11 23:45:01 +0000645 EmitBlock(InitBlock);
Manman Ren14f88152015-11-11 19:19:26 +0000646 // Mark as initialized before initializing anything else. If the
647 // initializers use previously-initialized thread_local vars, that's
648 // probably supposed to be OK, but the standard doesn't say.
649 Builder.CreateStore(llvm::ConstantInt::get(GuardVal->getType(),1), Guard);
Richard Smith3ad06362018-10-31 20:39:26 +0000650
651 // The guard variable can't ever change again.
652 EmitInvariantStart(
653 Guard.getPointer(),
654 CharUnits::fromQuantity(
655 CGM.getDataLayout().getTypeAllocSize(GuardVal->getType())));
Adrian Prantl0ce2b872014-04-11 23:45:01 +0000656 }
Richard Smith2fd1d7a2013-04-19 16:42:07 +0000657
Adrian Prantl0ce2b872014-04-11 23:45:01 +0000658 RunCleanupsScope Scope(*this);
John McCall31168b02011-06-15 23:02:42 +0000659
Adrian Prantl0ce2b872014-04-11 23:45:01 +0000660 // When building in Objective-C++ ARC mode, create an autorelease pool
661 // around the global initializers.
662 if (getLangOpts().ObjCAutoRefCount && getLangOpts().CPlusPlus) {
663 llvm::Value *token = EmitObjCAutoreleasePoolPush();
664 EmitObjCAutoreleasePoolCleanup(token);
665 }
Benjamin Kramer139cfc22013-04-26 21:32:52 +0000666
Adrian Prantl0ce2b872014-04-11 23:45:01 +0000667 for (unsigned i = 0, e = Decls.size(); i != e; ++i)
668 if (Decls[i])
669 EmitRuntimeCall(Decls[i]);
Daniel Dunbarfe06df42010-03-20 04:15:41 +0000670
Adrian Prantl0ce2b872014-04-11 23:45:01 +0000671 Scope.ForceCleanup();
Richard Smith2fd1d7a2013-04-19 16:42:07 +0000672
Adrian Prantl0ce2b872014-04-11 23:45:01 +0000673 if (ExitBlock) {
674 Builder.CreateBr(ExitBlock);
675 EmitBlock(ExitBlock);
676 }
Richard Smith2fd1d7a2013-04-19 16:42:07 +0000677 }
678
Daniel Dunbarfe06df42010-03-20 04:15:41 +0000679 FinishFunction();
680}
681
Sanjoy Dase369bd92017-05-01 17:08:00 +0000682void CodeGenFunction::GenerateCXXGlobalDtorsFunc(
683 llvm::Function *Fn,
684 const std::vector<std::pair<llvm::WeakTrackingVH, llvm::Constant *>>
685 &DtorsAndObjects) {
Adrian Prantl0ce2b872014-04-11 23:45:01 +0000686 {
Adrian Prantl95b24e92015-02-03 20:00:54 +0000687 auto NL = ApplyDebugLocation::CreateEmpty(*this);
Adrian Prantl0ce2b872014-04-11 23:45:01 +0000688 StartFunction(GlobalDecl(), getContext().VoidTy, Fn,
689 getTypes().arrangeNullaryFunction(), FunctionArgList());
690 // Emit an artificial location for this function.
Adrian Prantl95b24e92015-02-03 20:00:54 +0000691 auto AL = ApplyDebugLocation::CreateArtificial(*this);
Daniel Dunbarfe06df42010-03-20 04:15:41 +0000692
Adrian Prantl0ce2b872014-04-11 23:45:01 +0000693 // Emit the dtors, in reverse order from construction.
694 for (unsigned i = 0, e = DtorsAndObjects.size(); i != e; ++i) {
695 llvm::Value *Callee = DtorsAndObjects[e - i - 1].first;
696 llvm::CallInst *CI = Builder.CreateCall(Callee,
697 DtorsAndObjects[e - i - 1].second);
698 // Make sure the call and the callee agree on calling convention.
699 if (llvm::Function *F = dyn_cast<llvm::Function>(Callee))
700 CI->setCallingConv(F->getCallingConv());
701 }
Chris Lattner5e8416a2010-04-26 20:35:54 +0000702 }
Daniel Dunbarfe06df42010-03-20 04:15:41 +0000703
704 FinishFunction();
Anders Carlsson633c6f62009-12-10 00:30:05 +0000705}
706
John McCall98de3d72011-07-13 03:01:35 +0000707/// generateDestroyHelper - Generates a helper function which, when
John McCall7f416cc2015-09-08 08:05:57 +0000708/// invoked, destroys the given object. The address of the object
709/// should be in global memory.
David Blaikieebe87e12013-08-27 23:57:18 +0000710llvm::Function *CodeGenFunction::generateDestroyHelper(
John McCall7f416cc2015-09-08 08:05:57 +0000711 Address addr, QualType type, Destroyer *destroyer,
David Blaikieebe87e12013-08-27 23:57:18 +0000712 bool useEHCleanupForArray, const VarDecl *VD) {
John McCalla738c252011-03-09 04:27:21 +0000713 FunctionArgList args;
Alexey Bataev56223232017-06-09 13:40:18 +0000714 ImplicitParamDecl Dst(getContext(), getContext().VoidPtrTy,
715 ImplicitParamDecl::Other);
716 args.push_back(&Dst);
Reid Kleckner4982b822014-01-31 22:54:50 +0000717
John McCallc56a8b32016-03-11 04:30:31 +0000718 const CGFunctionInfo &FI =
719 CGM.getTypes().arrangeBuiltinFunctionDeclaration(getContext().VoidTy, args);
John McCalla729c622012-02-17 03:33:10 +0000720 llvm::FunctionType *FTy = CGM.getTypes().GetFunctionType(FI);
Alexey Samsonov1444bb92014-10-17 00:20:19 +0000721 llvm::Function *fn = CGM.CreateGlobalInitOrDestructFunction(
Akira Hatanaka7791f1a42015-10-31 01:28:07 +0000722 FTy, "__cxx_global_array_dtor", FI, VD->getLocation());
Anders Carlsson282bc102010-06-08 22:17:27 +0000723
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000724 CurEHLocation = VD->getBeginLoc();
David Blaikie47d28e02015-01-14 07:10:46 +0000725
Adrian Prantl22e66b42014-04-11 01:13:04 +0000726 StartFunction(VD, getContext().VoidTy, fn, FI, args);
Anders Carlsson282bc102010-06-08 22:17:27 +0000727
John McCall98de3d72011-07-13 03:01:35 +0000728 emitDestroy(addr, type, destroyer, useEHCleanupForArray);
Fangrui Song6907ce22018-07-30 19:24:48 +0000729
Anders Carlsson282bc102010-06-08 22:17:27 +0000730 FinishFunction();
Fangrui Song6907ce22018-07-30 19:24:48 +0000731
John McCall98de3d72011-07-13 03:01:35 +0000732 return fn;
Anders Carlsson282bc102010-06-08 22:17:27 +0000733}