Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/
H A DDataflowEnvironment.cpp707 if (DeclToLoc != Other.DeclToLoc) in equivalentTo()
742 assert(DeclToLoc.size() <= PrevEnv.DeclToLoc.size()); in widen()
751 if (DeclToLoc.size() != PrevEnv.DeclToLoc.size() || in widen()
794 JoinedEnv.DeclToLoc = intersectDeclToLoc(EnvA.DeclToLoc, EnvB.DeclToLoc); in join()
849 assert(!DeclToLoc.contains(&D)); in setStorageLocation()
856 DeclToLoc[&D] = &Loc; in setStorageLocation()
860 auto It = DeclToLoc.find(&D); in getStorageLocation()
861 if (It == DeclToLoc.end()) in getStorageLocation()
869 void Environment::removeDecl(const ValueDecl &D) { DeclToLoc.erase(&D); } in removeDecl()
1155 for (auto [D, L] : DeclToLoc) { in dump()
H A DDataflowAnalysisContext.cpp104 if (auto *Loc = DeclToLoc.lookup(&D)) in getStableStorageLocation()
107 DeclToLoc[&D] = &Loc; in getStableStorageLocation()
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/FlowSensitive/
H A DDataflowAnalysisContext.h263 llvm::DenseMap<const ValueDecl *, StorageLocation *> DeclToLoc; variable
H A DDataflowEnvironment.h800 llvm::DenseMap<const ValueDecl *, StorageLocation *> DeclToLoc; variable