[][src]Struct isla_lib::executor::LocalFrame

pub struct LocalFrame<'ir, B> { /* fields omitted */ }

A LocalFrame is a mutable frame which is used by a currently executing thread. It is turned into an immutable Frame when the control flow forks on a choice, which can be shared by threads.

Implementations

impl<'ir, B: BV> LocalFrame<'ir, B>[src]

pub fn vars_mut(&mut self) -> &mut Bindings<'ir, B>[src]

pub fn vars(&self) -> &Bindings<'ir, B>[src]

pub fn regs_mut(&mut self) -> &mut Bindings<'ir, B>[src]

pub fn regs(&self) -> &Bindings<'ir, B>[src]

pub fn add_regs(&mut self, regs: &Bindings<'ir, B>) -> &mut Self[src]

pub fn lets_mut(&mut self) -> &mut Bindings<'ir, B>[src]

pub fn lets(&self) -> &Bindings<'ir, B>[src]

pub fn add_lets(&mut self, lets: &Bindings<'ir, B>) -> &mut Self[src]

pub fn get_exception(&self) -> Option<(&Val<B>, &str)>[src]

pub fn memory(&self) -> &Memory<B>[src]

pub fn memory_mut(&mut self) -> &mut Memory<B>[src]

pub fn set_memory(&mut self, memory: Memory<B>) -> &mut Self[src]

pub fn new(
    args: &[(Name, &'ir Ty<Name>)],
    vals: Option<&[Val<B>]>,
    instrs: &'ir [Instr<Name, B>]
) -> Self
[src]

pub fn new_call(
    &self,
    args: &[(Name, &'ir Ty<Name>)],
    vals: Option<&[Val<B>]>,
    instrs: &'ir [Instr<Name, B>]
) -> Self
[src]

pub fn task_with_checkpoint(
    &self,
    task_id: usize,
    checkpoint: Checkpoint<B>
) -> Task<'ir, B>
[src]

pub fn task(&self, task_id: usize) -> Task<'ir, B>[src]

Auto Trait Implementations

impl<'ir, B> !RefUnwindSafe for LocalFrame<'ir, B>

impl<'ir, B> Send for LocalFrame<'ir, B> where
    B: Send

impl<'ir, B> Sync for LocalFrame<'ir, B> where
    B: Sync

impl<'ir, B> Unpin for LocalFrame<'ir, B> where
    B: Unpin

impl<'ir, B> !UnwindSafe for LocalFrame<'ir, B>

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