Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/
H A DDataflowEnvironment.cpp711 if (ExprToLoc != Other.ExprToLoc) in equivalentTo()
745 assert(ExprToLoc.size() <= PrevEnv.ExprToLoc.size()); in widen()
753 ExprToLoc.size() != PrevEnv.ExprToLoc.size() || in widen()
807 JoinedEnv.ExprToLoc = joinExprMaps(EnvA.ExprToLoc, EnvB.ExprToLoc); in join()
879 assert(!ExprToLoc.contains(&CanonE)); in setStorageLocation()
880 ExprToLoc[&CanonE] = &Loc; in setStorageLocation()
887 auto It = ExprToLoc.find(&ignoreCFGOmittedNodes(E)); in getStorageLocation()
888 return It == ExprToLoc.end() ? nullptr : &*It->second; in getStorageLocation()
959 auto It = ExprToLoc.find(&ignoreCFGOmittedNodes(E)); in getValue()
960 if (It == ExprToLoc.end()) in getValue()
[all …]
H A DDataflowAnalysisContext.cpp117 if (auto *Loc = ExprToLoc.lookup(&CanonE)) in getStableStorageLocation()
120 ExprToLoc[&CanonE] = &Loc; in getStableStorageLocation()
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/FlowSensitive/
H A DDataflowAnalysisContext.h264 llvm::DenseMap<const Expr *, StorageLocation *> ExprToLoc; variable
H A DDataflowEnvironment.h801 llvm::DenseMap<const Expr *, StorageLocation *> ExprToLoc; variable