Class ImageFunctionOverrideHeader
java.lang.Object
ghidra.app.util.bin.format.pe.dvrt.AbstractImageDynamicRelocationHeader
ghidra.app.util.bin.format.pe.dvrt.ImageFunctionOverrideHeader
- All Implemented Interfaces:
PeMarkupable, StructConverter
Represents a
IMAGE_FUNCTION_OVERRIDE_HEADER structure-
Field Summary
Fields inherited from class AbstractImageDynamicRelocationHeader
rva -
Constructor Summary
ConstructorsConstructorDescriptionImageFunctionOverrideHeader(BinaryReader reader, long rva, int dvrtEntrySize) Creates a newImageFunctionOverrideHeader -
Method Summary
Modifier and TypeMethodDescriptionReturns theListofImageBddInfos.Returns theListofImageFunctionOverrideDynamicRelocations.intReturns the function override size.voidmarkup(Program program, boolean isBinary, TaskMonitor monitor, MessageLog log, NTHeader ntHeader) Marks up a PE structure.Returns a structure datatype representing the contents of the implementor of this interface.
-
Constructor Details
-
ImageFunctionOverrideHeader
public ImageFunctionOverrideHeader(BinaryReader reader, long rva, int dvrtEntrySize) throws IOException Creates a newImageFunctionOverrideHeader- Parameters:
reader- ABinaryReaderthat points to the start of the structurerva- The relative virtual address of the structuredvrtEntrySize- The size in bytes of this header'sDVRT entry- Throws:
IOException- if there was an IO-related error
-
-
Method Details
-
getFuncOverrideSize
public int getFuncOverrideSize()Returns the function override size.- Returns:
- the function override size
-
getFuncOverrideInfo
Returns theListofImageFunctionOverrideDynamicRelocations.- Returns:
- the
ListofImageFunctionOverrideDynamicRelocations
-
getBddInfo
Returns theListofImageBddInfos.- Returns:
- the
ListofImageBddInfos
-
markup
public void markup(Program program, boolean isBinary, TaskMonitor monitor, MessageLog log, NTHeader ntHeader) throws DuplicateNameException, CodeUnitInsertionException, IOException, MemoryAccessException Description copied from interface:PeMarkupableMarks up a PE structure.- Parameters:
program- The program to markup.isBinary- True if the program is binary; otherwise, false.monitor- The monitor.log- The log.ntHeader- The PE's NT Header structure.- Throws:
DuplicateNameExceptionCodeUnitInsertionExceptionIOExceptionMemoryAccessException
-
toDataType
Description copied from interface:StructConverterReturns 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.
- Returns:
- returns a structure datatype representing the implementor of this interface
- Throws:
DuplicateNameException- when a datatype of the same name already existsIOException- if an IO-related error occurs- See Also:
-