]> granicus.if.org Git - clang/commitdiff
Added "RangedBugReport".
authorTed Kremenek <kremenek@apple.com>
Fri, 11 Apr 2008 18:40:29 +0000 (18:40 +0000)
committerTed Kremenek <kremenek@apple.com>
Fri, 11 Apr 2008 18:40:29 +0000 (18:40 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@49551 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Analysis/PathSensitive/BugReporter.h
lib/Analysis/BugReporter.cpp

index adb18ab42a6f6bebf823689c4ef9b5017f5157cd..e3596b8a12d03d59d664b988ed683e59390cb488 100644 (file)
@@ -68,6 +68,28 @@ public:
                                          ASTContext& Ctx);
 };
   
+  class RangedBugReport : public BugReport {
+  std::vector<SourceRange> Ranges;
+public:
+  RangedBugReport(const BugType& D) : BugReport(D) {}
+  virtual ~RangedBugReport();
+  
+  void addRange(SourceRange R) { Ranges.push_back(R); }
+  
+  virtual void getRanges(const SourceRange*& beg,           
+                         const SourceRange*& end) const {
+    
+    if (Ranges.empty()) {
+      beg = NULL;
+      end = NULL;
+    }
+    else {
+      beg = &Ranges[0];
+      end = beg + Ranges.size();
+    }
+  }
+};
+  
 class BugReporter {
   llvm::SmallPtrSet<void*,10> CachedErrors;
   Diagnostic& Diag;
index 0f7b2359444db652a2d4a7bb032fef65d2f16d5d..148d2582dc97a468e2eb49e584b73d4aa2883df8 100644 (file)
@@ -28,6 +28,8 @@ using namespace clang;
 BugReporter::~BugReporter() {}
 BugType::~BugType() {}
 BugReport::~BugReport() {}
+RangedBugReport::~RangedBugReport() {}
+
 ExplodedGraph<ValueState>& BugReporter::getGraph() { return Eng.getGraph(); }
 
 static inline Stmt* GetStmt(const ProgramPoint& P) {