Struct Frame

Source
pub struct Frame<'a> { /* private fields */ }
Expand description

Holds the mutable elements of an interpreted function call.

Implementations§

Source§

impl<'a> Frame<'a>

Source

pub fn new(function: &'a Function) -> Self

Construct a new Frame for a function. This allocates a slot in the hash map for each SSA Value (renamed to ValueRef here) which should mean that no additional allocations are needed while interpreting the frame.

Source

pub fn get(&self, name: ValueRef) -> &DataValue

Retrieve the actual value associated with an SSA reference.

Source

pub fn get_all(&self, names: &[ValueRef]) -> Vec<DataValue>

Retrieve multiple SSA references; see get.

Source

pub fn set(&mut self, name: ValueRef, value: DataValue) -> Option<DataValue>

Assign value to the SSA reference name.

Source

pub fn set_all(&mut self, names: &[ValueRef], values: Vec<DataValue>)

Assign to multiple SSA references; see set.

Source

pub fn rename(&mut self, old_names: &[ValueRef], new_names: &[ValueRef])

Rename all of the SSA references in old_names to those in new_names. This will remove any old references that are not in old_names. TODO This performs an extra allocation that could be removed if we copied the values in the right order (i.e. when modifying in place, we need to avoid changing a value before it is referenced).

Source

pub fn entries_mut(&mut self) -> &mut [Option<DataValue>]

Accessor for the current entries in the frame.

Source

pub fn function(&self) -> &'a Function

Accessor for the [Function] of this frame.

Trait Implementations§

Source§

impl<'a> Debug for Frame<'a>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'a> Freeze for Frame<'a>

§

impl<'a> RefUnwindSafe for Frame<'a>

§

impl<'a> Send for Frame<'a>

§

impl<'a> Sync for Frame<'a>

§

impl<'a> Unpin for Frame<'a>

§

impl<'a> UnwindSafe for Frame<'a>

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> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

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

Source§

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.