Skip to main content

rustc_mir_build/builder/
scope.rs

1/*!
2Managing the scope stack. The scopes are tied to lexical scopes, so as
3we descend the THIR, we push a scope on the stack, build its
4contents, and then pop it off. Every scope is named by a
5`region::Scope`.
6
7### SEME Regions
8
9When pushing a new [Scope], we record the current point in the graph (a
10basic block); this marks the entry to the scope. We then generate more
11stuff in the control-flow graph. Whenever the scope is exited, either
12via a `break` or `return` or just by fallthrough, that marks an exit
13from the scope. Each lexical scope thus corresponds to a single-entry,
14multiple-exit (SEME) region in the control-flow graph.
15
16For now, we record the `region::Scope` to each SEME region for later reference
17(see caveat in next paragraph). This is because destruction scopes are tied to
18them. This may change in the future so that MIR lowering determines its own
19destruction scopes.
20
21### Not so SEME Regions
22
23In the course of building matches, it sometimes happens that certain code
24(namely guards) gets executed multiple times. This means that the scope lexical
25scope may in fact correspond to multiple, disjoint SEME regions. So in fact our
26mapping is from one scope to a vector of SEME regions. Since the SEME regions
27are disjoint, the mapping is still one-to-one for the set of SEME regions that
28we're currently in.
29
30Also in matches, the scopes assigned to arms are not always even SEME regions!
31Each arm has a single region with one entry for each pattern. We manually
32manipulate the scheduled drops in this scope to avoid dropping things multiple
33times.
34
35### Drops
36
37The primary purpose for scopes is to insert drops: while building
38the contents, we also accumulate places that need to be dropped upon
39exit from each scope. This is done by calling `schedule_drop`. Once a
40drop is scheduled, whenever we branch out we will insert drops of all
41those places onto the outgoing edge. Note that we don't know the full
42set of scheduled drops up front, and so whenever we exit from the
43scope we only drop the values scheduled thus far. For example, consider
44the scope S corresponding to this loop:
45
46```
47# let cond = true;
48loop {
49    let x = ..;
50    if cond { break; }
51    let y = ..;
52}
53```
54
55When processing the `let x`, we will add one drop to the scope for
56`x`. The break will then insert a drop for `x`. When we process `let
57y`, we will add another drop (in fact, to a subscope, but let's ignore
58that for now); any later drops would also drop `y`.
59
60### Early exit
61
62There are numerous "normal" ways to early exit a scope: `break`,
63`continue`, `return` (panics are handled separately). Whenever an
64early exit occurs, the method `break_scope` is called. It is given the
65current point in execution where the early exit occurs, as well as the
66scope you want to branch to (note that all early exits from to some
67other enclosing scope). `break_scope` will record the set of drops currently
68scheduled in a [DropTree]. Later, before `in_breakable_scope` exits, the drops
69will be added to the CFG.
70
71Panics are handled in a similar fashion, except that the drops are added to the
72MIR once the rest of the function has finished being lowered. If a terminator
73can panic, call `diverge_from(block)` with the block containing the terminator
74`block`.
75
76### Breakable scopes
77
78In addition to the normal scope stack, we track a loop scope stack
79that contains only loops and breakable blocks. It tracks where a `break`,
80`continue` or `return` should go to.
81
82*/
83
84use std::mem;
85
86use interpret::ErrorHandled;
87use rustc_data_structures::fx::FxHashMap;
88use rustc_hir::HirId;
89use rustc_index::{IndexSlice, IndexVec};
90use rustc_lint_defs::Level;
91use rustc_middle::middle::region;
92use rustc_middle::mir::{self, *};
93use rustc_middle::thir::{AdtExpr, AdtExprBase, ArmId, ExprId, ExprKind};
94use rustc_middle::ty::{self, Ty, TyCtxt, TypeVisitableExt, ValTree};
95use rustc_pattern_analysis::rustc::RustcPatCtxt;
96use rustc_span::{DUMMY_SP, Span, Spanned, bug, span_bug};
97use tracing::{debug, instrument};
98
99use super::matches::BuiltMatchTree;
100use crate::builder::{BlockAnd, BlockAndExtension, BlockFrame, Builder, CFG};
101use crate::diagnostics::{
102    ConstContinueBadConst, ConstContinueNotMonomorphicConst, ConstContinueUnknownJumpTarget,
103};
104
105#[derive(#[automatically_derived]
impl<'tcx> ::core::fmt::Debug for Scopes<'tcx> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        let names: &'static _ =
            &["scopes", "breakable_scopes", "const_continuable_scopes",
                        "if_then_scope", "unwind_drops", "coroutine_drops"];
        let values: &[&dyn ::core::fmt::Debug] =
            &[&self.scopes, &self.breakable_scopes,
                        &self.const_continuable_scopes, &self.if_then_scope,
                        &self.unwind_drops, &&self.coroutine_drops];
        ::core::fmt::Formatter::debug_struct_fields_finish(f, "Scopes", names,
            values)
    }
}Debug)]
106pub(crate) struct Scopes<'tcx> {
107    scopes: Vec<Scope>,
108
109    /// The current set of breakable scopes. See module comment for more details.
110    breakable_scopes: Vec<BreakableScope<'tcx>>,
111
112    const_continuable_scopes: Vec<ConstContinuableScope<'tcx>>,
113
114    /// The scope of the innermost if-then currently being lowered.
115    if_then_scope: Option<IfThenScope>,
116
117    /// Drops that need to be done on unwind paths. See the comment on
118    /// [DropTree] for more details.
119    unwind_drops: DropTree,
120
121    /// Drops that need to be done on paths to the `CoroutineDrop` terminator.
122    coroutine_drops: DropTree,
123}
124
125#[derive(#[automatically_derived]
impl ::core::fmt::Debug for Scope {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        let names: &'static _ =
            &["source_scope", "region_scope", "drops", "moved_locals",
                        "cached_unwind_block", "cached_coroutine_drop_block"];
        let values: &[&dyn ::core::fmt::Debug] =
            &[&self.source_scope, &self.region_scope, &self.drops,
                        &self.moved_locals, &self.cached_unwind_block,
                        &&self.cached_coroutine_drop_block];
        ::core::fmt::Formatter::debug_struct_fields_finish(f, "Scope", names,
            values)
    }
}Debug)]
126struct Scope {
127    /// The source scope this scope was created in.
128    source_scope: SourceScope,
129
130    /// the region span of this scope within source code.
131    region_scope: region::Scope,
132
133    /// set of places to drop when exiting this scope. This starts
134    /// out empty but grows as variables are declared during the
135    /// building process. This is a stack, so we always drop from the
136    /// end of the vector (top of the stack) first.
137    drops: Vec<DropData>,
138
139    moved_locals: Vec<Local>,
140
141    /// The drop index that will drop everything in and below this scope on an
142    /// unwind path.
143    cached_unwind_block: Option<DropIdx>,
144
145    /// The drop index that will drop everything in and below this scope on a
146    /// coroutine drop path.
147    cached_coroutine_drop_block: Option<DropIdx>,
148}
149
150#[derive(#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for DropData { }
#[automatically_derived]
impl ::core::clone::Clone for DropData {
    #[inline]
    fn clone(&self) -> DropData {
        let _: ::core::clone::AssertParamIsClone<SourceInfo>;
        let _: ::core::clone::AssertParamIsClone<Local>;
        let _: ::core::clone::AssertParamIsClone<DropKind>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::marker::Copy for DropData { }Copy, #[automatically_derived]
impl ::core::fmt::Debug for DropData {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field3_finish(f, "DropData",
            "source_info", &self.source_info, "local", &self.local, "kind",
            &&self.kind)
    }
}Debug)]
151struct DropData {
152    /// The `Span` where drop obligation was incurred (typically where place was
153    /// declared)
154    source_info: SourceInfo,
155
156    /// local to drop
157    local: Local,
158
159    /// Whether this is a value Drop or a StorageDead.
160    kind: DropKind,
161}
162
163#[derive(#[automatically_derived]
impl ::core::fmt::Debug for DropKind {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                DropKind::Value => "Value",
                DropKind::Storage => "Storage",
                DropKind::ForLint => "ForLint",
            })
    }
}Debug, #[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for DropKind { }
#[automatically_derived]
impl ::core::clone::Clone for DropKind {
    #[inline]
    fn clone(&self) -> DropKind { *self }
}Clone, #[automatically_derived]
impl ::core::marker::Copy for DropKind { }Copy, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for DropKind { }
#[automatically_derived]
impl ::core::cmp::PartialEq for DropKind {
    #[inline]
    fn eq(&self, other: &DropKind) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for DropKind { }Eq, #[automatically_derived]
impl ::core::hash::Hash for DropKind {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        ::core::hash::Hash::hash(&__self_discr, state)
    }
}Hash)]
164enum DropKind {
165    Value,
166    Storage,
167    ForLint,
168}
169
170#[derive(#[automatically_derived]
impl<'tcx> ::core::fmt::Debug for BreakableScope<'tcx> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field4_finish(f,
            "BreakableScope", "region_scope", &self.region_scope,
            "break_destination", &self.break_destination, "break_drops",
            &self.break_drops, "continue_drops", &&self.continue_drops)
    }
}Debug)]
171struct BreakableScope<'tcx> {
172    /// Region scope of the loop
173    region_scope: region::Scope,
174    /// The destination of the loop/block expression itself (i.e., where to put
175    /// the result of a `break` or `return` expression)
176    break_destination: Place<'tcx>,
177    /// Drops that happen on the `break`/`return` path.
178    break_drops: DropTree,
179    /// Drops that happen on the `continue` path.
180    continue_drops: Option<DropTree>,
181}
182
183#[derive(#[automatically_derived]
impl<'tcx> ::core::fmt::Debug for ConstContinuableScope<'tcx> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field5_finish(f,
            "ConstContinuableScope", "region_scope", &self.region_scope,
            "state_place", &self.state_place, "arms", &self.arms,
            "built_match_tree", &self.built_match_tree,
            "const_continue_drops", &&self.const_continue_drops)
    }
}Debug)]
184struct ConstContinuableScope<'tcx> {
185    /// The scope for the `#[loop_match]` which its `#[const_continue]`s will jump to.
186    region_scope: region::Scope,
187    /// The place of the state of a `#[loop_match]`, which a `#[const_continue]` must update.
188    state_place: Place<'tcx>,
189
190    arms: Box<[ArmId]>,
191    built_match_tree: BuiltMatchTree<'tcx>,
192
193    /// Drops that happen on a `#[const_continue]`
194    const_continue_drops: DropTree,
195}
196
197#[derive(#[automatically_derived]
impl ::core::fmt::Debug for IfThenScope {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field2_finish(f, "IfThenScope",
            "region_scope", &self.region_scope, "else_drops",
            &&self.else_drops)
    }
}Debug)]
198struct IfThenScope {
199    /// The if-then scope or arm scope
200    region_scope: region::Scope,
201    /// Drops that happen on the `else` path.
202    else_drops: DropTree,
203}
204
205/// The target of an expression that breaks out of a scope
206#[derive(#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for BreakableTarget { }
#[automatically_derived]
impl ::core::clone::Clone for BreakableTarget {
    #[inline]
    fn clone(&self) -> BreakableTarget {
        let _: ::core::clone::AssertParamIsClone<region::Scope>;
        let _: ::core::clone::AssertParamIsClone<region::Scope>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::marker::Copy for BreakableTarget { }Copy, #[automatically_derived]
impl ::core::fmt::Debug for BreakableTarget {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            BreakableTarget::Continue(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "Continue", &__self_0),
            BreakableTarget::Break(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Break",
                    &__self_0),
            BreakableTarget::Return =>
                ::core::fmt::Formatter::write_str(f, "Return"),
        }
    }
}Debug)]
207pub(crate) enum BreakableTarget {
208    Continue(region::Scope),
209    Break(region::Scope),
210    Return,
211}
212
213#[automatically_derived]
impl ::core::marker::Copy for DropIdx { }
impl DropIdx {
    #[doc = r" Maximum value the index can take, as a `u32`."]
    const MAX_AS_U32: u32 = 0xFFFF_FF00;
    #[doc = r" Maximum value the index can take."]
    const MAX: Self = Self::from_u32(0xFFFF_FF00);
    #[doc = r" Zero value of the index."]
    const ZERO: Self = Self::from_u32(0);
    #[doc = r" Creates a new index from a given `usize`."]
    #[doc = r""]
    #[doc = r" # Panics"]
    #[doc = r""]
    #[doc = r" Will panic if `value` exceeds `MAX`."]
    #[inline]
    const fn from_usize(value: usize) -> Self {
        if !(value <= (0xFFFF_FF00 as usize)) {
            ::core::panicking::panic("assertion failed: value <= (0xFFFF_FF00 as usize)")
        };
        unsafe { Self::from_u32_unchecked(value as u32) }
    }
    #[doc = r" Creates a new index from a given `u32`."]
    #[doc = r""]
    #[doc = r" # Panics"]
    #[doc = r""]
    #[doc = r" Will panic if `value` exceeds `MAX`."]
    #[inline]
    const fn from_u32(value: u32) -> Self {
        if !(value <= 0xFFFF_FF00) {
            ::core::panicking::panic("assertion failed: value <= 0xFFFF_FF00")
        };
        unsafe { Self::from_u32_unchecked(value) }
    }
    #[doc = r" Creates a new index from a given `u16`."]
    #[doc = r""]
    #[doc = r" # Panics"]
    #[doc = r""]
    #[doc = r" Will panic if `value` exceeds `MAX`."]
    #[inline]
    const fn from_u16(value: u16) -> Self {
        let value = value as u32;
        if !(value <= 0xFFFF_FF00) {
            ::core::panicking::panic("assertion failed: value <= 0xFFFF_FF00")
        };
        unsafe { Self::from_u32_unchecked(value) }
    }
    #[doc = r" Creates a new index from a given `u32`."]
    #[doc = r""]
    #[doc = r" # Safety"]
    #[doc = r""]
    #[doc =
    r" The provided value must be less than or equal to the maximum value for the newtype."]
    #[doc =
    r" Providing a value outside this range is undefined due to layout restrictions."]
    #[doc = r""]
    #[doc = r" Prefer using `from_u32`."]
    #[inline]
    const unsafe fn from_u32_unchecked(value: u32) -> Self {
        Self {
            private_use_as_methods_instead: unsafe {
                std::mem::transmute(value)
            },
        }
    }
    #[doc = r" Extracts the value of this index as a `usize`."]
    #[inline]
    const fn index(self) -> usize { self.as_usize() }
    #[doc = r" Extracts the value of this index as a `u32`."]
    #[inline]
    const fn as_u32(self) -> u32 {
        unsafe { std::mem::transmute(self.private_use_as_methods_instead) }
    }
    #[doc = r" Extracts the value of this index as a `usize`."]
    #[inline]
    const fn as_usize(self) -> usize { self.as_u32() as usize }
}
impl std::ops::Add<usize> for DropIdx {
    type Output = Self;
    #[inline]
    fn add(self, other: usize) -> Self {
        Self::from_usize(self.index() + other)
    }
}
impl std::ops::AddAssign<usize> for DropIdx {
    #[inline]
    fn add_assign(&mut self, other: usize) { *self = *self + other; }
}
impl rustc_index::Idx for DropIdx {
    #[inline]
    fn new(value: usize) -> Self { Self::from_usize(value) }
    #[inline]
    fn index(self) -> usize { self.as_usize() }
}
impl ::std::iter::Step for DropIdx {
    #[inline]
    fn steps_between(start: &Self, end: &Self) -> (usize, Option<usize>) {
        <usize as
                ::std::iter::Step>::steps_between(&Self::index(*start),
            &Self::index(*end))
    }
    #[inline]
    fn forward_checked(start: Self, u: usize) -> Option<Self> {
        Self::index(start).checked_add(u).map(Self::from_usize)
    }
    #[inline]
    fn backward_checked(start: Self, u: usize) -> Option<Self> {
        Self::index(start).checked_sub(u).map(Self::from_usize)
    }
    #[inline]
    fn forward_overflowing(start: Self, u: usize) -> (Self, bool) {
        let (s, o) = Self::index(start).overflowing_add(u);
        (Self::from_usize(s), o)
    }
    #[inline]
    fn backward_overflowing(start: Self, u: usize) -> (Self, bool) {
        let (s, o) = Self::index(start).overflowing_sub(u);
        (Self::from_usize(s), o)
    }
}
impl ::std::cmp::Ord for DropIdx {
    #[inline]
    fn cmp(&self, other: &Self) -> std::cmp::Ordering {
        self.as_u32().cmp(&other.as_u32())
    }
}
impl ::std::cmp::PartialOrd for DropIdx {
    #[inline]
    fn partial_cmp(&self, other: &Self) -> Option<std::cmp::Ordering> {
        Some(self.cmp(other))
    }
}
impl From<DropIdx> for u32 {
    #[inline]
    fn from(v: DropIdx) -> u32 { v.as_u32() }
}
impl From<DropIdx> for usize {
    #[inline]
    fn from(v: DropIdx) -> usize { v.as_usize() }
}
impl From<usize> for DropIdx {
    #[inline]
    fn from(value: usize) -> Self { Self::from_usize(value) }
}
impl From<u32> for DropIdx {
    #[inline]
    fn from(value: u32) -> Self { Self::from_u32(value) }
}
impl ::std::cmp::Eq for DropIdx {}
impl ::std::cmp::PartialEq for DropIdx {
    fn eq(&self, other: &Self) -> bool { self.as_u32().eq(&other.as_u32()) }
}
impl ::std::marker::StructuralPartialEq for DropIdx {}
impl ::std::hash::Hash for DropIdx {
    fn hash<H: ::std::hash::Hasher>(&self, state: &mut H) {
        self.as_u32().hash(state)
    }
}
impl ::std::fmt::Debug for DropIdx {
    fn fmt(&self, fmt: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
        fmt.write_fmt(format_args!("{0}", self.as_u32()))
    }
}rustc_index::newtype_index! {
214    #[orderable]
215    struct DropIdx {}
216}
217
218const ROOT_NODE: DropIdx = DropIdx::ZERO;
219
220/// A tree of drops that we have deferred lowering. It's used for:
221///
222/// * Drops on unwind paths
223/// * Drops on coroutine drop paths (when a suspended coroutine is dropped)
224/// * Drops on return and loop exit paths
225/// * Drops on the else path in an `if let` chain
226///
227/// Once no more nodes could be added to the tree, we lower it to MIR in one go
228/// in `build_mir`.
229#[derive(#[automatically_derived]
impl ::core::fmt::Debug for DropTree {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field3_finish(f, "DropTree",
            "drop_nodes", &self.drop_nodes, "existing_drops_map",
            &self.existing_drops_map, "entry_points", &&self.entry_points)
    }
}Debug)]
230struct DropTree {
231    /// Nodes in the drop tree, containing drop data and a link to the next node.
232    drop_nodes: IndexVec<DropIdx, DropNode>,
233    /// Map for finding the index of an existing node, given its contents.
234    existing_drops_map: FxHashMap<DropNodeKey, DropIdx>,
235    /// Edges into the `DropTree` that need to be added once it's lowered.
236    entry_points: Vec<(DropIdx, BasicBlock)>,
237}
238
239/// A single node in the drop tree.
240#[derive(#[automatically_derived]
impl ::core::fmt::Debug for DropNode {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field2_finish(f, "DropNode",
            "data", &self.data, "next", &&self.next)
    }
}Debug)]
241struct DropNode {
242    /// Info about the drop to be performed at this node in the drop tree.
243    data: DropData,
244    /// Index of the "next" drop to perform (in drop order, not declaration order).
245    next: DropIdx,
246}
247
248/// Subset of [`DropNode`] used for reverse lookup in a hash table.
249#[derive(#[automatically_derived]
impl ::core::fmt::Debug for DropNodeKey {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field2_finish(f, "DropNodeKey",
            "next", &self.next, "local", &&self.local)
    }
}Debug, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for DropNodeKey { }
#[automatically_derived]
impl ::core::cmp::PartialEq for DropNodeKey {
    #[inline]
    fn eq(&self, other: &DropNodeKey) -> bool {
        self.next == other.next && self.local == other.local
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for DropNodeKey {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<DropIdx>;
        let _: ::core::cmp::AssertParamIsEq<Local>;
    }
}Eq, #[automatically_derived]
impl ::core::hash::Hash for DropNodeKey {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
        ::core::hash::Hash::hash(&self.next, state);
        ::core::hash::Hash::hash(&self.local, state)
    }
}Hash)]
250struct DropNodeKey {
251    next: DropIdx,
252    local: Local,
253}
254
255impl Scope {
256    /// Whether there's anything to do for the cleanup path, that is,
257    /// when unwinding through this scope. This includes destructors,
258    /// but not StorageDead statements, which don't get emitted at all
259    /// for unwinding, for several reasons:
260    ///  * clang doesn't emit llvm.lifetime.end for C++ unwinding
261    ///  * LLVM's memory dependency analysis can't handle it atm
262    ///  * polluting the cleanup MIR with StorageDead creates
263    ///    landing pads even though there's no actual destructors
264    ///  * freeing up stack space has no effect during unwinding
265    /// Note that for coroutines we do emit StorageDeads, for the
266    /// use of optimizations in the MIR coroutine transform.
267    fn needs_cleanup(&self) -> bool {
268        self.drops.iter().any(|drop| match drop.kind {
269            DropKind::Value | DropKind::ForLint => true,
270            DropKind::Storage => false,
271        })
272    }
273
274    fn invalidate_cache(&mut self) {
275        self.cached_unwind_block = None;
276        self.cached_coroutine_drop_block = None;
277    }
278}
279
280/// A trait that determined how [DropTree] creates its blocks and
281/// links to any entry nodes.
282trait DropTreeBuilder<'tcx> {
283    /// Create a new block for the tree. This should call either
284    /// `cfg.start_new_block()` or `cfg.start_new_cleanup_block()`.
285    fn make_block(cfg: &mut CFG<'tcx>) -> BasicBlock;
286
287    /// Links a block outside the drop tree, `from`, to the block `to` inside
288    /// the drop tree.
289    fn link_entry_point(cfg: &mut CFG<'tcx>, from: BasicBlock, to: BasicBlock);
290}
291
292impl DropTree {
293    fn new() -> Self {
294        // The root node of the tree doesn't represent a drop, but instead
295        // represents the block in the tree that should be jumped to once all
296        // of the required drops have been performed.
297        let fake_source_info = SourceInfo::outermost(DUMMY_SP);
298        let fake_data =
299            DropData { source_info: fake_source_info, local: Local::MAX, kind: DropKind::Storage };
300        let drop_nodes = IndexVec::from_raw(::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
        [DropNode { data: fake_data, next: DropIdx::MAX }]))vec![DropNode { data: fake_data, next: DropIdx::MAX }]);
301        Self { drop_nodes, entry_points: Vec::new(), existing_drops_map: FxHashMap::default() }
302    }
303
304    /// Adds a node to the drop tree, consisting of drop data and the index of
305    /// the "next" drop (in drop order), which could be the sentinel [`ROOT_NODE`].
306    ///
307    /// If there is already an equivalent node in the tree, nothing is added, and
308    /// that node's index is returned. Otherwise, the new node's index is returned.
309    fn add_drop(&mut self, data: DropData, next: DropIdx) -> DropIdx {
310        let drop_nodes = &mut self.drop_nodes;
311        *self
312            .existing_drops_map
313            .entry(DropNodeKey { next, local: data.local })
314            // Create a new node, and also add its index to the map.
315            .or_insert_with(|| drop_nodes.push(DropNode { data, next }))
316    }
317
318    /// Registers `from` as an entry point to this drop tree, at `to`.
319    ///
320    /// During [`Self::build_mir`], `from` will be linked to the corresponding
321    /// block within the drop tree.
322    fn add_entry_point(&mut self, from: BasicBlock, to: DropIdx) {
323        if true {
    if !(to < self.drop_nodes.next_index()) {
        ::core::panicking::panic("assertion failed: to < self.drop_nodes.next_index()")
    };
};debug_assert!(to < self.drop_nodes.next_index());
324        self.entry_points.push((to, from));
325    }
326
327    /// Builds the MIR for a given drop tree.
328    fn build_mir<'tcx, T: DropTreeBuilder<'tcx>>(
329        &mut self,
330        cfg: &mut CFG<'tcx>,
331        root_node: Option<BasicBlock>,
332    ) -> IndexVec<DropIdx, Option<BasicBlock>> {
333        {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_mir_build/src/builder/scope.rs:333",
                        "rustc_mir_build::builder::scope", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_mir_build/src/builder/scope.rs"),
                        ::tracing_core::__macro_support::Option::Some(333u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_mir_build::builder::scope"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::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!("DropTree::build_mir(drops = {0:#?})",
                                                    self) as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!("DropTree::build_mir(drops = {:#?})", self);
334
335        let mut blocks = self.assign_blocks::<T>(cfg, root_node);
336        self.link_blocks(cfg, &mut blocks);
337
338        blocks
339    }
340
341    /// Assign blocks for all of the drops in the drop tree that need them.
342    fn assign_blocks<'tcx, T: DropTreeBuilder<'tcx>>(
343        &mut self,
344        cfg: &mut CFG<'tcx>,
345        root_node: Option<BasicBlock>,
346    ) -> IndexVec<DropIdx, Option<BasicBlock>> {
347        // StorageDead statements can share blocks with each other and also with
348        // a Drop terminator. We iterate through the drops to find which drops
349        // need their own block.
350        #[derive(#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for Block { }
#[automatically_derived]
impl ::core::clone::Clone for Block {
    #[inline]
    fn clone(&self) -> Block {
        let _: ::core::clone::AssertParamIsClone<DropIdx>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::marker::Copy for Block { }Copy)]
351        enum Block {
352            // This drop is unreachable
353            None,
354            // This drop is only reachable through the `StorageDead` with the
355            // specified index.
356            Shares(DropIdx),
357            // This drop has more than one way of being reached, or it is
358            // branched to from outside the tree, or its predecessor is a
359            // `Value` drop.
360            Own,
361        }
362
363        let mut blocks = IndexVec::from_elem(None, &self.drop_nodes);
364        blocks[ROOT_NODE] = root_node;
365
366        let mut needs_block = IndexVec::from_elem(Block::None, &self.drop_nodes);
367        if root_node.is_some() {
368            // In some cases (such as drops for `continue`) the root node
369            // already has a block. In this case, make sure that we don't
370            // override it.
371            needs_block[ROOT_NODE] = Block::Own;
372        }
373
374        // Sort so that we only need to check the last value.
375        let entry_points = &mut self.entry_points;
376        entry_points.sort();
377
378        for (drop_idx, drop_node) in self.drop_nodes.iter_enumerated().rev() {
379            if entry_points.last().is_some_and(|entry_point| entry_point.0 == drop_idx) {
380                let block = *blocks[drop_idx].get_or_insert_with(|| T::make_block(cfg));
381                needs_block[drop_idx] = Block::Own;
382                while entry_points.last().is_some_and(|entry_point| entry_point.0 == drop_idx) {
383                    let entry_block = entry_points.pop().unwrap().1;
384                    T::link_entry_point(cfg, entry_block, block);
385                }
386            }
387            match needs_block[drop_idx] {
388                Block::None => continue,
389                Block::Own => {
390                    blocks[drop_idx].get_or_insert_with(|| T::make_block(cfg));
391                }
392                Block::Shares(pred) => {
393                    blocks[drop_idx] = blocks[pred];
394                }
395            }
396            if let DropKind::Value = drop_node.data.kind {
397                needs_block[drop_node.next] = Block::Own;
398            } else if drop_idx != ROOT_NODE {
399                match &mut needs_block[drop_node.next] {
400                    pred @ Block::None => *pred = Block::Shares(drop_idx),
401                    pred @ Block::Shares(_) => *pred = Block::Own,
402                    Block::Own => (),
403                }
404            }
405        }
406
407        {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_mir_build/src/builder/scope.rs:407",
                        "rustc_mir_build::builder::scope", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_mir_build/src/builder/scope.rs"),
                        ::tracing_core::__macro_support::Option::Some(407u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_mir_build::builder::scope"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::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!("assign_blocks: blocks = {0:#?}",
                                                    blocks) as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!("assign_blocks: blocks = {:#?}", blocks);
408        if !entry_points.is_empty() {
    ::core::panicking::panic("assertion failed: entry_points.is_empty()")
};assert!(entry_points.is_empty());
409
410        blocks
411    }
412
413    fn link_blocks<'tcx>(
414        &self,
415        cfg: &mut CFG<'tcx>,
416        blocks: &IndexSlice<DropIdx, Option<BasicBlock>>,
417    ) {
418        for (drop_idx, drop_node) in self.drop_nodes.iter_enumerated().rev() {
419            let Some(block) = blocks[drop_idx] else { continue };
420            match drop_node.data.kind {
421                DropKind::Value => {
422                    let terminator = TerminatorKind::Drop {
423                        target: blocks[drop_node.next].unwrap(),
424                        // The caller will handle this if needed.
425                        unwind: UnwindAction::Terminate(UnwindTerminateReason::InCleanup),
426                        place: drop_node.data.local.into(),
427                        replace: false,
428                        drop: None,
429                    };
430                    cfg.terminate(block, drop_node.data.source_info, terminator);
431                }
432                DropKind::ForLint => {
433                    let stmt = Statement::new(
434                        drop_node.data.source_info,
435                        StatementKind::BackwardIncompatibleDropHint {
436                            place: Box::new(drop_node.data.local.into()),
437                            reason: BackwardIncompatibleDropReason::Edition2024,
438                        },
439                    );
440                    cfg.push(block, stmt);
441                    let target = blocks[drop_node.next].unwrap();
442                    if target != block {
443                        // Diagnostics don't use this `Span` but debuginfo
444                        // might. Since we don't want breakpoints to be placed
445                        // here, especially when this is on an unwind path, we
446                        // use `DUMMY_SP`.
447                        let source_info =
448                            SourceInfo { span: DUMMY_SP, ..drop_node.data.source_info };
449                        let terminator = TerminatorKind::Goto { target };
450                        cfg.terminate(block, source_info, terminator);
451                    }
452                }
453                // Root nodes don't correspond to a drop.
454                DropKind::Storage if drop_idx == ROOT_NODE => {}
455                DropKind::Storage => {
456                    let stmt = Statement::new(
457                        drop_node.data.source_info,
458                        StatementKind::StorageDead(drop_node.data.local),
459                    );
460                    cfg.push(block, stmt);
461                    let target = blocks[drop_node.next].unwrap();
462                    if target != block {
463                        // Diagnostics don't use this `Span` but debuginfo
464                        // might. Since we don't want breakpoints to be placed
465                        // here, especially when this is on an unwind path, we
466                        // use `DUMMY_SP`.
467                        let source_info =
468                            SourceInfo { span: DUMMY_SP, ..drop_node.data.source_info };
469                        let terminator = TerminatorKind::Goto { target };
470                        cfg.terminate(block, source_info, terminator);
471                    }
472                }
473            }
474        }
475    }
476}
477
478impl<'tcx> Scopes<'tcx> {
479    pub(crate) fn new() -> Self {
480        Self {
481            scopes: Vec::new(),
482            breakable_scopes: Vec::new(),
483            const_continuable_scopes: Vec::new(),
484            if_then_scope: None,
485            unwind_drops: DropTree::new(),
486            coroutine_drops: DropTree::new(),
487        }
488    }
489
490    fn push_scope(&mut self, region_scope: region::Scope, vis_scope: SourceScope) {
491        {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_mir_build/src/builder/scope.rs:491",
                        "rustc_mir_build::builder::scope", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_mir_build/src/builder/scope.rs"),
                        ::tracing_core::__macro_support::Option::Some(491u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_mir_build::builder::scope"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::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!("push_scope({0:?})",
                                                    region_scope) as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!("push_scope({:?})", region_scope);
492        self.scopes.push(Scope {
493            source_scope: vis_scope,
494            region_scope,
495            drops: ::alloc::vec::Vec::new()vec![],
496            moved_locals: ::alloc::vec::Vec::new()vec![],
497            cached_unwind_block: None,
498            cached_coroutine_drop_block: None,
499        });
500    }
501
502    fn pop_scope(&mut self, region_scope: region::Scope) {
503        let scope = self.scopes.pop().unwrap();
504        {
    match (&scope.region_scope, &region_scope) {
        (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!(scope.region_scope, region_scope);
505    }
506
507    /// Returns the position in the scope stack of `region_scope`.
508    fn stack_index(&self, region_scope: region::Scope, span: Span) -> usize {
509        self.scopes
510            .iter()
511            .rposition(|scope| scope.region_scope == region_scope)
512            .unwrap_or_else(|| bug_impl(Some(span),
    format_args!("region_scope {0:?} does not enclose", region_scope),
    Location::caller())span_bug!(span, "region_scope {:?} does not enclose", region_scope))
513    }
514
515    /// Returns the topmost active scope, which is known to be alive until
516    /// the next scope expression.
517    fn topmost(&self) -> region::Scope {
518        self.scopes.last().expect("topmost_scope: no scopes present").region_scope
519    }
520}
521
522/// Used by [`Builder::in_scope`] to create source scopes mapping from MIR back to HIR at points
523/// where lint levels change.
524#[derive(#[automatically_derived]
impl ::core::marker::Copy for LintLevel { }Copy, #[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for LintLevel { }
#[automatically_derived]
impl ::core::clone::Clone for LintLevel {
    #[inline]
    fn clone(&self) -> LintLevel {
        let _: ::core::clone::AssertParamIsClone<HirId>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for LintLevel {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            LintLevel::Inherited =>
                ::core::fmt::Formatter::write_str(f, "Inherited"),
            LintLevel::Explicit(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "Explicit", &__self_0),
        }
    }
}Debug)]
525pub(crate) enum LintLevel {
526    Inherited,
527    Explicit(HirId),
528}
529
530impl<'a, 'tcx> Builder<'a, 'tcx> {
531    // Adding and removing scopes
532    // ==========================
533
534    ///  Start a breakable scope, which tracks where `continue`, `break` and
535    ///  `return` should branch to.
536    pub(crate) fn in_breakable_scope<F>(
537        &mut self,
538        loop_block: Option<BasicBlock>,
539        break_destination: Place<'tcx>,
540        span: Span,
541        f: F,
542    ) -> BlockAnd<()>
543    where
544        F: FnOnce(&mut Builder<'a, 'tcx>) -> Option<BlockAnd<()>>,
545    {
546        let region_scope = self.scopes.topmost();
547        let scope = BreakableScope {
548            region_scope,
549            break_destination,
550            break_drops: DropTree::new(),
551            continue_drops: loop_block.map(|_| DropTree::new()),
552        };
553        self.scopes.breakable_scopes.push(scope);
554        let normal_exit_block = f(self);
555        let breakable_scope = self.scopes.breakable_scopes.pop().unwrap();
556        if !(breakable_scope.region_scope == region_scope) {
    ::core::panicking::panic("assertion failed: breakable_scope.region_scope == region_scope")
};assert!(breakable_scope.region_scope == region_scope);
557        let break_block =
558            self.build_exit_tree(breakable_scope.break_drops, region_scope, span, None);
559        if let Some(drops) = breakable_scope.continue_drops {
560            self.build_exit_tree(drops, region_scope, span, loop_block);
561        }
562        match (normal_exit_block, break_block) {
563            (Some(block), None) | (None, Some(block)) => block,
564            (None, None) => self.cfg.start_new_block().unit(),
565            (Some(normal_block), Some(exit_block)) => {
566                let target = self.cfg.start_new_block();
567                let source_info = self.source_info(span);
568                self.cfg.terminate(
569                    normal_block.into_block(),
570                    source_info,
571                    TerminatorKind::Goto { target },
572                );
573                self.cfg.terminate(
574                    exit_block.into_block(),
575                    source_info,
576                    TerminatorKind::Goto { target },
577                );
578                target.unit()
579            }
580        }
581    }
582
583    /// Start a const-continuable scope, which tracks where `#[const_continue] break` should
584    /// branch to.
585    pub(crate) fn in_const_continuable_scope<F>(
586        &mut self,
587        arms: Box<[ArmId]>,
588        built_match_tree: BuiltMatchTree<'tcx>,
589        state_place: Place<'tcx>,
590        span: Span,
591        f: F,
592    ) -> BlockAnd<()>
593    where
594        F: FnOnce(&mut Builder<'a, 'tcx>) -> BlockAnd<()>,
595    {
596        let region_scope = self.scopes.topmost();
597        let scope = ConstContinuableScope {
598            region_scope,
599            state_place,
600            const_continue_drops: DropTree::new(),
601            arms,
602            built_match_tree,
603        };
604        self.scopes.const_continuable_scopes.push(scope);
605        let normal_exit_block = f(self);
606        let const_continue_scope = self.scopes.const_continuable_scopes.pop().unwrap();
607        if !(const_continue_scope.region_scope == region_scope) {
    ::core::panicking::panic("assertion failed: const_continue_scope.region_scope == region_scope")
};assert!(const_continue_scope.region_scope == region_scope);
608
609        let break_block = self.build_exit_tree(
610            const_continue_scope.const_continue_drops,
611            region_scope,
612            span,
613            None,
614        );
615
616        match (normal_exit_block, break_block) {
617            (block, None) => block,
618            (normal_block, Some(exit_block)) => {
619                let target = self.cfg.start_new_block();
620                let source_info = self.source_info(span);
621                self.cfg.terminate(
622                    normal_block.into_block(),
623                    source_info,
624                    TerminatorKind::Goto { target },
625                );
626                self.cfg.terminate(
627                    exit_block.into_block(),
628                    source_info,
629                    TerminatorKind::Goto { target },
630                );
631                target.unit()
632            }
633        }
634    }
635
636    /// Start an if-then scope which tracks drop for `if` expressions and `if`
637    /// guards.
638    ///
639    /// For an if-let chain:
640    /// ```rust,ignore(illustrative)
641    ///     if let Some(x) = a && let Some(y) = b && let Some(z) = c { ... }
642    /// ```
643    /// There are three possible ways the condition can be false and we may have
644    /// to drop `x`, `x` and `y`, or neither depending on which binding fails.
645    /// To handle this correctly we use a `DropTree` in a similar way to a
646    /// `loop` expression and 'break' out on all of the 'else' paths.
647    ///
648    /// Notes:
649    /// - We don't need to keep a stack of scopes in the `Builder` because the
650    ///   'else' paths will only leave the innermost scope.
651    /// - This is also used for match guards.
652    ///
653    /// Returns blocks for the two condition outcomes, `(true_block, false_block)`.
654    pub(crate) fn in_if_then_scope(
655        &mut self,
656        region_scope: region::Scope,
657        span: Span,
658        // Closure that will lower the condition(s), register breaks, and return `true_block`.
659        f: impl FnOnce(&mut Builder<'a, 'tcx>) -> BlockAnd<()>,
660    ) -> (BasicBlock, BasicBlock) {
661        let scope = IfThenScope { region_scope, else_drops: DropTree::new() };
662        let previous_scope = mem::replace(&mut self.scopes.if_then_scope, Some(scope));
663
664        let true_block = f(self).into_block();
665
666        let if_then_scope = mem::replace(&mut self.scopes.if_then_scope, previous_scope).unwrap();
667        if !(if_then_scope.region_scope == region_scope) {
    ::core::panicking::panic("assertion failed: if_then_scope.region_scope == region_scope")
};assert!(if_then_scope.region_scope == region_scope);
668
669        // Lower any break paths (where the condition was false)
670        // into a drop tree that ends in `false_block`.
671        let false_block = self
672            .build_exit_tree(if_then_scope.else_drops, region_scope, span, None)
673            .map(|false_block: BlockAnd<()>| false_block.into_block())
674            .unwrap_or_else(|| self.cfg.start_new_block());
675
676        (true_block, false_block)
677    }
678
679    /// Convenience wrapper that pushes a scope and then executes `f`
680    /// to build its contents, popping the scope afterwards.
681    {}
#[allow(clippy :: suspicious_else_formatting)]
{
    let __tracing_attr_span;
    let __tracing_attr_guard;
    if ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::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("in_scope",
                                    "rustc_mir_build::builder::scope", ::tracing::Level::DEBUG,
                                    ::tracing_core::__macro_support::Option::Some("/rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_mir_build/src/builder/scope.rs"),
                                    ::tracing_core::__macro_support::Option::Some(681u32),
                                    ::tracing_core::__macro_support::Option::Some("rustc_mir_build::builder::scope"),
                                    ::tracing_core::field::FieldSet::new(&[{
                                                        const NAME:
                                                            ::tracing::__macro_support::FieldName<{
                                                                ::tracing::__macro_support::FieldName::len("region_scope")
                                                            }> =
                                                            ::tracing::__macro_support::FieldName::new("region_scope");
                                                        NAME.as_str()
                                                    },
                                                    {
                                                        const NAME:
                                                            ::tracing::__macro_support::FieldName<{
                                                                ::tracing::__macro_support::FieldName::len("source_info")
                                                            }> =
                                                            ::tracing::__macro_support::FieldName::new("source_info");
                                                        NAME.as_str()
                                                    },
                                                    {
                                                        const NAME:
                                                            ::tracing::__macro_support::FieldName<{
                                                                ::tracing::__macro_support::FieldName::len("lint_level")
                                                            }> =
                                                            ::tracing::__macro_support::FieldName::new("lint_level");
                                                        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::DEBUG <=
                                    ::tracing::level_filters::STATIC_MAX_LEVEL &&
                                ::tracing::Level::DEBUG <=
                                    ::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(&region_scope)
                                                            as &dyn ::tracing::field::Value)),
                                                (::tracing::__macro_support::Option::Some(&::tracing::field::debug(&source_info)
                                                            as &dyn ::tracing::field::Value)),
                                                (::tracing::__macro_support::Option::Some(&::tracing::field::debug(&lint_level)
                                                            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: BlockAnd<R> = loop {};
            return __tracing_attr_fake_return;
        }
        {
            let source_scope = self.source_scope;
            if let LintLevel::Explicit(current_hir_id) = lint_level {
                let parent_id =
                    self.source_scopes[source_scope].local_data.as_ref().unwrap_crate_local().lint_root;
                self.maybe_new_source_scope(source_info.span, current_hir_id,
                    parent_id);
            }
            self.push_scope(region_scope);
            let mut block;
            let rv = { let BlockAnd(b, v) = f(self); block = b; v };
            block = self.pop_scope(region_scope, block).into_block();
            self.source_scope = source_scope;
            {
                use ::tracing::__macro_support::Callsite as _;
                static __CALLSITE: ::tracing::callsite::DefaultCallsite =
                    {
                        static META: ::tracing::Metadata<'static> =
                            {
                                ::tracing_core::metadata::Metadata::new("event /rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_mir_build/src/builder/scope.rs:702",
                                    "rustc_mir_build::builder::scope", ::tracing::Level::DEBUG,
                                    ::tracing_core::__macro_support::Option::Some("/rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_mir_build/src/builder/scope.rs"),
                                    ::tracing_core::__macro_support::Option::Some(702u32),
                                    ::tracing_core::__macro_support::Option::Some("rustc_mir_build::builder::scope"),
                                    ::tracing_core::field::FieldSet::new(&[{
                                                        const NAME:
                                                            ::tracing::__macro_support::FieldName<{
                                                                ::tracing::__macro_support::FieldName::len("block")
                                                            }> =
                                                            ::tracing::__macro_support::FieldName::new("block");
                                                        NAME.as_str()
                                                    }], ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                    ::tracing::metadata::Kind::EVENT)
                            };
                        ::tracing::callsite::DefaultCallsite::new(&META)
                    };
                let enabled =
                    ::tracing::Level::DEBUG <=
                                ::tracing::level_filters::STATIC_MAX_LEVEL &&
                            ::tracing::Level::DEBUG <=
                                ::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(&::tracing::field::debug(&block)
                                                        as &dyn ::tracing::field::Value))])
                        });
                } else { ; }
            };
            block.and(rv)
        }
    }
}#[instrument(skip(self, f), level = "debug")]
682    pub(crate) fn in_scope<F, R>(
683        &mut self,
684        (region_scope, source_info): (region::Scope, SourceInfo),
685        lint_level: LintLevel,
686        f: F,
687    ) -> BlockAnd<R>
688    where
689        F: FnOnce(&mut Builder<'a, 'tcx>) -> BlockAnd<R>,
690    {
691        let source_scope = self.source_scope;
692        if let LintLevel::Explicit(current_hir_id) = lint_level {
693            let parent_id =
694                self.source_scopes[source_scope].local_data.as_ref().unwrap_crate_local().lint_root;
695            self.maybe_new_source_scope(source_info.span, current_hir_id, parent_id);
696        }
697        self.push_scope(region_scope);
698        let mut block;
699        let rv = unpack!(block = f(self));
700        block = self.pop_scope(region_scope, block).into_block();
701        self.source_scope = source_scope;
702        debug!(?block);
703        block.and(rv)
704    }
705
706    /// Convenience wrapper that executes `f` either within the current scope or a new scope.
707    /// Used for pattern matching, which introduces an additional scope for patterns with guards.
708    pub(crate) fn opt_in_scope<R>(
709        &mut self,
710        opt_region_scope: Option<(region::Scope, SourceInfo)>,
711        f: impl FnOnce(&mut Builder<'a, 'tcx>) -> BlockAnd<R>,
712    ) -> BlockAnd<R> {
713        if let Some(region_scope) = opt_region_scope {
714            self.in_scope(region_scope, LintLevel::Inherited, f)
715        } else {
716            f(self)
717        }
718    }
719
720    /// Push a scope onto the stack. You can then build code in this
721    /// scope and call `pop_scope` afterwards. Note that these two
722    /// calls must be paired; using `in_scope` as a convenience
723    /// wrapper maybe preferable.
724    pub(crate) fn push_scope(&mut self, region_scope: region::Scope) {
725        self.scopes.push_scope(region_scope, self.source_scope);
726    }
727
728    /// Pops a scope, which should have region scope `region_scope`,
729    /// adding any drops onto the end of `block` that are needed.
730    /// This must match 1-to-1 with `push_scope`.
731    pub(crate) fn pop_scope(
732        &mut self,
733        region_scope: region::Scope,
734        mut block: BasicBlock,
735    ) -> BlockAnd<()> {
736        {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_mir_build/src/builder/scope.rs:736",
                        "rustc_mir_build::builder::scope", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_mir_build/src/builder/scope.rs"),
                        ::tracing_core::__macro_support::Option::Some(736u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_mir_build::builder::scope"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::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!("pop_scope({0:?}, {1:?})",
                                                    region_scope, block) as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!("pop_scope({:?}, {:?})", region_scope, block);
737
738        block = self.leave_top_scope(block);
739        self.scopes.pop_scope(region_scope);
740
741        block.unit()
742    }
743
744    /// Sets up the drops for breaking from `block` to `target`.
745    pub(crate) fn break_scope(
746        &mut self,
747        mut block: BasicBlock,
748        value: Option<ExprId>,
749        target: BreakableTarget,
750        source_info: SourceInfo,
751    ) -> BlockAnd<()> {
752        let span = source_info.span;
753
754        let get_scope_index = |scope: region::Scope| {
755            // find the loop-scope by its `region::Scope`.
756            self.scopes
757                .breakable_scopes
758                .iter()
759                .rposition(|breakable_scope| breakable_scope.region_scope == scope)
760                .unwrap_or_else(|| bug_impl(Some(span), format_args!("no enclosing breakable scope found"),
    Location::caller())span_bug!(span, "no enclosing breakable scope found"))
761        };
762        let (break_index, destination) = match target {
763            BreakableTarget::Return => {
764                let scope = &self.scopes.breakable_scopes[0];
765                if scope.break_destination != Place::return_place() {
766                    bug_impl(Some(span), format_args!("`return` in item with no return scope"),
    Location::caller());span_bug!(span, "`return` in item with no return scope");
767                }
768                (0, Some(scope.break_destination))
769            }
770            BreakableTarget::Break(scope) => {
771                let break_index = get_scope_index(scope);
772                let scope = &self.scopes.breakable_scopes[break_index];
773                (break_index, Some(scope.break_destination))
774            }
775            BreakableTarget::Continue(scope) => {
776                let break_index = get_scope_index(scope);
777                (break_index, None)
778            }
779        };
780
781        match (destination, value) {
782            (Some(destination), Some(value)) => {
783                {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_mir_build/src/builder/scope.rs:783",
                        "rustc_mir_build::builder::scope", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_mir_build/src/builder/scope.rs"),
                        ::tracing_core::__macro_support::Option::Some(783u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_mir_build::builder::scope"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::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!("stmt_expr Break val block_context.push(SubExpr)")
                                            as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!("stmt_expr Break val block_context.push(SubExpr)");
784                self.block_context.push(BlockFrame::SubExpr);
785                block = self.expr_into_dest(destination, block, value).into_block();
786                self.block_context.pop();
787            }
788            (Some(destination), None) => {
789                self.cfg.push_assign_unit(block, source_info, destination, self.tcx)
790            }
791            (None, Some(_)) => {
792                {
    ::core::panicking::panic_fmt(format_args!("`return`, `become` and `break` with value and must have a destination"));
}panic!("`return`, `become` and `break` with value and must have a destination")
793            }
794            (None, None) => {}
795        }
796
797        let region_scope = self.scopes.breakable_scopes[break_index].region_scope;
798        let stack_index = self.scopes.stack_index(region_scope, span);
799        let drops = if destination.is_some() {
800            &mut self.scopes.breakable_scopes[break_index].break_drops
801        } else {
802            let Some(drops) = self.scopes.breakable_scopes[break_index].continue_drops.as_mut()
803            else {
804                self.tcx.dcx().span_delayed_bug(
805                    source_info.span,
806                    "unlabelled `continue` within labelled block",
807                );
808                self.cfg.terminate(block, source_info, TerminatorKind::Unreachable);
809
810                return self.cfg.start_new_block().unit();
811            };
812            drops
813        };
814
815        let mut drop_idx = ROOT_NODE;
816        for scope in &self.scopes.scopes[stack_index + 1..] {
817            for drop in &scope.drops {
818                drop_idx = drops.add_drop(*drop, drop_idx);
819            }
820        }
821        drops.add_entry_point(block, drop_idx);
822
823        // `build_drop_trees` doesn't have access to our source_info, so we
824        // create a dummy terminator now. `TerminatorKind::UnwindResume` is used
825        // because MIR type checking will panic if it hasn't been overwritten.
826        // (See `<ExitScopes as DropTreeBuilder>::link_entry_point`.)
827        self.cfg.terminate(block, source_info, TerminatorKind::UnwindResume);
828
829        self.cfg.start_new_block().unit()
830    }
831
832    /// Based on `FunctionCx::eval_unevaluated_mir_constant_to_valtree`.
833    fn eval_unevaluated_mir_constant_to_valtree(
834        &self,
835        constant: ConstOperand<'tcx>,
836    ) -> Result<(ty::ValTree<'tcx>, Ty<'tcx>), interpret::ErrorHandled> {
837        if !!constant.const_.ty().has_param() {
    ::core::panicking::panic("assertion failed: !constant.const_.ty().has_param()")
};assert!(!constant.const_.ty().has_param());
838        let (uv, ty) = match constant.const_ {
839            mir::Const::Unevaluated(uv, ty) => (uv.shrink(self.tcx), ty),
840            mir::Const::Ty(_, c) => match c.kind() {
841                // A constant that came from a const generic but was then used as an argument to
842                // old-style simd_shuffle (passing as argument instead of as a generic param).
843                ty::ConstKind::Value(cv) => return Ok((cv.valtree, cv.ty)),
844                other => bug_impl(Some(constant.span), format_args!("{0:#?}", other),
    Location::caller())span_bug!(constant.span, "{other:#?}"),
845            },
846            mir::Const::Val(mir::ConstValue::Scalar(mir::interpret::Scalar::Int(val)), ty) => {
847                return Ok((ValTree::from_scalar_int(self.tcx, val), ty));
848            }
849            // We should never encounter `Const::Val` unless MIR opts (like const prop) evaluate
850            // a constant and write that value back into `Operand`s. This could happen, but is
851            // unlikely. Also: all users of `simd_shuffle` are on unstable and already need to take
852            // a lot of care around intrinsics. For an issue to happen here, it would require a
853            // macro expanding to a `simd_shuffle` call without wrapping the constant argument in a
854            // `const {}` block, but the user pass through arbitrary expressions.
855
856            // FIXME(oli-obk): Replace the magic const generic argument of `simd_shuffle` with a
857            // real const generic, and get rid of this entire function.
858            other => bug_impl(Some(constant.span), format_args!("{0:#?}", other),
    Location::caller())span_bug!(constant.span, "{other:#?}"),
859        };
860
861        match self.tcx.const_eval_resolve_for_typeck(self.typing_env(), uv, constant.span) {
862            Ok(Ok(valtree)) => Ok((valtree, ty)),
863            Ok(Err(ty)) => bug_impl(Some(constant.span),
    format_args!("could not convert {0:?} to a valtree", ty),
    Location::caller())span_bug!(constant.span, "could not convert {ty:?} to a valtree"),
864            Err(e) => Err(e),
865        }
866    }
867
868    /// Sets up the drops for jumping from `block` to `scope`.
869    pub(crate) fn break_const_continuable_scope(
870        &mut self,
871        mut block: BasicBlock,
872        value: ExprId,
873        scope: region::Scope,
874        source_info: SourceInfo,
875    ) -> BlockAnd<()> {
876        let span = source_info.span;
877
878        // A break can only break out of a scope, so the value should be a scope.
879        let rustc_middle::thir::ExprKind::Scope { value, .. } = self.thir[value].kind else {
880            bug_impl(Some(span), format_args!("break value must be a scope"),
    Location::caller())span_bug!(span, "break value must be a scope")
881        };
882
883        let expr = &self.thir[value];
884        let constant = match &expr.kind {
885            ExprKind::Adt(AdtExpr { variant_index, fields, base, .. }) => {
886                if !#[allow(non_exhaustive_omitted_patterns)] match base {
            AdtExprBase::None => true,
            _ => false,
        } {
    ::core::panicking::panic("assertion failed: matches!(base, AdtExprBase::None)")
};assert!(matches!(base, AdtExprBase::None));
887                if !fields.is_empty() {
    ::core::panicking::panic("assertion failed: fields.is_empty()")
};assert!(fields.is_empty());
888                ConstOperand {
889                    span: self.thir[value].span,
890                    user_ty: None,
891                    const_: Const::Ty(
892                        self.thir[value].ty,
893                        ty::Const::new_value(
894                            self.tcx,
895                            ValTree::from_branches(
896                                self.tcx,
897                                [ty::Const::new_value(
898                                    self.tcx,
899                                    ValTree::from_scalar_int(
900                                        self.tcx,
901                                        variant_index.as_u32().into(),
902                                    ),
903                                    self.tcx.types.u32,
904                                )],
905                            ),
906                            self.thir[value].ty,
907                        ),
908                    ),
909                }
910            }
911
912            ExprKind::Literal { .. }
913            | ExprKind::NonHirLiteral { .. }
914            | ExprKind::ZstLiteral { .. }
915            | ExprKind::NamedConst { .. } => self.as_constant(&self.thir[value]),
916
917            other => {
918                use crate::diagnostics::ConstContinueNotMonomorphicConstReason as Reason;
919
920                let span = expr.span;
921                let reason = match other {
922                    ExprKind::ConstParam { .. } => Reason::ConstantParameter { span },
923                    ExprKind::ConstBlock { .. } => Reason::ConstBlock { span },
924                    _ => Reason::Other { span },
925                };
926
927                self.tcx
928                    .dcx()
929                    .emit_err(ConstContinueNotMonomorphicConst { span: expr.span, reason });
930                return block.unit();
931            }
932        };
933
934        let break_index = self
935            .scopes
936            .const_continuable_scopes
937            .iter()
938            .rposition(|const_continuable_scope| const_continuable_scope.region_scope == scope)
939            .unwrap_or_else(|| bug_impl(Some(span),
    format_args!("no enclosing const-continuable scope found"),
    Location::caller())span_bug!(span, "no enclosing const-continuable scope found"));
940
941        let scope = &self.scopes.const_continuable_scopes[break_index];
942
943        let state_decl = &self.local_decls[scope.state_place.as_local().unwrap()];
944        let state_ty = state_decl.ty;
945        let (discriminant_ty, rvalue) = match state_ty.kind() {
946            ty::Adt(adt_def, _) if adt_def.is_enum() => {
947                (state_ty.discriminant_ty(self.tcx), Rvalue::Discriminant(scope.state_place))
948            }
949            ty::Uint(_) | ty::Int(_) | ty::Float(_) | ty::Bool | ty::Char => {
950                (state_ty, Rvalue::Use(Operand::Copy(scope.state_place), WithRetag::Yes))
951            }
952            _ => bug_impl(Some(state_decl.source_info.span),
    format_args!("unsupported #[loop_match] state"), Location::caller())span_bug!(state_decl.source_info.span, "unsupported #[loop_match] state"),
953        };
954
955        // The `PatCtxt` is normally used in pattern exhaustiveness checking, but reused
956        // here because it performs normalization and const evaluation.
957        let dropless_arena = rustc_arena::DroplessArena::default();
958        let typeck_results = self.tcx.typeck(self.def_id);
959        let cx = RustcPatCtxt {
960            tcx: self.tcx,
961            typeck_results,
962            module: self.tcx.parent_module(self.hir_id),
963            typing_env: ty::TypingEnv::post_typeck_until_borrowck_for_mir_build(
964                self.tcx,
965                self.def_id,
966            ),
967            dropless_arena: &dropless_arena,
968            match_lint_level: self.hir_id,
969            whole_match_span: Some(rustc_span::Span::default()),
970            scrut_span: rustc_span::Span::default(),
971            refutable: true,
972            known_valid_scrutinee: true,
973            internal_state: Default::default(),
974        };
975
976        let valtree = match self.eval_unevaluated_mir_constant_to_valtree(constant) {
977            Ok((valtree, ty)) => {
978                // Defensively check that the type is monomorphic.
979                if !!ty.has_param() {
    ::core::panicking::panic("assertion failed: !ty.has_param()")
};assert!(!ty.has_param());
980
981                valtree
982            }
983            Err(ErrorHandled::Reported(..)) => {
984                return block.unit();
985            }
986            Err(ErrorHandled::TooGeneric(_)) => {
987                self.tcx.dcx().emit_fatal(ConstContinueBadConst { span: constant.span });
988            }
989        };
990
991        let Some(real_target) =
992            self.static_pattern_match(&cx, valtree, &*scope.arms, &scope.built_match_tree)
993        else {
994            self.tcx.dcx().emit_fatal(ConstContinueUnknownJumpTarget { span })
995        };
996
997        self.block_context.push(BlockFrame::SubExpr);
998        let state_place = scope.state_place;
999        block = self.expr_into_dest(state_place, block, value).into_block();
1000        self.block_context.pop();
1001
1002        let discr = self.temp(discriminant_ty, source_info.span);
1003        let stack_index = self
1004            .scopes
1005            .stack_index(self.scopes.const_continuable_scopes[break_index].region_scope, span);
1006        let scope = &mut self.scopes.const_continuable_scopes[break_index];
1007        self.cfg.push_assign(block, source_info, discr, rvalue);
1008        let drop_and_continue_block = self.cfg.start_new_block();
1009        let imaginary_target = self.cfg.start_new_block();
1010        self.cfg.terminate(
1011            block,
1012            source_info,
1013            TerminatorKind::FalseEdge { real_target: drop_and_continue_block, imaginary_target },
1014        );
1015
1016        let drops = &mut scope.const_continue_drops;
1017
1018        let drop_idx = self.scopes.scopes[stack_index + 1..]
1019            .iter()
1020            .flat_map(|scope| &scope.drops)
1021            .fold(ROOT_NODE, |drop_idx, &drop| drops.add_drop(drop, drop_idx));
1022
1023        drops.add_entry_point(imaginary_target, drop_idx);
1024
1025        self.cfg.terminate(imaginary_target, source_info, TerminatorKind::UnwindResume);
1026
1027        let region_scope = scope.region_scope;
1028        let stack_index = self.scopes.stack_index(region_scope, span);
1029        let mut drops = DropTree::new();
1030
1031        let drop_idx = self.scopes.scopes[stack_index + 1..]
1032            .iter()
1033            .flat_map(|scope| &scope.drops)
1034            .fold(ROOT_NODE, |drop_idx, &drop| drops.add_drop(drop, drop_idx));
1035
1036        drops.add_entry_point(drop_and_continue_block, drop_idx);
1037
1038        // `build_drop_trees` doesn't have access to our source_info, so we
1039        // create a dummy terminator now. `TerminatorKind::UnwindResume` is used
1040        // because MIR type checking will panic if it hasn't been overwritten.
1041        // (See `<ExitScopes as DropTreeBuilder>::link_entry_point`.)
1042        self.cfg.terminate(drop_and_continue_block, source_info, TerminatorKind::UnwindResume);
1043
1044        self.build_exit_tree(drops, region_scope, span, Some(real_target));
1045
1046        return self.cfg.start_new_block().unit();
1047    }
1048
1049    /// Breaks out of the enclosing [`Builder::in_if_then_scope`] due to a
1050    /// condition being false.
1051    ///
1052    /// This adds relevant drops in the drop tree, and adds a dummy terminator
1053    /// that will become a real `goto` when the scope's drop tree is built.
1054    ///
1055    /// Must be called in the context of [`Builder::in_if_then_scope`], so that
1056    /// there is an if-then scope to tell us what the target scope is.
1057    pub(crate) fn break_from_if_then_scope(&mut self, block: BasicBlock, source_info: SourceInfo) {
1058        let if_then_scope = self
1059            .scopes
1060            .if_then_scope
1061            .as_ref()
1062            .unwrap_or_else(|| bug_impl(Some(source_info.span), format_args!("no if-then scope found"),
    Location::caller())span_bug!(source_info.span, "no if-then scope found"));
1063
1064        let target = if_then_scope.region_scope;
1065        let stack_index = self.scopes.stack_index(target, source_info.span);
1066
1067        // Upgrade `if_then_scope` to `&mut`.
1068        let if_then_scope = self.scopes.if_then_scope.as_mut().expect("upgrading & to &mut");
1069
1070        let mut drop_idx = ROOT_NODE;
1071        let drops = &mut if_then_scope.else_drops;
1072        for scope in &self.scopes.scopes[stack_index + 1..] {
1073            for drop in &scope.drops {
1074                drop_idx = drops.add_drop(*drop, drop_idx);
1075            }
1076        }
1077        drops.add_entry_point(block, drop_idx);
1078
1079        // `build_drop_trees` doesn't have access to our source_info, so we
1080        // create a dummy terminator now. `TerminatorKind::UnwindResume` is used
1081        // because MIR type checking will panic if it hasn't been overwritten.
1082        // (See `<ExitScopes as DropTreeBuilder>::link_entry_point`.)
1083        self.cfg.terminate(block, source_info, TerminatorKind::UnwindResume);
1084    }
1085
1086    /// Sets up the drops for explicit tail calls.
1087    ///
1088    /// Unlike other kinds of early exits, tail calls do not go through the drop tree.
1089    /// Instead, all scheduled drops are immediately added to the CFG.
1090    pub(crate) fn break_for_tail_call(
1091        &mut self,
1092        mut block: BasicBlock,
1093        args: &[Spanned<Operand<'tcx>>],
1094        source_info: SourceInfo,
1095    ) -> BlockAnd<()> {
1096        let arg_drops: Vec<_> = args
1097            .iter()
1098            .rev()
1099            .filter_map(|arg| match &arg.node {
1100                Operand::Copy(_) => bug_impl(None, format_args!("copy op in tail call args"), Location::caller())bug!("copy op in tail call args"),
1101                Operand::Move(place) => {
1102                    let local =
1103                        place.as_local().unwrap_or_else(|| bug_impl(None, format_args!("projection in tail call args"),
    Location::caller())bug!("projection in tail call args"));
1104
1105                    if !self.local_decls[local].ty.needs_drop(self.tcx, self.typing_env()) {
1106                        return None;
1107                    }
1108
1109                    Some(DropData { source_info, local, kind: DropKind::Value })
1110                }
1111                Operand::Constant(_) | Operand::RuntimeChecks(_) => None,
1112            })
1113            .collect();
1114
1115        let mut unwind_to = self.diverge_cleanup_target(
1116            self.scopes.scopes.iter().rev().nth(1).unwrap().region_scope,
1117            DUMMY_SP,
1118        );
1119        let typing_env = self.typing_env();
1120        let unwind_drops = &mut self.scopes.unwind_drops;
1121
1122        // the innermost scope contains only the destructors for the tail call arguments
1123        // we only want to drop these in case of a panic, so we skip it
1124        for scope in self.scopes.scopes[1..].iter().rev().skip(1) {
1125            // FIXME(explicit_tail_calls) code duplication with `build_scope_drops`
1126            for drop_data in scope.drops.iter().rev() {
1127                let source_info = drop_data.source_info;
1128                let local = drop_data.local;
1129
1130                if !self.local_decls[local].ty.needs_drop(self.tcx, typing_env) {
1131                    continue;
1132                }
1133
1134                match drop_data.kind {
1135                    DropKind::Value => {
1136                        // `unwind_to` should drop the value that we're about to
1137                        // schedule. If dropping this value panics, then we continue
1138                        // with the *next* value on the unwind path.
1139                        if true {
    {
        match (&unwind_drops.drop_nodes[unwind_to].data.local,
                &drop_data.local) {
            (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!(
1140                            unwind_drops.drop_nodes[unwind_to].data.local,
1141                            drop_data.local
1142                        );
1143                        if true {
    {
        match (&unwind_drops.drop_nodes[unwind_to].data.kind, &drop_data.kind)
            {
            (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!(
1144                            unwind_drops.drop_nodes[unwind_to].data.kind,
1145                            drop_data.kind
1146                        );
1147                        unwind_to = unwind_drops.drop_nodes[unwind_to].next;
1148
1149                        let mut unwind_entry_point = unwind_to;
1150
1151                        // the tail call arguments must be dropped if any of these drops panic
1152                        for drop in arg_drops.iter().copied() {
1153                            unwind_entry_point = unwind_drops.add_drop(drop, unwind_entry_point);
1154                        }
1155
1156                        unwind_drops.add_entry_point(block, unwind_entry_point);
1157
1158                        let next = self.cfg.start_new_block();
1159                        self.cfg.terminate(
1160                            block,
1161                            source_info,
1162                            TerminatorKind::Drop {
1163                                place: local.into(),
1164                                target: next,
1165                                unwind: UnwindAction::Continue,
1166                                replace: false,
1167                                drop: None,
1168                            },
1169                        );
1170                        block = next;
1171                    }
1172                    DropKind::ForLint => {
1173                        self.cfg.push(
1174                            block,
1175                            Statement::new(
1176                                source_info,
1177                                StatementKind::BackwardIncompatibleDropHint {
1178                                    place: Box::new(local.into()),
1179                                    reason: BackwardIncompatibleDropReason::Edition2024,
1180                                },
1181                            ),
1182                        );
1183                    }
1184                    DropKind::Storage => {
1185                        // Only temps and vars need their storage dead.
1186                        if !(local.index() > self.arg_count) {
    ::core::panicking::panic("assertion failed: local.index() > self.arg_count")
};assert!(local.index() > self.arg_count);
1187                        self.cfg.push(
1188                            block,
1189                            Statement::new(source_info, StatementKind::StorageDead(local)),
1190                        );
1191                    }
1192                }
1193            }
1194        }
1195
1196        block.unit()
1197    }
1198
1199    fn is_async_drop_impl(
1200        tcx: TyCtxt<'tcx>,
1201        local_decls: &IndexVec<Local, LocalDecl<'tcx>>,
1202        typing_env: ty::TypingEnv<'tcx>,
1203        local: Local,
1204    ) -> bool {
1205        let ty = local_decls[local].ty;
1206        if ty.is_async_drop(tcx, typing_env) || ty.is_coroutine() {
1207            return true;
1208        }
1209        ty.needs_async_drop(tcx, typing_env)
1210    }
1211    fn is_async_drop(&self, local: Local) -> bool {
1212        Self::is_async_drop_impl(self.tcx, &self.local_decls, self.typing_env(), local)
1213    }
1214
1215    fn leave_top_scope(&mut self, block: BasicBlock) -> BasicBlock {
1216        // If we are emitting a `drop` statement, we need to have the cached
1217        // diverge cleanup pads ready in case that drop panics.
1218        let needs_cleanup = self.scopes.scopes.last().is_some_and(|scope| scope.needs_cleanup());
1219        let is_coroutine = self.coroutine.is_some();
1220        let unwind_to = if needs_cleanup { self.diverge_cleanup() } else { DropIdx::MAX };
1221
1222        let scope = self.scopes.scopes.last().expect("leave_top_scope called with no scopes");
1223        let has_async_drops = is_coroutine
1224            && scope.drops.iter().any(|v| v.kind == DropKind::Value && self.is_async_drop(v.local));
1225        let dropline_to = if has_async_drops { Some(self.diverge_dropline()) } else { None };
1226        let scope = self.scopes.scopes.last().expect("leave_top_scope called with no scopes");
1227        let typing_env = self.typing_env();
1228        build_scope_drops(
1229            &mut self.cfg,
1230            &mut self.scopes.unwind_drops,
1231            &mut self.scopes.coroutine_drops,
1232            scope,
1233            block,
1234            unwind_to,
1235            dropline_to,
1236            is_coroutine && needs_cleanup,
1237            self.arg_count,
1238            |v: Local| Self::is_async_drop_impl(self.tcx, &self.local_decls, typing_env, v),
1239        )
1240        .into_block()
1241    }
1242
1243    /// Possibly creates a new source scope if `current_root` and `parent_root`
1244    /// are different, or if -Zmaximal-hir-to-mir-coverage is enabled.
1245    pub(crate) fn maybe_new_source_scope(
1246        &mut self,
1247        span: Span,
1248        current_id: HirId,
1249        parent_id: HirId,
1250    ) {
1251        let (current_root, parent_root) =
1252            if self.tcx.sess.opts.unstable_opts.maximal_hir_to_mir_coverage {
1253                // Some consumers of rustc need to map MIR locations back to HIR nodes. Currently
1254                // the only part of rustc that tracks MIR -> HIR is the
1255                // `SourceScopeLocalData::lint_root` field that tracks lint levels for MIR
1256                // locations. Normally the number of source scopes is limited to the set of nodes
1257                // with lint annotations. The -Zmaximal-hir-to-mir-coverage flag changes this
1258                // behavior to maximize the number of source scopes, increasing the granularity of
1259                // the MIR->HIR mapping.
1260                (current_id, parent_id)
1261            } else {
1262                // Use `maybe_lint_level_root_bounded` to avoid adding Hir dependencies on our
1263                // parents. We estimate the true lint roots here to avoid creating a lot of source
1264                // scopes.
1265                (
1266                    self.maybe_lint_level_root_bounded(current_id),
1267                    if parent_id == self.hir_id {
1268                        parent_id // this is very common
1269                    } else {
1270                        self.maybe_lint_level_root_bounded(parent_id)
1271                    },
1272                )
1273            };
1274
1275        if current_root != parent_root {
1276            let lint_level = LintLevel::Explicit(current_root);
1277            self.source_scope = self.new_source_scope(span, lint_level);
1278        }
1279    }
1280
1281    /// Walks upwards from `orig_id` to find a node which might change lint levels with attributes.
1282    /// It stops at `self.hir_id` and just returns it if reached.
1283    fn maybe_lint_level_root_bounded(&mut self, orig_id: HirId) -> HirId {
1284        // This assertion lets us just store `ItemLocalId` in the cache, rather
1285        // than the full `HirId`.
1286        {
    match (&orig_id.owner, &self.hir_id.owner) {
        (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!(orig_id.owner, self.hir_id.owner);
1287
1288        let mut id = orig_id;
1289        loop {
1290            if id == self.hir_id {
1291                // This is a moderately common case, mostly hit for previously unseen nodes.
1292                break;
1293            }
1294
1295            if self
1296                .tcx
1297                .hir_attrs(id)
1298                .iter()
1299                .any(|attr| Level::from_opt_symbol(attr.name()).is_some())
1300            {
1301                // This is a rare case. It's for a node path that doesn't reach the root due to an
1302                // intervening lint level attribute. This result doesn't get cached.
1303                return id;
1304            }
1305
1306            let next = self.tcx.parent_hir_id(id);
1307            if next == id {
1308                bug_impl(None, format_args!("lint traversal reached the root of the crate"),
    Location::caller());bug!("lint traversal reached the root of the crate");
1309            }
1310            id = next;
1311
1312            // This lookup is just an optimization; it can be removed without affecting
1313            // functionality. It might seem strange to see this at the end of this loop, but the
1314            // `orig_id` passed in to this function is almost always previously unseen, for which a
1315            // lookup will be a miss. So we only do lookups for nodes up the parent chain, where
1316            // cache lookups have a very high hit rate.
1317            if self.lint_level_roots_cache.contains(id.local_id) {
1318                break;
1319            }
1320        }
1321
1322        // `orig_id` traced to `self_id`; record this fact. If `orig_id` is a leaf node it will
1323        // rarely (never?) subsequently be searched for, but it's hard to know if that is the case.
1324        // The performance wins from the cache all come from caching non-leaf nodes.
1325        self.lint_level_roots_cache.insert(orig_id.local_id);
1326        self.hir_id
1327    }
1328
1329    /// Creates a new source scope, nested in the current one.
1330    pub(crate) fn new_source_scope(&mut self, span: Span, lint_level: LintLevel) -> SourceScope {
1331        let parent = self.source_scope;
1332        {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_mir_build/src/builder/scope.rs:1332",
                        "rustc_mir_build::builder::scope", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_mir_build/src/builder/scope.rs"),
                        ::tracing_core::__macro_support::Option::Some(1332u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_mir_build::builder::scope"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::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!("new_source_scope({0:?}, {1:?}) - parent({2:?})={3:?}",
                                                    span, lint_level, parent, self.source_scopes.get(parent)) as
                                            &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!(
1333            "new_source_scope({:?}, {:?}) - parent({:?})={:?}",
1334            span,
1335            lint_level,
1336            parent,
1337            self.source_scopes.get(parent)
1338        );
1339        let scope_local_data = SourceScopeLocalData {
1340            lint_root: if let LintLevel::Explicit(lint_root) = lint_level {
1341                lint_root
1342            } else {
1343                self.source_scopes[parent].local_data.as_ref().unwrap_crate_local().lint_root
1344            },
1345        };
1346        self.source_scopes.push(SourceScopeData {
1347            span,
1348            parent_scope: Some(parent),
1349            inlined: None,
1350            inlined_parent_scope: None,
1351            local_data: ClearCrossCrate::Set(scope_local_data),
1352        })
1353    }
1354
1355    /// Given a span and the current source scope, make a SourceInfo.
1356    pub(crate) fn source_info(&self, span: Span) -> SourceInfo {
1357        SourceInfo { span, scope: self.source_scope }
1358    }
1359
1360    // Finding scopes
1361    // ==============
1362
1363    /// Returns the scope that we should use as the lifetime of an
1364    /// operand. Basically, an operand must live until it is consumed.
1365    /// This is similar to, but not quite the same as, the temporary
1366    /// scope (which can be larger or smaller).
1367    ///
1368    /// Consider:
1369    /// ```ignore (illustrative)
1370    /// let x = foo(bar(X, Y));
1371    /// ```
1372    /// We wish to pop the storage for X and Y after `bar()` is
1373    /// called, not after the whole `let` is completed.
1374    ///
1375    /// As another example, if the second argument diverges:
1376    /// ```ignore (illustrative)
1377    /// foo(Box::new(2), panic!())
1378    /// ```
1379    /// We would allocate the box but then free it on the unwinding
1380    /// path; we would also emit a free on the 'success' path from
1381    /// panic, but that will turn out to be removed as dead-code.
1382    pub(crate) fn local_scope(&self) -> region::Scope {
1383        self.scopes.topmost()
1384    }
1385
1386    // Scheduling drops
1387    // ================
1388
1389    /// Indicates that `place` should be dropped on exit from `region_scope`.
1390    ///
1391    /// When called with `DropKind::Storage`, `place` shouldn't be the return
1392    /// place, or a function parameter.
1393    fn schedule_drop(
1394        &mut self,
1395        span: Span,
1396        region_scope: region::Scope,
1397        local: Local,
1398        drop_kind: DropKind,
1399    ) {
1400        // When building drops, we try to cache chains of drops to reduce the
1401        // number of `DropTree::add_drop` calls. This, however, means that
1402        // whenever we add a drop into a scope which already had some entries
1403        // in the drop tree built (and thus, cached) for it, we must invalidate
1404        // all caches which might branch into the scope which had a drop just
1405        // added to it. This is necessary, because otherwise some other code
1406        // might use the cache to branch into already built chain of drops,
1407        // essentially ignoring the newly added drop.
1408        //
1409        // For example consider there’s two scopes with a drop in each. These
1410        // are built and thus the caches are filled:
1411        //
1412        // +--------------------------------------------------------+
1413        // | +---------------------------------+                    |
1414        // | | +--------+     +-------------+  |  +---------------+ |
1415        // | | | return | <-+ | drop(outer) | <-+ |  drop(middle) | |
1416        // | | +--------+     +-------------+  |  +---------------+ |
1417        // | +------------|outer_scope cache|--+                    |
1418        // +------------------------------|middle_scope cache|------+
1419        //
1420        // Now, a new, innermost scope is added along with a new drop into
1421        // both innermost and outermost scopes:
1422        //
1423        // +------------------------------------------------------------+
1424        // | +----------------------------------+                       |
1425        // | | +--------+      +-------------+  |   +---------------+   | +-------------+
1426        // | | | return | <+   | drop(new)   | <-+  |  drop(middle) | <--+| drop(inner) |
1427        // | | +--------+  |   | drop(outer) |  |   +---------------+   | +-------------+
1428        // | |             +-+ +-------------+  |                       |
1429        // | +---|invalid outer_scope cache|----+                       |
1430        // +----=----------------|invalid middle_scope cache|-----------+
1431        //
1432        // If, when adding `drop(new)` we do not invalidate the cached blocks for both
1433        // outer_scope and middle_scope, then, when building drops for the inner (rightmost)
1434        // scope, the old, cached blocks, without `drop(new)` will get used, producing the
1435        // wrong results.
1436        //
1437        // Note that this code iterates scopes from the innermost to the outermost,
1438        // invalidating caches of each scope visited. This way bare minimum of the
1439        // caches gets invalidated. i.e., if a new drop is added into the middle scope, the
1440        // cache of outer scope stays intact.
1441        //
1442        // Since we only cache drops for the unwind path and the coroutine drop
1443        // path, we only need to invalidate the cache for drops that happen on
1444        // the unwind or coroutine drop paths. This means that for
1445        // non-coroutines we don't need to invalidate caches for `DropKind::Storage`.
1446        let invalidate_caches = match drop_kind {
1447            DropKind::Value | DropKind::ForLint => true,
1448            DropKind::Storage => self.coroutine.is_some(),
1449        };
1450        for scope in self.scopes.scopes.iter_mut().rev() {
1451            if invalidate_caches {
1452                scope.invalidate_cache();
1453            }
1454
1455            if scope.region_scope == region_scope {
1456                let region_scope_span = region_scope.span(self.tcx, self.region_scope_tree);
1457                // Attribute scope exit drops to scope's closing brace.
1458                let scope_end = self.tcx.sess.source_map().end_point(region_scope_span);
1459
1460                scope.drops.push(DropData {
1461                    source_info: SourceInfo { span: scope_end, scope: scope.source_scope },
1462                    local,
1463                    kind: drop_kind,
1464                });
1465
1466                return;
1467            }
1468        }
1469
1470        bug_impl(Some(span),
    format_args!("region scope {0:?} not in scope to drop {1:?}",
        region_scope, local), Location::caller());span_bug!(span, "region scope {:?} not in scope to drop {:?}", region_scope, local);
1471    }
1472
1473    /// Indicates that `place` should be marked `StorageDead` on exit from `region_scope`.
1474    ///
1475    /// `place` must not be the return place, or a function parameter.
1476    pub(crate) fn schedule_drop_storage(
1477        &mut self,
1478        span: Span,
1479        region_scope: region::Scope,
1480        local: Local,
1481    ) {
1482        if local.index() <= self.arg_count {
1483            bug_impl(Some(span),
    format_args!("`schedule_drop` called with body argument {0:?} but its storage does not require a drop",
        local), Location::caller())span_bug!(
1484                span,
1485                "`schedule_drop` called with body argument {:?} \
1486                but its storage does not require a drop",
1487                local,
1488            )
1489        }
1490        self.schedule_drop(span, region_scope, local, DropKind::Storage);
1491    }
1492
1493    /// Indicates that `place` should be dropped on exit from `region_scope`.
1494    pub(crate) fn schedule_drop_value(
1495        &mut self,
1496        span: Span,
1497        region_scope: region::Scope,
1498        local: Local,
1499    ) {
1500        if !self.local_decls[local].ty.needs_drop(self.tcx, self.typing_env()) {
1501            return;
1502        }
1503        self.schedule_drop(span, region_scope, local, DropKind::Value);
1504    }
1505
1506    /// Schedule emission of a backwards incompatible drop lint hint.
1507    /// Applicable only to temporary values for now.
1508    {}
#[allow(clippy :: suspicious_else_formatting)]
{
    let __tracing_attr_span;
    let __tracing_attr_guard;
    if ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::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("schedule_backwards_incompatible_drop",
                                    "rustc_mir_build::builder::scope", ::tracing::Level::DEBUG,
                                    ::tracing_core::__macro_support::Option::Some("/rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_mir_build/src/builder/scope.rs"),
                                    ::tracing_core::__macro_support::Option::Some(1508u32),
                                    ::tracing_core::__macro_support::Option::Some("rustc_mir_build::builder::scope"),
                                    ::tracing_core::field::FieldSet::new(&[{
                                                        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("region_scope")
                                                            }> =
                                                            ::tracing::__macro_support::FieldName::new("region_scope");
                                                        NAME.as_str()
                                                    },
                                                    {
                                                        const NAME:
                                                            ::tracing::__macro_support::FieldName<{
                                                                ::tracing::__macro_support::FieldName::len("local")
                                                            }> =
                                                            ::tracing::__macro_support::FieldName::new("local");
                                                        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::DEBUG <=
                                    ::tracing::level_filters::STATIC_MAX_LEVEL &&
                                ::tracing::Level::DEBUG <=
                                    ::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(&span)
                                                            as &dyn ::tracing::field::Value)),
                                                (::tracing::__macro_support::Option::Some(&::tracing::field::debug(&region_scope)
                                                            as &dyn ::tracing::field::Value)),
                                                (::tracing::__macro_support::Option::Some(&::tracing::field::debug(&local)
                                                            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: () = loop {};
            return __tracing_attr_fake_return;
        }
        { self.schedule_drop(span, region_scope, local, DropKind::ForLint); }
    }
}#[instrument(level = "debug", skip(self))]
1509    pub(crate) fn schedule_backwards_incompatible_drop(
1510        &mut self,
1511        span: Span,
1512        region_scope: region::Scope,
1513        local: Local,
1514    ) {
1515        // Note that we are *not* gating BIDs here on whether they have significant destructor.
1516        // We need to know all of them so that we can capture potential borrow-checking errors.
1517        self.schedule_drop(span, region_scope, local, DropKind::ForLint);
1518    }
1519
1520    /// Indicates that the "local operand" stored in `local` is
1521    /// *moved* at some point during execution (see `local_scope` for
1522    /// more information about what a "local operand" is -- in short,
1523    /// it's an intermediate operand created as part of preparing some
1524    /// MIR instruction). We use this information to suppress
1525    /// redundant drops on the non-unwind paths. This results in less
1526    /// MIR, but also avoids spurious borrow check errors
1527    /// (c.f. #64391).
1528    ///
1529    /// Example: when compiling the call to `foo` here:
1530    ///
1531    /// ```ignore (illustrative)
1532    /// foo(bar(), ...)
1533    /// ```
1534    ///
1535    /// we would evaluate `bar()` to an operand `_X`. We would also
1536    /// schedule `_X` to be dropped when the expression scope for
1537    /// `foo(bar())` is exited. This is relevant, for example, if the
1538    /// later arguments should unwind (it would ensure that `_X` gets
1539    /// dropped). However, if no unwind occurs, then `_X` will be
1540    /// unconditionally consumed by the `call`:
1541    ///
1542    /// ```ignore (illustrative)
1543    /// bb {
1544    ///   ...
1545    ///   _R = CALL(foo, _X, ...)
1546    /// }
1547    /// ```
1548    ///
1549    /// However, `_X` is still registered to be dropped, and so if we
1550    /// do nothing else, we would generate a `DROP(_X)` that occurs
1551    /// after the call. This will later be optimized out by the
1552    /// drop-elaboration code, but in the meantime it can lead to
1553    /// spurious borrow-check errors -- the problem, ironically, is
1554    /// not the `DROP(_X)` itself, but the (spurious) unwind pathways
1555    /// that it creates. See #64391 for an example.
1556    pub(crate) fn record_operands_moved(&mut self, operands: &[Spanned<Operand<'tcx>>]) {
1557        let local_scope = self.local_scope();
1558        let scope = self.scopes.scopes.last_mut().unwrap();
1559
1560        {
    match (&scope.region_scope, &local_scope) {
        (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!("local scope is not the topmost scope!")));
            }
        }
    }
};assert_eq!(scope.region_scope, local_scope, "local scope is not the topmost scope!",);
1561
1562        // look for moves of a local variable, like `MOVE(_X)`
1563        let locals_moved = operands.iter().flat_map(|operand| match operand.node {
1564            Operand::Copy(_) | Operand::Constant(_) | Operand::RuntimeChecks(_) => None,
1565            Operand::Move(place) => place.as_local(),
1566        });
1567
1568        for local in locals_moved {
1569            // check if we have a Drop for this operand and -- if so
1570            // -- add it to the list of moved operands. Note that this
1571            // local might not have been an operand created for this
1572            // call, it could come from other places too.
1573            if scope.drops.iter().any(|drop| drop.local == local && drop.kind == DropKind::Value) {
1574                scope.moved_locals.push(local);
1575            }
1576        }
1577    }
1578
1579    // Other
1580    // =====
1581
1582    /// Returns the [DropIdx] for the innermost drop if the function unwound at
1583    /// this point. The `DropIdx` will be created if it doesn't already exist.
1584    fn diverge_cleanup(&mut self) -> DropIdx {
1585        // It is okay to use dummy span because the getting scope index on the topmost scope
1586        // must always succeed.
1587        self.diverge_cleanup_target(self.scopes.topmost(), DUMMY_SP)
1588    }
1589
1590    /// This is similar to [diverge_cleanup](Self::diverge_cleanup) except its target is set to
1591    /// some ancestor scope instead of the current scope.
1592    /// It is possible to unwind to some ancestor scope if some drop panics as
1593    /// the program breaks out of a if-then scope.
1594    fn diverge_cleanup_target(&mut self, target_scope: region::Scope, span: Span) -> DropIdx {
1595        let target = self.scopes.stack_index(target_scope, span);
1596        let (uncached_scope, mut cached_drop) = self.scopes.scopes[..=target]
1597            .iter()
1598            .enumerate()
1599            .rev()
1600            .find_map(|(scope_idx, scope)| {
1601                scope.cached_unwind_block.map(|cached_block| (scope_idx + 1, cached_block))
1602            })
1603            .unwrap_or((0, ROOT_NODE));
1604
1605        if uncached_scope > target {
1606            return cached_drop;
1607        }
1608
1609        let is_coroutine = self.coroutine.is_some();
1610        for scope in &mut self.scopes.scopes[uncached_scope..=target] {
1611            for drop in &scope.drops {
1612                if is_coroutine || drop.kind == DropKind::Value {
1613                    cached_drop = self.scopes.unwind_drops.add_drop(*drop, cached_drop);
1614                }
1615            }
1616            scope.cached_unwind_block = Some(cached_drop);
1617        }
1618
1619        cached_drop
1620    }
1621
1622    /// Prepares to create a path that performs all required cleanup for a
1623    /// terminator that can unwind at the given basic block.
1624    ///
1625    /// This path terminates in Resume. The path isn't created until after all
1626    /// of the non-unwind paths in this item have been lowered.
1627    pub(crate) fn diverge_from(&mut self, start: BasicBlock) {
1628        if true {
    if !#[allow(non_exhaustive_omitted_patterns)] match self.cfg.block_data(start).terminator().kind
                {
                TerminatorKind::Assert { .. } | TerminatorKind::Call { .. } |
                    TerminatorKind::Drop { .. } | TerminatorKind::FalseUnwind {
                    .. } | TerminatorKind::InlineAsm { .. } => true,
                _ => false,
            } {
        {
            ::core::panicking::panic_fmt(format_args!("diverge_from called on block with terminator that cannot unwind."));
        }
    };
};debug_assert!(
1629            matches!(
1630                self.cfg.block_data(start).terminator().kind,
1631                TerminatorKind::Assert { .. }
1632                    | TerminatorKind::Call { .. }
1633                    | TerminatorKind::Drop { .. }
1634                    | TerminatorKind::FalseUnwind { .. }
1635                    | TerminatorKind::InlineAsm { .. }
1636            ),
1637            "diverge_from called on block with terminator that cannot unwind."
1638        );
1639
1640        let next_drop = self.diverge_cleanup();
1641        self.scopes.unwind_drops.add_entry_point(start, next_drop);
1642    }
1643
1644    /// Returns the [DropIdx] for the innermost drop for dropline (coroutine drop path).
1645    /// The `DropIdx` will be created if it doesn't already exist.
1646    fn diverge_dropline(&mut self) -> DropIdx {
1647        // It is okay to use dummy span because the getting scope index on the topmost scope
1648        // must always succeed.
1649        self.diverge_dropline_target(self.scopes.topmost(), DUMMY_SP)
1650    }
1651
1652    /// Similar to diverge_cleanup_target, but for dropline (coroutine drop path)
1653    fn diverge_dropline_target(&mut self, target_scope: region::Scope, span: Span) -> DropIdx {
1654        if true {
    if !self.coroutine.is_some() {
        {
            ::core::panicking::panic_fmt(format_args!("diverge_dropline_target is valid only for coroutine"));
        }
    };
};debug_assert!(
1655            self.coroutine.is_some(),
1656            "diverge_dropline_target is valid only for coroutine"
1657        );
1658        let target = self.scopes.stack_index(target_scope, span);
1659        let (uncached_scope, mut cached_drop) = self.scopes.scopes[..=target]
1660            .iter()
1661            .enumerate()
1662            .rev()
1663            .find_map(|(scope_idx, scope)| {
1664                scope.cached_coroutine_drop_block.map(|cached_block| (scope_idx + 1, cached_block))
1665            })
1666            .unwrap_or((0, ROOT_NODE));
1667
1668        if uncached_scope > target {
1669            return cached_drop;
1670        }
1671
1672        for scope in &mut self.scopes.scopes[uncached_scope..=target] {
1673            for drop in &scope.drops {
1674                cached_drop = self.scopes.coroutine_drops.add_drop(*drop, cached_drop);
1675            }
1676            scope.cached_coroutine_drop_block = Some(cached_drop);
1677        }
1678
1679        cached_drop
1680    }
1681
1682    /// Sets up a path that performs all required cleanup for dropping a
1683    /// coroutine, starting from the given block that ends in
1684    /// [TerminatorKind::Yield].
1685    ///
1686    /// This path terminates in CoroutineDrop.
1687    pub(crate) fn coroutine_drop_cleanup(&mut self, yield_block: BasicBlock) {
1688        if true {
    if !#[allow(non_exhaustive_omitted_patterns)] match self.cfg.block_data(yield_block).terminator().kind
                {
                TerminatorKind::Yield { .. } => true,
                _ => false,
            } {
        {
            ::core::panicking::panic_fmt(format_args!("coroutine_drop_cleanup called on block with non-yield terminator."));
        }
    };
};debug_assert!(
1689            matches!(
1690                self.cfg.block_data(yield_block).terminator().kind,
1691                TerminatorKind::Yield { .. }
1692            ),
1693            "coroutine_drop_cleanup called on block with non-yield terminator."
1694        );
1695        let cached_drop = self.diverge_dropline();
1696        self.scopes.coroutine_drops.add_entry_point(yield_block, cached_drop);
1697    }
1698
1699    /// Utility function for *non*-scope code to build their own drops
1700    /// Force a drop at this point in the MIR by creating a new block.
1701    pub(crate) fn build_drop_and_replace(
1702        &mut self,
1703        block: BasicBlock,
1704        span: Span,
1705        place: Place<'tcx>,
1706        value: Rvalue<'tcx>,
1707    ) -> BlockAnd<()> {
1708        let source_info = self.source_info(span);
1709
1710        // create the new block for the assignment
1711        let assign = self.cfg.start_new_block();
1712        self.cfg.push_assign(assign, source_info, place, value.clone());
1713
1714        // create the new block for the assignment in the case of unwinding
1715        let assign_unwind = self.cfg.start_new_cleanup_block();
1716        self.cfg.push_assign(assign_unwind, source_info, place, value.clone());
1717
1718        self.cfg.terminate(
1719            block,
1720            source_info,
1721            TerminatorKind::Drop {
1722                place,
1723                target: assign,
1724                unwind: UnwindAction::Cleanup(assign_unwind),
1725                replace: true,
1726                drop: None,
1727            },
1728        );
1729        self.diverge_from(block);
1730
1731        assign.unit()
1732    }
1733
1734    /// Creates an `Assert` terminator and return the success block.
1735    /// If the boolean condition operand is not the expected value,
1736    /// a runtime panic will be caused with the given message.
1737    pub(crate) fn assert(
1738        &mut self,
1739        block: BasicBlock,
1740        cond: Operand<'tcx>,
1741        expected: bool,
1742        msg: AssertMessage<'tcx>,
1743        span: Span,
1744    ) -> BasicBlock {
1745        let source_info = self.source_info(span);
1746        let success_block = self.cfg.start_new_block();
1747
1748        self.cfg.terminate(
1749            block,
1750            source_info,
1751            TerminatorKind::Assert {
1752                cond,
1753                expected,
1754                msg: Box::new(msg),
1755                target: success_block,
1756                unwind: UnwindAction::Continue,
1757            },
1758        );
1759        self.diverge_from(block);
1760
1761        success_block
1762    }
1763
1764    /// Unschedules any drops in the top two scopes.
1765    ///
1766    /// This is only needed for pattern-matches combining guards and or-patterns: or-patterns lead
1767    /// to guards being lowered multiple times before lowering the arm body, so we unschedle drops
1768    /// for guards' temporaries and bindings between lowering each instance of an match arm's guard.
1769    pub(crate) fn clear_match_arm_and_guard_scopes(&mut self, region_scope: region::Scope) {
1770        let [.., arm_scope, guard_scope] = &mut *self.scopes.scopes else {
1771            bug_impl(None,
    format_args!("matches with guards should introduce separate scopes for the pattern and guard"),
    Location::caller());bug!("matches with guards should introduce separate scopes for the pattern and guard");
1772        };
1773
1774        {
    match (&arm_scope.region_scope, &region_scope) {
        (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!(arm_scope.region_scope, region_scope);
1775        {
    match (&guard_scope.region_scope.data, &region::ScopeData::MatchGuard) {
        (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!(guard_scope.region_scope.data, region::ScopeData::MatchGuard);
1776        {
    match (&guard_scope.region_scope.local_id, &region_scope.local_id) {
        (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!(guard_scope.region_scope.local_id, region_scope.local_id);
1777
1778        arm_scope.drops.clear();
1779        arm_scope.invalidate_cache();
1780        guard_scope.drops.clear();
1781        guard_scope.invalidate_cache();
1782    }
1783}
1784
1785/// Builds drops for `pop_scope` and `leave_top_scope`.
1786///
1787/// # Parameters
1788///
1789/// * `unwind_drops`, the drop tree data structure storing what needs to be cleaned up if unwind occurs
1790/// * `scope`, describes the drops that will occur on exiting the scope in regular execution
1791/// * `block`, the block to branch to once drops are complete (assuming no unwind occurs)
1792/// * `unwind_to`, describes the drops that would occur at this point in the code if a
1793///   panic occurred (a subset of the drops in `scope`, since we sometimes elide StorageDead and other
1794///   instructions on unwinding)
1795/// * `dropline_to`, describes the drops that would occur at this point in the code if a
1796///    coroutine drop occurred.
1797/// * `storage_dead_on_unwind`, if true, then we should emit `StorageDead` even when unwinding
1798/// * `arg_count`, number of MIR local variables corresponding to fn arguments (used to assert that we don't drop those)
1799fn build_scope_drops<'tcx, F>(
1800    cfg: &mut CFG<'tcx>,
1801    unwind_drops: &mut DropTree,
1802    coroutine_drops: &mut DropTree,
1803    scope: &Scope,
1804    block: BasicBlock,
1805    unwind_to: DropIdx,
1806    dropline_to: Option<DropIdx>,
1807    storage_dead_on_unwind: bool,
1808    arg_count: usize,
1809    is_async_drop: F,
1810) -> BlockAnd<()>
1811where
1812    F: Fn(Local) -> bool,
1813{
1814    {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_mir_build/src/builder/scope.rs:1814",
                        "rustc_mir_build::builder::scope", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_mir_build/src/builder/scope.rs"),
                        ::tracing_core::__macro_support::Option::Some(1814u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_mir_build::builder::scope"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::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!("build_scope_drops({0:?} -> {1:?}), dropline_to={2:?}",
                                                    block, scope, dropline_to) as
                                            &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!("build_scope_drops({:?} -> {:?}), dropline_to={:?}", block, scope, dropline_to);
1815
1816    // Build up the drops in evaluation order. The end result will
1817    // look like:
1818    //
1819    // [SDs, drops[n]] --..> [SDs, drop[1]] -> [SDs, drop[0]] -> [[SDs]]
1820    //               |                    |                 |
1821    //               :                    |                 |
1822    //                                    V                 V
1823    // [drop[n]] -...-> [drop[1]] ------> [drop[0]] ------> [last_unwind_to]
1824    //
1825    // The horizontal arrows represent the execution path when the drops return
1826    // successfully. The downwards arrows represent the execution path when the
1827    // drops panic (panicking while unwinding will abort, so there's no need for
1828    // another set of arrows).
1829    //
1830    // For coroutines, we unwind from a drop on a local to its StorageDead
1831    // statement. For other functions we don't worry about StorageDead. The
1832    // drops for the unwind path should have already been generated by
1833    // `diverge_cleanup_gen`.
1834
1835    // `unwind_to` indicates what needs to be dropped should unwinding occur.
1836    // This is a subset of what needs to be dropped when exiting the scope.
1837    // As we unwind the scope, we will also move `unwind_to` backwards to match,
1838    // so that we can use it should a destructor panic.
1839    let mut unwind_to = unwind_to;
1840
1841    // The block that we should jump to after drops complete. We start by building the final drop (`drops[n]`
1842    // in the diagram above) and then build the drops (e.g., `drop[1]`, `drop[0]`) that come before it.
1843    // block begins as the successor of `drops[n]` and then becomes `drops[n]` so that `drops[n-1]`
1844    // will branch to `drops[n]`.
1845    let mut block = block;
1846
1847    // `dropline_to` indicates what needs to be dropped should coroutine drop occur.
1848    let mut dropline_to = dropline_to;
1849
1850    for drop_data in scope.drops.iter().rev() {
1851        let source_info = drop_data.source_info;
1852        let local = drop_data.local;
1853
1854        match drop_data.kind {
1855            DropKind::Value => {
1856                // `unwind_to` should drop the value that we're about to
1857                // schedule. If dropping this value panics, then we continue
1858                // with the *next* value on the unwind path.
1859                //
1860                // We adjust this BEFORE we create the drop (e.g., `drops[n]`)
1861                // because `drops[n]` should unwind to `drops[n-1]`.
1862                if true {
    {
        match (&unwind_drops.drop_nodes[unwind_to].data.local,
                &drop_data.local) {
            (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!(unwind_drops.drop_nodes[unwind_to].data.local, drop_data.local);
1863                if true {
    {
        match (&unwind_drops.drop_nodes[unwind_to].data.kind, &drop_data.kind)
            {
            (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!(unwind_drops.drop_nodes[unwind_to].data.kind, drop_data.kind);
1864                unwind_to = unwind_drops.drop_nodes[unwind_to].next;
1865
1866                if let Some(idx) = dropline_to {
1867                    if true {
    {
        match (&coroutine_drops.drop_nodes[idx].data.local, &drop_data.local)
            {
            (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!(coroutine_drops.drop_nodes[idx].data.local, drop_data.local);
1868                    if true {
    {
        match (&coroutine_drops.drop_nodes[idx].data.kind, &drop_data.kind) {
            (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!(coroutine_drops.drop_nodes[idx].data.kind, drop_data.kind);
1869                    dropline_to = Some(coroutine_drops.drop_nodes[idx].next);
1870                }
1871
1872                // If the operand has been moved, and we are not on an unwind
1873                // path, then don't generate the drop. (We only take this into
1874                // account for non-unwind paths so as not to disturb the
1875                // caching mechanism.)
1876                if scope.moved_locals.contains(&local) {
1877                    continue;
1878                }
1879
1880                unwind_drops.add_entry_point(block, unwind_to);
1881                if let Some(to) = dropline_to
1882                    && is_async_drop(local)
1883                {
1884                    coroutine_drops.add_entry_point(block, to);
1885                }
1886
1887                let next = cfg.start_new_block();
1888                cfg.terminate(
1889                    block,
1890                    source_info,
1891                    TerminatorKind::Drop {
1892                        place: local.into(),
1893                        target: next,
1894                        unwind: UnwindAction::Continue,
1895                        replace: false,
1896                        drop: None,
1897                    },
1898                );
1899                block = next;
1900            }
1901            DropKind::ForLint => {
1902                // As in the `DropKind::Storage` case below:
1903                // normally lint-related drops are not emitted for unwind,
1904                // so we can just leave `unwind_to` unmodified, but in some
1905                // cases we emit things ALSO on the unwind path, so we need to adjust
1906                // `unwind_to` in that case.
1907                if storage_dead_on_unwind {
1908                    if true {
    {
        match (&unwind_drops.drop_nodes[unwind_to].data.local,
                &drop_data.local) {
            (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!(
1909                        unwind_drops.drop_nodes[unwind_to].data.local,
1910                        drop_data.local
1911                    );
1912                    if true {
    {
        match (&unwind_drops.drop_nodes[unwind_to].data.kind, &drop_data.kind)
            {
            (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!(unwind_drops.drop_nodes[unwind_to].data.kind, drop_data.kind);
1913                    unwind_to = unwind_drops.drop_nodes[unwind_to].next;
1914                }
1915
1916                // If the operand has been moved, and we are not on an unwind
1917                // path, then don't generate the drop. (We only take this into
1918                // account for non-unwind paths so as not to disturb the
1919                // caching mechanism.)
1920                if scope.moved_locals.contains(&local) {
1921                    continue;
1922                }
1923
1924                cfg.push(
1925                    block,
1926                    Statement::new(
1927                        source_info,
1928                        StatementKind::BackwardIncompatibleDropHint {
1929                            place: Box::new(local.into()),
1930                            reason: BackwardIncompatibleDropReason::Edition2024,
1931                        },
1932                    ),
1933                );
1934            }
1935            DropKind::Storage => {
1936                // Ordinarily, storage-dead nodes are not emitted on unwind, so we don't
1937                // need to adjust `unwind_to` on this path. However, in some specific cases
1938                // we *do* emit storage-dead nodes on the unwind path, and in that case now that
1939                // the storage-dead has completed, we need to adjust the `unwind_to` pointer
1940                // so that any future drops we emit will not register storage-dead.
1941                if storage_dead_on_unwind {
1942                    if true {
    {
        match (&unwind_drops.drop_nodes[unwind_to].data.local,
                &drop_data.local) {
            (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!(
1943                        unwind_drops.drop_nodes[unwind_to].data.local,
1944                        drop_data.local
1945                    );
1946                    if true {
    {
        match (&unwind_drops.drop_nodes[unwind_to].data.kind, &drop_data.kind)
            {
            (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!(unwind_drops.drop_nodes[unwind_to].data.kind, drop_data.kind);
1947                    unwind_to = unwind_drops.drop_nodes[unwind_to].next;
1948                }
1949                if let Some(idx) = dropline_to {
1950                    if true {
    {
        match (&coroutine_drops.drop_nodes[idx].data.local, &drop_data.local)
            {
            (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!(coroutine_drops.drop_nodes[idx].data.local, drop_data.local);
1951                    if true {
    {
        match (&coroutine_drops.drop_nodes[idx].data.kind, &drop_data.kind) {
            (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!(coroutine_drops.drop_nodes[idx].data.kind, drop_data.kind);
1952                    dropline_to = Some(coroutine_drops.drop_nodes[idx].next);
1953                }
1954                // Only temps and vars need their storage dead.
1955                if !(local.index() > arg_count) {
    ::core::panicking::panic("assertion failed: local.index() > arg_count")
};assert!(local.index() > arg_count);
1956                cfg.push(block, Statement::new(source_info, StatementKind::StorageDead(local)));
1957            }
1958        }
1959    }
1960    block.unit()
1961}
1962
1963impl<'a, 'tcx: 'a> Builder<'a, 'tcx> {
1964    /// Build a drop tree for a breakable scope.
1965    ///
1966    /// If `continue_block` is `Some`, then the tree is for `continue` inside a
1967    /// loop. Otherwise this is for `break`, `return`, or `if`.
1968    fn build_exit_tree(
1969        &mut self,
1970        mut drops: DropTree,
1971        else_scope: region::Scope,
1972        span: Span,
1973        continue_block: Option<BasicBlock>,
1974    ) -> Option<BlockAnd<()>> {
1975        let blocks = drops.build_mir::<ExitScopes>(&mut self.cfg, continue_block);
1976        let is_coroutine = self.coroutine.is_some();
1977
1978        // Link the exit drop tree to unwind drop tree.
1979        if drops.drop_nodes.iter().any(|drop_node| drop_node.data.kind == DropKind::Value) {
1980            let unwind_target = self.diverge_cleanup_target(else_scope, span);
1981            let mut unwind_indices = IndexVec::from_elem_n(unwind_target, 1);
1982            for (drop_idx, drop_node) in drops.drop_nodes.iter_enumerated().skip(1) {
1983                match drop_node.data.kind {
1984                    DropKind::Storage | DropKind::ForLint => {
1985                        if is_coroutine {
1986                            let unwind_drop = self
1987                                .scopes
1988                                .unwind_drops
1989                                .add_drop(drop_node.data, unwind_indices[drop_node.next]);
1990                            unwind_indices.push(unwind_drop);
1991                        } else {
1992                            unwind_indices.push(unwind_indices[drop_node.next]);
1993                        }
1994                    }
1995                    DropKind::Value => {
1996                        let unwind_drop = self
1997                            .scopes
1998                            .unwind_drops
1999                            .add_drop(drop_node.data, unwind_indices[drop_node.next]);
2000                        self.scopes.unwind_drops.add_entry_point(
2001                            blocks[drop_idx].unwrap(),
2002                            unwind_indices[drop_node.next],
2003                        );
2004                        unwind_indices.push(unwind_drop);
2005                    }
2006                }
2007            }
2008        }
2009        // Link the exit drop tree to dropline drop tree (coroutine drop path) for async drops
2010        if is_coroutine
2011            && drops.drop_nodes.iter().any(|DropNode { data, next: _ }| {
2012                data.kind == DropKind::Value && self.is_async_drop(data.local)
2013            })
2014        {
2015            let dropline_target = self.diverge_dropline_target(else_scope, span);
2016            let mut dropline_indices = IndexVec::from_elem_n(dropline_target, 1);
2017            for (drop_idx, drop_data) in drops.drop_nodes.iter_enumerated().skip(1) {
2018                let coroutine_drop = self
2019                    .scopes
2020                    .coroutine_drops
2021                    .add_drop(drop_data.data, dropline_indices[drop_data.next]);
2022                match drop_data.data.kind {
2023                    DropKind::Storage | DropKind::ForLint => {}
2024                    DropKind::Value => {
2025                        if self.is_async_drop(drop_data.data.local) {
2026                            self.scopes.coroutine_drops.add_entry_point(
2027                                blocks[drop_idx].unwrap(),
2028                                dropline_indices[drop_data.next],
2029                            );
2030                        }
2031                    }
2032                }
2033                dropline_indices.push(coroutine_drop);
2034            }
2035        }
2036        blocks[ROOT_NODE].map(BasicBlock::unit)
2037    }
2038
2039    /// Build the unwind and coroutine drop trees.
2040    pub(crate) fn build_drop_trees(&mut self) {
2041        if self.coroutine.is_some() {
2042            self.build_coroutine_drop_trees();
2043        } else {
2044            Self::build_unwind_tree(
2045                &mut self.cfg,
2046                &mut self.scopes.unwind_drops,
2047                self.fn_span,
2048                &mut None,
2049            );
2050        }
2051    }
2052
2053    fn build_coroutine_drop_trees(&mut self) {
2054        // Build the drop tree for dropping the coroutine while it's suspended.
2055        let drops = &mut self.scopes.coroutine_drops;
2056        let cfg = &mut self.cfg;
2057        let fn_span = self.fn_span;
2058        let blocks = drops.build_mir::<CoroutineDrop>(cfg, None);
2059        if let Some(root_block) = blocks[ROOT_NODE] {
2060            cfg.terminate(
2061                root_block,
2062                SourceInfo::outermost(fn_span),
2063                TerminatorKind::CoroutineDrop,
2064            );
2065        }
2066
2067        // Build the drop tree for unwinding in the normal control flow paths.
2068        let resume_block = &mut None;
2069        let unwind_drops = &mut self.scopes.unwind_drops;
2070        Self::build_unwind_tree(cfg, unwind_drops, fn_span, resume_block);
2071
2072        // Build the drop tree for unwinding when dropping a suspended
2073        // coroutine.
2074        //
2075        // This is a different tree to the standard unwind paths here to
2076        // prevent drop elaboration from creating drop flags that would have
2077        // to be captured by the coroutine. I'm not sure how important this
2078        // optimization is, but it is here.
2079        for (drop_idx, drop_node) in drops.drop_nodes.iter_enumerated() {
2080            if let DropKind::Value = drop_node.data.kind
2081                && let Some(bb) = blocks[drop_idx]
2082            {
2083                if true {
    if !(drop_node.next < drops.drop_nodes.next_index()) {
        ::core::panicking::panic("assertion failed: drop_node.next < drops.drop_nodes.next_index()")
    };
};debug_assert!(drop_node.next < drops.drop_nodes.next_index());
2084                drops.entry_points.push((drop_node.next, bb));
2085            }
2086        }
2087        Self::build_unwind_tree(cfg, drops, fn_span, resume_block);
2088    }
2089
2090    fn build_unwind_tree(
2091        cfg: &mut CFG<'tcx>,
2092        drops: &mut DropTree,
2093        fn_span: Span,
2094        resume_block: &mut Option<BasicBlock>,
2095    ) {
2096        let blocks = drops.build_mir::<Unwind>(cfg, *resume_block);
2097        if let (None, Some(resume)) = (*resume_block, blocks[ROOT_NODE]) {
2098            cfg.terminate(resume, SourceInfo::outermost(fn_span), TerminatorKind::UnwindResume);
2099
2100            *resume_block = blocks[ROOT_NODE];
2101        }
2102    }
2103}
2104
2105// DropTreeBuilder implementations.
2106
2107struct ExitScopes;
2108
2109impl<'tcx> DropTreeBuilder<'tcx> for ExitScopes {
2110    fn make_block(cfg: &mut CFG<'tcx>) -> BasicBlock {
2111        cfg.start_new_block()
2112    }
2113    fn link_entry_point(cfg: &mut CFG<'tcx>, from: BasicBlock, to: BasicBlock) {
2114        // There should be an existing terminator with real source info and a
2115        // dummy TerminatorKind. Replace it with a proper goto.
2116        // (The dummy is added by `break_scope` and `break_from_if_then_scope`.)
2117        let term = cfg.block_data_mut(from).terminator_mut();
2118        if let TerminatorKind::UnwindResume = term.kind {
2119            term.kind = TerminatorKind::Goto { target: to };
2120        } else {
2121            bug_impl(Some(term.source_info.span),
    format_args!("unexpected dummy terminator kind: {0:?}", term.kind),
    Location::caller());span_bug!(term.source_info.span, "unexpected dummy terminator kind: {:?}", term.kind);
2122        }
2123    }
2124}
2125
2126struct CoroutineDrop;
2127
2128impl<'tcx> DropTreeBuilder<'tcx> for CoroutineDrop {
2129    fn make_block(cfg: &mut CFG<'tcx>) -> BasicBlock {
2130        cfg.start_new_block()
2131    }
2132    fn link_entry_point(cfg: &mut CFG<'tcx>, from: BasicBlock, to: BasicBlock) {
2133        let term = cfg.block_data_mut(from).terminator_mut();
2134        if let TerminatorKind::Yield { ref mut drop, .. } = term.kind {
2135            *drop = Some(to);
2136        } else if let TerminatorKind::Drop { ref mut drop, .. } = term.kind {
2137            *drop = Some(to);
2138        } else {
2139            bug_impl(Some(term.source_info.span),
    format_args!("cannot enter coroutine drop tree from {0:?}", term.kind),
    Location::caller())span_bug!(
2140                term.source_info.span,
2141                "cannot enter coroutine drop tree from {:?}",
2142                term.kind
2143            )
2144        }
2145    }
2146}
2147
2148struct Unwind;
2149
2150impl<'tcx> DropTreeBuilder<'tcx> for Unwind {
2151    fn make_block(cfg: &mut CFG<'tcx>) -> BasicBlock {
2152        cfg.start_new_cleanup_block()
2153    }
2154    fn link_entry_point(cfg: &mut CFG<'tcx>, from: BasicBlock, to: BasicBlock) {
2155        let term = &mut cfg.block_data_mut(from).terminator_mut();
2156        match &mut term.kind {
2157            TerminatorKind::Drop { unwind, .. } => {
2158                if let UnwindAction::Cleanup(unwind) = *unwind {
2159                    let source_info = term.source_info;
2160                    cfg.terminate(unwind, source_info, TerminatorKind::Goto { target: to });
2161                } else {
2162                    *unwind = UnwindAction::Cleanup(to);
2163                }
2164            }
2165            TerminatorKind::FalseUnwind { unwind, .. }
2166            | TerminatorKind::Call { unwind, .. }
2167            | TerminatorKind::Assert { unwind, .. }
2168            | TerminatorKind::InlineAsm { unwind, .. } => {
2169                *unwind = UnwindAction::Cleanup(to);
2170            }
2171            TerminatorKind::Goto { .. }
2172            | TerminatorKind::SwitchInt { .. }
2173            | TerminatorKind::UnwindResume
2174            | TerminatorKind::UnwindTerminate(_)
2175            | TerminatorKind::Return
2176            | TerminatorKind::TailCall { .. }
2177            | TerminatorKind::Unreachable
2178            | TerminatorKind::Yield { .. }
2179            | TerminatorKind::CoroutineDrop
2180            | TerminatorKind::FalseEdge { .. } => {
2181                bug_impl(Some(term.source_info.span),
    format_args!("cannot unwind from {0:?}", term.kind), Location::caller())span_bug!(term.source_info.span, "cannot unwind from {:?}", term.kind)
2182            }
2183        }
2184    }
2185}