Package ghidra.pcode.emu.jit
Enum Class JitCompiler.Diag
- All Implemented Interfaces:
Serializable
,Comparable<JitCompiler.Diag>
,Constable
- Enclosing class:
JitCompiler
Diagnostic toggles
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionSave the generated.class
file to disk for offline examinationPrint the contents (p-code) of each basic block and flows/branches among themPrint the ops of each basic block in SSA (sort of) formPrint each eliminated opPrint each passage (instructions and p-code ops) before translationPrint each synthetic operation, e.g., catenation, subpiece, phiPrint the list of live variables for each basic blockEnable ASM's trace for each generated classfile -
Method Summary
Modifier and TypeMethodDescriptionstatic JitCompiler.Diag
Returns the enum constant of this class with the specified name.static JitCompiler.Diag[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
PRINT_PASSAGE
Print each passage (instructions and p-code ops) before translation -
PRINT_CFM
Print the contents (p-code) of each basic block and flows/branches among them -
PRINT_DFM
Print the ops of each basic block in SSA (sort of) form -
PRINT_VSM
Print the list of live variables for each basic block -
PRINT_SYNTH
Print each synthetic operation, e.g., catenation, subpiece, phi -
PRINT_OUM
Print each eliminated op -
TRACE_CLASS
Enable ASM's trace for each generated classfile -
DUMP_CLASS
Save the generated.class
file to disk for offline examination
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-