blob: 3baa0a080f5db50723de13feb296b95fc67a72f6 [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
John McCall5d865c322010-08-31 07:33:07 +000013#include "CGCXXABI.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000014#include "CGObjCRuntime.h"
Alexey Bataev97720002014-11-11 04:05:39 +000015#include "CGOpenMPRuntime.h"
Reid Kleckner98031782019-12-09 16:11:56 -080016#include "CodeGenFunction.h"
Anastasia Stulova960ff082019-07-15 11:58:10 +000017#include "TargetInfo.h"
Reid Kleckner98031782019-12-09 16:11:56 -080018#include "clang/AST/Attr.h"
Richard Trieu63688182018-12-11 03:18:39 +000019#include "clang/Basic/CodeGenOptions.h"
Anton Korobeynikovabed7492012-11-06 22:44:45 +000020#include "llvm/ADT/StringExtras.h"
Chandler Carruthffd55512013-01-02 11:45:17 +000021#include "llvm/IR/Intrinsics.h"
Richard Smithae8d62c2017-07-26 22:01:09 +000022#include "llvm/IR/MDBuilder.h"
Nico Weberbdc96982014-05-06 20:32:45 +000023#include "llvm/Support/Path.h"
Douglas Gregor51150ab2010-05-16 01:24:12 +000024
Anders Carlssonbc49cfe2009-12-10 00:16:00 +000025using namespace clang;
26using namespace CodeGen;
27
Anders Carlsson364051c2009-12-10 00:57:45 +000028static void EmitDeclInit(CodeGenFunction &CGF, const VarDecl &D,
John McCall7f416cc2015-09-08 08:05:57 +000029 ConstantAddress DeclPtr) {
Mikael Nilsson9d2872d2018-12-13 10:15:27 +000030 assert(
31 (D.hasGlobalStorage() ||
32 (D.hasLocalStorage() && CGF.getContext().getLangOpts().OpenCLCPlusPlus)) &&
33 "VarDecl must have global or local (in the case of OpenCL) storage!");
Fangrui Song6907ce22018-07-30 19:24:48 +000034 assert(!D.getType()->isReferenceType() &&
Anders Carlsson364051c2009-12-10 00:57:45 +000035 "Should not call EmitDeclInit on a reference!");
Fangrui Song6907ce22018-07-30 19:24:48 +000036
John McCall1553b192011-06-16 04:16:24 +000037 QualType type = D.getType();
John McCall7f416cc2015-09-08 08:05:57 +000038 LValue lv = CGF.MakeAddrLValue(DeclPtr, type);
John McCall1553b192011-06-16 04:16:24 +000039
40 const Expr *Init = D.getInit();
John McCall47fb9502013-03-07 21:37:08 +000041 switch (CGF.getEvaluationKind(type)) {
42 case TEK_Scalar: {
Fariborz Jahaniand1339792011-01-13 20:00:54 +000043 CodeGenModule &CGM = CGF.CGM;
John McCall1553b192011-06-16 04:16:24 +000044 if (lv.isObjCStrong())
John McCall31168b02011-06-15 23:02:42 +000045 CGM.getObjCRuntime().EmitObjCGlobalAssign(CGF, CGF.EmitScalarExpr(Init),
Richard Smithfd3834f2013-04-13 02:43:54 +000046 DeclPtr, D.getTLSKind());
John McCall1553b192011-06-16 04:16:24 +000047 else if (lv.isObjCWeak())
48 CGM.getObjCRuntime().EmitObjCWeakAssign(CGF, CGF.EmitScalarExpr(Init),
49 DeclPtr);
Fariborz Jahaniand1339792011-01-13 20:00:54 +000050 else
John McCall1553b192011-06-16 04:16:24 +000051 CGF.EmitScalarInit(Init, &D, lv, false);
John McCall47fb9502013-03-07 21:37:08 +000052 return;
53 }
54 case TEK_Complex:
55 CGF.EmitComplexExprIntoLValue(Init, lv, /*isInit*/ true);
56 return;
57 case TEK_Aggregate:
Akira Hatanakaf139ae32019-12-03 15:17:01 -080058 CGF.EmitAggExpr(Init,
59 AggValueSlot::forLValue(lv, CGF, AggValueSlot::IsDestructed,
60 AggValueSlot::DoesNotNeedGCBarriers,
61 AggValueSlot::IsNotAliased,
62 AggValueSlot::DoesNotOverlap));
John McCall47fb9502013-03-07 21:37:08 +000063 return;
Anders Carlssonbc49cfe2009-12-10 00:16:00 +000064 }
John McCall47fb9502013-03-07 21:37:08 +000065 llvm_unreachable("bad evaluation kind");
Anders Carlssonbc49cfe2009-12-10 00:16:00 +000066}
67
John McCall68ff0372010-09-08 01:44:27 +000068/// Emit code to cause the destruction of the given variable with
69/// static storage duration.
Douglas Gregor370eadf2010-05-05 15:38:32 +000070static void EmitDeclDestroy(CodeGenFunction &CGF, const VarDecl &D,
Kristina Brooks825f9d32018-11-10 08:04:38 +000071 ConstantAddress Addr) {
Kristina Brooks7349d902018-11-12 01:19:16 +000072 // Honor __attribute__((no_destroy)) and bail instead of attempting
73 // to emit a reference to a possibly nonexistent destructor, which
74 // in turn can cause a crash. This will result in a global constructor
75 // that isn't balanced out by a destructor call as intended by the
76 // attribute. This also checks for -fno-c++-static-destructors and
77 // bails even if the attribute is not present.
Richard Smith2b4fa532019-09-29 05:08:46 +000078 QualType::DestructionKind DtorKind = D.needsDestruction(CGF.getContext());
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 switch (DtorKind) {
John McCall98de3d72011-07-13 03:01:35 +000083 case QualType::DK_none:
Douglas Gregor370eadf2010-05-05 15:38:32 +000084 return;
John McCall98de3d72011-07-13 03:01:35 +000085
86 case QualType::DK_cxx_destructor:
87 break;
88
89 case QualType::DK_objc_strong_lifetime:
90 case QualType::DK_objc_weak_lifetime:
Akira Hatanaka7275da02018-02-28 07:15:55 +000091 case QualType::DK_nontrivial_c_struct:
John McCall98de3d72011-07-13 03:01:35 +000092 // We don't care about releasing objects during process teardown.
Richard Smithdbf74ba2013-04-14 23:01:42 +000093 assert(!D.getTLSKind() && "should have rejected this");
Douglas Gregor370eadf2010-05-05 15:38:32 +000094 return;
John McCall98de3d72011-07-13 03:01:35 +000095 }
96
James Y Knightf7321542019-02-07 01:14:17 +000097 llvm::FunctionCallee Func;
Kristina Brooks1333b572018-11-10 07:53:47 +000098 llvm::Constant *Argument;
John McCall98de3d72011-07-13 03:01:35 +000099
Richard Smith2b4fa532019-09-29 05:08:46 +0000100 CodeGenModule &CGM = CGF.CGM;
101 QualType Type = D.getType();
102
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
Peter Collingbourned1c5b282019-03-22 23:05:10 +0000120 Func = CGM.getAddrAndTypeOfCXXStructor(GlobalDecl(Dtor, Dtor_Complete));
Anastasia Stulova960ff082019-07-15 11:58:10 +0000121 if (CGF.getContext().getLangOpts().OpenCL) {
122 auto DestAS =
123 CGM.getTargetCodeGenInfo().getAddrSpaceOfCxaAtexitPtrParam();
124 auto DestTy = CGF.getTypes().ConvertType(Type)->getPointerTo(
125 CGM.getContext().getTargetAddressSpace(DestAS));
126 auto SrcAS = D.getType().getQualifiers().getAddressSpace();
127 if (DestAS == SrcAS)
128 Argument = llvm::ConstantExpr::getBitCast(Addr.getPointer(), DestTy);
129 else
130 // FIXME: On addr space mismatch we are passing NULL. The generation
131 // of the global destructor function should be adjusted accordingly.
132 Argument = llvm::ConstantPointerNull::get(DestTy);
133 } else {
134 Argument = llvm::ConstantExpr::getBitCast(
135 Addr.getPointer(), CGF.getTypes().ConvertType(Type)->getPointerTo());
136 }
John McCall98de3d72011-07-13 03:01:35 +0000137 // Otherwise, the standard logic requires a helper function.
138 } else {
Kristina Brooks1333b572018-11-10 07:53:47 +0000139 Func = CodeGenFunction(CGM)
140 .generateDestroyHelper(Addr, Type, CGF.getDestroyer(DtorKind),
141 CGF.needsEHCleanup(DtorKind), &D);
142 Argument = llvm::Constant::getNullValue(CGF.Int8PtrTy);
John McCall98de3d72011-07-13 03:01:35 +0000143 }
144
Kristina Brooks1333b572018-11-10 07:53:47 +0000145 CGM.getCXXABI().registerGlobalDtor(CGF, D, Func, Argument);
Douglas Gregor370eadf2010-05-05 15:38:32 +0000146}
147
Richard Smith08a51442012-02-17 07:31:37 +0000148/// Emit code to cause the variable at the given address to be considered as
149/// constant from this point onwards.
Nick Lewycky45062042012-02-21 00:26:58 +0000150static void EmitDeclInvariant(CodeGenFunction &CGF, const VarDecl &D,
151 llvm::Constant *Addr) {
Richard Smith3ad06362018-10-31 20:39:26 +0000152 return CGF.EmitInvariantStart(
153 Addr, CGF.getContext().getTypeSizeInChars(D.getType()));
154}
155
156void CodeGenFunction::EmitInvariantStart(llvm::Constant *Addr, CharUnits Size) {
Anna Thomasb7721512016-07-22 15:37:56 +0000157 // Do not emit the intrinsic if we're not optimizing.
Richard Smith3ad06362018-10-31 20:39:26 +0000158 if (!CGM.getCodeGenOpts().OptimizationLevel)
Richard Smith132bea92012-02-17 20:12:52 +0000159 return;
160
Richard Smith08a51442012-02-17 07:31:37 +0000161 // Grab the llvm.invariant.start intrinsic.
162 llvm::Intrinsic::ID InvStartID = llvm::Intrinsic::invariant_start;
Anna Thomas142ea992016-07-22 17:50:08 +0000163 // Overloaded address space type.
Richard Smith3ad06362018-10-31 20:39:26 +0000164 llvm::Type *ObjectPtr[1] = {Int8PtrTy};
James Y Knight8799cae2019-02-03 21:53:49 +0000165 llvm::Function *InvariantStart = CGM.getIntrinsic(InvStartID, ObjectPtr);
Richard Smith08a51442012-02-17 07:31:37 +0000166
Nick Lewycky45062042012-02-21 00:26:58 +0000167 // Emit a call with the size in bytes of the object.
Richard Smith3ad06362018-10-31 20:39:26 +0000168 uint64_t Width = Size.getQuantity();
169 llvm::Value *Args[2] = { llvm::ConstantInt::getSigned(Int64Ty, Width),
170 llvm::ConstantExpr::getBitCast(Addr, Int8PtrTy)};
171 Builder.CreateCall(InvariantStart, Args);
Richard Smith08a51442012-02-17 07:31:37 +0000172}
173
Anders Carlsson364051c2009-12-10 00:57:45 +0000174void CodeGenFunction::EmitCXXGlobalVarDeclInit(const VarDecl &D,
Richard Smith6331c402012-02-13 22:16:19 +0000175 llvm::Constant *DeclPtr,
176 bool PerformInit) {
Anders Carlsson364051c2009-12-10 00:57:45 +0000177
178 const Expr *Init = D.getInit();
179 QualType T = D.getType();
180
Jingyue Wu4f7b9eb2015-03-25 20:06:28 +0000181 // The address space of a static local variable (DeclPtr) may be different
182 // from the address space of the "this" argument of the constructor. In that
183 // case, we need an addrspacecast before calling the constructor.
184 //
185 // struct StructWithCtor {
186 // __device__ StructWithCtor() {...}
187 // };
188 // __device__ void foo() {
189 // __shared__ StructWithCtor s;
190 // ...
191 // }
192 //
193 // For example, in the above CUDA code, the static local variable s has a
194 // "shared" address space qualifier, but the constructor of StructWithCtor
195 // expects "this" in the "generic" address space.
196 unsigned ExpectedAddrSpace = getContext().getTargetAddressSpace(T);
197 unsigned ActualAddrSpace = DeclPtr->getType()->getPointerAddressSpace();
198 if (ActualAddrSpace != ExpectedAddrSpace) {
199 llvm::Type *LTy = CGM.getTypes().ConvertTypeForMem(T);
200 llvm::PointerType *PTy = llvm::PointerType::get(LTy, ExpectedAddrSpace);
201 DeclPtr = llvm::ConstantExpr::getAddrSpaceCast(DeclPtr, PTy);
202 }
203
John McCall7f416cc2015-09-08 08:05:57 +0000204 ConstantAddress DeclAddr(DeclPtr, getContext().getDeclAlign(&D));
205
Anders Carlsson364051c2009-12-10 00:57:45 +0000206 if (!T->isReferenceType()) {
Alexey Bataeva8a9153a2017-12-29 18:07:07 +0000207 if (getLangOpts().OpenMP && !getLangOpts().OpenMPSimd &&
208 D.hasAttr<OMPThreadPrivateDeclAttr>()) {
Alexey Bataev3eff5f42015-02-25 08:32:46 +0000209 (void)CGM.getOpenMPRuntime().emitThreadPrivateVarDefinition(
John McCall7f416cc2015-09-08 08:05:57 +0000210 &D, DeclAddr, D.getAttr<OMPThreadPrivateDeclAttr>()->getLocation(),
Alexey Bataev97720002014-11-11 04:05:39 +0000211 PerformInit, this);
Alexey Bataeva8a9153a2017-12-29 18:07:07 +0000212 }
Richard Smith6331c402012-02-13 22:16:19 +0000213 if (PerformInit)
John McCall7f416cc2015-09-08 08:05:57 +0000214 EmitDeclInit(*this, D, DeclAddr);
Richard Smith08a51442012-02-17 07:31:37 +0000215 if (CGM.isTypeConstant(D.getType(), true))
Nick Lewycky45062042012-02-21 00:26:58 +0000216 EmitDeclInvariant(*this, D, DeclPtr);
Richard Smith08a51442012-02-17 07:31:37 +0000217 else
John McCall7f416cc2015-09-08 08:05:57 +0000218 EmitDeclDestroy(*this, D, DeclAddr);
Anders Carlsson364051c2009-12-10 00:57:45 +0000219 return;
220 }
Anders Carlsson3f48c602010-06-27 17:52:15 +0000221
Richard Smith6331c402012-02-13 22:16:19 +0000222 assert(PerformInit && "cannot have constant initializer which needs "
223 "destruction for reference");
Richard Smitha1c9d4d2013-06-12 23:38:09 +0000224 RValue RV = EmitReferenceBindingToExpr(Init);
John McCall7f416cc2015-09-08 08:05:57 +0000225 EmitStoreOfScalar(RV.getScalarVal(), DeclAddr, false, T);
Anders Carlsson364051c2009-12-10 00:57:45 +0000226}
Anders Carlsson633c6f62009-12-10 00:30:05 +0000227
John McCall76cc43a2012-04-06 18:21:06 +0000228/// Create a stub function, suitable for being passed to atexit,
229/// which passes the given address to the given destructor function.
James Y Knightf7321542019-02-07 01:14:17 +0000230llvm::Function *CodeGenFunction::createAtExitStub(const VarDecl &VD,
231 llvm::FunctionCallee dtor,
David Majnemerb3341ea2014-10-05 05:05:40 +0000232 llvm::Constant *addr) {
John McCall76cc43a2012-04-06 18:21:06 +0000233 // Get the destructor function type, void(*)(void).
234 llvm::FunctionType *ty = llvm::FunctionType::get(CGM.VoidTy, false);
Reid Klecknerd8110b62013-09-10 20:14:30 +0000235 SmallString<256> FnName;
236 {
237 llvm::raw_svector_ostream Out(FnName);
238 CGM.getCXXABI().getMangleContext().mangleDynamicAtExitDestructor(&VD, Out);
239 }
Akira Hatanaka7791f1a42015-10-31 01:28:07 +0000240
241 const CGFunctionInfo &FI = CGM.getTypes().arrangeNullaryFunction();
Reid Kleckner105c5652019-04-24 22:45:44 +0000242 llvm::Function *fn = CGM.CreateGlobalInitOrDestructFunction(
243 ty, FnName.str(), FI, VD.getLocation());
John McCall76cc43a2012-04-06 18:21:06 +0000244
245 CodeGenFunction CGF(CGM);
246
Reid Kleckner105c5652019-04-24 22:45:44 +0000247 CGF.StartFunction(GlobalDecl(&VD, DynamicInitKind::AtExit),
248 CGM.getContext().VoidTy, fn, FI, FunctionArgList());
John McCall76cc43a2012-04-06 18:21:06 +0000249
250 llvm::CallInst *call = CGF.Builder.CreateCall(dtor, addr);
Fangrui Song6907ce22018-07-30 19:24:48 +0000251
John McCall76cc43a2012-04-06 18:21:06 +0000252 // Make sure the call and the callee agree on calling convention.
Erich Keane8a410bc2019-10-07 17:28:03 +0000253 if (auto *dtorFn = dyn_cast<llvm::Function>(
254 dtor.getCallee()->stripPointerCastsAndAliases()))
John McCall76cc43a2012-04-06 18:21:06 +0000255 call->setCallingConv(dtorFn->getCallingConv());
256
257 CGF.FinishFunction();
258
259 return fn;
260}
261
John McCallc84ed6a2012-05-01 06:13:13 +0000262/// Register a global destructor using the C atexit runtime function.
David Blaikieebe87e12013-08-27 23:57:18 +0000263void CodeGenFunction::registerGlobalDtorWithAtExit(const VarDecl &VD,
James Y Knightf7321542019-02-07 01:14:17 +0000264 llvm::FunctionCallee dtor,
John McCallc84ed6a2012-05-01 06:13:13 +0000265 llvm::Constant *addr) {
John McCall76cc43a2012-04-06 18:21:06 +0000266 // Create a function which calls the destructor.
David Majnemerb3341ea2014-10-05 05:05:40 +0000267 llvm::Constant *dtorStub = createAtExitStub(VD, dtor, addr);
Akira Hatanaka617e2612018-04-17 18:41:52 +0000268 registerGlobalDtorWithAtExit(dtorStub);
269}
John McCall76cc43a2012-04-06 18:21:06 +0000270
Akira Hatanaka617e2612018-04-17 18:41:52 +0000271void CodeGenFunction::registerGlobalDtorWithAtExit(llvm::Constant *dtorStub) {
John McCall76cc43a2012-04-06 18:21:06 +0000272 // extern "C" int atexit(void (*f)(void));
273 llvm::FunctionType *atexitTy =
John McCallc84ed6a2012-05-01 06:13:13 +0000274 llvm::FunctionType::get(IntTy, dtorStub->getType(), false);
John McCall76cc43a2012-04-06 18:21:06 +0000275
James Y Knight9871db02019-02-05 16:42:33 +0000276 llvm::FunctionCallee atexit =
Reid Klecknerde864822017-03-21 16:57:30 +0000277 CGM.CreateRuntimeFunction(atexitTy, "atexit", llvm::AttributeList(),
Saleem Abdulrasool6cb07442016-12-15 06:59:05 +0000278 /*Local=*/true);
James Y Knight9871db02019-02-05 16:42:33 +0000279 if (llvm::Function *atexitFn = dyn_cast<llvm::Function>(atexit.getCallee()))
John McCall76cc43a2012-04-06 18:21:06 +0000280 atexitFn->setDoesNotThrow();
281
John McCall882987f2013-02-28 19:01:20 +0000282 EmitNounwindRuntimeCall(atexit, dtorStub);
Anders Carlsson633c6f62009-12-10 00:30:05 +0000283}
284
John McCallcdf7ef52010-11-06 09:44:32 +0000285void CodeGenFunction::EmitCXXGuardedInit(const VarDecl &D,
Chandler Carruth84537952012-03-30 19:44:53 +0000286 llvm::GlobalVariable *DeclPtr,
Richard Smith6331c402012-02-13 22:16:19 +0000287 bool PerformInit) {
John McCall7ef5cb32011-03-18 02:56:14 +0000288 // If we've been asked to forbid guard variables, emit an error now.
289 // This diagnostic is hard-coded for Darwin's use case; we can find
290 // better phrasing if someone else needs it.
291 if (CGM.getCodeGenOpts().ForbidGuardVariables)
292 CGM.Error(D.getLocation(),
293 "this initialization requires a guard variable, which "
294 "the kernel does not support");
295
Chandler Carruth84537952012-03-30 19:44:53 +0000296 CGM.getCXXABI().EmitGuardedInit(*this, D, DeclPtr, PerformInit);
John McCall68ff0372010-09-08 01:44:27 +0000297}
298
Richard Smithae8d62c2017-07-26 22:01:09 +0000299void CodeGenFunction::EmitCXXGuardedInitBranch(llvm::Value *NeedsInit,
300 llvm::BasicBlock *InitBlock,
301 llvm::BasicBlock *NoInitBlock,
302 GuardKind Kind,
303 const VarDecl *D) {
304 assert((Kind == GuardKind::TlsGuard || D) && "no guarded variable");
305
306 // A guess at how many times we will enter the initialization of a
307 // variable, depending on the kind of variable.
308 static const uint64_t InitsPerTLSVar = 1024;
309 static const uint64_t InitsPerLocalVar = 1024 * 1024;
310
311 llvm::MDNode *Weights;
312 if (Kind == GuardKind::VariableGuard && !D->isLocalVarDecl()) {
313 // For non-local variables, don't apply any weighting for now. Due to our
314 // use of COMDATs, we expect there to be at most one initialization of the
315 // variable per DSO, but we have no way to know how many DSOs will try to
316 // initialize the variable.
317 Weights = nullptr;
318 } else {
319 uint64_t NumInits;
320 // FIXME: For the TLS case, collect and use profiling information to
321 // determine a more accurate brach weight.
322 if (Kind == GuardKind::TlsGuard || D->getTLSKind())
323 NumInits = InitsPerTLSVar;
324 else
325 NumInits = InitsPerLocalVar;
326
327 // The probability of us entering the initializer is
328 // 1 / (total number of times we attempt to initialize the variable).
329 llvm::MDBuilder MDHelper(CGM.getLLVMContext());
330 Weights = MDHelper.createBranchWeights(1, NumInits - 1);
331 }
332
333 Builder.CreateCondBr(NeedsInit, InitBlock, NoInitBlock, Weights);
334}
335
Alexey Samsonov1444bb92014-10-17 00:20:19 +0000336llvm::Function *CodeGenModule::CreateGlobalInitOrDestructFunction(
Akira Hatanaka7791f1a42015-10-31 01:28:07 +0000337 llvm::FunctionType *FTy, const Twine &Name, const CGFunctionInfo &FI,
338 SourceLocation Loc, bool TLS) {
Anders Carlssonb2839e42010-06-08 22:40:05 +0000339 llvm::Function *Fn =
340 llvm::Function::Create(FTy, llvm::GlobalValue::InternalLinkage,
David Majnemerb3341ea2014-10-05 05:05:40 +0000341 Name, &getModule());
342 if (!getLangOpts().AppleKext && !TLS) {
Fariborz Jahanian09948f12011-02-15 18:54:46 +0000343 // Set the section if needed.
David Majnemerb3341ea2014-10-05 05:05:40 +0000344 if (const char *Section = getTarget().getStaticInitSectionSpecifier())
Fariborz Jahanian09948f12011-02-15 18:54:46 +0000345 Fn->setSection(Section);
346 }
Anders Carlsson851318a2010-06-08 22:47:50 +0000347
Rafael Espindola51ec5a92018-02-28 23:46:35 +0000348 SetInternalFunctionAttributes(GlobalDecl(), Fn, FI);
Reid Kleckner787dc432015-04-22 19:37:32 +0000349
David Majnemerb3341ea2014-10-05 05:05:40 +0000350 Fn->setCallingConv(getRuntimeCC());
John McCall882987f2013-02-28 19:01:20 +0000351
David Majnemerb3341ea2014-10-05 05:05:40 +0000352 if (!getLangOpts().Exceptions)
John McCall466e2212010-07-06 04:38:10 +0000353 Fn->setDoesNotThrow();
354
Vlad Tsyrklevich2eccdab2017-09-25 22:11:12 +0000355 if (getLangOpts().Sanitize.has(SanitizerKind::Address) &&
356 !isInSanitizerBlacklist(SanitizerKind::Address, Fn, Loc))
357 Fn->addFnAttr(llvm::Attribute::SanitizeAddress);
358
359 if (getLangOpts().Sanitize.has(SanitizerKind::KernelAddress) &&
360 !isInSanitizerBlacklist(SanitizerKind::KernelAddress, Fn, Loc))
361 Fn->addFnAttr(llvm::Attribute::SanitizeAddress);
362
Evgeniy Stepanov12817e52017-12-09 01:32:07 +0000363 if (getLangOpts().Sanitize.has(SanitizerKind::HWAddress) &&
364 !isInSanitizerBlacklist(SanitizerKind::HWAddress, Fn, Loc))
365 Fn->addFnAttr(llvm::Attribute::SanitizeHWAddress);
366
Andrey Konovalov1ba9d9c2018-04-13 18:05:21 +0000367 if (getLangOpts().Sanitize.has(SanitizerKind::KernelHWAddress) &&
368 !isInSanitizerBlacklist(SanitizerKind::KernelHWAddress, Fn, Loc))
369 Fn->addFnAttr(llvm::Attribute::SanitizeHWAddress);
370
Evgeniy Stepanovc5e7f562019-07-15 20:02:23 +0000371 if (getLangOpts().Sanitize.has(SanitizerKind::MemTag) &&
372 !isInSanitizerBlacklist(SanitizerKind::MemTag, Fn, Loc))
373 Fn->addFnAttr(llvm::Attribute::SanitizeMemTag);
374
Vlad Tsyrklevich2eccdab2017-09-25 22:11:12 +0000375 if (getLangOpts().Sanitize.has(SanitizerKind::Thread) &&
376 !isInSanitizerBlacklist(SanitizerKind::Thread, Fn, Loc))
377 Fn->addFnAttr(llvm::Attribute::SanitizeThread);
378
379 if (getLangOpts().Sanitize.has(SanitizerKind::Memory) &&
380 !isInSanitizerBlacklist(SanitizerKind::Memory, Fn, Loc))
381 Fn->addFnAttr(llvm::Attribute::SanitizeMemory);
382
Alexander Potapenkod49c32c2018-09-07 09:21:09 +0000383 if (getLangOpts().Sanitize.has(SanitizerKind::KernelMemory) &&
384 !isInSanitizerBlacklist(SanitizerKind::KernelMemory, Fn, Loc))
385 Fn->addFnAttr(llvm::Attribute::SanitizeMemory);
386
Vlad Tsyrklevich2eccdab2017-09-25 22:11:12 +0000387 if (getLangOpts().Sanitize.has(SanitizerKind::SafeStack) &&
388 !isInSanitizerBlacklist(SanitizerKind::SafeStack, Fn, Loc))
389 Fn->addFnAttr(llvm::Attribute::SafeStack);
Kostya Serebryanybf84b8f2012-06-26 08:56:33 +0000390
Vlad Tsyrkleviche55aa032018-04-03 22:33:53 +0000391 if (getLangOpts().Sanitize.has(SanitizerKind::ShadowCallStack) &&
392 !isInSanitizerBlacklist(SanitizerKind::ShadowCallStack, Fn, Loc))
393 Fn->addFnAttr(llvm::Attribute::ShadowCallStack);
394
Oliver Stannard95ac65b2018-09-13 10:25:36 +0000395 auto RASignKind = getCodeGenOpts().getSignReturnAddress();
Luke Cheesemana8a24aa2018-10-25 15:23:49 +0000396 if (RASignKind != CodeGenOptions::SignReturnAddressScope::None) {
Oliver Stannard95ac65b2018-09-13 10:25:36 +0000397 Fn->addFnAttr("sign-return-address",
398 RASignKind == CodeGenOptions::SignReturnAddressScope::All
399 ? "all"
400 : "non-leaf");
Luke Cheesemana8a24aa2018-10-25 15:23:49 +0000401 auto RASignKey = getCodeGenOpts().getSignReturnAddressKey();
402 Fn->addFnAttr("sign-return-address-key",
403 RASignKey == CodeGenOptions::SignReturnAddressKeyValue::AKey
404 ? "a_key"
405 : "b_key");
406 }
407
408 if (getCodeGenOpts().BranchTargetEnforcement)
409 Fn->addFnAttr("branch-target-enforcement");
410
Anders Carlssonb2839e42010-06-08 22:40:05 +0000411 return Fn;
412}
413
Reid Kleckner1a711b12014-07-22 00:53:05 +0000414/// Create a global pointer to a function that will initialize a global
415/// variable. The user has requested that this pointer be emitted in a specific
416/// section.
417void CodeGenModule::EmitPointerToInitFunc(const VarDecl *D,
418 llvm::GlobalVariable *GV,
419 llvm::Function *InitFunc,
420 InitSegAttr *ISA) {
421 llvm::GlobalVariable *PtrArray = new llvm::GlobalVariable(
422 TheModule, InitFunc->getType(), /*isConstant=*/true,
423 llvm::GlobalValue::PrivateLinkage, InitFunc, "__cxx_init_fn_ptr");
424 PtrArray->setSection(ISA->getSection());
425 addUsedGlobal(PtrArray);
426
427 // If the GV is already in a comdat group, then we have to join it.
Rafael Espindola0d4fb982015-01-12 22:13:53 +0000428 if (llvm::Comdat *C = GV->getComdat())
Reid Kleckner1a711b12014-07-22 00:53:05 +0000429 PtrArray->setComdat(C);
430}
431
Daniel Dunbarfe06df42010-03-20 04:15:41 +0000432void
John McCallcdf7ef52010-11-06 09:44:32 +0000433CodeGenModule::EmitCXXGlobalVarDeclInitFunc(const VarDecl *D,
Richard Smith6331c402012-02-13 22:16:19 +0000434 llvm::GlobalVariable *Addr,
435 bool PerformInit) {
Artem Belevich97c01c32016-02-02 22:29:48 +0000436
437 // According to E.2.3.1 in CUDA-7.5 Programming guide: __device__,
438 // __constant__ and __shared__ variables defined in namespace scope,
439 // that are of class type, cannot have a non-empty constructor. All
440 // the checks have been done in Sema by now. Whatever initializers
441 // are allowed are empty and we just need to ignore them here.
Yaxun (Sam) Liu68f5ca42019-10-22 13:41:25 -0400442 if (getLangOpts().CUDAIsDevice && !getLangOpts().GPUAllowDeviceInit &&
Artem Belevich97c01c32016-02-02 22:29:48 +0000443 (D->hasAttr<CUDADeviceAttr>() || D->hasAttr<CUDAConstantAttr>() ||
444 D->hasAttr<CUDASharedAttr>()))
445 return;
446
Alexey Bataev34f8a702018-03-28 14:28:54 +0000447 if (getLangOpts().OpenMP &&
448 getOpenMPRuntime().emitDeclareTargetVarDefinition(D, Addr, PerformInit))
449 return;
450
Reid Klecknere07140e2015-04-15 01:08:06 +0000451 // Check if we've already initialized this decl.
452 auto I = DelayedCXXInitPosition.find(D);
453 if (I != DelayedCXXInitPosition.end() && I->second == ~0U)
454 return;
455
Chris Lattnerece04092012-02-07 00:39:47 +0000456 llvm::FunctionType *FTy = llvm::FunctionType::get(VoidTy, false);
Reid Kleckner1ece9fc2013-09-10 20:43:12 +0000457 SmallString<256> FnName;
458 {
459 llvm::raw_svector_ostream Out(FnName);
460 getCXXABI().getMangleContext().mangleDynamicInitializer(D, Out);
461 }
Eli Friedman5866fe32010-01-08 00:50:11 +0000462
463 // Create a variable initialization function.
Alexey Samsonov1444bb92014-10-17 00:20:19 +0000464 llvm::Function *Fn =
Akira Hatanaka7791f1a42015-10-31 01:28:07 +0000465 CreateGlobalInitOrDestructFunction(FTy, FnName.str(),
466 getTypes().arrangeNullaryFunction(),
467 D->getLocation());
Eli Friedman5866fe32010-01-08 00:50:11 +0000468
Reid Kleckner1a711b12014-07-22 00:53:05 +0000469 auto *ISA = D->getAttr<InitSegAttr>();
Richard Smith6331c402012-02-13 22:16:19 +0000470 CodeGenFunction(*this).GenerateCXXGlobalVarDeclInitFunc(Fn, D, Addr,
471 PerformInit);
Rafael Espindola9f834732014-09-19 01:54:22 +0000472
Reid Kleckner72d03be2014-10-15 16:38:00 +0000473 llvm::GlobalVariable *COMDATKey =
474 supportsCOMDAT() && D->isExternallyVisible() ? Addr : nullptr;
Rafael Espindola9f834732014-09-19 01:54:22 +0000475
Richard Smith2fd1d7a2013-04-19 16:42:07 +0000476 if (D->getTLSKind()) {
477 // FIXME: Should we support init_priority for thread_local?
Richard Smith2fd1d7a2013-04-19 16:42:07 +0000478 // FIXME: We only need to register one __cxa_thread_atexit function for the
479 // entire TU.
480 CXXThreadLocalInits.push_back(Fn);
Richard Smith5a99c492015-12-01 01:10:48 +0000481 CXXThreadLocalInitVars.push_back(D);
Reid Kleckner1a711b12014-07-22 00:53:05 +0000482 } else if (PerformInit && ISA) {
483 EmitPointerToInitFunc(D, Addr, Fn, ISA);
Reid Kleckner1a711b12014-07-22 00:53:05 +0000484 } else if (auto *IPA = D->getAttr<InitPriorityAttr>()) {
Aaron Ballmane8d9f8d2013-12-19 03:02:49 +0000485 OrderGlobalInits Key(IPA->getPriority(), PrioritizedCXXGlobalInits.size());
Fariborz Jahanian89bdd142010-06-21 21:27:42 +0000486 PrioritizedCXXGlobalInits.push_back(std::make_pair(Key, Fn));
Jennifer Yuc19f4f82019-04-25 17:45:45 +0000487 } else if (isTemplateInstantiation(D->getTemplateSpecializationKind()) ||
488 getContext().GetGVALinkageForVariable(D) == GVA_DiscardableODR) {
Reid Kleckner37384452013-08-22 20:07:45 +0000489 // C++ [basic.start.init]p2:
Reid Kleckner27533242013-09-04 00:54:24 +0000490 // Definitions of explicitly specialized class template static data
491 // members have ordered initialization. Other class template static data
492 // members (i.e., implicitly or explicitly instantiated specializations)
493 // have unordered initialization.
Reid Kleckner37384452013-08-22 20:07:45 +0000494 //
495 // As a consequence, we can put them into their own llvm.global_ctors entry.
Reid Kleckner563f0e82014-05-23 21:13:45 +0000496 //
Reid Kleckner72d03be2014-10-15 16:38:00 +0000497 // If the global is externally visible, put the initializer into a COMDAT
498 // group with the global being initialized. On most platforms, this is a
499 // minor startup time optimization. In the MS C++ ABI, there are no guard
500 // variables, so this COMDAT key is required for correctness.
501 AddGlobalCtor(Fn, 65535, COMDATKey);
Jennifer Yuc19f4f82019-04-25 17:45:45 +0000502 if (getTarget().getCXXABI().isMicrosoft() && COMDATKey) {
503 // In The MS C++, MS add template static data member in the linker
504 // drective.
505 addUsedGlobal(COMDATKey);
506 }
Hans Wennborg7b556ea2014-09-10 19:28:48 +0000507 } else if (D->hasAttr<SelectAnyAttr>()) {
Nico Weber0a029922015-01-12 21:24:10 +0000508 // SelectAny globals will be comdat-folded. Put the initializer into a
509 // COMDAT group associated with the global, so the initializers get folded
510 // too.
Reid Kleckner72d03be2014-10-15 16:38:00 +0000511 AddGlobalCtor(Fn, 65535, COMDATKey);
Richard Smith2fd1d7a2013-04-19 16:42:07 +0000512 } else {
Reid Klecknere07140e2015-04-15 01:08:06 +0000513 I = DelayedCXXInitPosition.find(D); // Re-do lookup in case of re-hash.
John McCall70013b62010-07-15 23:40:35 +0000514 if (I == DelayedCXXInitPosition.end()) {
515 CXXGlobalInits.push_back(Fn);
Reid Klecknere07140e2015-04-15 01:08:06 +0000516 } else if (I->second != ~0U) {
517 assert(I->second < CXXGlobalInits.size() &&
518 CXXGlobalInits[I->second] == nullptr);
John McCall70013b62010-07-15 23:40:35 +0000519 CXXGlobalInits[I->second] = Fn;
John McCall70013b62010-07-15 23:40:35 +0000520 }
521 }
Reid Klecknere07140e2015-04-15 01:08:06 +0000522
523 // Remember that we already emitted the initializer for this global.
524 DelayedCXXInitPosition[D] = ~0U;
Eli Friedman5866fe32010-01-08 00:50:11 +0000525}
526
Richard Smith2fd1d7a2013-04-19 16:42:07 +0000527void CodeGenModule::EmitCXXThreadLocalInitFunc() {
David Majnemerb3341ea2014-10-05 05:05:40 +0000528 getCXXABI().EmitThreadLocalInitFuncs(
529 *this, CXXThreadLocals, CXXThreadLocalInits, CXXThreadLocalInitVars);
Richard Smith2fd1d7a2013-04-19 16:42:07 +0000530
531 CXXThreadLocalInits.clear();
David Majnemerb3341ea2014-10-05 05:05:40 +0000532 CXXThreadLocalInitVars.clear();
Richard Smith2fd1d7a2013-04-19 16:42:07 +0000533 CXXThreadLocals.clear();
534}
535
Daniel Dunbarfe06df42010-03-20 04:15:41 +0000536void
537CodeGenModule::EmitCXXGlobalInitFunc() {
John McCall70013b62010-07-15 23:40:35 +0000538 while (!CXXGlobalInits.empty() && !CXXGlobalInits.back())
539 CXXGlobalInits.pop_back();
540
Fariborz Jahanian9f2a4ee2010-06-21 18:45:05 +0000541 if (CXXGlobalInits.empty() && PrioritizedCXXGlobalInits.empty())
Anders Carlsson633c6f62009-12-10 00:30:05 +0000542 return;
543
Chris Lattnerece04092012-02-07 00:39:47 +0000544 llvm::FunctionType *FTy = llvm::FunctionType::get(VoidTy, false);
Akira Hatanaka7791f1a42015-10-31 01:28:07 +0000545 const CGFunctionInfo &FI = getTypes().arrangeNullaryFunction();
Anders Carlsson633c6f62009-12-10 00:30:05 +0000546
Anton Korobeynikovabed7492012-11-06 22:44:45 +0000547 // Create our global initialization function.
Fariborz Jahanian9f2a4ee2010-06-21 18:45:05 +0000548 if (!PrioritizedCXXGlobalInits.empty()) {
David Majnemerb3341ea2014-10-05 05:05:40 +0000549 SmallVector<llvm::Function *, 8> LocalCXXGlobalInits;
Fangrui Song6907ce22018-07-30 19:24:48 +0000550 llvm::array_pod_sort(PrioritizedCXXGlobalInits.begin(),
Anton Korobeynikovabed7492012-11-06 22:44:45 +0000551 PrioritizedCXXGlobalInits.end());
552 // Iterate over "chunks" of ctors with same priority and emit each chunk
553 // into separate function. Note - everything is sorted first by priority,
554 // second - by lex order, so we emit ctor functions in proper order.
555 for (SmallVectorImpl<GlobalInitData >::iterator
556 I = PrioritizedCXXGlobalInits.begin(),
557 E = PrioritizedCXXGlobalInits.end(); I != E; ) {
558 SmallVectorImpl<GlobalInitData >::iterator
559 PrioE = std::upper_bound(I + 1, E, *I, GlobalInitPriorityCmp());
560
561 LocalCXXGlobalInits.clear();
562 unsigned Priority = I->first.priority;
563 // Compute the function suffix from priority. Prepend with zeroes to make
564 // sure the function names are also ordered as priorities.
565 std::string PrioritySuffix = llvm::utostr(Priority);
Nico Weberbdc96982014-05-06 20:32:45 +0000566 // Priority is always <= 65535 (enforced by sema).
Anton Korobeynikovabed7492012-11-06 22:44:45 +0000567 PrioritySuffix = std::string(6-PrioritySuffix.size(), '0')+PrioritySuffix;
David Majnemerb3341ea2014-10-05 05:05:40 +0000568 llvm::Function *Fn = CreateGlobalInitOrDestructFunction(
Akira Hatanaka7791f1a42015-10-31 01:28:07 +0000569 FTy, "_GLOBAL__I_" + PrioritySuffix, FI);
David Majnemerb3341ea2014-10-05 05:05:40 +0000570
Anton Korobeynikovabed7492012-11-06 22:44:45 +0000571 for (; I < PrioE; ++I)
572 LocalCXXGlobalInits.push_back(I->second);
573
Benjamin Kramer139cfc22013-04-26 21:32:52 +0000574 CodeGenFunction(*this).GenerateCXXGlobalInitFunc(Fn, LocalCXXGlobalInits);
Anton Korobeynikovabed7492012-11-06 22:44:45 +0000575 AddGlobalCtor(Fn, Priority);
576 }
Yaron Keren35071ac2015-06-20 15:51:52 +0000577 PrioritizedCXXGlobalInits.clear();
Fariborz Jahanian9f2a4ee2010-06-21 18:45:05 +0000578 }
Keno Fischer84778b22014-08-26 22:10:15 +0000579
Vassil Vassilev3d05c562017-08-27 11:27:30 +0000580 // Include the filename in the symbol name. Including "sub_" matches gcc and
581 // makes sure these symbols appear lexicographically behind the symbols with
582 // priority emitted above.
583 SmallString<128> FileName = llvm::sys::path::filename(getModule().getName());
584 if (FileName.empty())
Yaron Kereneac8a1e2015-05-12 12:47:05 +0000585 FileName = "<null>";
Keno Fischer84778b22014-08-26 22:10:15 +0000586
Nico Weberbdc96982014-05-06 20:32:45 +0000587 for (size_t i = 0; i < FileName.size(); ++i) {
588 // Replace everything that's not [a-zA-Z0-9._] with a _. This set happens
589 // to be the set of C preprocessing numbers.
590 if (!isPreprocessingNumberBody(FileName[i]))
591 FileName[i] = '_';
592 }
Keno Fischer84778b22014-08-26 22:10:15 +0000593
Nico Weberbdc96982014-05-06 20:32:45 +0000594 llvm::Function *Fn = CreateGlobalInitOrDestructFunction(
Akira Hatanaka7791f1a42015-10-31 01:28:07 +0000595 FTy, llvm::Twine("_GLOBAL__sub_I_", FileName), FI);
Anton Korobeynikovabed7492012-11-06 22:44:45 +0000596
Benjamin Kramer139cfc22013-04-26 21:32:52 +0000597 CodeGenFunction(*this).GenerateCXXGlobalInitFunc(Fn, CXXGlobalInits);
Daniel Dunbarfe06df42010-03-20 04:15:41 +0000598 AddGlobalCtor(Fn);
Anton Korobeynikovabed7492012-11-06 22:44:45 +0000599
Anastasia Stulovae6cf6c72019-05-09 13:55:44 +0000600 // In OpenCL global init functions must be converted to kernels in order to
601 // be able to launch them from the host.
602 // FIXME: Some more work might be needed to handle destructors correctly.
603 // Current initialization function makes use of function pointers callbacks.
604 // We can't support function pointers especially between host and device.
605 // However it seems global destruction has little meaning without any
606 // dynamic resource allocation on the device and program scope variables are
607 // destroyed by the runtime when program is released.
608 if (getLangOpts().OpenCL) {
609 GenOpenCLArgMetadata(Fn);
610 Fn->setCallingConv(llvm::CallingConv::SPIR_KERNEL);
611 }
612
Yaxun (Sam) Liu68f5ca42019-10-22 13:41:25 -0400613 if (getLangOpts().HIP) {
614 Fn->setCallingConv(llvm::CallingConv::AMDGPU_KERNEL);
615 Fn->addFnAttr("device-init");
616 }
617
Axel Naumannbd26a582011-05-06 15:24:04 +0000618 CXXGlobalInits.clear();
Daniel Dunbarfe06df42010-03-20 04:15:41 +0000619}
620
Daniel Dunbarfe06df42010-03-20 04:15:41 +0000621void CodeGenModule::EmitCXXGlobalDtorFunc() {
622 if (CXXGlobalDtors.empty())
623 return;
624
Chris Lattnerece04092012-02-07 00:39:47 +0000625 llvm::FunctionType *FTy = llvm::FunctionType::get(VoidTy, false);
Daniel Dunbarfe06df42010-03-20 04:15:41 +0000626
627 // Create our global destructor function.
Akira Hatanaka7791f1a42015-10-31 01:28:07 +0000628 const CGFunctionInfo &FI = getTypes().arrangeNullaryFunction();
629 llvm::Function *Fn =
630 CreateGlobalInitOrDestructFunction(FTy, "_GLOBAL__D_a", FI);
Daniel Dunbarfe06df42010-03-20 04:15:41 +0000631
John McCallee08c532012-04-06 18:21:03 +0000632 CodeGenFunction(*this).GenerateCXXGlobalDtorsFunc(Fn, CXXGlobalDtors);
Daniel Dunbarfe06df42010-03-20 04:15:41 +0000633 AddGlobalDtor(Fn);
634}
635
John McCallcdf7ef52010-11-06 09:44:32 +0000636/// Emit the code necessary to initialize the given global variable.
Daniel Dunbarfe06df42010-03-20 04:15:41 +0000637void CodeGenFunction::GenerateCXXGlobalVarDeclInitFunc(llvm::Function *Fn,
John McCallcdf7ef52010-11-06 09:44:32 +0000638 const VarDecl *D,
Richard Smith6331c402012-02-13 22:16:19 +0000639 llvm::GlobalVariable *Addr,
640 bool PerformInit) {
Alexey Samsonov38e24962012-10-16 07:22:28 +0000641 // Check if we need to emit debug info for variable initializer.
David Blaikie92848de2013-08-26 20:33:21 +0000642 if (D->hasAttr<NoDebugAttr>())
Craig Topper8a13c412014-05-21 05:09:00 +0000643 DebugInfo = nullptr; // disable debug info indefinitely for this function
Nick Lewycky08597072012-07-24 01:40:49 +0000644
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000645 CurEHLocation = D->getBeginLoc();
David Blaikie47d28e02015-01-14 07:10:46 +0000646
Reid Kleckner105c5652019-04-24 22:45:44 +0000647 StartFunction(GlobalDecl(D, DynamicInitKind::Initializer),
648 getContext().VoidTy, Fn, getTypes().arrangeNullaryFunction(),
Alexandre Ganeacaf31662019-11-15 16:21:17 -0500649 FunctionArgList(), D->getLocation(),
650 D->getInit()->getExprLoc());
Daniel Dunbar75722842010-03-20 04:15:29 +0000651
Douglas Gregorfa918f62011-07-01 21:54:36 +0000652 // Use guarded initialization if the global variable is weak. This
653 // occurs for, e.g., instantiated static data members and
654 // definitions explicitly marked weak.
Richard Smith453b7ca2019-06-05 00:04:33 +0000655 //
656 // Also use guarded initialization for a variable with dynamic TLS and
657 // unordered initialization. (If the initialization is ordered, the ABI
658 // layer will guard the whole-TU initialization for us.)
659 if (Addr->hasWeakLinkage() || Addr->hasLinkOnceLinkage() ||
660 (D->getTLSKind() == VarDecl::TLS_Dynamic &&
661 isTemplateInstantiation(D->getTemplateSpecializationKind()))) {
Richard Smith6331c402012-02-13 22:16:19 +0000662 EmitCXXGuardedInit(*D, Addr, PerformInit);
John McCallcdf7ef52010-11-06 09:44:32 +0000663 } else {
Richard Smith6331c402012-02-13 22:16:19 +0000664 EmitCXXGlobalVarDeclInit(*D, Addr, PerformInit);
Fariborz Jahanian67ca8c42010-10-26 22:47:47 +0000665 }
Daniel Dunbar75722842010-03-20 04:15:29 +0000666
667 FinishFunction();
Daniel Dunbarfe06df42010-03-20 04:15:41 +0000668}
Daniel Dunbar75722842010-03-20 04:15:29 +0000669
Benjamin Kramer139cfc22013-04-26 21:32:52 +0000670void
671CodeGenFunction::GenerateCXXGlobalInitFunc(llvm::Function *Fn,
David Majnemerb3341ea2014-10-05 05:05:40 +0000672 ArrayRef<llvm::Function *> Decls,
Richard Smith3ad06362018-10-31 20:39:26 +0000673 ConstantAddress Guard) {
Adrian Prantl0ce2b872014-04-11 23:45:01 +0000674 {
Adrian Prantl95b24e92015-02-03 20:00:54 +0000675 auto NL = ApplyDebugLocation::CreateEmpty(*this);
Adrian Prantl0ce2b872014-04-11 23:45:01 +0000676 StartFunction(GlobalDecl(), getContext().VoidTy, Fn,
677 getTypes().arrangeNullaryFunction(), FunctionArgList());
678 // Emit an artificial location for this function.
Adrian Prantl95b24e92015-02-03 20:00:54 +0000679 auto AL = ApplyDebugLocation::CreateArtificial(*this);
Daniel Dunbarfe06df42010-03-20 04:15:41 +0000680
Craig Topper8a13c412014-05-21 05:09:00 +0000681 llvm::BasicBlock *ExitBlock = nullptr;
John McCall7f416cc2015-09-08 08:05:57 +0000682 if (Guard.isValid()) {
Adrian Prantl0ce2b872014-04-11 23:45:01 +0000683 // If we have a guard variable, check whether we've already performed
684 // these initializations. This happens for TLS initialization functions.
685 llvm::Value *GuardVal = Builder.CreateLoad(Guard);
686 llvm::Value *Uninit = Builder.CreateIsNull(GuardVal,
687 "guard.uninitialized");
Adrian Prantl0ce2b872014-04-11 23:45:01 +0000688 llvm::BasicBlock *InitBlock = createBasicBlock("init");
689 ExitBlock = createBasicBlock("exit");
Richard Smithae8d62c2017-07-26 22:01:09 +0000690 EmitCXXGuardedInitBranch(Uninit, InitBlock, ExitBlock,
691 GuardKind::TlsGuard, nullptr);
Adrian Prantl0ce2b872014-04-11 23:45:01 +0000692 EmitBlock(InitBlock);
Manman Ren14f88152015-11-11 19:19:26 +0000693 // Mark as initialized before initializing anything else. If the
694 // initializers use previously-initialized thread_local vars, that's
695 // probably supposed to be OK, but the standard doesn't say.
696 Builder.CreateStore(llvm::ConstantInt::get(GuardVal->getType(),1), Guard);
Richard Smith3ad06362018-10-31 20:39:26 +0000697
698 // The guard variable can't ever change again.
699 EmitInvariantStart(
700 Guard.getPointer(),
701 CharUnits::fromQuantity(
702 CGM.getDataLayout().getTypeAllocSize(GuardVal->getType())));
Adrian Prantl0ce2b872014-04-11 23:45:01 +0000703 }
Richard Smith2fd1d7a2013-04-19 16:42:07 +0000704
Adrian Prantl0ce2b872014-04-11 23:45:01 +0000705 RunCleanupsScope Scope(*this);
John McCall31168b02011-06-15 23:02:42 +0000706
Adrian Prantl0ce2b872014-04-11 23:45:01 +0000707 // When building in Objective-C++ ARC mode, create an autorelease pool
708 // around the global initializers.
709 if (getLangOpts().ObjCAutoRefCount && getLangOpts().CPlusPlus) {
710 llvm::Value *token = EmitObjCAutoreleasePoolPush();
711 EmitObjCAutoreleasePoolCleanup(token);
712 }
Benjamin Kramer139cfc22013-04-26 21:32:52 +0000713
Adrian Prantl0ce2b872014-04-11 23:45:01 +0000714 for (unsigned i = 0, e = Decls.size(); i != e; ++i)
715 if (Decls[i])
716 EmitRuntimeCall(Decls[i]);
Daniel Dunbarfe06df42010-03-20 04:15:41 +0000717
Adrian Prantl0ce2b872014-04-11 23:45:01 +0000718 Scope.ForceCleanup();
Richard Smith2fd1d7a2013-04-19 16:42:07 +0000719
Adrian Prantl0ce2b872014-04-11 23:45:01 +0000720 if (ExitBlock) {
721 Builder.CreateBr(ExitBlock);
722 EmitBlock(ExitBlock);
723 }
Richard Smith2fd1d7a2013-04-19 16:42:07 +0000724 }
725
Daniel Dunbarfe06df42010-03-20 04:15:41 +0000726 FinishFunction();
727}
728
Sanjoy Dase369bd92017-05-01 17:08:00 +0000729void CodeGenFunction::GenerateCXXGlobalDtorsFunc(
730 llvm::Function *Fn,
James Y Knightf7321542019-02-07 01:14:17 +0000731 const std::vector<std::tuple<llvm::FunctionType *, llvm::WeakTrackingVH,
732 llvm::Constant *>> &DtorsAndObjects) {
Adrian Prantl0ce2b872014-04-11 23:45:01 +0000733 {
Adrian Prantl95b24e92015-02-03 20:00:54 +0000734 auto NL = ApplyDebugLocation::CreateEmpty(*this);
Adrian Prantl0ce2b872014-04-11 23:45:01 +0000735 StartFunction(GlobalDecl(), getContext().VoidTy, Fn,
736 getTypes().arrangeNullaryFunction(), FunctionArgList());
737 // Emit an artificial location for this function.
Adrian Prantl95b24e92015-02-03 20:00:54 +0000738 auto AL = ApplyDebugLocation::CreateArtificial(*this);
Daniel Dunbarfe06df42010-03-20 04:15:41 +0000739
Adrian Prantl0ce2b872014-04-11 23:45:01 +0000740 // Emit the dtors, in reverse order from construction.
741 for (unsigned i = 0, e = DtorsAndObjects.size(); i != e; ++i) {
James Y Knightf7321542019-02-07 01:14:17 +0000742 llvm::FunctionType *CalleeTy;
743 llvm::Value *Callee;
744 llvm::Constant *Arg;
745 std::tie(CalleeTy, Callee, Arg) = DtorsAndObjects[e - i - 1];
746 llvm::CallInst *CI = Builder.CreateCall(CalleeTy, Callee, Arg);
Adrian Prantl0ce2b872014-04-11 23:45:01 +0000747 // Make sure the call and the callee agree on calling convention.
748 if (llvm::Function *F = dyn_cast<llvm::Function>(Callee))
749 CI->setCallingConv(F->getCallingConv());
750 }
Chris Lattner5e8416a2010-04-26 20:35:54 +0000751 }
Daniel Dunbarfe06df42010-03-20 04:15:41 +0000752
753 FinishFunction();
Anders Carlsson633c6f62009-12-10 00:30:05 +0000754}
755
John McCall98de3d72011-07-13 03:01:35 +0000756/// generateDestroyHelper - Generates a helper function which, when
John McCall7f416cc2015-09-08 08:05:57 +0000757/// invoked, destroys the given object. The address of the object
758/// should be in global memory.
David Blaikieebe87e12013-08-27 23:57:18 +0000759llvm::Function *CodeGenFunction::generateDestroyHelper(
John McCall7f416cc2015-09-08 08:05:57 +0000760 Address addr, QualType type, Destroyer *destroyer,
David Blaikieebe87e12013-08-27 23:57:18 +0000761 bool useEHCleanupForArray, const VarDecl *VD) {
John McCalla738c252011-03-09 04:27:21 +0000762 FunctionArgList args;
Alexey Bataev56223232017-06-09 13:40:18 +0000763 ImplicitParamDecl Dst(getContext(), getContext().VoidPtrTy,
764 ImplicitParamDecl::Other);
765 args.push_back(&Dst);
Reid Kleckner4982b822014-01-31 22:54:50 +0000766
John McCallc56a8b32016-03-11 04:30:31 +0000767 const CGFunctionInfo &FI =
768 CGM.getTypes().arrangeBuiltinFunctionDeclaration(getContext().VoidTy, args);
John McCalla729c622012-02-17 03:33:10 +0000769 llvm::FunctionType *FTy = CGM.getTypes().GetFunctionType(FI);
Alexey Samsonov1444bb92014-10-17 00:20:19 +0000770 llvm::Function *fn = CGM.CreateGlobalInitOrDestructFunction(
Akira Hatanaka7791f1a42015-10-31 01:28:07 +0000771 FTy, "__cxx_global_array_dtor", FI, VD->getLocation());
Anders Carlsson282bc102010-06-08 22:17:27 +0000772
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000773 CurEHLocation = VD->getBeginLoc();
David Blaikie47d28e02015-01-14 07:10:46 +0000774
Alexandre Ganeacaf31662019-11-15 16:21:17 -0500775 StartFunction(VD, getContext().VoidTy, fn, FI, args);
Anders Carlsson282bc102010-06-08 22:17:27 +0000776
John McCall98de3d72011-07-13 03:01:35 +0000777 emitDestroy(addr, type, destroyer, useEHCleanupForArray);
Fangrui Song6907ce22018-07-30 19:24:48 +0000778
Anders Carlsson282bc102010-06-08 22:17:27 +0000779 FinishFunction();
Fangrui Song6907ce22018-07-30 19:24:48 +0000780
John McCall98de3d72011-07-13 03:01:35 +0000781 return fn;
Anders Carlsson282bc102010-06-08 22:17:27 +0000782}