java.lang.Object | ||
↳ | java.lang.Enum<E extends java.lang.Enum<E>> | |
↳ | com.pnfsoftware.jeb.core.units.code.asm.decompiler.opt.OptimizerType |
Types of IR and AST optimizers.
Enum Values | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
OptimizerType | ON_DEMAND | On-demand optimizers may be safe or unsafe. | |||||||||
OptimizerType | STANDARD | Standard optimizers should be safe to run in all circumstances. | |||||||||
OptimizerType | UNSAFE | Unsafe optimizers can be disabled globally via the decompiler options. |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
static OptimizerType | valueOf(String name) | ||||||||||
final static OptimizerType[] | values() |
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() | |||||||||||
![]() |
On-demand optimizers may be safe or unsafe. They are not run by a IMasterOptimizer
;
client code need to call them manually.
Standard optimizers should be safe to run in all circumstances.
Unsafe optimizers can be disabled globally via the decompiler options.