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