Home
last modified time | relevance | path

Searched refs:DeclToLoc (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/clang/lib/Analysis/FlowSensitive/
H A DDataflowEnvironment.cpp157 : DACtx(Other.DACtx), DeclToLoc(Other.DeclToLoc), in Environment()
243 if (DeclToLoc != Other.DeclToLoc) in equivalentTo()
277 JoinedEnv.DeclToLoc = intersectDenseMaps(DeclToLoc, Other.DeclToLoc); in join()
278 if (DeclToLoc.size() != JoinedEnv.DeclToLoc.size()) in join()
342 assert(DeclToLoc.find(&D) == DeclToLoc.end()); in setStorageLocation()
343 DeclToLoc[&D] = &Loc; in setStorageLocation()
348 auto It = DeclToLoc.find(&D); in getStorageLocation()
349 return It == DeclToLoc.end() ? nullptr : &skip(*It->second, SP); in getStorageLocation()
/llvm-project-15.0.7/clang/include/clang/Analysis/FlowSensitive/
H A DDataflowAnalysisContext.h112 assert(DeclToLoc.find(&D) == DeclToLoc.end()); in setStorageLocation()
113 DeclToLoc[&D] = &Loc; in setStorageLocation()
119 auto It = DeclToLoc.find(&D); in getStorageLocation()
120 return It == DeclToLoc.end() ? nullptr : It->second; in getStorageLocation()
319 llvm::DenseMap<const ValueDecl *, StorageLocation *> DeclToLoc; variable
H A DDataflowEnvironment.h370 llvm::DenseMap<const ValueDecl *, StorageLocation *> DeclToLoc; variable