LLVM  8.0.1
Public Member Functions | List of all members
llvm::MachineOptimizationRemarkEmitter Class Reference

The optimization diagnostic interface. More...

#include "llvm/CodeGen/MachineOptimizationRemarkEmitter.h"

Public Member Functions

 MachineOptimizationRemarkEmitter (MachineFunction &MF, MachineBlockFrequencyInfo *MBFI)
 
void emit (DiagnosticInfoOptimizationBase &OptDiag)
 Emit an optimization remark. More...
 
bool allowExtraAnalysis (StringRef PassName) const
 Whether we allow for extra compile-time budget to perform more analysis to be more informative. More...
 
template<typename T >
void emit (T RemarkBuilder, decltype(RemarkBuilder()) *=nullptr)
 Take a lambda that returns a remark which will be emitted. More...
 

Detailed Description

The optimization diagnostic interface.

It allows reporting when optimizations are performed and when they are not along with the reasons for it. Hotness information of the corresponding code region can be included in the remark if DiagnosticsHotnessRequested is enabled in the LLVM context.

Definition at line 145 of file MachineOptimizationRemarkEmitter.h.

Constructor & Destructor Documentation

◆ MachineOptimizationRemarkEmitter()

llvm::MachineOptimizationRemarkEmitter::MachineOptimizationRemarkEmitter ( MachineFunction MF,
MachineBlockFrequencyInfo MBFI 
)
inline

Definition at line 147 of file MachineOptimizationRemarkEmitter.h.

Member Function Documentation

◆ allowExtraAnalysis()

bool llvm::MachineOptimizationRemarkEmitter::allowExtraAnalysis ( StringRef  PassName) const
inline

Whether we allow for extra compile-time budget to perform more analysis to be more informative.

This is useful to enable additional missed optimizations to be reported that are normally too noisy. In this mode, we can use the extra analysis (1) to filter trivial false positives or (2) to provide more context so that non-trivial false positives can be quickly detected by the user.

Definition at line 161 of file MachineOptimizationRemarkEmitter.h.

Referenced by llvm::reportGISelFailure().

◆ emit() [1/2]

void MachineOptimizationRemarkEmitter::emit ( DiagnosticInfoOptimizationBase OptDiag)

◆ emit() [2/2]

template<typename T >
void llvm::MachineOptimizationRemarkEmitter::emit ( T  RemarkBuilder,
decltype(RemarkBuilder()) *  = nullptr 
)
inline

Take a lambda that returns a remark which will be emitted.

Second argument is only used to restrict this to functions.

Definition at line 170 of file MachineOptimizationRemarkEmitter.h.

References llvm::Remark.


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