pub struct Frame<'tcx, Prov: Provenance = CtfeProvenance, Extra = ()> {
pub(super) body: &'tcx Body<'tcx>,
pub(super) instance: Instance<'tcx>,
pub extra: Extra,
return_cont: ReturnContinuation,
pub return_place: PlaceTy<'tcx, Prov>,
pub locals: IndexVec<Local, LocalState<'tcx, Prov>>,
tracing_span: SpanGuard,
pub(super) loc: Either<Location, Span>,
}Expand description
A stack frame.
Fields§
§body: &'tcx Body<'tcx>The MIR for the function called on this frame.
instance: Instance<'tcx>The def_id and args of the current function.
extra: ExtraExtra data for the machine.
return_cont: ReturnContinuationWhere to continue when returning from this function.
return_place: PlaceTy<'tcx, Prov>The location where the result of the current stack frame should be written to,
and its layout in the caller. This place is to be interpreted relative to the
caller’s stack frame. We use a PlaceTy instead of an MPlaceTy since this
avoids having to move all return places into Miri’s memory.
locals: IndexVec<Local, LocalState<'tcx, Prov>>The list of locals for this stack frame, stored in order as
[return_ptr, arguments..., variables..., temporaries...].
The locals are stored as Option<Value>s.
None represents a local that is currently dead, while a live local
can either directly contain Scalar or refer to some part of an Allocation.
Do not access this directly; always go through the machine hook!
tracing_span: SpanGuardThe span of the tracing crate is stored here.
When the guard is dropped, the span is exited. This gives us
a full stack trace on all tracing statements.
loc: Either<Location, Span>If this is Right, we are not currently executing any particular statement in
this frame (can happen e.g. during frame initialization, and during unwinding on
frames without cleanup code).
Needs to be public because ConstProp does unspeakable things to it.
Implementations§
Source§impl<'tcx, Prov: Provenance> Frame<'tcx, Prov>
impl<'tcx, Prov: Provenance> Frame<'tcx, Prov>
pub fn with_extra<Extra>(self, extra: Extra) -> Frame<'tcx, Prov, Extra>
Source§impl<'tcx, Prov: Provenance, Extra> Frame<'tcx, Prov, Extra>
impl<'tcx, Prov: Provenance, Extra> Frame<'tcx, Prov, Extra>
Sourcepub fn current_loc(&self) -> Either<Location, Span>
pub fn current_loc(&self) -> Either<Location, Span>
Get the current location within the Frame.
If this is Right, we are not currently executing any particular statement in
this frame (can happen e.g. during frame initialization, and during unwinding on
frames without cleanup code).
Used by priroda.
pub fn body(&self) -> &'tcx Body<'tcx>
pub fn instance(&self) -> Instance<'tcx>
Sourcepub fn current_source_info(&self) -> Option<&SourceInfo>
pub fn current_source_info(&self) -> Option<&SourceInfo>
Return the SourceInfo of the current instruction.
pub fn current_span(&self) -> Span
pub fn lint_root(&self, tcx: TyCtxt<'tcx>) -> Option<HirId>
Sourcepub(super) fn locals_addr(&self) -> usize
pub(super) fn locals_addr(&self) -> usize
Returns the address of the buffer where the locals are stored. This is used by Place as a
sanity check to detect bugs where we mix up which stack frame a place refers to.
pub fn generate_stacktrace_from_stack(stack: &[Self]) -> Vec<FrameInfo<'tcx>>
Auto Trait Implementations§
impl<'tcx, Prov = CtfeProvenance, Extra = ()> !DynSend for Frame<'tcx, Prov, Extra>
impl<'tcx, Prov = CtfeProvenance, Extra = ()> !DynSync for Frame<'tcx, Prov, Extra>
impl<'tcx, Prov, Extra> Freeze for Frame<'tcx, Prov, Extra>
impl<'tcx, Prov = CtfeProvenance, Extra = ()> !RefUnwindSafe for Frame<'tcx, Prov, Extra>
impl<'tcx, Prov = CtfeProvenance, Extra = ()> !Send for Frame<'tcx, Prov, Extra>
impl<'tcx, Prov = CtfeProvenance, Extra = ()> !Sync for Frame<'tcx, Prov, Extra>
impl<'tcx, Prov, Extra> Unpin for Frame<'tcx, Prov, Extra>
impl<'tcx, Prov = CtfeProvenance, Extra = ()> !UnwindSafe for Frame<'tcx, Prov, Extra>
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
Source§impl<T, R> CollectAndApply<T, R> for T
impl<T, R> CollectAndApply<T, R> for T
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<P> IntoQueryParam<P> for P
impl<P> IntoQueryParam<P> for P
fn into_query_param(self) -> P
Source§impl<T> MaybeResult<T> for T
impl<T> MaybeResult<T> for T
Source§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<I, T, U> Upcast<I, U> for Twhere
U: UpcastFrom<I, T>,
impl<I, T, U> Upcast<I, U> for Twhere
U: UpcastFrom<I, T>,
Source§impl<I, T> UpcastFrom<I, T> for T
impl<I, T> UpcastFrom<I, T> for T
fn upcast_from(from: T, _tcx: I) -> T
Source§impl<Tcx, T> Value<Tcx> for Twhere
Tcx: DepContext,
impl<Tcx, T> Value<Tcx> for Twhere
Tcx: DepContext,
default fn from_cycle_error( tcx: Tcx, cycle_error: &CycleError, _guar: ErrorGuaranteed, ) -> T
Source§impl<T> WithSubscriber for T
impl<T> WithSubscriber for T
Source§fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
Source§fn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
impl<T> ErasedDestructor for Twhere
T: 'static,
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.