Skip to main content

rustc_const_eval/interpret/
call.rs

1//! Manages calling a concrete function (with known MIR body) with argument passing,
2//! and returning the return value to the caller.
3
4use std::assert_matches;
5use std::borrow::Cow;
6
7use either::{Left, Right};
8use rustc_abi::{self as abi, ExternAbi, FieldIdx, Integer, VariantIdx};
9use rustc_hir::def_id::DefId;
10use rustc_hir::find_attr;
11use rustc_middle::ty::layout::{IntegerExt, TyAndLayout};
12use rustc_middle::ty::{self, AdtDef, Instance, Ty, VariantDef};
13use rustc_middle::{bug, mir, span_bug};
14use rustc_target::callconv::{ArgAbi, FnAbi};
15use tracing::field::Empty;
16use tracing::{info, instrument, trace};
17
18use super::{
19    CtfeProvenance, FnVal, ImmTy, InterpCx, InterpResult, MPlaceTy, Machine, OpTy, PlaceTy,
20    Projectable, Provenance, ReturnAction, ReturnContinuation, Scalar, interp_ok, throw_ub,
21    throw_ub_format,
22};
23use crate::enter_trace_span;
24use crate::interpret::EnteredTraceSpan;
25
26/// An argument passed to a function.
27#[derive(#[automatically_derived]
impl<'tcx, Prov: ::core::clone::Clone + Provenance> ::core::clone::Clone for
    FnArg<'tcx, Prov> {
    #[inline]
    fn clone(&self) -> FnArg<'tcx, Prov> {
        match self {
            FnArg::Copy(__self_0) =>
                FnArg::Copy(::core::clone::Clone::clone(__self_0)),
            FnArg::InPlace(__self_0) =>
                FnArg::InPlace(::core::clone::Clone::clone(__self_0)),
        }
    }
}Clone, #[automatically_derived]
impl<'tcx, Prov: ::core::fmt::Debug + Provenance> ::core::fmt::Debug for
    FnArg<'tcx, Prov> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            FnArg::Copy(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Copy",
                    &__self_0),
            FnArg::InPlace(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "InPlace", &__self_0),
        }
    }
}Debug)]
28pub enum FnArg<'tcx, Prov: Provenance = CtfeProvenance> {
29    /// Pass a copy of the given operand.
30    Copy(OpTy<'tcx, Prov>),
31    /// Allow for the argument to be passed in-place: destroy the value originally stored at that
32    /// place and make the place inaccessible for the duration of the function call. This *must* be
33    /// an in-memory place so that we can do the proper alias checks.
34    InPlace(MPlaceTy<'tcx, Prov>),
35}
36
37impl<'tcx, Prov: Provenance> FnArg<'tcx, Prov> {
38    pub fn layout(&self) -> &TyAndLayout<'tcx> {
39        match self {
40            FnArg::Copy(op) => &op.layout,
41            FnArg::InPlace(mplace) => &mplace.layout,
42        }
43    }
44
45    /// Make a copy of the given fn_arg. Any `InPlace` are degenerated to copies, no protection of the
46    /// original memory occurs.
47    pub fn copy_fn_arg(&self) -> OpTy<'tcx, Prov> {
48        match self {
49            FnArg::Copy(op) => op.clone(),
50            FnArg::InPlace(mplace) => mplace.clone().into(),
51        }
52    }
53}
54
55impl<'tcx, M: Machine<'tcx>> InterpCx<'tcx, M> {
56    /// Make a copy of the given fn_args. Any `InPlace` are degenerated to copies, no protection of the
57    /// original memory occurs.
58    pub fn copy_fn_args(args: &[FnArg<'tcx, M::Provenance>]) -> Vec<OpTy<'tcx, M::Provenance>> {
59        args.iter().map(|fn_arg| fn_arg.copy_fn_arg()).collect()
60    }
61
62    /// Helper function for argument untupling.
63    fn fn_arg_project_field(
64        &self,
65        arg: &FnArg<'tcx, M::Provenance>,
66        field: FieldIdx,
67    ) -> InterpResult<'tcx, FnArg<'tcx, M::Provenance>> {
68        interp_ok(match arg {
69            FnArg::Copy(op) => FnArg::Copy(self.project_field(op, field)?),
70            FnArg::InPlace(mplace) => FnArg::InPlace(self.project_field(mplace, field)?),
71        })
72    }
73
74    /// Find the wrapped inner type of a transparent wrapper.
75    /// Must not be called on 1-ZST (as they don't have a uniquely defined "wrapped field").
76    ///
77    /// We work with `TyAndLayout` here since that makes it much easier to iterate over all fields.
78    fn unfold_transparent(
79        &self,
80        layout: TyAndLayout<'tcx>,
81        may_unfold: impl Fn(AdtDef<'tcx>) -> bool,
82    ) -> TyAndLayout<'tcx> {
83        match layout.ty.kind() {
84            ty::Adt(adt_def, _) if adt_def.repr().transparent() && may_unfold(*adt_def) => {
85                if !!adt_def.is_enum() {
    ::core::panicking::panic("assertion failed: !adt_def.is_enum()")
};assert!(!adt_def.is_enum());
86                // Find the non-1-ZST field, and recurse.
87                let (_, field) = layout.non_1zst_field(self).unwrap();
88                self.unfold_transparent(field, may_unfold)
89            }
90            ty::Pat(base, _) => self.layout_of(*base).expect(
91                "if the layout of a pattern type could be computed, so can the layout of its base",
92            ),
93            // Not a transparent type, no further unfolding.
94            _ => layout,
95        }
96    }
97
98    /// Unwrap types that are guaranteed a null-pointer-optimization
99    fn unfold_npo(&self, layout: TyAndLayout<'tcx>) -> InterpResult<'tcx, TyAndLayout<'tcx>> {
100        // Check if this is an option-like type wrapping some type.
101        let ty::Adt(def, args) = layout.ty.kind() else {
102            // Not an ADT, so definitely no NPO.
103            return interp_ok(layout);
104        };
105        if def.variants().len() != 2 {
106            // Not a 2-variant enum, so no NPO.
107            return interp_ok(layout);
108        }
109        if !def.is_enum() {
    ::core::panicking::panic("assertion failed: def.is_enum()")
};assert!(def.is_enum());
110
111        let all_fields_1zst = |variant: &VariantDef| -> InterpResult<'tcx, _> {
112            for field in &variant.fields {
113                let ty = field.ty(*self.tcx, args);
114                let layout = self.layout_of(ty)?;
115                if !layout.is_1zst() {
116                    return interp_ok(false);
117                }
118            }
119            interp_ok(true)
120        };
121
122        // If one variant consists entirely of 1-ZST, then the other variant
123        // is the only "relevant" one for this check.
124        let var0 = VariantIdx::from_u32(0);
125        let var1 = VariantIdx::from_u32(1);
126        let relevant_variant = if all_fields_1zst(def.variant(var0))? {
127            def.variant(var1)
128        } else if all_fields_1zst(def.variant(var1))? {
129            def.variant(var0)
130        } else {
131            // No variant is all-1-ZST, so no NPO.
132            return interp_ok(layout);
133        };
134        // The "relevant" variant must have exactly one field, and its type is the "inner" type.
135        if relevant_variant.fields.len() != 1 {
136            return interp_ok(layout);
137        }
138        let inner = relevant_variant.fields[FieldIdx::from_u32(0)].ty(*self.tcx, args);
139        let inner = self.layout_of(inner)?;
140
141        // Check if the inner type is one of the NPO-guaranteed ones.
142        // For that we first unpeel transparent *structs* (but not unions).
143        let is_npo =
144            |def: AdtDef<'tcx>| {
        {
            'done:
                {
                for i in
                    ::rustc_hir::attrs::HasAttrs::get_attrs(def.did(),
                        &self.tcx) {
                    #[allow(unused_imports)]
                    use rustc_hir::attrs::AttributeKind::*;
                    let i: &rustc_hir::Attribute = i;
                    match i {
                        rustc_hir::Attribute::Parsed(RustcNonnullOptimizationGuaranteed)
                            => {
                            break 'done Some(());
                        }
                        rustc_hir::Attribute::Unparsed(..) =>
                            {}
                            #[deny(unreachable_patterns)]
                            _ => {}
                    }
                }
                None
            }
        }
    }.is_some()find_attr!(self.tcx, def.did(), RustcNonnullOptimizationGuaranteed);
145        let inner = self.unfold_transparent(inner, /* may_unfold */ |def| {
146            // Stop at NPO types so that we don't miss that attribute in the check below!
147            def.is_struct() && !is_npo(def)
148        });
149        interp_ok(match inner.ty.kind() {
150            ty::Ref(..) | ty::FnPtr(..) => {
151                // Option<&T> behaves like &T, and same for fn()
152                inner
153            }
154            ty::Adt(def, _) if is_npo(*def) => {
155                // Once we found a `nonnull_optimization_guaranteed` type, further strip off
156                // newtype structs from it to find the underlying ABI type.
157                self.unfold_transparent(inner, /* may_unfold */ |def| def.is_struct())
158            }
159            _ => {
160                // Everything else we do not unfold.
161                layout
162            }
163        })
164    }
165
166    /// Check if these two layouts look like they are fn-ABI-compatible.
167    /// (We also compare the `PassMode`, so this doesn't have to check everything. But it turns out
168    /// that only checking the `PassMode` is insufficient.)
169    fn layout_compat(
170        &self,
171        caller: TyAndLayout<'tcx>,
172        callee: TyAndLayout<'tcx>,
173    ) -> InterpResult<'tcx, bool> {
174        // Fast path: equal types are definitely compatible.
175        if caller.ty == callee.ty {
176            return interp_ok(true);
177        }
178        // 1-ZST are compatible with all 1-ZST (and with nothing else).
179        if caller.is_1zst() || callee.is_1zst() {
180            return interp_ok(caller.is_1zst() && callee.is_1zst());
181        }
182        // Unfold newtypes and NPO optimizations.
183        let unfold = |layout: TyAndLayout<'tcx>| {
184            self.unfold_npo(self.unfold_transparent(layout, /* may_unfold */ |_def| true))
185        };
186        let caller = unfold(caller)?;
187        let callee = unfold(callee)?;
188        // Now see if these inner types are compatible.
189
190        // Compatible pointer types. For thin pointers, we have to accept even non-`repr(transparent)`
191        // things as compatible due to `DispatchFromDyn`. For instance, `Rc<i32>` and `*mut i32`
192        // must be compatible. So we just accept everything with Pointer ABI as compatible,
193        // even if this will accept some code that is not stably guaranteed to work.
194        // This also handles function pointers.
195        let thin_pointer = |layout: TyAndLayout<'tcx>| match layout.backend_repr {
196            abi::BackendRepr::Scalar(s) => match s.primitive() {
197                abi::Primitive::Pointer(addr_space) => Some(addr_space),
198                _ => None,
199            },
200            _ => None,
201        };
202        if let (Some(caller), Some(callee)) = (thin_pointer(caller), thin_pointer(callee)) {
203            return interp_ok(caller == callee);
204        }
205        // For wide pointers we have to get the pointee type.
206        let pointee_ty = |ty: Ty<'tcx>| -> InterpResult<'tcx, Option<Ty<'tcx>>> {
207            // We cannot use `builtin_deref` here since we need to reject `Box<T, MyAlloc>`.
208            interp_ok(Some(match ty.kind() {
209                ty::Ref(_, ty, _) => *ty,
210                ty::RawPtr(ty, _) => *ty,
211                // We only accept `Box` with the default allocator.
212                _ if ty.is_box_global(*self.tcx) => ty.expect_boxed_ty(),
213                _ => return interp_ok(None),
214            }))
215        };
216        if let (Some(caller), Some(callee)) = (pointee_ty(caller.ty)?, pointee_ty(callee.ty)?) {
217            // This is okay if they have the same metadata type.
218            let meta_ty = |ty: Ty<'tcx>| {
219                // Even if `ty` is normalized, the search for the unsized tail will project
220                // to fields, which can yield non-normalized types. So we need to provide a
221                // normalization function.
222                let normalize = |ty| self.tcx.normalize_erasing_regions(self.typing_env, ty);
223                ty.ptr_metadata_ty(*self.tcx, normalize)
224            };
225            return interp_ok(meta_ty(caller) == meta_ty(callee));
226        }
227
228        // Compatible integer types (in particular, usize vs ptr-sized-u32/u64).
229        // `char` counts as `u32.`
230        let int_ty = |ty: Ty<'tcx>| {
231            Some(match ty.kind() {
232                ty::Int(ity) => (Integer::from_int_ty(&self.tcx, *ity), /* signed */ true),
233                ty::Uint(uty) => (Integer::from_uint_ty(&self.tcx, *uty), /* signed */ false),
234                ty::Char => (Integer::I32, /* signed */ false),
235                _ => return None,
236            })
237        };
238        if let (Some(caller), Some(callee)) = (int_ty(caller.ty), int_ty(callee.ty)) {
239            // This is okay if they are the same integer type.
240            return interp_ok(caller == callee);
241        }
242
243        // Fall back to exact equality.
244        interp_ok(caller == callee)
245    }
246
247    /// Returns a `bool` saying whether the two arguments are ABI-compatible.
248    pub fn check_argument_compat(
249        &self,
250        caller_abi: &ArgAbi<'tcx, Ty<'tcx>>,
251        callee_abi: &ArgAbi<'tcx, Ty<'tcx>>,
252    ) -> InterpResult<'tcx, bool> {
253        // We do not want to accept things as ABI-compatible that just "happen to be" compatible on the current target,
254        // so we implement a type-based check that reflects the guaranteed rules for ABI compatibility.
255        if self.layout_compat(caller_abi.layout, callee_abi.layout)? {
256            // Ensure that our checks imply actual ABI compatibility for this concrete call.
257            // (This can fail e.g. if `#[rustc_nonnull_optimization_guaranteed]` is used incorrectly.)
258            if !caller_abi.eq_abi(callee_abi) {
    ::core::panicking::panic("assertion failed: caller_abi.eq_abi(callee_abi)")
};assert!(caller_abi.eq_abi(callee_abi));
259            interp_ok(true)
260        } else {
261            {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_const_eval/src/interpret/call.rs:261",
                        "rustc_const_eval::interpret::call",
                        ::tracing::Level::TRACE,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_const_eval/src/interpret/call.rs"),
                        ::tracing_core::__macro_support::Option::Some(261u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_const_eval::interpret::call"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::TRACE <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::TRACE <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                let mut iter = __CALLSITE.metadata().fields().iter();
                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&format_args!("check_argument_compat: incompatible ABIs:\ncaller: {0:?}\ncallee: {1:?}",
                                                    caller_abi, callee_abi) as &dyn Value))])
            });
    } else { ; }
};trace!(
262                "check_argument_compat: incompatible ABIs:\ncaller: {:?}\ncallee: {:?}",
263                caller_abi, callee_abi
264            );
265            interp_ok(false)
266        }
267    }
268
269    /// Initialize a single callee argument, checking the types for compatibility.
270    fn pass_argument<'x, 'y>(
271        &mut self,
272        caller_args: &mut impl Iterator<
273            Item = (&'x FnArg<'tcx, M::Provenance>, &'y ArgAbi<'tcx, Ty<'tcx>>),
274        >,
275        callee_abi: &ArgAbi<'tcx, Ty<'tcx>>,
276        callee_arg_idx: usize,
277        callee_arg: &mir::Place<'tcx>,
278        callee_ty: Ty<'tcx>,
279        already_live: bool,
280    ) -> InterpResult<'tcx>
281    where
282        'tcx: 'x,
283        'tcx: 'y,
284    {
285        match (&callee_ty, &callee_abi.layout.ty) {
    (left_val, right_val) => {
        if !(*left_val == *right_val) {
            let kind = ::core::panicking::AssertKind::Eq;
            ::core::panicking::assert_failed(kind, &*left_val, &*right_val,
                ::core::option::Option::None);
        }
    }
};assert_eq!(callee_ty, callee_abi.layout.ty);
286        if callee_abi.is_ignore() {
287            // This one is skipped. Still must be made live though!
288            if !already_live {
289                self.storage_live(callee_arg.as_local().unwrap())?;
290            }
291            return interp_ok(());
292        }
293        // Find next caller arg.
294        let Some((caller_arg, caller_abi)) = caller_args.next() else {
295            do yeet ::rustc_middle::mir::interpret::InterpErrorKind::UndefinedBehavior(::rustc_middle::mir::interpret::UndefinedBehaviorInfo::Ub(::alloc::__export::must_use({
                    ::alloc::fmt::format(format_args!("calling a function with fewer arguments than it requires"))
                })));throw_ub_format!("calling a function with fewer arguments than it requires");
296        };
297        match (&caller_arg.layout().layout, &caller_abi.layout.layout) {
    (left_val, right_val) => {
        if !(*left_val == *right_val) {
            let kind = ::core::panicking::AssertKind::Eq;
            ::core::panicking::assert_failed(kind, &*left_val, &*right_val,
                ::core::option::Option::None);
        }
    }
};assert_eq!(caller_arg.layout().layout, caller_abi.layout.layout);
298        // Sadly we cannot assert that `caller_arg.layout().ty` and `caller_abi.layout.ty` are
299        // equal; in closures the types sometimes differ. We just hope that `caller_abi` is the
300        // right type to print to the user.
301
302        // Check compatibility
303        if !self.check_argument_compat(caller_abi, callee_abi)? {
304            do yeet ::rustc_middle::mir::interpret::InterpErrorKind::UndefinedBehavior(::rustc_middle::mir::interpret::UndefinedBehaviorInfo::AbiMismatchArgument {
            arg_idx: callee_arg_idx,
            caller_ty: caller_abi.layout.ty,
            callee_ty: callee_abi.layout.ty,
        });throw_ub!(AbiMismatchArgument {
305                arg_idx: callee_arg_idx,
306                caller_ty: caller_abi.layout.ty,
307                callee_ty: callee_abi.layout.ty
308            });
309        }
310        // We work with a copy of the argument for now; if this is in-place argument passing, we
311        // will later protect the source it comes from. This means the callee cannot observe if we
312        // did in-place of by-copy argument passing, except for pointer equality tests.
313        let caller_arg_copy = caller_arg.copy_fn_arg();
314        if !already_live {
315            let local = callee_arg.as_local().unwrap();
316            let meta = caller_arg_copy.meta();
317            // `check_argument_compat` ensures that if metadata is needed, both have the same type,
318            // so we know they will use the metadata the same way.
319            if !(!meta.has_meta() || caller_arg_copy.layout.ty == callee_ty) {
    ::core::panicking::panic("assertion failed: !meta.has_meta() || caller_arg_copy.layout.ty == callee_ty")
};assert!(!meta.has_meta() || caller_arg_copy.layout.ty == callee_ty);
320
321            self.storage_live_dyn(local, meta)?;
322        }
323        // Now we can finally actually evaluate the callee place.
324        let callee_arg = self.eval_place(*callee_arg)?;
325        // We allow some transmutes here.
326        // FIXME: Depending on the PassMode, this should reset some padding to uninitialized. (This
327        // is true for all `copy_op`, but there are a lot of special cases for argument passing
328        // specifically.)
329        self.copy_op_allow_transmute(&caller_arg_copy, &callee_arg)?;
330        // If this was an in-place pass, protect the place it comes from for the duration of the call.
331        if let FnArg::InPlace(mplace) = caller_arg {
332            M::protect_in_place_function_argument(self, mplace)?;
333        }
334        interp_ok(())
335    }
336
337    /// The main entry point for creating a new stack frame: performs ABI checks and initializes
338    /// arguments.
339    #[allow(clippy :: suspicious_else_formatting)]
{
    let __tracing_attr_span;
    let __tracing_attr_guard;
    if ::tracing::Level::TRACE <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::TRACE <=
                    ::tracing::level_filters::LevelFilter::current() ||
            { false } {
        __tracing_attr_span =
            {
                use ::tracing::__macro_support::Callsite as _;
                static __CALLSITE: ::tracing::callsite::DefaultCallsite =
                    {
                        static META: ::tracing::Metadata<'static> =
                            {
                                ::tracing_core::metadata::Metadata::new("init_stack_frame",
                                    "rustc_const_eval::interpret::call",
                                    ::tracing::Level::TRACE,
                                    ::tracing_core::__macro_support::Option::Some("compiler/rustc_const_eval/src/interpret/call.rs"),
                                    ::tracing_core::__macro_support::Option::Some(339u32),
                                    ::tracing_core::__macro_support::Option::Some("rustc_const_eval::interpret::call"),
                                    ::tracing_core::field::FieldSet::new(&["instance", "body",
                                                    "caller_fn_abi", "args", "with_caller_location",
                                                    "destination", "cont"],
                                        ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                    ::tracing::metadata::Kind::SPAN)
                            };
                        ::tracing::callsite::DefaultCallsite::new(&META)
                    };
                let mut interest = ::tracing::subscriber::Interest::never();
                if ::tracing::Level::TRACE <=
                                    ::tracing::level_filters::STATIC_MAX_LEVEL &&
                                ::tracing::Level::TRACE <=
                                    ::tracing::level_filters::LevelFilter::current() &&
                            { interest = __CALLSITE.interest(); !interest.is_never() }
                        &&
                        ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                            interest) {
                    let meta = __CALLSITE.metadata();
                    ::tracing::Span::new(meta,
                        &{
                                #[allow(unused_imports)]
                                use ::tracing::field::{debug, display, Value};
                                let mut iter = meta.fields().iter();
                                meta.fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&::tracing::field::debug(&instance)
                                                            as &dyn Value)),
                                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&::tracing::field::debug(&body)
                                                            as &dyn Value)),
                                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&::tracing::field::debug(&caller_fn_abi)
                                                            as &dyn Value)),
                                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&::tracing::field::debug(&args)
                                                            as &dyn Value)),
                                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&with_caller_location
                                                            as &dyn Value)),
                                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&::tracing::field::debug(&destination)
                                                            as &dyn Value)),
                                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&::tracing::field::debug(&cont)
                                                            as &dyn Value))])
                            })
                } else {
                    let span =
                        ::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
                    {};
                    span
                }
            };
        __tracing_attr_guard = __tracing_attr_span.enter();
    }

    #[warn(clippy :: suspicious_else_formatting)]
    {

        #[allow(unknown_lints, unreachable_code, clippy ::
        diverging_sub_expression, clippy :: empty_loop, clippy ::
        let_unit_value, clippy :: let_with_type_underscore, clippy ::
        needless_return, clippy :: unreachable)]
        if false {
            let __tracing_attr_fake_return: InterpResult<'tcx> = loop {};
            return __tracing_attr_fake_return;
        }
        {
            let _trace =
                <M as
                        crate::interpret::Machine>::enter_trace_span(||
                        {
                            use ::tracing::__macro_support::Callsite as _;
                            static __CALLSITE: ::tracing::callsite::DefaultCallsite =
                                {
                                    static META: ::tracing::Metadata<'static> =
                                        {
                                            ::tracing_core::metadata::Metadata::new("step",
                                                "rustc_const_eval::interpret::call", ::tracing::Level::INFO,
                                                ::tracing_core::__macro_support::Option::Some("compiler/rustc_const_eval/src/interpret/call.rs"),
                                                ::tracing_core::__macro_support::Option::Some(350u32),
                                                ::tracing_core::__macro_support::Option::Some("rustc_const_eval::interpret::call"),
                                                ::tracing_core::field::FieldSet::new(&["step", "instance",
                                                                "tracing_separate_thread"],
                                                    ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                                ::tracing::metadata::Kind::SPAN)
                                        };
                                    ::tracing::callsite::DefaultCallsite::new(&META)
                                };
                            let mut interest = ::tracing::subscriber::Interest::never();
                            if ::tracing::Level::INFO <=
                                                ::tracing::level_filters::STATIC_MAX_LEVEL &&
                                            ::tracing::Level::INFO <=
                                                ::tracing::level_filters::LevelFilter::current() &&
                                        { interest = __CALLSITE.interest(); !interest.is_never() }
                                    &&
                                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                                        interest) {
                                let meta = __CALLSITE.metadata();
                                ::tracing::Span::new(meta,
                                    &{
                                            #[allow(unused_imports)]
                                            use ::tracing::field::{debug, display, Value};
                                            let mut iter = meta.fields().iter();
                                            meta.fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                                ::tracing::__macro_support::Option::Some(&display(&"init_stack_frame")
                                                                        as &dyn Value)),
                                                            (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                                ::tracing::__macro_support::Option::Some(&display(&instance)
                                                                        as &dyn Value)),
                                                            (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                                ::tracing::__macro_support::Option::Some(&Empty as
                                                                        &dyn Value))])
                                        })
                            } else {
                                let span =
                                    ::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
                                {};
                                span
                            }
                        });
            let extra_tys =
                if caller_fn_abi.c_variadic {
                    let fixed_count =
                        usize::try_from(caller_fn_abi.fixed_count).unwrap();
                    let extra_tys =
                        args[fixed_count..].iter().map(|arg| arg.layout().ty);
                    self.tcx.mk_type_list_from_iter(extra_tys)
                } else { ty::List::empty() };
            let callee_fn_abi =
                self.fn_abi_of_instance_no_deduced_attrs(instance,
                        extra_tys)?;
            if caller_fn_abi.conv != callee_fn_abi.conv {
                do yeet ::rustc_middle::mir::interpret::InterpErrorKind::UndefinedBehavior(::rustc_middle::mir::interpret::UndefinedBehaviorInfo::Ub(::alloc::__export::must_use({
                                    ::alloc::fmt::format(format_args!("calling a function with calling convention \"{0}\" using calling convention \"{1}\"",
                                            callee_fn_abi.conv, caller_fn_abi.conv))
                                })))
            }
            if caller_fn_abi.c_variadic != callee_fn_abi.c_variadic {
                do yeet ::rustc_middle::mir::interpret::InterpErrorKind::UndefinedBehavior(::rustc_middle::mir::interpret::UndefinedBehaviorInfo::CVariadicMismatch {
                            caller_is_c_variadic: caller_fn_abi.c_variadic,
                            callee_is_c_variadic: callee_fn_abi.c_variadic,
                        });
            }
            if caller_fn_abi.c_variadic &&
                    caller_fn_abi.fixed_count != callee_fn_abi.fixed_count {
                do yeet ::rustc_middle::mir::interpret::InterpErrorKind::UndefinedBehavior(::rustc_middle::mir::interpret::UndefinedBehaviorInfo::CVariadicFixedCountMismatch {
                            caller: caller_fn_abi.fixed_count,
                            callee: callee_fn_abi.fixed_count,
                        });
            }
            M::check_fn_target_features(self, instance)?;
            if !callee_fn_abi.can_unwind {
                match &mut cont {
                    ReturnContinuation::Stop { .. } => {}
                    ReturnContinuation::Goto { unwind, .. } => {
                        *unwind = mir::UnwindAction::Unreachable;
                    }
                }
            }
            let destination_mplace =
                self.place_to_op(destination)?.as_mplace_or_imm().left();
            self.push_stack_frame_raw(instance, body, destination, cont)?;
            let preamble_span = self.frame().loc.unwrap_right();
            {
                use ::tracing::__macro_support::Callsite as _;
                static __CALLSITE: ::tracing::callsite::DefaultCallsite =
                    {
                        static META: ::tracing::Metadata<'static> =
                            {
                                ::tracing_core::metadata::Metadata::new("event compiler/rustc_const_eval/src/interpret/call.rs:409",
                                    "rustc_const_eval::interpret::call",
                                    ::tracing::Level::TRACE,
                                    ::tracing_core::__macro_support::Option::Some("compiler/rustc_const_eval/src/interpret/call.rs"),
                                    ::tracing_core::__macro_support::Option::Some(409u32),
                                    ::tracing_core::__macro_support::Option::Some("rustc_const_eval::interpret::call"),
                                    ::tracing_core::field::FieldSet::new(&["message"],
                                        ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                    ::tracing::metadata::Kind::EVENT)
                            };
                        ::tracing::callsite::DefaultCallsite::new(&META)
                    };
                let enabled =
                    ::tracing::Level::TRACE <=
                                ::tracing::level_filters::STATIC_MAX_LEVEL &&
                            ::tracing::Level::TRACE <=
                                ::tracing::level_filters::LevelFilter::current() &&
                        {
                            let interest = __CALLSITE.interest();
                            !interest.is_never() &&
                                ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                                    interest)
                        };
                if enabled {
                    (|value_set: ::tracing::field::ValueSet|
                                {
                                    let meta = __CALLSITE.metadata();
                                    ::tracing::Event::dispatch(meta, &value_set);
                                    ;
                                })({
                            #[allow(unused_imports)]
                            use ::tracing::field::{debug, display, Value};
                            let mut iter = __CALLSITE.metadata().fields().iter();
                            __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                ::tracing::__macro_support::Option::Some(&format_args!("caller ABI: {0:#?}, args: {1:#?}",
                                                                caller_fn_abi,
                                                                args.iter().map(|arg|
                                                                            (arg.layout().ty,
                                                                                match arg {
                                                                                    FnArg::Copy(op) =>
                                                                                        ::alloc::__export::must_use({
                                                                                                ::alloc::fmt::format(format_args!("copy({0:?})", op))
                                                                                            }),
                                                                                    FnArg::InPlace(mplace) =>
                                                                                        ::alloc::__export::must_use({
                                                                                                ::alloc::fmt::format(format_args!("in-place({0:?})",
                                                                                                        mplace))
                                                                                            }),
                                                                                })).collect::<Vec<_>>()) as &dyn Value))])
                        });
                } else { ; }
            };
            {
                use ::tracing::__macro_support::Callsite as _;
                static __CALLSITE: ::tracing::callsite::DefaultCallsite =
                    {
                        static META: ::tracing::Metadata<'static> =
                            {
                                ::tracing_core::metadata::Metadata::new("event compiler/rustc_const_eval/src/interpret/call.rs:422",
                                    "rustc_const_eval::interpret::call",
                                    ::tracing::Level::TRACE,
                                    ::tracing_core::__macro_support::Option::Some("compiler/rustc_const_eval/src/interpret/call.rs"),
                                    ::tracing_core::__macro_support::Option::Some(422u32),
                                    ::tracing_core::__macro_support::Option::Some("rustc_const_eval::interpret::call"),
                                    ::tracing_core::field::FieldSet::new(&["message"],
                                        ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                    ::tracing::metadata::Kind::EVENT)
                            };
                        ::tracing::callsite::DefaultCallsite::new(&META)
                    };
                let enabled =
                    ::tracing::Level::TRACE <=
                                ::tracing::level_filters::STATIC_MAX_LEVEL &&
                            ::tracing::Level::TRACE <=
                                ::tracing::level_filters::LevelFilter::current() &&
                        {
                            let interest = __CALLSITE.interest();
                            !interest.is_never() &&
                                ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                                    interest)
                        };
                if enabled {
                    (|value_set: ::tracing::field::ValueSet|
                                {
                                    let meta = __CALLSITE.metadata();
                                    ::tracing::Event::dispatch(meta, &value_set);
                                    ;
                                })({
                            #[allow(unused_imports)]
                            use ::tracing::field::{debug, display, Value};
                            let mut iter = __CALLSITE.metadata().fields().iter();
                            __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                ::tracing::__macro_support::Option::Some(&format_args!("spread_arg: {0:?}, locals: {1:#?}",
                                                                body.spread_arg,
                                                                body.args_iter().map(|local|
                                                                            (local,
                                                                                self.layout_of_local(self.frame(), local,
                                                                                            None).unwrap().ty)).collect::<Vec<_>>()) as &dyn Value))])
                        });
                } else { ; }
            };
            match (&(args.len() + if with_caller_location { 1 } else { 0 }),
                    &caller_fn_abi.args.len()) {
                (left_val, right_val) => {
                    if !(*left_val == *right_val) {
                        let kind = ::core::panicking::AssertKind::Eq;
                        ::core::panicking::assert_failed(kind, &*left_val,
                            &*right_val,
                            ::core::option::Option::Some(format_args!("mismatch between caller ABI and caller arguments")));
                    }
                }
            };
            let mut caller_args =
                args.iter().zip(caller_fn_abi.args.iter()).filter(|arg_and_abi|
                        !arg_and_abi.1.is_ignore());
            let mut callee_args_abis = callee_fn_abi.args.iter().enumerate();
            let va_list_arg =
                callee_fn_abi.c_variadic.then(||
                        mir::Local::from_usize(body.arg_count));
            for local in body.args_iter() {
                self.frame_mut().loc =
                    Right(body.local_decls[local].source_info.span);
                let dest = mir::Place::from(local);
                let ty = self.layout_of_local(self.frame(), local, None)?.ty;
                if Some(local) == va_list_arg {
                    self.storage_live(local)?;
                    let place = self.eval_place(dest)?;
                    let mplace = self.force_allocation(&place)?;
                    let varargs =
                        self.allocate_varargs(&mut caller_args,
                                (&mut callee_args_abis).filter(|(_, abi)|
                                        !abi.is_ignore()))?;
                    self.frame_mut().va_list = varargs.clone();
                    let key = self.va_list_ptr(varargs.into());
                    self.write_bytes_ptr(mplace.ptr(),
                            (0..mplace.layout.size.bytes()).map(|_| 0u8))?;
                    let key_mplace = self.va_list_key_field(&mplace)?;
                    self.write_pointer(key, &key_mplace)?;
                } else if Some(local) == body.spread_arg {
                    self.storage_live(local)?;
                    let ty::Tuple(fields) =
                        ty.kind() else {
                            ::rustc_middle::util::bug::span_bug_fmt(self.cur_span(),
                                format_args!("non-tuple type for `spread_arg`: {0}", ty))
                        };
                    for (i, field_ty) in fields.iter().enumerate() {
                        let dest =
                            dest.project_deeper(&[mir::ProjectionElem::Field(FieldIdx::from_usize(i),
                                                field_ty)], *self.tcx);
                        let (idx, callee_abi) = callee_args_abis.next().unwrap();
                        self.pass_argument(&mut caller_args, callee_abi, idx, &dest,
                                field_ty, true)?;
                    }
                } else {
                    let (idx, callee_abi) = callee_args_abis.next().unwrap();
                    self.pass_argument(&mut caller_args, callee_abi, idx, &dest,
                            ty, false)?;
                }
            }
            self.frame_mut().loc =
                Right(body.local_decls[mir::RETURN_PLACE].source_info.span);
            if !self.check_argument_compat(&caller_fn_abi.ret,
                            &callee_fn_abi.ret)? {
                do yeet ::rustc_middle::mir::interpret::InterpErrorKind::UndefinedBehavior(::rustc_middle::mir::interpret::UndefinedBehaviorInfo::AbiMismatchReturn {
                            caller_ty: caller_fn_abi.ret.layout.ty,
                            callee_ty: callee_fn_abi.ret.layout.ty,
                        });
            }
            if let Some(mplace) = destination_mplace {
                M::protect_in_place_function_argument(self, &mplace)?;
            }
            self.frame_mut().loc = Right(preamble_span);
            if instance.def.requires_caller_location(*self.tcx) {
                callee_args_abis.next().unwrap();
            }
            if !callee_args_abis.next().is_none() {
                {
                    ::core::panicking::panic_fmt(format_args!("mismatch between callee ABI and callee body arguments"));
                }
            };
            if caller_args.next().is_some() {
                do yeet ::rustc_middle::mir::interpret::InterpErrorKind::UndefinedBehavior(::rustc_middle::mir::interpret::UndefinedBehaviorInfo::Ub(::alloc::__export::must_use({
                                    ::alloc::fmt::format(format_args!("calling a function with more arguments than it expected"))
                                })));
            }
            self.push_stack_frame_done()
        }
    }
}#[instrument(skip(self), level = "trace")]
340    pub fn init_stack_frame(
341        &mut self,
342        instance: Instance<'tcx>,
343        body: &'tcx mir::Body<'tcx>,
344        caller_fn_abi: &FnAbi<'tcx, Ty<'tcx>>,
345        args: &[FnArg<'tcx, M::Provenance>],
346        with_caller_location: bool,
347        destination: &PlaceTy<'tcx, M::Provenance>,
348        mut cont: ReturnContinuation,
349    ) -> InterpResult<'tcx> {
350        let _trace = enter_trace_span!(M, step::init_stack_frame, %instance, tracing_separate_thread = Empty);
351
352        // The first order of business is to figure out the callee signature.
353        // However, that requires the list of variadic arguments.
354        // We use the *caller* information to determine where to split the list of arguments,
355        // and then later check that the callee indeed has the same number of fixed arguments.
356        let extra_tys = if caller_fn_abi.c_variadic {
357            let fixed_count = usize::try_from(caller_fn_abi.fixed_count).unwrap();
358            let extra_tys = args[fixed_count..].iter().map(|arg| arg.layout().ty);
359            self.tcx.mk_type_list_from_iter(extra_tys)
360        } else {
361            ty::List::empty()
362        };
363        let callee_fn_abi = self.fn_abi_of_instance_no_deduced_attrs(instance, extra_tys)?;
364
365        if caller_fn_abi.conv != callee_fn_abi.conv {
366            throw_ub_format!(
367                "calling a function with calling convention \"{callee_conv}\" using calling convention \"{caller_conv}\"",
368                callee_conv = callee_fn_abi.conv,
369                caller_conv = caller_fn_abi.conv,
370            )
371        }
372
373        if caller_fn_abi.c_variadic != callee_fn_abi.c_variadic {
374            throw_ub!(CVariadicMismatch {
375                caller_is_c_variadic: caller_fn_abi.c_variadic,
376                callee_is_c_variadic: callee_fn_abi.c_variadic,
377            });
378        }
379        if caller_fn_abi.c_variadic && caller_fn_abi.fixed_count != callee_fn_abi.fixed_count {
380            throw_ub!(CVariadicFixedCountMismatch {
381                caller: caller_fn_abi.fixed_count,
382                callee: callee_fn_abi.fixed_count,
383            });
384        }
385
386        // Check that all target features required by the callee (i.e., from
387        // the attribute `#[target_feature(enable = ...)]`) are enabled at
388        // compile time.
389        M::check_fn_target_features(self, instance)?;
390
391        if !callee_fn_abi.can_unwind {
392            // The callee cannot unwind, so force the `Unreachable` unwind handling.
393            match &mut cont {
394                ReturnContinuation::Stop { .. } => {}
395                ReturnContinuation::Goto { unwind, .. } => {
396                    *unwind = mir::UnwindAction::Unreachable;
397                }
398            }
399        }
400
401        // *Before* pushing the new frame, determine whether the return destination is in memory.
402        // Need to use `place_to_op` to be *sure* we get the mplace if there is one.
403        let destination_mplace = self.place_to_op(destination)?.as_mplace_or_imm().left();
404
405        // Push the "raw" frame -- this leaves locals uninitialized.
406        self.push_stack_frame_raw(instance, body, destination, cont)?;
407        let preamble_span = self.frame().loc.unwrap_right(); // the span used for preamble errors
408
409        trace!(
410            "caller ABI: {:#?}, args: {:#?}",
411            caller_fn_abi,
412            args.iter()
413                .map(|arg| (
414                    arg.layout().ty,
415                    match arg {
416                        FnArg::Copy(op) => format!("copy({op:?})"),
417                        FnArg::InPlace(mplace) => format!("in-place({mplace:?})"),
418                    }
419                ))
420                .collect::<Vec<_>>()
421        );
422        trace!(
423            "spread_arg: {:?}, locals: {:#?}",
424            body.spread_arg,
425            body.args_iter()
426                .map(|local| (local, self.layout_of_local(self.frame(), local, None).unwrap().ty,))
427                .collect::<Vec<_>>()
428        );
429
430        // In principle, we have two iterators: Where the arguments come from, and where
431        // they go to.
432
433        // The "where they come from" part is easy, we expect the caller to do any special handling
434        // that might be required here (e.g. for untupling).
435        // If `with_caller_location` is set we pretend there is an extra argument (that
436        // we will not pass; our `caller_location` intrinsic implementation walks the stack instead).
437        assert_eq!(
438            args.len() + if with_caller_location { 1 } else { 0 },
439            caller_fn_abi.args.len(),
440            "mismatch between caller ABI and caller arguments",
441        );
442        let mut caller_args = args
443            .iter()
444            .zip(caller_fn_abi.args.iter())
445            .filter(|arg_and_abi| !arg_and_abi.1.is_ignore());
446
447        // Now we have to spread them out across the callee's locals,
448        // taking into account the `spread_arg`. If we could write
449        // this is a single iterator (that handles `spread_arg`), then
450        // `pass_argument` would be the loop body. It takes care to
451        // not advance `caller_iter` for ignored arguments.
452        let mut callee_args_abis = callee_fn_abi.args.iter().enumerate();
453        // Determine whether there is a special VaList argument. This is always the
454        // last argument, and since arguments start at index 1 that's `arg_count`.
455        let va_list_arg = callee_fn_abi.c_variadic.then(|| mir::Local::from_usize(body.arg_count));
456        for local in body.args_iter() {
457            // Update the span that we show in case of an error to point to this argument.
458            self.frame_mut().loc = Right(body.local_decls[local].source_info.span);
459            // Construct the destination place for this argument. At this point all
460            // locals are still dead, so we cannot construct a `PlaceTy`.
461            let dest = mir::Place::from(local);
462            // `layout_of_local` does more than just the instantiation we need to get the
463            // type, but the result gets cached so this avoids calling the instantiation
464            // query *again* the next time this local is accessed.
465            let ty = self.layout_of_local(self.frame(), local, None)?.ty;
466            if Some(local) == va_list_arg {
467                // This is the last callee-side argument of a variadic function.
468                // This argument is a VaList holding the remaining caller-side arguments.
469                self.storage_live(local)?;
470
471                let place = self.eval_place(dest)?;
472                let mplace = self.force_allocation(&place)?;
473
474                // Consume the remaining arguments by putting them into the variable argument
475                // list.
476                let varargs = self.allocate_varargs(
477                    &mut caller_args,
478                    // "Ignored" arguments aren't actually passed, so the callee should also
479                    // ignore them. (`pass_argument` does this for regular arguments.)
480                    (&mut callee_args_abis).filter(|(_, abi)| !abi.is_ignore()),
481                )?;
482                // When the frame is dropped, these variable arguments are deallocated.
483                self.frame_mut().va_list = varargs.clone();
484                let key = self.va_list_ptr(varargs.into());
485
486                // Zero the VaList, so it is fully initialized.
487                self.write_bytes_ptr(mplace.ptr(), (0..mplace.layout.size.bytes()).map(|_| 0u8))?;
488
489                // Store the "key" pointer in the right field.
490                let key_mplace = self.va_list_key_field(&mplace)?;
491                self.write_pointer(key, &key_mplace)?;
492            } else if Some(local) == body.spread_arg {
493                // Make the local live once, then fill in the value field by field.
494                self.storage_live(local)?;
495                // Must be a tuple
496                let ty::Tuple(fields) = ty.kind() else {
497                    span_bug!(self.cur_span(), "non-tuple type for `spread_arg`: {ty}")
498                };
499                for (i, field_ty) in fields.iter().enumerate() {
500                    let dest = dest.project_deeper(
501                        &[mir::ProjectionElem::Field(FieldIdx::from_usize(i), field_ty)],
502                        *self.tcx,
503                    );
504                    let (idx, callee_abi) = callee_args_abis.next().unwrap();
505                    self.pass_argument(
506                        &mut caller_args,
507                        callee_abi,
508                        idx,
509                        &dest,
510                        field_ty,
511                        /* already_live */ true,
512                    )?;
513                }
514            } else {
515                // Normal argument. Cannot mark it as live yet, it might be unsized!
516                let (idx, callee_abi) = callee_args_abis.next().unwrap();
517                self.pass_argument(
518                    &mut caller_args,
519                    callee_abi,
520                    idx,
521                    &dest,
522                    ty,
523                    /* already_live */ false,
524                )?;
525            }
526        }
527
528        // Don't forget to check the return type!
529        self.frame_mut().loc = Right(body.local_decls[mir::RETURN_PLACE].source_info.span);
530        if !self.check_argument_compat(&caller_fn_abi.ret, &callee_fn_abi.ret)? {
531            throw_ub!(AbiMismatchReturn {
532                caller_ty: caller_fn_abi.ret.layout.ty,
533                callee_ty: callee_fn_abi.ret.layout.ty
534            });
535        }
536        // Protect return place for in-place return value passing.
537        // We only need to protect anything if this is actually an in-memory place.
538        if let Some(mplace) = destination_mplace {
539            M::protect_in_place_function_argument(self, &mplace)?;
540        }
541
542        // For the final checks, use same span as preamble since it is unclear what else to do.
543        self.frame_mut().loc = Right(preamble_span);
544        // If the callee needs a caller location, pretend we consume one more argument from the ABI.
545        if instance.def.requires_caller_location(*self.tcx) {
546            callee_args_abis.next().unwrap();
547        }
548        // Now we should have no more caller args or callee arg ABIs.
549        assert!(
550            callee_args_abis.next().is_none(),
551            "mismatch between callee ABI and callee body arguments"
552        );
553        if caller_args.next().is_some() {
554            throw_ub_format!("calling a function with more arguments than it expected");
555        }
556
557        // Done!
558        self.push_stack_frame_done()
559    }
560
561    /// Initiate a call to this function -- pushing the stack frame and initializing the arguments.
562    ///
563    /// `caller_fn_abi` is used to determine if all the arguments are passed the proper way.
564    /// However, we also need `caller_abi` to determine if we need to do untupling of arguments.
565    ///
566    /// `with_caller_location` indicates whether the caller passed a caller location. Miri
567    /// implements caller locations without argument passing, but to match `FnAbi` we need to know
568    /// when those arguments are present.
569    pub(super) fn init_fn_call(
570        &mut self,
571        fn_val: FnVal<'tcx, M::ExtraFnVal>,
572        (caller_abi, caller_fn_abi): (ExternAbi, &FnAbi<'tcx, Ty<'tcx>>),
573        args: &[FnArg<'tcx, M::Provenance>],
574        with_caller_location: bool,
575        destination: &PlaceTy<'tcx, M::Provenance>,
576        target: Option<mir::BasicBlock>,
577        unwind: mir::UnwindAction,
578    ) -> InterpResult<'tcx> {
579        let _trace =
580            <M as
        crate::interpret::Machine>::enter_trace_span(||
        {
            use ::tracing::__macro_support::Callsite as _;
            static __CALLSITE: ::tracing::callsite::DefaultCallsite =
                {
                    static META: ::tracing::Metadata<'static> =
                        {
                            ::tracing_core::metadata::Metadata::new("step",
                                "rustc_const_eval::interpret::call", ::tracing::Level::INFO,
                                ::tracing_core::__macro_support::Option::Some("compiler/rustc_const_eval/src/interpret/call.rs"),
                                ::tracing_core::__macro_support::Option::Some(580u32),
                                ::tracing_core::__macro_support::Option::Some("rustc_const_eval::interpret::call"),
                                ::tracing_core::field::FieldSet::new(&["step",
                                                "tracing_separate_thread", "fn_val"],
                                    ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                ::tracing::metadata::Kind::SPAN)
                        };
                    ::tracing::callsite::DefaultCallsite::new(&META)
                };
            let mut interest = ::tracing::subscriber::Interest::never();
            if ::tracing::Level::INFO <=
                                ::tracing::level_filters::STATIC_MAX_LEVEL &&
                            ::tracing::Level::INFO <=
                                ::tracing::level_filters::LevelFilter::current() &&
                        { interest = __CALLSITE.interest(); !interest.is_never() }
                    &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest) {
                let meta = __CALLSITE.metadata();
                ::tracing::Span::new(meta,
                    &{
                            #[allow(unused_imports)]
                            use ::tracing::field::{debug, display, Value};
                            let mut iter = meta.fields().iter();
                            meta.fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                ::tracing::__macro_support::Option::Some(&display(&"init_fn_call")
                                                        as &dyn Value)),
                                            (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                ::tracing::__macro_support::Option::Some(&Empty as
                                                        &dyn Value)),
                                            (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                ::tracing::__macro_support::Option::Some(&debug(&fn_val) as
                                                        &dyn Value))])
                        })
            } else {
                let span =
                    ::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
                {};
                span
            }
        })enter_trace_span!(M, step::init_fn_call, tracing_separate_thread = Empty, ?fn_val)
