LLVM  3.7.0
Public Member Functions | List of all members
llvm::DiagnosticInfo Class Referenceabstract

This is the base abstract class for diagnostic reporting in the backend. More...

#include <DiagnosticInfo.h>

Inheritance diagram for llvm::DiagnosticInfo:
[legend]

Public Member Functions

 DiagnosticInfo (int Kind, DiagnosticSeverity Severity)
 
virtual ~DiagnosticInfo ()
 
int getKind () const
 
DiagnosticSeverity getSeverity () const
 
virtual void print (DiagnosticPrinter &DP) const =0
 Print using the given DP a user-friendly message. More...
 

Detailed Description

This is the base abstract class for diagnostic reporting in the backend.

The print method must be overloaded by the subclasses to print a user-friendly message in the client of the backend (let us call it a frontend).

Definition at line 79 of file DiagnosticInfo.h.

Constructor & Destructor Documentation

llvm::DiagnosticInfo::DiagnosticInfo ( int  Kind,
DiagnosticSeverity  Severity 
)
inline

Definition at line 87 of file DiagnosticInfo.h.

virtual llvm::DiagnosticInfo::~DiagnosticInfo ( )
inlinevirtual

Definition at line 90 of file DiagnosticInfo.h.

Member Function Documentation

int llvm::DiagnosticInfo::getKind ( ) const
inline
DiagnosticSeverity llvm::DiagnosticInfo::getSeverity ( ) const
inline
virtual void llvm::DiagnosticInfo::print ( DiagnosticPrinter DP) const
pure virtual

Print using the given DP a user-friendly message.

This is the default message that will be printed to the user. It is used when the frontend does not directly take advantage of the information contained in fields of the subclasses. The printed message must not end with '.' nor start with a severity keyword.

Implemented in llvm::DiagnosticInfoMIRParser, llvm::DiagnosticInfoOptimizationBase, llvm::DiagnosticInfoSampleProfile, llvm::DiagnosticInfoDebugMetadataVersion, llvm::DiagnosticInfoStackSize, llvm::BitcodeDiagnosticInfo, and llvm::DiagnosticInfoInlineAsm.

Referenced by llvm::LLVMContext::diagnose(), LLVMLinkModules(), and LLVMParseBitcodeInContext().


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