LLVM 20.0.0git
|
This is the base abstract class for diagnostic reporting in the backend. More...
#include "llvm/IR/DiagnosticInfo.h"
Public Member Functions | |
DiagnosticInfo (int Kind, DiagnosticSeverity Severity) | |
virtual | ~DiagnosticInfo ()=default |
int | getKind () const |
DiagnosticSeverity | getSeverity () const |
virtual void | print (DiagnosticPrinter &DP) const =0 |
Print using the given DP a user-friendly message. | |
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 108 of file DiagnosticInfo.h.
|
inline |
Definition at line 117 of file DiagnosticInfo.h.
|
virtualdefault |
|
inline |
Definition at line 122 of file DiagnosticInfo.h.
Referenced by llvm::DiagnosticInfoMIROptimization::classof(), llvm::MachineOptimizationRemark::classof(), llvm::MachineOptimizationRemarkMissed::classof(), llvm::MachineOptimizationRemarkAnalysis::classof(), llvm::DiagnosticInfoInlineAsm::classof(), llvm::DiagnosticInfoDebugMetadataVersion::classof(), llvm::DiagnosticInfoIgnoringInvalidDebugMetadata::classof(), llvm::DiagnosticInfoSampleProfile::classof(), llvm::DiagnosticInfoPGOProfile::classof(), llvm::DiagnosticInfoResourceLimit::classof(), llvm::DiagnosticInfoStackSize::classof(), llvm::DiagnosticInfoOptimizationBase::classof(), llvm::DiagnosticInfoIROptimization::classof(), llvm::OptimizationRemark::classof(), llvm::OptimizationRemarkMissed::classof(), llvm::OptimizationRemarkAnalysis::classof(), llvm::OptimizationRemarkAnalysisFPCommute::classof(), llvm::OptimizationRemarkAnalysisAliasing::classof(), llvm::DiagnosticInfoMIRParser::classof(), llvm::DiagnosticInfoISelFallback::classof(), llvm::DiagnosticInfoOptimizationFailure::classof(), llvm::DiagnosticInfoUnsupported::classof(), llvm::DiagnosticInfoMisExpect::classof(), llvm::DiagnosticInfoSrcMgr::classof(), llvm::DiagnosticInfoDontCall::classof(), llvm::DiagnosticInfoOptimizationBase::isAnalysis(), llvm::DiagnosticInfoOptimizationBase::isMissed(), and llvm::DiagnosticInfoOptimizationBase::isPassed().
|
inline |
Definition at line 123 of file DiagnosticInfo.h.
Referenced by llvm::LLVMContext::diagnose(), llvm::LTOCodeGenerator::DiagnosticHandler(), llvm::DiagnosticInfoOptimizationFailure::isEnabled(), and llvm::DiagnosticInfoDontCall::print().
|
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::DiagnosticInfoInlineAsm, llvm::DiagnosticInfoDebugMetadataVersion, llvm::DiagnosticInfoIgnoringInvalidDebugMetadata, llvm::DiagnosticInfoSampleProfile, llvm::DiagnosticInfoPGOProfile, llvm::DiagnosticInfoResourceLimit, llvm::DiagnosticInfoOptimizationBase, llvm::DiagnosticInfoMIRParser, llvm::DiagnosticInfoISelFallback, llvm::DiagnosticInfoUnsupported, llvm::DiagnosticInfoMisExpect, llvm::DiagnosticInfoSrcMgr, llvm::DiagnosticInfoDontCall, and llvm::LinkDiagnosticInfo.
Referenced by llvm::LLVMContext::diagnose(), and llvm::LTOCodeGenerator::DiagnosticHandler().