pub struct LowLevelILExpression<'func, M, F, R>{
pub index: LowLevelExpressionIndex,
/* private fields */
}
Fields§
§index: LowLevelExpressionIndex
Implementations§
source§impl<M, R> LowLevelILExpression<'_, M, SSA, R>where
M: FunctionMutability,
R: ExpressionResultType,
impl<M, R> LowLevelILExpression<'_, M, SSA, R>where
M: FunctionMutability,
R: ExpressionResultType,
pub fn non_ssa_form<'func>( &self, non_ssa: &'func LowLevelILFunction<M, NonSSA>, ) -> LowLevelILExpression<'func, M, NonSSA, R>
source§impl<M, R> LowLevelILExpression<'_, M, NonSSA, R>where
M: FunctionMutability,
R: ExpressionResultType,
impl<M, R> LowLevelILExpression<'_, M, NonSSA, R>where
M: FunctionMutability,
R: ExpressionResultType,
pub fn ssa_form<'func>( &self, ssa: &'func LowLevelILFunction<M, SSA>, ) -> LowLevelILExpression<'func, M, SSA, R>
source§impl<R> LowLevelILExpression<'_, Mutable, NonSSA, R>where
R: ExpressionResultType,
impl<R> LowLevelILExpression<'_, Mutable, NonSSA, R>where
R: ExpressionResultType,
pub fn with_source_operand(self, op: u32) -> Self
pub fn append(self)
Trait Implementations§
source§impl<M, F, R> Clone for LowLevelILExpression<'_, M, F, R>
impl<M, F, R> Clone for LowLevelILExpression<'_, M, F, R>
source§impl<M, F, R> Debug for LowLevelILExpression<'_, M, F, R>
impl<M, F, R> Debug for LowLevelILExpression<'_, M, F, R>
source§impl<'func, M> ExpressionHandler<'func, M, NonSSA> for LowLevelILExpression<'func, M, NonSSA, ValueExpr>where
M: FunctionMutability,
impl<'func, M> ExpressionHandler<'func, M, NonSSA> for LowLevelILExpression<'func, M, NonSSA, ValueExpr>where
M: FunctionMutability,
fn kind(&self) -> LowLevelILExpressionKind<'func, M, NonSSA>
fn visit_tree<T>(&self, f: &mut T) -> VisitorAction
source§impl<'func, M> ExpressionHandler<'func, M, SSA> for LowLevelILExpression<'func, M, SSA, ValueExpr>where
M: FunctionMutability,
impl<'func, M> ExpressionHandler<'func, M, SSA> for LowLevelILExpression<'func, M, SSA, ValueExpr>where
M: FunctionMutability,
fn kind(&self) -> LowLevelILExpressionKind<'func, M, SSA>
fn visit_tree<T>(&self, f: &mut T) -> VisitorAction
source§impl<'a, R> LiftableLowLevelIL<'a> for LowLevelILExpression<'a, Mutable, NonSSA, R>where
R: ExpressionResultType,
impl<'a, R> LiftableLowLevelIL<'a> for LowLevelILExpression<'a, Mutable, NonSSA, R>where
R: ExpressionResultType,
type Result = R
fn lift( il: &'a LowLevelILMutableFunction, expr: Self, ) -> LowLevelILMutableExpression<'a, Self::Result>
source§impl<'a> LiftableLowLevelILWithSize<'a> for LowLevelILExpression<'a, Mutable, NonSSA, ValueExpr>
impl<'a> LiftableLowLevelILWithSize<'a> for LowLevelILExpression<'a, Mutable, NonSSA, ValueExpr>
fn lift_with_size( il: &'a LowLevelILMutableFunction, expr: Self, _size: usize, ) -> LowLevelILMutableExpression<'a, Self::Result>
impl<'func, M, F, R> Copy for LowLevelILExpression<'func, M, F, R>
Auto Trait Implementations§
impl<'func, M, F, R> Freeze for LowLevelILExpression<'func, M, F, R>
impl<'func, M, F, R> RefUnwindSafe for LowLevelILExpression<'func, M, F, R>
impl<'func, M, F, R> Send for LowLevelILExpression<'func, M, F, R>where
R: Send,
impl<'func, M, F, R> Sync for LowLevelILExpression<'func, M, F, R>where
R: Sync,
impl<'func, M, F, R> Unpin for LowLevelILExpression<'func, M, F, R>where
R: Unpin,
impl<'func, M, F, R> UnwindSafe for LowLevelILExpression<'func, M, F, R>
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