Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/
H A DDataflowEnvironment.cpp583 if (DeclToLoc != Other.DeclToLoc) in equivalentTo()
614 assert(DeclToLoc.size() <= PrevEnv.DeclToLoc.size()); in widen()
623 if (DeclToLoc.size() != PrevEnv.DeclToLoc.size() || in widen()
671 JoinedEnv.DeclToLoc = intersectDeclToLoc(EnvA.DeclToLoc, EnvB.DeclToLoc); in join()
707 assert(!DeclToLoc.contains(&D)); in setStorageLocation()
708 DeclToLoc[&D] = &Loc; in setStorageLocation()
712 auto It = DeclToLoc.find(&D); in getStorageLocation()
713 if (It == DeclToLoc.end()) in getStorageLocation()
721 void Environment::removeDecl(const ValueDecl &D) { DeclToLoc.erase(&D); } in removeDecl()
1015 for (auto [D, L] : DeclToLoc) in dump()
H A DDataflowAnalysisContext.cpp105 if (auto *Loc = DeclToLoc.lookup(&D)) in getStableStorageLocation()
108 DeclToLoc[&D] = &Loc; in getStableStorageLocation()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Analysis/FlowSensitive/
H A DDataflowAnalysisContext.h258 llvm::DenseMap<const ValueDecl *, StorageLocation *> DeclToLoc; variable
H A DDataflowEnvironment.h701 llvm::DenseMap<const ValueDecl *, StorageLocation *> DeclToLoc; variable