Home
last modified time | relevance | path

Searched refs:LocToVal (Results 1 – 2 of 2) sorted by relevance

/openbsd-src/gnu/llvm/clang/lib/Analysis/FlowSensitive/
H A DDataflowEnvironment.cpp224 LocToVal(Other.LocToVal), MemberLocToStruct(Other.MemberLocToStruct), in Environment()
392 this->LocToVal = std::move(CalleeEnv.LocToVal); in popCall()
414 for (auto &Entry : LocToVal) { in equivalentTo()
421 auto It = Other.LocToVal.find(Loc); in equivalentTo()
422 if (It == Other.LocToVal.end()) in equivalentTo()
461 for (auto &Entry : LocToVal) { in widen()
468 auto PrevIt = PrevEnv.LocToVal.find(Loc); in widen()
469 if (PrevIt == PrevEnv.LocToVal.end()) in widen()
484 LocToVal = std::move(WidenedLocToVal); in widen()
489 LocToVal.size() != PrevEnv.LocToVal.size() || in widen()
[all …]
/openbsd-src/gnu/llvm/clang/include/clang/Analysis/FlowSensitive/
H A DDataflowEnvironment.h488 llvm::DenseMap<const StorageLocation *, Value *> LocToVal; variable