Searched refs:ExprToVal (Results 1 – 2 of 2) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/ |
H A D | DataflowEnvironment.cpp | 714 if (!compareKeyToValueMaps(ExprToVal, Other.ExprToVal, *this, Other, Model)) in equivalentTo() 744 assert(ExprToVal.size() <= PrevEnv.ExprToVal.size()); in widen() 747 ExprToVal = widenKeyToValueMap(ExprToVal, PrevEnv.ExprToVal, *this, PrevEnv, in widen() 754 ExprToVal.size() != PrevEnv.ExprToVal.size() || in widen() 806 JoinedEnv.ExprToVal = joinExprMaps(EnvA.ExprToVal, EnvB.ExprToVal); in join() 934 ExprToVal[&CanonE] = &Val; in setValue() 955 auto It = ExprToVal.find(&ignoreCFGOmittedNodes(E)); in getValue() 956 return It == ExprToVal.end() ? nullptr : It->second; in getValue() 1165 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
|