Skip to main content

rustc_middle/mir/
mod.rs

1//! MIR datatypes and passes. See the [rustc dev guide] for more info.
2//!
3//! [rustc dev guide]: https://rustc-dev-guide.rust-lang.org/mir/index.html
4
5use std::borrow::Cow;
6use std::fmt::{self, Debug, Formatter};
7use std::iter;
8use std::ops::{Index, IndexMut};
9
10pub use basic_blocks::BasicBlocks;
11use either::Either;
12use polonius_engine::Atom;
13use rustc_abi::{FieldIdx, VariantIdx};
14pub use rustc_ast::{Mutability, Pinnedness};
15use rustc_data_structures::fx::{FxHashMap, FxHashSet};
16use rustc_data_structures::graph::dominators::Dominators;
17use rustc_errors::ErrorGuaranteed;
18use rustc_hir::def::{CtorKind, Namespace};
19use rustc_hir::def_id::{CRATE_DEF_ID, DefId};
20use rustc_hir::{
21    self as hir, BindingMode, ByRef, CoroutineDesugaring, CoroutineKind, HirId, ImplicitSelfKind,
22};
23use rustc_index::bit_set::DenseBitSet;
24use rustc_index::{Idx, IndexSlice, IndexVec};
25use rustc_macros::{StableHash, TyDecodable, TyEncodable, TypeFoldable, TypeVisitable};
26use rustc_serialize::{Decodable, Encodable};
27use rustc_span::{DUMMY_SP, Span, Spanned, Symbol};
28use tracing::{debug, trace};
29
30pub use self::query::*;
31use crate::mir::interpret::{AllocRange, Scalar};
32use crate::ty::codec::{TyDecoder, TyEncoder};
33use crate::ty::print::{FmtPrinter, Printer, pretty_print_const, with_no_trimmed_paths};
34use crate::ty::{
35    self, GenericArg, GenericArgsRef, Instance, InstanceKind, List, Ty, TyCtxt, TypeVisitableExt,
36    TypingEnv, UserTypeAnnotationIndex,
37};
38
39mod basic_blocks;
40mod consts;
41pub mod coverage;
42mod generic_graph;
43pub mod generic_graphviz;
44pub mod graphviz;
45pub mod interpret;
46pub mod pretty;
47mod query;
48mod statement;
49mod syntax;
50mod terminator;
51pub mod traversal;
52pub mod visit;
53
54pub use consts::*;
55use pretty::pretty_print_const_value;
56pub use statement::*;
57pub use syntax::*;
58pub use terminator::*;
59
60pub use self::generic_graph::graphviz_safe_def_name;
61pub use self::graphviz::write_mir_graphviz;
62pub use self::pretty::{MirDumper, PassWhere, display_allocation, write_mir_pretty};
63
64/// Types for locals
65pub type LocalDecls<'tcx> = IndexSlice<Local, LocalDecl<'tcx>>;
66
67pub trait HasLocalDecls<'tcx> {
68    fn local_decls(&self) -> &LocalDecls<'tcx>;
69}
70
71impl<'tcx> HasLocalDecls<'tcx> for IndexVec<Local, LocalDecl<'tcx>> {
72    #[inline]
73    fn local_decls(&self) -> &LocalDecls<'tcx> {
74        self
75    }
76}
77
78impl<'tcx> HasLocalDecls<'tcx> for LocalDecls<'tcx> {
79    #[inline]
80    fn local_decls(&self) -> &LocalDecls<'tcx> {
81        self
82    }
83}
84
85impl<'tcx> HasLocalDecls<'tcx> for Body<'tcx> {
86    #[inline]
87    fn local_decls(&self) -> &LocalDecls<'tcx> {
88        &self.local_decls
89    }
90}
91
92impl MirPhase {
93    pub fn name(&self) -> &'static str {
94        match *self {
95            MirPhase::Built => "built",
96            MirPhase::Analysis(AnalysisPhase::Initial) => "analysis",
97            MirPhase::Analysis(AnalysisPhase::PostCleanup) => "analysis-post-cleanup",
98            MirPhase::Runtime(RuntimePhase::Initial) => "runtime",
99            MirPhase::Runtime(RuntimePhase::PostCleanup) => "runtime-post-cleanup",
100            MirPhase::Runtime(RuntimePhase::Optimized) => "runtime-optimized",
101        }
102    }
103
104    /// Gets the (dialect, phase) index of the current `MirPhase`. Both numbers
105    /// are 1-indexed.
106    pub fn index(&self) -> (usize, usize) {
107        match *self {
108            MirPhase::Built => (1, 1),
109            MirPhase::Analysis(analysis_phase) => (2, 1 + analysis_phase as usize),
110            MirPhase::Runtime(runtime_phase) => (3, 1 + runtime_phase as usize),
111        }
112    }
113}
114
115/// Where a specific `mir::Body` comes from.
116#[derive(#[automatically_derived]
impl<'tcx> ::core::marker::Copy for MirSource<'tcx> { }Copy, #[automatically_derived]
impl<'tcx> ::core::clone::Clone for MirSource<'tcx> {
    #[inline]
    fn clone(&self) -> MirSource<'tcx> {
        let _: ::core::clone::AssertParamIsClone<InstanceKind<'tcx>>;
        let _: ::core::clone::AssertParamIsClone<Option<Promoted>>;
        *self
    }
}Clone, #[automatically_derived]
impl<'tcx> ::core::fmt::Debug for MirSource<'tcx> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field2_finish(f, "MirSource",
            "instance", &self.instance, "promoted", &&self.promoted)
    }
}Debug, #[automatically_derived]
impl<'tcx> ::core::cmp::PartialEq for MirSource<'tcx> {
    #[inline]
    fn eq(&self, other: &MirSource<'tcx>) -> bool {
        self.instance == other.instance && self.promoted == other.promoted
    }
}PartialEq, #[automatically_derived]
impl<'tcx> ::core::cmp::Eq for MirSource<'tcx> {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<InstanceKind<'tcx>>;
        let _: ::core::cmp::AssertParamIsEq<Option<Promoted>>;
    }
}Eq)]
117#[derive(const _: () =
    {
        impl<'tcx> ::rustc_data_structures::stable_hash::StableHash for
            MirSource<'tcx> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    MirSource {
                        instance: ref __binding_0, promoted: ref __binding_1 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for MirSource<'tcx> {
            fn encode(&self, __encoder: &mut __E) {
                match *self {
                    MirSource {
                        instance: ref __binding_0, promoted: ref __binding_1 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                    }
                }
            }
        }
    };TyEncodable, const _: () =
    {
        impl<'tcx, __D: ::rustc_middle::ty::codec::TyDecoder<'tcx>>
            ::rustc_serialize::Decodable<__D> for MirSource<'tcx> {
            fn decode(__decoder: &mut __D) -> Self {
                MirSource {
                    instance: ::rustc_serialize::Decodable::decode(__decoder),
                    promoted: ::rustc_serialize::Decodable::decode(__decoder),
                }
            }
        }
    };TyDecodable, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeFoldable<::rustc_middle::ty::TyCtxt<'tcx>>
            for MirSource<'tcx> {
            fn try_fold_with<__F: ::rustc_middle::ty::FallibleTypeFolder<::rustc_middle::ty::TyCtxt<'tcx>>>(self,
                __folder: &mut __F) -> Result<Self, __F::Error> {
                Ok(match self {
                        MirSource { instance: __binding_0, promoted: __binding_1 }
                            => {
                            MirSource {
                                instance: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                promoted: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?,
                            }
                        }
                    })
            }
            fn fold_with<__F: ::rustc_middle::ty::TypeFolder<::rustc_middle::ty::TyCtxt<'tcx>>>(self,
                __folder: &mut __F) -> Self {
                match self {
                    MirSource { instance: __binding_0, promoted: __binding_1 }
                        => {
                        MirSource {
                            instance: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            promoted: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
                                __folder),
                        }
                    }
                }
            }
        }
    };TypeFoldable, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeVisitable<::rustc_middle::ty::TyCtxt<'tcx>>
            for MirSource<'tcx> {
            fn visit_with<__V: ::rustc_middle::ty::TypeVisitor<::rustc_middle::ty::TyCtxt<'tcx>>>(&self,
                __visitor: &mut __V) -> __V::Result {
                match *self {
                    MirSource {
                        instance: ref __binding_0, promoted: ref __binding_1 } => {
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_0,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_1,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                    }
                }
                <__V::Result as ::rustc_middle::ty::VisitorResult>::output()
            }
        }
    };TypeVisitable)]
118pub struct MirSource<'tcx> {
119    pub instance: InstanceKind<'tcx>,
120
121    /// If `Some`, this is a promoted rvalue within the parent function.
122    pub promoted: Option<Promoted>,
123}
124
125impl<'tcx> MirSource<'tcx> {
126    pub fn item(def_id: DefId) -> Self {
127        MirSource { instance: InstanceKind::Item(def_id), promoted: None }
128    }
129
130    pub fn from_instance(instance: InstanceKind<'tcx>) -> Self {
131        MirSource { instance, promoted: None }
132    }
133
134    #[inline]
135    pub fn def_id(&self) -> DefId {
136        self.instance.def_id()
137    }
138}
139
140/// Additional information carried by a MIR body when it is lowered from a coroutine.
141/// This information is modified as it is lowered during the `StateTransform` MIR pass,
142/// so not all fields will be active at a given time. For example, the `yield_ty` is
143/// taken out of the field after yields are turned into returns, and the `coroutine_drop`
144/// body is only populated after the state transform pass.
145#[derive(#[automatically_derived]
impl<'tcx> ::core::clone::Clone for CoroutineInfo<'tcx> {
    #[inline]
    fn clone(&self) -> CoroutineInfo<'tcx> {
        CoroutineInfo {
            yield_ty: ::core::clone::Clone::clone(&self.yield_ty),
            resume_ty: ::core::clone::Clone::clone(&self.resume_ty),
            coroutine_drop: ::core::clone::Clone::clone(&self.coroutine_drop),
            coroutine_drop_async: ::core::clone::Clone::clone(&self.coroutine_drop_async),
            coroutine_drop_proxy_async: ::core::clone::Clone::clone(&self.coroutine_drop_proxy_async),
            coroutine_layout: ::core::clone::Clone::clone(&self.coroutine_layout),
            coroutine_kind: ::core::clone::Clone::clone(&self.coroutine_kind),
        }
    }
}Clone, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for CoroutineInfo<'tcx> {
            fn encode(&self, __encoder: &mut __E) {
                match *self {
                    CoroutineInfo {
                        yield_ty: ref __binding_0,
                        resume_ty: ref __binding_1,
                        coroutine_drop: ref __binding_2,
                        coroutine_drop_async: ref __binding_3,
                        coroutine_drop_proxy_async: ref __binding_4,
                        coroutine_layout: ref __binding_5,
                        coroutine_kind: ref __binding_6 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_2,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_3,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_4,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_5,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_6,
                            __encoder);
                    }
                }
            }
        }
    };TyEncodable, const _: () =
    {
        impl<'tcx, __D: ::rustc_middle::ty::codec::TyDecoder<'tcx>>
            ::rustc_serialize::Decodable<__D> for CoroutineInfo<'tcx> {
            fn decode(__decoder: &mut __D) -> Self {
                CoroutineInfo {
                    yield_ty: ::rustc_serialize::Decodable::decode(__decoder),
                    resume_ty: ::rustc_serialize::Decodable::decode(__decoder),
                    coroutine_drop: ::rustc_serialize::Decodable::decode(__decoder),
                    coroutine_drop_async: ::rustc_serialize::Decodable::decode(__decoder),
                    coroutine_drop_proxy_async: ::rustc_serialize::Decodable::decode(__decoder),
                    coroutine_layout: ::rustc_serialize::Decodable::decode(__decoder),
                    coroutine_kind: ::rustc_serialize::Decodable::decode(__decoder),
                }
            }
        }
    };TyDecodable, #[automatically_derived]
impl<'tcx> ::core::fmt::Debug for CoroutineInfo<'tcx> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        let names: &'static _ =
            &["yield_ty", "resume_ty", "coroutine_drop",
                        "coroutine_drop_async", "coroutine_drop_proxy_async",
                        "coroutine_layout", "coroutine_kind"];
        let values: &[&dyn ::core::fmt::Debug] =
            &[&self.yield_ty, &self.resume_ty, &self.coroutine_drop,
                        &self.coroutine_drop_async,
                        &self.coroutine_drop_proxy_async, &self.coroutine_layout,
                        &&self.coroutine_kind];
        ::core::fmt::Formatter::debug_struct_fields_finish(f, "CoroutineInfo",
            names, values)
    }
}Debug, const _: () =
    {
        impl<'tcx> ::rustc_data_structures::stable_hash::StableHash for
            CoroutineInfo<'tcx> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    CoroutineInfo {
                        yield_ty: ref __binding_0,
                        resume_ty: ref __binding_1,
                        coroutine_drop: ref __binding_2,
                        coroutine_drop_async: ref __binding_3,
                        coroutine_drop_proxy_async: ref __binding_4,
                        coroutine_layout: ref __binding_5,
                        coroutine_kind: ref __binding_6 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                        { __binding_3.stable_hash(__hcx, __hasher); }
                        { __binding_4.stable_hash(__hcx, __hasher); }
                        { __binding_5.stable_hash(__hcx, __hasher); }
                        { __binding_6.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeFoldable<::rustc_middle::ty::TyCtxt<'tcx>>
            for CoroutineInfo<'tcx> {
            fn try_fold_with<__F: ::rustc_middle::ty::FallibleTypeFolder<::rustc_middle::ty::TyCtxt<'tcx>>>(self,
                __folder: &mut __F) -> Result<Self, __F::Error> {
                Ok(match self {
                        CoroutineInfo {
                            yield_ty: __binding_0,
                            resume_ty: __binding_1,
                            coroutine_drop: __binding_2,
                            coroutine_drop_async: __binding_3,
                            coroutine_drop_proxy_async: __binding_4,
                            coroutine_layout: __binding_5,
                            coroutine_kind: __binding_6 } => {
                            CoroutineInfo {
                                yield_ty: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                resume_ty: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?,
                                coroutine_drop: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_2,
                                        __folder)?,
                                coroutine_drop_async: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_3,
                                        __folder)?,
                                coroutine_drop_proxy_async: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_4,
                                        __folder)?,
                                coroutine_layout: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_5,
                                        __folder)?,
                                coroutine_kind: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_6,
                                        __folder)?,
                            }
                        }
                    })
            }
            fn fold_with<__F: ::rustc_middle::ty::TypeFolder<::rustc_middle::ty::TyCtxt<'tcx>>>(self,
                __folder: &mut __F) -> Self {
                match self {
                    CoroutineInfo {
                        yield_ty: __binding_0,
                        resume_ty: __binding_1,
                        coroutine_drop: __binding_2,
                        coroutine_drop_async: __binding_3,
                        coroutine_drop_proxy_async: __binding_4,
                        coroutine_layout: __binding_5,
                        coroutine_kind: __binding_6 } => {
                        CoroutineInfo {
                            yield_ty: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            resume_ty: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
                                __folder),
                            coroutine_drop: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_2,
                                __folder),
                            coroutine_drop_async: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_3,
                                __folder),
                            coroutine_drop_proxy_async: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_4,
                                __folder),
                            coroutine_layout: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_5,
                                __folder),
                            coroutine_kind: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_6,
                                __folder),
                        }
                    }
                }
            }
        }
    };TypeFoldable, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeVisitable<::rustc_middle::ty::TyCtxt<'tcx>>
            for CoroutineInfo<'tcx> {
            fn visit_with<__V: ::rustc_middle::ty::TypeVisitor<::rustc_middle::ty::TyCtxt<'tcx>>>(&self,
                __visitor: &mut __V) -> __V::Result {
                match *self {
                    CoroutineInfo {
                        yield_ty: ref __binding_0,
                        resume_ty: ref __binding_1,
                        coroutine_drop: ref __binding_2,
                        coroutine_drop_async: ref __binding_3,
                        coroutine_drop_proxy_async: ref __binding_4,
                        coroutine_layout: ref __binding_5,
                        coroutine_kind: ref __binding_6 } => {
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_0,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_1,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_2,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_3,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_4,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_5,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_6,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                    }
                }
                <__V::Result as ::rustc_middle::ty::VisitorResult>::output()
            }
        }
    };TypeVisitable)]
146pub struct CoroutineInfo<'tcx> {
147    /// The yield type of the function. This field is removed after the state transform pass.
148    pub yield_ty: Option<Ty<'tcx>>,
149
150    /// The resume type of the function. This field is removed after the state transform pass.
151    pub resume_ty: Option<Ty<'tcx>>,
152
153    /// Coroutine drop glue. This field is populated after the state transform pass.
154    pub coroutine_drop: Option<Body<'tcx>>,
155
156    /// Coroutine async drop glue.
157    pub coroutine_drop_async: Option<Body<'tcx>>,
158
159    /// When coroutine has sync drop, this is async proxy calling `coroutine_drop` sync impl.
160    pub coroutine_drop_proxy_async: Option<Body<'tcx>>,
161
162    /// The layout of a coroutine. Produced by the state transformation.
163    pub coroutine_layout: Option<CoroutineLayout<'tcx>>,
164
165    /// If this is a coroutine then record the type of source expression that caused this coroutine
166    /// to be created.
167    pub coroutine_kind: CoroutineKind,
168}
169
170impl<'tcx> CoroutineInfo<'tcx> {
171    // Sets up `CoroutineInfo` for a pre-coroutine-transform MIR body.
172    pub fn initial(
173        coroutine_kind: CoroutineKind,
174        yield_ty: Ty<'tcx>,
175        resume_ty: Ty<'tcx>,
176    ) -> CoroutineInfo<'tcx> {
177        CoroutineInfo {
178            coroutine_kind,
179            yield_ty: Some(yield_ty),
180            resume_ty: Some(resume_ty),
181            coroutine_drop: None,
182            coroutine_drop_async: None,
183            coroutine_drop_proxy_async: None,
184            coroutine_layout: None,
185        }
186    }
187}
188
189/// Some item that needs to monomorphize successfully for a MIR body to be considered well-formed.
190#[derive(#[automatically_derived]
impl<'tcx> ::core::marker::Copy for MentionedItem<'tcx> { }Copy, #[automatically_derived]
impl<'tcx> ::core::clone::Clone for MentionedItem<'tcx> {
    #[inline]
    fn clone(&self) -> MentionedItem<'tcx> {
        let _: ::core::clone::AssertParamIsClone<Ty<'tcx>>;
        let _: ::core::clone::AssertParamIsClone<Ty<'tcx>>;
        let _: ::core::clone::AssertParamIsClone<Ty<'tcx>>;
        let _: ::core::clone::AssertParamIsClone<Ty<'tcx>>;
        let _: ::core::clone::AssertParamIsClone<Ty<'tcx>>;
        *self
    }
}Clone, #[automatically_derived]
impl<'tcx> ::core::cmp::PartialEq for MentionedItem<'tcx> {
    #[inline]
    fn eq(&self, other: &MentionedItem<'tcx>) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr &&
            match (self, other) {
                (MentionedItem::Fn(__self_0), MentionedItem::Fn(__arg1_0)) =>
                    __self_0 == __arg1_0,
                (MentionedItem::Drop(__self_0), MentionedItem::Drop(__arg1_0))
                    => __self_0 == __arg1_0,
                (MentionedItem::UnsizeCast {
                    source_ty: __self_0, target_ty: __self_1 },
                    MentionedItem::UnsizeCast {
                    source_ty: __arg1_0, target_ty: __arg1_1 }) =>
                    __self_0 == __arg1_0 && __self_1 == __arg1_1,
                (MentionedItem::Closure(__self_0),
                    MentionedItem::Closure(__arg1_0)) => __self_0 == __arg1_0,
                _ => unsafe { ::core::intrinsics::unreachable() }
            }
    }
}PartialEq, #[automatically_derived]
impl<'tcx> ::core::cmp::Eq for MentionedItem<'tcx> {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<Ty<'tcx>>;
        let _: ::core::cmp::AssertParamIsEq<Ty<'tcx>>;
        let _: ::core::cmp::AssertParamIsEq<Ty<'tcx>>;
        let _: ::core::cmp::AssertParamIsEq<Ty<'tcx>>;
        let _: ::core::cmp::AssertParamIsEq<Ty<'tcx>>;
    }
}Eq, #[automatically_derived]
impl<'tcx> ::core::fmt::Debug for MentionedItem<'tcx> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            MentionedItem::Fn(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Fn",
                    &__self_0),
            MentionedItem::Drop(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Drop",
                    &__self_0),
            MentionedItem::UnsizeCast {
                source_ty: __self_0, target_ty: __self_1 } =>
                ::core::fmt::Formatter::debug_struct_field2_finish(f,
                    "UnsizeCast", "source_ty", __self_0, "target_ty",
                    &__self_1),
            MentionedItem::Closure(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "Closure", &__self_0),
        }
    }
}Debug, #[automatically_derived]
impl<'tcx> ::core::hash::Hash for MentionedItem<'tcx> {
    #[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);
        match self {
            MentionedItem::Fn(__self_0) =>
                ::core::hash::Hash::hash(__self_0, state),
            MentionedItem::Drop(__self_0) =>
                ::core::hash::Hash::hash(__self_0, state),
            MentionedItem::UnsizeCast {
                source_ty: __self_0, target_ty: __self_1 } => {
                ::core::hash::Hash::hash(__self_0, state);
                ::core::hash::Hash::hash(__self_1, state)
            }
            MentionedItem::Closure(__self_0) =>
                ::core::hash::Hash::hash(__self_0, state),
        }
    }
}Hash, const _: () =
    {
        impl<'tcx> ::rustc_data_structures::stable_hash::StableHash for
            MentionedItem<'tcx> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    MentionedItem::Fn(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    MentionedItem::Drop(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    MentionedItem::UnsizeCast {
                        source_ty: ref __binding_0, target_ty: ref __binding_1 } =>
                        {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                    MentionedItem::Closure(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for MentionedItem<'tcx> {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        MentionedItem::Fn(ref __binding_0) => { 0usize }
                        MentionedItem::Drop(ref __binding_0) => { 1usize }
                        MentionedItem::UnsizeCast {
                            source_ty: ref __binding_0, target_ty: ref __binding_1 } =>
                            {
                            2usize
                        }
                        MentionedItem::Closure(ref __binding_0) => { 3usize }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    MentionedItem::Fn(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    MentionedItem::Drop(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    MentionedItem::UnsizeCast {
                        source_ty: ref __binding_0, target_ty: ref __binding_1 } =>
                        {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                    }
                    MentionedItem::Closure(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                }
            }
        }
    };TyEncodable, const _: () =
    {
        impl<'tcx, __D: ::rustc_middle::ty::codec::TyDecoder<'tcx>>
            ::rustc_serialize::Decodable<__D> for MentionedItem<'tcx> {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => {
                        MentionedItem::Fn(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    1usize => {
                        MentionedItem::Drop(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    2usize => {
                        MentionedItem::UnsizeCast {
                            source_ty: ::rustc_serialize::Decodable::decode(__decoder),
                            target_ty: ::rustc_serialize::Decodable::decode(__decoder),
                        }
                    }
                    3usize => {
                        MentionedItem::Closure(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `MentionedItem`, expected 0..4, actual {0}",
                                n));
                    }
                }
            }
        }
    };TyDecodable)]