581                .or_if_tracing_disabled(|| {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_const_eval/src/interpret/call.rs:581",
                        "rustc_const_eval::interpret::call",
                        ::tracing::Level::TRACE,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_const_eval/src/interpret/call.rs"),
                        ::tracing_core::__macro_support::Option::Some(581u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_const_eval::interpret::call"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::TRACE <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::TRACE <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                let mut iter = __CALLSITE.metadata().fields().iter();
                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&format_args!("init_fn_call: {0:#?}",
                                                    fn_val) as &dyn Value))])
            });
    } else { ; }
}trace!("init_fn_call: {:#?}", fn_val));
582
583        let instance = match fn_val {
584            FnVal::Instance(instance) => instance,
585            FnVal::Other(extra) => {
586                return M::call_extra_fn(
587                    self,
588                    extra,
589                    caller_fn_abi,
590                    args,
591                    destination,
592                    target,
593                    unwind,
594                );
595            }
596        };
597
598        match instance.def {
599            ty::InstanceKind::Intrinsic(def_id) => {
600                if !self.tcx.intrinsic(def_id).is_some() {
    ::core::panicking::panic("assertion failed: self.tcx.intrinsic(def_id).is_some()")
};assert!(self.tcx.intrinsic(def_id).is_some());
601                // FIXME: Should `InPlace` arguments be reset to uninit?
602                if let Some(fallback) = M::call_intrinsic(
603                    self,
604                    instance,
605                    &Self::copy_fn_args(args),
606                    destination,
607                    target,
608                    unwind,
609                )? {
610                    if !!self.tcx.intrinsic(fallback.def_id()).unwrap().must_be_overridden {
    ::core::panicking::panic("assertion failed: !self.tcx.intrinsic(fallback.def_id()).unwrap().must_be_overridden")
};assert!(!self.tcx.intrinsic(fallback.def_id()).unwrap().must_be_overridden);
611                    match fallback.def {
    ty::InstanceKind::Item(_) => {}
    ref left_val => {
        ::core::panicking::assert_matches_failed(left_val,
            "ty::InstanceKind::Item(_)", ::core::option::Option::None);
    }
};assert_matches!(fallback.def, ty::InstanceKind::Item(_));
612                    return self.init_fn_call(
613                        FnVal::Instance(fallback),
614                        (caller_abi, caller_fn_abi),
615                        args,
616                        with_caller_location,
617                        destination,
618                        target,
619                        unwind,
620                    );
621                } else {
622                    interp_ok(())
623                }
624            }
625            ty::InstanceKind::VTableShim(..)
626            | ty::InstanceKind::ReifyShim(..)
627            | ty::InstanceKind::ClosureOnceShim { .. }
628            | ty::InstanceKind::ConstructCoroutineInClosureShim { .. }
629            | ty::InstanceKind::FnPtrShim(..)
630            | ty::InstanceKind::DropGlue(..)
631            | ty::InstanceKind::CloneShim(..)
632            | ty::InstanceKind::FnPtrAddrShim(..)
633            | ty::InstanceKind::ThreadLocalShim(..)
634            | ty::InstanceKind::AsyncDropGlueCtorShim(..)
635            | ty::InstanceKind::AsyncDropGlue(..)
636            | ty::InstanceKind::FutureDropPollShim(..)
637            | ty::InstanceKind::Item(_) => {
638                // We need MIR for this fn.
639                // Note that this can be an intrinsic, if we are executing its fallback body.
640                let Some((body, instance)) = M::find_mir_or_eval_fn(
641                    self,
642                    instance,
643                    caller_fn_abi,
644                    args,
645                    destination,
646                    target,
647                    unwind,
648                )?
649                else {
650                    return interp_ok(());
651                };
652
653                // Special handling for the closure ABI: untuple the last argument.
654                let args: Cow<'_, [FnArg<'tcx, M::Provenance>]> =
655                    if caller_abi == ExternAbi::RustCall && !args.is_empty() {
656                        // Untuple
657                        let (untuple_arg, args) = args.split_last().unwrap();
658                        let ty::Tuple(untuple_fields) = untuple_arg.layout().ty.kind() else {
659                            ::rustc_middle::util::bug::span_bug_fmt(self.cur_span(),
    format_args!("untuple argument must be a tuple"))span_bug!(self.cur_span(), "untuple argument must be a tuple")
660                        };
661                        {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_const_eval/src/interpret/call.rs:661",
                        "rustc_const_eval::interpret::call",
                        ::tracing::Level::TRACE,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_const_eval/src/interpret/call.rs"),
                        ::tracing_core::__macro_support::Option::Some(661u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_const_eval::interpret::call"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::TRACE <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::TRACE <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                let mut iter = __CALLSITE.metadata().fields().iter();
                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&format_args!("init_fn_call: Will pass last argument by untupling")
                                            as &dyn Value))])
            });
    } else { ; }
};trace!("init_fn_call: Will pass last argument by untupling");
662                        Cow::from(
663                            args.iter()
664                                // The regular arguments.
665                                .map(|a| interp_ok(a.clone()))
666                                // The fields of the untupled argument.
667                                .chain((0..untuple_fields.len()).map(|i| {
668                                    self.fn_arg_project_field(untuple_arg, FieldIdx::from_usize(i))
669                                }))
670                                .collect::<InterpResult<'_, Vec<_>>>()?,
671                        )
672                    } else {
673                        // Plain arg passing
674                        Cow::from(args)
675                    };
676
677                self.init_stack_frame(
678                    instance,
679                    body,
680                    caller_fn_abi,
681                    &args,
682                    with_caller_location,
683                    destination,
684                    ReturnContinuation::Goto { ret: target, unwind },
685                )
686            }
687            // `InstanceKind::Virtual` does not have callable MIR. Calls to `Virtual` instances must be
688            // codegen'd / interpreted as virtual calls through the vtable.
689            ty::InstanceKind::Virtual(def_id, idx) => {
690                let mut args = args.to_vec();
691                // We have to implement all "dyn-compatible receivers". So we have to go search for a
692                // pointer or `dyn Trait` type, but it could be wrapped in newtypes. So recursively
693                // unwrap those newtypes until we are there.
694                // An `InPlace` does nothing here, we keep the original receiver intact. We can't
695                // really pass the argument in-place anyway, and we are constructing a new
696                // `Immediate` receiver.
697                let mut receiver = args[0].copy_fn_arg();
698                let receiver_place = loop {
699                    match receiver.layout.ty.kind() {
700                        ty::Ref(..) | ty::RawPtr(..) => {
701                            // We do *not* use `deref_pointer` here: we don't want to conceptually
702                            // create a place that must be dereferenceable, since the receiver might
703                            // be a raw pointer and (for `*const dyn Trait`) we don't need to
704                            // actually access memory to resolve this method.
705                            // Also see <https://github.com/rust-lang/miri/issues/2786>.
706                            let val = self.read_immediate(&receiver)?;
707                            break self.ref_to_mplace(&val)?;
708                        }
709                        ty::Dynamic(..) => break receiver.assert_mem_place(), // no immediate unsized values
710                        _ => {
711                            // Not there yet, search for the only non-ZST field.
712                            // (The rules for `DispatchFromDyn` ensure there's exactly one such field.)
713                            let (idx, _) = receiver.layout.non_1zst_field(self).expect(
714                                "not exactly one non-1-ZST field in a `DispatchFromDyn` type",
715                            );
716                            receiver = self.project_field(&receiver, idx)?;
717                        }
718                    }
719                };
720
721                // Obtain the underlying trait we are working on, and the adjusted receiver argument.
722                // Doesn't have to be a `dyn Trait`, but the unsized tail must be `dyn Trait`.
723                // (For that reason we also cannot use `unpack_dyn_trait`.)
724                let receiver_tail =
725                    self.tcx.struct_tail_for_codegen(receiver_place.layout.ty, self.typing_env);
726                let ty::Dynamic(receiver_trait, _) = receiver_tail.kind() else {
727                    ::rustc_middle::util::bug::span_bug_fmt(self.cur_span(),
    format_args!("dynamic call on non-`dyn` type {0}", receiver_tail))span_bug!(self.cur_span(), "dynamic call on non-`dyn` type {}", receiver_tail)
728                };
729                if !receiver_place.layout.is_unsized() {
    ::core::panicking::panic("assertion failed: receiver_place.layout.is_unsized()")
};assert!(receiver_place.layout.is_unsized());
730
731                // Get the required information from the vtable.
732                let vptr = receiver_place.meta().unwrap_meta().to_pointer(self)?;
733                let dyn_ty = self.get_ptr_vtable_ty(vptr, Some(receiver_trait))?;
734                let adjusted_recv = receiver_place.ptr();
735
736                // Now determine the actual method to call. Usually we use the easy way of just
737                // looking up the method at index `idx`.
738                let vtable_entries = self.vtable_entries(receiver_trait.principal(), dyn_ty);
739                let Some(ty::VtblEntry::Method(fn_inst)) = vtable_entries.get(idx).copied() else {
740                    // FIXME(fee1-dead) these could be variants of the UB info enum instead of this
741                    do yeet ::rustc_middle::mir::interpret::InterpErrorKind::UndefinedBehavior(::rustc_middle::mir::interpret::UndefinedBehaviorInfo::Ub(::alloc::__export::must_use({
                    ::alloc::fmt::format(format_args!("`dyn` call trying to call something that is not a method"))
                })));throw_ub_format!("`dyn` call trying to call something that is not a method");
742                };
743                {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_const_eval/src/interpret/call.rs:743",
                        "rustc_const_eval::interpret::call",
                        ::tracing::Level::TRACE,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_const_eval/src/interpret/call.rs"),
                        ::tracing_core::__macro_support::Option::Some(743u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_const_eval::interpret::call"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::TRACE <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::TRACE <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                let mut iter = __CALLSITE.metadata().fields().iter();
                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&format_args!("Virtual call dispatches to {0:#?}",
                                                    fn_inst) as &dyn Value))])
            });
    } else { ; }
};trace!("Virtual call dispatches to {fn_inst:#?}");
744                // We can also do the lookup based on `def_id` and `dyn_ty`, and check that that
745                // produces the same result.
746                self.assert_virtual_instance_matches_concrete(dyn_ty, def_id, instance, fn_inst);
747
748                // Adjust receiver argument. Layout can be any (thin) ptr.
749                let receiver_ty = Ty::new_mut_ptr(self.tcx.tcx, dyn_ty);
750                args[0] = FnArg::Copy(
751                    ImmTy::from_immediate(
752                        Scalar::from_maybe_pointer(adjusted_recv, self).into(),
753                        self.layout_of(receiver_ty)?,
754                    )
755                    .into(),
756                );
757                {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_const_eval/src/interpret/call.rs:757",
                        "rustc_const_eval::interpret::call",
                        ::tracing::Level::TRACE,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_const_eval/src/interpret/call.rs"),
                        ::tracing_core::__macro_support::Option::Some(757u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_const_eval::interpret::call"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::TRACE <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::TRACE <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                let mut iter = __CALLSITE.metadata().fields().iter();
                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&format_args!("Patched receiver operand to {0:#?}",
                                                    args[0]) as &dyn Value))])
            });
    } else { ; }
};trace!("Patched receiver operand to {:#?}", args[0]);
758                // Need to also adjust the type in the ABI. Strangely, the layout there is actually
759                // already fine! Just the type is bogus. This is due to what `force_thin_self_ptr`
760                // does in `fn_abi_new_uncached`; supposedly, codegen relies on having the bogus
761                // type, so we just patch this up locally.
762                let mut caller_fn_abi = caller_fn_abi.clone();
763                caller_fn_abi.args[0].layout.ty = receiver_ty;
764
765                // recurse with concrete function
766                self.init_fn_call(
767                    FnVal::Instance(fn_inst),
768                    (caller_abi, &caller_fn_abi),
769                    &args,
770                    with_caller_location,
771                    destination,
772                    target,
773                    unwind,
774                )
775            }
776        }
777    }
778
779    fn assert_virtual_instance_matches_concrete(
780        &self,
781        dyn_ty: Ty<'tcx>,
782        def_id: DefId,
783        virtual_instance: ty::Instance<'tcx>,
784        concrete_instance: ty::Instance<'tcx>,
785    ) {
786        let tcx = *self.tcx;
787
788        let trait_def_id = tcx.parent(def_id);
789        let virtual_trait_ref = ty::TraitRef::from_assoc(tcx, trait_def_id, virtual_instance.args);
790        let existential_trait_ref = ty::ExistentialTraitRef::erase_self_ty(tcx, virtual_trait_ref);
791        let concrete_trait_ref = existential_trait_ref.with_self_ty(tcx, dyn_ty);
792
793        let concrete_method = {
794            let _trace = <M as
        crate::interpret::Machine>::enter_trace_span(||
        {
            use ::tracing::__macro_support::Callsite as _;
            static __CALLSITE: ::tracing::callsite::DefaultCallsite =
                {
                    static META: ::tracing::Metadata<'static> =
                        {
                            ::tracing_core::metadata::Metadata::new("resolve",
                                "rustc_const_eval::interpret::call", ::tracing::Level::INFO,
                                ::tracing_core::__macro_support::Option::Some("compiler/rustc_const_eval/src/interpret/call.rs"),
                                ::tracing_core::__macro_support::Option::Some(794u32),
                                ::tracing_core::__macro_support::Option::Some("rustc_const_eval::interpret::call"),
                                ::tracing_core::field::FieldSet::new(&["resolve", "def_id"],
                                    ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                ::tracing::metadata::Kind::SPAN)
                        };
                    ::tracing::callsite::DefaultCallsite::new(&META)
                };
            let mut interest = ::tracing::subscriber::Interest::never();
            if ::tracing::Level::INFO <=
                                ::tracing::level_filters::STATIC_MAX_LEVEL &&
                            ::tracing::Level::INFO <=
                                ::tracing::level_filters::LevelFilter::current() &&
                        { interest = __CALLSITE.interest(); !interest.is_never() }
                    &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest) {
                let meta = __CALLSITE.metadata();
                ::tracing::Span::new(meta,
                    &{
                            #[allow(unused_imports)]
                            use ::tracing::field::{debug, display, Value};
                            let mut iter = meta.fields().iter();
                            meta.fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                ::tracing::__macro_support::Option::Some(&display(&"expect_resolve_for_vtable")
                                                        as &dyn Value)),
                                            (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                ::tracing::__macro_support::Option::Some(&debug(&def_id) as
                                                        &dyn Value))])
                        })
            } else {
                let span =
                    ::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
                {};
                span
            }
        })enter_trace_span!(M, resolve::expect_resolve_for_vtable, ?def_id);
