Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/Analysis/FlowSensitive/
H A DDataflowEnvironment.cpp223 DeclToLoc(Other.DeclToLoc), ExprToLoc(Other.ExprToLoc), in Environment()
410 if (ExprToLoc != Other.ExprToLoc) in equivalentTo()
457 assert(ExprToLoc.size() <= PrevEnv.ExprToLoc.size()); in widen()
488 ExprToLoc.size() != PrevEnv.ExprToLoc.size() || in widen()
515 JoinedEnv.ExprToLoc = intersectDenseMaps(ExprToLoc, Other.ExprToLoc); in join()
516 if (ExprToLoc.size() != JoinedEnv.ExprToLoc.size()) in join()
593 assert(ExprToLoc.find(&CanonE) == ExprToLoc.end()); in setStorageLocation()
594 ExprToLoc[&CanonE] = &Loc; in setStorageLocation()
600 auto It = ExprToLoc.find(&ignoreCFGOmittedNodes(E)); in getStorageLocation()
601 return It == ExprToLoc.end() ? nullptr : &skip(*It->second, SP); in getStorageLocation()
[all …]
/openbsd-src/gnu/llvm/clang/include/clang/Analysis/FlowSensitive/
H A DDataflowAnalysisContext.h146 assert(ExprToLoc.find(&CanonE) == ExprToLoc.end()); in setStorageLocation()
147 ExprToLoc[&CanonE] = &Loc; in setStorageLocation()
153 auto It = ExprToLoc.find(&ignoreCFGOmittedNodes(E)); in getStorageLocation()
154 return It == ExprToLoc.end() ? nullptr : It->second; in getStorageLocation()
347 llvm::DenseMap<const Expr *, StorageLocation *> ExprToLoc; variable
H A DDataflowEnvironment.h486 llvm::DenseMap<const Expr *, StorageLocation *> ExprToLoc; variable