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