795            Instance::expect_resolve_for_vtable(
796                tcx,
797                self.typing_env,
798                def_id,
799                virtual_instance.args.rebase_onto(tcx, trait_def_id, concrete_trait_ref.args),
800                self.cur_span(),
801            )
802        };
803        match (&concrete_instance, &concrete_method) {
    (left_val, right_val) => {
        if !(*left_val == *right_val) {
            let kind = ::core::panicking::AssertKind::Eq;
            ::core::panicking::assert_failed(kind, &*left_val, &*right_val,
                ::core::option::Option::None);
        }
    }
};assert_eq!(concrete_instance, concrete_method);
804    }
805
806    /// Initiate a tail call to this function -- popping the current stack frame, pushing the new
807    /// stack frame and initializing the arguments.
808    pub(super) fn init_fn_tail_call(
809        &mut self,
810        fn_val: FnVal<'tcx, M::ExtraFnVal>,
811        (caller_abi, caller_fn_abi): (ExternAbi, &FnAbi<'tcx, Ty<'tcx>>),
812        args: &[FnArg<'tcx, M::Provenance>],
813        with_caller_location: bool,
814    ) -> InterpResult<'tcx> {
815        {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_const_eval/src/interpret/call.rs:815",
                        "rustc_const_eval::interpret::call",
                        ::tracing::Level::TRACE,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_const_eval/src/interpret/call.rs"),
                        ::tracing_core::__macro_support::Option::Some(815u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_const_eval::interpret::call"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::TRACE <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::TRACE <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                let mut iter = __CALLSITE.metadata().fields().iter();
                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&format_args!("init_fn_tail_call: {0:#?}",
                                                    fn_val) as &dyn Value))])
            });
    } else { ; }
};trace!("init_fn_tail_call: {:#?}", fn_val);
816        // This is the "canonical" implementation of tails calls,
817        // a pop of the current stack frame, followed by a normal call
818        // which pushes a new stack frame, with the return address from
819        // the popped stack frame.
820        //
821        // Note that we cannot use `return_from_current_stack_frame`,
822        // as that "executes" the goto to the return block, but we don't want to,
823        // only the tail called function should return to the current return block.
824
825        // The arguments need to all be copied since the current stack frame will be removed
826        // before the callee even starts executing.
827        // FIXME(explicit_tail_calls,#144855): does this match what codegen does?
828        let args = args.iter().map(|fn_arg| FnArg::Copy(fn_arg.copy_fn_arg())).collect::<Vec<_>>();
829        // Remove the frame from the stack.
830        let frame = self.pop_stack_frame_raw()?;
831        // Remember where this frame would have returned to.
832        let ReturnContinuation::Goto { ret, unwind } = frame.return_cont() else {
833            ::rustc_middle::util::bug::bug_fmt(format_args!("can\'t tailcall as root of the stack"));bug!("can't tailcall as root of the stack");
834        };
835        // There's no return value to deal with! Instead, we forward the old return place
836        // to the new function.
837        // FIXME(explicit_tail_calls):
838        //   we should check if both caller&callee can/n't unwind,
839        //   see <https://github.com/rust-lang/rust/pull/113128#issuecomment-1614979803>
840
841        // Now push the new stack frame.
842        self.init_fn_call(
843            fn_val,
844            (caller_abi, caller_fn_abi),
845            &*args,
846            with_caller_location,
847            frame.return_place(),
848            ret,
849            unwind,
850        )?;
851
852        // Finally, clear the local variables. Has to be done after pushing to support
853        // non-scalar arguments.
854        // FIXME(explicit_tail_calls,#144855): revisit this once codegen supports indirect
855        // arguments, to ensure the semantics are compatible.
856        let return_action = self.cleanup_stack_frame(/* unwinding */ false, frame)?;
857        match (&return_action, &ReturnAction::Normal) {
    (left_val, right_val) => {
        if !(*left_val == *right_val) {
            let kind = ::core::panicking::AssertKind::Eq;
            ::core::panicking::assert_failed(kind, &*left_val, &*right_val,
                ::core::option::Option::None);
        }
    }
};assert_eq!(return_action, ReturnAction::Normal);
858
859        interp_ok(())
860    }
861
862    pub(super) fn init_drop_in_place_call(
863        &mut self,
864        place: &PlaceTy<'tcx, M::Provenance>,
865        instance: ty::Instance<'tcx>,
866        target: mir::BasicBlock,
867        unwind: mir::UnwindAction,
868    ) -> InterpResult<'tcx> {
869        {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_const_eval/src/interpret/call.rs:869",
                        "rustc_const_eval::interpret::call",
                        ::tracing::Level::TRACE,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_const_eval/src/interpret/call.rs"),
                        ::tracing_core::__macro_support::Option::Some(869u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_const_eval::interpret::call"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::TRACE <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::TRACE <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                let mut iter = __CALLSITE.metadata().fields().iter();
                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&format_args!("init_drop_in_place_call: {0:?},\n  instance={1:?}",
                                                    place, instance) as &dyn Value))])
            });
    } else { ; }
};trace!("init_drop_in_place_call: {:?},\n  instance={:?}", place, instance);
870        // We take the address of the object. This may well be unaligned, which is fine
871        // for us here. However, unaligned accesses will probably make the actual drop
872        // implementation fail -- a problem shared by rustc.
873        let place = self.force_allocation(place)?;
874
875        // We behave a bit different from codegen here.
876        // Codegen creates an `InstanceKind::Virtual` with index 0 (the slot of the drop method) and
877        // then dispatches that to the normal call machinery. However, our call machinery currently
878        // only supports calling `VtblEntry::Method`; it would choke on a `MetadataDropInPlace`. So
879        // instead we do the virtual call stuff ourselves. It's easier here than in `eval_fn_call`
880        // since we can just get a place of the underlying type and use `mplace_to_ref`.
881        let place = match place.layout.ty.kind() {
882            ty::Dynamic(data, _) => {
883                // Dropping a trait object. Need to find actual drop fn.
884                self.unpack_dyn_trait(&place, data)?
885            }
886            _ => {
887                if true {
    match (&instance,
            &ty::Instance::resolve_drop_in_place(*self.tcx, place.layout.ty))
        {
        (left_val, right_val) => {
            if !(*left_val == *right_val) {
                let kind = ::core::panicking::AssertKind::Eq;
                ::core::panicking::assert_failed(kind, &*left_val,
                    &*right_val, ::core::option::Option::None);
            }
        }
    };
};debug_assert_eq!(
888                    instance,
889                    ty::Instance::resolve_drop_in_place(*self.tcx, place.layout.ty)
890                );
891                place
892            }
893        };
894        let instance = {
895            let _trace =
896                <M as
        crate::interpret::Machine>::enter_trace_span(||
        {
            use ::tracing::__macro_support::Callsite as _;
            static __CALLSITE: ::tracing::callsite::DefaultCallsite =
                {
                    static META: ::tracing::Metadata<'static> =
                        {
                            ::tracing_core::metadata::Metadata::new("resolve",
                                "rustc_const_eval::interpret::call", ::tracing::Level::INFO,
                                ::tracing_core::__macro_support::Option::Some("compiler/rustc_const_eval/src/interpret/call.rs"),
                                ::tracing_core::__macro_support::Option::Some(896u32),
                                ::tracing_core::__macro_support::Option::Some("rustc_const_eval::interpret::call"),
                                ::tracing_core::field::FieldSet::new(&["resolve", "ty"],
                                    ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                ::tracing::metadata::Kind::SPAN)
                        };
                    ::tracing::callsite::DefaultCallsite::new(&META)
                };
            let mut interest = ::tracing::subscriber::Interest::never();
            if ::tracing::Level::INFO <=
                                ::tracing::level_filters::STATIC_MAX_LEVEL &&
                            ::tracing::Level::INFO <=
                                ::tracing::level_filters::LevelFilter::current() &&
                        { interest = __CALLSITE.interest(); !interest.is_never() }
                    &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest) {
                let meta = __CALLSITE.metadata();
                ::tracing::Span::new(meta,
                    &{
                            #[allow(unused_imports)]
                            use ::tracing::field::{debug, display, Value};
                            let mut iter = meta.fields().iter();
                            meta.fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                ::tracing::__macro_support::Option::Some(&display(&"resolve_drop_in_place")
                                                        as &dyn Value)),
                                            (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                ::tracing::__macro_support::Option::Some(&debug(&place.layout.ty)
                                                        as &dyn Value))])
                        })
            } else {
                let span =
                    ::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
                {};
                span
            }
        })enter_trace_span!(M, resolve::resolve_drop_in_place, ty = ?place.layout.ty);
