binaryninja::low_level_il::instruction

Struct LowLevelILInstruction

source
pub struct LowLevelILInstruction<'func, A, M, F>
where A: 'func + Architecture, M: FunctionMutability, F: FunctionForm,
{ pub index: LowLevelInstructionIndex, /* private fields */ }

Fields§

§index: LowLevelInstructionIndex

Implementations§

source§

impl<'func, A, M, F> LowLevelILInstruction<'func, A, M, F>
where A: 'func + Architecture, M: FunctionMutability, F: FunctionForm,

source

pub fn new( function: &'func LowLevelILFunction<A, M, F>, index: LowLevelInstructionIndex, ) -> Self

source

pub fn address(&self) -> u64

source

pub fn expr_idx(&self) -> LowLevelExpressionIndex

source

pub fn into_raw(&self) -> BNLowLevelILInstruction

Trait Implementations§

source§

impl<'func, A, M, F> Debug for LowLevelILInstruction<'func, A, M, F>
where A: 'func + Architecture, M: FunctionMutability, F: FunctionForm,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'func, A, M> InstructionHandler<'func, A, M, NonSSA<LiftedNonSSA>> for LowLevelILInstruction<'func, A, M, NonSSA<LiftedNonSSA>>
where A: 'func + Architecture, M: FunctionMutability,

source§

fn kind(&self) -> LowLevelILInstructionKind<'func, A, M, NonSSA<LiftedNonSSA>>

source§

fn visit_tree<T>(&self, f: &mut T) -> VisitorAction

Visit the sub expressions of this instruction. Read more
source§

impl<'func, A, M> InstructionHandler<'func, A, M, NonSSA<RegularNonSSA>> for LowLevelILInstruction<'func, A, M, NonSSA<RegularNonSSA>>
where A: 'func + Architecture, M: FunctionMutability,

source§

fn kind(&self) -> LowLevelILInstructionKind<'func, A, M, NonSSA<RegularNonSSA>>

source§

fn visit_tree<T>(&self, f: &mut T) -> VisitorAction

Visit the sub expressions of this instruction. Read more
source§

impl<'func, A, M> InstructionHandler<'func, A, M, SSA> for LowLevelILInstruction<'func, A, M, SSA>
where A: 'func + Architecture, M: FunctionMutability,

source§

fn kind(&self) -> LowLevelILInstructionKind<'func, A, M, SSA>

source§

fn visit_tree<T>(&self, f: &mut T) -> VisitorAction
where T: FnMut(&LowLevelILExpression<'func, A, M, SSA, ValueExpr>) -> VisitorAction,

Visit the sub expressions of this instruction. Read more

Auto Trait Implementations§

§

impl<'func, A, M, F> Freeze for LowLevelILInstruction<'func, A, M, F>

§

impl<'func, A, M, F> RefUnwindSafe for LowLevelILInstruction<'func, A, M, F>

§

impl<'func, A, M, F> Send for LowLevelILInstruction<'func, A, M, F>

§

impl<'func, A, M, F> Sync for LowLevelILInstruction<'func, A, M, F>

§

impl<'func, A, M, F> Unpin for LowLevelILInstruction<'func, A, M, F>

§

impl<'func, A, M, F> UnwindSafe for LowLevelILInstruction<'func, A, M, F>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.