191#[derive(const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeFoldable<::rustc_middle::ty::TyCtxt<'tcx>>
            for MentionedItem<'tcx> {
            fn try_fold_with<__F: ::rustc_middle::ty::FallibleTypeFolder<::rustc_middle::ty::TyCtxt<'tcx>>>(self,
                __folder: &mut __F) -> Result<Self, __F::Error> {
                Ok(match self {
                        MentionedItem::Fn(__binding_0) => {
                            MentionedItem::Fn(::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?)
                        }
                        MentionedItem::Drop(__binding_0) => {
                            MentionedItem::Drop(::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?)
                        }
                        MentionedItem::UnsizeCast {
                            source_ty: __binding_0, target_ty: __binding_1 } => {
                            MentionedItem::UnsizeCast {
                                source_ty: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                target_ty: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?,
                            }
                        }
                        MentionedItem::Closure(__binding_0) => {
                            MentionedItem::Closure(::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?)
                        }
                    })
            }
            fn fold_with<__F: ::rustc_middle::ty::TypeFolder<::rustc_middle::ty::TyCtxt<'tcx>>>(self,
                __folder: &mut __F) -> Self {
                match self {
                    MentionedItem::Fn(__binding_0) => {
                        MentionedItem::Fn(::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder))
                    }
                    MentionedItem::Drop(__binding_0) => {
                        MentionedItem::Drop(::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder))
                    }
                    MentionedItem::UnsizeCast {
                        source_ty: __binding_0, target_ty: __binding_1 } => {
                        MentionedItem::UnsizeCast {
                            source_ty: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            target_ty: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
                                __folder),
                        }
                    }
                    MentionedItem::Closure(__binding_0) => {
                        MentionedItem::Closure(::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder))
                    }
                }
            }
        }
    };TypeFoldable, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeVisitable<::rustc_middle::ty::TyCtxt<'tcx>>
            for MentionedItem<'tcx> {
            fn visit_with<__V: ::rustc_middle::ty::TypeVisitor<::rustc_middle::ty::TyCtxt<'tcx>>>(&self,
                __visitor: &mut __V) -> __V::Result {
                match *self {
                    MentionedItem::Fn(ref __binding_0) => {
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_0,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                    }
                    MentionedItem::Drop(ref __binding_0) => {
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_0,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                    }
                    MentionedItem::UnsizeCast {
                        source_ty: ref __binding_0, target_ty: ref __binding_1 } =>
                        {
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_0,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_1,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                    }
                    MentionedItem::Closure(ref __binding_0) => {
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_0,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                    }
                }
                <__V::Result as ::rustc_middle::ty::VisitorResult>::output()
            }
        }
    };TypeVisitable)]
192pub enum MentionedItem<'tcx> {
193    /// A function that gets called. We don't necessarily know its precise type yet, since it can be
194    /// hidden behind a generic.
195    Fn(Ty<'tcx>),
196    /// A type that has its drop shim called.
197    Drop(Ty<'tcx>),
198    /// Unsizing casts might require vtables, so we have to record them.
199    UnsizeCast { source_ty: Ty<'tcx>, target_ty: Ty<'tcx> },
200    /// A closure that is coerced to a function pointer.
201    Closure(Ty<'tcx>),
202}
203
204/// The lowered representation of a single function.
205#[derive(#[automatically_derived]
impl<'tcx> ::core::clone::Clone for Body<'tcx> {
    #[inline]
    fn clone(&self) -> Body<'tcx> {
        Body {
            basic_blocks: ::core::clone::Clone::clone(&self.basic_blocks),
            phase: ::core::clone::Clone::clone(&self.phase),
            pass_count: ::core::clone::Clone::clone(&self.pass_count),
            source: ::core::clone::Clone::clone(&self.source),
            source_scopes: ::core::clone::Clone::clone(&self.source_scopes),
            coroutine: ::core::clone::Clone::clone(&self.coroutine),
            local_decls: ::core::clone::Clone::clone(&self.local_decls),
            user_type_annotations: ::core::clone::Clone::clone(&self.user_type_annotations),
            arg_count: ::core::clone::Clone::clone(&self.arg_count),
            spread_arg: ::core::clone::Clone::clone(&self.spread_arg),
            var_debug_info: ::core::clone::Clone::clone(&self.var_debug_info),
            span: ::core::clone::Clone::clone(&self.span),
            required_consts: ::core::clone::Clone::clone(&self.required_consts),
            mentioned_items: ::core::clone::Clone::clone(&self.mentioned_items),
            is_polymorphic: ::core::clone::Clone::clone(&self.is_polymorphic),
            injection_phase: ::core::clone::Clone::clone(&self.injection_phase),
            tainted_by_errors: ::core::clone::Clone::clone(&self.tainted_by_errors),
            coverage_info_hi: ::core::clone::Clone::clone(&self.coverage_info_hi),
            function_coverage_info: ::core::clone::Clone::clone(&self.function_coverage_info),
        }
    }
}Clone, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for Body<'tcx> {
            fn encode(&self, __encoder: &mut __E) {
                match *self {
                    Body {
                        basic_blocks: ref __binding_0,
                        phase: ref __binding_1,
                        pass_count: ref __binding_2,
                        source: ref __binding_3,
                        source_scopes: ref __binding_4,
                        coroutine: ref __binding_5,
                        local_decls: ref __binding_6,
                        user_type_annotations: ref __binding_7,
                        arg_count: ref __binding_8,
                        spread_arg: ref __binding_9,
                        var_debug_info: ref __binding_10,
                        span: ref __binding_11,
                        required_consts: ref __binding_12,
                        mentioned_items: ref __binding_13,
                        is_polymorphic: ref __binding_14,
                        injection_phase: ref __binding_15,
                        tainted_by_errors: ref __binding_16,
                        coverage_info_hi: ref __binding_17,
                        function_coverage_info: ref __binding_18 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_2,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_3,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_4,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_5,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_6,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_7,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_8,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_9,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_10,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_11,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_12,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_13,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_14,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_15,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_16,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_17,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_18,
                            __encoder);
                    }
                }
            }
        }
    };TyEncodable, const _: () =
    {
        impl<'tcx, __D: ::rustc_middle::ty::codec::TyDecoder<'tcx>>
            ::rustc_serialize::Decodable<__D> for Body<'tcx> {
            fn decode(__decoder: &mut __D) -> Self {
                Body {
                    basic_blocks: ::rustc_serialize::Decodable::decode(__decoder),
                    phase: ::rustc_serialize::Decodable::decode(__decoder),
                    pass_count: ::rustc_serialize::Decodable::decode(__decoder),
                    source: ::rustc_serialize::Decodable::decode(__decoder),
                    source_scopes: ::rustc_serialize::Decodable::decode(__decoder),
                    coroutine: ::rustc_serialize::Decodable::decode(__decoder),
                    local_decls: ::rustc_serialize::Decodable::decode(__decoder),
                    user_type_annotations: ::rustc_serialize::Decodable::decode(__decoder),
                    arg_count: ::rustc_serialize::Decodable::decode(__decoder),
                    spread_arg: ::rustc_serialize::Decodable::decode(__decoder),
                    var_debug_info: ::rustc_serialize::Decodable::decode(__decoder),
                    span: ::rustc_serialize::Decodable::decode(__decoder),
                    required_consts: ::rustc_serialize::Decodable::decode(__decoder),
                    mentioned_items: ::rustc_serialize::Decodable::decode(__decoder),
                    is_polymorphic: ::rustc_serialize::Decodable::decode(__decoder),
                    injection_phase: ::rustc_serialize::Decodable::decode(__decoder),
                    tainted_by_errors: ::rustc_serialize::Decodable::decode(__decoder),
                    coverage_info_hi: ::rustc_serialize::Decodable::decode(__decoder),
                    function_coverage_info: ::rustc_serialize::Decodable::decode(__decoder),
                }
            }
        }
    };TyDecodable, #[automatically_derived]
impl<'tcx> ::core::fmt::Debug for Body<'tcx> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        let names: &'static _ =
            &["basic_blocks", "phase", "pass_count", "source",
                        "source_scopes", "coroutine", "local_decls",
                        "user_type_annotations", "arg_count", "spread_arg",
                        "var_debug_info", "span", "required_consts",
                        "mentioned_items", "is_polymorphic", "injection_phase",
                        "tainted_by_errors", "coverage_info_hi",
                        "function_coverage_info"];
        let values: &[&dyn ::core::fmt::Debug] =
            &[&self.basic_blocks, &self.phase, &self.pass_count, &self.source,
                        &self.source_scopes, &self.coroutine, &self.local_decls,
                        &self.user_type_annotations, &self.arg_count,
                        &self.spread_arg, &self.var_debug_info, &self.span,
                        &self.required_consts, &self.mentioned_items,
                        &self.is_polymorphic, &self.injection_phase,
                        &self.tainted_by_errors, &self.coverage_info_hi,
                        &&self.function_coverage_info];
        ::core::fmt::Formatter::debug_struct_fields_finish(f, "Body", names,
            values)
    }
}Debug, const _: () =
    {
        impl<'tcx> ::rustc_data_structures::stable_hash::StableHash for
            Body<'tcx> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    Body {
                        basic_blocks: ref __binding_0,
                        phase: ref __binding_1,
                        pass_count: ref __binding_2,
                        source: ref __binding_3,
                        source_scopes: ref __binding_4,
                        coroutine: ref __binding_5,
                        local_decls: ref __binding_6,
                        user_type_annotations: ref __binding_7,
                        arg_count: ref __binding_8,
                        spread_arg: ref __binding_9,
                        var_debug_info: ref __binding_10,
                        span: ref __binding_11,
                        required_consts: ref __binding_12,
                        mentioned_items: ref __binding_13,
                        is_polymorphic: ref __binding_14,
                        injection_phase: ref __binding_15,
                        tainted_by_errors: ref __binding_16,
                        coverage_info_hi: ref __binding_17,
                        function_coverage_info: ref __binding_18 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                        { __binding_3.stable_hash(__hcx, __hasher); }
                        { __binding_4.stable_hash(__hcx, __hasher); }
                        { __binding_5.stable_hash(__hcx, __hasher); }
                        { __binding_6.stable_hash(__hcx, __hasher); }
                        { __binding_7.stable_hash(__hcx, __hasher); }
                        { __binding_8.stable_hash(__hcx, __hasher); }
                        { __binding_9.stable_hash(__hcx, __hasher); }
                        { __binding_10.stable_hash(__hcx, __hasher); }
                        { __binding_11.stable_hash(__hcx, __hasher); }
                        { __binding_12.stable_hash(__hcx, __hasher); }
                        { __binding_13.stable_hash(__hcx, __hasher); }
                        { __binding_14.stable_hash(__hcx, __hasher); }
                        { __binding_15.stable_hash(__hcx, __hasher); }
                        { __binding_16.stable_hash(__hcx, __hasher); }
                        { __binding_17.stable_hash(__hcx, __hasher); }
                        { __binding_18.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeFoldable<::rustc_middle::ty::TyCtxt<'tcx>>
            for Body<'tcx> {
            fn try_fold_with<__F: ::rustc_middle::ty::FallibleTypeFolder<::rustc_middle::ty::TyCtxt<'tcx>>>(self,
                __folder: &mut __F) -> Result<Self, __F::Error> {
                Ok(match self {
                        Body {
                            basic_blocks: __binding_0,
                            phase: __binding_1,
                            pass_count: __binding_2,
                            source: __binding_3,
                            source_scopes: __binding_4,
                            coroutine: __binding_5,
                            local_decls: __binding_6,
                            user_type_annotations: __binding_7,
                            arg_count: __binding_8,
                            spread_arg: __binding_9,
                            var_debug_info: __binding_10,
                            span: __binding_11,
                            required_consts: __binding_12,
                            mentioned_items: __binding_13,
                            is_polymorphic: __binding_14,
                            injection_phase: __binding_15,
                            tainted_by_errors: __binding_16,
                            coverage_info_hi: __binding_17,
                            function_coverage_info: __binding_18 } => {
                            Body {
                                basic_blocks: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                phase: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?,
                                pass_count: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_2,
                                        __folder)?,
                                source: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_3,
                                        __folder)?,
                                source_scopes: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_4,
                                        __folder)?,
                                coroutine: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_5,
                                        __folder)?,
                                local_decls: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_6,
                                        __folder)?,
                                user_type_annotations: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_7,
                                        __folder)?,
                                arg_count: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_8,
                                        __folder)?,
                                spread_arg: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_9,
                                        __folder)?,
                                var_debug_info: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_10,
                                        __folder)?,
                                span: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_11,
                                        __folder)?,
                                required_consts: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_12,
                                        __folder)?,
                                mentioned_items: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_13,
                                        __folder)?,
                                is_polymorphic: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_14,
                                        __folder)?,
                                injection_phase: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_15,
                                        __folder)?,
                                tainted_by_errors: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_16,
                                        __folder)?,
                                coverage_info_hi: __binding_17,
                                function_coverage_info: __binding_18,
                            }
                        }
                    })
            }
            fn fold_with<__F: ::rustc_middle::ty::TypeFolder<::rustc_middle::ty::TyCtxt<'tcx>>>(self,
                __folder: &mut __F) -> Self {
                match self {
                    Body {
                        basic_blocks: __binding_0,
                        phase: __binding_1,
                        pass_count: __binding_2,
                        source: __binding_3,
                        source_scopes: __binding_4,
                        coroutine: __binding_5,
                        local_decls: __binding_6,
                        user_type_annotations: __binding_7,
                        arg_count: __binding_8,
                        spread_arg: __binding_9,
                        var_debug_info: __binding_10,
                        span: __binding_11,
                        required_consts: __binding_12,
                        mentioned_items: __binding_13,
                        is_polymorphic: __binding_14,
                        injection_phase: __binding_15,
                        tainted_by_errors: __binding_16,
                        coverage_info_hi: __binding_17,
                        function_coverage_info: __binding_18 } => {
                        Body {
                            basic_blocks: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            phase: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
                                __folder),
                            pass_count: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_2,
                                __folder),
                            source: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_3,
                                __folder),
                            source_scopes: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_4,
                                __folder),
                            coroutine: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_5,
                                __folder),
                            local_decls: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_6,
                                __folder),
                            user_type_annotations: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_7,
                                __folder),
                            arg_count: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_8,
                                __folder),
                            spread_arg: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_9,
                                __folder),
                            var_debug_info: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_10,
                                __folder),
                            span: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_11,
                                __folder),
                            required_consts: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_12,
                                __folder),
                            mentioned_items: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_13,
                                __folder),
                            is_polymorphic: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_14,
                                __folder),
                            injection_phase: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_15,
                                __folder),
                            tainted_by_errors: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_16,
                                __folder),
                            coverage_info_hi: __binding_17,
                            function_coverage_info: __binding_18,
                        }
                    }
                }
            }
        }
    };TypeFoldable, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeVisitable<::rustc_middle::ty::TyCtxt<'tcx>>
            for Body<'tcx> {
            fn visit_with<__V: ::rustc_middle::ty::TypeVisitor<::rustc_middle::ty::TyCtxt<'tcx>>>(&self,
                __visitor: &mut __V) -> __V::Result {
                match *self {
                    Body {
                        basic_blocks: ref __binding_0,
                        phase: ref __binding_1,
                        pass_count: ref __binding_2,
                        source: ref __binding_3,
                        source_scopes: ref __binding_4,
                        coroutine: ref __binding_5,
                        local_decls: ref __binding_6,
                        user_type_annotations: ref __binding_7,
                        arg_count: ref __binding_8,
                        spread_arg: ref __binding_9,
                        var_debug_info: ref __binding_10,
                        span: ref __binding_11,
                        required_consts: ref __binding_12,
                        mentioned_items: ref __binding_13,
                        is_polymorphic: ref __binding_14,
                        injection_phase: ref __binding_15,
                        tainted_by_errors: ref __binding_16, .. } => {
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_0,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_1,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_2,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_3,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_4,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_5,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_6,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_7,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_8,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_9,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_10,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_11,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_12,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_13,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_14,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_15,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_16,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                    }
                }
                <__V::Result as ::rustc_middle::ty::VisitorResult>::output()
            }
        }
    };TypeVisitable)]
