From: Ted Kremenek Date: Tue, 17 Jun 2008 19:14:06 +0000 (+0000) Subject: Fix non-termination bug reported by Thomas Clement! X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c1da441bb4df44c08a43591059bdfa1e5d044dc0;p=clang Fix non-termination bug reported by Thomas Clement! git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@52426 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Analysis/BugReporter.cpp b/lib/Analysis/BugReporter.cpp index cccd71bd96..141ee48aa0 100644 --- a/lib/Analysis/BugReporter.cpp +++ b/lib/Analysis/BugReporter.cpp @@ -21,6 +21,7 @@ #include "clang/AST/Expr.h" #include "clang/Analysis/ProgramPoint.h" #include "clang/Analysis/PathDiagnostic.h" +#include "llvm/ADT/DenseSet.h" #include using namespace clang; @@ -205,8 +206,15 @@ MakeReportGraph(ExplodedGraph* G, ExplodedNode* N) { ExplodedNode *Last = 0, *First = 0; + + // Sometimes TrimGraph can contain a cycle because there are multiple BFS + // paths with the same length. We mark the nodes we visit so that we + // don't get stuck in a cycle. + llvm::DenseSet Visited; while (N) { + Visited.insert(N); + ExplodedNode* NewN = G->getNode(N->getLocation(), N->getState()); @@ -214,7 +222,23 @@ MakeReportGraph(ExplodedGraph* G, ExplodedNode* N) { if (Last) Last->addPredecessor(NewN); Last = NewN; - N = N->pred_empty() ? 0 : *(N->pred_begin()); + + if (N->pred_empty()) + break; + + ExplodedNode::pred_iterator PI = N->pred_begin(); + ExplodedNode::pred_iterator PE = N->pred_end(); + N = 0; + + // Look for the first predecessor that we have not already visited. + + for (; PI != PE; ++PI) + if (!Visited.count(*PI)) { + N = *PI; + break; + } + + assert (N && "All predecessors involved in a cycle!"); } return std::make_pair(G, First);