pub struct Frame<'a> { /* private fields */ }
Expand description
Holds the mutable elements of an interpreted function call.
Implementations§
Source§impl<'a> Frame<'a>
impl<'a> Frame<'a>
Sourcepub fn new(function: &'a Function) -> Self
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.
Sourcepub fn get(&self, name: ValueRef) -> &DataValue
pub fn get(&self, name: ValueRef) -> &DataValue
Retrieve the actual value associated with an SSA reference.
Sourcepub fn get_all(&self, names: &[ValueRef]) -> Vec<DataValue>
pub fn get_all(&self, names: &[ValueRef]) -> Vec<DataValue>
Retrieve multiple SSA references; see get
.
Sourcepub fn set(&mut self, name: ValueRef, value: DataValue) -> Option<DataValue>
pub fn set(&mut self, name: ValueRef, value: DataValue) -> Option<DataValue>
Assign value
to the SSA reference name
.
Sourcepub fn set_all(&mut self, names: &[ValueRef], values: Vec<DataValue>)
pub fn set_all(&mut self, names: &[ValueRef], values: Vec<DataValue>)
Assign to multiple SSA references; see set
.
Sourcepub fn rename(&mut self, old_names: &[ValueRef], new_names: &[ValueRef])
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).
Sourcepub fn entries_mut(&mut self) -> &mut [Option<DataValue>]
pub fn entries_mut(&mut self) -> &mut [Option<DataValue>]
Accessor for the current entries in the frame.