Class DebugCodeViewSymbolTable

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

public class DebugCodeViewSymbolTable extends Object implements StructConverter
A class to represent the Object Module Format (OMF) code view symbol table.
  • Field Details

  • Method Details

    • isMatch

      public static boolean isMatch(BinaryReader reader, int ptr) throws IOException
      Throws:
      IOException
    • getMagic

      public byte[] getMagic()
    • getOMFLibrary

      public OMFLibrary getOMFLibrary()
    • getOMFDirectoryEntries

      public List<ghidra.app.util.bin.format.pe.debug.OMFDirEntry> getOMFDirectoryEntries()
      Returns the OMF directory entries.
      Returns:
      the OMF directory entries
    • getOMFModules

      public List<OMFModule> getOMFModules()
      Returns the OMF modules.
      Returns:
      the OMF modules
    • getOMFSegMaps

      public List<OMFSegMap> getOMFSegMaps()
      Returns the OMF segment maps.
      Returns:
      the OMF segment maps
    • getOMFGlobals

      public List<OMFGlobal> getOMFGlobals()
      Returns the OMF globals.
      Returns:
      the OMF globals
    • getOMFSrcModules

      public List<OMFSrcModule> getOMFSrcModules()
      Returns the OMF Source Modules.
      Returns:
      the OMF Source Modules
    • getOMFFiles

      public List<OMFFileIndex> getOMFFiles()
      Returns the OMF Source Files.
      Returns:
      the OMF Source Files
    • getOMFAlignSym

      public List<OMFAlignSym> getOMFAlignSym()
      Returns the OMF Align Symbols.
      Returns:
      the OMF Align Symbols
    • 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: