Class DemangledAddressTable

java.lang.Object
ghidra.app.util.demangler.DemangledObject
ghidra.app.util.demangler.DemangledAddressTable
All Implemented Interfaces:
Demangled

public class DemangledAddressTable extends DemangledObject
  • Constructor Details

    • DemangledAddressTable

      public DemangledAddressTable(String mangled, String originalDemangled, String name, boolean calculateLength)
      Constructor
      Parameters:
      mangled - the source mangled string
      originalDemangled - the original demangled string
      name - the name of the address table
      calculateLength - true if the length of this address table should be calculated at analysis time
  • Method Details

    • getLength

      public int getLength()
      Returns the length of the address table. -1 indicates the length is unknown.
      Returns:
      the length of the address table
    • getSignature

      public String getSignature(boolean format)
      Description copied from class: DemangledObject
      Returns a complete signature for the demangled symbol.
      For example: "unsigned long foo" "unsigned char * ClassA::getFoo(float, short *)" "void * getBar(int **, MyStruct &)"
      Note: based on the underlying mangling scheme, the return type may or may not be specified in the signature.
      Specified by:
      getSignature in class DemangledObject
      Parameters:
      format - true if signature should be pretty printed
      Returns:
      a complete signature for the demangled symbol
    • applyTo

      public boolean applyTo(Program program, Address address, DemanglerOptions options, TaskMonitor monitor) throws Exception
      Description copied from class: DemangledObject
      Apply this demangled object detail to the specified program.
      NOTE: An open Program transaction must be established prior to invoking this method.
      Overrides:
      applyTo in class DemangledObject
      Parameters:
      program - program to which demangled data should be applied.
      address - address which corresponds to this demangled object
      options - options which control how demangled data is applied
      monitor - task monitor
      Returns:
      true if successfully applied, else false
      Throws:
      Exception - if an error occurs during the apply operation