1 //===--- CGDeclCXX.cpp - Emit LLVM Code for C++ declarations --------------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 // 9 // This contains code dealing with code generation of C++ declarations 10 // 11 //===----------------------------------------------------------------------===// 12 13 #include "CGCXXABI.h" 14 #include "CGObjCRuntime.h" 15 #include "CGOpenMPRuntime.h" 16 #include "CodeGenFunction.h" 17 #include "TargetInfo.h" 18 #include "clang/AST/Attr.h" 19 #include "clang/Basic/LangOptions.h" 20 #include "llvm/ADT/StringExtras.h" 21 #include "llvm/IR/Intrinsics.h" 22 #include "llvm/IR/MDBuilder.h" 23 #include "llvm/Support/Path.h" 24 25 using namespace clang; 26 using namespace CodeGen; 27 28 static void EmitDeclInit(CodeGenFunction &CGF, const VarDecl &D, 29 ConstantAddress DeclPtr) { 30 assert( 31 (D.hasGlobalStorage() || 32 (D.hasLocalStorage() && CGF.getContext().getLangOpts().OpenCLCPlusPlus)) && 33 "VarDecl must have global or local (in the case of OpenCL) storage!"); 34 assert(!D.getType()->isReferenceType() && 35 "Should not call EmitDeclInit on a reference!"); 36 37 QualType type = D.getType(); 38 LValue lv = CGF.MakeAddrLValue(DeclPtr, type); 39 40 const Expr *Init = D.getInit(); 41 switch (CGF.getEvaluationKind(type)) { 42 case TEK_Scalar: { 43 CodeGenModule &CGM = CGF.CGM; 44 if (lv.isObjCStrong()) 45 CGM.getObjCRuntime().EmitObjCGlobalAssign(CGF, CGF.EmitScalarExpr(Init), 46 DeclPtr, D.getTLSKind()); 47 else if (lv.isObjCWeak()) 48 CGM.getObjCRuntime().EmitObjCWeakAssign(CGF, CGF.EmitScalarExpr(Init), 49 DeclPtr); 50 else 51 CGF.EmitScalarInit(Init, &D, lv, false); 52 return; 53 } 54 case TEK_Complex: 55 CGF.EmitComplexExprIntoLValue(Init, lv, /*isInit*/ true); 56 return; 57 case TEK_Aggregate: 58 CGF.EmitAggExpr(Init, 59 AggValueSlot::forLValue(lv, CGF, AggValueSlot::IsDestructed, 60 AggValueSlot::DoesNotNeedGCBarriers, 61 AggValueSlot::IsNotAliased, 62 AggValueSlot::DoesNotOverlap)); 63 return; 64 } 65 llvm_unreachable("bad evaluation kind"); 66 } 67 68 /// Emit code to cause the destruction of the given variable with 69 /// static storage duration. 70 static void EmitDeclDestroy(CodeGenFunction &CGF, const VarDecl &D, 71 ConstantAddress Addr) { 72 // Honor __attribute__((no_destroy)) and bail instead of attempting 73 // to emit a reference to a possibly nonexistent destructor, which 74 // in turn can cause a crash. This will result in a global constructor 75 // that isn't balanced out by a destructor call as intended by the 76 // attribute. This also checks for -fno-c++-static-destructors and 77 // bails even if the attribute is not present. 78 QualType::DestructionKind DtorKind = D.needsDestruction(CGF.getContext()); 79 80 // FIXME: __attribute__((cleanup)) ? 81 82 switch (DtorKind) { 83 case QualType::DK_none: 84 return; 85 86 case QualType::DK_cxx_destructor: 87 break; 88 89 case QualType::DK_objc_strong_lifetime: 90 case QualType::DK_objc_weak_lifetime: 91 case QualType::DK_nontrivial_c_struct: 92 // We don't care about releasing objects during process teardown. 93 assert(!D.getTLSKind() && "should have rejected this"); 94 return; 95 } 96 97 llvm::FunctionCallee Func; 98 llvm::Constant *Argument; 99 100 CodeGenModule &CGM = CGF.CGM; 101 QualType Type = D.getType(); 102 103 // Special-case non-array C++ destructors, if they have the right signature. 104 // Under some ABIs, destructors return this instead of void, and cannot be 105 // passed directly to __cxa_atexit if the target does not allow this 106 // mismatch. 107 const CXXRecordDecl *Record = Type->getAsCXXRecordDecl(); 108 bool CanRegisterDestructor = 109 Record && (!CGM.getCXXABI().HasThisReturn( 110 GlobalDecl(Record->getDestructor(), Dtor_Complete)) || 111 CGM.getCXXABI().canCallMismatchedFunctionType()); 112 // If __cxa_atexit is disabled via a flag, a different helper function is 113 // generated elsewhere which uses atexit instead, and it takes the destructor 114 // directly. 115 bool UsingExternalHelper = !CGM.getCodeGenOpts().CXAAtExit; 116 if (Record && (CanRegisterDestructor || UsingExternalHelper)) { 117 assert(!Record->hasTrivialDestructor()); 118 CXXDestructorDecl *Dtor = Record->getDestructor(); 119 120 Func = CGM.getAddrAndTypeOfCXXStructor(GlobalDecl(Dtor, Dtor_Complete)); 121 if (CGF.getContext().getLangOpts().OpenCL) { 122 auto DestAS = 123 CGM.getTargetCodeGenInfo().getAddrSpaceOfCxaAtexitPtrParam(); 124 auto DestTy = CGF.getTypes().ConvertType(Type)->getPointerTo( 125 CGM.getContext().getTargetAddressSpace(DestAS)); 126 auto SrcAS = D.getType().getQualifiers().getAddressSpace(); 127 if (DestAS == SrcAS) 128 Argument = llvm::ConstantExpr::getBitCast(Addr.getPointer(), DestTy); 129 else 130 // FIXME: On addr space mismatch we are passing NULL. The generation 131 // of the global destructor function should be adjusted accordingly. 132 Argument = llvm::ConstantPointerNull::get(DestTy); 133 } else { 134 Argument = llvm::ConstantExpr::getBitCast( 135 Addr.getPointer(), CGF.getTypes().ConvertType(Type)->getPointerTo()); 136 } 137 // Otherwise, the standard logic requires a helper function. 138 } else { 139 Func = CodeGenFunction(CGM) 140 .generateDestroyHelper(Addr, Type, CGF.getDestroyer(DtorKind), 141 CGF.needsEHCleanup(DtorKind), &D); 142 Argument = llvm::Constant::getNullValue(CGF.Int8PtrTy); 143 } 144 145 CGM.getCXXABI().registerGlobalDtor(CGF, D, Func, Argument); 146 } 147 148 /// Emit code to cause the variable at the given address to be considered as 149 /// constant from this point onwards. 150 static void EmitDeclInvariant(CodeGenFunction &CGF, const VarDecl &D, 151 llvm::Constant *Addr) { 152 return CGF.EmitInvariantStart( 153 Addr, CGF.getContext().getTypeSizeInChars(D.getType())); 154 } 155 156 void CodeGenFunction::EmitInvariantStart(llvm::Constant *Addr, CharUnits Size) { 157 // Do not emit the intrinsic if we're not optimizing. 158 if (!CGM.getCodeGenOpts().OptimizationLevel) 159 return; 160 161 // Grab the llvm.invariant.start intrinsic. 162 llvm::Intrinsic::ID InvStartID = llvm::Intrinsic::invariant_start; 163 // Overloaded address space type. 164 llvm::Type *ObjectPtr[1] = {Int8PtrTy}; 165 llvm::Function *InvariantStart = CGM.getIntrinsic(InvStartID, ObjectPtr); 166 167 // Emit a call with the size in bytes of the object. 168 uint64_t Width = Size.getQuantity(); 169 llvm::Value *Args[2] = { llvm::ConstantInt::getSigned(Int64Ty, Width), 170 llvm::ConstantExpr::getBitCast(Addr, Int8PtrTy)}; 171 Builder.CreateCall(InvariantStart, Args); 172 } 173 174 void CodeGenFunction::EmitCXXGlobalVarDeclInit(const VarDecl &D, 175 llvm::Constant *DeclPtr, 176 bool PerformInit) { 177 178 const Expr *Init = D.getInit(); 179 QualType T = D.getType(); 180 181 // The address space of a static local variable (DeclPtr) may be different 182 // from the address space of the "this" argument of the constructor. In that 183 // case, we need an addrspacecast before calling the constructor. 184 // 185 // struct StructWithCtor { 186 // __device__ StructWithCtor() {...} 187 // }; 188 // __device__ void foo() { 189 // __shared__ StructWithCtor s; 190 // ... 191 // } 192 // 193 // For example, in the above CUDA code, the static local variable s has a 194 // "shared" address space qualifier, but the constructor of StructWithCtor 195 // expects "this" in the "generic" address space. 196 unsigned ExpectedAddrSpace = getContext().getTargetAddressSpace(T); 197 unsigned ActualAddrSpace = DeclPtr->getType()->getPointerAddressSpace(); 198 if (ActualAddrSpace != ExpectedAddrSpace) { 199 llvm::Type *LTy = CGM.getTypes().ConvertTypeForMem(T); 200 llvm::PointerType *PTy = llvm::PointerType::get(LTy, ExpectedAddrSpace); 201 DeclPtr = llvm::ConstantExpr::getAddrSpaceCast(DeclPtr, PTy); 202 } 203 204 ConstantAddress DeclAddr(DeclPtr, getContext().getDeclAlign(&D)); 205 206 if (!T->isReferenceType()) { 207 if (getLangOpts().OpenMP && !getLangOpts().OpenMPSimd && 208 D.hasAttr<OMPThreadPrivateDeclAttr>()) { 209 (void)CGM.getOpenMPRuntime().emitThreadPrivateVarDefinition( 210 &D, DeclAddr, D.getAttr<OMPThreadPrivateDeclAttr>()->getLocation(), 211 PerformInit, this); 212 } 213 if (PerformInit) 214 EmitDeclInit(*this, D, DeclAddr); 215 if (CGM.isTypeConstant(D.getType(), true)) 216 EmitDeclInvariant(*this, D, DeclPtr); 217 else 218 EmitDeclDestroy(*this, D, DeclAddr); 219 return; 220 } 221 222 assert(PerformInit && "cannot have constant initializer which needs " 223 "destruction for reference"); 224 RValue RV = EmitReferenceBindingToExpr(Init); 225 EmitStoreOfScalar(RV.getScalarVal(), DeclAddr, false, T); 226 } 227 228 /// Create a stub function, suitable for being passed to atexit, 229 /// which passes the given address to the given destructor function. 230 llvm::Function *CodeGenFunction::createAtExitStub(const VarDecl &VD, 231 llvm::FunctionCallee dtor, 232 llvm::Constant *addr) { 233 // Get the destructor function type, void(*)(void). 234 llvm::FunctionType *ty = llvm::FunctionType::get(CGM.VoidTy, false); 235 SmallString<256> FnName; 236 { 237 llvm::raw_svector_ostream Out(FnName); 238 CGM.getCXXABI().getMangleContext().mangleDynamicAtExitDestructor(&VD, Out); 239 } 240 241 const CGFunctionInfo &FI = CGM.getTypes().arrangeNullaryFunction(); 242 llvm::Function *fn = CGM.CreateGlobalInitOrCleanUpFunction( 243 ty, FnName.str(), FI, VD.getLocation()); 244 245 CodeGenFunction CGF(CGM); 246 247 CGF.StartFunction(GlobalDecl(&VD, DynamicInitKind::AtExit), 248 CGM.getContext().VoidTy, fn, FI, FunctionArgList(), 249 VD.getLocation(), VD.getInit()->getExprLoc()); 250 251 llvm::CallInst *call = CGF.Builder.CreateCall(dtor, addr); 252 253 // Make sure the call and the callee agree on calling convention. 254 if (auto *dtorFn = dyn_cast<llvm::Function>( 255 dtor.getCallee()->stripPointerCastsAndAliases())) 256 call->setCallingConv(dtorFn->getCallingConv()); 257 258 CGF.FinishFunction(); 259 260 return fn; 261 } 262 263 /// Register a global destructor using the C atexit runtime function. 264 void CodeGenFunction::registerGlobalDtorWithAtExit(const VarDecl &VD, 265 llvm::FunctionCallee dtor, 266 llvm::Constant *addr) { 267 // Create a function which calls the destructor. 268 llvm::Constant *dtorStub = createAtExitStub(VD, dtor, addr); 269 registerGlobalDtorWithAtExit(dtorStub); 270 } 271 272 void CodeGenFunction::registerGlobalDtorWithAtExit(llvm::Constant *dtorStub) { 273 // extern "C" int atexit(void (*f)(void)); 274 assert(cast<llvm::Function>(dtorStub)->getFunctionType() == 275 llvm::FunctionType::get(CGM.VoidTy, false) && 276 "Argument to atexit has a wrong type."); 277 278 llvm::FunctionType *atexitTy = 279 llvm::FunctionType::get(IntTy, dtorStub->getType(), false); 280 281 llvm::FunctionCallee atexit = 282 CGM.CreateRuntimeFunction(atexitTy, "atexit", llvm::AttributeList(), 283 /*Local=*/true); 284 if (llvm::Function *atexitFn = dyn_cast<llvm::Function>(atexit.getCallee())) 285 atexitFn->setDoesNotThrow(); 286 287 EmitNounwindRuntimeCall(atexit, dtorStub); 288 } 289 290 llvm::Value * 291 CodeGenFunction::unregisterGlobalDtorWithUnAtExit(llvm::Function *dtorStub) { 292 // The unatexit subroutine unregisters __dtor functions that were previously 293 // registered by the atexit subroutine. If the referenced function is found, 294 // it is removed from the list of functions that are called at normal program 295 // termination and the unatexit returns a value of 0, otherwise a non-zero 296 // value is returned. 297 // 298 // extern "C" int unatexit(void (*f)(void)); 299 assert(dtorStub->getFunctionType() == 300 llvm::FunctionType::get(CGM.VoidTy, false) && 301 "Argument to unatexit has a wrong type."); 302 303 llvm::FunctionType *unatexitTy = 304 llvm::FunctionType::get(IntTy, {dtorStub->getType()}, /*isVarArg=*/false); 305 306 llvm::FunctionCallee unatexit = 307 CGM.CreateRuntimeFunction(unatexitTy, "unatexit", llvm::AttributeList()); 308 309 cast<llvm::Function>(unatexit.getCallee())->setDoesNotThrow(); 310 311 return EmitNounwindRuntimeCall(unatexit, dtorStub); 312 } 313 314 void CodeGenFunction::EmitCXXGuardedInit(const VarDecl &D, 315 llvm::GlobalVariable *DeclPtr, 316 bool PerformInit) { 317 // If we've been asked to forbid guard variables, emit an error now. 318 // This diagnostic is hard-coded for Darwin's use case; we can find 319 // better phrasing if someone else needs it. 320 if (CGM.getCodeGenOpts().ForbidGuardVariables) 321 CGM.Error(D.getLocation(), 322 "this initialization requires a guard variable, which " 323 "the kernel does not support"); 324 325 CGM.getCXXABI().EmitGuardedInit(*this, D, DeclPtr, PerformInit); 326 } 327 328 void CodeGenFunction::EmitCXXGuardedInitBranch(llvm::Value *NeedsInit, 329 llvm::BasicBlock *InitBlock, 330 llvm::BasicBlock *NoInitBlock, 331 GuardKind Kind, 332 const VarDecl *D) { 333 assert((Kind == GuardKind::TlsGuard || D) && "no guarded variable"); 334 335 // A guess at how many times we will enter the initialization of a 336 // variable, depending on the kind of variable. 337 static const uint64_t InitsPerTLSVar = 1024; 338 static const uint64_t InitsPerLocalVar = 1024 * 1024; 339 340 llvm::MDNode *Weights; 341 if (Kind == GuardKind::VariableGuard && !D->isLocalVarDecl()) { 342 // For non-local variables, don't apply any weighting for now. Due to our 343 // use of COMDATs, we expect there to be at most one initialization of the 344 // variable per DSO, but we have no way to know how many DSOs will try to 345 // initialize the variable. 346 Weights = nullptr; 347 } else { 348 uint64_t NumInits; 349 // FIXME: For the TLS case, collect and use profiling information to 350 // determine a more accurate brach weight. 351 if (Kind == GuardKind::TlsGuard || D->getTLSKind()) 352 NumInits = InitsPerTLSVar; 353 else 354 NumInits = InitsPerLocalVar; 355 356 // The probability of us entering the initializer is 357 // 1 / (total number of times we attempt to initialize the variable). 358 llvm::MDBuilder MDHelper(CGM.getLLVMContext()); 359 Weights = MDHelper.createBranchWeights(1, NumInits - 1); 360 } 361 362 Builder.CreateCondBr(NeedsInit, InitBlock, NoInitBlock, Weights); 363 } 364 365 llvm::Function *CodeGenModule::CreateGlobalInitOrCleanUpFunction( 366 llvm::FunctionType *FTy, const Twine &Name, const CGFunctionInfo &FI, 367 SourceLocation Loc, bool TLS) { 368 llvm::Function *Fn = llvm::Function::Create( 369 FTy, llvm::GlobalValue::InternalLinkage, Name, &getModule()); 370 371 if (!getLangOpts().AppleKext && !TLS) { 372 // Set the section if needed. 373 if (const char *Section = getTarget().getStaticInitSectionSpecifier()) 374 Fn->setSection(Section); 375 } 376 377 SetInternalFunctionAttributes(GlobalDecl(), Fn, FI); 378 379 Fn->setCallingConv(getRuntimeCC()); 380 381 if (!getLangOpts().Exceptions) 382 Fn->setDoesNotThrow(); 383 384 if (getLangOpts().Sanitize.has(SanitizerKind::Address) && 385 !isInSanitizerBlacklist(SanitizerKind::Address, Fn, Loc)) 386 Fn->addFnAttr(llvm::Attribute::SanitizeAddress); 387 388 if (getLangOpts().Sanitize.has(SanitizerKind::KernelAddress) && 389 !isInSanitizerBlacklist(SanitizerKind::KernelAddress, Fn, Loc)) 390 Fn->addFnAttr(llvm::Attribute::SanitizeAddress); 391 392 if (getLangOpts().Sanitize.has(SanitizerKind::HWAddress) && 393 !isInSanitizerBlacklist(SanitizerKind::HWAddress, Fn, Loc)) 394 Fn->addFnAttr(llvm::Attribute::SanitizeHWAddress); 395 396 if (getLangOpts().Sanitize.has(SanitizerKind::KernelHWAddress) && 397 !isInSanitizerBlacklist(SanitizerKind::KernelHWAddress, Fn, Loc)) 398 Fn->addFnAttr(llvm::Attribute::SanitizeHWAddress); 399 400 if (getLangOpts().Sanitize.has(SanitizerKind::MemTag) && 401 !isInSanitizerBlacklist(SanitizerKind::MemTag, Fn, Loc)) 402 Fn->addFnAttr(llvm::Attribute::SanitizeMemTag); 403 404 if (getLangOpts().Sanitize.has(SanitizerKind::Thread) && 405 !isInSanitizerBlacklist(SanitizerKind::Thread, Fn, Loc)) 406 Fn->addFnAttr(llvm::Attribute::SanitizeThread); 407 408 if (getLangOpts().Sanitize.has(SanitizerKind::Memory) && 409 !isInSanitizerBlacklist(SanitizerKind::Memory, Fn, Loc)) 410 Fn->addFnAttr(llvm::Attribute::SanitizeMemory); 411 412 if (getLangOpts().Sanitize.has(SanitizerKind::KernelMemory) && 413 !isInSanitizerBlacklist(SanitizerKind::KernelMemory, Fn, Loc)) 414 Fn->addFnAttr(llvm::Attribute::SanitizeMemory); 415 416 if (getLangOpts().Sanitize.has(SanitizerKind::SafeStack) && 417 !isInSanitizerBlacklist(SanitizerKind::SafeStack, Fn, Loc)) 418 Fn->addFnAttr(llvm::Attribute::SafeStack); 419 420 if (getLangOpts().Sanitize.has(SanitizerKind::ShadowCallStack) && 421 !isInSanitizerBlacklist(SanitizerKind::ShadowCallStack, Fn, Loc)) 422 Fn->addFnAttr(llvm::Attribute::ShadowCallStack); 423 424 auto RASignKind = getLangOpts().getSignReturnAddressScope(); 425 if (RASignKind != LangOptions::SignReturnAddressScopeKind::None) { 426 Fn->addFnAttr("sign-return-address", 427 RASignKind == LangOptions::SignReturnAddressScopeKind::All 428 ? "all" 429 : "non-leaf"); 430 auto RASignKey = getLangOpts().getSignReturnAddressKey(); 431 Fn->addFnAttr("sign-return-address-key", 432 RASignKey == LangOptions::SignReturnAddressKeyKind::AKey 433 ? "a_key" 434 : "b_key"); 435 } 436 437 if (getLangOpts().BranchTargetEnforcement) 438 Fn->addFnAttr("branch-target-enforcement"); 439 440 return Fn; 441 } 442 443 /// Create a global pointer to a function that will initialize a global 444 /// variable. The user has requested that this pointer be emitted in a specific 445 /// section. 446 void CodeGenModule::EmitPointerToInitFunc(const VarDecl *D, 447 llvm::GlobalVariable *GV, 448 llvm::Function *InitFunc, 449 InitSegAttr *ISA) { 450 llvm::GlobalVariable *PtrArray = new llvm::GlobalVariable( 451 TheModule, InitFunc->getType(), /*isConstant=*/true, 452 llvm::GlobalValue::PrivateLinkage, InitFunc, "__cxx_init_fn_ptr"); 453 PtrArray->setSection(ISA->getSection()); 454 addUsedGlobal(PtrArray); 455 456 // If the GV is already in a comdat group, then we have to join it. 457 if (llvm::Comdat *C = GV->getComdat()) 458 PtrArray->setComdat(C); 459 } 460 461 void 462 CodeGenModule::EmitCXXGlobalVarDeclInitFunc(const VarDecl *D, 463 llvm::GlobalVariable *Addr, 464 bool PerformInit) { 465 466 // According to E.2.3.1 in CUDA-7.5 Programming guide: __device__, 467 // __constant__ and __shared__ variables defined in namespace scope, 468 // that are of class type, cannot have a non-empty constructor. All 469 // the checks have been done in Sema by now. Whatever initializers 470 // are allowed are empty and we just need to ignore them here. 471 if (getLangOpts().CUDAIsDevice && !getLangOpts().GPUAllowDeviceInit && 472 (D->hasAttr<CUDADeviceAttr>() || D->hasAttr<CUDAConstantAttr>() || 473 D->hasAttr<CUDASharedAttr>())) 474 return; 475 476 if (getLangOpts().OpenMP && 477 getOpenMPRuntime().emitDeclareTargetVarDefinition(D, Addr, PerformInit)) 478 return; 479 480 // Check if we've already initialized this decl. 481 auto I = DelayedCXXInitPosition.find(D); 482 if (I != DelayedCXXInitPosition.end() && I->second == ~0U) 483 return; 484 485 llvm::FunctionType *FTy = llvm::FunctionType::get(VoidTy, false); 486 SmallString<256> FnName; 487 { 488 llvm::raw_svector_ostream Out(FnName); 489 getCXXABI().getMangleContext().mangleDynamicInitializer(D, Out); 490 } 491 492 // Create a variable initialization function. 493 llvm::Function *Fn = CreateGlobalInitOrCleanUpFunction( 494 FTy, FnName.str(), getTypes().arrangeNullaryFunction(), D->getLocation()); 495 496 auto *ISA = D->getAttr<InitSegAttr>(); 497 CodeGenFunction(*this).GenerateCXXGlobalVarDeclInitFunc(Fn, D, Addr, 498 PerformInit); 499 500 llvm::GlobalVariable *COMDATKey = 501 supportsCOMDAT() && D->isExternallyVisible() ? Addr : nullptr; 502 503 if (D->getTLSKind()) { 504 // FIXME: Should we support init_priority for thread_local? 505 // FIXME: We only need to register one __cxa_thread_atexit function for the 506 // entire TU. 507 CXXThreadLocalInits.push_back(Fn); 508 CXXThreadLocalInitVars.push_back(D); 509 } else if (PerformInit && ISA) { 510 EmitPointerToInitFunc(D, Addr, Fn, ISA); 511 } else if (auto *IPA = D->getAttr<InitPriorityAttr>()) { 512 OrderGlobalInits Key(IPA->getPriority(), PrioritizedCXXGlobalInits.size()); 513 PrioritizedCXXGlobalInits.push_back(std::make_pair(Key, Fn)); 514 } else if (isTemplateInstantiation(D->getTemplateSpecializationKind()) || 515 getContext().GetGVALinkageForVariable(D) == GVA_DiscardableODR) { 516 // C++ [basic.start.init]p2: 517 // Definitions of explicitly specialized class template static data 518 // members have ordered initialization. Other class template static data 519 // members (i.e., implicitly or explicitly instantiated specializations) 520 // have unordered initialization. 521 // 522 // As a consequence, we can put them into their own llvm.global_ctors entry. 523 // 524 // If the global is externally visible, put the initializer into a COMDAT 525 // group with the global being initialized. On most platforms, this is a 526 // minor startup time optimization. In the MS C++ ABI, there are no guard 527 // variables, so this COMDAT key is required for correctness. 528 AddGlobalCtor(Fn, 65535, COMDATKey); 529 if (getTarget().getCXXABI().isMicrosoft() && COMDATKey) { 530 // In The MS C++, MS add template static data member in the linker 531 // drective. 532 addUsedGlobal(COMDATKey); 533 } 534 } else if (D->hasAttr<SelectAnyAttr>()) { 535 // SelectAny globals will be comdat-folded. Put the initializer into a 536 // COMDAT group associated with the global, so the initializers get folded 537 // too. 538 AddGlobalCtor(Fn, 65535, COMDATKey); 539 } else { 540 I = DelayedCXXInitPosition.find(D); // Re-do lookup in case of re-hash. 541 if (I == DelayedCXXInitPosition.end()) { 542 CXXGlobalInits.push_back(Fn); 543 } else if (I->second != ~0U) { 544 assert(I->second < CXXGlobalInits.size() && 545 CXXGlobalInits[I->second] == nullptr); 546 CXXGlobalInits[I->second] = Fn; 547 } 548 } 549 550 // Remember that we already emitted the initializer for this global. 551 DelayedCXXInitPosition[D] = ~0U; 552 } 553 554 void CodeGenModule::EmitCXXThreadLocalInitFunc() { 555 getCXXABI().EmitThreadLocalInitFuncs( 556 *this, CXXThreadLocals, CXXThreadLocalInits, CXXThreadLocalInitVars); 557 558 CXXThreadLocalInits.clear(); 559 CXXThreadLocalInitVars.clear(); 560 CXXThreadLocals.clear(); 561 } 562 563 static SmallString<128> getTransformedFileName(llvm::Module &M) { 564 SmallString<128> FileName = llvm::sys::path::filename(M.getName()); 565 566 if (FileName.empty()) 567 FileName = "<null>"; 568 569 for (size_t i = 0; i < FileName.size(); ++i) { 570 // Replace everything that's not [a-zA-Z0-9._] with a _. This set happens 571 // to be the set of C preprocessing numbers. 572 if (!isPreprocessingNumberBody(FileName[i])) 573 FileName[i] = '_'; 574 } 575 576 return FileName; 577 } 578 579 void 580 CodeGenModule::EmitCXXGlobalInitFunc() { 581 while (!CXXGlobalInits.empty() && !CXXGlobalInits.back()) 582 CXXGlobalInits.pop_back(); 583 584 if (CXXGlobalInits.empty() && PrioritizedCXXGlobalInits.empty()) 585 return; 586 587 llvm::FunctionType *FTy = llvm::FunctionType::get(VoidTy, false); 588 const CGFunctionInfo &FI = getTypes().arrangeNullaryFunction(); 589 590 const bool UseSinitAndSterm = getCXXABI().useSinitAndSterm(); 591 // Create our global prioritized initialization function. 592 if (!PrioritizedCXXGlobalInits.empty()) { 593 assert(!UseSinitAndSterm && "Prioritized sinit and sterm functions are not" 594 " supported yet."); 595 596 SmallVector<llvm::Function *, 8> LocalCXXGlobalInits; 597 llvm::array_pod_sort(PrioritizedCXXGlobalInits.begin(), 598 PrioritizedCXXGlobalInits.end()); 599 // Iterate over "chunks" of ctors with same priority and emit each chunk 600 // into separate function. Note - everything is sorted first by priority, 601 // second - by lex order, so we emit ctor functions in proper order. 602 for (SmallVectorImpl<GlobalInitData >::iterator 603 I = PrioritizedCXXGlobalInits.begin(), 604 E = PrioritizedCXXGlobalInits.end(); I != E; ) { 605 SmallVectorImpl<GlobalInitData >::iterator 606 PrioE = std::upper_bound(I + 1, E, *I, GlobalInitPriorityCmp()); 607 608 LocalCXXGlobalInits.clear(); 609 unsigned Priority = I->first.priority; 610 // Compute the function suffix from priority. Prepend with zeroes to make 611 // sure the function names are also ordered as priorities. 612 std::string PrioritySuffix = llvm::utostr(Priority); 613 // Priority is always <= 65535 (enforced by sema). 614 PrioritySuffix = std::string(6-PrioritySuffix.size(), '0')+PrioritySuffix; 615 llvm::Function *Fn = CreateGlobalInitOrCleanUpFunction( 616 FTy, "_GLOBAL__I_" + PrioritySuffix, FI); 617 618 for (; I < PrioE; ++I) 619 LocalCXXGlobalInits.push_back(I->second); 620 621 CodeGenFunction(*this).GenerateCXXGlobalInitFunc(Fn, LocalCXXGlobalInits); 622 AddGlobalCtor(Fn, Priority); 623 } 624 PrioritizedCXXGlobalInits.clear(); 625 } 626 627 if (UseSinitAndSterm && CXXGlobalInits.empty()) 628 return; 629 630 // Include the filename in the symbol name. Including "sub_" matches gcc 631 // and makes sure these symbols appear lexicographically behind the symbols 632 // with priority emitted above. 633 llvm::Function *Fn = CreateGlobalInitOrCleanUpFunction( 634 FTy, llvm::Twine("_GLOBAL__sub_I_", getTransformedFileName(getModule())), 635 FI); 636 637 CodeGenFunction(*this).GenerateCXXGlobalInitFunc(Fn, CXXGlobalInits); 638 AddGlobalCtor(Fn); 639 640 // In OpenCL global init functions must be converted to kernels in order to 641 // be able to launch them from the host. 642 // FIXME: Some more work might be needed to handle destructors correctly. 643 // Current initialization function makes use of function pointers callbacks. 644 // We can't support function pointers especially between host and device. 645 // However it seems global destruction has little meaning without any 646 // dynamic resource allocation on the device and program scope variables are 647 // destroyed by the runtime when program is released. 648 if (getLangOpts().OpenCL) { 649 GenOpenCLArgMetadata(Fn); 650 Fn->setCallingConv(llvm::CallingConv::SPIR_KERNEL); 651 } 652 653 if (getLangOpts().HIP) { 654 Fn->setCallingConv(llvm::CallingConv::AMDGPU_KERNEL); 655 Fn->addFnAttr("device-init"); 656 } 657 658 CXXGlobalInits.clear(); 659 } 660 661 void CodeGenModule::EmitCXXGlobalCleanUpFunc() { 662 if (CXXGlobalDtorsOrStermFinalizers.empty()) 663 return; 664 665 llvm::FunctionType *FTy = llvm::FunctionType::get(VoidTy, false); 666 const CGFunctionInfo &FI = getTypes().arrangeNullaryFunction(); 667 668 // Create our global cleanup function. 669 llvm::Function *Fn = 670 CreateGlobalInitOrCleanUpFunction(FTy, "_GLOBAL__D_a", FI); 671 672 CodeGenFunction(*this).GenerateCXXGlobalCleanUpFunc( 673 Fn, CXXGlobalDtorsOrStermFinalizers); 674 AddGlobalDtor(Fn); 675 CXXGlobalDtorsOrStermFinalizers.clear(); 676 } 677 678 /// Emit the code necessary to initialize the given global variable. 679 void CodeGenFunction::GenerateCXXGlobalVarDeclInitFunc(llvm::Function *Fn, 680 const VarDecl *D, 681 llvm::GlobalVariable *Addr, 682 bool PerformInit) { 683 // Check if we need to emit debug info for variable initializer. 684 if (D->hasAttr<NoDebugAttr>()) 685 DebugInfo = nullptr; // disable debug info indefinitely for this function 686 687 CurEHLocation = D->getBeginLoc(); 688 689 StartFunction(GlobalDecl(D, DynamicInitKind::Initializer), 690 getContext().VoidTy, Fn, getTypes().arrangeNullaryFunction(), 691 FunctionArgList(), D->getLocation(), 692 D->getInit()->getExprLoc()); 693 694 // Use guarded initialization if the global variable is weak. This 695 // occurs for, e.g., instantiated static data members and 696 // definitions explicitly marked weak. 697 // 698 // Also use guarded initialization for a variable with dynamic TLS and 699 // unordered initialization. (If the initialization is ordered, the ABI 700 // layer will guard the whole-TU initialization for us.) 701 if (Addr->hasWeakLinkage() || Addr->hasLinkOnceLinkage() || 702 (D->getTLSKind() == VarDecl::TLS_Dynamic && 703 isTemplateInstantiation(D->getTemplateSpecializationKind()))) { 704 EmitCXXGuardedInit(*D, Addr, PerformInit); 705 } else { 706 EmitCXXGlobalVarDeclInit(*D, Addr, PerformInit); 707 } 708 709 FinishFunction(); 710 } 711 712 void 713 CodeGenFunction::GenerateCXXGlobalInitFunc(llvm::Function *Fn, 714 ArrayRef<llvm::Function *> Decls, 715 ConstantAddress Guard) { 716 { 717 auto NL = ApplyDebugLocation::CreateEmpty(*this); 718 StartFunction(GlobalDecl(), getContext().VoidTy, Fn, 719 getTypes().arrangeNullaryFunction(), FunctionArgList()); 720 // Emit an artificial location for this function. 721 auto AL = ApplyDebugLocation::CreateArtificial(*this); 722 723 llvm::BasicBlock *ExitBlock = nullptr; 724 if (Guard.isValid()) { 725 // If we have a guard variable, check whether we've already performed 726 // these initializations. This happens for TLS initialization functions. 727 llvm::Value *GuardVal = Builder.CreateLoad(Guard); 728 llvm::Value *Uninit = Builder.CreateIsNull(GuardVal, 729 "guard.uninitialized"); 730 llvm::BasicBlock *InitBlock = createBasicBlock("init"); 731 ExitBlock = createBasicBlock("exit"); 732 EmitCXXGuardedInitBranch(Uninit, InitBlock, ExitBlock, 733 GuardKind::TlsGuard, nullptr); 734 EmitBlock(InitBlock); 735 // Mark as initialized before initializing anything else. If the 736 // initializers use previously-initialized thread_local vars, that's 737 // probably supposed to be OK, but the standard doesn't say. 738 Builder.CreateStore(llvm::ConstantInt::get(GuardVal->getType(),1), Guard); 739 740 // The guard variable can't ever change again. 741 EmitInvariantStart( 742 Guard.getPointer(), 743 CharUnits::fromQuantity( 744 CGM.getDataLayout().getTypeAllocSize(GuardVal->getType()))); 745 } 746 747 RunCleanupsScope Scope(*this); 748 749 // When building in Objective-C++ ARC mode, create an autorelease pool 750 // around the global initializers. 751 if (getLangOpts().ObjCAutoRefCount && getLangOpts().CPlusPlus) { 752 llvm::Value *token = EmitObjCAutoreleasePoolPush(); 753 EmitObjCAutoreleasePoolCleanup(token); 754 } 755 756 for (unsigned i = 0, e = Decls.size(); i != e; ++i) 757 if (Decls[i]) 758 EmitRuntimeCall(Decls[i]); 759 760 Scope.ForceCleanup(); 761 762 if (ExitBlock) { 763 Builder.CreateBr(ExitBlock); 764 EmitBlock(ExitBlock); 765 } 766 } 767 768 FinishFunction(); 769 } 770 771 void CodeGenFunction::GenerateCXXGlobalCleanUpFunc( 772 llvm::Function *Fn, 773 const std::vector<std::tuple<llvm::FunctionType *, llvm::WeakTrackingVH, 774 llvm::Constant *>> &DtorsOrStermFinalizers) { 775 { 776 auto NL = ApplyDebugLocation::CreateEmpty(*this); 777 StartFunction(GlobalDecl(), getContext().VoidTy, Fn, 778 getTypes().arrangeNullaryFunction(), FunctionArgList()); 779 // Emit an artificial location for this function. 780 auto AL = ApplyDebugLocation::CreateArtificial(*this); 781 782 // Emit the cleanups, in reverse order from construction. 783 for (unsigned i = 0, e = DtorsOrStermFinalizers.size(); i != e; ++i) { 784 llvm::FunctionType *CalleeTy; 785 llvm::Value *Callee; 786 llvm::Constant *Arg; 787 std::tie(CalleeTy, Callee, Arg) = DtorsOrStermFinalizers[e - i - 1]; 788 789 llvm::CallInst *CI = nullptr; 790 if (Arg == nullptr) { 791 assert( 792 CGM.getCXXABI().useSinitAndSterm() && 793 "Arg could not be nullptr unless using sinit and sterm functions."); 794 CI = Builder.CreateCall(CalleeTy, Callee); 795 } else 796 CI = Builder.CreateCall(CalleeTy, Callee, Arg); 797 798 // Make sure the call and the callee agree on calling convention. 799 if (llvm::Function *F = dyn_cast<llvm::Function>(Callee)) 800 CI->setCallingConv(F->getCallingConv()); 801 } 802 } 803 804 FinishFunction(); 805 } 806 807 /// generateDestroyHelper - Generates a helper function which, when 808 /// invoked, destroys the given object. The address of the object 809 /// should be in global memory. 810 llvm::Function *CodeGenFunction::generateDestroyHelper( 811 Address addr, QualType type, Destroyer *destroyer, 812 bool useEHCleanupForArray, const VarDecl *VD) { 813 FunctionArgList args; 814 ImplicitParamDecl Dst(getContext(), getContext().VoidPtrTy, 815 ImplicitParamDecl::Other); 816 args.push_back(&Dst); 817 818 const CGFunctionInfo &FI = 819 CGM.getTypes().arrangeBuiltinFunctionDeclaration(getContext().VoidTy, args); 820 llvm::FunctionType *FTy = CGM.getTypes().GetFunctionType(FI); 821 llvm::Function *fn = CGM.CreateGlobalInitOrCleanUpFunction( 822 FTy, "__cxx_global_array_dtor", FI, VD->getLocation()); 823 824 CurEHLocation = VD->getBeginLoc(); 825 826 StartFunction(VD, getContext().VoidTy, fn, FI, args); 827 828 emitDestroy(addr, type, destroyer, useEHCleanupForArray); 829 830 FinishFunction(); 831 832 return fn; 833 } 834