clang API Documentation

Classes | Enumerations | Functions
clang::serialized_diags Namespace Reference

Classes

struct  Location
 A location that is represented in the serialized diagnostics. More...
class  SerializedDiagnosticReader
 A base class that handles reading serialized diagnostics from a file. More...

Enumerations

enum  SDError {
  CouldNotLoad = 1, InvalidSignature, InvalidDiagnostics, MalformedTopLevelBlock,
  MalformedSubBlock, MalformedBlockInfoBlock, MalformedMetadataBlock, MalformedDiagnosticBlock,
  MalformedDiagnosticRecord, MissingVersion, VersionMismatch, UnsupportedConstruct,
  HandlerFailed
}
enum  BlockIDs { BLOCK_META = llvm::bitc::FIRST_APPLICATION_BLOCKID, BLOCK_DIAG }
enum  RecordIDs {
  RECORD_VERSION = 1, RECORD_DIAG, RECORD_SOURCE_RANGE, RECORD_DIAG_FLAG,
  RECORD_CATEGORY, RECORD_FILENAME, RECORD_FIXIT, RECORD_FIRST = RECORD_VERSION,
  RECORD_LAST = RECORD_FIXIT
}
enum  Level {
  Ignored = 0, Note, Warning, Error,
  Fatal, Remark
}
 A stable version of DiagnosticIDs::Level. More...
enum  { VersionNumber = 2 }
 The serialized diagnostics version number. More...

Functions

std::unique_ptr
< DiagnosticConsumer
create (StringRef OutputFile, DiagnosticOptions *Diags, bool MergeChildRecords=false)
 Returns a DiagnosticConsumer that serializes diagnostics to a bitcode file.
const std::error_category & SDErrorCategory ()
std::error_code make_error_code (SDError E)

Enumeration Type Documentation

anonymous enum

The serialized diagnostics version number.

Enumerator:
VersionNumber 

Definition at line 54 of file SerializedDiagnostics.h.

Enumerator:
BLOCK_META 

A top-level block which represents any meta data associated with the diagostics, including versioning of the format.

BLOCK_DIAG 

The this block acts as a container for all the information for a specific diagnostic.

Definition at line 18 of file SerializedDiagnostics.h.

A stable version of DiagnosticIDs::Level.

Do not change the order of values in this enum, and please increment the serialized diagnostics version number when you add to it.

Enumerator:
Ignored 
Note 
Warning 
Error 
Fatal 
Remark 

Definition at line 44 of file SerializedDiagnostics.h.

Enumerator:
RECORD_VERSION 
RECORD_DIAG 
RECORD_SOURCE_RANGE 
RECORD_DIAG_FLAG 
RECORD_CATEGORY 
RECORD_FILENAME 
RECORD_FIXIT 
RECORD_FIRST 
RECORD_LAST 

Definition at line 28 of file SerializedDiagnostics.h.

Enumerator:
CouldNotLoad 
InvalidSignature 
InvalidDiagnostics 
MalformedTopLevelBlock 
MalformedSubBlock 
MalformedBlockInfoBlock 
MalformedMetadataBlock 
MalformedDiagnosticBlock 
MalformedDiagnosticRecord 
MissingVersion 
VersionMismatch 
UnsupportedConstruct 
HandlerFailed 

A generic error for subclass handlers that don't want or need to define their own error_category.

Definition at line 21 of file SerializedDiagnosticReader.h.


Function Documentation

std::unique_ptr< DiagnosticConsumer > clang::serialized_diags::create ( StringRef  OutputFile,
DiagnosticOptions Diags,
bool  MergeChildRecords = false 
)
std::error_code clang::serialized_diags::make_error_code ( SDError  E) [inline]

Definition at line 41 of file SerializedDiagnosticReader.h.

References SDErrorCategory().

const std::error_category & clang::serialized_diags::SDErrorCategory ( )

Definition at line 293 of file SerializedDiagnosticReader.cpp.

References ErrorCategory.

Referenced by make_error_code().