206pub struct Body<'tcx> {
207    /// A list of basic blocks. References to basic block use a newtyped index type [`BasicBlock`]
208    /// that indexes into this vector.
209    pub basic_blocks: BasicBlocks<'tcx>,
210
211    /// Records how far through the "desugaring and optimization" process this particular
212    /// MIR has traversed. This is particularly useful when inlining, since in that context
213    /// we instantiate the promoted constants and add them to our promoted vector -- but those
214    /// promoted items have already been optimized, whereas ours have not. This field allows
215    /// us to see the difference and forego optimization on the inlined promoted items.
216    pub phase: MirPhase,
217
218    /// How many passes we have executed since starting the current phase. Used for debug output.
219    pub pass_count: usize,
220
221    pub source: MirSource<'tcx>,
222
223    /// A list of source scopes; these are referenced by statements
224    /// and used for debuginfo. Indexed by a `SourceScope`.
225    pub source_scopes: IndexVec<SourceScope, SourceScopeData<'tcx>>,
226
227    /// Additional information carried by a MIR body when it is lowered from a coroutine.
228    ///
229    /// Note that the coroutine drop shim, any promoted consts, and other synthetic MIR
230    /// bodies that come from processing a coroutine body are not typically coroutines
231    /// themselves, and should probably set this to `None` to avoid carrying redundant
232    /// information.
233    pub coroutine: Option<Box<CoroutineInfo<'tcx>>>,
234
235    /// Declarations of locals.
236    ///
237    /// The first local is the return value pointer, followed by `arg_count`
238    /// locals for the function arguments, followed by any user-declared
239    /// variables and temporaries.
240    pub local_decls: IndexVec<Local, LocalDecl<'tcx>>,
241
242    /// User type annotations.
243    pub user_type_annotations: ty::CanonicalUserTypeAnnotations<'tcx>,
244
245    /// The number of arguments this function takes.
246    ///
247    /// Starting at local 1, `arg_count` locals will be provided by the caller
248    /// and can be assumed to be initialized.
249    ///
250    /// If this MIR was built for a constant, this will be 0.
251    pub arg_count: usize,
252
253    /// Mark an argument local (which must be a tuple) as getting passed as
254    /// its individual components at the LLVM level.
255    ///
256    /// This is used for the "rust-call" ABI.
257    pub spread_arg: Option<Local>,
258
259    /// Debug information pertaining to user variables, including captures.
260    pub var_debug_info: Vec<VarDebugInfo<'tcx>>,
261
262    /// A span representing this MIR, for error reporting.
263    pub span: Span,
264
265    /// Constants that are required to evaluate successfully for this MIR to be well-formed.
266    /// We hold in this field all the constants we are not able to evaluate yet.
267    /// `None` indicates that the list has not been computed yet.
268    ///
269    /// This is soundness-critical, we make a guarantee that all consts syntactically mentioned in a
270    /// function have successfully evaluated if the function ever gets executed at runtime.
271    pub required_consts: Option<Vec<ConstOperand<'tcx>>>,
272
273    /// Further items that were mentioned in this function and hence *may* become monomorphized,
274    /// depending on optimizations. We use this to avoid optimization-dependent compile errors: the
275    /// collector recursively traverses all "mentioned" items and evaluates all their
276    /// `required_consts`.
277    /// `None` indicates that the list has not been computed yet.
278    ///
279    /// This is *not* soundness-critical and the contents of this list are *not* a stable guarantee.
280    /// All that's relevant is that this set is optimization-level-independent, and that it includes
281    /// everything that the collector would consider "used". (For example, we currently compute this
282    /// set after drop elaboration, so some drop calls that can never be reached are not considered
283    /// "mentioned".) See the documentation of `CollectionMode` in
284    /// `compiler/rustc_monomorphize/src/collector.rs` for more context.
285    pub mentioned_items: Option<Vec<Spanned<MentionedItem<'tcx>>>>,
286
287    /// Does this body use generic parameters. This is used for the `ConstEvaluatable` check.
288    ///
289    /// Note that this does not actually mean that this body is not computable right now.
290    /// The repeat count in the following example is polymorphic, but can still be evaluated
291    /// without knowing anything about the type parameter `T`.
292    ///
293    /// ```rust
294    /// fn test<T>() {
295    ///     let _ = [0; size_of::<*mut T>()];
296    /// }
297    /// ```
298    ///
299    /// **WARNING**: Do not change this flags after the MIR was originally created, even if an optimization
300    /// removed the last mention of all generic params. We do not want to rely on optimizations and
301    /// potentially allow things like `[u8; size_of::<T>() * 0]` due to this.
302    pub is_polymorphic: bool,
303
304    /// The phase at which this MIR should be "injected" into the compilation process.
305    ///
306    /// Everything that comes before this `MirPhase` should be skipped.
307    ///
308    /// This is only `Some` if the function that this body comes from was annotated with `rustc_custom_mir`.
309    pub injection_phase: Option<MirPhase>,
310
311    pub tainted_by_errors: Option<ErrorGuaranteed>,
312
313    /// Coverage information collected from THIR/MIR during MIR building,
314    /// to be used by the `InstrumentCoverage` pass.
315    ///
316    /// Only present if coverage is enabled and this function is eligible.
317    /// Boxed to limit space overhead in non-coverage builds.
318    #[type_foldable(identity)]
319    #[type_visitable(ignore)]
320    pub coverage_info_hi: Option<Box<coverage::CoverageInfoHi>>,
321
322    /// Per-function coverage information added by the `InstrumentCoverage`
323    /// pass, to be used in conjunction with the coverage statements injected
324    /// into this body's blocks.
325    ///
326    /// If `-Cinstrument-coverage` is not active, or if an individual function
327    /// is not eligible for coverage, then this should always be `None`.
328    #[type_foldable(identity)]
329    #[type_visitable(ignore)]
330    pub function_coverage_info: Option<Box<coverage::FunctionCoverageInfo>>,
331}
332
333impl<'tcx> Body<'tcx> {
334    pub fn new(
335        source: MirSource<'tcx>,
336        basic_blocks: IndexVec<BasicBlock, BasicBlockData<'tcx>>,
337        source_scopes: IndexVec<SourceScope, SourceScopeData<'tcx>>,
338        local_decls: IndexVec<Local, LocalDecl<'tcx>>,
339        user_type_annotations: ty::CanonicalUserTypeAnnotations<'tcx>,
340        arg_count: usize,
341        var_debug_info: Vec<VarDebugInfo<'tcx>>,
342        span: Span,
343        coroutine: Option<Box<CoroutineInfo<'tcx>>>,
344        tainted_by_errors: Option<ErrorGuaranteed>,
345    ) -> Self {
346        // We need `arg_count` locals, and one for the return place.
347        if !(local_decls.len() > arg_count) {
    {
        ::core::panicking::panic_fmt(format_args!("expected at least {0} locals, got {1}",
                arg_count + 1, local_decls.len()));
    }
};assert!(
348            local_decls.len() > arg_count,
349            "expected at least {} locals, got {}",
350            arg_count + 1,
351            local_decls.len()
352        );
353
354        let mut body = Body {
355            phase: MirPhase::Built,
356            pass_count: 0,
357            source,
358            basic_blocks: BasicBlocks::new(basic_blocks),
359            source_scopes,
360            coroutine,
361            local_decls,
362            user_type_annotations,
363            arg_count,
364            spread_arg: None,
365            var_debug_info,
366            span,
367            required_consts: None,
368            mentioned_items: None,
369            is_polymorphic: false,
370            injection_phase: None,
371            tainted_by_errors,
372            coverage_info_hi: None,
373            function_coverage_info: None,
374        };
375        body.is_polymorphic = body.has_non_region_param();
376        body
377    }
378
379    /// Returns a partially initialized MIR body containing only a list of basic blocks.
380    ///
381    /// The returned MIR contains no `LocalDecl`s (even for the return place) or source scopes. It
382    /// is only useful for testing but cannot be `#[cfg(test)]` because it is used in a different
383    /// crate.
384    pub fn new_cfg_only(basic_blocks: IndexVec<BasicBlock, BasicBlockData<'tcx>>) -> Self {
385        let mut body = Body {
386            phase: MirPhase::Built,
387            pass_count: 0,
388            source: MirSource::item(CRATE_DEF_ID.to_def_id()),
389            basic_blocks: BasicBlocks::new(basic_blocks),
390            source_scopes: IndexVec::new(),
391            coroutine: None,
392            local_decls: IndexVec::new(),
393            user_type_annotations: IndexVec::new(),
394            arg_count: 0,
395            spread_arg: None,
396            span: DUMMY_SP,
397            required_consts: None,
398            mentioned_items: None,
399            var_debug_info: Vec::new(),
400            is_polymorphic: false,
401            injection_phase: None,
402            tainted_by_errors: None,
403            coverage_info_hi: None,
404            function_coverage_info: None,
405        };
406        body.is_polymorphic = body.has_non_region_param();
407        body
408    }
409
410    #[inline]
411    pub fn basic_blocks_mut(&mut self) -> &mut IndexVec<BasicBlock, BasicBlockData<'tcx>> {
412        self.basic_blocks.as_mut()
413    }
414
415    pub fn typing_env(&self, tcx: TyCtxt<'tcx>) -> TypingEnv<'tcx> {
416        if tcx.use_typing_mode_borrowck() {
417            match self.phase {
418                MirPhase::Built if let Some(def_id) = self.source.def_id().as_local() => {
419                    TypingEnv::new(
420                        tcx.param_env(self.source.def_id()),
421                        ty::TypingMode::borrowck(tcx, def_id),
422                    )
423                }
424                MirPhase::Analysis(_) if let Some(def_id) = self.source.def_id().as_local() => {
425                    TypingEnv::new(
426                        tcx.param_env(self.source.def_id()),
427                        ty::TypingMode::post_borrowck_analysis(tcx, def_id),
428                    )
429                }
430                MirPhase::Built | MirPhase::Analysis(_) => {
431                    // This branch happens for drop glue and fn ptr shims.
432                    // FIXME: why do we do any of this analysis on drop glue etc?
433                    // This should ideally all be skipped.
434                    TypingEnv::post_analysis(tcx, self.source.def_id())
435                }
436                MirPhase::Runtime(_) => TypingEnv::post_analysis(tcx, self.source.def_id()),
437            }
438        } else {
439            match self.phase {
440                MirPhase::Built | MirPhase::Analysis(_) => TypingEnv::new(
441                    tcx.param_env(self.source.def_id()),
442                    ty::TypingMode::non_body_analysis(),
443                ),
444                MirPhase::Runtime(_) => TypingEnv::post_analysis(tcx, self.source.def_id()),
445            }
446        }
447    }
448
449    #[inline]
450    pub fn local_kind(&self, local: Local) -> LocalKind {
451        let index = local.as_usize();
452        if index == 0 {
453            if true {
    if !(self.local_decls[local].mutability == Mutability::Mut) {
        {
            ::core::panicking::panic_fmt(format_args!("return place should be mutable"));
        }
    };
};debug_assert!(
454                self.local_decls[local].mutability == Mutability::Mut,
455                "return place should be mutable"
456            );
457
458            LocalKind::ReturnPointer
459        } else if index < self.arg_count + 1 {
460            LocalKind::Arg
461        } else {
462            LocalKind::Temp
463        }
464    }
465
466    /// Returns an iterator over all user-declared mutable locals.
467    #[inline]
468    pub fn mut_vars_iter(&self) -> impl Iterator<Item = Local> {
469        (self.arg_count + 1..self.local_decls.len()).filter_map(move |index| {
470            let local = Local::new(index);
471            let decl = &self.local_decls[local];
472            (decl.is_user_variable() && decl.mutability.is_mut()).then_some(local)
473        })
474    }
475
476    /// Returns an iterator over all user-declared mutable arguments and locals.
477    #[inline]
478    pub fn mut_vars_and_args_iter(&self) -> impl Iterator<Item = Local> {
479        (1..self.local_decls.len()).filter_map(move |index| {
480            let local = Local::new(index);
481            let decl = &self.local_decls[local];
482            if (decl.is_user_variable() || index < self.arg_count + 1)
483                && decl.mutability == Mutability::Mut
484            {
485                Some(local)
486            } else {
487                None
488            }
489        })
490    }
491
492    /// Returns an iterator over all function arguments.
493    #[inline]
494    pub fn args_iter(&self) -> impl Iterator<Item = Local> + ExactSizeIterator + use<> {
495        (1..self.arg_count + 1).map(Local::new)
496    }
497
498    /// Returns an iterator over all user-defined variables and compiler-generated temporaries (all
499    /// locals that are neither arguments nor the return place).
500    #[inline]
501    pub fn vars_and_temps_iter(
502        &self,
503    ) -> impl DoubleEndedIterator<Item = Local> + ExactSizeIterator {
504        (self.arg_count + 1..self.local_decls.len()).map(Local::new)
505    }
506
507    #[inline]
508    pub fn drain_vars_and_temps(&mut self) -> impl Iterator<Item = LocalDecl<'tcx>> {
509        self.local_decls.drain(self.arg_count + 1..)
510    }
511
512    /// Returns the source info associated with `location`.
513    pub fn source_info(&self, location: Location) -> &SourceInfo {
514        let block = &self[location.block];
515        let stmts = &block.statements;
516        let idx = location.statement_index;
517        if idx < stmts.len() {
518            &stmts[idx].source_info
519        } else {
520            match (&idx, &stmts.len()) {
    (left_val, right_val) => {
        if !(*left_val == *right_val) {
            let kind = ::core::panicking::AssertKind::Eq;
            ::core::panicking::assert_failed(kind, &*left_val, &*right_val,
                ::core::option::Option::None);
        }
    }
};assert_eq!(idx, stmts.len());
521            &block.terminator().source_info
522        }
523    }
524
525    /// Returns the return type; it always return first element from `local_decls` array.
526    #[inline]
527    pub fn return_ty(&self) -> Ty<'tcx> {
528        self.local_decls[RETURN_PLACE].ty
529    }
530
531    /// Returns the return type; it always return first element from `local_decls` array.
532    #[inline]
533    pub fn bound_return_ty(&self) -> ty::EarlyBinder<'tcx, Ty<'tcx>> {
534        ty::EarlyBinder::bind(self.local_decls[RETURN_PLACE].ty)
535    }
536
537    /// Gets the location of the terminator for the given block.
538    #[inline]
539    pub fn terminator_loc(&self, bb: BasicBlock) -> Location {
540        Location { block: bb, statement_index: self[bb].statements.len() }
541    }
542
543    pub fn stmt_at(&self, location: Location) -> Either<&Statement<'tcx>, &Terminator<'tcx>> {
544        let Location { block, statement_index } = location;
545        let block_data = &self.basic_blocks[block];
546        block_data
547            .statements
548            .get(statement_index)
549            .map(Either::Left)
550            .unwrap_or_else(|| Either::Right(block_data.terminator()))
551    }
552
553    #[inline]
554    pub fn yield_ty(&self) -> Option<Ty<'tcx>> {
555        self.coroutine.as_ref().and_then(|coroutine| coroutine.yield_ty)
556    }
557
558    #[inline]
559    pub fn resume_ty(&self) -> Option<Ty<'tcx>> {
560        self.coroutine.as_ref().and_then(|coroutine| coroutine.resume_ty)
561    }
562
563    /// Prefer going through [`TyCtxt::coroutine_layout`] rather than using this directly.
564    #[inline]
565    pub fn coroutine_layout_raw(&self) -> Option<&CoroutineLayout<'tcx>> {
566        self.coroutine.as_ref().and_then(|coroutine| coroutine.coroutine_layout.as_ref())
567    }
568
569    #[inline]
570    pub fn coroutine_drop(&self) -> Option<&Body<'tcx>> {
571        self.coroutine.as_ref().and_then(|coroutine| coroutine.coroutine_drop.as_ref())
572    }
573
574    #[inline]
575    pub fn coroutine_drop_async(&self) -> Option<&Body<'tcx>> {
576        self.coroutine.as_ref().and_then(|coroutine| coroutine.coroutine_drop_async.as_ref())
577    }
578
579    #[inline]
580    pub fn coroutine_requires_async_drop(&self) -> bool {
581        self.coroutine_drop_async().is_some()
582    }
583
584    #[inline]
585    pub fn future_drop_poll(&self) -> Option<&Body<'tcx>> {
586        self.coroutine.as_ref().and_then(|coroutine| {
587            coroutine
588                .coroutine_drop_async
589                .as_ref()
590                .or(coroutine.coroutine_drop_proxy_async.as_ref())
591        })
592    }
593
594    #[inline]
595    pub fn coroutine_kind(&self) -> Option<CoroutineKind> {
596        self.coroutine.as_ref().map(|coroutine| coroutine.coroutine_kind)
597    }
598
599    #[inline]
600    pub fn should_skip(&self) -> bool {
601        let Some(injection_phase) = self.injection_phase else {
602            return false;
603        };
604        injection_phase > self.phase
605    }
606
607    #[inline]
608    pub fn is_custom_mir(&self) -> bool {
609        self.injection_phase.is_some()
610    }
611
612    /// If this basic block ends with a [`TerminatorKind::SwitchInt`] for which we can evaluate the
613    /// discriminant in monomorphization, we return the discriminant bits and the
614    /// [`SwitchTargets`], just so the caller doesn't also have to match on the terminator.
615    fn try_const_mono_switchint<'a>(
616        tcx: TyCtxt<'tcx>,
617        instance: Instance<'tcx>,
618        block: &'a BasicBlockData<'tcx>,
619    ) -> Option<(u128, &'a SwitchTargets)> {
620        // There are two places here we need to evaluate a constant.
621        let eval_mono_const = |constant: &ConstOperand<'tcx>| {
622            // FIXME(#132279): what is this, why are we using an empty environment here.
623            let typing_env = ty::TypingEnv::fully_monomorphized();
624            let mono_literal = instance.instantiate_mir_and_normalize_erasing_regions(
625                tcx,
626                typing_env,
627                crate::ty::EarlyBinder::bind(constant.const_),
628            );
629            mono_literal.try_eval_bits(tcx, typing_env)
630        };
631
632        let TerminatorKind::SwitchInt { discr, targets } = &block.terminator().kind else {
633            return None;
634        };
635
636        // If this is a SwitchInt(const _), then we can just evaluate the constant and return.
637        let discr = match discr {
638            Operand::Constant(constant) => {
639                let bits = eval_mono_const(constant)?;
640                return Some((bits, targets));
641            }
642            Operand::RuntimeChecks(check) => {
643                let bits = check.value(tcx.sess) as u128;
644                return Some((bits, targets));
645            }
646            Operand::Move(place) | Operand::Copy(place) => place,
647        };
648
649        // MIR for `if false` actually looks like this:
650        // _1 = const _
651        // SwitchInt(_1)
652        //
653        // And MIR for if intrinsics::ub_checks() looks like this:
654        // _1 = UbChecks()
655        // SwitchInt(_1)
656        //
657        // So we're going to try to recognize this pattern.
658        //
659        // If we have a SwitchInt on a non-const place, we find the most recent statement that
660        // isn't a storage marker. If that statement is an assignment of a const to our
661        // discriminant place, we evaluate and return the const, as if we've const-propagated it
662        // into the SwitchInt.
663
664        let last_stmt = block.statements.iter().rev().find(|stmt| {
665            !#[allow(non_exhaustive_omitted_patterns)] match stmt.kind {
    StatementKind::StorageDead(_) | StatementKind::StorageLive(_) => true,
    _ => false,
}matches!(stmt.kind, StatementKind::StorageDead(_) | StatementKind::StorageLive(_))
666        })?;
667
668        let (place, rvalue) = last_stmt.kind.as_assign()?;
669
670        if discr != place {
671            return None;
672        }
673
674        match rvalue {
675            Rvalue::Use(Operand::Constant(constant), _) => {
676                let bits = eval_mono_const(constant)?;
677                Some((bits, targets))
678            }
679            _ => None,
680        }
681    }
682
683    /// For a `Location` in this scope, determine what the "caller location" at that point is. This
684    /// is interesting because of inlining: the `#[track_caller]` attribute of inlined functions
685    /// must be honored. Falls back to the `tracked_caller` value for `#[track_caller]` functions,
686    /// or the function's scope.
687    pub fn caller_location_span<T>(
688        &self,
689        mut source_info: SourceInfo,
690        caller_location: Option<T>,
691        tcx: TyCtxt<'tcx>,
692        from_span: impl FnOnce(Span) -> T,
693    ) -> T {
694        loop {
695            let scope_data = &self.source_scopes[source_info.scope];
696
697            if let Some((callee, callsite_span)) = scope_data.inlined {
698                // Stop inside the most nested non-`#[track_caller]` function,
699                // before ever reaching its caller (which is irrelevant).
700                if !callee.def.requires_caller_location(tcx) {
701                    return from_span(source_info.span);
702                }
703                source_info.span = callsite_span;
704            }
705
706            // Skip past all of the parents with `inlined: None`.
707            match scope_data.inlined_parent_scope {
708                Some(parent) => source_info.scope = parent,
709                None => break,
710            }
711        }
712
713        // No inlined `SourceScope`s, or all of them were `#[track_caller]`.
714        caller_location.unwrap_or_else(|| from_span(source_info.span))
715    }
716
717    #[track_caller]
718    pub fn set_required_consts(&mut self, required_consts: Vec<ConstOperand<'tcx>>) {
719        if !self.required_consts.is_none() {
    {
        ::core::panicking::panic_fmt(format_args!("required_consts for {0:?} have already been set",
                self.source.def_id()));
    }
};assert!(
720            self.required_consts.is_none(),
721            "required_consts for {:?} have already been set",
722            self.source.def_id()
723        );
724        self.required_consts = Some(required_consts);
725    }
726    #[track_caller]
727    pub fn required_consts(&self) -> &[ConstOperand<'tcx>] {
728        match &self.required_consts {
729            Some(l) => l,
730            None => {
    ::core::panicking::panic_fmt(format_args!("required_consts for {0:?} have not yet been set",
            self.source.def_id()));
}panic!("required_consts for {:?} have not yet been set", self.source.def_id()),
731        }
732    }
733
734    #[track_caller]
735    pub fn set_mentioned_items(&mut self, mentioned_items: Vec<Spanned<MentionedItem<'tcx>>>) {
736        if !self.mentioned_items.is_none() {
    {
        ::core::panicking::panic_fmt(format_args!("mentioned_items for {0:?} have already been set",
                self.source.def_id()));
    }
};assert!(
737            self.mentioned_items.is_none(),
738            "mentioned_items for {:?} have already been set",
739            self.source.def_id()
740        );
741        self.mentioned_items = Some(mentioned_items);
742    }
743    #[track_caller]
744    pub fn mentioned_items(&self) -> &[Spanned<MentionedItem<'tcx>>] {
745        match &self.mentioned_items {
746            Some(l) => l,
747            None => {
    ::core::panicking::panic_fmt(format_args!("mentioned_items for {0:?} have not yet been set",
            self.source.def_id()));
}panic!("mentioned_items for {:?} have not yet been set", self.source.def_id()),
748        }
749    }
750}
751
752impl<'tcx> Index<BasicBlock> for Body<'tcx> {
753    type Output = BasicBlockData<'tcx>;
754
755    #[inline]
756    fn index(&self, index: BasicBlock) -> &BasicBlockData<'tcx> {
757        &self.basic_blocks[index]
758    }
759}
760
761impl<'tcx> IndexMut<BasicBlock> for Body<'tcx> {
762    #[inline]
763    fn index_mut(&mut self, index: BasicBlock) -> &mut BasicBlockData<'tcx> {
764        &mut self.basic_blocks.as_mut()[index]
765    }
766}
767
768#[derive(#[automatically_derived]
impl<T: ::core::marker::Copy> ::core::marker::Copy for ClearCrossCrate<T> { }Copy, #[automatically_derived]
impl<T: ::core::clone::Clone> ::core::clone::Clone for ClearCrossCrate<T> {
    #[inline]
    fn clone(&self) -> ClearCrossCrate<T> {
        match self {
            ClearCrossCrate::Clear => ClearCrossCrate::Clear,
            ClearCrossCrate::Set(__self_0) =>
                ClearCrossCrate::Set(::core::clone::Clone::clone(__self_0)),
        }
    }
}Clone, #[automatically_derived]
impl<T: ::core::fmt::Debug> ::core::fmt::Debug for ClearCrossCrate<T> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            ClearCrossCrate::Clear =>
                ::core::fmt::Formatter::write_str(f, "Clear"),
            ClearCrossCrate::Set(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Set",
                    &__self_0),
        }
    }
}Debug, const _: () =
    {
        impl<T> ::rustc_data_structures::stable_hash::StableHash for
            ClearCrossCrate<T> where
            T: ::rustc_data_structures::stable_hash::StableHash {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    ClearCrossCrate::Clear => {}
                    ClearCrossCrate::Set(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash, const _: () =
    {
        impl<'tcx, T>
            ::rustc_middle::ty::TypeFoldable<::rustc_middle::ty::TyCtxt<'tcx>>
            for ClearCrossCrate<T> where
            T: ::rustc_middle::ty::TypeFoldable<::rustc_middle::ty::TyCtxt<'tcx>>
            {
            fn try_fold_with<__F: ::rustc_middle::ty::FallibleTypeFolder<::rustc_middle::ty::TyCtxt<'tcx>>>(self,
                __folder: &mut __F) -> Result<Self, __F::Error> {
                Ok(match self {
                        ClearCrossCrate::Clear => { ClearCrossCrate::Clear }
                        ClearCrossCrate::Set(__binding_0) => {
                            ClearCrossCrate::Set(::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?)
                        }
                    })
            }
            fn fold_with<__F: ::rustc_middle::ty::TypeFolder<::rustc_middle::ty::TyCtxt<'tcx>>>(self,
                __folder: &mut __F) -> Self {
                match self {
                    ClearCrossCrate::Clear => { ClearCrossCrate::Clear }
                    ClearCrossCrate::Set(__binding_0) => {
                        ClearCrossCrate::Set(::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder))
                    }
                }
            }
        }
    };TypeFoldable, const _: () =
    {
        impl<'tcx, T>
            ::rustc_middle::ty::TypeVisitable<::rustc_middle::ty::TyCtxt<'tcx>>
            for ClearCrossCrate<T> where
            T: ::rustc_middle::ty::TypeVisitable<::rustc_middle::ty::TyCtxt<'tcx>>
            {
            fn visit_with<__V: ::rustc_middle::ty::TypeVisitor<::rustc_middle::ty::TyCtxt<'tcx>>>(&self,
                __visitor: &mut __V) -> __V::Result {
                match *self {
                    ClearCrossCrate::Clear => {}
                    ClearCrossCrate::Set(ref __binding_0) => {
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_0,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                    }
                }
                <__V::Result as ::rustc_middle::ty::VisitorResult>::output()
            }
        }
    };TypeVisitable)]
769pub enum ClearCrossCrate<T> {
770    Clear,
771    Set(T),
772}
773
774impl<T> ClearCrossCrate<T> {
775    pub fn as_ref(&self) -> ClearCrossCrate<&T> {
776        match self {
777            ClearCrossCrate::Clear => ClearCrossCrate::Clear,
778            ClearCrossCrate::Set(v) => ClearCrossCrate::Set(v),
779        }
780    }
781
782    pub fn as_mut(&mut self) -> ClearCrossCrate<&mut T> {
783        match self {
784            ClearCrossCrate::Clear => ClearCrossCrate::Clear,
785            ClearCrossCrate::Set(v) => ClearCrossCrate::Set(v),
786        }
787    }
788
789    pub fn unwrap_crate_local(self) -> T {
790        match self {
791            ClearCrossCrate::Clear => crate::util::bug::bug_fmt(format_args!("unwrapping cross-crate data"))bug!("unwrapping cross-crate data"),
792            ClearCrossCrate::Set(v) => v,
793        }
794    }
795}
796
797const TAG_CLEAR_CROSS_CRATE_CLEAR: u8 = 0;
798const TAG_CLEAR_CROSS_CRATE_SET: u8 = 1;
799
800impl<'tcx, E: TyEncoder<'tcx>, T: Encodable<E>> Encodable<E> for ClearCrossCrate<T> {
801    #[inline]
802    fn encode(&self, e: &mut E) {
803        if E::CLEAR_CROSS_CRATE {
804            return;
805        }
806
807        match *self {
808            ClearCrossCrate::Clear => TAG_CLEAR_CROSS_CRATE_CLEAR.encode(e),
809            ClearCrossCrate::Set(ref val) => {
810                TAG_CLEAR_CROSS_CRATE_SET.encode(e);
811                val.encode(e);
812            }
813        }
814    }
815}
816impl<'tcx, D: TyDecoder<'tcx>, T: Decodable<D>> Decodable<D> for ClearCrossCrate<T> {
817    #[inline]
818    fn decode(d: &mut D) -> ClearCrossCrate<T> {
819        if D::CLEAR_CROSS_CRATE {
820            return ClearCrossCrate::Clear;
821        }
822
823        let discr = u8::decode(d);
824
825        match discr {
826            TAG_CLEAR_CROSS_CRATE_CLEAR => ClearCrossCrate::Clear,
827            TAG_CLEAR_CROSS_CRATE_SET => {
828                let val = T::decode(d);
829                ClearCrossCrate::Set(val)
830            }
831            tag => {
    ::core::panicking::panic_fmt(format_args!("Invalid tag for ClearCrossCrate: {0:?}",
            tag));
}panic!("Invalid tag for ClearCrossCrate: {tag:?}"),
832        }
833    }
834}
835
836/// Grouped information about the source code origin of a MIR entity.
837/// Intended to be inspected by diagnostics and debuginfo.
838/// Most passes can work with it as a whole, within a single function.
839// The unofficial Cranelift backend, at least as of #65828, needs `SourceInfo` to implement `Eq` and
840// `Hash`. Please ping @bjorn3 if removing them.
841#[derive(#[automatically_derived]
impl ::core::marker::Copy for SourceInfo { }Copy, #[automatically_derived]
impl ::core::clone::Clone for SourceInfo {
    #[inline]
    fn clone(&self) -> SourceInfo {
        let _: ::core::clone::AssertParamIsClone<Span>;
        let _: ::core::clone::AssertParamIsClone<SourceScope>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for SourceInfo {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field2_finish(f, "SourceInfo",
            "span", &self.span, "scope", &&self.scope)
    }
}Debug, #[automatically_derived]
impl ::core::cmp::Eq for SourceInfo {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<Span>;
        let _: ::core::cmp::AssertParamIsEq<SourceScope>;
    }
}Eq, #[automatically_derived]
impl ::core::cmp::PartialEq for SourceInfo {
    #[inline]
    fn eq(&self, other: &SourceInfo) -> bool {
        self.span == other.span && self.scope == other.scope
    }
}PartialEq, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for SourceInfo {
            fn encode(&self, __encoder: &mut __E) {
                match *self {
                    SourceInfo { span: ref __binding_0, scope: ref __binding_1 }
                        => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                    }
                }
            }
        }
    };TyEncodable, const _: () =
    {
        impl<'tcx, __D: ::rustc_middle::ty::codec::TyDecoder<'tcx>>
            ::rustc_serialize::Decodable<__D> for SourceInfo {
            fn decode(__decoder: &mut __D) -> Self {
                SourceInfo {
                    span: ::rustc_serialize::Decodable::decode(__decoder),
                    scope: ::rustc_serialize::Decodable::decode(__decoder),
                }
            }
        }
    };TyDecodable, #[automatically_derived]
impl ::core::hash::Hash for SourceInfo {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
        ::core::hash::Hash::hash(&self.span, state);
        ::core::hash::Hash::hash(&self.scope, state)
    }
}Hash, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for SourceInfo {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    SourceInfo { span: ref __binding_0, scope: ref __binding_1 }
                        => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
842pub struct SourceInfo {
843    /// The source span for the AST pertaining to this MIR entity.
844    pub span: Span,
845
846    /// The source scope, keeping track of which bindings can be
847    /// seen by debuginfo, active lint levels, etc.
848    pub scope: SourceScope,
849}
850
851impl SourceInfo {
852    #[inline]
853    pub fn outermost(span: Span) -> Self {
854        SourceInfo { span, scope: OUTERMOST_SOURCE_SCOPE }
855    }
856}
857
858///////////////////////////////////////////////////////////////////////////
859// Variables and temps
860
861impl ::std::fmt::Debug for Local {
    fn fmt(&self, fmt: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
        fmt.write_fmt(format_args!("_{0}", self.as_u32()))
    }
}rustc_index::newtype_index! {
862    #[stable_hash]
863    #[encodable]
864    #[orderable]
865    #[debug_format = "_{}"]
866    pub struct Local {
867        const RETURN_PLACE = 0;
868    }
869}
870
871impl Local {
872    /// Makes a `Local` for the `i`-th argument to a function.
873    ///
874    /// `Local(0)` is the [`RETURN_PLACE`], with the arguments after that,
875    /// so `arg(i)` will give `Local(i + 1)`.
876    pub const fn arg(i: usize) -> Local {
877        Local::from_usize(i + 1)
878    }
879}
880
881impl Atom for Local {
882    fn index(self) -> usize {
883        Idx::index(self)
884    }
885}
886
887/// Classifies locals into categories. See `Body::local_kind`.
888#[derive(#[automatically_derived]
impl ::core::clone::Clone for LocalKind {
    #[inline]
    fn clone(&self) -> LocalKind { *self }
}Clone, #[automatically_derived]
impl ::core::marker::Copy for LocalKind { }Copy, #[automatically_derived]
impl ::core::cmp::PartialEq for LocalKind {
    #[inline]
    fn eq(&self, other: &LocalKind) -> 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 LocalKind {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {}
}Eq, #[automatically_derived]
impl ::core::fmt::Debug for LocalKind {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                LocalKind::Temp => "Temp",
                LocalKind::Arg => "Arg",
                LocalKind::ReturnPointer => "ReturnPointer",
            })
    }
}Debug, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for LocalKind {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    LocalKind::Temp => {}
                    LocalKind::Arg => {}
                    LocalKind::ReturnPointer => {}
                }
            }
        }
    };StableHash)]
889pub enum LocalKind {
890    /// User-declared variable binding or compiler-introduced temporary.
891    Temp,
892    /// Function argument.
893    Arg,
894    /// Location of function's return value.
895    ReturnPointer,
896}
897
898#[derive(#[automatically_derived]
impl<'tcx> ::core::clone::Clone for VarBindingForm<'tcx> {
    #[inline]
    fn clone(&self) -> VarBindingForm<'tcx> {
        VarBindingForm {
            binding_mode: ::core::clone::Clone::clone(&self.binding_mode),
            opt_ty_info: ::core::clone::Clone::clone(&self.opt_ty_info),
            opt_match_place: ::core::clone::Clone::clone(&self.opt_match_place),
            pat_span: ::core::clone::Clone::clone(&self.pat_span),
            introductions: ::core::clone::Clone::clone(&self.introductions),
        }
    }
}Clone, #[automatically_derived]
impl<'tcx> ::core::fmt::Debug for VarBindingForm<'tcx> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field5_finish(f,
            "VarBindingForm", "binding_mode", &self.binding_mode,
            "opt_ty_info", &self.opt_ty_info, "opt_match_place",
            &self.opt_match_place, "pat_span", &self.pat_span,
            "introductions", &&self.introductions)
    }
}Debug, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for VarBindingForm<'tcx> {
            fn encode(&self, __encoder: &mut __E) {
                match *self {
                    VarBindingForm {
                        binding_mode: ref __binding_0,
                        opt_ty_info: ref __binding_1,
                        opt_match_place: ref __binding_2,
                        pat_span: ref __binding_3,
                        introductions: ref __binding_4 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_2,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_3,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_4,
                            __encoder);
                    }
                }
            }
        }
    };TyEncodable, const _: () =
    {
        impl<'tcx, __D: ::rustc_middle::ty::codec::TyDecoder<'tcx>>
            ::rustc_serialize::Decodable<__D> for VarBindingForm<'tcx> {
            fn decode(__decoder: &mut __D) -> Self {
                VarBindingForm {
                    binding_mode: ::rustc_serialize::Decodable::decode(__decoder),
                    opt_ty_info: ::rustc_serialize::Decodable::decode(__decoder),
                    opt_match_place: ::rustc_serialize::Decodable::decode(__decoder),
                    pat_span: ::rustc_serialize::Decodable::decode(__decoder),
                    introductions: ::rustc_serialize::Decodable::decode(__decoder),
                }
            }
        }
    };TyDecodable, const _: () =
    {
        impl<'tcx> ::rustc_data_structures::stable_hash::StableHash for
            VarBindingForm<'tcx> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    VarBindingForm {
                        binding_mode: ref __binding_0,
                        opt_ty_info: ref __binding_1,
                        opt_match_place: ref __binding_2,
                        pat_span: ref __binding_3,
                        introductions: ref __binding_4 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                        { __binding_3.stable_hash(__hcx, __hasher); }
                        { __binding_4.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
899pub struct VarBindingForm<'tcx> {
900    /// Is variable bound via `x`, `mut x`, `ref x`, `ref mut x`, `mut ref x`, or `mut ref mut x`?
901    pub binding_mode: BindingMode,
902    /// If an explicit type was provided for this variable binding,
903    /// this holds the source Span of that type.
904    ///
905    /// NOTE: if you want to change this to a `HirId`, be wary that
906    /// doing so breaks incremental compilation (as of this writing),
907    /// while a `Span` does not cause our tests to fail.
908    pub opt_ty_info: Option<Span>,
909    /// Place of the RHS of the =, or the subject of the `match` where this
910    /// variable is initialized. None in the case of `let PATTERN;`.
911    /// Some((None, ..)) in the case of and `let [mut] x = ...` because
912    /// (a) the right-hand side isn't evaluated as a place expression.
913    /// (b) it gives a way to separate this case from the remaining cases
914    ///     for diagnostics.
915    pub opt_match_place: Option<(Option<Place<'tcx>>, Span)>,
916    /// The span of the pattern in which this variable was bound.
917    pub pat_span: Span,
918    /// A binding can be introduced multiple times, with or patterns:
919    /// `Foo::A { x } | Foo::B { z: x }`. This stores information for each of those introductions.
920    pub introductions: Vec<VarBindingIntroduction>,
921}
922
923#[derive(#[automatically_derived]
impl<'tcx> ::core::clone::Clone for BindingForm<'tcx> {
    #[inline]
    fn clone(&self) -> BindingForm<'tcx> {
        match self {
            BindingForm::Var(__self_0) =>
                BindingForm::Var(::core::clone::Clone::clone(__self_0)),
            BindingForm::ImplicitSelf(__self_0) =>
                BindingForm::ImplicitSelf(::core::clone::Clone::clone(__self_0)),
            BindingForm::RefForGuard(__self_0) =>
                BindingForm::RefForGuard(::core::clone::Clone::clone(__self_0)),
        }
    }
}Clone, #[automatically_derived]
impl<'tcx> ::core::fmt::Debug for BindingForm<'tcx> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            BindingForm::Var(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Var",
                    &__self_0),
            BindingForm::ImplicitSelf(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "ImplicitSelf", &__self_0),
            BindingForm::RefForGuard(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "RefForGuard", &__self_0),
        }
    }
}Debug, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for BindingForm<'tcx> {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        BindingForm::Var(ref __binding_0) => { 0usize }
                        BindingForm::ImplicitSelf(ref __binding_0) => { 1usize }
                        BindingForm::RefForGuard(ref __binding_0) => { 2usize }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    BindingForm::Var(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    BindingForm::ImplicitSelf(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    BindingForm::RefForGuard(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                }
            }
        }
    };TyEncodable, const _: () =
    {
        impl<'tcx, __D: ::rustc_middle::ty::codec::TyDecoder<'tcx>>
            ::rustc_serialize::Decodable<__D> for BindingForm<'tcx> {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => {
                        BindingForm::Var(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    1usize => {
                        BindingForm::ImplicitSelf(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    2usize => {
                        BindingForm::RefForGuard(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `BindingForm`, expected 0..3, actual {0}",
                                n));
                    }
                }
            }
        }
    };TyDecodable, const _: () =
    {
        impl<'tcx> ::rustc_data_structures::stable_hash::StableHash for
            BindingForm<'tcx> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    BindingForm::Var(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    BindingForm::ImplicitSelf(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    BindingForm::RefForGuard(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
924pub enum BindingForm<'tcx> {
925    /// This is a binding for a non-`self` binding, or a `self` that has an explicit type.
926    Var(VarBindingForm<'tcx>),
927    /// Binding for a `self`/`&self`/`&mut self` binding where the type is implicit.
928    ImplicitSelf(ImplicitSelfKind),
929    /// Reference used in a guard expression to ensure immutability.
930    RefForGuard(Local),
931}
932
933#[derive(#[automatically_derived]
impl ::core::clone::Clone for VarBindingIntroduction {
    #[inline]
    fn clone(&self) -> VarBindingIntroduction {
        VarBindingIntroduction {
            span: ::core::clone::Clone::clone(&self.span),
            is_shorthand: ::core::clone::Clone::clone(&self.is_shorthand),
        }
    }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for VarBindingIntroduction {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field2_finish(f,
            "VarBindingIntroduction", "span", &self.span, "is_shorthand",
            &&self.is_shorthand)
    }
}Debug, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for VarBindingIntroduction {
            fn encode(&self, __encoder: &mut __E) {
                match *self {
                    VarBindingIntroduction {
                        span: ref __binding_0, is_shorthand: ref __binding_1 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                    }
                }
            }
        }
    };TyEncodable, const _: () =
    {
        impl<'tcx, __D: ::rustc_middle::ty::codec::TyDecoder<'tcx>>
            ::rustc_serialize::Decodable<__D> for VarBindingIntroduction {
            fn decode(__decoder: &mut __D) -> Self {
                VarBindingIntroduction {
                    span: ::rustc_serialize::Decodable::decode(__decoder),
                    is_shorthand: ::rustc_serialize::Decodable::decode(__decoder),
                }
            }
        }
    };TyDecodable, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for
            VarBindingIntroduction {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    VarBindingIntroduction {
                        span: ref __binding_0, is_shorthand: ref __binding_1 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
934pub struct VarBindingIntroduction {
935    /// Where this additional introduction happened.
936    pub span: Span,
937    /// Is that introduction a shorthand struct pattern, i.e. `Foo { x }`.
938    pub is_shorthand: bool,
939}
940
941/// `BlockTailInfo` is attached to the `LocalDecl` for temporaries
942/// created during evaluation of expressions in a block tail
943/// expression; that is, a block like `{ STMT_1; STMT_2; EXPR }`.
944///
945/// It is used to improve diagnostics when such temporaries are
946/// involved in borrow_check errors, e.g., explanations of where the
947/// temporaries come from, when their destructors are run, and/or how
948/// one might revise the code to satisfy the borrow checker's rules.
949#[derive(#[automatically_derived]
impl ::core::clone::Clone for BlockTailInfo {
    #[inline]
    fn clone(&self) -> BlockTailInfo {
        let _: ::core::clone::AssertParamIsClone<bool>;
        let _: ::core::clone::AssertParamIsClone<Span>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::marker::Copy for BlockTailInfo { }Copy, #[automatically_derived]
impl ::core::fmt::Debug for BlockTailInfo {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field2_finish(f, "BlockTailInfo",
            "tail_result_is_ignored", &self.tail_result_is_ignored, "span",
            &&self.span)
    }
}Debug, #[automatically_derived]
impl ::core::cmp::PartialEq for BlockTailInfo {
    #[inline]
    fn eq(&self, other: &BlockTailInfo) -> bool {
        self.tail_result_is_ignored == other.tail_result_is_ignored &&
            self.span == other.span
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for BlockTailInfo {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<bool>;
        let _: ::core::cmp::AssertParamIsEq<Span>;
    }
}Eq, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for BlockTailInfo {
            fn encode(&self, __encoder: &mut __E) {
                match *self {
                    BlockTailInfo {
                        tail_result_is_ignored: ref __binding_0,
                        span: ref __binding_1 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                    }
                }
            }
        }
    };TyEncodable, const _: () =
    {
        impl<'tcx, __D: ::rustc_middle::ty::codec::TyDecoder<'tcx>>
            ::rustc_serialize::Decodable<__D> for BlockTailInfo {
            fn decode(__decoder: &mut __D) -> Self {
                BlockTailInfo {
                    tail_result_is_ignored: ::rustc_serialize::Decodable::decode(__decoder),
                    span: ::rustc_serialize::Decodable::decode(__decoder),
                }
            }
        }
    };TyDecodable, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for
            BlockTailInfo {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    BlockTailInfo {
                        tail_result_is_ignored: ref __binding_0,
                        span: ref __binding_1 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
950pub struct BlockTailInfo {
951    /// If `true`, then the value resulting from evaluating this tail
952    /// expression is ignored by the block's expression context.
953    ///
954    /// Examples include `{ ...; tail };` and `let _ = { ...; tail };`
955    /// but not e.g., `let _x = { ...; tail };`
956    pub tail_result_is_ignored: bool,
957
958    /// `Span` of the tail expression.
959    pub span: Span,
960}
961
962/// A MIR local.
963///
964/// This can be a binding declared by the user, a temporary inserted by the compiler, a function
965/// argument, or the return place.
966#[derive(#[automatically_derived]
impl<'tcx> ::core::clone::Clone for LocalDecl<'tcx> {
    #[inline]
    fn clone(&self) -> LocalDecl<'tcx> {
        LocalDecl {
            mutability: ::core::clone::Clone::clone(&self.mutability),
            local_info: ::core::clone::Clone::clone(&self.local_info),
            ty: ::core::clone::Clone::clone(&self.ty),
            user_ty: ::core::clone::Clone::clone(&self.user_ty),
            source_info: ::core::clone::Clone::clone(&self.source_info),
        }
    }
}Clone, #[automatically_derived]
impl<'tcx> ::core::fmt::Debug for LocalDecl<'tcx> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field5_finish(f, "LocalDecl",
            "mutability", &self.mutability, "local_info", &self.local_info,
            "ty", &self.ty, "user_ty", &self.user_ty, "source_info",
            &&self.source_info)
    }
}Debug, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for LocalDecl<'tcx> {
            fn encode(&self, __encoder: &mut __E) {
                match *self {
                    LocalDecl {
                        mutability: ref __binding_0,
                        local_info: ref __binding_1,
                        ty: ref __binding_2,
                        user_ty: ref __binding_3,
                        source_info: ref __binding_4 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_2,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_3,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_4,
                            __encoder);
                    }
                }
            }
        }
    };TyEncodable, const _: () =
    {
        impl<'tcx, __D: ::rustc_middle::ty::codec::TyDecoder<'tcx>>
            ::rustc_serialize::Decodable<__D> for LocalDecl<'tcx> {
            fn decode(__decoder: &mut __D) -> Self {
                LocalDecl {
                    mutability: ::rustc_serialize::Decodable::decode(__decoder),
                    local_info: ::rustc_serialize::Decodable::decode(__decoder),
                    ty: ::rustc_serialize::Decodable::decode(__decoder),
                    user_ty: ::rustc_serialize::Decodable::decode(__decoder),
                    source_info: ::rustc_serialize::Decodable::decode(__decoder),
                }
            }
        }
    };TyDecodable, const _: () =
    {
        impl<'tcx> ::rustc_data_structures::stable_hash::StableHash for
            LocalDecl<'tcx> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    LocalDecl {
                        mutability: ref __binding_0,
                        local_info: ref __binding_1,
                        ty: ref __binding_2,
                        user_ty: ref __binding_3,
                        source_info: ref __binding_4 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                        { __binding_3.stable_hash(__hcx, __hasher); }
                        { __binding_4.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeFoldable<::rustc_middle::ty::TyCtxt<'tcx>>
            for LocalDecl<'tcx> {
            fn try_fold_with<__F: ::rustc_middle::ty::FallibleTypeFolder<::rustc_middle::ty::TyCtxt<'tcx>>>(self,
                __folder: &mut __F) -> Result<Self, __F::Error> {
                Ok(match self {
                        LocalDecl {
                            mutability: __binding_0,
                            local_info: __binding_1,
                            ty: __binding_2,
                            user_ty: __binding_3,
                            source_info: __binding_4 } => {
                            LocalDecl {
                                mutability: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                local_info: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?,
                                ty: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_2,
                                        __folder)?,
                                user_ty: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_3,
                                        __folder)?,
                                source_info: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_4,
                                        __folder)?,
                            }
                        }
                    })
            }
            fn fold_with<__F: ::rustc_middle::ty::TypeFolder<::rustc_middle::ty::TyCtxt<'tcx>>>(self,
                __folder: &mut __F) -> Self {
                match self {
                    LocalDecl {
                        mutability: __binding_0,
                        local_info: __binding_1,
                        ty: __binding_2,
                        user_ty: __binding_3,
                        source_info: __binding_4 } => {
                        LocalDecl {
                            mutability: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            local_info: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
                                __folder),
                            ty: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_2,
                                __folder),
                            user_ty: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_3,
                                __folder),
                            source_info: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_4,
                                __folder),
                        }
                    }
                }
            }
        }
    };TypeFoldable, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeVisitable<::rustc_middle::ty::TyCtxt<'tcx>>
            for LocalDecl<'tcx> {
            fn visit_with<__V: ::rustc_middle::ty::TypeVisitor<::rustc_middle::ty::TyCtxt<'tcx>>>(&self,
                __visitor: &mut __V) -> __V::Result {
                match *self {
                    LocalDecl {
                        mutability: ref __binding_0,
                        local_info: ref __binding_1,
                        ty: ref __binding_2,
                        user_ty: ref __binding_3,
                        source_info: ref __binding_4 } => {
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_0,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_1,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_2,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_3,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_4,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                    }
                }
                <__V::Result as ::rustc_middle::ty::VisitorResult>::output()
            }
        }
    };TypeVisitable)]
967pub struct LocalDecl<'tcx> {
968    /// Whether this is a mutable binding (i.e., `let x` or `let mut x`).
969    ///
970    /// Temporaries and the return place are always mutable.
971    pub mutability: Mutability,
972
973    pub local_info: ClearCrossCrate<Box<LocalInfo<'tcx>>>,
974
975    /// The type of this local.
976    pub ty: Ty<'tcx>,
977
978    /// If the user manually ascribed a type to this variable,
979    /// e.g., via `let x: T`, then we carry that type here. The MIR
980    /// borrow checker needs this information since it can affect
981    /// region inference.
982    pub user_ty: Option<Box<UserTypeProjections>>,
983
984    /// The *syntactic* (i.e., not visibility) source scope the local is defined
985    /// in. If the local was defined in a let-statement, this
986    /// is *within* the let-statement, rather than outside
987    /// of it.
988    ///
989    /// This is needed because the visibility source scope of locals within
990    /// a let-statement is weird.
991    ///
992    /// The reason is that we want the local to be *within* the let-statement
993    /// for lint purposes, but we want the local to be *after* the let-statement
994    /// for names-in-scope purposes.
995    ///
996    /// That's it, if we have a let-statement like the one in this
997    /// function:
998    ///
999    /// ```
1000    /// fn foo(x: &str) {
1001    ///     #[allow(unused_mut)]
1002    ///     let mut x: u32 = {
1003    ///         //^ one unused mut
1004    ///         let mut y: u32 = x.parse().unwrap();
1005    ///         y + 2
1006    ///     };
1007    ///     drop(x);
1008    /// }
1009    /// ```
1010    ///
1011    /// Then, from a lint point of view, the declaration of `x: u32`
1012    /// (and `y: u32`) are within the `#[allow(unused_mut)]` scope - the
1013    /// lint scopes are the same as the AST/HIR nesting.
1014    ///
1015    /// However, from a name lookup point of view, the scopes look more like
1016    /// as if the let-statements were `match` expressions:
1017    ///
1018    /// ```
1019    /// fn foo(x: &str) {
1020    ///     match {
1021    ///         match x.parse::<u32>().unwrap() {
1022    ///             y => y + 2
1023    ///         }
1024    ///     } {
1025    ///         x => drop(x)
1026    ///     };
1027    /// }
1028    /// ```
1029    ///
1030    /// We care about the name-lookup scopes for debuginfo - if the
1031    /// debuginfo instruction pointer is at the call to `x.parse()`, we
1032    /// want `x` to refer to `x: &str`, but if it is at the call to
1033    /// `drop(x)`, we want it to refer to `x: u32`.
1034    ///
1035    /// To allow both uses to work, we need to have more than a single scope
1036    /// for a local. We have the `source_info.scope` represent the "syntactic"
1037    /// lint scope (with a variable being under its let block) while the
1038    /// `var_debug_info.source_info.scope` represents the "local variable"
1039    /// scope (where the "rest" of a block is under all prior let-statements).
1040    ///
1041    /// The end result looks like this:
1042    ///
1043    /// ```text
1044    /// ROOT SCOPE
1045    ///  │{ argument x: &str }
1046    ///  │
1047    ///  │ │{ #[allow(unused_mut)] } // This is actually split into 2 scopes
1048    ///  │ │                         // in practice because I'm lazy.
1049    ///  │ │
1050    ///  │ │← x.source_info.scope
1051    ///  │ │← `x.parse().unwrap()`
1052    ///  │ │
1053    ///  │ │ │← y.source_info.scope
1054    ///  │ │
1055    ///  │ │ │{ let y: u32 }
1056    ///  │ │ │
1057    ///  │ │ │← y.var_debug_info.source_info.scope
1058    ///  │ │ │← `y + 2`
1059    ///  │
1060    ///  │ │{ let x: u32 }
1061    ///  │ │← x.var_debug_info.source_info.scope
1062    ///  │ │← `drop(x)` // This accesses `x: u32`.
1063    /// ```
1064    pub source_info: SourceInfo,
1065}
1066
1067/// Extra information about a some locals that's used for diagnostics and for
1068/// classifying variables into local variables, statics, etc, which is needed e.g.
1069/// for borrow checking.
1070///
1071/// Not used for non-StaticRef temporaries, the return place, or anonymous
1072/// function parameters.
1073#[derive(#[automatically_derived]
impl<'tcx> ::core::clone::Clone for LocalInfo<'tcx> {
    #[inline]
    fn clone(&self) -> LocalInfo<'tcx> {
        match self {
            LocalInfo::User(__self_0) =>
                LocalInfo::User(::core::clone::Clone::clone(__self_0)),
            LocalInfo::StaticRef { def_id: __self_0, is_thread_local: __self_1
                } =>
                LocalInfo::StaticRef {
                    def_id: ::core::clone::Clone::clone(__self_0),
                    is_thread_local: ::core::clone::Clone::clone(__self_1),
                },
            LocalInfo::ConstRef { def_id: __self_0 } =>
                LocalInfo::ConstRef {
                    def_id: ::core::clone::Clone::clone(__self_0),
                },
            LocalInfo::AggregateTemp => LocalInfo::AggregateTemp,
            LocalInfo::BlockTailTemp(__self_0) =>
                LocalInfo::BlockTailTemp(::core::clone::Clone::clone(__self_0)),
            LocalInfo::IfThenRescopeTemp { if_then: __self_0 } =>
                LocalInfo::IfThenRescopeTemp {
                    if_then: ::core::clone::Clone::clone(__self_0),
                },
            LocalInfo::DerefTemp => LocalInfo::DerefTemp,
            LocalInfo::FakeBorrow => LocalInfo::FakeBorrow,
            LocalInfo::Boring => LocalInfo::Boring,
        }
    }
}Clone, #[automatically_derived]
impl<'tcx> ::core::fmt::Debug for LocalInfo<'tcx> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            LocalInfo::User(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "User",
                    &__self_0),
            LocalInfo::StaticRef { def_id: __self_0, is_thread_local: __self_1
                } =>
                ::core::fmt::Formatter::debug_struct_field2_finish(f,
                    "StaticRef", "def_id", __self_0, "is_thread_local",
                    &__self_1),
            LocalInfo::ConstRef { def_id: __self_0 } =>
                ::core::fmt::Formatter::debug_struct_field1_finish(f,
                    "ConstRef", "def_id", &__self_0),
            LocalInfo::AggregateTemp =>
                ::core::fmt::Formatter::write_str(f, "AggregateTemp"),
            LocalInfo::BlockTailTemp(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "BlockTailTemp", &__self_0),
            LocalInfo::IfThenRescopeTemp { if_then: __self_0 } =>
                ::core::fmt::Formatter::debug_struct_field1_finish(f,
                    "IfThenRescopeTemp", "if_then", &__self_0),
            LocalInfo::DerefTemp =>
                ::core::fmt::Formatter::write_str(f, "DerefTemp"),
            LocalInfo::FakeBorrow =>
                ::core::fmt::Formatter::write_str(f, "FakeBorrow"),
            LocalInfo::Boring =>
                ::core::fmt::Formatter::write_str(f, "Boring"),
        }
    }
}Debug, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for LocalInfo<'tcx> {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        LocalInfo::User(ref __binding_0) => { 0usize }
                        LocalInfo::StaticRef {
                            def_id: ref __binding_0, is_thread_local: ref __binding_1 }
                            => {
                            1usize
                        }
                        LocalInfo::ConstRef { def_id: ref __binding_0 } => {
                            2usize
                        }
                        LocalInfo::AggregateTemp => { 3usize }
                        LocalInfo::BlockTailTemp(ref __binding_0) => { 4usize }
                        LocalInfo::IfThenRescopeTemp { if_then: ref __binding_0 } =>
                            {
                            5usize
                        }
                        LocalInfo::DerefTemp => { 6usize }
                        LocalInfo::FakeBorrow => { 7usize }
                        LocalInfo::Boring => { 8usize }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    LocalInfo::User(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    LocalInfo::StaticRef {
                        def_id: ref __binding_0, is_thread_local: ref __binding_1 }
                        => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                    }
                    LocalInfo::ConstRef { def_id: ref __binding_0 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    LocalInfo::AggregateTemp => {}
                    LocalInfo::BlockTailTemp(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    LocalInfo::IfThenRescopeTemp { if_then: ref __binding_0 } =>
                        {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    LocalInfo::DerefTemp => {}
                    LocalInfo::FakeBorrow => {}
                    LocalInfo::Boring => {}
                }
            }
        }
    };TyEncodable, const _: () =
    {
        impl<'tcx, __D: ::rustc_middle::ty::codec::TyDecoder<'tcx>>
            ::rustc_serialize::Decodable<__D> for LocalInfo<'tcx> {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => {
                        LocalInfo::User(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    1usize => {
                        LocalInfo::StaticRef {
                            def_id: ::rustc_serialize::Decodable::decode(__decoder),
                            is_thread_local: ::rustc_serialize::Decodable::decode(__decoder),
                        }
                    }
                    2usize => {
                        LocalInfo::ConstRef {
                            def_id: ::rustc_serialize::Decodable::decode(__decoder),
                        }
                    }
                    3usize => { LocalInfo::AggregateTemp }
                    4usize => {
                        LocalInfo::BlockTailTemp(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    5usize => {
                        LocalInfo::IfThenRescopeTemp {
                            if_then: ::rustc_serialize::Decodable::decode(__decoder),
                        }
                    }
                    6usize => { LocalInfo::DerefTemp }
                    7usize => { LocalInfo::FakeBorrow }
                    8usize => { LocalInfo::Boring }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `LocalInfo`, expected 0..9, actual {0}",
                                n));
                    }
                }
            }
        }
    };TyDecodable, const _: () =
    {
        impl<'tcx> ::rustc_data_structures::stable_hash::StableHash for
            LocalInfo<'tcx> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    LocalInfo::User(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    LocalInfo::StaticRef {
                        def_id: ref __binding_0, is_thread_local: ref __binding_1 }
                        => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                    LocalInfo::ConstRef { def_id: ref __binding_0 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    LocalInfo::AggregateTemp => {}
                    LocalInfo::BlockTailTemp(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    LocalInfo::IfThenRescopeTemp { if_then: ref __binding_0 } =>
                        {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    LocalInfo::DerefTemp => {}
                    LocalInfo::FakeBorrow => {}
                    LocalInfo::Boring => {}
                }
            }
        }
    };StableHash, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeFoldable<::rustc_middle::ty::TyCtxt<'tcx>>
            for LocalInfo<'tcx> {
            fn try_fold_with<__F: ::rustc_middle::ty::FallibleTypeFolder<::rustc_middle::ty::TyCtxt<'tcx>>>(self,
                __folder: &mut __F) -> Result<Self, __F::Error> {
                Ok(match self {
                        LocalInfo::User(__binding_0) => {
                            LocalInfo::User(::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?)
                        }
                        LocalInfo::StaticRef {
                            def_id: __binding_0, is_thread_local: __binding_1 } => {
                            LocalInfo::StaticRef {
                                def_id: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                is_thread_local: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?,
                            }
                        }
                        LocalInfo::ConstRef { def_id: __binding_0 } => {
                            LocalInfo::ConstRef {
                                def_id: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                            }
                        }
                        LocalInfo::AggregateTemp => { LocalInfo::AggregateTemp }
                        LocalInfo::BlockTailTemp(__binding_0) => {
                            LocalInfo::BlockTailTemp(::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?)
                        }
                        LocalInfo::IfThenRescopeTemp { if_then: __binding_0 } => {
                            LocalInfo::IfThenRescopeTemp {
                                if_then: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                            }
                        }
                        LocalInfo::DerefTemp => { LocalInfo::DerefTemp }
                        LocalInfo::FakeBorrow => { LocalInfo::FakeBorrow }
                        LocalInfo::Boring => { LocalInfo::Boring }
                    })
            }
            fn fold_with<__F: ::rustc_middle::ty::TypeFolder<::rustc_middle::ty::TyCtxt<'tcx>>>(self,
                __folder: &mut __F) -> Self {
                match self {
                    LocalInfo::User(__binding_0) => {
                        LocalInfo::User(::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder))
                    }
                    LocalInfo::StaticRef {
                        def_id: __binding_0, is_thread_local: __binding_1 } => {
                        LocalInfo::StaticRef {
                            def_id: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            is_thread_local: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
                                __folder),
                        }
                    }
                    LocalInfo::ConstRef { def_id: __binding_0 } => {
                        LocalInfo::ConstRef {
                            def_id: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                        }
                    }
                    LocalInfo::AggregateTemp => { LocalInfo::AggregateTemp }
                    LocalInfo::BlockTailTemp(__binding_0) => {
                        LocalInfo::BlockTailTemp(::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder))
                    }
                    LocalInfo::IfThenRescopeTemp { if_then: __binding_0 } => {
                        LocalInfo::IfThenRescopeTemp {
                            if_then: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                        }
                    }
                    LocalInfo::DerefTemp => { LocalInfo::DerefTemp }
                    LocalInfo::FakeBorrow => { LocalInfo::FakeBorrow }
                    LocalInfo::Boring => { LocalInfo::Boring }
                }
            }
        }
    };TypeFoldable, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeVisitable<::rustc_middle::ty::TyCtxt<'tcx>>
            for LocalInfo<'tcx> {
            fn visit_with<__V: ::rustc_middle::ty::TypeVisitor<::rustc_middle::ty::TyCtxt<'tcx>>>(&self,
                __visitor: &mut __V) -> __V::Result {
                match *self {
                    LocalInfo::User(ref __binding_0) => {
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_0,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                    }
                    LocalInfo::StaticRef {
                        def_id: ref __binding_0, is_thread_local: ref __binding_1 }
                        => {
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_0,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_1,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                    }
                    LocalInfo::ConstRef { def_id: ref __binding_0 } => {
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_0,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                    }
                    LocalInfo::AggregateTemp => {}
                    LocalInfo::BlockTailTemp(ref __binding_0) => {
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_0,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                    }
                    LocalInfo::IfThenRescopeTemp { if_then: ref __binding_0 } =>
                        {
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_0,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                    }
                    LocalInfo::DerefTemp => {}
                    LocalInfo::FakeBorrow => {}
                    LocalInfo::Boring => {}
                }
                <__V::Result as ::rustc_middle::ty::VisitorResult>::output()
            }
        }
    };TypeVisitable)]
