Class DebugCodeViewSymbolTable
java.lang.Object
ghidra.app.util.bin.format.pe.debug.DebugCodeViewSymbolTable
- All Implemented Interfaces:
StructConverter
A class to represent the Object Module Format (OMF)
code view symbol table.
-
Field Summary
Modifier and TypeFieldDescriptionstatic final int
static final int
static final int
static final int
-
Method Summary
Modifier and TypeMethodDescriptionbyte[]
getMagic()
Returns the OMF Align Symbols.List
<ghidra.app.util.bin.format.pe.debug.OMFDirEntry> Returns the OMF directory entries.Returns the OMF Source Files.Returns the OMF globals.Returns the OMF modules.Returns the OMF segment maps.Returns the OMF Source Modules.static boolean
isMatch
(BinaryReader reader, int ptr) Returns a structure datatype representing the contents of the implementor of this interface.
-
Field Details
-
MAGIC_NB_09
public static final int MAGIC_NB_09- See Also:
-
MAGIC_NB_11
public static final int MAGIC_NB_11- See Also:
-
MAGIC_N1_12
public static final int MAGIC_N1_12- See Also:
-
MAGIC_N1_13
public static final int MAGIC_N1_13- See Also:
-
-
Method Details
-
isMatch
- Throws:
IOException
-
getMagic
public byte[] getMagic() -
getOMFLibrary
-
getOMFDirectoryEntries
Returns the OMF directory entries.- Returns:
- the OMF directory entries
-
getOMFModules
Returns the OMF modules.- Returns:
- the OMF modules
-
getOMFSegMaps
Returns the OMF segment maps.- Returns:
- the OMF segment maps
-
getOMFGlobals
Returns the OMF globals.- Returns:
- the OMF globals
-
getOMFSrcModules
Returns the OMF Source Modules.- Returns:
- the OMF Source Modules
-
getOMFFiles
Returns the OMF Source Files.- Returns:
- the OMF Source Files
-
getOMFAlignSym
Returns the OMF Align Symbols.- Returns:
- the OMF Align Symbols
-
toDataType
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 interfaceStructConverter
- Returns:
- returns a structure datatype representing the implementor of this interface
- Throws:
DuplicateNameException
- when a datatype of the same name already exists- See Also:
-