Home
last modified time | relevance | path

Searched refs:DeclToLoc (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()
407 if (DeclToLoc != Other.DeclToLoc) in equivalentTo()
456 assert(DeclToLoc.size() <= PrevEnv.DeclToLoc.size()); in widen()
487 if (DeclToLoc.size() != PrevEnv.DeclToLoc.size() || in widen()
511 JoinedEnv.DeclToLoc = intersectDenseMaps(DeclToLoc, Other.DeclToLoc); in join()
512 if (DeclToLoc.size() != JoinedEnv.DeclToLoc.size()) in join()
581 assert(DeclToLoc.find(&D) == DeclToLoc.end()); in setStorageLocation()
582 DeclToLoc[&D] = &Loc; in setStorageLocation()
587 auto It = DeclToLoc.find(&D); in getStorageLocation()
588 return It == DeclToLoc.end() ? nullptr : &skip(*It->second, SP); in getStorageLocation()
[all …]
/openbsd-src/gnu/llvm/clang/include/clang/Analysis/FlowSensitive/
H A DDataflowAnalysisContext.h128 assert(DeclToLoc.find(&D) == DeclToLoc.end()); in setStorageLocation()
129 DeclToLoc[&D] = &Loc; in setStorageLocation()
135 auto It = DeclToLoc.find(&D); in getStorageLocation()
136 return It == DeclToLoc.end() ? nullptr : It->second; in getStorageLocation()
346 llvm::DenseMap<const ValueDecl *, StorageLocation *> DeclToLoc; variable
H A DDataflowEnvironment.h485 llvm::DenseMap<const ValueDecl *, StorageLocation *> DeclToLoc; variable