Class DyldCacheSlideInfo1
java.lang.Object
ghidra.app.util.bin.format.macho.dyld.DyldCacheSlideInfoCommon
ghidra.app.util.bin.format.macho.dyld.DyldCacheSlideInfo1
- All Implemented Interfaces:
 StructConverter
Represents a dyld_cache_slide_info structure.
 
Seen in iOS 8 and earlier.
- 
Field Summary
Fields inherited from class ghidra.app.util.bin.format.macho.dyld.DyldCacheSlideInfoCommon
BYTES_PER_CHAIN_OFFSET, CHAIN_OFFSET_MASK, DATA_PAGE_MAP_ENTRY, mappingInfo, slideInfoOffset, version - 
Constructor Summary
ConstructorsConstructorDescriptionDyldCacheSlideInfo1(BinaryReader reader, DyldCacheMappingInfo mappingInfo) Create a newDyldCacheSlideInfo1. - 
Method Summary
Modifier and TypeMethodDescriptionbyte[][]Returns The entries.intReturns The entries count.intReturns The entries offset.intReturns The entries size.getSlideFixups(BinaryReader reader, int pointerSize, MessageLog log, TaskMonitor monitor) short[]getToc()Returns The TOC.intReturns The TOC count.intReturns The TOC offset.Returns a structure datatype representing the contents of the implementor of this interface.Methods inherited from class ghidra.app.util.bin.format.macho.dyld.DyldCacheSlideInfoCommon
fixupSlidePointers, getMappingInfo, getSlideInfoOffset, getVersion, parseSlideInfo 
- 
Constructor Details
- 
DyldCacheSlideInfo1
public DyldCacheSlideInfo1(BinaryReader reader, DyldCacheMappingInfo mappingInfo) throws IOException Create a newDyldCacheSlideInfo1.- Parameters:
 reader- ABinaryReaderpositioned at the start of a DYLD slide info 1mappingInfo- TheDyldCacheMappingInfoof where the slide fixups will take place- Throws:
 IOException- if there was an IO-related problem creating the DYLD slide info 1
 
 - 
 - 
Method Details
- 
getTocOffset
public int getTocOffset()Returns The TOC offset.- Returns:
 - The TOC offset
 
 - 
getTocCount
public int getTocCount()Returns The TOC count.- Returns:
 - The TOC count
 
 - 
getEntriesOffset
public int getEntriesOffset()Returns The entries offset.- Returns:
 - The entries offset
 
 - 
getEntriesCount
public int getEntriesCount()Returns The entries count.- Returns:
 - The entries count
 
 - 
getEntriesSize
public int getEntriesSize()Returns The entries size.- Returns:
 - The entries size
 
 - 
getToc
public short[] getToc()Returns The TOC.- Returns:
 - The TOC
 
 - 
getEntries
public byte[][] getEntries()Returns The entries.- Returns:
 - The entries
 
 - 
getSlideFixups
public List<DyldFixup> getSlideFixups(BinaryReader reader, int pointerSize, MessageLog log, TaskMonitor monitor) throws IOException, CancelledException Description copied from class:DyldCacheSlideInfoCommonWalks the slide fixup information and collects aListofDyldFixups that will need to be applied to the image- Specified by:
 getSlideFixupsin classDyldCacheSlideInfoCommon- Parameters:
 reader- ABinaryReaderpositioned at the start of the segment to fix uppointerSize- The size of a pointer in byteslog- The logmonitor- A cancellable monitor- Returns:
 - A 
ListofDyldFixups - Throws:
 IOException- If there was an IO-related issueCancelledException- If the user cancelled the operation
 - 
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.
- Specified by:
 toDataTypein interfaceStructConverter- Overrides:
 toDataTypein classDyldCacheSlideInfoCommon- 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:
 
 
 -