Struct rustc_const_eval::interpret::stack::Frame
source · pub struct Frame<'tcx, Prov: Provenance = CtfeProvenance, Extra = ()> {
pub(super) body: &'tcx Body<'tcx>,
pub(super) instance: Instance<'tcx>,
pub extra: Extra,
return_to_block: StackPopCleanup,
pub return_place: MPlaceTy<'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: Extra
Extra data for the machine.
return_to_block: StackPopCleanup
Work to perform when returning from this function.
return_place: MPlaceTy<'tcx, Prov>
The location where the result of the current stack frame should be written to, and its layout in the caller.
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: SpanGuard
The 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, 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> Filterable for T
impl<T> Filterable for T
source§fn filterable(
self,
filter_name: &'static str,
) -> RequestFilterDataProvider<T, fn(_: DataRequest<'_>) -> bool>
fn filterable( self, filter_name: &'static str, ) -> RequestFilterDataProvider<T, fn(_: DataRequest<'_>) -> bool>
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<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<'a, T> Captures<'a> for Twhere
T: ?Sized,
impl<T> ErasedDestructor for Twhere
T: 'static,
impl<T> MaybeSendSync for 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.