Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/Analysis/FlowSensitive/
H A DDataflowEnvironment.cpp158 ExprToLoc(Other.ExprToLoc), LocToVal(Other.LocToVal), in Environment()
246 if (ExprToLoc != Other.ExprToLoc) in equivalentTo()
281 JoinedEnv.ExprToLoc = intersectDenseMaps(ExprToLoc, Other.ExprToLoc); in join()
282 if (ExprToLoc.size() != JoinedEnv.ExprToLoc.size()) in join()
354 assert(ExprToLoc.find(&CanonE) == ExprToLoc.end()); in setStorageLocation()
355 ExprToLoc[&CanonE] = &Loc; in setStorageLocation()
361 auto It = ExprToLoc.find(&ignoreCFGOmittedNodes(E)); in getStorageLocation()
362 return It == ExprToLoc.end() ? nullptr : &skip(*It->second, SP); in getStorageLocation()
/llvm-project-15.0.7/clang/include/clang/Analysis/FlowSensitive/
H A DDataflowAnalysisContext.h130 assert(ExprToLoc.find(&CanonE) == ExprToLoc.end()); in setStorageLocation()
131 ExprToLoc[&CanonE] = &Loc; in setStorageLocation()
137 auto It = ExprToLoc.find(&ignoreCFGOmittedNodes(E)); in getStorageLocation()
138 return It == ExprToLoc.end() ? nullptr : It->second; in getStorageLocation()
320 llvm::DenseMap<const Expr *, StorageLocation *> ExprToLoc; variable
H A DDataflowEnvironment.h371 llvm::DenseMap<const Expr *, StorageLocation *> ExprToLoc; variable