pub struct Operation<'func, A, M, F, O>{ /* private fields */ }

Implementations§

source§

impl<'func, A, M, F, O> Operation<'func, A, M, F, O>

source

pub fn address(&self) -> u64

source§

impl<'func, A, M, O> Operation<'func, A, M, NonSSA<LiftedNonSSA>, O>

source

pub fn flag_write(&self) -> Option<A::FlagWrite>

source§

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

source

pub fn size(&self) -> usize

source§

impl<'func, A, M, V> Operation<'func, A, M, NonSSA<V>, Intrinsic>

source

pub fn intrinsic(&self) -> Option<A::Intrinsic>

source§

impl<'func, A, M, V> Operation<'func, A, M, NonSSA<V>, SetReg>

source

pub fn size(&self) -> usize

source

pub fn dest_reg(&self) -> Register<A::Register>

source

pub fn source_expr(&self) -> Expression<'func, A, M, NonSSA<V>, ValueExpr>

source§

impl<'func, A, M, V> Operation<'func, A, M, NonSSA<V>, SetRegSplit>

source

pub fn size(&self) -> usize

source

pub fn dest_reg_high(&self) -> Register<A::Register>

source

pub fn dest_reg_low(&self) -> Register<A::Register>

source

pub fn source_expr(&self) -> Expression<'func, A, M, NonSSA<V>, ValueExpr>

source§

impl<'func, A, M, V> Operation<'func, A, M, NonSSA<V>, SetFlag>

source

pub fn source_expr(&self) -> Expression<'func, A, M, NonSSA<V>, ValueExpr>

source§

impl<'func, A, M, V> Operation<'func, A, M, NonSSA<V>, Load>

source

pub fn size(&self) -> usize

source

pub fn source_mem_expr(&self) -> Expression<'func, A, M, NonSSA<V>, ValueExpr>

source§

impl<'func, A, M, V> Operation<'func, A, M, NonSSA<V>, Store>

source

pub fn size(&self) -> usize

source

pub fn dest_mem_expr(&self) -> Expression<'func, A, M, NonSSA<V>, ValueExpr>

source

pub fn source_expr(&self) -> Expression<'func, A, M, NonSSA<V>, ValueExpr>

source§

impl<'func, A, M, V> Operation<'func, A, M, NonSSA<V>, Reg>

source

pub fn size(&self) -> usize

source

pub fn source_reg(&self) -> Register<A::Register>

source§

impl<'func, A, M, V> Operation<'func, A, M, NonSSA<V>, RegSplit>

source

pub fn size(&self) -> usize

source

pub fn low_reg(&self) -> Register<A::Register>

source

pub fn high_reg(&self) -> Register<A::Register>

source§

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

source

pub fn target(&self) -> Expression<'func, A, M, F, ValueExpr>

source§

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

source

pub fn target(&self) -> Expression<'func, A, M, F, ValueExpr>

source

pub fn target_list(&self) -> BTreeMap<u64, usize>

source§

impl<'func, A, M, V> Operation<'func, A, M, NonSSA<V>, Call>

source

pub fn target(&self) -> Expression<'func, A, M, NonSSA<V>, ValueExpr>

source

pub fn stack_adjust(&self) -> Option<u64>

source§

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

source

pub fn target(&self) -> Expression<'func, A, M, F, ValueExpr>

source§

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

source

pub fn condition(&self) -> Expression<'func, A, M, F, ValueExpr>

source

pub fn true_target(&self) -> Instruction<'func, A, M, F>

source

pub fn true_target_idx(&self) -> usize

source

pub fn false_target(&self) -> Instruction<'func, A, M, F>

source

pub fn false_target_idx(&self) -> usize

source§

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

source

pub fn target(&self) -> Instruction<'func, A, M, F>

source

pub fn target_idx(&self) -> usize

source§

impl<'func, A, M> Operation<'func, A, M, NonSSA<LiftedNonSSA>, FlagGroup>
where A: 'func + Architecture, M: FunctionMutability,

source

pub fn flag_group(&self) -> A::FlagGroup

source§

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

source

pub fn vector(&self) -> u64

source§

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

source

pub fn size(&self) -> usize

source

pub fn value(&self) -> u64

source§

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

source

pub fn size(&self) -> usize

source

pub fn value(&self) -> u64

source§

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

source

pub fn size(&self) -> usize

source

pub fn left(&self) -> Expression<'func, A, M, F, ValueExpr>

source

pub fn right(&self) -> Expression<'func, A, M, F, ValueExpr>

source§

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

source

pub fn size(&self) -> usize

source

pub fn left(&self) -> Expression<'func, A, M, F, ValueExpr>

source

pub fn right(&self) -> Expression<'func, A, M, F, ValueExpr>

source

pub fn carry(&self) -> Expression<'func, A, M, F, ValueExpr>

source§

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

source

pub fn size(&self) -> usize

source

pub fn high(&self) -> Expression<'func, A, M, F, ValueExpr>

source

pub fn low(&self) -> Expression<'func, A, M, F, ValueExpr>

source

pub fn right(&self) -> Expression<'func, A, M, F, ValueExpr>

source§

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

source

pub fn size(&self) -> usize

source

pub fn operand(&self) -> Expression<'func, A, M, F, ValueExpr>

source§

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

source

pub fn size(&self) -> usize

source

pub fn left(&self) -> Expression<'func, A, M, F, ValueExpr>

source

pub fn right(&self) -> Expression<'func, A, M, F, ValueExpr>

source§

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

source

pub fn size(&self) -> usize

source

pub fn mem_expr(&self) -> Expression<'func, A, M, F, ValueExpr>

Auto Trait Implementations§

§

impl<'func, A, M, F, O> RefUnwindSafe for Operation<'func, A, M, F, O>

§

impl<'func, A, M, F, O> Send for Operation<'func, A, M, F, O>
where O: Send,

§

impl<'func, A, M, F, O> Sync for Operation<'func, A, M, F, O>
where O: Sync,

§

impl<'func, A, M, F, O> Unpin for Operation<'func, A, M, F, O>
where O: Unpin,

§

impl<'func, A, M, F, O> UnwindSafe for Operation<'func, A, M, F, O>

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>,

§

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>,

§

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.