897            ty::Instance::resolve_drop_in_place(*self.tcx, place.layout.ty)
898        };
899        let fn_abi = self.fn_abi_of_instance_no_deduced_attrs(instance, ty::List::empty())?;
900
901        let arg = self.mplace_to_ref(&place)?;
902        let ret = MPlaceTy::fake_alloc_zst(self.layout_of(self.tcx.types.unit)?);
903
904        self.init_fn_call(
905            FnVal::Instance(instance),
906            (ExternAbi::Rust, fn_abi),
907            &[FnArg::Copy(arg.into())],
908            false,
909            &ret.into(),
910            Some(target),
911            unwind,
912        )
913    }
914
915    /// Pops the current frame from the stack, copies the return value to the caller, deallocates
916    /// the memory for allocated locals, and jumps to an appropriate place.
917    ///
918    /// If `unwinding` is `false`, then we are performing a normal return
919    /// from a function. In this case, we jump back into the frame of the caller,
920    /// and continue execution as normal.
921    ///
922    /// If `unwinding` is `true`, then we are in the middle of a panic,
923    /// and need to unwind this frame. In this case, we jump to the
924    /// `cleanup` block for the function, which is responsible for running
925    /// `Drop` impls for any locals that have been initialized at this point.
926    /// The cleanup block ends with a special `Resume` terminator, which will
927    /// cause us to continue unwinding.
928    #[allow(clippy :: suspicious_else_formatting)]
{
    let __tracing_attr_span;
    let __tracing_attr_guard;
    if ::tracing::Level::TRACE <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::TRACE <=
                    ::tracing::level_filters::LevelFilter::current() ||
            { false } {
        __tracing_attr_span =
            {
                use ::tracing::__macro_support::Callsite as _;
                static __CALLSITE: ::tracing::callsite::DefaultCallsite =
                    {
                        static META: ::tracing::Metadata<'static> =
                            {
                                ::tracing_core::metadata::Metadata::new("return_from_current_stack_frame",
                                    "rustc_const_eval::interpret::call",
                                    ::tracing::Level::TRACE,
                                    ::tracing_core::__macro_support::Option::Some("compiler/rustc_const_eval/src/interpret/call.rs"),
                                    ::tracing_core::__macro_support::Option::Some(928u32),
                                    ::tracing_core::__macro_support::Option::Some("rustc_const_eval::interpret::call"),
                                    ::tracing_core::field::FieldSet::new(&["unwinding"],
                                        ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                    ::tracing::metadata::Kind::SPAN)
                            };
                        ::tracing::callsite::DefaultCallsite::new(&META)
                    };
                let mut interest = ::tracing::subscriber::Interest::never();
                if ::tracing::Level::TRACE <=
                                    ::tracing::level_filters::STATIC_MAX_LEVEL &&
                                ::tracing::Level::TRACE <=
                                    ::tracing::level_filters::LevelFilter::current() &&
                            { interest = __CALLSITE.interest(); !interest.is_never() }
                        &&
                        ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                            interest) {
                    let meta = __CALLSITE.metadata();
                    ::tracing::Span::new(meta,
                        &{
                                #[allow(unused_imports)]
                                use ::tracing::field::{debug, display, Value};
                                let mut iter = meta.fields().iter();
                                meta.fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&unwinding as
                                                            &dyn Value))])
                            })
                } else {
                    let span =
                        ::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
                    {};
                    span
                }
            };
        __tracing_attr_guard = __tracing_attr_span.enter();
    }

    #[warn(clippy :: suspicious_else_formatting)]
    {

        #[allow(unknown_lints, unreachable_code, clippy ::
        diverging_sub_expression, clippy :: empty_loop, clippy ::
        let_unit_value, clippy :: let_with_type_underscore, clippy ::
        needless_return, clippy :: unreachable)]
        if false {
            let __tracing_attr_fake_return: InterpResult<'tcx> = loop {};
            return __tracing_attr_fake_return;
        }
        {
            {
                use ::tracing::__macro_support::Callsite as _;
                static __CALLSITE: ::tracing::callsite::DefaultCallsite =
                    {
                        static META: ::tracing::Metadata<'static> =
                            {
                                ::tracing_core::metadata::Metadata::new("event compiler/rustc_const_eval/src/interpret/call.rs:933",
                                    "rustc_const_eval::interpret::call", ::tracing::Level::INFO,
                                    ::tracing_core::__macro_support::Option::Some("compiler/rustc_const_eval/src/interpret/call.rs"),
                                    ::tracing_core::__macro_support::Option::Some(933u32),
                                    ::tracing_core::__macro_support::Option::Some("rustc_const_eval::interpret::call"),
                                    ::tracing_core::field::FieldSet::new(&["message"],
                                        ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                    ::tracing::metadata::Kind::EVENT)
                            };
                        ::tracing::callsite::DefaultCallsite::new(&META)
                    };
                let enabled =
                    ::tracing::Level::INFO <=
                                ::tracing::level_filters::STATIC_MAX_LEVEL &&
                            ::tracing::Level::INFO <=
                                ::tracing::level_filters::LevelFilter::current() &&
                        {
                            let interest = __CALLSITE.interest();
                            !interest.is_never() &&
                                ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                                    interest)
                        };
                if enabled {
                    (|value_set: ::tracing::field::ValueSet|
                                {
                                    let meta = __CALLSITE.metadata();
                                    ::tracing::Event::dispatch(meta, &value_set);
                                    ;
                                })({
                            #[allow(unused_imports)]
                            use ::tracing::field::{debug, display, Value};
                            let mut iter = __CALLSITE.metadata().fields().iter();
                            __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                ::tracing::__macro_support::Option::Some(&format_args!("popping stack frame ({0})",
                                                                if unwinding {
                                                                    "during unwinding"
                                                                } else { "returning from function" }) as &dyn Value))])
                        });
                } else { ; }
            };
            match (&unwinding,
                    &match self.frame().loc {
                            Left(loc) => self.body().basic_blocks[loc.block].is_cleanup,
                            Right(_) => true,
                        }) {
                (left_val, right_val) => {
                    if !(*left_val == *right_val) {
                        let kind = ::core::panicking::AssertKind::Eq;
                        ::core::panicking::assert_failed(kind, &*left_val,
                            &*right_val, ::core::option::Option::None);
                    }
                }
            };
            if unwinding && self.frame_idx() == 0 {
                do yeet ::rustc_middle::mir::interpret::InterpErrorKind::UndefinedBehavior(::rustc_middle::mir::interpret::UndefinedBehaviorInfo::Ub(::alloc::__export::must_use({
                                    ::alloc::fmt::format(format_args!("unwinding past the topmost frame of the stack"))
                                })));
            }
            let return_op =
                self.local_to_op(mir::RETURN_PLACE,
                        None).expect("return place should always be live");
            let frame = self.pop_stack_frame_raw()?;
            if !unwinding {
                self.copy_op_allow_transmute(&return_op,
                        frame.return_place())?;
                {
                    use ::tracing::__macro_support::Callsite as _;
                    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
                        {
                            static META: ::tracing::Metadata<'static> =
                                {
                                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_const_eval/src/interpret/call.rs:959",
                                        "rustc_const_eval::interpret::call",
                                        ::tracing::Level::TRACE,
                                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_const_eval/src/interpret/call.rs"),
                                        ::tracing_core::__macro_support::Option::Some(959u32),
                                        ::tracing_core::__macro_support::Option::Some("rustc_const_eval::interpret::call"),
                                        ::tracing_core::field::FieldSet::new(&["message"],
                                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                        ::tracing::metadata::Kind::EVENT)
                                };
                            ::tracing::callsite::DefaultCallsite::new(&META)
                        };
                    let enabled =
                        ::tracing::Level::TRACE <=
                                    ::tracing::level_filters::STATIC_MAX_LEVEL &&
                                ::tracing::Level::TRACE <=
                                    ::tracing::level_filters::LevelFilter::current() &&
                            {
                                let interest = __CALLSITE.interest();
                                !interest.is_never() &&
                                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                                        interest)
                            };
                    if enabled {
                        (|value_set: ::tracing::field::ValueSet|
                                    {
                                        let meta = __CALLSITE.metadata();
                                        ::tracing::Event::dispatch(meta, &value_set);
                                        ;
                                    })({
                                #[allow(unused_imports)]
                                use ::tracing::field::{debug, display, Value};
                                let mut iter = __CALLSITE.metadata().fields().iter();
                                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&format_args!("return value: {0:?}",
                                                                    self.dump_place(frame.return_place())) as &dyn Value))])
                            });
                    } else { ; }
                };
            }
            let return_cont = frame.return_cont();
            let return_action = self.cleanup_stack_frame(unwinding, frame)?;
            match return_action {
                ReturnAction::Normal => {}
                ReturnAction::NoJump => { return interp_ok(()); }
                ReturnAction::NoCleanup => {
                    if !self.stack().is_empty() {
                        {
                            ::core::panicking::panic_fmt(format_args!("only the topmost frame should ever be leaked"));
                        }
                    };
                    if !!unwinding {
                        {
                            ::core::panicking::panic_fmt(format_args!("tried to skip cleanup during unwinding"));
                        }
                    };
                    return interp_ok(());
                }
            }
            if unwinding {
                match return_cont {
                    ReturnContinuation::Goto { unwind, .. } => {
                        self.unwind_to_block(unwind)
                    }
                    ReturnContinuation::Stop { .. } => {
                        {
                            ::core::panicking::panic_fmt(format_args!("encountered ReturnContinuation::Stop when unwinding!"));
                        }
                    }
                }
            } else {
                match return_cont {
                    ReturnContinuation::Goto { ret, .. } =>
                        self.return_to_block(ret),
                    ReturnContinuation::Stop { .. } => {
                        if !self.stack().is_empty() {
                            {
                                ::core::panicking::panic_fmt(format_args!("only the bottommost frame can have ReturnContinuation::Stop"));
                            }
                        };
                        interp_ok(())
                    }
                }
            }
        }
    }
}#[instrument(skip(self), level = "trace")]
929    pub(super) fn return_from_current_stack_frame(
930        &mut self,
931        unwinding: bool,
932    ) -> InterpResult<'tcx> {
933        info!(
934            "popping stack frame ({})",
935            if unwinding { "during unwinding" } else { "returning from function" }
936        );
937
938        // Check `unwinding`.
939        assert_eq!(
940            unwinding,
941            match self.frame().loc {
942                Left(loc) => self.body().basic_blocks[loc.block].is_cleanup,
943                Right(_) => true,
944            }
945        );
946        if unwinding && self.frame_idx() == 0 {
947            throw_ub_format!("unwinding past the topmost frame of the stack");
948        }
949
950        // Get out the return value. Must happen *before* the frame is popped as we have to get the
951        // local's value out.
952        let return_op =
953            self.local_to_op(mir::RETURN_PLACE, None).expect("return place should always be live");
954        // Remove the frame from the stack.
955        let frame = self.pop_stack_frame_raw()?;
956        // Copy the return value and remember the return continuation.
957        if !unwinding {
958            self.copy_op_allow_transmute(&return_op, frame.return_place())?;
959            trace!("return value: {:?}", self.dump_place(frame.return_place()));
960        }
961        let return_cont = frame.return_cont();
962        // Finish popping the stack frame.
963        let return_action = self.cleanup_stack_frame(unwinding, frame)?;
964        // Jump to the next block.
965        match return_action {
966            ReturnAction::Normal => {}
967            ReturnAction::NoJump => {
968                // The hook already did everything.
969                return interp_ok(());
970            }
971            ReturnAction::NoCleanup => {
972                // If we are not doing cleanup, also skip everything else.
973                assert!(self.stack().is_empty(), "only the topmost frame should ever be leaked");
974                assert!(!unwinding, "tried to skip cleanup during unwinding");
975                // Don't jump anywhere.
976                return interp_ok(());
977            }
978        }
979
980        // Normal return, figure out where to jump.
981        if unwinding {
982            // Follow the unwind edge.
983            match return_cont {
984                ReturnContinuation::Goto { unwind, .. } => {
985                    // This must be the very last thing that happens, since it can in fact push a new stack frame.
986                    self.unwind_to_block(unwind)
987                }
988                ReturnContinuation::Stop { .. } => {
989                    panic!("encountered ReturnContinuation::Stop when unwinding!")
990                }
991            }
992        } else {
993            // Follow the normal return edge.
994            match return_cont {
995                ReturnContinuation::Goto { ret, .. } => self.return_to_block(ret),
996                ReturnContinuation::Stop { .. } => {
997                    assert!(
998                        self.stack().is_empty(),
999                        "only the bottommost frame can have ReturnContinuation::Stop"
1000                    );
1001                    interp_ok(())
1002                }
1003            }
1004        }
1005    }
1006}