/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGDeclCXX.cpp | 47 DeclPtr, D.getTLSKind()); in EmitDeclInit() 94 assert(!D.getTLSKind() && "should have rejected this"); in EmitDeclDestroy() 429 if (Kind == GuardKind::TlsGuard || D->getTLSKind()) in EmitCXXGuardedInitBranch() 565 if (D->getTLSKind()) { in EmitCXXGlobalVarDeclInitFunc() 1044 (D->getTLSKind() == VarDecl::TLS_Dynamic && in GenerateCXXGlobalVarDeclInitFunc()
|
H A D | CodeGenModule.cpp | 1798 assert(D.getTLSKind() && "setting TLS mode on non-TLS var!"); in setTLSMode() 3946 if (VD->getTLSKind()) { in VisitVarDecl() 4998 if (D->getTLSKind()) { in GetOrCreateLLVMGlobal() 4999 if (D->getTLSKind() == VarDecl::TLS_Dynamic) in GetOrCreateLLVMGlobal() 5605 if (D->getTLSKind() == VarDecl::TLS_Dynamic && in EmitGlobalVarDefinition() 5632 if (D->getTLSKind() && !GV->isThreadLocal()) { in EmitGlobalVarDefinition() 5633 if (D->getTLSKind() == VarDecl::TLS_Dynamic) in EmitGlobalVarDefinition() 5705 if (D->getTLSKind()) in isVarDeclStrongDefinition() 6089 if (VD->getTLSKind()) in EmitAliasDefinition() 6696 if (VD->getTLSKind()) in GetAddrOfGlobalTemporary()
|
H A D | ItaniumCXXABI.cpp | 2620 !D.getTLSKind(); in EmitGuardedInit() 3004 if (CGM.getCodeGenOpts().CXAAtExit || D.getTLSKind()) in registerGlobalDtor() 3005 return emitGlobalDtorWithCXAAtExit(CGF, dtor, addr, D.getTLSKind()); in registerGlobalDtor() 3022 return VD->getTLSKind() == VarDecl::TLS_Dynamic && in isThreadWrapperReplaceable() 5135 if (D.getTLSKind() != VarDecl::TLS_None) { in registerGlobalDtor()
|
H A D | MicrosoftCXXABI.cpp | 2382 if (D.getTLSKind()) in registerGlobalDtor() 2628 bool ThreadlocalStatic = D.getTLSKind(); in EmitGuardedInit() 2692 if (D.getTLSKind()) in EmitGuardedInit()
|
H A D | CGExpr.cpp | 2695 LV.setThreadLocalRef(VD->getTLSKind() != VarDecl::TLS_None); in setObjCGCLValueClass() 2842 if (VD->getTLSKind() == VarDecl::TLS_Dynamic && in EmitGlobalVarDeclLValue() 2855 if (VD->getTLSKind() != VarDecl::TLS_None) in EmitGlobalVarDeclLValue() 3113 if (VD->getTLSKind() != VarDecl::TLS_None) in EmitDeclRefLValue()
|
H A D | CGDecl.cpp | 286 if (D.getTLSKind()) in getOrCreateStaticVarDecl()
|
H A D | CGStmtOpenMP.cpp | 513 if (CapVar && (CapVar->getTLSKind() != clang::VarDecl::TLS_None)) { in emitOutlinedFunctionPrologue()
|
/freebsd/contrib/llvm-project/clang/lib/InstallAPI/ |
H A D | Visitor.cpp | 242 const bool ThreadLocal = D->getTLSKind() != VarDecl::TLS_None; in VisitVarDecl()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/Targets/ |
H A D | PPC.cpp | 307 else if (VarD->getTLSKind() != VarDecl::TLS_None) in setTargetAttributes()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaDecl.cpp | 4641 if (New->getTLSKind() != Old->getTLSKind()) { in MergeVarDecl() 4642 if (!Old->getTLSKind()) { in MergeVarDecl() 4645 } else if (!New->getTLSKind()) { in MergeVarDecl() 4654 << New->getDeclName() << (New->getTLSKind() == VarDecl::TLS_Dynamic); in MergeVarDecl() 14248 if (var->getTLSKind() == VarDecl::TLS_Static) { in CheckCompleteVariableDeclaration() 14519 assert(VD->getTLSKind()); in CheckThreadLocalForLargeAlignment() 14578 if (VD->getTLSKind()) in FinalizeDeclaration() 14616 if (DLLAttr && VD->getTLSKind()) { in FinalizeDeclaration()
|
H A D | SemaDeclObjC.cpp | 5485 var->getTLSKind()) { in inferObjCARCLifetime()
|
H A D | SemaOpenMP.cpp | 1777 if ((VD && VD->getTLSKind() != VarDecl::TLS_None && in getTopDSA() 3298 if ((VD->getTLSKind() != VarDecl::TLS_None && in CheckOMPThreadPrivateDecl() 3305 << VD << ((VD->getTLSKind() != VarDecl::TLS_None) ? 0 : 1); in CheckOMPThreadPrivateDecl() 3469 if (VD->getTLSKind() != VarDecl::TLS_None || in ActOnOpenMPAllocateDirective()
|
H A D | SemaTemplateInstantiateDecl.cpp | 1264 if (Var->getTLSKind()) in VisitVarDecl()
|
H A D | SemaDeclAttr.cpp | 4065 VD->getTLSKind() != VarDecl::TLS_None) { in AddAlignedAttr()
|
H A D | SemaTemplate.cpp | 6284 if (Var->getTLSKind()) { in CheckTemplateArgumentAddressOfObjectOrFunction()
|
H A D | SemaDeclCXX.cpp | 1953 << (VD->getTLSKind() == VarDecl::TLS_Dynamic); in CheckConstexprDeclStmt()
|
H A D | SemaExpr.cpp | 389 if (VD->getTLSKind() != VarDecl::TLS_None) in DiagnoseUseOfDecl()
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | JSONNodeDumper.cpp | 929 switch (VD->getTLSKind()) { in VisitVarDecl()
|
H A D | TextNodeDumper.cpp | 2230 switch (D->getTLSKind()) { in VisitVarDecl()
|
H A D | MicrosoftMangle.cpp | 4098 Mangler.getStream() << (VD->getTLSKind() ? "??__J" : "??_B"); in mangleStaticGuardVariable()
|
H A D | Decl.cpp | 2150 VarDecl::TLSKind VarDecl::getTLSKind() const { in getTLSKind() function in VarDecl
|
H A D | ExprConstant.cpp | 2299 if (Var->getTLSKind()) in CheckLValueConstantExpression()
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | Attr.td | 131 [{S->getTLSKind() != 0}], "thread-local variables">; 134 [{S->hasGlobalStorage() && !S->getTLSKind()}], 148 S->getTLSKind() == 0}],
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | Decl.h | 1128 TLSKind getTLSKind() const;
|