[−][src]Struct isla_lib::executor::LocalFrame
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]
args: &[(Name, &'ir Ty<Name>)],
vals: Option<&[Val<B>]>,
instrs: &'ir [Instr<Name, B>]
) -> Self
pub fn new_call(
&self,
args: &[(Name, &'ir Ty<Name>)],
vals: Option<&[Val<B>]>,
instrs: &'ir [Instr<Name, B>]
) -> Self[src]
&self,
args: &[(Name, &'ir Ty<Name>)],
vals: Option<&[Val<B>]>,
instrs: &'ir [Instr<Name, B>]
) -> Self
pub fn task_with_checkpoint(
&self,
task_id: usize,
checkpoint: Checkpoint<B>
) -> Task<'ir, B>[src]
&self,
task_id: usize,
checkpoint: Checkpoint<B>
) -> Task<'ir, B>
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,
B: Send,
impl<'ir, B> Sync for LocalFrame<'ir, B> where
B: Sync,
B: Sync,
impl<'ir, B> Unpin for LocalFrame<'ir, B> where
B: Unpin,
B: Unpin,
impl<'ir, B> !UnwindSafe for LocalFrame<'ir, B>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
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]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,