Package ghidra.pcode.emu.jit
Enum Class JitCompiler.Diag
- All Implemented Interfaces:
- Serializable,- Comparable<JitCompiler.Diag>,- Constable
- Enclosing class:
- JitCompiler
Diagnostic toggles
- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionSave the generated.classfile 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 SummaryModifier and TypeMethodDescriptionstatic JitCompiler.DiagReturns 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_PASSAGEPrint each passage (instructions and p-code ops) before translation
- 
PRINT_CFMPrint the contents (p-code) of each basic block and flows/branches among them
- 
PRINT_DFMPrint the ops of each basic block in SSA (sort of) form
- 
PRINT_VSMPrint the list of live variables for each basic block
- 
PRINT_SYNTHPrint each synthetic operation, e.g., catenation, subpiece, phi
- 
PRINT_OUMPrint each eliminated op
- 
TRACE_CLASSEnable ASM's trace for each generated classfile
- 
DUMP_CLASSSave the generated.classfile to disk for offline examination
 
- 
- 
Method Details- 
valuesReturns 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
 
- 
valueOfReturns 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 name
- NullPointerException- if the argument is null
 
 
-