Class DebugCodeView

java.lang.Object
ghidra.app.util.bin.format.pe.debug.DebugCodeView
All Implemented Interfaces:
StructConverter

public class DebugCodeView extends Object implements StructConverter
A class to represent the code view debug information.
  • Method Details

    • getDebugDirectory

      public DebugDirectory getDebugDirectory()
      Returns the code view debug directory.
      Returns:
      the code view debug directory
    • getSymbolTable

      public DebugCodeViewSymbolTable getSymbolTable()
      Returns the code view symbol table.
      Returns:
      the code view symbol table
    • getPdbInfo

      public PdbInfoCodeView getPdbInfo()
      Returns the code view .PDB info.
      Returns:
      the code view .PDB info
    • getDotNetPdbInfo

      public PdbInfoDotNet getDotNetPdbInfo()
    • toDataType

      public DataType toDataType() throws DuplicateNameException
      Description copied from interface: StructConverter
      Returns a structure datatype representing the contents of the implementor of this interface.

      For example, given:

       class A {
           int foo;
           double bar;
       }
       

      The return value should be a structure data type with two data type components; an INT and a DOUBLE. The structure should contain field names and, if possible, field comments.

      Specified by:
      toDataType in interface StructConverter
      Returns:
      returns a structure datatype representing the implementor of this interface
      Throws:
      DuplicateNameException - when a datatype of the same name already exists
      See Also: