Skip to main content

rustc_const_eval/interpret/
step.rs

1//! This module contains the `InterpCx` methods for executing a single step of the interpreter.
2//!
3//! The main entry point is the `step` method.
4
5use std::iter;
6
7use either::Either;
8use rustc_abi::{FIRST_VARIANT, FieldIdx};
9use rustc_data_structures::fx::FxHashSet;
10use rustc_index::IndexSlice;
11use rustc_middle::ty::{self, Instance, Ty};
12use rustc_middle::{bug, mir, span_bug};
13use rustc_span::Spanned;
14use rustc_target::callconv::FnAbi;
15use tracing::field::Empty;
16use tracing::{info, instrument, trace};
17
18use super::{
19    EnteredTraceSpan, FnArg, FnVal, ImmTy, Immediate, InterpCx, InterpResult, Machine,
20    MemPlaceMeta, PlaceTy, Projectable, RetagMode, interp_ok, throw_ub, throw_unsup_format,
21};
22use crate::{enter_trace_span, util};
23
24struct EvaluatedCalleeAndArgs<'tcx, M: Machine<'tcx>> {
25    callee: FnVal<'tcx, M::ExtraFnVal>,
26    args: Vec<FnArg<'tcx, M::Provenance>>,
27    fn_sig: ty::FnSig<'tcx>,
28    /// None if LLVM intrinsic
29    fn_abi: Option<&'tcx FnAbi<'tcx, Ty<'tcx>>>,
30    /// True if the function is marked as `#[track_caller]` ([`ty::InstanceKind::requires_caller_location`])
31    with_caller_location: bool,
32}
33
34impl<'tcx, M: Machine<'tcx>> InterpCx<'tcx, M> {
35    /// Returns `true` as long as there are more things to do.
36    ///
37    /// This is used by [priroda](https://github.com/oli-obk/priroda)
38    ///
39    /// This is marked `#inline(always)` to work around adversarial codegen when `opt-level = 3`
40    #[inline(always)]
41    pub fn step(&mut self) -> InterpResult<'tcx, bool> {
42        if self.stack().is_empty() {
43            return interp_ok(false);
44        }
45
46        let Either::Left(loc) = self.frame().loc else {
47            // We are unwinding and this fn has no cleanup code.
48            // Just go on unwinding.
49            {
    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/step.rs:49",
                        "rustc_const_eval::interpret::step",
                        ::tracing::Level::TRACE,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_const_eval/src/interpret/step.rs"),
                        ::tracing_core::__macro_support::Option::Some(49u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_const_eval::interpret::step"),
                        ::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};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("unwinding: skipping frame")
                                            as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};trace!("unwinding: skipping frame");
50            self.return_from_current_stack_frame(/* unwinding */ true)?;
51            return interp_ok(true);
52        };
53        let basic_block = &self.body().basic_blocks[loc.block];
54
55        if let Some(stmt) = basic_block.statements.get(loc.statement_index) {
56            let old_frames = self.frame_idx();
57            self.eval_statement(stmt)?;
58            // Make sure we are not updating `statement_index` of the wrong frame.
59            {
    match (&old_frames, &self.frame_idx()) {
        (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!(old_frames, self.frame_idx());
60            // Advance the program counter.
61            self.frame_mut().loc.as_mut().left().unwrap().statement_index += 1;
62            return interp_ok(true);
63        }
64
65        M::before_terminator(self)?;
66
67        let terminator = basic_block.terminator();
68        self.eval_terminator(terminator)?;
69        if !self.stack().is_empty() {
70            if let Either::Left(loc) = self.frame().loc {
71                {
    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/step.rs:71",
                        "rustc_const_eval::interpret::step", ::tracing::Level::INFO,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_const_eval/src/interpret/step.rs"),
                        ::tracing_core::__macro_support::Option::Some(71u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_const_eval::interpret::step"),
                        ::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};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("// executing {0:?}",
                                                    loc.block) as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};info!("// executing {:?}", loc.block);
72            }
73        }
74        interp_ok(true)
75    }
76
77    /// Runs the interpretation logic for the given `mir::Statement` at the current frame and
78    /// statement counter.
79    ///
80    /// This does NOT move the statement counter forward, the caller has to do that!
81    pub fn eval_statement(&mut self, stmt: &mir::Statement<'tcx>) -> InterpResult<'tcx> {
82        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::step", ::tracing::Level::INFO,
                                ::tracing_core::__macro_support::Option::Some("compiler/rustc_const_eval/src/interpret/step.rs"),
                                ::tracing_core::__macro_support::Option::Some(82u32),
                                ::tracing_core::__macro_support::Option::Some("rustc_const_eval::interpret::step"),
                                ::tracing_core::field::FieldSet::new(&[{
                                                    const NAME:
                                                        ::tracing::__macro_support::FieldName<{
                                                            ::tracing::__macro_support::FieldName::len("step")
                                                        }> =
                                                        ::tracing::__macro_support::FieldName::new("step");
                                                    NAME.as_str()
                                                },
                                                {
                                                    const NAME:
                                                        ::tracing::__macro_support::FieldName<{
                                                            ::tracing::__macro_support::FieldName::len("stmt")
                                                        }> =
                                                        ::tracing::__macro_support::FieldName::new("stmt");
                                                    NAME.as_str()
                                                },
                                                {
                                                    const NAME:
                                                        ::tracing::__macro_support::FieldName<{
                                                            ::tracing::__macro_support::FieldName::len("span")
                                                        }> =
                                                        ::tracing::__macro_support::FieldName::new("span");
                                                    NAME.as_str()
                                                },
                                                {
                                                    const NAME:
                                                        ::tracing::__macro_support::FieldName<{
                                                            ::tracing::__macro_support::FieldName::len("tracing_separate_thread")
                                                        }> =
                                                        ::tracing::__macro_support::FieldName::new("tracing_separate_thread");
                                                    NAME.as_str()
                                                }], ::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};
                            meta.fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&::tracing::field::display(&"eval_statement")
                                                        as &dyn ::tracing::field::Value)),
                                            (::tracing::__macro_support::Option::Some(&::tracing::field::debug(&stmt.kind)
                                                        as &dyn ::tracing::field::Value)),
                                            (::tracing::__macro_support::Option::Some(&::tracing::field::debug(&stmt.source_info.span)
                                                        as &dyn ::tracing::field::Value)),
                                            (::tracing::__macro_support::Option::Some(&Empty as
                                                        &dyn ::tracing::field::Value))])
                        })
            } else {
                let span =
                    ::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
                {};
                span
            }
        })enter_trace_span!(
83            M,
84            step::eval_statement,
85            stmt = ?stmt.kind,
86            span = ?stmt.source_info.span,
87            tracing_separate_thread = Empty,
88        )
89        .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/step.rs:89",
                        "rustc_const_eval::interpret::step", ::tracing::Level::INFO,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_const_eval/src/interpret/step.rs"),
                        ::tracing_core::__macro_support::Option::Some(89u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_const_eval::interpret::step"),
                        ::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};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("{0:?}",
                                                    stmt.kind) as &dyn ::tracing::field::Value))])
            });
    } else { ; }
}info!("{:?}", stmt.kind));
90
91        use rustc_middle::mir::StatementKind::*;
92
93        match &stmt.kind {
94            Assign((place, rvalue)) => self.eval_rvalue_into_place(rvalue, *place)?,
95
96            SetDiscriminant { place, variant_index } => {
97                let dest =
98                    self.eval_place(**place, /* skip_validity_for_simple_deref */ false)?;
99                self.write_discriminant(*variant_index, &dest)?;
100            }
101
102            // Mark locals as alive
103            StorageLive(local) => {
104                self.storage_live(*local)?;
105            }
106
107            // Mark locals as dead
108            StorageDead(local) => {
109                self.storage_dead(*local)?;
110            }
111
112            // No dynamic semantics attached to `FakeRead`; MIR
113            // interpreter is solely intended for borrowck'ed code.
114            FakeRead(..) => {}
115
116            Intrinsic(intrinsic) => self.eval_nondiverging_intrinsic(intrinsic)?,
117
118            // Evaluate the place expression, without reading from it.
119            PlaceMention(place) => {
120                let _ =
121                    self.eval_place(**place, /* skip_validity_for_simple_deref */ false)?;
122            }
123
124            // This exists purely to guide borrowck lifetime inference, and does not have
125            // an operational effect.
126            AscribeUserType(..) => {}
127
128            // Currently, Miri discards Coverage statements. Coverage statements are only injected
129            // via an optional compile time MIR pass and have no side effects. Since Coverage
130            // statements don't exist at the source level, it is safe for Miri to ignore them, even
131            // for undefined behavior (UB) checks.
132            //
133            // A coverage counter inside a const expression (for example, a counter injected in a
134            // const function) is discarded when the const is evaluated at compile time. Whether
135            // this should change, and/or how to implement a const eval counter, is a subject of the
136            // following issue:
137            //
138            // FIXME(#73156): Handle source code coverage in const eval
139            Coverage(..) => {}
140
141            ConstEvalCounter => {
142                M::increment_const_eval_counter(self)?;
143            }
144
145            // Defined to do nothing. These are added by optimization passes, to avoid changing the
146            // size of MIR constantly.
147            Nop => {}
148
149            // Only used for temporary lifetime lints
150            BackwardIncompatibleDropHint { .. } => {}
151        }
152
153        interp_ok(())
154    }
155
156    /// Evaluate an assignment statement.
157    ///
158    /// There is no separate `eval_rvalue` function. Instead, the code for handling each rvalue
159    /// type writes its results directly into the memory specified by the place.
160    pub fn eval_rvalue_into_place(
161        &mut self,
162        rvalue: &mir::Rvalue<'tcx>,
163        place: mir::Place<'tcx>,
164    ) -> InterpResult<'tcx> {
165        // We can skip validity because we'll write to the place which checks everything we care
166        // about for references, and the pointee must be sized so there's nothing to check for raw
167        // pointers.
168        let dest = self.eval_place(place, /* skip_validity_for_simple_deref */ true)?;
169        // FIXME: ensure some kind of non-aliasing between LHS and RHS?
170        // Also see https://github.com/rust-lang/rust/issues/68364.
171
172        use rustc_middle::mir::Rvalue::*;
173        match *rvalue {
174            ThreadLocalRef(did) => {
175                let ptr = M::thread_local_static_pointer(self, did)?;
176                self.write_pointer(ptr, &dest)?;
177            }
178
179            Use(ref operand, with_retag) => {
180                // Avoid recomputing the layout
181                let op = self.eval_operand(operand, Some(dest.layout))?;
182                let mode = if with_retag.yes() { RetagMode::Default } else { RetagMode::None };
183                M::with_retag_mode(self, mode, |ecx| ecx.copy_op(&op, &dest))?;
184            }
185
186            CopyForDeref(_) => ::rustc_middle::util::bug::bug_fmt(format_args!("`CopyForDeref` in runtime MIR"))bug!("`CopyForDeref` in runtime MIR"),
187
188            BinaryOp(bin_op, (ref left, ref right)) => {
189                let layout = util::binop_left_homogeneous(bin_op).then_some(dest.layout);
190                let left = self.read_immediate(&self.eval_operand(left, layout)?)?;
191                let layout = util::binop_right_homogeneous(bin_op).then_some(left.layout);
192                let right = self.read_immediate(&self.eval_operand(right, layout)?)?;
193                let result = self.binary_op(bin_op, &left, &right)?;
194                {
    match (&result.layout, &dest.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::Some(format_args!("layout mismatch for result of {0:?}",
                            bin_op)));
            }
        }
    }
};assert_eq!(result.layout, dest.layout, "layout mismatch for result of {bin_op:?}");
195                self.write_immediate(*result, &dest)?;
196            }
197
198            UnaryOp(un_op, ref operand) => {
199                let layout = util::unop_homogeneous(un_op).then_some(dest.layout);
200                let val = self.read_immediate(&self.eval_operand(operand, layout)?)?;
201                let result = self.unary_op(un_op, &val)?;
202                {
    match (&result.layout, &dest.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::Some(format_args!("layout mismatch for result of {0:?}",
                            un_op)));
            }
        }
    }
};assert_eq!(result.layout, dest.layout, "layout mismatch for result of {un_op:?}");
203                self.write_immediate(*result, &dest)?;
204            }
205
206            Aggregate(ref kind, ref operands) => {
207                self.write_aggregate(kind, operands, &dest)?;
208            }
209
210            Repeat(ref operand, _) => {
211                self.write_repeat(operand, &dest)?;
212            }
213
214            Ref(_, borrow_kind, place) => {
215                // `x = &*ptr` does not need a validity check on `ptr` because we will already
216                // check `x` below.
217                let src = self.eval_place(place, /* skip_validity_for_simple_deref */ true)?;
218                let place = self.force_allocation(&src)?;
219                let mut val = ImmTy::from_immediate(place.to_ref(self), dest.layout);
220                // A fresh reference was created, make sure it gets retagged with the right mode.
221                let mode = if borrow_kind.is_two_phase_borrow() {
222                    RetagMode::TwoPhase
223                } else {
224                    RetagMode::Default
225                };
226                M::with_retag_mode(self, mode, |ecx| {
227                    // If validation is disabled, we still want to do this retag. This is because
228                    // const-eval disables validation for performance reasons but wants to retag
229                    // shared references. So we add a bit of a hack here to do the retag manually
230                    // if the write would not incur validation.
231                    if !M::enforce_validity(ecx, val.layout) {
232                        if let Some(new_val) = M::retag_ptr_value(ecx, &val, val.layout.ty)? {
233                            val = new_val;
234                        }
235                    }
236                    // Now do the actual write.
237                    ecx.write_immediate(*val, &dest)
238                })?;
239            }
240
241            Reborrow(_, mutability, place) => {
242                let op = self.eval_place_to_op(place, None)?;
243                if mutability.is_not() {
244                    // Shared generic reborrows use `CoerceShared`: a bitwise copy into a
245                    // distinct same-layout target ADT.
246                    self.copy_op_allow_transmute(&op, &dest)?;
247                } else {
248                    self.copy_op(&op, &dest)?;
249                }
250            }
251
252            RawPtr(kind, place) => {
253                // Figure out whether this is an addr_of of an already raw place.
254                let place_base_raw = if place.is_indirect_first_projection() {
255                    let ty = self.frame().body.local_decls[place.local].ty;
256                    ty.is_raw_ptr()
257                } else {
258                    // Not a deref, and thus not raw.
259                    false
260                };
261
262                let src =
263                    self.eval_place(place, /* skip_validity_for_simple_deref */ false)?;
264                let place = self.force_allocation(&src)?;
265                let mut val = ImmTy::from_immediate(place.to_ref(self), dest.layout);
266                if !place_base_raw && !kind.is_fake() {
267                    // If this was not already raw, it needs retagging -- except for "fake"
268                    // raw borrows whose defining property is that they do not get retagged.
269                    val = M::with_retag_mode(self, RetagMode::Raw, |ecx| {
270                        interp_ok(M::retag_ptr_value(ecx, &val, val.layout.ty)?.unwrap_or(val))
271                    })?;
272                }
273                // This writes a raw pointer so it will not do any retags.
274                self.write_immediate(*val, &dest)?;
275            }
276
277            Cast(cast_kind, ref operand, cast_ty) => {
278                let src = self.eval_operand(operand, None)?;
279                let cast_ty =
280                    self.instantiate_from_current_frame_and_normalize_erasing_regions(cast_ty)?;
281                self.cast(&src, cast_kind, cast_ty, &dest)?;
282            }
283
284            Discriminant(place) => {
285                let op = self.eval_place_to_op(place, None)?;
286                let variant = self.read_discriminant(&op)?;
287                let discr = self.discriminant_for_variant(op.layout.ty, variant)?;
288                self.write_immediate(*discr, &dest)?;
289            }
290
291            WrapUnsafeBinder(ref op, _ty) => {
292                // Constructing an unsafe binder acts like a transmute
293                // since the operand's layout does not change.
294                let op = self.eval_operand(op, None)?;
295                self.copy_op_allow_transmute(&op, &dest)?;
296            }
297        }
298
299        {
    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/step.rs:299",
                        "rustc_const_eval::interpret::step",
                        ::tracing::Level::TRACE,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_const_eval/src/interpret/step.rs"),
                        ::tracing_core::__macro_support::Option::Some(299u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_const_eval::interpret::step"),
                        ::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};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("{0:?}",
                                                    self.dump_place(&dest)) as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};trace!("{:?}", self.dump_place(&dest));
300
301        interp_ok(())
302    }
303
304    /// Writes the aggregate to the destination.
305    #[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("write_aggregate",
                                    "rustc_const_eval::interpret::step",
                                    ::tracing::Level::TRACE,
                                    ::tracing_core::__macro_support::Option::Some("compiler/rustc_const_eval/src/interpret/step.rs"),
                                    ::tracing_core::__macro_support::Option::Some(305u32),
                                    ::tracing_core::__macro_support::Option::Some("rustc_const_eval::interpret::step"),
                                    ::tracing_core::field::FieldSet::new(&[{
                                                        const NAME:
                                                            ::tracing::__macro_support::FieldName<{
                                                                ::tracing::__macro_support::FieldName::len("kind")
                                                            }> =
                                                            ::tracing::__macro_support::FieldName::new("kind");
                                                        NAME.as_str()
                                                    },
                                                    {
                                                        const NAME:
                                                            ::tracing::__macro_support::FieldName<{
                                                                ::tracing::__macro_support::FieldName::len("operands")
                                                            }> =
                                                            ::tracing::__macro_support::FieldName::new("operands");
                                                        NAME.as_str()
                                                    },
                                                    {
                                                        const NAME:
                                                            ::tracing::__macro_support::FieldName<{
                                                                ::tracing::__macro_support::FieldName::len("dest")
                                                            }> =
                                                            ::tracing::__macro_support::FieldName::new("dest");
                                                        NAME.as_str()
                                                    }], ::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};
                                meta.fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&kind)
                                                            as &dyn ::tracing::field::Value)),
                                                (::tracing::__macro_support::Option::Some(&::tracing::field::debug(&operands)
                                                            as &dyn ::tracing::field::Value)),
                                                (::tracing::__macro_support::Option::Some(&::tracing::field::debug(&dest)
                                                            as &dyn ::tracing::field::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 (variant_index, variant_dest, active_field_index) =
                match *kind {
                    mir::AggregateKind::Adt(_, variant_index, _, _,
                        active_field_index) => {
                        let variant_dest =
                            self.project_downcast(dest, variant_index)?;
                        (variant_index, variant_dest, active_field_index)
                    }
                    mir::AggregateKind::RawPtr(..) => {
                        let [data, meta] =
                            &operands.raw else {
                                ::rustc_middle::util::bug::bug_fmt(format_args!("{0:?} should have 2 operands, had {1:?}",
                                        kind, operands));
                            };
                        let data = self.eval_operand(data, None)?;
                        let data = self.read_pointer(&data)?;
                        let meta = self.eval_operand(meta, None)?;
                        let meta =
                            if meta.layout.is_zst() {
                                MemPlaceMeta::None
                            } else { MemPlaceMeta::Meta(self.read_scalar(&meta)?) };
                        let ptr_imm =
                            Immediate::new_pointer_with_meta(data, meta, self);
                        let ptr = ImmTy::from_immediate(ptr_imm, dest.layout);
                        self.copy_op(&ptr, dest)?;
                        return interp_ok(());
                    }
                    _ => (FIRST_VARIANT, dest.clone(), None),
                };
            if active_field_index.is_some() {
                {
                    match (&operands.len(), &1) {
                        (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);
                            }
                        }
                    }
                };
            }
            for (field_index, operand) in operands.iter_enumerated() {
                let field_index = active_field_index.unwrap_or(field_index);
                let field_dest =
                    self.project_field(&variant_dest, field_index)?;
                let op = self.eval_operand(operand, Some(field_dest.layout))?;
                self.copy_op_no_validate(&op, &field_dest, false)?;
            }
            self.write_discriminant(variant_index, dest)?;
            if M::enforce_validity(self, dest.layout()) {
                self.validate_place(dest,
                        M::enforce_validity_recursively(self, dest.layout()),
                        true)?;
            }
            interp_ok(())
        }
    }
}#[instrument(skip(self), level = "trace")]
306    fn write_aggregate(
307        &mut self,
308        kind: &mir::AggregateKind<'tcx>,
309        operands: &IndexSlice<FieldIdx, mir::Operand<'tcx>>,
310        dest: &PlaceTy<'tcx, M::Provenance>,
311    ) -> InterpResult<'tcx> {
312        let (variant_index, variant_dest, active_field_index) = match *kind {
313            mir::AggregateKind::Adt(_, variant_index, _, _, active_field_index) => {
314                let variant_dest = self.project_downcast(dest, variant_index)?;
315                (variant_index, variant_dest, active_field_index)
316            }
317            mir::AggregateKind::RawPtr(..) => {
318                // Pointers don't have "fields" in the normal sense, so the
319                // projection-based code below would either fail in projection
320                // or in type mismatches. Instead, build an `Immediate` from
321                // the parts and write that to the destination.
322                let [data, meta] = &operands.raw else {
323                    bug!("{kind:?} should have 2 operands, had {operands:?}");
324                };
325                let data = self.eval_operand(data, None)?;
326                let data = self.read_pointer(&data)?;
327                let meta = self.eval_operand(meta, None)?;
328                let meta = if meta.layout.is_zst() {
329                    MemPlaceMeta::None
330                } else {
331                    MemPlaceMeta::Meta(self.read_scalar(&meta)?)
332                };
333                let ptr_imm = Immediate::new_pointer_with_meta(data, meta, self);
334                let ptr = ImmTy::from_immediate(ptr_imm, dest.layout);
335                self.copy_op(&ptr, dest)?;
336                return interp_ok(());
337            }
338            _ => (FIRST_VARIANT, dest.clone(), None),
339        };
340        if active_field_index.is_some() {
341            assert_eq!(operands.len(), 1);
342        }
343        for (field_index, operand) in operands.iter_enumerated() {
344            let field_index = active_field_index.unwrap_or(field_index);
345            let field_dest = self.project_field(&variant_dest, field_index)?;
346            let op = self.eval_operand(operand, Some(field_dest.layout))?;
347            // We validate manually below so we don't have to do it here.
348            self.copy_op_no_validate(&op, &field_dest, /*allow_transmute*/ false)?;
349        }
350        self.write_discriminant(variant_index, dest)?;
351        // Validate that the entire thing is valid, and reset padding that might be in between the
352        // fields.
353        if M::enforce_validity(self, dest.layout()) {
354            self.validate_place(
355                dest,
356                M::enforce_validity_recursively(self, dest.layout()),
357                /*reset_provenance_and_padding*/ true,
358            )?;
359        }
360        interp_ok(())
361    }
362
363    /// Repeats `operand` into the destination. `dest` must have array type, and that type
364    /// determines how often `operand` is repeated.
365    fn write_repeat(
366        &mut self,
367        operand: &mir::Operand<'tcx>,
368        dest: &PlaceTy<'tcx, M::Provenance>,
369    ) -> InterpResult<'tcx> {
370        let src = self.eval_operand(operand, None)?;
371        if !src.layout.is_sized() {
    ::core::panicking::panic("assertion failed: src.layout.is_sized()")
};assert!(src.layout.is_sized());
372        let dest = self.force_allocation(&dest)?;
373        let length = dest.len(self)?;
374
375        if length == 0 {
376            // Nothing to copy... but let's still make sure that `dest` as a place is valid.
377            self.get_place_alloc_mut(&dest)?;
378        } else {
379            // Write the src to the first element.
380            let first = self.project_index(&dest, 0)?;
381            self.copy_op(&src, &first)?;
382
383            // This is performance-sensitive code for big static/const arrays! So we
384            // avoid writing each operand individually and instead just make many copies
385            // of the first element.
386            let elem_size = first.layout.size;
387            let first_ptr = first.ptr();
388            let rest_ptr = first_ptr.wrapping_offset(elem_size, self);
389            // No alignment requirement since `copy_op` above already checked it.
390            self.mem_copy_repeatedly(
391                first_ptr,
392                rest_ptr,
393                elem_size,
394                length - 1,
395                /*nonoverlapping:*/ true,
396            )?;
397        }
398
399        interp_ok(())
400    }
401
402    /// Evaluate the arguments of a function call
403    fn eval_fn_call_argument(
404        &mut self,
405        op: &mir::Operand<'tcx>,
406        move_definitely_disjoint: bool,
407    ) -> InterpResult<'tcx, FnArg<'tcx, M::Provenance>> {
408        interp_ok(match op {
409            mir::Operand::Copy(_) | mir::Operand::Constant(_) | mir::Operand::RuntimeChecks(_) => {
410                // Make a regular copy.
411                let op = self.eval_operand(op, None)?;
412                FnArg::Copy(op)
413            }
414            mir::Operand::Move(place) => {
415                // We will read from this place, which checks everything there is to check,
416                // so we can skip the extra validity check here.
417                let place =
418                    self.eval_place(*place, /* skip_validity_for_simple_deref */ true)?;
419                if move_definitely_disjoint {
420                    // We still have to ensure that no *other* pointers are used to access this place,
421                    // so *if* it is in memory then we have to treat it as `InPlace`.
422                    // Use `place_to_op` to guarantee that we notice it being in memory.
423                    let op = self.place_to_op(&place)?;
424                    match op.as_mplace_or_imm() {
425                        Either::Left(mplace) => FnArg::InPlace(mplace),
426                        Either::Right(_imm) => FnArg::Copy(op),
427                    }
428                } else {
429                    // We have to force this into memory to detect aliasing among `Move` arguments.
430                    FnArg::InPlace(self.force_allocation(&place)?)
431                }
432            }
433        })
434    }
435
436    /// Shared part of `Call` and `TailCall` implementation — finding and evaluating all the
437    /// necessary information about callee and arguments to make a call.
438    fn eval_callee_and_args(
439        &mut self,
440        terminator: &mir::Terminator<'tcx>,
441        func: &mir::Operand<'tcx>,
442        args: &[Spanned<mir::Operand<'tcx>>],
443        dest: &mir::Place<'tcx>,
444    ) -> InterpResult<'tcx, EvaluatedCalleeAndArgs<'tcx, M>> {
445        let func = self.eval_operand(func, None)?;
446
447        // Evaluating function call arguments. The tricky part here is dealing with `Move`
448        // arguments: we have to ensure no two such arguments alias. This would be most easily done
449        // by just forcing them all into memory and then doing the usual in-place argument
450        // protection, but then we'd force *a lot* of arguments into memory. So we do some syntactic
451        // pre-processing here where if all `move` arguments are syntactically distinct local
452        // variables (and none is indirect), we can skip the in-memory forcing.
453        // We have to include `dest` in that list so that we can detect aliasing of an in-place
454        // argument with the return place.
455        let move_definitely_disjoint = 'move_definitely_disjoint: {
456            let mut previous_locals = FxHashSet::<mir::Local>::default();
457            for place in args
458                .iter()
459                .filter_map(|a| {
460                    // We only have to care about `Move` arguments.
461                    if let mir::Operand::Move(place) = &a.node { Some(place) } else { None }
462                })
463                .chain(iter::once(dest))
464            {
465                if place.is_indirect_first_projection() {
466                    // An indirect in-place argument could alias with anything else...
467                    break 'move_definitely_disjoint false;
468                }
469                if !previous_locals.insert(place.local) {
470                    // This local is the base for two arguments! They might overlap.
471                    break 'move_definitely_disjoint false;
472                }
473            }
474            // We found no violation so they are all definitely disjoint.
475            true
476        };
477        let args = args
478            .iter()
479            .map(|arg| self.eval_fn_call_argument(&arg.node, move_definitely_disjoint))
480            .collect::<InterpResult<'tcx, Vec<_>>>()?;
481
482        let fn_sig_binder = {
483            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("fn_sig",
                                "rustc_const_eval::interpret::step", ::tracing::Level::INFO,
                                ::tracing_core::__macro_support::Option::Some("compiler/rustc_const_eval/src/interpret/step.rs"),
                                ::tracing_core::__macro_support::Option::Some(483u32),
                                ::tracing_core::__macro_support::Option::Some("rustc_const_eval::interpret::step"),
                                ::tracing_core::field::FieldSet::new(&[{
                                                    const NAME:
                                                        ::tracing::__macro_support::FieldName<{
                                                            ::tracing::__macro_support::FieldName::len("ty")
                                                        }> =
                                                        ::tracing::__macro_support::FieldName::new("ty");
                                                    NAME.as_str()
                                                }], ::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};
                            meta.fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&func.layout.ty.kind())
                                                        as &dyn ::tracing::field::Value))])
                        })
            } else {
                let span =
                    ::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
                {};
                span
            }
        })enter_trace_span!(M, "fn_sig", ty = ?func.layout.ty.kind());
484            func.layout.ty.fn_sig(*self.tcx)
485        };
486        let fn_sig = self.tcx.normalize_erasing_late_bound_regions(self.typing_env, fn_sig_binder);
487        let extra_args = &args[fn_sig.inputs().len()..];
488        let extra_args =
489            self.tcx.mk_type_list_from_iter(extra_args.iter().map(|arg| arg.layout().ty));
490
491        let (callee, fn_abi, with_caller_location) = match *func.layout.ty.kind() {
492            ty::FnPtr(..) => {
493                let fn_ptr = self.read_pointer(&func)?;
494                let fn_val = self.get_ptr_fn(fn_ptr)?;
495                (fn_val, Some(self.fn_abi_of_fn_ptr(fn_sig_binder, extra_args)?), false)
496            }
497            ty::FnDef(def_id, args) => {
498                let instance = self.resolve(def_id, args.no_bound_vars().unwrap())?;
499                // Don't compute FnAbi for LLVM intrinsics. Trying to do that would panic.
500                // Rust intrinsics however *do* need a FnAbi as we may invoke the
501                // fallback body like a regular function.
502                let has_fn_abi = !#[allow(non_exhaustive_omitted_patterns)] match instance.def {
    ty::InstanceKind::LlvmIntrinsic(_) => true,
    _ => false,
}matches!(instance.def, ty::InstanceKind::LlvmIntrinsic(_));
503                (
504                    FnVal::Instance(instance),
505                    has_fn_abi
506                        .then(|| self.fn_abi_of_instance_no_deduced_attrs(instance, extra_args))
507                        .transpose()?,
508                    instance.def.requires_caller_location(*self.tcx),
509                )
510            }
511            _ => {
512                ::rustc_middle::util::bug::span_bug_fmt(terminator.source_info.span,
    format_args!("invalid callee of type {0}", func.layout.ty))span_bug!(terminator.source_info.span, "invalid callee of type {}", func.layout.ty)
513            }
514        };
515
516        interp_ok(EvaluatedCalleeAndArgs { callee, args, fn_sig, fn_abi, with_caller_location })
517    }
518
519    fn eval_terminator(&mut self, terminator: &mir::Terminator<'tcx>) -> InterpResult<'tcx> {
520        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::step", ::tracing::Level::INFO,
                                ::tracing_core::__macro_support::Option::Some("compiler/rustc_const_eval/src/interpret/step.rs"),
                                ::tracing_core::__macro_support::Option::Some(520u32),
                                ::tracing_core::__macro_support::Option::Some("rustc_const_eval::interpret::step"),
                                ::tracing_core::field::FieldSet::new(&[{
                                                    const NAME:
                                                        ::tracing::__macro_support::FieldName<{
                                                            ::tracing::__macro_support::FieldName::len("step")
                                                        }> =
                                                        ::tracing::__macro_support::FieldName::new("step");
                                                    NAME.as_str()
                                                },
                                                {
                                                    const NAME:
                                                        ::tracing::__macro_support::FieldName<{
                                                            ::tracing::__macro_support::FieldName::len("terminator")
                                                        }> =
                                                        ::tracing::__macro_support::FieldName::new("terminator");
                                                    NAME.as_str()
                                                },
                                                {
                                                    const NAME:
                                                        ::tracing::__macro_support::FieldName<{
                                                            ::tracing::__macro_support::FieldName::len("span")
                                                        }> =
                                                        ::tracing::__macro_support::FieldName::new("span");
                                                    NAME.as_str()
                                                },
                                                {
                                                    const NAME:
                                                        ::tracing::__macro_support::FieldName<{
                                                            ::tracing::__macro_support::FieldName::len("tracing_separate_thread")
                                                        }> =
                                                        ::tracing::__macro_support::FieldName::new("tracing_separate_thread");
                                                    NAME.as_str()
                                                }], ::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};
                            meta.fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&::tracing::field::display(&"eval_terminator")
                                                        as &dyn ::tracing::field::Value)),
                                            (::tracing::__macro_support::Option::Some(&::tracing::field::debug(&terminator.kind)
                                                        as &dyn ::tracing::field::Value)),
                                            (::tracing::__macro_support::Option::Some(&::tracing::field::debug(&terminator.source_info.span)
                                                        as &dyn ::tracing::field::Value)),
                                            (::tracing::__macro_support::Option::Some(&Empty as
                                                        &dyn ::tracing::field::Value))])
                        })
            } else {
                let span =
                    ::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
                {};
                span
            }
        })enter_trace_span!(
521            M,
522            step::eval_terminator,
523            terminator = ?terminator.kind,
524            span = ?terminator.source_info.span,
525            tracing_separate_thread = Empty,
526        )
527        .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/step.rs:527",
                        "rustc_const_eval::interpret::step", ::tracing::Level::INFO,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_const_eval/src/interpret/step.rs"),
                        ::tracing_core::__macro_support::Option::Some(527u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_const_eval::interpret::step"),
                        ::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};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("{0:?}",
                                                    terminator.kind) as &dyn ::tracing::field::Value))])
            });
    } else { ; }
}info!("{:?}", terminator.kind));
528
529        use rustc_middle::mir::TerminatorKind::*;
530        match terminator.kind {
531            Return => {
532                self.return_from_current_stack_frame(/* unwinding */ false)?
533            }
534
535            Goto { target } => self.go_to_block(target),
536
537            SwitchInt { ref discr, ref targets } => {
538                let discr = self.read_immediate(&self.eval_operand(discr, None)?)?;
539                {
    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/step.rs:539",
                        "rustc_const_eval::interpret::step",
                        ::tracing::Level::TRACE,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_const_eval/src/interpret/step.rs"),
                        ::tracing_core::__macro_support::Option::Some(539u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_const_eval::interpret::step"),
                        ::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};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("SwitchInt({0:?})",
                                                    *discr) as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};trace!("SwitchInt({:?})", *discr);
540
541                // Branch to the `otherwise` case by default, if no match is found.
542                let mut target_block = targets.otherwise();
543
544                for (const_int, target) in targets.iter() {
545                    // Compare using MIR BinOp::Eq, to also support pointer values.
546                    // (Avoiding `self.binary_op` as that does some redundant layout computation.)
547                    let res = self.binary_op(
548                        mir::BinOp::Eq,
549                        &discr,
550                        &ImmTy::from_uint(const_int, discr.layout),
551                    )?;
552                    if res.to_scalar().to_bool()? {
553                        target_block = target;
554                        break;
555                    }
556                }
557
558                self.go_to_block(target_block);
559            }
560
561            Call {
562                ref func,
563                ref args,
564                destination,
565                target,
566                unwind,
567                call_source: _,
568                fn_span: _,
569            } => {
570                let old_stack = self.frame_idx();
571                let old_loc = self.frame().loc;
572
573                // Evaluation order consistent with assignment: destination first.
574                let dest_place =
575                    self.eval_place(destination, /* skip_validity_for_simple_deref */ false)?;
576                let EvaluatedCalleeAndArgs { callee, args, fn_sig, fn_abi, with_caller_location } =
577                    self.eval_callee_and_args(terminator, func, args, &destination)?;
578
579                self.init_fn_call(
580                    callee,
581                    (fn_sig.abi(), fn_abi),
582                    &args,
583                    with_caller_location,
584                    &dest_place,
585                    target,
586                    if fn_abi.map_or(false, |fn_abi| fn_abi.can_unwind) {
587                        unwind
588                    } else {
589                        mir::UnwindAction::Unreachable
590                    },
591                )?;
592
593                // Sanity-check that `eval_fn_call` either pushed a new frame or
594                // did a jump to another block. We disable the sanity check for functions that
595                // can't return, since Miri sometimes does have to keep the location the same
596                // for those (which is fine since execution will continue on a different thread).
597                if target.is_some() && self.frame_idx() == old_stack && self.frame().loc == old_loc
598                {
599                    ::rustc_middle::util::bug::span_bug_fmt(terminator.source_info.span,
    format_args!("evaluating this call made no progress"));span_bug!(terminator.source_info.span, "evaluating this call made no progress");
600                }
601            }
602
603            TailCall { ref func, ref args, fn_span: _ } => {
604                let old_frame_idx = self.frame_idx();
605
606                let EvaluatedCalleeAndArgs { callee, args, fn_sig, fn_abi, with_caller_location } =
607                    self.eval_callee_and_args(terminator, func, args, &mir::Place::return_place())?;
608
609                self.init_fn_tail_call(
610                    callee,
611                    (fn_sig.abi(), fn_abi),
612                    &args,
613                    with_caller_location,
614                )?;
615
616                if self.frame_idx() != old_frame_idx {
617                    ::rustc_middle::util::bug::span_bug_fmt(terminator.source_info.span,
    format_args!("evaluating this tail call pushed a new stack frame"));span_bug!(
618                        terminator.source_info.span,
619                        "evaluating this tail call pushed a new stack frame"
620                    );
621                }
622            }
623
624            Drop { place, target, unwind, replace: _, drop } => {
625                if !drop.is_none() {
    {
        ::core::panicking::panic_fmt(format_args!("Async Drop must be expanded or reset to sync in runtime MIR"));
    }
};assert!(
626                    drop.is_none(),
627                    "Async Drop must be expanded or reset to sync in runtime MIR"
628                );
629                let place =
630                    self.eval_place(place, /* skip_validity_for_simple_deref */ false)?;
631                let instance = {
632                    let _trace =
633                        <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::step", ::tracing::Level::INFO,
                                ::tracing_core::__macro_support::Option::Some("compiler/rustc_const_eval/src/interpret/step.rs"),
                                ::tracing_core::__macro_support::Option::Some(633u32),
                                ::tracing_core::__macro_support::Option::Some("rustc_const_eval::interpret::step"),
                                ::tracing_core::field::FieldSet::new(&[{
                                                    const NAME:
                                                        ::tracing::__macro_support::FieldName<{
                                                            ::tracing::__macro_support::FieldName::len("resolve")
                                                        }> =
                                                        ::tracing::__macro_support::FieldName::new("resolve");
                                                    NAME.as_str()
                                                },
                                                {
                                                    const NAME:
                                                        ::tracing::__macro_support::FieldName<{
                                                            ::tracing::__macro_support::FieldName::len("ty")
                                                        }> =
                                                        ::tracing::__macro_support::FieldName::new("ty");
                                                    NAME.as_str()
                                                }], ::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};
                            meta.fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&::tracing::field::display(&"resolve_drop_glue")
                                                        as &dyn ::tracing::field::Value)),
                                            (::tracing::__macro_support::Option::Some(&::tracing::field::debug(&place.layout.ty)
                                                        as &dyn ::tracing::field::Value))])
                        })
            } else {
                let span =
                    ::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
                {};
                span
            }
        })enter_trace_span!(M, resolve::resolve_drop_glue, ty = ?place.layout.ty);
