LLVM 20.0.0git
|
#include "llvm/CodeGen/GlobalISel/CombinerInfo.h"
Public Member Functions | |
CombinerInfo (bool AllowIllegalOps, bool ShouldLegalizeIllegal, const LegalizerInfo *LInfo, bool OptEnabled, bool OptSize, bool MinSize) | |
virtual | ~CombinerInfo ()=default |
Public Attributes | |
bool | IllegalOpsAllowed |
If IllegalOpsAllowed is false, the CombinerHelper will make use of the legalizerInfo to check for legality before each transformation. | |
bool | LegalizeIllegalOps |
If LegalizeIllegalOps is true, the Combiner will also legalize the illegal ops that are created. | |
const LegalizerInfo * | LInfo |
bool | EnableOpt |
Whether optimizations should be enabled. | |
bool | EnableOptSize |
Whether we're optimizing for size. | |
bool | EnableMinSize |
Whether we're optimizing for minsize (-Oz). | |
unsigned | MaxIterations = 0 |
The maximum number of times the Combiner will iterate over the MachineFunction. | |
Definition at line 24 of file CombinerInfo.h.
|
inline |
Definition at line 25 of file CombinerInfo.h.
References assert(), LegalizeIllegalOps, and LInfo.
|
virtualdefault |
bool llvm::CombinerInfo::EnableMinSize |
Whether we're optimizing for minsize (-Oz).
Definition at line 51 of file CombinerInfo.h.
bool llvm::CombinerInfo::EnableOpt |
Whether optimizations should be enabled.
This is to distinguish between uses of the combiner unconditionally and only when optimizations are specifically enabled/
Definition at line 47 of file CombinerInfo.h.
bool llvm::CombinerInfo::EnableOptSize |
Whether we're optimizing for size.
Definition at line 49 of file CombinerInfo.h.
bool llvm::CombinerInfo::IllegalOpsAllowed |
If IllegalOpsAllowed
is false, the CombinerHelper will make use of the legalizerInfo to check for legality before each transformation.
Definition at line 37 of file CombinerInfo.h.
bool llvm::CombinerInfo::LegalizeIllegalOps |
If LegalizeIllegalOps
is true, the Combiner will also legalize the illegal ops that are created.
Definition at line 41 of file CombinerInfo.h.
Referenced by CombinerInfo().
const LegalizerInfo* llvm::CombinerInfo::LInfo |
Definition at line 42 of file CombinerInfo.h.
Referenced by CombinerInfo().
unsigned llvm::CombinerInfo::MaxIterations = 0 |
The maximum number of times the Combiner will iterate over the MachineFunction.
Setting this to 0 enables fixed-point iteration.
Definition at line 55 of file CombinerInfo.h.
Referenced by llvm::Combiner::combineMachineInstrs().