Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DExplodedGraph.cpp42 ExplodedGraph::ExplodedGraph() = default;
44 ExplodedGraph::~ExplodedGraph() = default;
50 bool ExplodedGraph::isInterestingLValueExpr(const Expr *Ex) { in isInterestingLValueExpr()
57 bool ExplodedGraph::shouldCollect(const ExplodedNode *node) { in shouldCollect()
154 void ExplodedGraph::collectNode(ExplodedNode *node) { in collectNode()
170 void ExplodedGraph::reclaimRecentlyAllocatedNodes() { in reclaimRecentlyAllocatedNodes()
205 void ExplodedNode::addPredecessor(ExplodedNode *V, ExplodedGraph &G) { in addPredecessor()
394 ExplodedNode *ExplodedGraph::getNode(const ProgramPoint &L, in getNode()
441 std::unique_ptr<ExplodedGraph>
442 ExplodedGraph::trim(ArrayRef<const NodeTy *> Sinks, in trim()
[all …]
H A DBugReporter.cpp205 std::unique_ptr<const ExplodedGraph> BugPath;
227 BugReporterContext BRC, std::unique_ptr<ExplodedGraph> BugPath,
1978 BugReporterContext BRC, std::unique_ptr<ExplodedGraph> BugPath, in PathDiagnosticBuilder()
2450 const ExplodedGraph &PathSensitiveBugReporter::getGraph() const { in getGraph()
2492 std::unique_ptr<ExplodedGraph> BugPath;
2500 std::unique_ptr<ExplodedGraph> TrimmedGraph;
2544 BugPathGetter(const ExplodedGraph *OriginalGraph,
2552 BugPathGetter::BugPathGetter(const ExplodedGraph *OriginalGraph, in BugPathGetter()
2627 auto GNew = std::make_unique<ExplodedGraph>(); in getNextBugPath()
H A DCoreEngine.cpp201 for (ExplodedGraph::eop_iterator I = G.eop_begin(), E = G.eop_end(); I != E; in ExecuteWorkListWithInitialState()
H A DExprEngine.cpp3121 struct DOTGraphTraits<ExplodedGraph*> : public DefaultDOTGraphTraits {
3168 static bool isNodeHidden(const ExplodedNode *N, const ExplodedGraph *G) { in isNodeHidden()
3172 static std::string getNodeLabel(const ExplodedNode *N, ExplodedGraph *G){ in getNodeLabel()
3266 std::unique_ptr<ExplodedGraph> TrimmedG(G.trim(Nodes)); in DumpGraph()
H A DCheckerManager.cpp401 void CheckerManager::runCheckersForEndAnalysis(ExplodedGraph &G, in runCheckersForEndAnalysis()
H A DBugReporterVisitors.cpp2088 if (ExplodedGraph::isInterestingLValueExpr(Inner)) { in handle()
2273 if (ExplodedGraph::isInterestingLValueExpr(Inner)) in handle()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExplodedGraph.h54 class ExplodedGraph; variable
69 friend class ExplodedGraph; variable
106 void addNode(ExplodedNode *N, ExplodedGraph &G);
197 void addPredecessor(ExplodedNode *V, ExplodedGraph &G);
304 class ExplodedGraph {
346 ExplodedGraph();
347 ~ExplodedGraph();
366 std::unique_ptr<ExplodedGraph> MakeEmptyGraph() const { in MakeEmptyGraph()
367 return std::make_unique<ExplodedGraph>(); in MakeEmptyGraph()
439 std::unique_ptr<ExplodedGraph>
[all …]
H A DExprEngine.h150 ExplodedGraph &G;
261 ExplodedGraph &getGraph() { return G; } in getGraph()
262 const ExplodedGraph &getGraph() const { return G; } in getGraph()
H A DCoreEngine.h75 mutable ExplodedGraph G;
141 ExplodedGraph &getGraph() { return G; } in getGraph()
H A DProgramState.h81 friend class ExplodedGraph; variable
/freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DAnalyzerStatsChecker.cpp36 void checkEndAnalysis(ExplodedGraph &G, BugReporter &B,ExprEngine &Eng) const;
40 void AnalyzerStatsChecker::checkEndAnalysis(ExplodedGraph &G, in checkEndAnalysis()
54 for (ExplodedGraph::node_iterator I = G.nodes_begin(); in checkEndAnalysis()
H A DUnreachableCodeChecker.cpp34 void checkEndAnalysis(ExplodedGraph &G, BugReporter &B,
48 void UnreachableCodeChecker::checkEndAnalysis(ExplodedGraph &G, in checkEndAnalysis()
61 for (ExplodedGraph::node_iterator I = G.nodes_begin(), E = G.nodes_end(); in checkEndAnalysis()
H A DCheckerDocumentation.cpp205 void checkEndAnalysis(ExplodedGraph &G, in checkEndAnalysis()
H A DExprInspectionChecker.cpp69 void checkEndAnalysis(ExplodedGraph &G, BugReporter &BR,
371 void ExprInspectionChecker::checkEndAnalysis(ExplodedGraph &G, BugReporter &BR, in checkEndAnalysis()
H A DAnalysisOrderChecker.cpp175 void checkEndAnalysis(ExplodedGraph &G, BugReporter &BR, in checkEndAnalysis()
H A DDebugCheckers.cpp304 void checkEndAnalysis(ExplodedGraph &G, BugReporter &B,ExprEngine &Eng) const { in checkEndAnalysis()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/
H A DCheckerManager.h47 class ExplodedGraph; variable
347 void runCheckersForEndAnalysis(ExplodedGraph &G, BugReporter &BR,
501 CheckerFn<void (ExplodedGraph &, BugReporter &, ExprEngine &)>;
H A DChecker.h228 static void _checkEndAnalysis(void *checker, ExplodedGraph &G, in _checkEndAnalysis()
H A DAnalyzerOptions.def344 "How often nodes in the ExplodedGraph should be recycled to save memory. "
/freebsd-13.1/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugReporter.h60 class ExplodedGraph; variable
684 const ExplodedGraph &getGraph() const;
/freebsd-13.1/lib/clang/libclang/
H A DMakefile676 SRCS_FUL+= StaticAnalyzer/Core/ExplodedGraph.cpp