Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/Analysis/
H A DThreadSafetyCommon.cpp651 assert(CurrentLVarMap[It->second].first == VD); in lookupVarDecl()
652 return CurrentLVarMap[It->second].second; in lookupVarDecl()
670 LVarIdxMap.insert(std::make_pair(VD, CurrentLVarMap.size())); in addVarDecl()
671 CurrentLVarMap.makeWritable(); in addVarDecl()
672 CurrentLVarMap.push_back(std::make_pair(VD, E)); in addVarDecl()
685 CurrentLVarMap.makeWritable(); in updateVarDecl()
686 CurrentLVarMap.elem(It->second).second = E; in updateVarDecl()
697 til::SExpr *CurrE = CurrentLVarMap[i].second; in makePhiNodeVar()
716 Ph->setClangDecl(CurrentLVarMap[i].first); in makePhiNodeVar()
727 CurrentLVarMap.makeWritable(); in makePhiNodeVar()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyCommon.h506 LVarDefinitionMap CurrentLVarMap; variable