Struct lief::pe::dynamic_fixups::ARM64KernelEntry
pub struct ARM64KernelEntry<'a> { /* private fields */ }
Expand description
Mirror IMAGE_IMPORT_CONTROL_TRANSFER_ARM64_RELOCATION
Implementations§
§impl ARM64KernelEntry<'_>
impl ARM64KernelEntry<'_>
pub fn indirect_call(&self) -> bool
pub fn indirect_call(&self) -> bool
True if target instruction is a blr
, false if it’s a br
.
pub fn register_index(&self) -> u8
pub fn register_index(&self) -> u8
Register index used for the indirect call/jump.
For instance, if the instruction is br x3
, this index is set to 3
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for ARM64KernelEntry<'a>
impl<'a> !Send for ARM64KernelEntry<'a>
impl<'a> !Sync for ARM64KernelEntry<'a>
impl<'a> Unpin for ARM64KernelEntry<'a>
impl<'a> !UnwindSafe for ARM64KernelEntry<'a>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more