From: Ted Kremenek Date: Wed, 27 Aug 2008 01:56:11 +0000 (+0000) Subject: Added "Auditor" interface for auditing the construction of ExplodedGraphs. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2e287540c90255e14208e7e5f43f07cb752a1fd7;p=clang Added "Auditor" interface for auditing the construction of ExplodedGraphs. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@55403 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Analysis/PathSensitive/ExplodedGraph.h b/include/clang/Analysis/PathSensitive/ExplodedGraph.h index c85d1e9107..3406d178dd 100644 --- a/include/clang/Analysis/PathSensitive/ExplodedGraph.h +++ b/include/clang/Analysis/PathSensitive/ExplodedGraph.h @@ -123,7 +123,19 @@ public: bool pred_empty() const { return Preds.empty(); } bool isSink() const { return Succs.getFlag(); } - void markAsSink() { Succs.setFlag(); } + void markAsSink() { Succs.setFlag(); } + + // For debugging. + +public: + + class Auditor { + public: + virtual ~Auditor(); + virtual void AddEdge(ExplodedNodeImpl* Src, ExplodedNodeImpl* Dst) = 0; + }; + + static void SetAuditor(Auditor* A); }; diff --git a/lib/Analysis/ExplodedGraph.cpp b/lib/Analysis/ExplodedGraph.cpp index 0835944250..945416b1b5 100644 --- a/lib/Analysis/ExplodedGraph.cpp +++ b/lib/Analysis/ExplodedGraph.cpp @@ -22,6 +22,26 @@ using namespace clang; +//===----------------------------------------------------------------------===// +// Node auditing. +//===----------------------------------------------------------------------===// + +// An out of line virtual method to provide a home for the class vtable. +ExplodedNodeImpl::Auditor::~Auditor() {} + +#ifndef NDEBUG +static ExplodedNodeImpl::Auditor* NodeAuditor = 0; +#endif + +void ExplodedNodeImpl::SetAuditor(ExplodedNodeImpl::Auditor* A) { +#ifndef NDEBUG + NodeAuditor = A; +#endif +} + +//===----------------------------------------------------------------------===// +// ExplodedNodeImpl. +//===----------------------------------------------------------------------===// static inline std::vector& getVector(void* P) { return *reinterpret_cast*>(P); @@ -31,6 +51,9 @@ void ExplodedNodeImpl::addPredecessor(ExplodedNodeImpl* V) { assert (!V->isSink()); Preds.addNode(V); V->Succs.addNode(this); +#ifndef NDEBUG + if (NodeAuditor) NodeAuditor->AddEdge(V, this); +#endif } void ExplodedNodeImpl::NodeGroup::addNode(ExplodedNodeImpl* N) {