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.cpp708 if (DeclToLoc != Other.DeclToLoc) in equivalentTo()
743 assert(DeclToLoc.size() <= PrevEnv.DeclToLoc.size()); in widen()
752 if (DeclToLoc.size() != PrevEnv.DeclToLoc.size() || in widen()
795 JoinedEnv.DeclToLoc = intersectDeclToLoc(EnvA.DeclToLoc, EnvB.DeclToLoc); in join()
850 assert(!DeclToLoc.contains(&D)); in setStorageLocation()
857 DeclToLoc[&D] = &Loc; in setStorageLocation()
861 auto It = DeclToLoc.find(&D); in getStorageLocation()
862 if (It == DeclToLoc.end()) in getStorageLocation()
870 void Environment::removeDecl(const ValueDecl &D) { DeclToLoc.erase(&D); } in removeDecl()
1156 for (auto [D, L] : DeclToLoc) { in dump()
H A DDataflowAnalysisContext.cpp106 if (auto *Loc = DeclToLoc.lookup(&D)) in getStableStorageLocation()
109 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