pub struct LowLevelILInstruction<'func, A, M, F>{
pub index: LowLevelInstructionIndex,
/* private fields */
}
Fields§
§index: LowLevelInstructionIndex
Implementations§
source§impl<'func, A, M, F> LowLevelILInstruction<'func, A, M, F>
impl<'func, A, M, F> LowLevelILInstruction<'func, A, M, F>
pub fn new( function: &'func LowLevelILFunction<A, M, F>, index: LowLevelInstructionIndex, ) -> Self
pub fn address(&self) -> u64
pub fn expr_idx(&self) -> LowLevelExpressionIndex
pub fn into_raw(&self) -> BNLowLevelILInstruction
Trait Implementations§
source§impl<'func, A, M, F> Debug for LowLevelILInstruction<'func, A, M, F>
impl<'func, A, M, F> Debug for LowLevelILInstruction<'func, A, M, F>
source§impl<'func, A, M> InstructionHandler<'func, A, M, NonSSA<LiftedNonSSA>> for LowLevelILInstruction<'func, A, M, NonSSA<LiftedNonSSA>>where
A: 'func + Architecture,
M: FunctionMutability,
impl<'func, A, M> InstructionHandler<'func, A, M, NonSSA<LiftedNonSSA>> for LowLevelILInstruction<'func, A, M, NonSSA<LiftedNonSSA>>where
A: 'func + Architecture,
M: FunctionMutability,
fn kind(&self) -> LowLevelILInstructionKind<'func, A, M, NonSSA<LiftedNonSSA>>
source§fn visit_tree<T>(&self, f: &mut T) -> VisitorActionwhere
T: FnMut(&LowLevelILExpression<'func, A, M, NonSSA<LiftedNonSSA>, ValueExpr>) -> VisitorAction,
fn visit_tree<T>(&self, f: &mut T) -> VisitorActionwhere
T: FnMut(&LowLevelILExpression<'func, A, M, NonSSA<LiftedNonSSA>, ValueExpr>) -> 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,
impl<'func, A, M> InstructionHandler<'func, A, M, NonSSA<RegularNonSSA>> for LowLevelILInstruction<'func, A, M, NonSSA<RegularNonSSA>>where
A: 'func + Architecture,
M: FunctionMutability,
fn kind(&self) -> LowLevelILInstructionKind<'func, A, M, NonSSA<RegularNonSSA>>
source§fn visit_tree<T>(&self, f: &mut T) -> VisitorActionwhere
T: FnMut(&LowLevelILExpression<'func, A, M, NonSSA<RegularNonSSA>, ValueExpr>) -> VisitorAction,
fn visit_tree<T>(&self, f: &mut T) -> VisitorActionwhere
T: FnMut(&LowLevelILExpression<'func, A, M, NonSSA<RegularNonSSA>, ValueExpr>) -> 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,
impl<'func, A, M> InstructionHandler<'func, A, M, SSA> for LowLevelILInstruction<'func, A, M, SSA>where
A: 'func + Architecture,
M: FunctionMutability,
fn kind(&self) -> LowLevelILInstructionKind<'func, A, M, SSA>
source§fn visit_tree<T>(&self, f: &mut T) -> VisitorAction
fn visit_tree<T>(&self, f: &mut T) -> 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>where
<A as Architecture>::Handle: RefUnwindSafe,
M: RefUnwindSafe,
F: RefUnwindSafe,
A: RefUnwindSafe,
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>where
<A as Architecture>::Handle: RefUnwindSafe,
M: RefUnwindSafe,
F: RefUnwindSafe,
A: RefUnwindSafe,
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