1074pub enum LocalInfo<'tcx> {
1075    /// A user-defined local variable or function parameter
1076    ///
1077    /// The `BindingForm` is solely used for local diagnostics when generating
1078    /// warnings/errors when compiling the current crate, and therefore it need
1079    /// not be visible across crates.
1080    User(BindingForm<'tcx>),
1081    /// A temporary created that references the static with the given `DefId`.
1082    StaticRef { def_id: DefId, is_thread_local: bool },
1083    /// A temporary created that references the const with the given `DefId`
1084    ConstRef { def_id: DefId },
1085    /// A temporary created during the creation of an aggregate
1086    /// (e.g. a temporary for `foo` in `MyStruct { my_field: foo }`)
1087    AggregateTemp,
1088    /// A temporary created for evaluation of some subexpression of some block's tail expression
1089    /// (with no intervening statement context).
1090    BlockTailTemp(BlockTailInfo),
1091    /// A temporary created during evaluating `if` predicate, possibly for pattern matching for `let`s,
1092    /// and subject to Edition 2024 temporary lifetime rules
1093    IfThenRescopeTemp { if_then: HirId },
1094    /// A temporary created during the pass `Derefer` treated as a transparent alias
1095    /// for the place its copied from by analysis passes such as `AddRetag` and `ElaborateDrops`.
1096    ///
1097    /// It may only be written to by a `CopyForDeref` and otherwise only accessed through a deref.
1098    /// In runtime MIR, it is replaced with a normal `Boring` local.
1099    DerefTemp,
1100    /// A temporary created for borrow checking.
1101    FakeBorrow,
1102    /// A local without anything interesting about it.
1103    Boring,
1104}
1105
1106impl<'tcx> LocalDecl<'tcx> {
1107    pub fn local_info(&self) -> &LocalInfo<'tcx> {
1108        self.local_info.as_ref().unwrap_crate_local()
1109    }
1110
1111    /// Returns `true` only if local is a binding that can itself be
1112    /// made mutable via the addition of the `mut` keyword, namely
1113    /// something like the occurrences of `x` in:
1114    /// - `fn foo(x: Type) { ... }`,
1115    /// - `let x = ...`,
1116    /// - or `match ... { C(x) => ... }`
1117    pub fn can_be_made_mutable(&self) -> bool {
1118        #[allow(non_exhaustive_omitted_patterns)] match self.local_info() {
    LocalInfo::User(BindingForm::Var(VarBindingForm {
        binding_mode: BindingMode(ByRef::No, _), .. }) |
        BindingForm::ImplicitSelf(ImplicitSelfKind::Imm)) => true,
    _ => false,
}matches!(
1119            self.local_info(),
1120            LocalInfo::User(
1121                BindingForm::Var(VarBindingForm { binding_mode: BindingMode(ByRef::No, _), .. })
1122                    | BindingForm::ImplicitSelf(ImplicitSelfKind::Imm),
1123            )
1124        )
1125    }
1126
1127    /// Returns `true` if local is definitely not a `ref ident` or
1128    /// `ref mut ident` binding. (Such bindings cannot be made into
1129    /// mutable bindings, but the inverse does not necessarily hold).
1130    pub fn is_nonref_binding(&self) -> bool {
1131        #[allow(non_exhaustive_omitted_patterns)] match self.local_info() {
    LocalInfo::User(BindingForm::Var(VarBindingForm {
        binding_mode: BindingMode(ByRef::No, _), .. }) |
        BindingForm::ImplicitSelf(_)) => true,
    _ => false,
}matches!(
1132            self.local_info(),
1133            LocalInfo::User(
1134                BindingForm::Var(VarBindingForm { binding_mode: BindingMode(ByRef::No, _), .. })
1135                    | BindingForm::ImplicitSelf(_),
1136            )
1137        )
1138    }
1139
1140    /// Returns `true` if this variable is a named variable or function
1141    /// parameter declared by the user.
1142    #[inline]
1143    pub fn is_user_variable(&self) -> bool {
1144        #[allow(non_exhaustive_omitted_patterns)] match self.local_info() {
    LocalInfo::User(_) => true,
    _ => false,
}matches!(self.local_info(), LocalInfo::User(_))
1145    }
1146
1147    /// Returns `true` if this is a reference to a variable bound in a `match`
1148    /// expression that is used to access said variable for the guard of the
1149    /// match arm.
1150    pub fn is_ref_for_guard(&self) -> bool {
1151        #[allow(non_exhaustive_omitted_patterns)] match self.local_info() {
    LocalInfo::User(BindingForm::RefForGuard(_)) => true,
    _ => false,
}matches!(self.local_info(), LocalInfo::User(BindingForm::RefForGuard(_)))
1152    }
1153
1154    /// Returns `Some` if this is a reference to a static item that is used to
1155    /// access that static.
1156    pub fn is_ref_to_static(&self) -> bool {
1157        #[allow(non_exhaustive_omitted_patterns)] match self.local_info() {
    LocalInfo::StaticRef { .. } => true,
    _ => false,
}matches!(self.local_info(), LocalInfo::StaticRef { .. })
1158    }
1159
1160    /// Returns `Some` if this is a reference to a thread-local static item that is used to
1161    /// access that static.
1162    pub fn is_ref_to_thread_local(&self) -> bool {
1163        match self.local_info() {
1164            LocalInfo::StaticRef { is_thread_local, .. } => *is_thread_local,
1165            _ => false,
1166        }
1167    }
1168
1169    /// Returns `true` if this is a DerefTemp
1170    pub fn is_deref_temp(&self) -> bool {
1171        match self.local_info() {
1172            LocalInfo::DerefTemp => true,
1173            _ => false,
1174        }
1175    }
1176
1177    /// Returns `true` is the local is from a compiler desugaring, e.g.,
1178    /// `__next` from a `for` loop.
1179    #[inline]
1180    pub fn from_compiler_desugaring(&self) -> bool {
1181        self.source_info.span.desugaring_kind().is_some()
1182    }
1183
1184    /// Creates a new `LocalDecl` for a temporary, mutable.
1185    #[inline]
1186    pub fn new(ty: Ty<'tcx>, span: Span) -> Self {
1187        Self::with_source_info(ty, SourceInfo::outermost(span))
1188    }
1189
1190    /// Like `LocalDecl::new`, but takes a `SourceInfo` instead of a `Span`.
1191    #[inline]
1192    pub fn with_source_info(ty: Ty<'tcx>, source_info: SourceInfo) -> Self {
1193        LocalDecl {
1194            mutability: Mutability::Mut,
1195            local_info: ClearCrossCrate::Set(Box::new(LocalInfo::Boring)),
1196            ty,
1197            user_ty: None,
1198            source_info,
1199        }
1200    }
1201
1202    /// Converts `self` into same `LocalDecl` except tagged as immutable.
1203    #[inline]
1204    pub fn immutable(mut self) -> Self {
1205        self.mutability = Mutability::Not;
1206        self
1207    }
1208}
1209
1210#[derive(#[automatically_derived]
impl<'tcx> ::core::clone::Clone for VarDebugInfoContents<'tcx> {
    #[inline]
    fn clone(&self) -> VarDebugInfoContents<'tcx> {
        match self {
            VarDebugInfoContents::Place(__self_0) =>
                VarDebugInfoContents::Place(::core::clone::Clone::clone(__self_0)),
            VarDebugInfoContents::Const(__self_0) =>
                VarDebugInfoContents::Const(::core::clone::Clone::clone(__self_0)),
        }
    }
}Clone, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for VarDebugInfoContents<'tcx> {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        VarDebugInfoContents::Place(ref __binding_0) => { 0usize }
                        VarDebugInfoContents::Const(ref __binding_0) => { 1usize }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    VarDebugInfoContents::Place(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    VarDebugInfoContents::Const(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                }
            }
        }
    };TyEncodable, const _: () =
    {
        impl<'tcx, __D: ::rustc_middle::ty::codec::TyDecoder<'tcx>>
            ::rustc_serialize::Decodable<__D> for VarDebugInfoContents<'tcx> {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => {
                        VarDebugInfoContents::Place(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    1usize => {
                        VarDebugInfoContents::Const(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `VarDebugInfoContents`, expected 0..2, actual {0}",
                                n));
                    }
                }
            }
        }
    };TyDecodable, const _: () =
    {
        impl<'tcx> ::rustc_data_structures::stable_hash::StableHash for
            VarDebugInfoContents<'tcx> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    VarDebugInfoContents::Place(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                    VarDebugInfoContents::Const(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeFoldable<::rustc_middle::ty::TyCtxt<'tcx>>
            for VarDebugInfoContents<'tcx> {
            fn try_fold_with<__F: ::rustc_middle::ty::FallibleTypeFolder<::rustc_middle::ty::TyCtxt<'tcx>>>(self,
                __folder: &mut __F) -> Result<Self, __F::Error> {
                Ok(match self {
                        VarDebugInfoContents::Place(__binding_0) => {
                            VarDebugInfoContents::Place(::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?)
                        }
                        VarDebugInfoContents::Const(__binding_0) => {
                            VarDebugInfoContents::Const(::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?)
                        }
                    })
            }
            fn fold_with<__F: ::rustc_middle::ty::TypeFolder<::rustc_middle::ty::TyCtxt<'tcx>>>(self,
                __folder: &mut __F) -> Self {
                match self {
                    VarDebugInfoContents::Place(__binding_0) => {
                        VarDebugInfoContents::Place(::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder))
                    }
                    VarDebugInfoContents::Const(__binding_0) => {
                        VarDebugInfoContents::Const(::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder))
                    }
                }
            }
        }
    };TypeFoldable, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeVisitable<::rustc_middle::ty::TyCtxt<'tcx>>
            for VarDebugInfoContents<'tcx> {
            fn visit_with<__V: ::rustc_middle::ty::TypeVisitor<::rustc_middle::ty::TyCtxt<'tcx>>>(&self,
                __visitor: &mut __V) -> __V::Result {
                match *self {
                    VarDebugInfoContents::Place(ref __binding_0) => {
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_0,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                    }
                    VarDebugInfoContents::Const(ref __binding_0) => {
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_0,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                    }
                }
                <__V::Result as ::rustc_middle::ty::VisitorResult>::output()
            }
        }
    };TypeVisitable)]
1211pub enum VarDebugInfoContents<'tcx> {
1212    /// This `Place` only contains projection which satisfy `can_use_in_debuginfo`.
1213    Place(Place<'tcx>),
1214    Const(ConstOperand<'tcx>),
1215}
1216
1217impl<'tcx> Debug for VarDebugInfoContents<'tcx> {
1218    fn fmt(&self, fmt: &mut Formatter<'_>) -> fmt::Result {
1219        match self {
1220            VarDebugInfoContents::Const(c) => fmt.write_fmt(format_args!("{0}", c))write!(fmt, "{c}"),
1221            VarDebugInfoContents::Place(p) => fmt.write_fmt(format_args!("{0:?}", p))write!(fmt, "{p:?}"),
1222        }
1223    }
1224}
1225
1226#[derive(#[automatically_derived]
impl<'tcx> ::core::clone::Clone for VarDebugInfoFragment<'tcx> {
    #[inline]
    fn clone(&self) -> VarDebugInfoFragment<'tcx> {
        VarDebugInfoFragment {
            ty: ::core::clone::Clone::clone(&self.ty),
            projection: ::core::clone::Clone::clone(&self.projection),
        }
    }
}Clone, #[automatically_derived]
impl<'tcx> ::core::fmt::Debug for VarDebugInfoFragment<'tcx> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field2_finish(f,
            "VarDebugInfoFragment", "ty", &self.ty, "projection",
            &&self.projection)
    }
}Debug, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for VarDebugInfoFragment<'tcx> {
            fn encode(&self, __encoder: &mut __E) {
                match *self {
                    VarDebugInfoFragment {
                        ty: ref __binding_0, projection: ref __binding_1 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                    }
                }
            }
        }
    };TyEncodable, const _: () =
    {
        impl<'tcx, __D: ::rustc_middle::ty::codec::TyDecoder<'tcx>>
            ::rustc_serialize::Decodable<__D> for VarDebugInfoFragment<'tcx> {
            fn decode(__decoder: &mut __D) -> Self {
                VarDebugInfoFragment {
                    ty: ::rustc_serialize::Decodable::decode(__decoder),
                    projection: ::rustc_serialize::Decodable::decode(__decoder),
                }
            }
        }
    };TyDecodable, const _: () =
    {
        impl<'tcx> ::rustc_data_structures::stable_hash::StableHash for
            VarDebugInfoFragment<'tcx> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    VarDebugInfoFragment {
                        ty: ref __binding_0, projection: ref __binding_1 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeFoldable<::rustc_middle::ty::TyCtxt<'tcx>>
            for VarDebugInfoFragment<'tcx> {
            fn try_fold_with<__F: ::rustc_middle::ty::FallibleTypeFolder<::rustc_middle::ty::TyCtxt<'tcx>>>(self,
                __folder: &mut __F) -> Result<Self, __F::Error> {
                Ok(match self {
                        VarDebugInfoFragment {
                            ty: __binding_0, projection: __binding_1 } => {
                            VarDebugInfoFragment {
                                ty: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                projection: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?,
                            }
                        }
                    })
            }
            fn fold_with<__F: ::rustc_middle::ty::TypeFolder<::rustc_middle::ty::TyCtxt<'tcx>>>(self,
                __folder: &mut __F) -> Self {
                match self {
                    VarDebugInfoFragment {
                        ty: __binding_0, projection: __binding_1 } => {
                        VarDebugInfoFragment {
                            ty: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            projection: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
                                __folder),
                        }
                    }
                }
            }
        }
    };TypeFoldable, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeVisitable<::rustc_middle::ty::TyCtxt<'tcx>>
            for VarDebugInfoFragment<'tcx> {
            fn visit_with<__V: ::rustc_middle::ty::TypeVisitor<::rustc_middle::ty::TyCtxt<'tcx>>>(&self,
                __visitor: &mut __V) -> __V::Result {
                match *self {
                    VarDebugInfoFragment {
                        ty: ref __binding_0, projection: ref __binding_1 } => {
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_0,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_1,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                    }
                }
                <__V::Result as ::rustc_middle::ty::VisitorResult>::output()
            }
        }
    };TypeVisitable)]
1227pub struct VarDebugInfoFragment<'tcx> {
1228    /// Type of the original user variable.
1229    /// This cannot contain a union or an enum.
1230    pub ty: Ty<'tcx>,
1231
1232    /// Where in the composite user variable this fragment is,
1233    /// represented as a "projection" into the composite variable.
1234    /// At lower levels, this corresponds to a byte/bit range.
1235    ///
1236    /// This can only contain `PlaceElem::Field`.
1237    // FIXME support this for `enum`s by either using DWARF's
1238    // more advanced control-flow features (unsupported by LLVM?)
1239    // to match on the discriminant, or by using custom type debuginfo
1240    // with non-overlapping variants for the composite variable.
1241    pub projection: Vec<PlaceElem<'tcx>>,
1242}
1243
1244/// Debug information pertaining to a user variable.
1245#[derive(#[automatically_derived]
impl<'tcx> ::core::clone::Clone for VarDebugInfo<'tcx> {
    #[inline]
    fn clone(&self) -> VarDebugInfo<'tcx> {
        VarDebugInfo {
            name: ::core::clone::Clone::clone(&self.name),
            source_info: ::core::clone::Clone::clone(&self.source_info),
            composite: ::core::clone::Clone::clone(&self.composite),
            value: ::core::clone::Clone::clone(&self.value),
            argument_index: ::core::clone::Clone::clone(&self.argument_index),
        }
    }
}Clone, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for VarDebugInfo<'tcx> {
            fn encode(&self, __encoder: &mut __E) {
                match *self {
                    VarDebugInfo {
                        name: ref __binding_0,
                        source_info: ref __binding_1,
                        composite: ref __binding_2,
                        value: ref __binding_3,
                        argument_index: ref __binding_4 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_2,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_3,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_4,
                            __encoder);
                    }
                }
            }
        }
    };TyEncodable, const _: () =
    {
        impl<'tcx, __D: ::rustc_middle::ty::codec::TyDecoder<'tcx>>
            ::rustc_serialize::Decodable<__D> for VarDebugInfo<'tcx> {
            fn decode(__decoder: &mut __D) -> Self {
                VarDebugInfo {
                    name: ::rustc_serialize::Decodable::decode(__decoder),
                    source_info: ::rustc_serialize::Decodable::decode(__decoder),
                    composite: ::rustc_serialize::Decodable::decode(__decoder),
                    value: ::rustc_serialize::Decodable::decode(__decoder),
                    argument_index: ::rustc_serialize::Decodable::decode(__decoder),
                }
            }
        }
    };TyDecodable, const _: () =
    {
        impl<'tcx> ::rustc_data_structures::stable_hash::StableHash for
            VarDebugInfo<'tcx> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    VarDebugInfo {
                        name: ref __binding_0,
                        source_info: ref __binding_1,
                        composite: ref __binding_2,
                        value: ref __binding_3,
                        argument_index: ref __binding_4 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                        { __binding_3.stable_hash(__hcx, __hasher); }
                        { __binding_4.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeFoldable<::rustc_middle::ty::TyCtxt<'tcx>>
            for VarDebugInfo<'tcx> {
            fn try_fold_with<__F: ::rustc_middle::ty::FallibleTypeFolder<::rustc_middle::ty::TyCtxt<'tcx>>>(self,
                __folder: &mut __F) -> Result<Self, __F::Error> {
                Ok(match self {
                        VarDebugInfo {
                            name: __binding_0,
                            source_info: __binding_1,
                            composite: __binding_2,
                            value: __binding_3,
                            argument_index: __binding_4 } => {
                            VarDebugInfo {
                                name: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                source_info: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?,
                                composite: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_2,
                                        __folder)?,
                                value: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_3,
                                        __folder)?,
                                argument_index: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_4,
                                        __folder)?,
                            }
                        }
                    })
            }
            fn fold_with<__F: ::rustc_middle::ty::TypeFolder<::rustc_middle::ty::TyCtxt<'tcx>>>(self,
                __folder: &mut __F) -> Self {
                match self {
                    VarDebugInfo {
                        name: __binding_0,
                        source_info: __binding_1,
                        composite: __binding_2,
                        value: __binding_3,
                        argument_index: __binding_4 } => {
                        VarDebugInfo {
                            name: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            source_info: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
                                __folder),
                            composite: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_2,
                                __folder),
                            value: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_3,
                                __folder),
                            argument_index: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_4,
                                __folder),
                        }
                    }
                }
            }
        }
    };TypeFoldable, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeVisitable<::rustc_middle::ty::TyCtxt<'tcx>>
            for VarDebugInfo<'tcx> {
            fn visit_with<__V: ::rustc_middle::ty::TypeVisitor<::rustc_middle::ty::TyCtxt<'tcx>>>(&self,
                __visitor: &mut __V) -> __V::Result {
                match *self {
                    VarDebugInfo {
                        name: ref __binding_0,
                        source_info: ref __binding_1,
                        composite: ref __binding_2,
                        value: ref __binding_3,
                        argument_index: ref __binding_4 } => {
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_0,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_1,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_2,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_3,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_4,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                    }
                }
                <__V::Result as ::rustc_middle::ty::VisitorResult>::output()
            }
        }
    };TypeVisitable)]
