/freebsd/contrib/llvm-project/clang/lib/AST/Interp/ |
H A D | Context.h | 99 return V->hasGlobalStorage() || V->isConstexpr(); in shouldBeGloballyIndexed()
|
H A D | Interp.cpp | 327 D && D->hasGlobalStorage() && D != S.EvaluatingDecl && !IsConstType(D)) { in CheckConstant() 478 VD && VD->hasGlobalStorage()) { in CheckInitialized()
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
H A D | NonnullGlobalConstantsChecker.cpp | 104 if (!Decl->hasGlobalStorage()) in isGlobalConstString()
|
H A D | CStringChecker.cpp | 1079 if (Decl->getType().isConstQualified() && Decl->hasGlobalStorage()) { in getCStringLength()
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | GlobalDecl.h | 117 cast<VarDecl>(getDecl())->hasGlobalStorage() && in getDynamicInitKind()
|
H A D | Decl.h | 1174 bool hasGlobalStorage() const { return !hasLocalStorage(); } in hasGlobalStorage() function
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/WebKit/ |
H A D | UncountedLocalVarsChecker.cpp | 271 else if (V->hasGlobalStorage()) in reportBug()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaCUDA.cpp | 124 if (VD && VD->hasGlobalStorage() && !VD->isStaticLocal()) { in CUDATargetContextRAII() 628 assert(!VD->isInvalidDecl() && VD->hasGlobalStorage()); in HasAllowedCUDADeviceStaticInitializer() 668 if (VD->isInvalidDecl() || !VD->hasInit() || !VD->hasGlobalStorage() || in checkAllowedInitializer()
|
H A D | SemaDecl.cpp | 6827 Var->hasGlobalStorage()) in deduceOpenCLAddressSpace() 7241 if (NewVD->hasGlobalStorage() && !NewVD->isStaticLocal()) { in diagnoseOpenCLTypes() 7758 if (!NewVD->hasGlobalStorage()) in ActOnVariableDeclarator() 8144 if (D->hasGlobalStorage() && !D->isStaticLocal()) in getShadowedDeclaration() 8676 (T->isVariableArrayType() && NewVD->hasGlobalStorage())) { in CheckVariableDeclarationType() 14326 bool GlobalStorage = var->hasGlobalStorage(); in CheckCompleteVariableDeclaration() 14547 if (VD->hasGlobalStorage() && VD->isThisDeclarationADefinition() && in FinalizeDeclaration() 14713 VD->hasGlobalStorage()) in FinalizeDeclaratorGroup()
|
H A D | SemaStmt.cpp | 1200 if (VD->hasGlobalStorage() && VarType.isConstQualified() && in ShouldDiagnoseSwitchCaseNotInEnum() 1954 if (VD->getType().isVolatileQualified() || VD->hasGlobalStorage()) in CheckForLoopConditionalStatement()
|
H A D | SemaOpenMP.cpp | 1316 if (VD && VD->hasGlobalStorage()) in getDSA() 3049 return VD->hasGlobalStorage() && in ValidateCandidate() 3124 if (Kind == OMPD_threadprivate && !VD->hasGlobalStorage()) { in ActOnOpenMPIdExpression() 3485 if (Allocator && VD->hasGlobalStorage()) { in ActOnOpenMPAllocateDirective() 3822 if (VD->hasGlobalStorage() && CS && !CS->capturesVariable(VD) && in VisitDeclRefExpr() 22215 VD->hasGlobalStorage()) in ActOnOpenMPDeclareTargetName() 22229 VD->hasGlobalStorage()) { in checkDeclInTargetContext() 22360 TargetVarDecl->hasInit() && TargetVarDecl->hasGlobalStorage()) { in declareTargetInitializer()
|
/freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/ |
H A D | ASTOps.cpp | 169 if (V->hasGlobalStorage()) in insertIfGlobal()
|
H A D | Transfer.cpp | 234 if (D.hasGlobalStorage()) in ProcessVarDecl() 479 if (D->hasGlobalStorage()) { in VisitMemberExpr()
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
H A D | LoopUnrolling.cpp | 213 if (VD->hasGlobalStorage()) in isPossiblyEscaped()
|
H A D | RegionStore.cpp | 1732 (!B.isMainAnalysis() || !VD->hasGlobalStorage())) in getConstantValFromConstArrayInitializer() 1978 (B.isMainAnalysis() && VD->hasGlobalStorage())) in getBindingForField()
|
H A D | MemRegion.cpp | 1029 if (D->hasGlobalStorage() && !D->isStaticLocal()) { in getVarRegion()
|
/freebsd/contrib/llvm-project/clang/lib/Analysis/ |
H A D | LiveVariables.cpp | 138 return D->hasGlobalStorage(); in isAlwaysAlive()
|
H A D | UninitializedValues.cpp | 61 if (vd->isLocalVarDecl() && !vd->hasGlobalStorage() && in isTrackedVar()
|
/freebsd/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/ |
H A D | Registry.cpp | 324 REGISTER_MATCHER(hasGlobalStorage); in RegistryMaps()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGDeclCXX.cpp | 32 (D.hasGlobalStorage() || in EmitDeclInit()
|
H A D | CGDecl.cpp | 1163 if (D.hasGlobalStorage()) in createUnnamedGlobalFrom() 2798 if (!VD->hasGlobalStorage()) in EmitOMPAllocateDecl()
|
H A D | CodeGenModule.cpp | 3970 SafeToInline = !V->hasGlobalStorage() || V->hasAttr<DLLImportAttr>(); in VisitDeclRefExpr() 5175 assert(D->hasGlobalStorage() && "Not a global variable"); in GetAddrOfGlobalVar()
|
/freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/ |
H A D | ASTMatchers.h | 4423 AST_MATCHER(VarDecl, hasGlobalStorage) { in AST_MATCHER() argument 4424 return Node.hasGlobalStorage(); in AST_MATCHER()
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | Attr.td | 134 [{S->hasGlobalStorage() && !S->getTLSKind()}], 138 [{S->hasGlobalStorage()}], "global variables">; 141 [{S->hasGlobalStorage() && 147 [{S->hasGlobalStorage() &&
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | Decl.cpp | 2617 if (hasGlobalStorage() && !getASTContext().getLangOpts().CPlusPlus && in hasConstantInitialization() 2806 return hasGlobalStorage() && (hasAttr<NoDestroyAttr>() || in isNoDestroy()
|