Home
last modified time | relevance | path

Searched refs:ExplodedGraph (Results 1 – 22 of 22) sorted by relevance

/external/clang/lib/StaticAnalyzer/Core/
DExplodedGraph.cpp50 ExplodedGraph::ExplodedGraph() in ExplodedGraph() function in ExplodedGraph
53 ExplodedGraph::~ExplodedGraph() {} in ~ExplodedGraph()
59 bool ExplodedGraph::isInterestingLValueExpr(const Expr *Ex) { in isInterestingLValueExpr()
67 bool ExplodedGraph::shouldCollect(const ExplodedNode *node) { in shouldCollect()
159 void ExplodedGraph::collectNode(ExplodedNode *node) { in collectNode()
175 void ExplodedGraph::reclaimRecentlyAllocatedNodes() { in reclaimRecentlyAllocatedNodes()
213 void ExplodedNode::addPredecessor(ExplodedNode *V, ExplodedGraph &G) { in addPredecessor()
231 void ExplodedNode::NodeGroup::addNode(ExplodedNode *N, ExplodedGraph &G) { in addNode()
296 ExplodedNode *ExplodedGraph::getNode(const ProgramPoint &L, in getNode()
334 ExplodedGraph *
[all …]
DCMakeLists.txt20 ExplodedGraph.cpp
DAndroid.mk29 ExplodedGraph.cpp \
DBugReporter.cpp1820 ExplodedGraph &GRBugReporter::getGraph() { return Eng.getGraph(); } in getGraph()
1881 OwningPtr<ExplodedGraph> Graph;
1891 OwningPtr<ExplodedGraph> G;
1894 TrimmedGraph(const ExplodedGraph *OriginalGraph, in TrimmedGraph()
1932 ExplodedGraph *GNew = new ExplodedGraph(); in createBestReportGraph()
DCoreEngine.cpp276 for (ExplodedGraph::eop_iterator I = G->eop_begin(), in ExecuteWorkListWithInitialState()
DBugReporterVisitors.cpp807 if (ExplodedGraph::isInterestingLValueExpr(Ex) || CallEvent::isCallStmt(Ex)) in trackNullOrUndefValue()
838 if (Inner && ExplodedGraph::isInterestingLValueExpr(Inner)) { in trackNullOrUndefValue()
DCheckerManager.cpp346 void CheckerManager::runCheckersForEndAnalysis(ExplodedGraph &G, in runCheckersForEndAnalysis()
DExprEngine.cpp2337 OwningPtr<ExplodedGraph> TrimmedG(G.trim(Nodes)); in ViewGraph()
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DExplodedGraph.h43 class ExplodedGraph; variable
55 friend class ExplodedGraph; variable
95 void addNode(ExplodedNode *N, ExplodedGraph &G);
178 void addPredecessor(ExplodedNode *V, ExplodedGraph &G);
245 class ExplodedGraph {
296 ExplodedGraph* MakeEmptyGraph() const { in MakeEmptyGraph()
297 return new ExplodedGraph(); in MakeEmptyGraph()
312 ExplodedGraph();
314 ~ExplodedGraph();
371 ExplodedGraph *trim(ArrayRef<const NodeTy *> Nodes,
DCoreEngine.h63 OwningPtr<ExplodedGraph> G;
109 : SubEng(subengine), G(new ExplodedGraph()), in CoreEngine()
115 ExplodedGraph& getGraph() { return *G.get(); } in getGraph()
119 ExplodedGraph* takeGraph() { return G.take(); } in takeGraph()
DExprEngine.h67 ExplodedGraph& G;
160 ExplodedGraph& getGraph() { return G; } in getGraph()
161 const ExplodedGraph& getGraph() const { return G; } in getGraph()
DProgramState.h81 friend class ExplodedGraph; variable
/external/clang/lib/StaticAnalyzer/Checkers/
DAnalyzerStatsChecker.cpp37 void checkEndAnalysis(ExplodedGraph &G, BugReporter &B,ExprEngine &Eng) const;
41 void AnalyzerStatsChecker::checkEndAnalysis(ExplodedGraph &G, in checkEndAnalysis()
55 for (ExplodedGraph::node_iterator I = G.nodes_begin(); in checkEndAnalysis()
DUnreachableCodeChecker.cpp39 void checkEndAnalysis(ExplodedGraph &G, BugReporter &B,
53 void UnreachableCodeChecker::checkEndAnalysis(ExplodedGraph &G, in checkEndAnalysis()
66 for (ExplodedGraph::node_iterator I = G.nodes_begin(), E = G.nodes_end(); in checkEndAnalysis()
DCheckerDocumentation.cpp171 void checkEndAnalysis(ExplodedGraph &G, in checkEndAnalysis()
DIdempotentOperationChecker.cpp76 void checkEndAnalysis(ExplodedGraph &G, BugReporter &B,ExprEngine &Eng) const;
345 void IdempotentOperationChecker::checkEndAnalysis(ExplodedGraph &G, in checkEndAnalysis()
DRetainCountChecker.cpp2380 void checkEndAnalysis(ExplodedGraph &G, BugReporter &BR, in checkEndAnalysis()
/external/clang/lib/StaticAnalyzer/
DREADME.txt25 node in an exploded graph (ExplodedGraph). The term "exploded" comes
29 ExplodedGraph. We start at a root node, which has the entry program
32 state to change, resulting in a new node in the ExplodedGraph with an
49 existing node. Thus the ExplodedGraph is not a DAG; it can contain
54 ProgramState. This immutability is key since the ExplodedGraph represents
116 third generates a graphviz dot file of the ExplodedGraph. This is
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
DBugReporter.h40 class ExplodedGraph; variable
512 ExplodedGraph &getGraph();
546 ExplodedGraph &getGraph() { return BR.getGraph(); }
/external/clang/include/clang/StaticAnalyzer/Core/
DCheckerManager.h41 class ExplodedGraph; variable
284 void runCheckersForEndAnalysis(ExplodedGraph &G, BugReporter &BR,
419 typedef CheckerFn<void (ExplodedGraph &, BugReporter &, ExprEngine &)>
DChecker.h217 static void _checkEndAnalysis(void *checker, ExplodedGraph &G, in _checkEndAnalysis()
/external/clang/test/Analysis/
Dmisc-ps.m863 // the ExplodedGraph (causing a false positive)