Struct rustc_const_eval::interpret::eval_context::LocalState
source · pub struct LocalState<'tcx, Prov: Provenance = AllocId> {
value: LocalValue<Prov>,
layout: Cell<Option<TyAndLayout<'tcx>>>,
}
Expand description
State of a local variable including a memoized layout
Fields§
§value: LocalValue<Prov>
§layout: Cell<Option<TyAndLayout<'tcx>>>
Don’t modify if Some
, this is only used to prevent computing the layout twice.
Avoids computing the layout of locals that are never actually initialized.
Implementations§
source§impl<'tcx, Prov: Provenance> LocalState<'tcx, Prov>
impl<'tcx, Prov: Provenance> LocalState<'tcx, Prov>
pub fn make_live_uninit(&mut self)
sourcepub fn as_mplace_or_imm(
&self
) -> Option<Either<(Pointer<Option<Prov>>, MemPlaceMeta<Prov>), Immediate<Prov>>>
pub fn as_mplace_or_imm( &self ) -> Option<Either<(Pointer<Option<Prov>>, MemPlaceMeta<Prov>), Immediate<Prov>>>
This is a hack because Miri needs a way to visit all the provenance in a LocalState
without having a layout or TyCtxt
available, and we want to keep the Operand
type
private.
sourcepub(super) fn access(&self) -> InterpResult<'tcx, &Operand<Prov>>
pub(super) fn access(&self) -> InterpResult<'tcx, &Operand<Prov>>
Read the local’s value or error if the local is not yet live or not live anymore.
sourcepub(super) fn access_mut(&mut self) -> InterpResult<'tcx, &mut Operand<Prov>>
pub(super) fn access_mut(&mut self) -> InterpResult<'tcx, &mut Operand<Prov>>
Overwrite the local. If the local can be overwritten in place, return a reference
to do so; otherwise return the MemPlace
to consult instead.
Note: Before calling this, call the before_access_local_mut
machine hook! You may be
invalidating machine invariants otherwise!
Trait Implementations§
source§impl<'tcx, Prov: Clone + Provenance> Clone for LocalState<'tcx, Prov>
impl<'tcx, Prov: Clone + Provenance> Clone for LocalState<'tcx, Prov>
source§fn clone(&self) -> LocalState<'tcx, Prov>
fn clone(&self) -> LocalState<'tcx, Prov>
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreAuto Trait Implementations§
impl<'tcx, Prov = AllocId> !RefUnwindSafe for LocalState<'tcx, Prov>
impl<'tcx, Prov> Send for LocalState<'tcx, Prov>where Prov: Send,
impl<'tcx, Prov = AllocId> !Sync for LocalState<'tcx, Prov>
impl<'tcx, Prov> Unpin for LocalState<'tcx, Prov>where Prov: Unpin,
impl<'tcx, Prov = AllocId> !UnwindSafe for LocalState<'tcx, Prov>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
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.