Enum miri::interpret::LocalValue
source · [−]pub enum LocalValue<Prov = AllocId>where
Prov: Provenance,{
Dead,
Live(Operand<Prov>),
}
Expand description
Current value of a local variable
Variants
Dead
This local is not currently alive, and cannot be used at all.
Live(Operand<Prov>)
A normal, live local.
Mostly for convenience, we re-use the Operand
type here.
This is an optimization over just always having a pointer here;
we can thus avoid doing an allocation when the local just stores
immediate values and never has its address taken.
Auto Trait Implementations
impl<Prov> RefUnwindSafe for LocalValue<Prov>where
Prov: RefUnwindSafe,
impl<Prov> Send for LocalValue<Prov>where
Prov: Send,
impl<Prov> Sync for LocalValue<Prov>where
Prov: Sync,
impl<Prov> Unpin for LocalValue<Prov>where
Prov: Unpin,
impl<Prov> UnwindSafe for LocalValue<Prov>where
Prov: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<V, T> VZip<V> for Twhere
V: MultiLane<T>,
impl<V, T> VZip<V> for Twhere
V: MultiLane<T>,
fn vzip(self) -> V
Layout
Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.