clang  3.7.0
Public Types | Public Member Functions | Protected Member Functions | List of all members
clang::ento::BugReporter Class Reference

#include <BugReporter.h>

Inheritance diagram for clang::ento::BugReporter:
[legend]

Public Types

enum  Kind { BaseBRKind, GRBugReporterKind }
 
typedef BugTypesTy::iterator iterator
 Iterator over the set of BugTypes tracked by the BugReporter. More...
 
typedef llvm::FoldingSet
< BugReportEquivClass >
::iterator 
EQClasses_iterator
 Iterator over the set of BugReports tracked by the BugReporter. More...
 

Public Member Functions

 BugReporter (BugReporterData &d)
 
virtual ~BugReporter ()
 
void FlushReports ()
 Generate and flush diagnostics for all bug reports. More...
 
Kind getKind () const
 
DiagnosticsEnginegetDiagnostic ()
 
ArrayRef
< PathDiagnosticConsumer * > 
getPathDiagnosticConsumers ()
 
iterator begin ()
 
iterator end ()
 
EQClasses_iterator EQClasses_begin ()
 
EQClasses_iterator EQClasses_end ()
 
ASTContextgetContext ()
 
SourceManagergetSourceManager ()
 
AnalyzerOptionsgetAnalyzerOptions ()
 
virtual bool generatePathDiagnostic (PathDiagnostic &pathDiagnostic, PathDiagnosticConsumer &PC, ArrayRef< BugReport * > &bugReports)
 
bool RemoveUnneededCalls (PathPieces &pieces, BugReport *R)
 
void Register (BugType *BT)
 
void emitReport (std::unique_ptr< BugReport > R)
 Add the given report to the set of reports tracked by BugReporter. More...
 
void EmitBasicReport (const Decl *DeclWithIssue, const CheckerBase *Checker, StringRef BugName, StringRef BugCategory, StringRef BugStr, PathDiagnosticLocation Loc, ArrayRef< SourceRange > Ranges=None)
 
void EmitBasicReport (const Decl *DeclWithIssue, CheckName CheckName, StringRef BugName, StringRef BugCategory, StringRef BugStr, PathDiagnosticLocation Loc, ArrayRef< SourceRange > Ranges=None)
 

Protected Member Functions

 BugReporter (BugReporterData &d, Kind k)
 

Detailed Description

BugReporter is a utility class for generating PathDiagnostics for analysis. It collects the BugReports and BugTypes and knows how to generate and flush the corresponding diagnostics.

Definition at line 388 of file BugReporter.h.

Member Typedef Documentation

Iterator over the set of BugReports tracked by the BugReporter.

Definition at line 442 of file BugReporter.h.

typedef BugTypesTy::iterator clang::ento::BugReporter::iterator

Iterator over the set of BugTypes tracked by the BugReporter.

Definition at line 437 of file BugReporter.h.

Member Enumeration Documentation

Enumerator
BaseBRKind 
GRBugReporterKind 

Definition at line 390 of file BugReporter.h.

Constructor & Destructor Documentation

clang::ento::BugReporter::BugReporter ( BugReporterData d,
Kind  k 
)
inlineprotected

Definition at line 415 of file BugReporter.h.

clang::ento::BugReporter::BugReporter ( BugReporterData d)
inline

Definition at line 419 of file BugReporter.h.

BugReporter::~BugReporter ( )
virtual

Definition at line 2745 of file BugReporter.cpp.

Member Function Documentation

iterator clang::ento::BugReporter::begin ( )
inline

Definition at line 438 of file BugReporter.h.

Referenced by clang::ento::ExprEngine::ViewGraph().

void BugReporter::EmitBasicReport ( const Decl DeclWithIssue,
const CheckerBase Checker,
StringRef  BugName,
StringRef  BugCategory,
StringRef  BugStr,
PathDiagnosticLocation  Loc,
ArrayRef< SourceRange Ranges = None 
)
void BugReporter::EmitBasicReport ( const Decl DeclWithIssue,
CheckName  CheckName,
StringRef  BugName,
StringRef  BugCategory,
StringRef  BugStr,
PathDiagnosticLocation  Loc,
ArrayRef< SourceRange Ranges = None 
)

Definition at line 3452 of file BugReporter.cpp.

References clang::ento::BugReport::BT.

void BugReporter::emitReport ( std::unique_ptr< BugReport R)

Add the given report to the set of reports tracked by BugReporter.

The reports are usually generated by the checkers. Further, they are folded based on the profile value, which is done to coalesce similar reports.

Definition at line 3225 of file BugReporter.cpp.

References clang::ento::BugReport::BT, clang::ento::BugReport::BugReportEquivClass, clang::AnalysisDeclContext::isBodyAutosynthesized(), and clang::AnalysisDeclContext::isBodyAutosynthesizedFromModelFile().

Referenced by clang::ento::CheckerContext::emitReport().

iterator clang::ento::BugReporter::end ( )
inline

Definition at line 439 of file BugReporter.h.

Referenced by clang::ento::ExprEngine::ViewGraph().

EQClasses_iterator clang::ento::BugReporter::EQClasses_begin ( )
inline

Definition at line 443 of file BugReporter.h.

Referenced by clang::ento::ExprEngine::ViewGraph().

EQClasses_iterator clang::ento::BugReporter::EQClasses_end ( )
inline

Definition at line 444 of file BugReporter.h.

Referenced by clang::ento::ExprEngine::ViewGraph().

void BugReporter::FlushReports ( )

Generate and flush diagnostics for all bug reports.

Definition at line 2756 of file BugReporter.cpp.

Referenced by clang::ento::ExprEngine::~ExprEngine().

virtual bool clang::ento::BugReporter::generatePathDiagnostic ( PathDiagnostic pathDiagnostic,
PathDiagnosticConsumer PC,
ArrayRef< BugReport * > &  bugReports 
)
inlinevirtual

Reimplemented in clang::ento::GRBugReporter.

Definition at line 452 of file BugReporter.h.

AnalyzerOptions& clang::ento::BugReporter::getAnalyzerOptions ( )
inline

Definition at line 450 of file BugReporter.h.

References clang::ento::BugReporterData::getAnalyzerOptions().

ASTContext& clang::ento::BugReporter::getContext ( )
inline
DiagnosticsEngine& clang::ento::BugReporter::getDiagnostic ( )
inline

Definition at line 428 of file BugReporter.h.

References clang::ento::BugReporterData::getDiagnostic().

Kind clang::ento::BugReporter::getKind ( ) const
inline

Definition at line 426 of file BugReporter.h.

Referenced by clang::ento::GRBugReporter::classof().

ArrayRef<PathDiagnosticConsumer*> clang::ento::BugReporter::getPathDiagnosticConsumers ( )
inline
SourceManager& clang::ento::BugReporter::getSourceManager ( )
inline
void BugReporter::Register ( BugType BT)

Definition at line 3221 of file BugReporter.cpp.

bool clang::ento::BugReporter::RemoveUnneededCalls ( PathPieces pieces,
BugReport R 
)

The documentation for this class was generated from the following files: