Class CodeUnitFormatOptions

java.lang.Object
ghidra.program.model.listing.CodeUnitFormatOptions
Direct Known Subclasses:
BrowserCodeUnitFormatOptions

public class CodeUnitFormatOptions extends Object
  • Field Details Link icon

    • showBlockName Link icon

      protected volatile CodeUnitFormatOptions.ShowBlockName showBlockName
    • showNamespace Link icon

      protected volatile CodeUnitFormatOptions.ShowNamespace showNamespace
    • localPrefixOverride Link icon

      protected volatile String localPrefixOverride
    • showLibraryInNamespace Link icon

      protected volatile boolean showLibraryInNamespace
    • doRegVariableMarkup Link icon

      protected volatile boolean doRegVariableMarkup
    • doStackVariableMarkup Link icon

      protected volatile boolean doStackVariableMarkup
    • includeInferredVariableMarkup Link icon

      protected volatile boolean includeInferredVariableMarkup
    • alwaysShowPrimaryReference Link icon

      protected volatile boolean alwaysShowPrimaryReference
    • followReferencedPointers Link icon

      protected volatile boolean followReferencedPointers
    • includeScalarReferenceAdjustment Link icon

      protected volatile boolean includeScalarReferenceAdjustment
    • showDataMutability Link icon

      protected volatile boolean showDataMutability
    • showOffcutInfo Link icon

      protected volatile boolean showOffcutInfo
    • displayOptions Link icon

      protected DataTypeDisplayOptions displayOptions
    • templateSimplifier Link icon

      protected TemplateSimplifier templateSimplifier
  • Constructor Details Link icon

    • CodeUnitFormatOptions Link icon

      public CodeUnitFormatOptions()
    • CodeUnitFormatOptions Link icon

      public CodeUnitFormatOptions(CodeUnitFormatOptions.ShowBlockName showBlockName, CodeUnitFormatOptions.ShowNamespace showNamespace)
      Format options constructor using primarily default format options.
      Parameters:
      showBlockName - controls display of block name in address representations.
      showNamespace - controls display of namespace path with label references.
    • CodeUnitFormatOptions Link icon

      public CodeUnitFormatOptions(CodeUnitFormatOptions.ShowBlockName showBlockName, CodeUnitFormatOptions.ShowNamespace showNamespace, String localPrefixOverride, boolean doRegVariableMarkup, boolean doStackVariableMarkup, boolean includeInferredVariableMarkup, boolean alwaysShowPrimaryReference, boolean includeScalarReferenceAdjustment, boolean showLibraryInNamespace, boolean followReferencedPointers, TemplateSimplifier templateSimplifier)
      Format options constructor. Extended reference mark-up is enabled.
      Parameters:
      showBlockName - controls display of block name in address representations.
      showNamespace - controls display of namespace path with label references.
      localPrefixOverride - optional override for local name-space when showNamespace is ShowNamespace.LOCAL or ShowNamespace.ALWAYS. Specifying a null value will cause the actual name-space to be used.
      doRegVariableMarkup - perform register variable/reference mark-up if true
      doStackVariableMarkup - perform stack variable/reference mark-up if true
      includeInferredVariableMarkup - if true and doRegVariableMarkup is also true, an attempt will be made to mark-up inferred register variable usage.
      alwaysShowPrimaryReference - if true forces the primary reference to be rendered with the operand using the => separator if necessary
      includeScalarReferenceAdjustment - if true scalar adjustment of certain reference offsets will be included to maintain replaced scalar value
      showLibraryInNamespace - if true any referenced external symbols will include library name
      followReferencedPointers - if true referenced pointers (read or indirect) will follow the pointer and display the indirect symbol with -> instead of pointer label.
  • Method Details Link icon