IRelocationTable Type
Represents an interface for accessing the relocation table in a binary file.
Instance members
| Instance member |
Description
|
Full Usage:
this.IsRelocationAddr
Parameters:
Addr
Returns: bool
True if the address has relocation information, false otherwise.
Modifiers: abstract |
Checks if the given address has relocation information.
|
|
Returns an array of all the relocations in the binary.
|
|
Tries to resolve the relocation at the given address to a function that is defined within this binary itself (rather than imported from another module). This covers a relocation targeting a locally-defined function and an ifunc resolver referenced by an IRELATIVE-style relocation, both of which occur in statically linked binaries.
|
|
B2R2