Class GhidraLanguagePropertyKeys


  • public final class GhidraLanguagePropertyKeys
    extends java.lang.Object
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.lang.String ADDRESSES_DO_NOT_APPEAR_DIRECTLY_IN_CODE
      ADDRESSES_DO_NOT_APPEAR_DIRECTLY_IN_CODE is a boolean property that indicates if addresses don't appear directly in code.
      static java.lang.String ALLOW_OFFCUT_REFERENCES_TO_FUNCTION_STARTS
      ALLOW_OFFCUT_REFERENCES_TO_FUNCTION_STARTS is a boolean property used to indicate if function bodies can actually start offcut.
      static java.lang.String CUSTOM_DISASSEMBLER_CLASS
      CUSTOM_DISASSEMBLER_CLASS is a full class name for a language-specific disassembler implementation.
      static java.lang.String EMULATE_INSTRUCTION_STATE_MODIFIER_CLASS
      EMULATE_INSTRUCTION_STATE_MODIFIER_CLASS is a string property that indicates the classname of a EmulateInstructionStateModifier implementation which should be used during emulation to assist with the adjusting the emulator state before and/or after each instruction is executed.
      static java.lang.String ENABLE_NO_RETURN_ANALYSIS
      Non returning function analysis, where a function such as exit() is known to the compiler not to return.
      static java.lang.String ENABLE_SHARED_RETURN_ANALYSIS
      Shared return analysis, where at the end of one function, the code will jump to another, and use the jumped to subroutines return.
      static java.lang.String IS_TMS320_FAMILY
      IS_TMS320_FAMILY is a boolean property that indicates this language is part of the general TMS320 family.
      static java.lang.String PARALLEL_INSTRUCTION_HELPER_CLASS
      PARALLEL_INSTRUCTION_HELPER_CLASS is a full class name for an implementation of the ParallelInstructionLanguageHelper.
      static java.lang.String PCODE_INJECT_LIBRARY_CLASS
      PCODE_INJECT_LIBRARY_CLASS indicates the classname of a PcodeInjectLibrary implementation that is used to generate p-code injection payloads which can replace either CALLs or CALLOTHERs during any form of p-code analysis.
      static java.lang.String USE_NEW_FUNCTION_STACK_ANALYSIS
      USE_NEW_FUNCTION_STACK_ANALYSIS is a boolean property that indicates if the StackVariableAnalyzer should use a NewFunctionStackAnalysisCmd instead of the older FunctionStackAnalysisCmd.
      static java.lang.String USE_OPERAND_REFERENCE_ANALYZER_SWITCH_TABLES
      USE_OPERAND_REFERENCE_ANALYZER_SWITCH_TABLES is a boolean property that indicates if a language should use the switch table analysis in the OperandReferenceAnalyzer.
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • CUSTOM_DISASSEMBLER_CLASS

        public static final java.lang.String CUSTOM_DISASSEMBLER_CLASS
        CUSTOM_DISASSEMBLER_CLASS is a full class name for a language-specific disassembler implementation. The specified class must extend the generic disassembler Disassembler implementation and must implement the same set of constructors.
        See Also:
        Constant Field Values
      • ALLOW_OFFCUT_REFERENCES_TO_FUNCTION_STARTS

        public static final java.lang.String ALLOW_OFFCUT_REFERENCES_TO_FUNCTION_STARTS
        ALLOW_OFFCUT_REFERENCES_TO_FUNCTION_STARTS is a boolean property used to indicate if function bodies can actually start offcut. This is useful, for instance, with the ARM processor in THUMB mode since the least significant bit of the address is 0x1 for a THUMB mode function, even though outside references to this function will be at one byte less than the actual function start. Default is false.
        See Also:
        Constant Field Values
      • USE_OPERAND_REFERENCE_ANALYZER_SWITCH_TABLES

        public static final java.lang.String USE_OPERAND_REFERENCE_ANALYZER_SWITCH_TABLES
        USE_OPERAND_REFERENCE_ANALYZER_SWITCH_TABLES is a boolean property that indicates if a language should use the switch table analysis in the OperandReferenceAnalyzer. Default is false.
        See Also:
        Constant Field Values
      • IS_TMS320_FAMILY

        public static final java.lang.String IS_TMS320_FAMILY
        IS_TMS320_FAMILY is a boolean property that indicates this language is part of the general TMS320 family. Default is false. Used for general TMS320 analysis.
        See Also:
        Constant Field Values
      • PARALLEL_INSTRUCTION_HELPER_CLASS

        public static final java.lang.String PARALLEL_INSTRUCTION_HELPER_CLASS
        PARALLEL_INSTRUCTION_HELPER_CLASS is a full class name for an implementation of the ParallelInstructionLanguageHelper. Those languages which support parallel instruction execution may implement this helper class to facilitate display of a || indicator within a listing view.
        See Also:
        Constant Field Values
      • ADDRESSES_DO_NOT_APPEAR_DIRECTLY_IN_CODE

        public static final java.lang.String ADDRESSES_DO_NOT_APPEAR_DIRECTLY_IN_CODE
        ADDRESSES_DO_NOT_APPEAR_DIRECTLY_IN_CODE is a boolean property that indicates if addresses don't appear directly in code. Supposedly applies to all RISC processors, according to ScalarOperandAnalyzer. Default is false.
        See Also:
        Constant Field Values
      • USE_NEW_FUNCTION_STACK_ANALYSIS

        public static final java.lang.String USE_NEW_FUNCTION_STACK_ANALYSIS
        USE_NEW_FUNCTION_STACK_ANALYSIS is a boolean property that indicates if the StackVariableAnalyzer should use a NewFunctionStackAnalysisCmd instead of the older FunctionStackAnalysisCmd. Default is false.
        See Also:
        Constant Field Values
      • EMULATE_INSTRUCTION_STATE_MODIFIER_CLASS

        public static final java.lang.String EMULATE_INSTRUCTION_STATE_MODIFIER_CLASS
        EMULATE_INSTRUCTION_STATE_MODIFIER_CLASS is a string property that indicates the classname of a EmulateInstructionStateModifier implementation which should be used during emulation to assist with the adjusting the emulator state before and/or after each instruction is executed. This class may also provide language defined behaviors for custom pcodeop's. Default is null.
        See Also:
        Constant Field Values
      • PCODE_INJECT_LIBRARY_CLASS

        public static final java.lang.String PCODE_INJECT_LIBRARY_CLASS
        PCODE_INJECT_LIBRARY_CLASS indicates the classname of a PcodeInjectLibrary implementation that is used to generate p-code injection payloads which can replace either CALLs or CALLOTHERs during any form of p-code analysis. The injections are primarily provided by and tags in the compiler spec, but this provides a hook point for providing other means of injection.
        See Also:
        Constant Field Values
      • ENABLE_SHARED_RETURN_ANALYSIS

        public static final java.lang.String ENABLE_SHARED_RETURN_ANALYSIS
        Shared return analysis, where at the end of one function, the code will jump to another, and use the jumped to subroutines return. Shared Return analysis is enabled by default for all processors. If calls are used as long-jumps this can cause problems, so it is disabled for older arm processors.
        See Also:
        Constant Field Values
      • ENABLE_NO_RETURN_ANALYSIS

        public static final java.lang.String ENABLE_NO_RETURN_ANALYSIS
        Non returning function analysis, where a function such as exit() is known to the compiler not to return. The compiler will generate data or code for another function immediately following the call. Non-returning functions can be detected in many cases.
        See Also:
        Constant Field Values