1246pub struct VarDebugInfo<'tcx> {
1247    pub name: Symbol,
1248
1249    /// Source info of the user variable, including the scope
1250    /// within which the variable is visible (to debuginfo)
1251    /// (see `LocalDecl`'s `source_info` field for more details).
1252    pub source_info: SourceInfo,
1253
1254    /// The user variable's data is split across several fragments,
1255    /// each described by a `VarDebugInfoFragment`.
1256    /// See DWARF 5's "2.6.1.2 Composite Location Descriptions"
1257    /// and LLVM's `DW_OP_LLVM_fragment` for more details on
1258    /// the underlying debuginfo feature this relies on.
1259    pub composite: Option<Box<VarDebugInfoFragment<'tcx>>>,
1260
1261    /// Where the data for this user variable is to be found.
1262    pub value: VarDebugInfoContents<'tcx>,
1263
1264    /// When present, indicates what argument number this variable is in the function that it
1265    /// originated from (starting from 1). Note, if MIR inlining is enabled, then this is the
1266    /// argument number in the original function before it was inlined.
1267    pub argument_index: Option<u16>,
1268}
1269
1270///////////////////////////////////////////////////////////////////////////
1271// BasicBlock
1272
1273impl ::std::fmt::Debug for BasicBlock {
    fn fmt(&self, fmt: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
        fmt.write_fmt(format_args!("bb{0}", self.as_u32()))
    }
}rustc_index::newtype_index! {
1274    /// A node in the MIR [control-flow graph][CFG].
1275    ///
1276    /// There are no branches (e.g., `if`s, function calls, etc.) within a basic block, which makes
1277    /// it easier to do [data-flow analyses] and optimizations. Instead, branches are represented
1278    /// as an edge in a graph between basic blocks.
1279    ///
1280    /// Basic blocks consist of a series of [statements][Statement], ending with a
1281    /// [terminator][Terminator]. Basic blocks can have multiple predecessors and successors,
1282    /// however there is a MIR pass ([`CriticalCallEdges`]) that removes *critical edges*, which
1283    /// are edges that go from a multi-successor node to a multi-predecessor node. This pass is
1284    /// needed because some analyses require that there are no critical edges in the CFG.
1285    ///
1286    /// Note that this type is just an index into [`Body.basic_blocks`](Body::basic_blocks);
1287    /// the actual data that a basic block holds is in [`BasicBlockData`].
1288    ///
1289    /// Read more about basic blocks in the [rustc-dev-guide][guide-mir].
1290    ///
1291    /// [CFG]: https://rustc-dev-guide.rust-lang.org/appendix/background.html#cfg
1292    /// [data-flow analyses]:
1293    ///     https://rustc-dev-guide.rust-lang.org/appendix/background.html#what-is-a-dataflow-analysis
1294    /// [`CriticalCallEdges`]: ../../rustc_mir_transform/add_call_guards/enum.AddCallGuards.html#variant.CriticalCallEdges
1295    /// [guide-mir]: https://rustc-dev-guide.rust-lang.org/mir/
1296    #[stable_hash]
1297    #[encodable]
1298    #[orderable]
1299    #[debug_format = "bb{}"]
1300    pub struct BasicBlock {
1301        const START_BLOCK = 0;
1302    }
1303}
1304
1305impl BasicBlock {
1306    pub fn start_location(self) -> Location {
1307        Location { block: self, statement_index: 0 }
1308    }
1309}
1310
1311///////////////////////////////////////////////////////////////////////////
1312// BasicBlockData
1313
1314/// Data for a basic block, including a list of its statements.
1315///
1316/// See [`BasicBlock`] for documentation on what basic blocks are at a high level.
1317#[derive(#[automatically_derived]
impl<'tcx> ::core::clone::Clone for BasicBlockData<'tcx> {
    #[inline]
    fn clone(&self) -> BasicBlockData<'tcx> {
        BasicBlockData {
            statements: ::core::clone::Clone::clone(&self.statements),
            after_last_stmt_debuginfos: ::core::clone::Clone::clone(&self.after_last_stmt_debuginfos),
            terminator: ::core::clone::Clone::clone(&self.terminator),
            is_cleanup: ::core::clone::Clone::clone(&self.is_cleanup),
        }
    }
}Clone, #[automatically_derived]
impl<'tcx> ::core::fmt::Debug for BasicBlockData<'tcx> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field4_finish(f,
            "BasicBlockData", "statements", &self.statements,
            "after_last_stmt_debuginfos", &self.after_last_stmt_debuginfos,
            "terminator", &self.terminator, "is_cleanup", &&self.is_cleanup)
    }
}Debug, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for BasicBlockData<'tcx> {
            fn encode(&self, __encoder: &mut __E) {
                match *self {
                    BasicBlockData {
                        statements: ref __binding_0,
                        after_last_stmt_debuginfos: ref __binding_1,
                        terminator: ref __binding_2,
                        is_cleanup: ref __binding_3 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_2,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_3,
                            __encoder);
                    }
                }
            }
        }
    };TyEncodable, const _: () =
    {
        impl<'tcx, __D: ::rustc_middle::ty::codec::TyDecoder<'tcx>>
            ::rustc_serialize::Decodable<__D> for BasicBlockData<'tcx> {
            fn decode(__decoder: &mut __D) -> Self {
                BasicBlockData {
                    statements: ::rustc_serialize::Decodable::decode(__decoder),
                    after_last_stmt_debuginfos: ::rustc_serialize::Decodable::decode(__decoder),
                    terminator: ::rustc_serialize::Decodable::decode(__decoder),
                    is_cleanup: ::rustc_serialize::Decodable::decode(__decoder),
                }
            }
        }
    };TyDecodable, const _: () =
    {
        impl<'tcx> ::rustc_data_structures::stable_hash::StableHash for
            BasicBlockData<'tcx> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    BasicBlockData {
                        statements: ref __binding_0,
                        after_last_stmt_debuginfos: ref __binding_1,
                        terminator: ref __binding_2,
                        is_cleanup: ref __binding_3 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                        { __binding_3.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeFoldable<::rustc_middle::ty::TyCtxt<'tcx>>
            for BasicBlockData<'tcx> {
            fn try_fold_with<__F: ::rustc_middle::ty::FallibleTypeFolder<::rustc_middle::ty::TyCtxt<'tcx>>>(self,
                __folder: &mut __F) -> Result<Self, __F::Error> {
                Ok(match self {
                        BasicBlockData {
                            statements: __binding_0,
                            after_last_stmt_debuginfos: __binding_1,
                            terminator: __binding_2,
                            is_cleanup: __binding_3 } => {
                            BasicBlockData {
                                statements: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                after_last_stmt_debuginfos: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?,
                                terminator: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_2,
                                        __folder)?,
                                is_cleanup: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_3,
                                        __folder)?,
                            }
                        }
                    })
            }
            fn fold_with<__F: ::rustc_middle::ty::TypeFolder<::rustc_middle::ty::TyCtxt<'tcx>>>(self,
                __folder: &mut __F) -> Self {
                match self {
                    BasicBlockData {
                        statements: __binding_0,
                        after_last_stmt_debuginfos: __binding_1,
                        terminator: __binding_2,
                        is_cleanup: __binding_3 } => {
                        BasicBlockData {
                            statements: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            after_last_stmt_debuginfos: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
                                __folder),
                            terminator: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_2,
                                __folder),
                            is_cleanup: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_3,
                                __folder),
                        }
                    }
                }
            }
        }
    };TypeFoldable, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeVisitable<::rustc_middle::ty::TyCtxt<'tcx>>
            for BasicBlockData<'tcx> {
            fn visit_with<__V: ::rustc_middle::ty::TypeVisitor<::rustc_middle::ty::TyCtxt<'tcx>>>(&self,
                __visitor: &mut __V) -> __V::Result {
                match *self {
                    BasicBlockData {
                        statements: ref __binding_0,
                        after_last_stmt_debuginfos: ref __binding_1,
                        terminator: ref __binding_2,
                        is_cleanup: ref __binding_3 } => {
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_0,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_1,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_2,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_3,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                    }
                }
                <__V::Result as ::rustc_middle::ty::VisitorResult>::output()
            }
        }
    };TypeVisitable)]
1318#[non_exhaustive]
1319pub struct BasicBlockData<'tcx> {
1320    /// List of statements in this block.
1321    pub statements: Vec<Statement<'tcx>>,
1322
1323    /// All debuginfos happen before the statement.
1324    /// Put debuginfos here when the last statement is eliminated.
1325    pub after_last_stmt_debuginfos: StmtDebugInfos<'tcx>,
1326
1327    /// Terminator for this block.
1328    ///
1329    /// N.B., this should generally ONLY be `None` during construction.
1330    /// Therefore, you should generally access it via the
1331    /// `terminator()` or `terminator_mut()` methods. The only
1332    /// exception is that certain passes, such as `simplify_cfg`, swap
1333    /// out the terminator temporarily with `None` while they continue
1334    /// to recurse over the set of basic blocks.
1335    pub terminator: Option<Terminator<'tcx>>,
1336
1337    /// If true, this block lies on an unwind path. This is used
1338    /// during codegen where distinct kinds of basic blocks may be
1339    /// generated (particularly for MSVC cleanup). Unwind blocks must
1340    /// only branch to other unwind blocks.
1341    pub is_cleanup: bool,
1342}
1343
1344impl<'tcx> BasicBlockData<'tcx> {
1345    pub fn new(terminator: Option<Terminator<'tcx>>, is_cleanup: bool) -> BasicBlockData<'tcx> {
1346        BasicBlockData::new_stmts(Vec::new(), terminator, is_cleanup)
1347    }
1348
1349    pub fn new_stmts(
1350        statements: Vec<Statement<'tcx>>,
1351        terminator: Option<Terminator<'tcx>>,
1352        is_cleanup: bool,
1353    ) -> BasicBlockData<'tcx> {
1354        BasicBlockData {
1355            statements,
1356            after_last_stmt_debuginfos: StmtDebugInfos::default(),
1357            terminator,
1358            is_cleanup,
1359        }
1360    }
1361
1362    /// Accessor for terminator.
1363    ///
1364    /// Terminator may not be None after construction of the basic block is complete. This accessor
1365    /// provides a convenient way to reach the terminator.
1366    #[inline]
1367    pub fn terminator(&self) -> &Terminator<'tcx> {
1368        self.terminator.as_ref().expect("invalid terminator state")
1369    }
1370
1371    #[inline]
1372    pub fn terminator_mut(&mut self) -> &mut Terminator<'tcx> {
1373        self.terminator.as_mut().expect("invalid terminator state")
1374    }
1375
1376    /// Does the block have no statements and an unreachable terminator?
1377    #[inline]
1378    pub fn is_empty_unreachable(&self) -> bool {
1379        self.statements.is_empty() && #[allow(non_exhaustive_omitted_patterns)] match self.terminator().kind {
    TerminatorKind::Unreachable => true,
    _ => false,
}matches!(self.terminator().kind, TerminatorKind::Unreachable)
1380    }
1381
1382    /// Like [`Terminator::successors`] but tries to use information available from the [`Instance`]
1383    /// to skip successors like the `false` side of an `if const {`.
1384    ///
1385    /// This is used to implement [`traversal::mono_reachable`] and
1386    /// [`traversal::mono_reachable_reverse_postorder`].
1387    pub fn mono_successors(&self, tcx: TyCtxt<'tcx>, instance: Instance<'tcx>) -> Successors<'_> {
1388        if let Some((bits, targets)) = Body::try_const_mono_switchint(tcx, instance, self) {
1389            targets.successors_for_value(bits)
1390        } else {
1391            self.terminator().successors()
1392        }
1393    }
1394
1395    pub fn retain_statements<F>(&mut self, mut f: F)
1396    where
1397        F: FnMut(&Statement<'tcx>) -> bool,
1398    {
1399        // Place debuginfos into the next retained statement,
1400        // this `debuginfos` variable is used to cache debuginfos between two retained statements.
1401        let mut debuginfos = StmtDebugInfos::default();
1402        self.statements.retain_mut(|stmt| {
1403            let retain = f(stmt);
1404            if retain {
1405                stmt.debuginfos.prepend(&mut debuginfos);
1406            } else {
1407                debuginfos.append(&mut stmt.debuginfos);
1408            }
1409            retain
1410        });
1411        self.after_last_stmt_debuginfos.prepend(&mut debuginfos);
1412    }
1413
1414    pub fn strip_nops(&mut self) {
1415        self.retain_statements(|stmt| !#[allow(non_exhaustive_omitted_patterns)] match stmt.kind {
    StatementKind::Nop => true,
    _ => false,
}matches!(stmt.kind, StatementKind::Nop))
1416    }
1417
1418    pub fn drop_debuginfo(&mut self) {
1419        self.after_last_stmt_debuginfos.drop_debuginfo();
1420        for stmt in self.statements.iter_mut() {
1421            stmt.debuginfos.drop_debuginfo();
1422        }
1423    }
1424}
1425
1426///////////////////////////////////////////////////////////////////////////
1427// Scopes
1428
1429impl ::std::fmt::Debug for SourceScope {
    fn fmt(&self, fmt: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
        fmt.write_fmt(format_args!("scope[{0}]", self.as_u32()))
    }
}rustc_index::newtype_index! {
1430    #[stable_hash]
1431    #[encodable]
1432    #[debug_format = "scope[{}]"]
1433    pub struct SourceScope {
1434        const OUTERMOST_SOURCE_SCOPE = 0;
1435    }
1436}
1437
1438impl SourceScope {
1439    /// Finds the original HirId this MIR item came from.
1440    /// This is necessary after MIR optimizations, as otherwise we get a HirId
1441    /// from the function that was inlined instead of the function call site.
1442    pub fn lint_root(
1443        self,
1444        source_scopes: &IndexSlice<SourceScope, SourceScopeData<'_>>,
1445    ) -> Option<HirId> {
1446        let mut data = &source_scopes[self];
1447        // FIXME(oli-obk): we should be able to just walk the `inlined_parent_scope`, but it
1448        // does not work as I thought it would. Needs more investigation and documentation.
1449        while data.inlined.is_some() {
1450            {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_middle/src/mir/mod.rs:1450",
                        "rustc_middle::mir", ::tracing::Level::TRACE,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_middle/src/mir/mod.rs"),
                        ::tracing_core::__macro_support::Option::Some(1450u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_middle::mir"),
                        ::tracing_core::field::FieldSet::new(&["data"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::TRACE <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::TRACE <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                let mut iter = __CALLSITE.metadata().fields().iter();
                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&debug(&data) as
                                            &dyn Value))])
            });
    } else { ; }
};trace!(?data);
1451            data = &source_scopes[data.parent_scope.unwrap()];
1452        }
1453        {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_middle/src/mir/mod.rs:1453",
                        "rustc_middle::mir", ::tracing::Level::TRACE,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_middle/src/mir/mod.rs"),
                        ::tracing_core::__macro_support::Option::Some(1453u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_middle::mir"),
                        ::tracing_core::field::FieldSet::new(&["data"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::TRACE <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::TRACE <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                let mut iter = __CALLSITE.metadata().fields().iter();
                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&debug(&data) as
                                            &dyn Value))])
            });
    } else { ; }
};trace!(?data);
1454        match &data.local_data {
1455            ClearCrossCrate::Set(data) => Some(data.lint_root),
1456            ClearCrossCrate::Clear => None,
1457        }
1458    }
1459
1460    /// The instance this source scope was inlined from, if any.
1461    #[inline]
1462    pub fn inlined_instance<'tcx>(
1463        self,
1464        source_scopes: &IndexSlice<SourceScope, SourceScopeData<'tcx>>,
1465    ) -> Option<ty::Instance<'tcx>> {
1466        let scope_data = &source_scopes[self];
1467        if let Some((inlined_instance, _)) = scope_data.inlined {
1468            Some(inlined_instance)
1469        } else if let Some(inlined_scope) = scope_data.inlined_parent_scope {
1470            Some(source_scopes[inlined_scope].inlined.unwrap().0)
1471        } else {
1472            None
1473        }
1474    }
1475}
1476
1477#[derive(#[automatically_derived]
impl<'tcx> ::core::clone::Clone for SourceScopeData<'tcx> {
    #[inline]
    fn clone(&self) -> SourceScopeData<'tcx> {
        SourceScopeData {
            span: ::core::clone::Clone::clone(&self.span),
            parent_scope: ::core::clone::Clone::clone(&self.parent_scope),
            inlined: ::core::clone::Clone::clone(&self.inlined),
            inlined_parent_scope: ::core::clone::Clone::clone(&self.inlined_parent_scope),
            local_data: ::core::clone::Clone::clone(&self.local_data),
        }
    }
}Clone, #[automatically_derived]
impl<'tcx> ::core::fmt::Debug for SourceScopeData<'tcx> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field5_finish(f,
            "SourceScopeData", "span", &self.span, "parent_scope",
            &self.parent_scope, "inlined", &self.inlined,
            "inlined_parent_scope", &self.inlined_parent_scope, "local_data",
            &&self.local_data)
    }
}Debug, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for SourceScopeData<'tcx> {
            fn encode(&self, __encoder: &mut __E) {
                match *self {
                    SourceScopeData {
                        span: ref __binding_0,
                        parent_scope: ref __binding_1,
                        inlined: ref __binding_2,
                        inlined_parent_scope: ref __binding_3,
                        local_data: ref __binding_4 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_2,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_3,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_4,
                            __encoder);
                    }
                }
            }
        }
    };TyEncodable, const _: () =
    {
        impl<'tcx, __D: ::rustc_middle::ty::codec::TyDecoder<'tcx>>
            ::rustc_serialize::Decodable<__D> for SourceScopeData<'tcx> {
            fn decode(__decoder: &mut __D) -> Self {
                SourceScopeData {
                    span: ::rustc_serialize::Decodable::decode(__decoder),
                    parent_scope: ::rustc_serialize::Decodable::decode(__decoder),
                    inlined: ::rustc_serialize::Decodable::decode(__decoder),
                    inlined_parent_scope: ::rustc_serialize::Decodable::decode(__decoder),
                    local_data: ::rustc_serialize::Decodable::decode(__decoder),
                }
            }
        }
    };TyDecodable, const _: () =
    {
        impl<'tcx> ::rustc_data_structures::stable_hash::StableHash for
            SourceScopeData<'tcx> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    SourceScopeData {
                        span: ref __binding_0,
                        parent_scope: ref __binding_1,
                        inlined: ref __binding_2,
                        inlined_parent_scope: ref __binding_3,
                        local_data: ref __binding_4 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                        { __binding_2.stable_hash(__hcx, __hasher); }
                        { __binding_3.stable_hash(__hcx, __hasher); }
                        { __binding_4.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeFoldable<::rustc_middle::ty::TyCtxt<'tcx>>
            for SourceScopeData<'tcx> {
            fn try_fold_with<__F: ::rustc_middle::ty::FallibleTypeFolder<::rustc_middle::ty::TyCtxt<'tcx>>>(self,
                __folder: &mut __F) -> Result<Self, __F::Error> {
                Ok(match self {
                        SourceScopeData {
                            span: __binding_0,
                            parent_scope: __binding_1,
                            inlined: __binding_2,
                            inlined_parent_scope: __binding_3,
                            local_data: __binding_4 } => {
                            SourceScopeData {
                                span: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                parent_scope: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?,
                                inlined: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_2,
                                        __folder)?,
                                inlined_parent_scope: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_3,
                                        __folder)?,
                                local_data: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_4,
                                        __folder)?,
                            }
                        }
                    })
            }
            fn fold_with<__F: ::rustc_middle::ty::TypeFolder<::rustc_middle::ty::TyCtxt<'tcx>>>(self,
                __folder: &mut __F) -> Self {
                match self {
                    SourceScopeData {
                        span: __binding_0,
                        parent_scope: __binding_1,
                        inlined: __binding_2,
                        inlined_parent_scope: __binding_3,
                        local_data: __binding_4 } => {
                        SourceScopeData {
                            span: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            parent_scope: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
                                __folder),
                            inlined: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_2,
                                __folder),
                            inlined_parent_scope: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_3,
                                __folder),
                            local_data: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_4,
                                __folder),
                        }
                    }
                }
            }
        }
    };TypeFoldable, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeVisitable<::rustc_middle::ty::TyCtxt<'tcx>>
            for SourceScopeData<'tcx> {
            fn visit_with<__V: ::rustc_middle::ty::TypeVisitor<::rustc_middle::ty::TyCtxt<'tcx>>>(&self,
                __visitor: &mut __V) -> __V::Result {
                match *self {
                    SourceScopeData {
                        span: ref __binding_0,
                        parent_scope: ref __binding_1,
                        inlined: ref __binding_2,
                        inlined_parent_scope: ref __binding_3,
                        local_data: ref __binding_4 } => {
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_0,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_1,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_2,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_3,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_4,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                    }
                }
                <__V::Result as ::rustc_middle::ty::VisitorResult>::output()
            }
        }
    };TypeVisitable)]
