Home
last modified time | relevance | path

Searched refs:CFGStmtMap (Results 1 – 8 of 8) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Analysis/
H A DCFGStmtMap.h25 class CFGStmtMap {
29 CFGStmtMap(ParentMap *pm, void *m) : PM(pm), M(m) {} in CFGStmtMap() function
32 ~CFGStmtMap();
36 static CFGStmtMap *Build(CFG* C, ParentMap *PM);
45 return const_cast<CFGStmtMap*>(this)->getBlock(const_cast<Stmt*>(S)); in getBlock()
H A DAnalysisDeclContext.h38 class CFGStmtMap; variable
78 std::unique_ptr<CFGStmtMap> cfgStmtMap;
161 CFGStmtMap *getCFGStmtMap();
/freebsd-12.1/contrib/llvm/tools/clang/lib/Analysis/
H A DCFGStmtMap.cpp25 CFGStmtMap::~CFGStmtMap() { delete AsMap(M); } in ~CFGStmtMap()
27 CFGBlock *CFGStmtMap::getBlock(Stmt *S) { in getBlock()
78 CFGStmtMap *CFGStmtMap::Build(CFG *C, ParentMap *PM) { in Build()
89 return new CFGStmtMap(PM, SM); in Build()
H A DAnalysisDeclContext.cpp250 CFGStmtMap *AnalysisDeclContext::getCFGStmtMap() { in getCFGStmtMap()
255 cfgStmtMap.reset(CFGStmtMap::Build(c, &getParentMap())); in getCFGStmtMap()
/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DAnalysisOrderChecker.cpp133 CFGStmtMap *Map = C.getCurrentAnalysisDeclContext()->getCFGStmtMap(); in checkEndFunction()
/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DCallEvent.cpp209 CFGStmtMap *Map = LCtx->getAnalysisDeclContext()->getCFGStmtMap(); in getCalleeStackFrame()
H A DBugReporterVisitors.cpp1475 CFGStmtMap *Map = CurLC->getAnalysisDeclContext()->getCFGStmtMap(); in VisitNode()
/freebsd-12.1/lib/clang/libclang/
H A DMakefile125 SRCS_MIN+= Analysis/CFGStmtMap.cpp