Anders Carlsson | bc49cfe | 2009-12-10 00:16:00 +0000 | [diff] [blame] | 1 | //===--- CGDeclCXX.cpp - Emit LLVM Code for C++ declarations --------------===// |
| 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 3 | // 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 Carlsson | bc49cfe | 2009-12-10 00:16:00 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | // |
| 9 | // This contains code dealing with code generation of C++ declarations |
| 10 | // |
| 11 | //===----------------------------------------------------------------------===// |
| 12 | |
| 13 | #include "CodeGenFunction.h" |
John McCall | 5d865c32 | 2010-08-31 07:33:07 +0000 | [diff] [blame] | 14 | #include "CGCXXABI.h" |
Chandler Carruth | 3a02247 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 15 | #include "CGObjCRuntime.h" |
Alexey Bataev | 9772000 | 2014-11-11 04:05:39 +0000 | [diff] [blame] | 16 | #include "CGOpenMPRuntime.h" |
Anastasia Stulova | 960ff08 | 2019-07-15 11:58:10 +0000 | [diff] [blame] | 17 | #include "TargetInfo.h" |
Richard Trieu | 6368818 | 2018-12-11 03:18:39 +0000 | [diff] [blame] | 18 | #include "clang/Basic/CodeGenOptions.h" |
Anton Korobeynikov | abed749 | 2012-11-06 22:44:45 +0000 | [diff] [blame] | 19 | #include "llvm/ADT/StringExtras.h" |
Chandler Carruth | ffd5551 | 2013-01-02 11:45:17 +0000 | [diff] [blame] | 20 | #include "llvm/IR/Intrinsics.h" |
Richard Smith | ae8d62c | 2017-07-26 22:01:09 +0000 | [diff] [blame] | 21 | #include "llvm/IR/MDBuilder.h" |
Nico Weber | bdc9698 | 2014-05-06 20:32:45 +0000 | [diff] [blame] | 22 | #include "llvm/Support/Path.h" |
Douglas Gregor | 51150ab | 2010-05-16 01:24:12 +0000 | [diff] [blame] | 23 | |
Anders Carlsson | bc49cfe | 2009-12-10 00:16:00 +0000 | [diff] [blame] | 24 | using namespace clang; |
| 25 | using namespace CodeGen; |
| 26 | |
Anders Carlsson | 364051c | 2009-12-10 00:57:45 +0000 | [diff] [blame] | 27 | static void EmitDeclInit(CodeGenFunction &CGF, const VarDecl &D, |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 28 | ConstantAddress DeclPtr) { |
Mikael Nilsson | 9d2872d | 2018-12-13 10:15:27 +0000 | [diff] [blame] | 29 | assert( |
| 30 | (D.hasGlobalStorage() || |
| 31 | (D.hasLocalStorage() && CGF.getContext().getLangOpts().OpenCLCPlusPlus)) && |
| 32 | "VarDecl must have global or local (in the case of OpenCL) storage!"); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 33 | assert(!D.getType()->isReferenceType() && |
Anders Carlsson | 364051c | 2009-12-10 00:57:45 +0000 | [diff] [blame] | 34 | "Should not call EmitDeclInit on a reference!"); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 35 | |
John McCall | 1553b19 | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 36 | QualType type = D.getType(); |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 37 | LValue lv = CGF.MakeAddrLValue(DeclPtr, type); |
John McCall | 1553b19 | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 38 | |
| 39 | const Expr *Init = D.getInit(); |
John McCall | 47fb950 | 2013-03-07 21:37:08 +0000 | [diff] [blame] | 40 | switch (CGF.getEvaluationKind(type)) { |
| 41 | case TEK_Scalar: { |
Fariborz Jahanian | d133979 | 2011-01-13 20:00:54 +0000 | [diff] [blame] | 42 | CodeGenModule &CGM = CGF.CGM; |
John McCall | 1553b19 | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 43 | if (lv.isObjCStrong()) |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 44 | CGM.getObjCRuntime().EmitObjCGlobalAssign(CGF, CGF.EmitScalarExpr(Init), |
Richard Smith | fd3834f | 2013-04-13 02:43:54 +0000 | [diff] [blame] | 45 | DeclPtr, D.getTLSKind()); |
John McCall | 1553b19 | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 46 | else if (lv.isObjCWeak()) |
| 47 | CGM.getObjCRuntime().EmitObjCWeakAssign(CGF, CGF.EmitScalarExpr(Init), |
| 48 | DeclPtr); |
Fariborz Jahanian | d133979 | 2011-01-13 20:00:54 +0000 | [diff] [blame] | 49 | else |
John McCall | 1553b19 | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 50 | CGF.EmitScalarInit(Init, &D, lv, false); |
John McCall | 47fb950 | 2013-03-07 21:37:08 +0000 | [diff] [blame] | 51 | return; |
| 52 | } |
| 53 | case TEK_Complex: |
| 54 | CGF.EmitComplexExprIntoLValue(Init, lv, /*isInit*/ true); |
| 55 | return; |
| 56 | case TEK_Aggregate: |
Chad Rosier | 615ed1a | 2012-03-29 17:37:10 +0000 | [diff] [blame] | 57 | CGF.EmitAggExpr(Init, AggValueSlot::forLValue(lv,AggValueSlot::IsDestructed, |
| 58 | AggValueSlot::DoesNotNeedGCBarriers, |
Richard Smith | e78fac5 | 2018-04-05 20:52:58 +0000 | [diff] [blame] | 59 | AggValueSlot::IsNotAliased, |
| 60 | AggValueSlot::DoesNotOverlap)); |
John McCall | 47fb950 | 2013-03-07 21:37:08 +0000 | [diff] [blame] | 61 | return; |
Anders Carlsson | bc49cfe | 2009-12-10 00:16:00 +0000 | [diff] [blame] | 62 | } |
John McCall | 47fb950 | 2013-03-07 21:37:08 +0000 | [diff] [blame] | 63 | llvm_unreachable("bad evaluation kind"); |
Anders Carlsson | bc49cfe | 2009-12-10 00:16:00 +0000 | [diff] [blame] | 64 | } |
| 65 | |
John McCall | 68ff037 | 2010-09-08 01:44:27 +0000 | [diff] [blame] | 66 | /// Emit code to cause the destruction of the given variable with |
| 67 | /// static storage duration. |
Douglas Gregor | 370eadf | 2010-05-05 15:38:32 +0000 | [diff] [blame] | 68 | static void EmitDeclDestroy(CodeGenFunction &CGF, const VarDecl &D, |
Kristina Brooks | 825f9d3 | 2018-11-10 08:04:38 +0000 | [diff] [blame] | 69 | ConstantAddress Addr) { |
Kristina Brooks | 7349d90 | 2018-11-12 01:19:16 +0000 | [diff] [blame] | 70 | // Honor __attribute__((no_destroy)) and bail instead of attempting |
| 71 | // to emit a reference to a possibly nonexistent destructor, which |
| 72 | // in turn can cause a crash. This will result in a global constructor |
| 73 | // that isn't balanced out by a destructor call as intended by the |
| 74 | // attribute. This also checks for -fno-c++-static-destructors and |
| 75 | // bails even if the attribute is not present. |
| 76 | if (D.isNoDestroy(CGF.getContext())) |
| 77 | return; |
Gheorghe-Teodor Bercea | 0034e84 | 2019-06-20 18:04:47 +0000 | [diff] [blame] | 78 | |
Douglas Gregor | 370eadf | 2010-05-05 15:38:32 +0000 | [diff] [blame] | 79 | CodeGenModule &CGM = CGF.CGM; |
John McCall | 98de3d7 | 2011-07-13 03:01:35 +0000 | [diff] [blame] | 80 | |
| 81 | // FIXME: __attribute__((cleanup)) ? |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 82 | |
Kristina Brooks | 1333b57 | 2018-11-10 07:53:47 +0000 | [diff] [blame] | 83 | QualType Type = D.getType(); |
| 84 | QualType::DestructionKind DtorKind = Type.isDestructedType(); |
John McCall | 98de3d7 | 2011-07-13 03:01:35 +0000 | [diff] [blame] | 85 | |
Kristina Brooks | 1333b57 | 2018-11-10 07:53:47 +0000 | [diff] [blame] | 86 | switch (DtorKind) { |
John McCall | 98de3d7 | 2011-07-13 03:01:35 +0000 | [diff] [blame] | 87 | case QualType::DK_none: |
Douglas Gregor | 370eadf | 2010-05-05 15:38:32 +0000 | [diff] [blame] | 88 | return; |
John McCall | 98de3d7 | 2011-07-13 03:01:35 +0000 | [diff] [blame] | 89 | |
| 90 | case QualType::DK_cxx_destructor: |
| 91 | break; |
| 92 | |
| 93 | case QualType::DK_objc_strong_lifetime: |
| 94 | case QualType::DK_objc_weak_lifetime: |
Akira Hatanaka | 7275da0 | 2018-02-28 07:15:55 +0000 | [diff] [blame] | 95 | case QualType::DK_nontrivial_c_struct: |
John McCall | 98de3d7 | 2011-07-13 03:01:35 +0000 | [diff] [blame] | 96 | // We don't care about releasing objects during process teardown. |
Richard Smith | dbf74ba | 2013-04-14 23:01:42 +0000 | [diff] [blame] | 97 | assert(!D.getTLSKind() && "should have rejected this"); |
Douglas Gregor | 370eadf | 2010-05-05 15:38:32 +0000 | [diff] [blame] | 98 | return; |
John McCall | 98de3d7 | 2011-07-13 03:01:35 +0000 | [diff] [blame] | 99 | } |
| 100 | |
James Y Knight | f732154 | 2019-02-07 01:14:17 +0000 | [diff] [blame] | 101 | llvm::FunctionCallee Func; |
Kristina Brooks | 1333b57 | 2018-11-10 07:53:47 +0000 | [diff] [blame] | 102 | llvm::Constant *Argument; |
John McCall | 98de3d7 | 2011-07-13 03:01:35 +0000 | [diff] [blame] | 103 | |
Derek Schuff | 09b2492 | 2016-05-10 17:44:52 +0000 | [diff] [blame] | 104 | // Special-case non-array C++ destructors, if they have the right signature. |
| 105 | // Under some ABIs, destructors return this instead of void, and cannot be |
Kristina Brooks | 1333b57 | 2018-11-10 07:53:47 +0000 | [diff] [blame] | 106 | // passed directly to __cxa_atexit if the target does not allow this |
| 107 | // mismatch. |
| 108 | const CXXRecordDecl *Record = Type->getAsCXXRecordDecl(); |
Derek Schuff | 8179be4 | 2016-05-10 17:44:55 +0000 | [diff] [blame] | 109 | bool CanRegisterDestructor = |
| 110 | Record && (!CGM.getCXXABI().HasThisReturn( |
| 111 | GlobalDecl(Record->getDestructor(), Dtor_Complete)) || |
| 112 | CGM.getCXXABI().canCallMismatchedFunctionType()); |
Derek Schuff | 2136eed | 2016-05-10 17:44:50 +0000 | [diff] [blame] | 113 | // If __cxa_atexit is disabled via a flag, a different helper function is |
| 114 | // generated elsewhere which uses atexit instead, and it takes the destructor |
| 115 | // directly. |
| 116 | bool UsingExternalHelper = !CGM.getCodeGenOpts().CXAAtExit; |
Derek Schuff | 09b2492 | 2016-05-10 17:44:52 +0000 | [diff] [blame] | 117 | if (Record && (CanRegisterDestructor || UsingExternalHelper)) { |
Derek Schuff | 060fd22 | 2016-05-10 17:44:48 +0000 | [diff] [blame] | 118 | assert(!Record->hasTrivialDestructor()); |
Kristina Brooks | 1333b57 | 2018-11-10 07:53:47 +0000 | [diff] [blame] | 119 | CXXDestructorDecl *Dtor = Record->getDestructor(); |
John McCall | 98de3d7 | 2011-07-13 03:01:35 +0000 | [diff] [blame] | 120 | |
Peter Collingbourne | d1c5b28 | 2019-03-22 23:05:10 +0000 | [diff] [blame] | 121 | Func = CGM.getAddrAndTypeOfCXXStructor(GlobalDecl(Dtor, Dtor_Complete)); |
Anastasia Stulova | 960ff08 | 2019-07-15 11:58:10 +0000 | [diff] [blame] | 122 | if (CGF.getContext().getLangOpts().OpenCL) { |
| 123 | auto DestAS = |
| 124 | CGM.getTargetCodeGenInfo().getAddrSpaceOfCxaAtexitPtrParam(); |
| 125 | auto DestTy = CGF.getTypes().ConvertType(Type)->getPointerTo( |
| 126 | CGM.getContext().getTargetAddressSpace(DestAS)); |
| 127 | auto SrcAS = D.getType().getQualifiers().getAddressSpace(); |
| 128 | if (DestAS == SrcAS) |
| 129 | Argument = llvm::ConstantExpr::getBitCast(Addr.getPointer(), DestTy); |
| 130 | else |
| 131 | // FIXME: On addr space mismatch we are passing NULL. The generation |
| 132 | // of the global destructor function should be adjusted accordingly. |
| 133 | Argument = llvm::ConstantPointerNull::get(DestTy); |
| 134 | } else { |
| 135 | Argument = llvm::ConstantExpr::getBitCast( |
| 136 | Addr.getPointer(), CGF.getTypes().ConvertType(Type)->getPointerTo()); |
| 137 | } |
John McCall | 98de3d7 | 2011-07-13 03:01:35 +0000 | [diff] [blame] | 138 | // Otherwise, the standard logic requires a helper function. |
| 139 | } else { |
Kristina Brooks | 1333b57 | 2018-11-10 07:53:47 +0000 | [diff] [blame] | 140 | Func = CodeGenFunction(CGM) |
| 141 | .generateDestroyHelper(Addr, Type, CGF.getDestroyer(DtorKind), |
| 142 | CGF.needsEHCleanup(DtorKind), &D); |
| 143 | Argument = llvm::Constant::getNullValue(CGF.Int8PtrTy); |
John McCall | 98de3d7 | 2011-07-13 03:01:35 +0000 | [diff] [blame] | 144 | } |
| 145 | |
Kristina Brooks | 1333b57 | 2018-11-10 07:53:47 +0000 | [diff] [blame] | 146 | CGM.getCXXABI().registerGlobalDtor(CGF, D, Func, Argument); |
Douglas Gregor | 370eadf | 2010-05-05 15:38:32 +0000 | [diff] [blame] | 147 | } |
| 148 | |
Richard Smith | 08a5144 | 2012-02-17 07:31:37 +0000 | [diff] [blame] | 149 | /// Emit code to cause the variable at the given address to be considered as |
| 150 | /// constant from this point onwards. |
Nick Lewycky | 4506204 | 2012-02-21 00:26:58 +0000 | [diff] [blame] | 151 | static void EmitDeclInvariant(CodeGenFunction &CGF, const VarDecl &D, |
| 152 | llvm::Constant *Addr) { |
Richard Smith | 3ad0636 | 2018-10-31 20:39:26 +0000 | [diff] [blame] | 153 | return CGF.EmitInvariantStart( |
| 154 | Addr, CGF.getContext().getTypeSizeInChars(D.getType())); |
| 155 | } |
| 156 | |
| 157 | void CodeGenFunction::EmitInvariantStart(llvm::Constant *Addr, CharUnits Size) { |
Anna Thomas | b772151 | 2016-07-22 15:37:56 +0000 | [diff] [blame] | 158 | // Do not emit the intrinsic if we're not optimizing. |
Richard Smith | 3ad0636 | 2018-10-31 20:39:26 +0000 | [diff] [blame] | 159 | if (!CGM.getCodeGenOpts().OptimizationLevel) |
Richard Smith | 132bea9 | 2012-02-17 20:12:52 +0000 | [diff] [blame] | 160 | return; |
| 161 | |
Richard Smith | 08a5144 | 2012-02-17 07:31:37 +0000 | [diff] [blame] | 162 | // Grab the llvm.invariant.start intrinsic. |
| 163 | llvm::Intrinsic::ID InvStartID = llvm::Intrinsic::invariant_start; |
Anna Thomas | 142ea99 | 2016-07-22 17:50:08 +0000 | [diff] [blame] | 164 | // Overloaded address space type. |
Richard Smith | 3ad0636 | 2018-10-31 20:39:26 +0000 | [diff] [blame] | 165 | llvm::Type *ObjectPtr[1] = {Int8PtrTy}; |
James Y Knight | 8799cae | 2019-02-03 21:53:49 +0000 | [diff] [blame] | 166 | llvm::Function *InvariantStart = CGM.getIntrinsic(InvStartID, ObjectPtr); |
Richard Smith | 08a5144 | 2012-02-17 07:31:37 +0000 | [diff] [blame] | 167 | |
Nick Lewycky | 4506204 | 2012-02-21 00:26:58 +0000 | [diff] [blame] | 168 | // Emit a call with the size in bytes of the object. |
Richard Smith | 3ad0636 | 2018-10-31 20:39:26 +0000 | [diff] [blame] | 169 | uint64_t Width = Size.getQuantity(); |
| 170 | llvm::Value *Args[2] = { llvm::ConstantInt::getSigned(Int64Ty, Width), |
| 171 | llvm::ConstantExpr::getBitCast(Addr, Int8PtrTy)}; |
| 172 | Builder.CreateCall(InvariantStart, Args); |
Richard Smith | 08a5144 | 2012-02-17 07:31:37 +0000 | [diff] [blame] | 173 | } |
| 174 | |
Anders Carlsson | 364051c | 2009-12-10 00:57:45 +0000 | [diff] [blame] | 175 | void CodeGenFunction::EmitCXXGlobalVarDeclInit(const VarDecl &D, |
Richard Smith | 6331c40 | 2012-02-13 22:16:19 +0000 | [diff] [blame] | 176 | llvm::Constant *DeclPtr, |
| 177 | bool PerformInit) { |
Anders Carlsson | 364051c | 2009-12-10 00:57:45 +0000 | [diff] [blame] | 178 | |
| 179 | const Expr *Init = D.getInit(); |
| 180 | QualType T = D.getType(); |
| 181 | |
Jingyue Wu | 4f7b9eb | 2015-03-25 20:06:28 +0000 | [diff] [blame] | 182 | // The address space of a static local variable (DeclPtr) may be different |
| 183 | // from the address space of the "this" argument of the constructor. In that |
| 184 | // case, we need an addrspacecast before calling the constructor. |
| 185 | // |
| 186 | // struct StructWithCtor { |
| 187 | // __device__ StructWithCtor() {...} |
| 188 | // }; |
| 189 | // __device__ void foo() { |
| 190 | // __shared__ StructWithCtor s; |
| 191 | // ... |
| 192 | // } |
| 193 | // |
| 194 | // For example, in the above CUDA code, the static local variable s has a |
| 195 | // "shared" address space qualifier, but the constructor of StructWithCtor |
| 196 | // expects "this" in the "generic" address space. |
| 197 | unsigned ExpectedAddrSpace = getContext().getTargetAddressSpace(T); |
| 198 | unsigned ActualAddrSpace = DeclPtr->getType()->getPointerAddressSpace(); |
| 199 | if (ActualAddrSpace != ExpectedAddrSpace) { |
| 200 | llvm::Type *LTy = CGM.getTypes().ConvertTypeForMem(T); |
| 201 | llvm::PointerType *PTy = llvm::PointerType::get(LTy, ExpectedAddrSpace); |
| 202 | DeclPtr = llvm::ConstantExpr::getAddrSpaceCast(DeclPtr, PTy); |
| 203 | } |
| 204 | |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 205 | ConstantAddress DeclAddr(DeclPtr, getContext().getDeclAlign(&D)); |
| 206 | |
Anders Carlsson | 364051c | 2009-12-10 00:57:45 +0000 | [diff] [blame] | 207 | if (!T->isReferenceType()) { |
Alexey Bataev | a8a9153a | 2017-12-29 18:07:07 +0000 | [diff] [blame] | 208 | if (getLangOpts().OpenMP && !getLangOpts().OpenMPSimd && |
| 209 | D.hasAttr<OMPThreadPrivateDeclAttr>()) { |
Alexey Bataev | 3eff5f4 | 2015-02-25 08:32:46 +0000 | [diff] [blame] | 210 | (void)CGM.getOpenMPRuntime().emitThreadPrivateVarDefinition( |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 211 | &D, DeclAddr, D.getAttr<OMPThreadPrivateDeclAttr>()->getLocation(), |
Alexey Bataev | 9772000 | 2014-11-11 04:05:39 +0000 | [diff] [blame] | 212 | PerformInit, this); |
Alexey Bataev | a8a9153a | 2017-12-29 18:07:07 +0000 | [diff] [blame] | 213 | } |
Richard Smith | 6331c40 | 2012-02-13 22:16:19 +0000 | [diff] [blame] | 214 | if (PerformInit) |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 215 | EmitDeclInit(*this, D, DeclAddr); |
Richard Smith | 08a5144 | 2012-02-17 07:31:37 +0000 | [diff] [blame] | 216 | if (CGM.isTypeConstant(D.getType(), true)) |
Nick Lewycky | 4506204 | 2012-02-21 00:26:58 +0000 | [diff] [blame] | 217 | EmitDeclInvariant(*this, D, DeclPtr); |
Richard Smith | 08a5144 | 2012-02-17 07:31:37 +0000 | [diff] [blame] | 218 | else |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 219 | EmitDeclDestroy(*this, D, DeclAddr); |
Anders Carlsson | 364051c | 2009-12-10 00:57:45 +0000 | [diff] [blame] | 220 | return; |
| 221 | } |
Anders Carlsson | 3f48c60 | 2010-06-27 17:52:15 +0000 | [diff] [blame] | 222 | |
Richard Smith | 6331c40 | 2012-02-13 22:16:19 +0000 | [diff] [blame] | 223 | assert(PerformInit && "cannot have constant initializer which needs " |
| 224 | "destruction for reference"); |
Richard Smith | a1c9d4d | 2013-06-12 23:38:09 +0000 | [diff] [blame] | 225 | RValue RV = EmitReferenceBindingToExpr(Init); |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 226 | EmitStoreOfScalar(RV.getScalarVal(), DeclAddr, false, T); |
Anders Carlsson | 364051c | 2009-12-10 00:57:45 +0000 | [diff] [blame] | 227 | } |
Anders Carlsson | 633c6f6 | 2009-12-10 00:30:05 +0000 | [diff] [blame] | 228 | |
John McCall | 76cc43a | 2012-04-06 18:21:06 +0000 | [diff] [blame] | 229 | /// Create a stub function, suitable for being passed to atexit, |
| 230 | /// which passes the given address to the given destructor function. |
James Y Knight | f732154 | 2019-02-07 01:14:17 +0000 | [diff] [blame] | 231 | llvm::Function *CodeGenFunction::createAtExitStub(const VarDecl &VD, |
| 232 | llvm::FunctionCallee dtor, |
David Majnemer | b3341ea | 2014-10-05 05:05:40 +0000 | [diff] [blame] | 233 | llvm::Constant *addr) { |
John McCall | 76cc43a | 2012-04-06 18:21:06 +0000 | [diff] [blame] | 234 | // Get the destructor function type, void(*)(void). |
| 235 | llvm::FunctionType *ty = llvm::FunctionType::get(CGM.VoidTy, false); |
Reid Kleckner | d8110b6 | 2013-09-10 20:14:30 +0000 | [diff] [blame] | 236 | SmallString<256> FnName; |
| 237 | { |
| 238 | llvm::raw_svector_ostream Out(FnName); |
| 239 | CGM.getCXXABI().getMangleContext().mangleDynamicAtExitDestructor(&VD, Out); |
| 240 | } |
Akira Hatanaka | 7791f1a4 | 2015-10-31 01:28:07 +0000 | [diff] [blame] | 241 | |
| 242 | const CGFunctionInfo &FI = CGM.getTypes().arrangeNullaryFunction(); |
Reid Kleckner | 105c565 | 2019-04-24 22:45:44 +0000 | [diff] [blame] | 243 | llvm::Function *fn = CGM.CreateGlobalInitOrDestructFunction( |
| 244 | ty, FnName.str(), FI, VD.getLocation()); |
John McCall | 76cc43a | 2012-04-06 18:21:06 +0000 | [diff] [blame] | 245 | |
| 246 | CodeGenFunction CGF(CGM); |
| 247 | |
Reid Kleckner | 105c565 | 2019-04-24 22:45:44 +0000 | [diff] [blame] | 248 | CGF.StartFunction(GlobalDecl(&VD, DynamicInitKind::AtExit), |
| 249 | CGM.getContext().VoidTy, fn, FI, FunctionArgList()); |
John McCall | 76cc43a | 2012-04-06 18:21:06 +0000 | [diff] [blame] | 250 | |
| 251 | llvm::CallInst *call = CGF.Builder.CreateCall(dtor, addr); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 252 | |
John McCall | 76cc43a | 2012-04-06 18:21:06 +0000 | [diff] [blame] | 253 | // Make sure the call and the callee agree on calling convention. |
| 254 | if (llvm::Function *dtorFn = |
James Y Knight | f732154 | 2019-02-07 01:14:17 +0000 | [diff] [blame] | 255 | dyn_cast<llvm::Function>(dtor.getCallee()->stripPointerCasts())) |
John McCall | 76cc43a | 2012-04-06 18:21:06 +0000 | [diff] [blame] | 256 | call->setCallingConv(dtorFn->getCallingConv()); |
| 257 | |
| 258 | CGF.FinishFunction(); |
| 259 | |
| 260 | return fn; |
| 261 | } |
| 262 | |
John McCall | c84ed6a | 2012-05-01 06:13:13 +0000 | [diff] [blame] | 263 | /// Register a global destructor using the C atexit runtime function. |
David Blaikie | ebe87e1 | 2013-08-27 23:57:18 +0000 | [diff] [blame] | 264 | void CodeGenFunction::registerGlobalDtorWithAtExit(const VarDecl &VD, |
James Y Knight | f732154 | 2019-02-07 01:14:17 +0000 | [diff] [blame] | 265 | llvm::FunctionCallee dtor, |
John McCall | c84ed6a | 2012-05-01 06:13:13 +0000 | [diff] [blame] | 266 | llvm::Constant *addr) { |
John McCall | 76cc43a | 2012-04-06 18:21:06 +0000 | [diff] [blame] | 267 | // Create a function which calls the destructor. |
David Majnemer | b3341ea | 2014-10-05 05:05:40 +0000 | [diff] [blame] | 268 | llvm::Constant *dtorStub = createAtExitStub(VD, dtor, addr); |
Akira Hatanaka | 617e261 | 2018-04-17 18:41:52 +0000 | [diff] [blame] | 269 | registerGlobalDtorWithAtExit(dtorStub); |
| 270 | } |
John McCall | 76cc43a | 2012-04-06 18:21:06 +0000 | [diff] [blame] | 271 | |
Akira Hatanaka | 617e261 | 2018-04-17 18:41:52 +0000 | [diff] [blame] | 272 | void CodeGenFunction::registerGlobalDtorWithAtExit(llvm::Constant *dtorStub) { |
John McCall | 76cc43a | 2012-04-06 18:21:06 +0000 | [diff] [blame] | 273 | // extern "C" int atexit(void (*f)(void)); |
| 274 | llvm::FunctionType *atexitTy = |
John McCall | c84ed6a | 2012-05-01 06:13:13 +0000 | [diff] [blame] | 275 | llvm::FunctionType::get(IntTy, dtorStub->getType(), false); |
John McCall | 76cc43a | 2012-04-06 18:21:06 +0000 | [diff] [blame] | 276 | |
James Y Knight | 9871db0 | 2019-02-05 16:42:33 +0000 | [diff] [blame] | 277 | llvm::FunctionCallee atexit = |
Reid Kleckner | de86482 | 2017-03-21 16:57:30 +0000 | [diff] [blame] | 278 | CGM.CreateRuntimeFunction(atexitTy, "atexit", llvm::AttributeList(), |
Saleem Abdulrasool | 6cb0744 | 2016-12-15 06:59:05 +0000 | [diff] [blame] | 279 | /*Local=*/true); |
James Y Knight | 9871db0 | 2019-02-05 16:42:33 +0000 | [diff] [blame] | 280 | if (llvm::Function *atexitFn = dyn_cast<llvm::Function>(atexit.getCallee())) |
John McCall | 76cc43a | 2012-04-06 18:21:06 +0000 | [diff] [blame] | 281 | atexitFn->setDoesNotThrow(); |
| 282 | |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 283 | EmitNounwindRuntimeCall(atexit, dtorStub); |
Anders Carlsson | 633c6f6 | 2009-12-10 00:30:05 +0000 | [diff] [blame] | 284 | } |
| 285 | |
John McCall | cdf7ef5 | 2010-11-06 09:44:32 +0000 | [diff] [blame] | 286 | void CodeGenFunction::EmitCXXGuardedInit(const VarDecl &D, |
Chandler Carruth | 8453795 | 2012-03-30 19:44:53 +0000 | [diff] [blame] | 287 | llvm::GlobalVariable *DeclPtr, |
Richard Smith | 6331c40 | 2012-02-13 22:16:19 +0000 | [diff] [blame] | 288 | bool PerformInit) { |
John McCall | 7ef5cb3 | 2011-03-18 02:56:14 +0000 | [diff] [blame] | 289 | // If we've been asked to forbid guard variables, emit an error now. |
| 290 | // This diagnostic is hard-coded for Darwin's use case; we can find |
| 291 | // better phrasing if someone else needs it. |
| 292 | if (CGM.getCodeGenOpts().ForbidGuardVariables) |
| 293 | CGM.Error(D.getLocation(), |
| 294 | "this initialization requires a guard variable, which " |
| 295 | "the kernel does not support"); |
| 296 | |
Chandler Carruth | 8453795 | 2012-03-30 19:44:53 +0000 | [diff] [blame] | 297 | CGM.getCXXABI().EmitGuardedInit(*this, D, DeclPtr, PerformInit); |
John McCall | 68ff037 | 2010-09-08 01:44:27 +0000 | [diff] [blame] | 298 | } |
| 299 | |
Richard Smith | ae8d62c | 2017-07-26 22:01:09 +0000 | [diff] [blame] | 300 | void CodeGenFunction::EmitCXXGuardedInitBranch(llvm::Value *NeedsInit, |
| 301 | llvm::BasicBlock *InitBlock, |
| 302 | llvm::BasicBlock *NoInitBlock, |
| 303 | GuardKind Kind, |
| 304 | const VarDecl *D) { |
| 305 | assert((Kind == GuardKind::TlsGuard || D) && "no guarded variable"); |
| 306 | |
| 307 | // A guess at how many times we will enter the initialization of a |
| 308 | // variable, depending on the kind of variable. |
| 309 | static const uint64_t InitsPerTLSVar = 1024; |
| 310 | static const uint64_t InitsPerLocalVar = 1024 * 1024; |
| 311 | |
| 312 | llvm::MDNode *Weights; |
| 313 | if (Kind == GuardKind::VariableGuard && !D->isLocalVarDecl()) { |
| 314 | // For non-local variables, don't apply any weighting for now. Due to our |
| 315 | // use of COMDATs, we expect there to be at most one initialization of the |
| 316 | // variable per DSO, but we have no way to know how many DSOs will try to |
| 317 | // initialize the variable. |
| 318 | Weights = nullptr; |
| 319 | } else { |
| 320 | uint64_t NumInits; |
| 321 | // FIXME: For the TLS case, collect and use profiling information to |
| 322 | // determine a more accurate brach weight. |
| 323 | if (Kind == GuardKind::TlsGuard || D->getTLSKind()) |
| 324 | NumInits = InitsPerTLSVar; |
| 325 | else |
| 326 | NumInits = InitsPerLocalVar; |
| 327 | |
| 328 | // The probability of us entering the initializer is |
| 329 | // 1 / (total number of times we attempt to initialize the variable). |
| 330 | llvm::MDBuilder MDHelper(CGM.getLLVMContext()); |
| 331 | Weights = MDHelper.createBranchWeights(1, NumInits - 1); |
| 332 | } |
| 333 | |
| 334 | Builder.CreateCondBr(NeedsInit, InitBlock, NoInitBlock, Weights); |
| 335 | } |
| 336 | |
Alexey Samsonov | 1444bb9 | 2014-10-17 00:20:19 +0000 | [diff] [blame] | 337 | llvm::Function *CodeGenModule::CreateGlobalInitOrDestructFunction( |
Akira Hatanaka | 7791f1a4 | 2015-10-31 01:28:07 +0000 | [diff] [blame] | 338 | llvm::FunctionType *FTy, const Twine &Name, const CGFunctionInfo &FI, |
| 339 | SourceLocation Loc, bool TLS) { |
Anders Carlsson | b2839e4 | 2010-06-08 22:40:05 +0000 | [diff] [blame] | 340 | llvm::Function *Fn = |
| 341 | llvm::Function::Create(FTy, llvm::GlobalValue::InternalLinkage, |
David Majnemer | b3341ea | 2014-10-05 05:05:40 +0000 | [diff] [blame] | 342 | Name, &getModule()); |
| 343 | if (!getLangOpts().AppleKext && !TLS) { |
Fariborz Jahanian | 09948f1 | 2011-02-15 18:54:46 +0000 | [diff] [blame] | 344 | // Set the section if needed. |
David Majnemer | b3341ea | 2014-10-05 05:05:40 +0000 | [diff] [blame] | 345 | if (const char *Section = getTarget().getStaticInitSectionSpecifier()) |
Fariborz Jahanian | 09948f1 | 2011-02-15 18:54:46 +0000 | [diff] [blame] | 346 | Fn->setSection(Section); |
| 347 | } |
Anders Carlsson | 851318a | 2010-06-08 22:47:50 +0000 | [diff] [blame] | 348 | |
Rafael Espindola | 51ec5a9 | 2018-02-28 23:46:35 +0000 | [diff] [blame] | 349 | SetInternalFunctionAttributes(GlobalDecl(), Fn, FI); |
Reid Kleckner | 787dc43 | 2015-04-22 19:37:32 +0000 | [diff] [blame] | 350 | |
David Majnemer | b3341ea | 2014-10-05 05:05:40 +0000 | [diff] [blame] | 351 | Fn->setCallingConv(getRuntimeCC()); |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 352 | |
David Majnemer | b3341ea | 2014-10-05 05:05:40 +0000 | [diff] [blame] | 353 | if (!getLangOpts().Exceptions) |
John McCall | 466e221 | 2010-07-06 04:38:10 +0000 | [diff] [blame] | 354 | Fn->setDoesNotThrow(); |
| 355 | |
Vlad Tsyrklevich | 2eccdab | 2017-09-25 22:11:12 +0000 | [diff] [blame] | 356 | if (getLangOpts().Sanitize.has(SanitizerKind::Address) && |
| 357 | !isInSanitizerBlacklist(SanitizerKind::Address, Fn, Loc)) |
| 358 | Fn->addFnAttr(llvm::Attribute::SanitizeAddress); |
| 359 | |
| 360 | if (getLangOpts().Sanitize.has(SanitizerKind::KernelAddress) && |
| 361 | !isInSanitizerBlacklist(SanitizerKind::KernelAddress, Fn, Loc)) |
| 362 | Fn->addFnAttr(llvm::Attribute::SanitizeAddress); |
| 363 | |
Evgeniy Stepanov | 12817e5 | 2017-12-09 01:32:07 +0000 | [diff] [blame] | 364 | if (getLangOpts().Sanitize.has(SanitizerKind::HWAddress) && |
| 365 | !isInSanitizerBlacklist(SanitizerKind::HWAddress, Fn, Loc)) |
| 366 | Fn->addFnAttr(llvm::Attribute::SanitizeHWAddress); |
| 367 | |
Andrey Konovalov | 1ba9d9c | 2018-04-13 18:05:21 +0000 | [diff] [blame] | 368 | if (getLangOpts().Sanitize.has(SanitizerKind::KernelHWAddress) && |
| 369 | !isInSanitizerBlacklist(SanitizerKind::KernelHWAddress, Fn, Loc)) |
| 370 | Fn->addFnAttr(llvm::Attribute::SanitizeHWAddress); |
| 371 | |
Evgeniy Stepanov | c5e7f56 | 2019-07-15 20:02:23 +0000 | [diff] [blame] | 372 | if (getLangOpts().Sanitize.has(SanitizerKind::MemTag) && |
| 373 | !isInSanitizerBlacklist(SanitizerKind::MemTag, Fn, Loc)) |
| 374 | Fn->addFnAttr(llvm::Attribute::SanitizeMemTag); |
| 375 | |
Vlad Tsyrklevich | 2eccdab | 2017-09-25 22:11:12 +0000 | [diff] [blame] | 376 | if (getLangOpts().Sanitize.has(SanitizerKind::Thread) && |
| 377 | !isInSanitizerBlacklist(SanitizerKind::Thread, Fn, Loc)) |
| 378 | Fn->addFnAttr(llvm::Attribute::SanitizeThread); |
| 379 | |
| 380 | if (getLangOpts().Sanitize.has(SanitizerKind::Memory) && |
| 381 | !isInSanitizerBlacklist(SanitizerKind::Memory, Fn, Loc)) |
| 382 | Fn->addFnAttr(llvm::Attribute::SanitizeMemory); |
| 383 | |
Alexander Potapenko | d49c32c | 2018-09-07 09:21:09 +0000 | [diff] [blame] | 384 | if (getLangOpts().Sanitize.has(SanitizerKind::KernelMemory) && |
| 385 | !isInSanitizerBlacklist(SanitizerKind::KernelMemory, Fn, Loc)) |
| 386 | Fn->addFnAttr(llvm::Attribute::SanitizeMemory); |
| 387 | |
Vlad Tsyrklevich | 2eccdab | 2017-09-25 22:11:12 +0000 | [diff] [blame] | 388 | if (getLangOpts().Sanitize.has(SanitizerKind::SafeStack) && |
| 389 | !isInSanitizerBlacklist(SanitizerKind::SafeStack, Fn, Loc)) |
| 390 | Fn->addFnAttr(llvm::Attribute::SafeStack); |
Kostya Serebryany | bf84b8f | 2012-06-26 08:56:33 +0000 | [diff] [blame] | 391 | |
Vlad Tsyrklevich | e55aa03 | 2018-04-03 22:33:53 +0000 | [diff] [blame] | 392 | if (getLangOpts().Sanitize.has(SanitizerKind::ShadowCallStack) && |
| 393 | !isInSanitizerBlacklist(SanitizerKind::ShadowCallStack, Fn, Loc)) |
| 394 | Fn->addFnAttr(llvm::Attribute::ShadowCallStack); |
| 395 | |
Oliver Stannard | 95ac65b | 2018-09-13 10:25:36 +0000 | [diff] [blame] | 396 | auto RASignKind = getCodeGenOpts().getSignReturnAddress(); |
Luke Cheeseman | a8a24aa | 2018-10-25 15:23:49 +0000 | [diff] [blame] | 397 | if (RASignKind != CodeGenOptions::SignReturnAddressScope::None) { |
Oliver Stannard | 95ac65b | 2018-09-13 10:25:36 +0000 | [diff] [blame] | 398 | Fn->addFnAttr("sign-return-address", |
| 399 | RASignKind == CodeGenOptions::SignReturnAddressScope::All |
| 400 | ? "all" |
| 401 | : "non-leaf"); |
Luke Cheeseman | a8a24aa | 2018-10-25 15:23:49 +0000 | [diff] [blame] | 402 | auto RASignKey = getCodeGenOpts().getSignReturnAddressKey(); |
| 403 | Fn->addFnAttr("sign-return-address-key", |
| 404 | RASignKey == CodeGenOptions::SignReturnAddressKeyValue::AKey |
| 405 | ? "a_key" |
| 406 | : "b_key"); |
| 407 | } |
| 408 | |
| 409 | if (getCodeGenOpts().BranchTargetEnforcement) |
| 410 | Fn->addFnAttr("branch-target-enforcement"); |
| 411 | |
Anders Carlsson | b2839e4 | 2010-06-08 22:40:05 +0000 | [diff] [blame] | 412 | return Fn; |
| 413 | } |
| 414 | |
Reid Kleckner | 1a711b1 | 2014-07-22 00:53:05 +0000 | [diff] [blame] | 415 | /// Create a global pointer to a function that will initialize a global |
| 416 | /// variable. The user has requested that this pointer be emitted in a specific |
| 417 | /// section. |
| 418 | void CodeGenModule::EmitPointerToInitFunc(const VarDecl *D, |
| 419 | llvm::GlobalVariable *GV, |
| 420 | llvm::Function *InitFunc, |
| 421 | InitSegAttr *ISA) { |
| 422 | llvm::GlobalVariable *PtrArray = new llvm::GlobalVariable( |
| 423 | TheModule, InitFunc->getType(), /*isConstant=*/true, |
| 424 | llvm::GlobalValue::PrivateLinkage, InitFunc, "__cxx_init_fn_ptr"); |
| 425 | PtrArray->setSection(ISA->getSection()); |
| 426 | addUsedGlobal(PtrArray); |
| 427 | |
| 428 | // If the GV is already in a comdat group, then we have to join it. |
Rafael Espindola | 0d4fb98 | 2015-01-12 22:13:53 +0000 | [diff] [blame] | 429 | if (llvm::Comdat *C = GV->getComdat()) |
Reid Kleckner | 1a711b1 | 2014-07-22 00:53:05 +0000 | [diff] [blame] | 430 | PtrArray->setComdat(C); |
| 431 | } |
| 432 | |
Daniel Dunbar | fe06df4 | 2010-03-20 04:15:41 +0000 | [diff] [blame] | 433 | void |
John McCall | cdf7ef5 | 2010-11-06 09:44:32 +0000 | [diff] [blame] | 434 | CodeGenModule::EmitCXXGlobalVarDeclInitFunc(const VarDecl *D, |
Richard Smith | 6331c40 | 2012-02-13 22:16:19 +0000 | [diff] [blame] | 435 | llvm::GlobalVariable *Addr, |
| 436 | bool PerformInit) { |
Artem Belevich | 97c01c3 | 2016-02-02 22:29:48 +0000 | [diff] [blame] | 437 | |
| 438 | // According to E.2.3.1 in CUDA-7.5 Programming guide: __device__, |
| 439 | // __constant__ and __shared__ variables defined in namespace scope, |
| 440 | // that are of class type, cannot have a non-empty constructor. All |
| 441 | // the checks have been done in Sema by now. Whatever initializers |
| 442 | // are allowed are empty and we just need to ignore them here. |
| 443 | if (getLangOpts().CUDA && getLangOpts().CUDAIsDevice && |
| 444 | (D->hasAttr<CUDADeviceAttr>() || D->hasAttr<CUDAConstantAttr>() || |
| 445 | D->hasAttr<CUDASharedAttr>())) |
| 446 | return; |
| 447 | |
Alexey Bataev | 34f8a70 | 2018-03-28 14:28:54 +0000 | [diff] [blame] | 448 | if (getLangOpts().OpenMP && |
| 449 | getOpenMPRuntime().emitDeclareTargetVarDefinition(D, Addr, PerformInit)) |
| 450 | return; |
| 451 | |
Reid Kleckner | e07140e | 2015-04-15 01:08:06 +0000 | [diff] [blame] | 452 | // Check if we've already initialized this decl. |
| 453 | auto I = DelayedCXXInitPosition.find(D); |
| 454 | if (I != DelayedCXXInitPosition.end() && I->second == ~0U) |
| 455 | return; |
| 456 | |
Chris Lattner | ece0409 | 2012-02-07 00:39:47 +0000 | [diff] [blame] | 457 | llvm::FunctionType *FTy = llvm::FunctionType::get(VoidTy, false); |
Reid Kleckner | 1ece9fc | 2013-09-10 20:43:12 +0000 | [diff] [blame] | 458 | SmallString<256> FnName; |
| 459 | { |
| 460 | llvm::raw_svector_ostream Out(FnName); |
| 461 | getCXXABI().getMangleContext().mangleDynamicInitializer(D, Out); |
| 462 | } |
Eli Friedman | 5866fe3 | 2010-01-08 00:50:11 +0000 | [diff] [blame] | 463 | |
| 464 | // Create a variable initialization function. |
Alexey Samsonov | 1444bb9 | 2014-10-17 00:20:19 +0000 | [diff] [blame] | 465 | llvm::Function *Fn = |
Akira Hatanaka | 7791f1a4 | 2015-10-31 01:28:07 +0000 | [diff] [blame] | 466 | CreateGlobalInitOrDestructFunction(FTy, FnName.str(), |
| 467 | getTypes().arrangeNullaryFunction(), |
| 468 | D->getLocation()); |
Eli Friedman | 5866fe3 | 2010-01-08 00:50:11 +0000 | [diff] [blame] | 469 | |
Reid Kleckner | 1a711b1 | 2014-07-22 00:53:05 +0000 | [diff] [blame] | 470 | auto *ISA = D->getAttr<InitSegAttr>(); |
Richard Smith | 6331c40 | 2012-02-13 22:16:19 +0000 | [diff] [blame] | 471 | CodeGenFunction(*this).GenerateCXXGlobalVarDeclInitFunc(Fn, D, Addr, |
| 472 | PerformInit); |
Rafael Espindola | 9f83473 | 2014-09-19 01:54:22 +0000 | [diff] [blame] | 473 | |
Reid Kleckner | 72d03be | 2014-10-15 16:38:00 +0000 | [diff] [blame] | 474 | llvm::GlobalVariable *COMDATKey = |
| 475 | supportsCOMDAT() && D->isExternallyVisible() ? Addr : nullptr; |
Rafael Espindola | 9f83473 | 2014-09-19 01:54:22 +0000 | [diff] [blame] | 476 | |
Richard Smith | 2fd1d7a | 2013-04-19 16:42:07 +0000 | [diff] [blame] | 477 | if (D->getTLSKind()) { |
| 478 | // FIXME: Should we support init_priority for thread_local? |
Richard Smith | 2fd1d7a | 2013-04-19 16:42:07 +0000 | [diff] [blame] | 479 | // FIXME: We only need to register one __cxa_thread_atexit function for the |
| 480 | // entire TU. |
| 481 | CXXThreadLocalInits.push_back(Fn); |
Richard Smith | 5a99c49 | 2015-12-01 01:10:48 +0000 | [diff] [blame] | 482 | CXXThreadLocalInitVars.push_back(D); |
Reid Kleckner | 1a711b1 | 2014-07-22 00:53:05 +0000 | [diff] [blame] | 483 | } else if (PerformInit && ISA) { |
| 484 | EmitPointerToInitFunc(D, Addr, Fn, ISA); |
Reid Kleckner | 1a711b1 | 2014-07-22 00:53:05 +0000 | [diff] [blame] | 485 | } else if (auto *IPA = D->getAttr<InitPriorityAttr>()) { |
Aaron Ballman | e8d9f8d | 2013-12-19 03:02:49 +0000 | [diff] [blame] | 486 | OrderGlobalInits Key(IPA->getPriority(), PrioritizedCXXGlobalInits.size()); |
Fariborz Jahanian | 89bdd14 | 2010-06-21 21:27:42 +0000 | [diff] [blame] | 487 | PrioritizedCXXGlobalInits.push_back(std::make_pair(Key, Fn)); |
Jennifer Yu | c19f4f8 | 2019-04-25 17:45:45 +0000 | [diff] [blame] | 488 | } else if (isTemplateInstantiation(D->getTemplateSpecializationKind()) || |
| 489 | getContext().GetGVALinkageForVariable(D) == GVA_DiscardableODR) { |
Reid Kleckner | 3738445 | 2013-08-22 20:07:45 +0000 | [diff] [blame] | 490 | // C++ [basic.start.init]p2: |
Reid Kleckner | 2753324 | 2013-09-04 00:54:24 +0000 | [diff] [blame] | 491 | // Definitions of explicitly specialized class template static data |
| 492 | // members have ordered initialization. Other class template static data |
| 493 | // members (i.e., implicitly or explicitly instantiated specializations) |
| 494 | // have unordered initialization. |
Reid Kleckner | 3738445 | 2013-08-22 20:07:45 +0000 | [diff] [blame] | 495 | // |
| 496 | // As a consequence, we can put them into their own llvm.global_ctors entry. |
Reid Kleckner | 563f0e8 | 2014-05-23 21:13:45 +0000 | [diff] [blame] | 497 | // |
Reid Kleckner | 72d03be | 2014-10-15 16:38:00 +0000 | [diff] [blame] | 498 | // If the global is externally visible, put the initializer into a COMDAT |
| 499 | // group with the global being initialized. On most platforms, this is a |
| 500 | // minor startup time optimization. In the MS C++ ABI, there are no guard |
| 501 | // variables, so this COMDAT key is required for correctness. |
| 502 | AddGlobalCtor(Fn, 65535, COMDATKey); |
Jennifer Yu | c19f4f8 | 2019-04-25 17:45:45 +0000 | [diff] [blame] | 503 | if (getTarget().getCXXABI().isMicrosoft() && COMDATKey) { |
| 504 | // In The MS C++, MS add template static data member in the linker |
| 505 | // drective. |
| 506 | addUsedGlobal(COMDATKey); |
| 507 | } |
Hans Wennborg | 7b556ea | 2014-09-10 19:28:48 +0000 | [diff] [blame] | 508 | } else if (D->hasAttr<SelectAnyAttr>()) { |
Nico Weber | 0a02992 | 2015-01-12 21:24:10 +0000 | [diff] [blame] | 509 | // SelectAny globals will be comdat-folded. Put the initializer into a |
| 510 | // COMDAT group associated with the global, so the initializers get folded |
| 511 | // too. |
Reid Kleckner | 72d03be | 2014-10-15 16:38:00 +0000 | [diff] [blame] | 512 | AddGlobalCtor(Fn, 65535, COMDATKey); |
Richard Smith | 2fd1d7a | 2013-04-19 16:42:07 +0000 | [diff] [blame] | 513 | } else { |
Reid Kleckner | e07140e | 2015-04-15 01:08:06 +0000 | [diff] [blame] | 514 | I = DelayedCXXInitPosition.find(D); // Re-do lookup in case of re-hash. |
John McCall | 70013b6 | 2010-07-15 23:40:35 +0000 | [diff] [blame] | 515 | if (I == DelayedCXXInitPosition.end()) { |
| 516 | CXXGlobalInits.push_back(Fn); |
Reid Kleckner | e07140e | 2015-04-15 01:08:06 +0000 | [diff] [blame] | 517 | } else if (I->second != ~0U) { |
| 518 | assert(I->second < CXXGlobalInits.size() && |
| 519 | CXXGlobalInits[I->second] == nullptr); |
John McCall | 70013b6 | 2010-07-15 23:40:35 +0000 | [diff] [blame] | 520 | CXXGlobalInits[I->second] = Fn; |
John McCall | 70013b6 | 2010-07-15 23:40:35 +0000 | [diff] [blame] | 521 | } |
| 522 | } |
Reid Kleckner | e07140e | 2015-04-15 01:08:06 +0000 | [diff] [blame] | 523 | |
| 524 | // Remember that we already emitted the initializer for this global. |
| 525 | DelayedCXXInitPosition[D] = ~0U; |
Eli Friedman | 5866fe3 | 2010-01-08 00:50:11 +0000 | [diff] [blame] | 526 | } |
| 527 | |
Richard Smith | 2fd1d7a | 2013-04-19 16:42:07 +0000 | [diff] [blame] | 528 | void CodeGenModule::EmitCXXThreadLocalInitFunc() { |
David Majnemer | b3341ea | 2014-10-05 05:05:40 +0000 | [diff] [blame] | 529 | getCXXABI().EmitThreadLocalInitFuncs( |
| 530 | *this, CXXThreadLocals, CXXThreadLocalInits, CXXThreadLocalInitVars); |
Richard Smith | 2fd1d7a | 2013-04-19 16:42:07 +0000 | [diff] [blame] | 531 | |
| 532 | CXXThreadLocalInits.clear(); |
David Majnemer | b3341ea | 2014-10-05 05:05:40 +0000 | [diff] [blame] | 533 | CXXThreadLocalInitVars.clear(); |
Richard Smith | 2fd1d7a | 2013-04-19 16:42:07 +0000 | [diff] [blame] | 534 | CXXThreadLocals.clear(); |
| 535 | } |
| 536 | |
Daniel Dunbar | fe06df4 | 2010-03-20 04:15:41 +0000 | [diff] [blame] | 537 | void |
| 538 | CodeGenModule::EmitCXXGlobalInitFunc() { |
John McCall | 70013b6 | 2010-07-15 23:40:35 +0000 | [diff] [blame] | 539 | while (!CXXGlobalInits.empty() && !CXXGlobalInits.back()) |
| 540 | CXXGlobalInits.pop_back(); |
| 541 | |
Fariborz Jahanian | 9f2a4ee | 2010-06-21 18:45:05 +0000 | [diff] [blame] | 542 | if (CXXGlobalInits.empty() && PrioritizedCXXGlobalInits.empty()) |
Anders Carlsson | 633c6f6 | 2009-12-10 00:30:05 +0000 | [diff] [blame] | 543 | return; |
| 544 | |
Chris Lattner | ece0409 | 2012-02-07 00:39:47 +0000 | [diff] [blame] | 545 | llvm::FunctionType *FTy = llvm::FunctionType::get(VoidTy, false); |
Akira Hatanaka | 7791f1a4 | 2015-10-31 01:28:07 +0000 | [diff] [blame] | 546 | const CGFunctionInfo &FI = getTypes().arrangeNullaryFunction(); |
Anders Carlsson | 633c6f6 | 2009-12-10 00:30:05 +0000 | [diff] [blame] | 547 | |
Anton Korobeynikov | abed749 | 2012-11-06 22:44:45 +0000 | [diff] [blame] | 548 | // Create our global initialization function. |
Fariborz Jahanian | 9f2a4ee | 2010-06-21 18:45:05 +0000 | [diff] [blame] | 549 | if (!PrioritizedCXXGlobalInits.empty()) { |
David Majnemer | b3341ea | 2014-10-05 05:05:40 +0000 | [diff] [blame] | 550 | SmallVector<llvm::Function *, 8> LocalCXXGlobalInits; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 551 | llvm::array_pod_sort(PrioritizedCXXGlobalInits.begin(), |
Anton Korobeynikov | abed749 | 2012-11-06 22:44:45 +0000 | [diff] [blame] | 552 | PrioritizedCXXGlobalInits.end()); |
| 553 | // Iterate over "chunks" of ctors with same priority and emit each chunk |
| 554 | // into separate function. Note - everything is sorted first by priority, |
| 555 | // second - by lex order, so we emit ctor functions in proper order. |
| 556 | for (SmallVectorImpl<GlobalInitData >::iterator |
| 557 | I = PrioritizedCXXGlobalInits.begin(), |
| 558 | E = PrioritizedCXXGlobalInits.end(); I != E; ) { |
| 559 | SmallVectorImpl<GlobalInitData >::iterator |
| 560 | PrioE = std::upper_bound(I + 1, E, *I, GlobalInitPriorityCmp()); |
| 561 | |
| 562 | LocalCXXGlobalInits.clear(); |
| 563 | unsigned Priority = I->first.priority; |
| 564 | // Compute the function suffix from priority. Prepend with zeroes to make |
| 565 | // sure the function names are also ordered as priorities. |
| 566 | std::string PrioritySuffix = llvm::utostr(Priority); |
Nico Weber | bdc9698 | 2014-05-06 20:32:45 +0000 | [diff] [blame] | 567 | // Priority is always <= 65535 (enforced by sema). |
Anton Korobeynikov | abed749 | 2012-11-06 22:44:45 +0000 | [diff] [blame] | 568 | PrioritySuffix = std::string(6-PrioritySuffix.size(), '0')+PrioritySuffix; |
David Majnemer | b3341ea | 2014-10-05 05:05:40 +0000 | [diff] [blame] | 569 | llvm::Function *Fn = CreateGlobalInitOrDestructFunction( |
Akira Hatanaka | 7791f1a4 | 2015-10-31 01:28:07 +0000 | [diff] [blame] | 570 | FTy, "_GLOBAL__I_" + PrioritySuffix, FI); |
David Majnemer | b3341ea | 2014-10-05 05:05:40 +0000 | [diff] [blame] | 571 | |
Anton Korobeynikov | abed749 | 2012-11-06 22:44:45 +0000 | [diff] [blame] | 572 | for (; I < PrioE; ++I) |
| 573 | LocalCXXGlobalInits.push_back(I->second); |
| 574 | |
Benjamin Kramer | 139cfc2 | 2013-04-26 21:32:52 +0000 | [diff] [blame] | 575 | CodeGenFunction(*this).GenerateCXXGlobalInitFunc(Fn, LocalCXXGlobalInits); |
Anton Korobeynikov | abed749 | 2012-11-06 22:44:45 +0000 | [diff] [blame] | 576 | AddGlobalCtor(Fn, Priority); |
| 577 | } |
Yaron Keren | 35071ac | 2015-06-20 15:51:52 +0000 | [diff] [blame] | 578 | PrioritizedCXXGlobalInits.clear(); |
Fariborz Jahanian | 9f2a4ee | 2010-06-21 18:45:05 +0000 | [diff] [blame] | 579 | } |
Keno Fischer | 84778b2 | 2014-08-26 22:10:15 +0000 | [diff] [blame] | 580 | |
Vassil Vassilev | 3d05c56 | 2017-08-27 11:27:30 +0000 | [diff] [blame] | 581 | // Include the filename in the symbol name. Including "sub_" matches gcc and |
| 582 | // makes sure these symbols appear lexicographically behind the symbols with |
| 583 | // priority emitted above. |
| 584 | SmallString<128> FileName = llvm::sys::path::filename(getModule().getName()); |
| 585 | if (FileName.empty()) |
Yaron Keren | eac8a1e | 2015-05-12 12:47:05 +0000 | [diff] [blame] | 586 | FileName = "<null>"; |
Keno Fischer | 84778b2 | 2014-08-26 22:10:15 +0000 | [diff] [blame] | 587 | |
Nico Weber | bdc9698 | 2014-05-06 20:32:45 +0000 | [diff] [blame] | 588 | for (size_t i = 0; i < FileName.size(); ++i) { |
| 589 | // Replace everything that's not [a-zA-Z0-9._] with a _. This set happens |
| 590 | // to be the set of C preprocessing numbers. |
| 591 | if (!isPreprocessingNumberBody(FileName[i])) |
| 592 | FileName[i] = '_'; |
| 593 | } |
Keno Fischer | 84778b2 | 2014-08-26 22:10:15 +0000 | [diff] [blame] | 594 | |
Nico Weber | bdc9698 | 2014-05-06 20:32:45 +0000 | [diff] [blame] | 595 | llvm::Function *Fn = CreateGlobalInitOrDestructFunction( |
Akira Hatanaka | 7791f1a4 | 2015-10-31 01:28:07 +0000 | [diff] [blame] | 596 | FTy, llvm::Twine("_GLOBAL__sub_I_", FileName), FI); |
Anton Korobeynikov | abed749 | 2012-11-06 22:44:45 +0000 | [diff] [blame] | 597 | |
Benjamin Kramer | 139cfc2 | 2013-04-26 21:32:52 +0000 | [diff] [blame] | 598 | CodeGenFunction(*this).GenerateCXXGlobalInitFunc(Fn, CXXGlobalInits); |
Daniel Dunbar | fe06df4 | 2010-03-20 04:15:41 +0000 | [diff] [blame] | 599 | AddGlobalCtor(Fn); |
Anton Korobeynikov | abed749 | 2012-11-06 22:44:45 +0000 | [diff] [blame] | 600 | |
Anastasia Stulova | e6cf6c7 | 2019-05-09 13:55:44 +0000 | [diff] [blame] | 601 | // In OpenCL global init functions must be converted to kernels in order to |
| 602 | // be able to launch them from the host. |
| 603 | // FIXME: Some more work might be needed to handle destructors correctly. |
| 604 | // Current initialization function makes use of function pointers callbacks. |
| 605 | // We can't support function pointers especially between host and device. |
| 606 | // However it seems global destruction has little meaning without any |
| 607 | // dynamic resource allocation on the device and program scope variables are |
| 608 | // destroyed by the runtime when program is released. |
| 609 | if (getLangOpts().OpenCL) { |
| 610 | GenOpenCLArgMetadata(Fn); |
| 611 | Fn->setCallingConv(llvm::CallingConv::SPIR_KERNEL); |
| 612 | } |
| 613 | |
Axel Naumann | bd26a58 | 2011-05-06 15:24:04 +0000 | [diff] [blame] | 614 | CXXGlobalInits.clear(); |
Daniel Dunbar | fe06df4 | 2010-03-20 04:15:41 +0000 | [diff] [blame] | 615 | } |
| 616 | |
Daniel Dunbar | fe06df4 | 2010-03-20 04:15:41 +0000 | [diff] [blame] | 617 | void CodeGenModule::EmitCXXGlobalDtorFunc() { |
| 618 | if (CXXGlobalDtors.empty()) |
| 619 | return; |
| 620 | |
Chris Lattner | ece0409 | 2012-02-07 00:39:47 +0000 | [diff] [blame] | 621 | llvm::FunctionType *FTy = llvm::FunctionType::get(VoidTy, false); |
Daniel Dunbar | fe06df4 | 2010-03-20 04:15:41 +0000 | [diff] [blame] | 622 | |
| 623 | // Create our global destructor function. |
Akira Hatanaka | 7791f1a4 | 2015-10-31 01:28:07 +0000 | [diff] [blame] | 624 | const CGFunctionInfo &FI = getTypes().arrangeNullaryFunction(); |
| 625 | llvm::Function *Fn = |
| 626 | CreateGlobalInitOrDestructFunction(FTy, "_GLOBAL__D_a", FI); |
Daniel Dunbar | fe06df4 | 2010-03-20 04:15:41 +0000 | [diff] [blame] | 627 | |
John McCall | ee08c53 | 2012-04-06 18:21:03 +0000 | [diff] [blame] | 628 | CodeGenFunction(*this).GenerateCXXGlobalDtorsFunc(Fn, CXXGlobalDtors); |
Daniel Dunbar | fe06df4 | 2010-03-20 04:15:41 +0000 | [diff] [blame] | 629 | AddGlobalDtor(Fn); |
| 630 | } |
| 631 | |
John McCall | cdf7ef5 | 2010-11-06 09:44:32 +0000 | [diff] [blame] | 632 | /// Emit the code necessary to initialize the given global variable. |
Daniel Dunbar | fe06df4 | 2010-03-20 04:15:41 +0000 | [diff] [blame] | 633 | void CodeGenFunction::GenerateCXXGlobalVarDeclInitFunc(llvm::Function *Fn, |
John McCall | cdf7ef5 | 2010-11-06 09:44:32 +0000 | [diff] [blame] | 634 | const VarDecl *D, |
Richard Smith | 6331c40 | 2012-02-13 22:16:19 +0000 | [diff] [blame] | 635 | llvm::GlobalVariable *Addr, |
| 636 | bool PerformInit) { |
Alexey Samsonov | 38e2496 | 2012-10-16 07:22:28 +0000 | [diff] [blame] | 637 | // Check if we need to emit debug info for variable initializer. |
David Blaikie | 92848de | 2013-08-26 20:33:21 +0000 | [diff] [blame] | 638 | if (D->hasAttr<NoDebugAttr>()) |
Craig Topper | 8a13c41 | 2014-05-21 05:09:00 +0000 | [diff] [blame] | 639 | DebugInfo = nullptr; // disable debug info indefinitely for this function |
Nick Lewycky | 0859707 | 2012-07-24 01:40:49 +0000 | [diff] [blame] | 640 | |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 641 | CurEHLocation = D->getBeginLoc(); |
David Blaikie | 47d28e0 | 2015-01-14 07:10:46 +0000 | [diff] [blame] | 642 | |
Reid Kleckner | 105c565 | 2019-04-24 22:45:44 +0000 | [diff] [blame] | 643 | StartFunction(GlobalDecl(D, DynamicInitKind::Initializer), |
| 644 | getContext().VoidTy, Fn, getTypes().arrangeNullaryFunction(), |
Alexandre Ganea | 3181773 | 2019-09-05 20:12:20 +0000 | [diff] [blame] | 645 | FunctionArgList(), D->getLocation(), |
| 646 | D->getInit()->getExprLoc()); |
Daniel Dunbar | 7572284 | 2010-03-20 04:15:29 +0000 | [diff] [blame] | 647 | |
Douglas Gregor | fa918f6 | 2011-07-01 21:54:36 +0000 | [diff] [blame] | 648 | // Use guarded initialization if the global variable is weak. This |
| 649 | // occurs for, e.g., instantiated static data members and |
| 650 | // definitions explicitly marked weak. |
Richard Smith | 453b7ca | 2019-06-05 00:04:33 +0000 | [diff] [blame] | 651 | // |
| 652 | // Also use guarded initialization for a variable with dynamic TLS and |
| 653 | // unordered initialization. (If the initialization is ordered, the ABI |
| 654 | // layer will guard the whole-TU initialization for us.) |
| 655 | if (Addr->hasWeakLinkage() || Addr->hasLinkOnceLinkage() || |
| 656 | (D->getTLSKind() == VarDecl::TLS_Dynamic && |
| 657 | isTemplateInstantiation(D->getTemplateSpecializationKind()))) { |
Richard Smith | 6331c40 | 2012-02-13 22:16:19 +0000 | [diff] [blame] | 658 | EmitCXXGuardedInit(*D, Addr, PerformInit); |
John McCall | cdf7ef5 | 2010-11-06 09:44:32 +0000 | [diff] [blame] | 659 | } else { |
Richard Smith | 6331c40 | 2012-02-13 22:16:19 +0000 | [diff] [blame] | 660 | EmitCXXGlobalVarDeclInit(*D, Addr, PerformInit); |
Fariborz Jahanian | 67ca8c4 | 2010-10-26 22:47:47 +0000 | [diff] [blame] | 661 | } |
Daniel Dunbar | 7572284 | 2010-03-20 04:15:29 +0000 | [diff] [blame] | 662 | |
| 663 | FinishFunction(); |
Daniel Dunbar | fe06df4 | 2010-03-20 04:15:41 +0000 | [diff] [blame] | 664 | } |
Daniel Dunbar | 7572284 | 2010-03-20 04:15:29 +0000 | [diff] [blame] | 665 | |
Benjamin Kramer | 139cfc2 | 2013-04-26 21:32:52 +0000 | [diff] [blame] | 666 | void |
| 667 | CodeGenFunction::GenerateCXXGlobalInitFunc(llvm::Function *Fn, |
David Majnemer | b3341ea | 2014-10-05 05:05:40 +0000 | [diff] [blame] | 668 | ArrayRef<llvm::Function *> Decls, |
Richard Smith | 3ad0636 | 2018-10-31 20:39:26 +0000 | [diff] [blame] | 669 | ConstantAddress Guard) { |
Adrian Prantl | 0ce2b87 | 2014-04-11 23:45:01 +0000 | [diff] [blame] | 670 | { |
Adrian Prantl | 95b24e9 | 2015-02-03 20:00:54 +0000 | [diff] [blame] | 671 | auto NL = ApplyDebugLocation::CreateEmpty(*this); |
Adrian Prantl | 0ce2b87 | 2014-04-11 23:45:01 +0000 | [diff] [blame] | 672 | StartFunction(GlobalDecl(), getContext().VoidTy, Fn, |
| 673 | getTypes().arrangeNullaryFunction(), FunctionArgList()); |
| 674 | // Emit an artificial location for this function. |
Adrian Prantl | 95b24e9 | 2015-02-03 20:00:54 +0000 | [diff] [blame] | 675 | auto AL = ApplyDebugLocation::CreateArtificial(*this); |
Daniel Dunbar | fe06df4 | 2010-03-20 04:15:41 +0000 | [diff] [blame] | 676 | |
Craig Topper | 8a13c41 | 2014-05-21 05:09:00 +0000 | [diff] [blame] | 677 | llvm::BasicBlock *ExitBlock = nullptr; |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 678 | if (Guard.isValid()) { |
Adrian Prantl | 0ce2b87 | 2014-04-11 23:45:01 +0000 | [diff] [blame] | 679 | // If we have a guard variable, check whether we've already performed |
| 680 | // these initializations. This happens for TLS initialization functions. |
| 681 | llvm::Value *GuardVal = Builder.CreateLoad(Guard); |
| 682 | llvm::Value *Uninit = Builder.CreateIsNull(GuardVal, |
| 683 | "guard.uninitialized"); |
Adrian Prantl | 0ce2b87 | 2014-04-11 23:45:01 +0000 | [diff] [blame] | 684 | llvm::BasicBlock *InitBlock = createBasicBlock("init"); |
| 685 | ExitBlock = createBasicBlock("exit"); |
Richard Smith | ae8d62c | 2017-07-26 22:01:09 +0000 | [diff] [blame] | 686 | EmitCXXGuardedInitBranch(Uninit, InitBlock, ExitBlock, |
| 687 | GuardKind::TlsGuard, nullptr); |
Adrian Prantl | 0ce2b87 | 2014-04-11 23:45:01 +0000 | [diff] [blame] | 688 | EmitBlock(InitBlock); |
Manman Ren | 14f8815 | 2015-11-11 19:19:26 +0000 | [diff] [blame] | 689 | // Mark as initialized before initializing anything else. If the |
| 690 | // initializers use previously-initialized thread_local vars, that's |
| 691 | // probably supposed to be OK, but the standard doesn't say. |
| 692 | Builder.CreateStore(llvm::ConstantInt::get(GuardVal->getType(),1), Guard); |
Richard Smith | 3ad0636 | 2018-10-31 20:39:26 +0000 | [diff] [blame] | 693 | |
| 694 | // The guard variable can't ever change again. |
| 695 | EmitInvariantStart( |
| 696 | Guard.getPointer(), |
| 697 | CharUnits::fromQuantity( |
| 698 | CGM.getDataLayout().getTypeAllocSize(GuardVal->getType()))); |
Adrian Prantl | 0ce2b87 | 2014-04-11 23:45:01 +0000 | [diff] [blame] | 699 | } |
Richard Smith | 2fd1d7a | 2013-04-19 16:42:07 +0000 | [diff] [blame] | 700 | |
Adrian Prantl | 0ce2b87 | 2014-04-11 23:45:01 +0000 | [diff] [blame] | 701 | RunCleanupsScope Scope(*this); |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 702 | |
Adrian Prantl | 0ce2b87 | 2014-04-11 23:45:01 +0000 | [diff] [blame] | 703 | // When building in Objective-C++ ARC mode, create an autorelease pool |
| 704 | // around the global initializers. |
| 705 | if (getLangOpts().ObjCAutoRefCount && getLangOpts().CPlusPlus) { |
| 706 | llvm::Value *token = EmitObjCAutoreleasePoolPush(); |
| 707 | EmitObjCAutoreleasePoolCleanup(token); |
| 708 | } |
Benjamin Kramer | 139cfc2 | 2013-04-26 21:32:52 +0000 | [diff] [blame] | 709 | |
Adrian Prantl | 0ce2b87 | 2014-04-11 23:45:01 +0000 | [diff] [blame] | 710 | for (unsigned i = 0, e = Decls.size(); i != e; ++i) |
| 711 | if (Decls[i]) |
| 712 | EmitRuntimeCall(Decls[i]); |
Daniel Dunbar | fe06df4 | 2010-03-20 04:15:41 +0000 | [diff] [blame] | 713 | |
Adrian Prantl | 0ce2b87 | 2014-04-11 23:45:01 +0000 | [diff] [blame] | 714 | Scope.ForceCleanup(); |
Richard Smith | 2fd1d7a | 2013-04-19 16:42:07 +0000 | [diff] [blame] | 715 | |
Adrian Prantl | 0ce2b87 | 2014-04-11 23:45:01 +0000 | [diff] [blame] | 716 | if (ExitBlock) { |
| 717 | Builder.CreateBr(ExitBlock); |
| 718 | EmitBlock(ExitBlock); |
| 719 | } |
Richard Smith | 2fd1d7a | 2013-04-19 16:42:07 +0000 | [diff] [blame] | 720 | } |
| 721 | |
Daniel Dunbar | fe06df4 | 2010-03-20 04:15:41 +0000 | [diff] [blame] | 722 | FinishFunction(); |
| 723 | } |
| 724 | |
Sanjoy Das | e369bd9 | 2017-05-01 17:08:00 +0000 | [diff] [blame] | 725 | void CodeGenFunction::GenerateCXXGlobalDtorsFunc( |
| 726 | llvm::Function *Fn, |
James Y Knight | f732154 | 2019-02-07 01:14:17 +0000 | [diff] [blame] | 727 | const std::vector<std::tuple<llvm::FunctionType *, llvm::WeakTrackingVH, |
| 728 | llvm::Constant *>> &DtorsAndObjects) { |
Adrian Prantl | 0ce2b87 | 2014-04-11 23:45:01 +0000 | [diff] [blame] | 729 | { |
Adrian Prantl | 95b24e9 | 2015-02-03 20:00:54 +0000 | [diff] [blame] | 730 | auto NL = ApplyDebugLocation::CreateEmpty(*this); |
Adrian Prantl | 0ce2b87 | 2014-04-11 23:45:01 +0000 | [diff] [blame] | 731 | StartFunction(GlobalDecl(), getContext().VoidTy, Fn, |
| 732 | getTypes().arrangeNullaryFunction(), FunctionArgList()); |
| 733 | // Emit an artificial location for this function. |
Adrian Prantl | 95b24e9 | 2015-02-03 20:00:54 +0000 | [diff] [blame] | 734 | auto AL = ApplyDebugLocation::CreateArtificial(*this); |
Daniel Dunbar | fe06df4 | 2010-03-20 04:15:41 +0000 | [diff] [blame] | 735 | |
Adrian Prantl | 0ce2b87 | 2014-04-11 23:45:01 +0000 | [diff] [blame] | 736 | // Emit the dtors, in reverse order from construction. |
| 737 | for (unsigned i = 0, e = DtorsAndObjects.size(); i != e; ++i) { |
James Y Knight | f732154 | 2019-02-07 01:14:17 +0000 | [diff] [blame] | 738 | llvm::FunctionType *CalleeTy; |
| 739 | llvm::Value *Callee; |
| 740 | llvm::Constant *Arg; |
| 741 | std::tie(CalleeTy, Callee, Arg) = DtorsAndObjects[e - i - 1]; |
| 742 | llvm::CallInst *CI = Builder.CreateCall(CalleeTy, Callee, Arg); |
Adrian Prantl | 0ce2b87 | 2014-04-11 23:45:01 +0000 | [diff] [blame] | 743 | // Make sure the call and the callee agree on calling convention. |
| 744 | if (llvm::Function *F = dyn_cast<llvm::Function>(Callee)) |
| 745 | CI->setCallingConv(F->getCallingConv()); |
| 746 | } |
Chris Lattner | 5e8416a | 2010-04-26 20:35:54 +0000 | [diff] [blame] | 747 | } |
Daniel Dunbar | fe06df4 | 2010-03-20 04:15:41 +0000 | [diff] [blame] | 748 | |
| 749 | FinishFunction(); |
Anders Carlsson | 633c6f6 | 2009-12-10 00:30:05 +0000 | [diff] [blame] | 750 | } |
| 751 | |
John McCall | 98de3d7 | 2011-07-13 03:01:35 +0000 | [diff] [blame] | 752 | /// generateDestroyHelper - Generates a helper function which, when |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 753 | /// invoked, destroys the given object. The address of the object |
| 754 | /// should be in global memory. |
David Blaikie | ebe87e1 | 2013-08-27 23:57:18 +0000 | [diff] [blame] | 755 | llvm::Function *CodeGenFunction::generateDestroyHelper( |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 756 | Address addr, QualType type, Destroyer *destroyer, |
David Blaikie | ebe87e1 | 2013-08-27 23:57:18 +0000 | [diff] [blame] | 757 | bool useEHCleanupForArray, const VarDecl *VD) { |
John McCall | a738c25 | 2011-03-09 04:27:21 +0000 | [diff] [blame] | 758 | FunctionArgList args; |
Alexey Bataev | 5622323 | 2017-06-09 13:40:18 +0000 | [diff] [blame] | 759 | ImplicitParamDecl Dst(getContext(), getContext().VoidPtrTy, |
| 760 | ImplicitParamDecl::Other); |
| 761 | args.push_back(&Dst); |
Reid Kleckner | 4982b82 | 2014-01-31 22:54:50 +0000 | [diff] [blame] | 762 | |
John McCall | c56a8b3 | 2016-03-11 04:30:31 +0000 | [diff] [blame] | 763 | const CGFunctionInfo &FI = |
| 764 | CGM.getTypes().arrangeBuiltinFunctionDeclaration(getContext().VoidTy, args); |
John McCall | a729c62 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 765 | llvm::FunctionType *FTy = CGM.getTypes().GetFunctionType(FI); |
Alexey Samsonov | 1444bb9 | 2014-10-17 00:20:19 +0000 | [diff] [blame] | 766 | llvm::Function *fn = CGM.CreateGlobalInitOrDestructFunction( |
Akira Hatanaka | 7791f1a4 | 2015-10-31 01:28:07 +0000 | [diff] [blame] | 767 | FTy, "__cxx_global_array_dtor", FI, VD->getLocation()); |
Anders Carlsson | 282bc10 | 2010-06-08 22:17:27 +0000 | [diff] [blame] | 768 | |
Stephen Kelly | f2ceec4 | 2018-08-09 21:08:08 +0000 | [diff] [blame] | 769 | CurEHLocation = VD->getBeginLoc(); |
David Blaikie | 47d28e0 | 2015-01-14 07:10:46 +0000 | [diff] [blame] | 770 | |
Alexandre Ganea | 3181773 | 2019-09-05 20:12:20 +0000 | [diff] [blame] | 771 | StartFunction(VD, getContext().VoidTy, fn, FI, args); |
Anders Carlsson | 282bc10 | 2010-06-08 22:17:27 +0000 | [diff] [blame] | 772 | |
John McCall | 98de3d7 | 2011-07-13 03:01:35 +0000 | [diff] [blame] | 773 | emitDestroy(addr, type, destroyer, useEHCleanupForArray); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 774 | |
Anders Carlsson | 282bc10 | 2010-06-08 22:17:27 +0000 | [diff] [blame] | 775 | FinishFunction(); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 776 | |
John McCall | 98de3d7 | 2011-07-13 03:01:35 +0000 | [diff] [blame] | 777 | return fn; |
Anders Carlsson | 282bc10 | 2010-06-08 22:17:27 +0000 | [diff] [blame] | 778 | } |