634                    Instance::resolve_drop_glue(*self.tcx, place.layout.ty)
635                };
636                if let ty::InstanceKind::Shim(ty::ShimKind::DropGlue(_, None)) = instance.def {
637                    // This is the branch we enter if and only if the dropped type has no drop glue
638                    // whatsoever. This can happen as a result of monomorphizing a drop of a
639                    // generic. In order to make sure that generic and non-generic code behaves
640                    // roughly the same (and in keeping with Mir semantics) we do nothing here.
641                    self.go_to_block(target);
642                    return interp_ok(());
643                }
644                {
    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/step.rs:644",
                        "rustc_const_eval::interpret::step",
                        ::tracing::Level::TRACE,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_const_eval/src/interpret/step.rs"),
                        ::tracing_core::__macro_support::Option::Some(644u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_const_eval::interpret::step"),
                        ::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};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("TerminatorKind::drop: {0:?}, type {1}",
                                                    place, place.layout.ty) as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};trace!("TerminatorKind::drop: {:?}, type {}", place, place.layout.ty);
645                self.init_drop_in_place_call(&place, instance, target, unwind)?;
646            }
647
648            Assert { ref cond, expected, ref msg, target, unwind } => {
649                let ignored =
650                    M::ignore_optional_overflow_checks(self) && msg.is_optional_overflow_check();
651                let cond_val = self.read_scalar(&self.eval_operand(cond, None)?)?.to_bool()?;
652                if ignored || expected == cond_val {
653                    self.go_to_block(target);
654                } else {
655                    M::assert_panic(self, msg, unwind)?;
656                }
657            }
658
659            UnwindTerminate(reason) => {
660                M::unwind_terminate(self, reason)?;
661            }
662
663            // When we encounter Resume, we've finished unwinding
664            // cleanup for the current stack frame. We pop it in order
665            // to continue unwinding the next frame
666            UnwindResume => {
667                {
    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/step.rs:667",
                        "rustc_const_eval::interpret::step",
                        ::tracing::Level::TRACE,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_const_eval/src/interpret/step.rs"),
                        ::tracing_core::__macro_support::Option::Some(667u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_const_eval::interpret::step"),
                        ::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};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("unwinding: resuming from cleanup")
                                            as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};trace!("unwinding: resuming from cleanup");
668                // By definition, a Resume terminator means
669                // that we're unwinding
670                self.return_from_current_stack_frame(/* unwinding */ true)?;
671                return interp_ok(());
672            }
673
674            // It is UB to ever encounter this.
675            Unreachable => do yeet ::rustc_middle::mir::interpret::InterpErrorKind::UndefinedBehavior(::rustc_middle::mir::interpret::UndefinedBehaviorInfo::Unreachable)throw_ub!(Unreachable),
676
677            // These should never occur for MIR we actually run.
678            FalseEdge { .. } | FalseUnwind { .. } | Yield { .. } | CoroutineDrop => ::rustc_middle::util::bug::span_bug_fmt(terminator.source_info.span,
    format_args!("{0:#?} should have been eliminated by MIR pass",
        terminator.kind))span_bug!(
679                terminator.source_info.span,
680                "{:#?} should have been eliminated by MIR pass",
681                terminator.kind
682            ),
683
684            InlineAsm { .. } => {
685                do yeet ::rustc_middle::mir::interpret::InterpErrorKind::Unsupported(::rustc_middle::mir::interpret::UnsupportedOpInfo::Unsupported(::alloc::__export::must_use({
                    ::alloc::fmt::format(format_args!("inline assembly is not supported"))
                })));throw_unsup_format!("inline assembly is not supported");
686            }
687        }
688
689        interp_ok(())
690    }
691}