clang 20.0.0git
|
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 class | 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) |
anonymous enum |
The serialized diagnostics version number.
Enumerator | |
---|---|
VersionNumber |
Definition at line 53 of file SerializedDiagnostics.h.
Definition at line 17 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 43 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 27 of file SerializedDiagnostics.h.
|
strong |
Definition at line 21 of file SerializedDiagnosticReader.h.
std::unique_ptr< DiagnosticConsumer > clang::serialized_diags::create | ( | StringRef | OutputFile, |
DiagnosticOptions * | Diags, | ||
bool | MergeChildRecords = false |
||
) |
Returns a DiagnosticConsumer that serializes diagnostics to a bitcode file.
The created DiagnosticConsumer is designed for quick and lightweight transfer of diagnostics to the enclosing build system (e.g., an IDE). This allows wrapper tools for Clang to get diagnostics from Clang (via libclang) without needing to parse Clang's command line output.
Definition at line 299 of file SerializedDiagnosticPrinter.cpp.
Referenced by SetupSerializedDiagnostics().
|
inline |
Definition at line 41 of file SerializedDiagnosticReader.h.
References E, and SDErrorCategory().
const std::error_category & clang::serialized_diags::SDErrorCategory | ( | ) |
Definition at line 369 of file SerializedDiagnosticReader.cpp.
References ErrorCategory.
Referenced by make_error_code().