1478pub struct SourceScopeData<'tcx> {
1479    pub span: Span,
1480    pub parent_scope: Option<SourceScope>,
1481
1482    /// Whether this scope is the root of a scope tree of another body,
1483    /// inlined into this body by the MIR inliner.
1484    /// `ty::Instance` is the callee, and the `Span` is the call site.
1485    pub inlined: Option<(ty::Instance<'tcx>, Span)>,
1486
1487    /// Nearest (transitive) parent scope (if any) which is inlined.
1488    /// This is an optimization over walking up `parent_scope`
1489    /// until a scope with `inlined: Some(...)` is found.
1490    pub inlined_parent_scope: Option<SourceScope>,
1491
1492    /// Crate-local information for this source scope, that can't (and
1493    /// needn't) be tracked across crates.
1494    pub local_data: ClearCrossCrate<SourceScopeLocalData>,
1495}
1496
1497#[derive(#[automatically_derived]
impl ::core::clone::Clone for SourceScopeLocalData {
    #[inline]
    fn clone(&self) -> SourceScopeLocalData {
        SourceScopeLocalData {
            lint_root: ::core::clone::Clone::clone(&self.lint_root),
        }
    }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for SourceScopeLocalData {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field1_finish(f,
            "SourceScopeLocalData", "lint_root", &&self.lint_root)
    }
}Debug, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for SourceScopeLocalData {
            fn encode(&self, __encoder: &mut __E) {
                match *self {
                    SourceScopeLocalData { lint_root: ref __binding_0 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                }
            }
        }
    };TyEncodable, const _: () =
    {
        impl<'tcx, __D: ::rustc_middle::ty::codec::TyDecoder<'tcx>>
            ::rustc_serialize::Decodable<__D> for SourceScopeLocalData {
            fn decode(__decoder: &mut __D) -> Self {
                SourceScopeLocalData {
                    lint_root: ::rustc_serialize::Decodable::decode(__decoder),
                }
            }
        }
    };TyDecodable, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for
            SourceScopeLocalData {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    SourceScopeLocalData { lint_root: ref __binding_0 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
1498pub struct SourceScopeLocalData {
1499    /// An `HirId` with lint levels equivalent to this scope's lint levels.
1500    pub lint_root: HirId,
1501}
1502
1503/// A collection of projections into user types.
1504///
1505/// They are projections because a binding can occur a part of a
1506/// parent pattern that has been ascribed a type.
1507///
1508/// It's a collection because there can be multiple type ascriptions on
1509/// the path from the root of the pattern down to the binding itself.
1510///
1511/// An example:
1512///
1513/// ```ignore (illustrative)
1514/// struct S<'a>((i32, &'a str), String);
1515/// let S((_, w): (i32, &'static str), _): S = ...;
1516/// //    ------  ^^^^^^^^^^^^^^^^^^^ (1)
1517/// //  ---------------------------------  ^ (2)
1518/// ```
1519///
1520/// The highlights labelled `(1)` show the subpattern `(_, w)` being
1521/// ascribed the type `(i32, &'static str)`.
1522///
1523/// The highlights labelled `(2)` show the whole pattern being
1524/// ascribed the type `S`.
1525///
1526/// In this example, when we descend to `w`, we will have built up the
1527/// following two projected types:
1528///
1529///   * base: `S`,                   projection: `(base.0).1`
1530///   * base: `(i32, &'static str)`, projection: `base.1`
1531///
1532/// The first will lead to the constraint `w: &'1 str` (for some
1533/// inferred region `'1`). The second will lead to the constraint `w:
1534/// &'static str`.
1535#[derive(#[automatically_derived]
impl ::core::clone::Clone for UserTypeProjections {
    #[inline]
    fn clone(&self) -> UserTypeProjections {
        UserTypeProjections {
            contents: ::core::clone::Clone::clone(&self.contents),
        }
    }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for UserTypeProjections {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field1_finish(f,
            "UserTypeProjections", "contents", &&self.contents)
    }
}Debug, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for UserTypeProjections {
            fn encode(&self, __encoder: &mut __E) {
                match *self {
                    UserTypeProjections { contents: ref __binding_0 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                }
            }
        }
    };TyEncodable, const _: () =
    {
        impl<'tcx, __D: ::rustc_middle::ty::codec::TyDecoder<'tcx>>
            ::rustc_serialize::Decodable<__D> for UserTypeProjections {
            fn decode(__decoder: &mut __D) -> Self {
                UserTypeProjections {
                    contents: ::rustc_serialize::Decodable::decode(__decoder),
                }
            }
        }
    };TyDecodable, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for
            UserTypeProjections {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    UserTypeProjections { contents: ref __binding_0 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeFoldable<::rustc_middle::ty::TyCtxt<'tcx>>
            for UserTypeProjections {
            fn try_fold_with<__F: ::rustc_middle::ty::FallibleTypeFolder<::rustc_middle::ty::TyCtxt<'tcx>>>(self,
                __folder: &mut __F) -> Result<Self, __F::Error> {
                Ok(match self {
                        UserTypeProjections { contents: __binding_0 } => {
                            UserTypeProjections {
                                contents: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                            }
                        }
                    })
            }
            fn fold_with<__F: ::rustc_middle::ty::TypeFolder<::rustc_middle::ty::TyCtxt<'tcx>>>(self,
                __folder: &mut __F) -> Self {
                match self {
                    UserTypeProjections { contents: __binding_0 } => {
                        UserTypeProjections {
                            contents: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                        }
                    }
                }
            }
        }
    };TypeFoldable, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeVisitable<::rustc_middle::ty::TyCtxt<'tcx>>
            for UserTypeProjections {
            fn visit_with<__V: ::rustc_middle::ty::TypeVisitor<::rustc_middle::ty::TyCtxt<'tcx>>>(&self,
                __visitor: &mut __V) -> __V::Result {
                match *self {
                    UserTypeProjections { contents: ref __binding_0 } => {
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_0,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                    }
                }
                <__V::Result as ::rustc_middle::ty::VisitorResult>::output()
            }
        }
    };TypeVisitable)]
1536pub struct UserTypeProjections {
1537    pub contents: Vec<UserTypeProjection>,
1538}
1539
1540impl UserTypeProjections {
1541    pub fn projections(&self) -> impl Iterator<Item = &UserTypeProjection> + ExactSizeIterator {
1542        self.contents.iter()
1543    }
1544}
1545
1546/// Encodes the effect of a user-supplied type annotation on the
1547/// subcomponents of a pattern. The effect is determined by applying the
1548/// given list of projections to some underlying base type. Often,
1549/// the projection element list `projs` is empty, in which case this
1550/// directly encodes a type in `base`. But in the case of complex patterns with
1551/// subpatterns and bindings, we want to apply only a *part* of the type to a variable,
1552/// in which case the `projs` vector is used.
1553///
1554/// Examples:
1555///
1556/// * `let x: T = ...` -- here, the `projs` vector is empty.
1557///
1558/// * `let (x, _): T = ...` -- here, the `projs` vector would contain
1559///   `field[0]` (aka `.0`), indicating that the type of `s` is
1560///   determined by finding the type of the `.0` field from `T`.
1561#[derive(#[automatically_derived]
impl ::core::clone::Clone for UserTypeProjection {
    #[inline]
    fn clone(&self) -> UserTypeProjection {
        UserTypeProjection {
            base: ::core::clone::Clone::clone(&self.base),
            projs: ::core::clone::Clone::clone(&self.projs),
        }
    }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for UserTypeProjection {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field2_finish(f,
            "UserTypeProjection", "base", &self.base, "projs", &&self.projs)
    }
}Debug, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for UserTypeProjection {
            fn encode(&self, __encoder: &mut __E) {
                match *self {
                    UserTypeProjection {
                        base: ref __binding_0, projs: ref __binding_1 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                    }
                }
            }
        }
    };TyEncodable, const _: () =
    {
        impl<'tcx, __D: ::rustc_middle::ty::codec::TyDecoder<'tcx>>
            ::rustc_serialize::Decodable<__D> for UserTypeProjection {
            fn decode(__decoder: &mut __D) -> Self {
                UserTypeProjection {
                    base: ::rustc_serialize::Decodable::decode(__decoder),
                    projs: ::rustc_serialize::Decodable::decode(__decoder),
                }
            }
        }
    };TyDecodable, #[automatically_derived]
impl ::core::hash::Hash for UserTypeProjection {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
        ::core::hash::Hash::hash(&self.base, state);
        ::core::hash::Hash::hash(&self.projs, state)
    }
}Hash, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for
            UserTypeProjection {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    UserTypeProjection {
                        base: ref __binding_0, projs: ref __binding_1 } => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash, #[automatically_derived]
impl ::core::cmp::PartialEq for UserTypeProjection {
    #[inline]
    fn eq(&self, other: &UserTypeProjection) -> bool {
        self.base == other.base && self.projs == other.projs
    }
}PartialEq)]
1562#[derive(const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeFoldable<::rustc_middle::ty::TyCtxt<'tcx>>
            for UserTypeProjection {
            fn try_fold_with<__F: ::rustc_middle::ty::FallibleTypeFolder<::rustc_middle::ty::TyCtxt<'tcx>>>(self,
                __folder: &mut __F) -> Result<Self, __F::Error> {
                Ok(match self {
                        UserTypeProjection { base: __binding_0, projs: __binding_1 }
                            => {
                            UserTypeProjection {
                                base: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                projs: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?,
                            }
                        }
                    })
            }
            fn fold_with<__F: ::rustc_middle::ty::TypeFolder<::rustc_middle::ty::TyCtxt<'tcx>>>(self,
                __folder: &mut __F) -> Self {
                match self {
                    UserTypeProjection { base: __binding_0, projs: __binding_1 }
                        => {
                        UserTypeProjection {
                            base: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            projs: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
                                __folder),
                        }
                    }
                }
            }
        }
    };TypeFoldable, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeVisitable<::rustc_middle::ty::TyCtxt<'tcx>>
            for UserTypeProjection {
            fn visit_with<__V: ::rustc_middle::ty::TypeVisitor<::rustc_middle::ty::TyCtxt<'tcx>>>(&self,
                __visitor: &mut __V) -> __V::Result {
                match *self {
                    UserTypeProjection {
                        base: ref __binding_0, projs: ref __binding_1 } => {
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_0,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_1,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                    }
                }
                <__V::Result as ::rustc_middle::ty::VisitorResult>::output()
            }
        }
    };TypeVisitable)]
1563pub struct UserTypeProjection {
1564    pub base: UserTypeAnnotationIndex,
1565    pub projs: Vec<ProjectionKind>,
1566}
1567
1568impl ::std::fmt::Debug for Promoted {
    fn fmt(&self, fmt: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
        fmt.write_fmt(format_args!("promoted[{0}]", self.as_u32()))
    }
}rustc_index::newtype_index! {
1569    #[stable_hash]
1570    #[encodable]
1571    #[orderable]
1572    #[debug_format = "promoted[{}]"]
1573    pub struct Promoted {}
1574}
1575
1576/// `Location` represents the position of the start of the statement; or, if
1577/// `statement_index` equals the number of statements, then the start of the
1578/// terminator.
1579#[derive(#[automatically_derived]
impl ::core::marker::Copy for Location { }Copy, #[automatically_derived]
impl ::core::clone::Clone for Location {
    #[inline]
    fn clone(&self) -> Location {
        let _: ::core::clone::AssertParamIsClone<BasicBlock>;
        let _: ::core::clone::AssertParamIsClone<usize>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::cmp::PartialEq for Location {
    #[inline]
    fn eq(&self, other: &Location) -> bool {
        self.block == other.block &&
            self.statement_index == other.statement_index
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for Location {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<BasicBlock>;
        let _: ::core::cmp::AssertParamIsEq<usize>;
    }
}Eq, #[automatically_derived]
impl ::core::hash::Hash for Location {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
        ::core::hash::Hash::hash(&self.block, state);
        ::core::hash::Hash::hash(&self.statement_index, state)
    }
}Hash, #[automatically_derived]
impl ::core::cmp::Ord for Location {
    #[inline]
    fn cmp(&self, other: &Location) -> ::core::cmp::Ordering {
        match ::core::cmp::Ord::cmp(&self.block, &other.block) {
            ::core::cmp::Ordering::Equal =>
                ::core::cmp::Ord::cmp(&self.statement_index,
                    &other.statement_index),
            cmp => cmp,
        }
    }
}Ord, #[automatically_derived]
impl ::core::cmp::PartialOrd for Location {
    #[inline]
    fn partial_cmp(&self, other: &Location)
        -> ::core::option::Option<::core::cmp::Ordering> {
        match ::core::cmp::PartialOrd::partial_cmp(&self.block, &other.block)
            {
            ::core::option::Option::Some(::core::cmp::Ordering::Equal) =>
                ::core::cmp::PartialOrd::partial_cmp(&self.statement_index,
                    &other.statement_index),
            cmp => cmp,
        }
    }
}PartialOrd, const _: () =
    {
        impl ::rustc_data_structures::stable_hash::StableHash for Location {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hash::StableHasher) {
                match *self {
                    Location {
                        block: ref __binding_0, statement_index: ref __binding_1 }
                        => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                        { __binding_1.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
1580pub struct Location {
1581    /// The block that the location is within.
1582    pub block: BasicBlock,
1583
1584    pub statement_index: usize,
1585}
1586
1587impl fmt::Debug for Location {
1588    fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
1589        fmt.write_fmt(format_args!("{0:?}[{1}]", self.block, self.statement_index))write!(fmt, "{:?}[{}]", self.block, self.statement_index)
1590    }
1591}
1592
1593impl Location {
1594    pub const START: Location = Location { block: START_BLOCK, statement_index: 0 };
1595
1596    /// Returns the location immediately after this one within the enclosing block.
1597    ///
1598    /// Note that if this location represents a terminator, then the
1599    /// resulting location would be out of bounds and invalid.
1600    #[inline]
1601    pub fn successor_within_block(&self) -> Location {
1602        Location { block: self.block, statement_index: self.statement_index + 1 }
1603    }
1604
1605    /// Returns `true` if `other` is earlier in the control flow graph than `self`.
1606    pub fn is_predecessor_of<'tcx>(&self, other: Location, body: &Body<'tcx>) -> bool {
1607        // If we are in the same block as the other location and are an earlier statement
1608        // then we are a predecessor of `other`.
1609        if self.block == other.block && self.statement_index < other.statement_index {
1610            return true;
1611        }
1612
1613        let predecessors = body.basic_blocks.predecessors();
1614
1615        // If we're in another block, then we want to check that block is a predecessor of `other`.
1616        let mut queue: Vec<BasicBlock> = predecessors[other.block].to_vec();
1617        let mut visited = FxHashSet::default();
1618
1619        while let Some(block) = queue.pop() {
1620            // If we haven't visited this block before, then make sure we visit its predecessors.
1621            if visited.insert(block) {
1622                queue.extend(predecessors[block].iter().cloned());
1623            } else {
1624                continue;
1625            }
1626
1627            // If we found the block that `self` is in, then we are a predecessor of `other` (since
1628            // we found that block by looking at the predecessors of `other`).
1629            if self.block == block {
1630                return true;
1631            }
1632        }
1633
1634        false
1635    }
1636
1637    #[inline]
1638    pub fn dominates(&self, other: Location, dominators: &Dominators<BasicBlock>) -> bool {
1639        if self.block == other.block {
1640            self.statement_index <= other.statement_index
1641        } else {
1642            dominators.dominates(self.block, other.block)
1643        }
1644    }
1645
1646    #[inline]
1647    pub fn strictly_dominates(&self, other: Location, dominators: &Dominators<BasicBlock>) -> bool {
1648        self.block != other.block && dominators.strictly_dominates(self.block, other.block)
1649    }
1650}
1651
1652/// `DefLocation` represents the location of a definition - either an argument or an assignment
1653/// within MIR body.
1654#[derive(#[automatically_derived]
impl ::core::marker::Copy for DefLocation { }Copy, #[automatically_derived]
impl ::core::clone::Clone for DefLocation {
    #[inline]
    fn clone(&self) -> DefLocation {
        let _: ::core::clone::AssertParamIsClone<Location>;
        let _: ::core::clone::AssertParamIsClone<BasicBlock>;
        let _: ::core::clone::AssertParamIsClone<Option<BasicBlock>>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for DefLocation {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            DefLocation::Argument =>
                ::core::fmt::Formatter::write_str(f, "Argument"),
            DefLocation::Assignment(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "Assignment", &__self_0),
            DefLocation::CallReturn { call: __self_0, target: __self_1 } =>
                ::core::fmt::Formatter::debug_struct_field2_finish(f,
                    "CallReturn", "call", __self_0, "target", &__self_1),
        }
    }
}Debug, #[automatically_derived]
impl ::core::cmp::PartialEq for DefLocation {
    #[inline]
    fn eq(&self, other: &DefLocation) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr &&
            match (self, other) {
                (DefLocation::Assignment(__self_0),
                    DefLocation::Assignment(__arg1_0)) => __self_0 == __arg1_0,
                (DefLocation::CallReturn { call: __self_0, target: __self_1 },
                    DefLocation::CallReturn { call: __arg1_0, target: __arg1_1
                    }) => __self_0 == __arg1_0 && __self_1 == __arg1_1,
                _ => true,
            }
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for DefLocation {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<Location>;
        let _: ::core::cmp::AssertParamIsEq<BasicBlock>;
        let _: ::core::cmp::AssertParamIsEq<Option<BasicBlock>>;
    }
}Eq)]
1655pub enum DefLocation {
1656    Argument,
1657    Assignment(Location),
1658    CallReturn { call: BasicBlock, target: Option<BasicBlock> },
1659}
1660
1661impl DefLocation {
1662    #[inline]
1663    pub fn dominates(self, location: Location, dominators: &Dominators<BasicBlock>) -> bool {
1664        match self {
1665            DefLocation::Argument => true,
1666            DefLocation::Assignment(def) => {
1667                def.successor_within_block().dominates(location, dominators)
1668            }
1669            DefLocation::CallReturn { target: None, .. } => false,
1670            DefLocation::CallReturn { call, target: Some(target) } => {
1671                // The definition occurs on the call -> target edge. The definition dominates a use
1672                // if and only if the edge is on all paths from the entry to the use.
1673                //
1674                // Note that a call terminator has only one edge that can reach the target, so when
1675                // the call strongly dominates the target, all paths from the entry to the target
1676                // go through the call -> target edge.
1677                call != target
1678                    && dominators.dominates(call, target)
1679                    && dominators.dominates(target, location.block)
1680            }
1681        }
1682    }
1683}
1684
1685/// Checks if the specified `local` is used as the `self` parameter of a method call
1686/// in the provided `BasicBlock`. If it is, then the `DefId` of the called method is
1687/// returned.
1688pub fn find_self_call<'tcx>(
1689    tcx: TyCtxt<'tcx>,
1690    body: &Body<'tcx>,
1691    local: Local,
1692    block: BasicBlock,
1693) -> Option<(DefId, GenericArgsRef<'tcx>)> {
1694    {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_middle/src/mir/mod.rs:1694",
                        "rustc_middle::mir", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_middle/src/mir/mod.rs"),
                        ::tracing_core::__macro_support::Option::Some(1694u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_middle::mir"),
                        ::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};
                let mut iter = __CALLSITE.metadata().fields().iter();
                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&format_args!("find_self_call(local={0:?}): terminator={1:?}",
                                                    local, body[block].terminator) as &dyn Value))])
            });
    } else { ; }
};debug!("find_self_call(local={:?}): terminator={:?}", local, body[block].terminator);
1695    if let Some(Terminator { kind: TerminatorKind::Call { func, args, .. }, .. }) =
1696        &body[block].terminator
1697        && let Operand::Constant(box ConstOperand { const_, .. }) = func
1698        && let ty::FnDef(def_id, fn_args) = *const_.ty().kind()
1699        && let Some(item) = tcx.opt_associated_item(def_id)
1700        && item.is_method()
1701        && let [Spanned { node: Operand::Move(self_place) | Operand::Copy(self_place), .. }, ..] =
1702            **args
1703    {
1704        if self_place.as_local() == Some(local) {
1705            return Some((def_id, fn_args));
1706        }
1707
1708        // Handle the case where `self_place` gets reborrowed.
1709        // This happens when the receiver is `&T`.
1710        for stmt in &body[block].statements {
1711            if let StatementKind::Assign(box (place, rvalue)) = &stmt.kind
1712                && let Some(reborrow_local) = place.as_local()
1713                && self_place.as_local() == Some(reborrow_local)
1714                && let Rvalue::Ref(_, _, deref_place) = rvalue
1715                && let PlaceRef { local: deref_local, projection: [ProjectionElem::Deref] } =
1716                    deref_place.as_ref()
1717                && deref_local == local
1718            {
1719                return Some((def_id, fn_args));
1720            }
1721        }
1722    }
1723    None
1724}
1725
1726// Some nodes are used a lot. Make sure they don't unintentionally get bigger.
1727#[cfg(target_pointer_width = "64")]
1728mod size_asserts {
1729    use rustc_data_structures::static_assert_size;
1730
1731    use super::*;
1732    // tidy-alphabetical-start
1733    const _: [(); 152] = [(); ::std::mem::size_of::<BasicBlockData<'_>>()];static_assert_size!(BasicBlockData<'_>, 152);
1734    const _: [(); 40] = [(); ::std::mem::size_of::<LocalDecl<'_>>()];static_assert_size!(LocalDecl<'_>, 40);
1735    const _: [(); 64] = [(); ::std::mem::size_of::<SourceScopeData<'_>>()];static_assert_size!(SourceScopeData<'_>, 64);
1736    const _: [(); 56] = [(); ::std::mem::size_of::<Statement<'_>>()];static_assert_size!(Statement<'_>, 56);
1737    const _: [(); 96] = [(); ::std::mem::size_of::<Terminator<'_>>()];static_assert_size!(Terminator<'_>, 96);
1738    const _: [(); 88] = [(); ::std::mem::size_of::<VarDebugInfo<'_>>()];static_assert_size!(VarDebugInfo<'_>, 88);
1739    // tidy-alphabetical-end
1740}