pub struct LowLevelILExpression<'func, A, M, F, R>{
pub index: LowLevelExpressionIndex,
/* private fields */
}
Fields§
§index: LowLevelExpressionIndex
Implementations§
source§impl<'func, A, R> LowLevelILExpression<'func, A, Mutable, NonSSA<LiftedNonSSA>, R>where
A: 'func + Architecture,
R: ExpressionResultType,
impl<'func, A, R> LowLevelILExpression<'func, A, Mutable, NonSSA<LiftedNonSSA>, R>where
A: 'func + Architecture,
R: ExpressionResultType,
pub fn with_source_operand(self, op: u32) -> Self
pub fn append(self)
Trait Implementations§
source§impl<'func, A, M, F, R> Debug for LowLevelILExpression<'func, A, M, F, R>
impl<'func, A, M, F, R> Debug for LowLevelILExpression<'func, A, M, F, R>
source§impl<'func, A, M> ExpressionHandler<'func, A, M, NonSSA<LiftedNonSSA>> for LowLevelILExpression<'func, A, M, NonSSA<LiftedNonSSA>, ValueExpr>where
A: 'func + Architecture,
M: FunctionMutability,
impl<'func, A, M> ExpressionHandler<'func, A, M, NonSSA<LiftedNonSSA>> for LowLevelILExpression<'func, A, M, NonSSA<LiftedNonSSA>, ValueExpr>where
A: 'func + Architecture,
M: FunctionMutability,
fn kind(&self) -> LowLevelILExpressionKind<'func, A, M, NonSSA<LiftedNonSSA>>
fn visit_tree<T>(&self, f: &mut T) -> VisitorActionwhere
T: FnMut(&LowLevelILExpression<'func, A, M, NonSSA<LiftedNonSSA>, ValueExpr>) -> VisitorAction,
source§impl<'func, A, M> ExpressionHandler<'func, A, M, NonSSA<RegularNonSSA>> for LowLevelILExpression<'func, A, M, NonSSA<RegularNonSSA>, ValueExpr>where
A: 'func + Architecture,
M: FunctionMutability,
impl<'func, A, M> ExpressionHandler<'func, A, M, NonSSA<RegularNonSSA>> for LowLevelILExpression<'func, A, M, NonSSA<RegularNonSSA>, ValueExpr>where
A: 'func + Architecture,
M: FunctionMutability,
fn kind(&self) -> LowLevelILExpressionKind<'func, A, M, NonSSA<RegularNonSSA>>
fn visit_tree<T>(&self, f: &mut T) -> VisitorActionwhere
T: FnMut(&LowLevelILExpression<'func, A, M, NonSSA<RegularNonSSA>, ValueExpr>) -> VisitorAction,
source§impl<'func, A, M> ExpressionHandler<'func, A, M, SSA> for LowLevelILExpression<'func, A, M, SSA, ValueExpr>where
A: 'func + Architecture,
M: FunctionMutability,
impl<'func, A, M> ExpressionHandler<'func, A, M, SSA> for LowLevelILExpression<'func, A, M, SSA, ValueExpr>where
A: 'func + Architecture,
M: FunctionMutability,
fn kind(&self) -> LowLevelILExpressionKind<'func, A, M, SSA>
fn visit_tree<T>(&self, f: &mut T) -> VisitorAction
source§impl<'a, A, R> LiftableLowLevelIL<'a, A> for LowLevelILExpression<'a, A, Mutable, NonSSA<LiftedNonSSA>, R>where
A: 'a + Architecture,
R: ExpressionResultType,
impl<'a, A, R> LiftableLowLevelIL<'a, A> for LowLevelILExpression<'a, A, Mutable, NonSSA<LiftedNonSSA>, R>where
A: 'a + Architecture,
R: ExpressionResultType,
type Result = R
fn lift( il: &'a MutableLiftedILFunction<A>, expr: Self, ) -> MutableLiftedILExpr<'a, A, Self::Result>
source§impl<'a, A: 'a + Architecture> LiftableLowLevelILWithSize<'a, A> for LowLevelILExpression<'a, A, Mutable, NonSSA<LiftedNonSSA>, ValueExpr>
impl<'a, A: 'a + Architecture> LiftableLowLevelILWithSize<'a, A> for LowLevelILExpression<'a, A, Mutable, NonSSA<LiftedNonSSA>, ValueExpr>
fn lift_with_size( il: &'a MutableLiftedILFunction<A>, expr: Self, _size: usize, ) -> MutableLiftedILExpr<'a, A, Self::Result>
Auto Trait Implementations§
impl<'func, A, M, F, R> Freeze for LowLevelILExpression<'func, A, M, F, R>
impl<'func, A, M, F, R> RefUnwindSafe for LowLevelILExpression<'func, A, M, F, R>where
R: RefUnwindSafe,
<A as Architecture>::Handle: RefUnwindSafe,
M: RefUnwindSafe,
F: RefUnwindSafe,
A: RefUnwindSafe,
impl<'func, A, M, F, R> Send for LowLevelILExpression<'func, A, M, F, R>where
R: Send,
impl<'func, A, M, F, R> Sync for LowLevelILExpression<'func, A, M, F, R>where
R: Sync,
impl<'func, A, M, F, R> Unpin for LowLevelILExpression<'func, A, M, F, R>where
R: Unpin,
impl<'func, A, M, F, R> UnwindSafe for LowLevelILExpression<'func, A, M, F, R>where
R: UnwindSafe,
<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