Searched refs:ExprToVal (Results 1 – 2 of 2) sorted by relevance
| /freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/ |
| H A D | DataflowEnvironment.cpp | 713 if (!compareKeyToValueMaps(ExprToVal, Other.ExprToVal, *this, Other, Model)) in equivalentTo() 743 assert(ExprToVal.size() <= PrevEnv.ExprToVal.size()); in widen() 746 ExprToVal = widenKeyToValueMap(ExprToVal, PrevEnv.ExprToVal, *this, PrevEnv, in widen() 753 ExprToVal.size() != PrevEnv.ExprToVal.size() || in widen() 805 JoinedEnv.ExprToVal = joinExprMaps(EnvA.ExprToVal, EnvB.ExprToVal); in join() 933 ExprToVal[&CanonE] = &Val; in setValue() 954 auto It = ExprToVal.find(&ignoreCFGOmittedNodes(E)); in getValue() 955 return It == ExprToVal.end() ? nullptr : It->second; in getValue() 1164 for (auto [E, V] : ExprToVal) in dump()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Analysis/FlowSensitive/ |
| H A D | DataflowEnvironment.h | 806 llvm::MapVector<const Expr *, Value *> ExprToVal; variable
|