Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/
H A DDataflowEnvironment.cpp586 if (ExprToLoc != Other.ExprToLoc) in equivalentTo()
616 assert(ExprToLoc.size() <= PrevEnv.ExprToLoc.size()); in widen()
624 ExprToLoc.size() != PrevEnv.ExprToLoc.size() || in widen()
730 assert(!ExprToLoc.contains(&CanonE)); in setStorageLocation()
731 ExprToLoc[&CanonE] = &Loc; in setStorageLocation()
738 auto It = ExprToLoc.find(&ignoreCFGOmittedNodes(E)); in getStorageLocation()
739 return It == ExprToLoc.end() ? nullptr : &*It->second; in getStorageLocation()
840 auto It = ExprToLoc.find(&ignoreCFGOmittedNodes(E)); in getValue()
841 if (It == ExprToLoc.end()) in getValue()
1019 for (auto [E, L] : ExprToLoc) in dump()
H A DDataflowAnalysisContext.cpp116 if (auto *Loc = ExprToLoc.lookup(&CanonE)) in getStableStorageLocation()
119 ExprToLoc[&CanonE] = &Loc; in getStableStorageLocation()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Analysis/FlowSensitive/
H A DDataflowAnalysisContext.h259 llvm::DenseMap<const Expr *, StorageLocation *> ExprToLoc; variable
H A DDataflowEnvironment.h702 llvm::DenseMap<const Expr *, StorageLocation *> ExprToLoc; variable