| /freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/ |
| H A D | Context.h | 102 return V->hasGlobalStorage() || V->isConstexpr(); in shouldBeGloballyIndexed()
|
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | NonnullGlobalConstantsChecker.cpp | 103 if (!Decl->hasGlobalStorage()) in isGlobalConstString()
|
| H A D | DeadStoresChecker.cpp | 424 if (VD->hasGlobalStorage() && in observeStmt()
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | GlobalDecl.h | 120 cast<VarDecl>(getDecl())->hasGlobalStorage() && in getDynamicInitKind()
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaCUDA.cpp | 122 if (VD && VD->hasGlobalStorage() && !VD->isStaticLocal()) { in CUDATargetContextRAII() 643 assert(!VD->isInvalidDecl() && VD->hasGlobalStorage()); in HasAllowedCUDADeviceStaticInitializer() 693 if (VD->isInvalidDecl() || !VD->hasInit() || !VD->hasGlobalStorage() || in checkAllowedInitializer()
|
| H A D | SemaHLSL.cpp | 3579 if (VD->hasGlobalStorage()) { in ActOnVariableDeclarator() 3702 if (VD->hasGlobalStorage() && VD->getType()->isHLSLResourceRecord()) in ActOnUninitializedVarDecl() 3711 assert(VD->hasGlobalStorage() && VD->getType()->isHLSLIntangibleType() && in collectResourceBindingsOnVarDecl() 3746 assert(VD->hasGlobalStorage() && "expected global variable"); in processExplicitBindingsOnDecl()
|
| H A D | SemaDecl.cpp | 6947 Var->hasGlobalStorage()) in deduceOpenCLAddressSpace() 7411 if (NewVD->hasGlobalStorage() && !NewVD->isStaticLocal()) { in diagnoseOpenCLTypes() 7940 if (!NewVD->hasGlobalStorage()) in ActOnVariableDeclarator() 8335 if (D->hasGlobalStorage() && !D->isStaticLocal()) in getShadowedDeclaration() 8889 (T->isVariableArrayType() && NewVD->hasGlobalStorage())) { in CheckVariableDeclarationType() 14691 bool GlobalStorage = var->hasGlobalStorage(); in CheckCompleteVariableDeclaration() 14932 if (VD->hasGlobalStorage() && VD->isThisDeclarationADefinition() && in FinalizeDeclaration() 15101 VD->hasGlobalStorage()) in FinalizeDeclaratorGroup()
|
| H A D | SemaStmt.cpp | 1261 if (VD->hasGlobalStorage() && VarType.isConstQualified() && in ShouldDiagnoseSwitchCaseNotInEnum() 2053 if (VD->getType().isVolatileQualified() || VD->hasGlobalStorage()) in CheckForLoopConditionalStatement()
|
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/WebKit/ |
| H A D | ASTUtils.cpp | 34 if (VD->hasGlobalStorage() && QT.isConstQualified()) { in tryToFindPtrOrigin()
|
| H A D | RawPtrRefLocalVarsChecker.cpp | 373 else if (V->hasGlobalStorage()) in reportBug()
|
| /freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/ |
| H A D | Transfer.cpp | 239 if (D.hasGlobalStorage()) in ProcessVarDecl() 484 if (D->hasGlobalStorage()) { in VisitMemberExpr()
|
| H A D | ASTOps.cpp | 169 if (V->hasGlobalStorage()) in insertIfGlobal()
|
| /freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Checkers/ |
| H A D | SValExplainer.h | 228 else if (VD->hasGlobalStorage()) in VisitNonParamVarRegion()
|
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
| H A D | LoopUnrolling.cpp | 213 if (VD->hasGlobalStorage()) in isPossiblyEscaped()
|
| H A D | RegionStore.cpp | 1891 (!B.isMainAnalysis() || !VD->hasGlobalStorage())) in getConstantValFromConstArrayInitializer() 2137 (B.isMainAnalysis() && VD->hasGlobalStorage())) in getBindingForField()
|
| H A D | MemRegion.cpp | 1068 if (D->hasGlobalStorage() && !D->isStaticLocal()) { in getVarRegion()
|
| /freebsd/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | LiveVariables.cpp | 139 return D->hasGlobalStorage(); in isAlwaysAlive()
|
| H A D | UninitializedValues.cpp | 59 if (vd->isLocalVarDecl() && !vd->hasGlobalStorage() && in isTrackedVar()
|
| /freebsd/contrib/llvm-project/clang/lib/CIR/CodeGen/ |
| H A D | CIRGenModule.cpp | 626 assert(d->hasGlobalStorage() && "Not a global variable"); in getOrCreateCIRGlobal() 644 assert(d->hasGlobalStorage() && "Not a global variable"); in getAddrOfGlobalVar()
|
| /freebsd/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/ |
| H A D | Registry.cpp | 327 REGISTER_MATCHER(hasGlobalStorage); in RegistryMaps()
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGDeclCXX.cpp | 33 (D.hasGlobalStorage() || in EmitDeclInit()
|
| H A D | CGDecl.cpp | 1155 if (D.hasGlobalStorage()) in createUnnamedGlobalFrom() 2900 if (!VD->hasGlobalStorage()) in EmitOMPAllocateDecl()
|
| /freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/ |
| H A D | ASTMatchers.h | 4516 AST_MATCHER(VarDecl, hasGlobalStorage) { in AST_MATCHER() argument 4517 return Node.hasGlobalStorage(); in AST_MATCHER()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | Attr.td | 140 [{S->hasGlobalStorage() && !S->getTLSKind()}], 144 : SubsetSubject<Var, [{S->hasGlobalStorage() && 150 [{S->hasGlobalStorage()}], "global variables">; 153 [{S->hasGlobalStorage() && 159 [{S->hasGlobalStorage() &&
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | Decl.cpp | 2651 if (hasGlobalStorage() && !getASTContext().getLangOpts().CPlusPlus && in hasConstantInitialization() 2836 if (!hasGlobalStorage()) in isNoDestroy()
|