[][src]Enum isla_lib::smt::Event

pub enum Event<B> {
    Smt(Def),
    Fork(u32SymString),
    ReadReg(NameVec<Accessor>, Val<B>),
    WriteReg(NameVec<Accessor>, Val<B>),
    ReadMem {
        value: Val<B>,
        read_kind: Val<B>,
        address: Val<B>,
        bytes: u32,
    },
    WriteMem {
        value: Sym,
        write_kind: Val<B>,
        address: Val<B>,
        data: Val<B>,
        bytes: u32,
    },
    Branch {
        address: Val<B>,
    },
    Barrier {
        barrier_kind: Val<B>,
    },
    CacheOp {
        cache_op_kind: Val<B>,
        address: Val<B>,
    },
    MarkReg {
        reg: Name,
        mark: String,
    },
    Cycle,
    Instr(Val<B>),
    Sleeping(Sym),
    SleepRequest,
    WakeupRequest,
}

Variants

Smt(Def)
Fork(u32SymString)
ReadReg(NameVec<Accessor>, Val<B>)
WriteReg(NameVec<Accessor>, Val<B>)
ReadMem

Fields of ReadMem

value: Val<B>read_kind: Val<B>address: Val<B>bytes: u32
WriteMem

Fields of WriteMem

value: Symwrite_kind: Val<B>address: Val<B>data: Val<B>bytes: u32
Branch

Fields of Branch

address: Val<B>
Barrier

Fields of Barrier

barrier_kind: Val<B>
CacheOp

Fields of CacheOp

cache_op_kind: Val<B>address: Val<B>
MarkReg

Fields of MarkReg

reg: Namemark: String
Cycle
Instr(Val<B>)
Sleeping(Sym)
SleepRequest
WakeupRequest

Implementations

impl<B: BV> Event<B>[src]

pub fn is_smt(&self) -> bool[src]

pub fn is_reg(&self) -> bool[src]

pub fn is_write_reg(&self) -> bool[src]

pub fn is_cycle(&self) -> bool[src]

pub fn is_instr(&self) -> bool[src]

pub fn is_branch(&self) -> bool[src]

pub fn is_barrier(&self) -> bool[src]

pub fn is_fork(&self) -> bool[src]

pub fn is_memory(&self) -> bool[src]

pub fn is_memory_read(&self) -> bool[src]

pub fn is_memory_write(&self) -> bool[src]

pub fn is_cache_op(&self) -> bool[src]

pub fn has_barrier_kind(&self, bk: usize) -> bool[src]

pub fn has_read_kind(&self, rk: usize) -> bool[src]

pub fn has_write_kind(&self, wk: usize) -> bool[src]

pub fn has_cache_op_kind(&self, ck: usize) -> bool[src]

Trait Implementations

impl<B: Clone> Clone for Event<B>[src]

impl<B: Debug> Debug for Event<B>[src]

Auto Trait Implementations

impl<B> RefUnwindSafe for Event<B> where
    B: RefUnwindSafe

impl<B> Send for Event<B> where
    B: Send

impl<B> Sync for Event<B> where
    B: Sync

impl<B> Unpin for Event<B> where
    B: Unpin

impl<B> UnwindSafe for Event<B> where
    B: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.