rustc_middle/mir/
syntax.rs

1//! This defines the syntax of MIR, i.e., the set of available MIR operations, and other definitions
2//! closely related to MIR semantics.
3//! This is in a dedicated file so that changes to this file can be reviewed more carefully.
4//! The intention is that this file only contains datatype declarations, no code.
5
6use rustc_abi::{FieldIdx, VariantIdx};
7use rustc_ast::{InlineAsmOptions, InlineAsmTemplatePiece, Mutability};
8use rustc_data_structures::packed::Pu128;
9use rustc_hir::CoroutineKind;
10use rustc_hir::def_id::DefId;
11use rustc_index::IndexVec;
12use rustc_macros::{HashStable, TyDecodable, TyEncodable, TypeFoldable, TypeVisitable};
13use rustc_span::def_id::LocalDefId;
14use rustc_span::source_map::Spanned;
15use rustc_span::{Span, Symbol};
16use rustc_target::asm::InlineAsmRegOrRegClass;
17use smallvec::SmallVec;
18
19use super::{BasicBlock, Const, Local, UserTypeProjection};
20use crate::mir::coverage::CoverageKind;
21use crate::ty::adjustment::PointerCoercion;
22use crate::ty::{self, GenericArgsRef, List, Region, Ty, UserTypeAnnotationIndex};
23
24/// Represents the "flavors" of MIR.
25///
26/// The MIR pipeline is structured into a few major dialects, with one or more phases within each
27/// dialect. A MIR flavor is identified by a dialect-phase pair. A single `MirPhase` value
28/// specifies such a pair. All flavors of MIR use the same data structure to represent the program.
29///
30/// Different MIR dialects have different semantics. (The differences between dialects are small,
31/// but they do exist.) The progression from one MIR dialect to the next is technically a lowering
32/// from one IR to another. In other words, a single well-formed [`Body`](crate::mir::Body) might
33/// have different semantic meaning and different behavior at runtime in the different dialects.
34/// The specific differences between dialects are described on the variants below.
35///
36/// Phases exist only to place restrictions on what language constructs are permitted in
37/// well-formed MIR, and subsequent phases mostly increase those restrictions. I.e. to convert MIR
38/// from one phase to the next might require removing/replacing certain MIR constructs.
39///
40/// When adding dialects or phases, remember to update [`MirPhase::index`].
41#[derive(#[automatically_derived]
impl ::core::marker::Copy for MirPhase { }Copy, #[automatically_derived]
impl ::core::clone::Clone for MirPhase {
    #[inline]
    fn clone(&self) -> MirPhase {
        let _: ::core::clone::AssertParamIsClone<AnalysisPhase>;
        let _: ::core::clone::AssertParamIsClone<RuntimePhase>;
        *self
    }
}Clone, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for MirPhase {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        MirPhase::Built => { 0usize }
                        MirPhase::Analysis(ref __binding_0) => { 1usize }
                        MirPhase::Runtime(ref __binding_0) => { 2usize }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    MirPhase::Built => {}
                    MirPhase::Analysis(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    MirPhase::Runtime(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 MirPhase {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => { MirPhase::Built }
                    1usize => {
                        MirPhase::Analysis(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    2usize => {
                        MirPhase::Runtime(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `MirPhase`, expected 0..3, actual {0}",
                                n));
                    }
                }
            }
        }
    };TyDecodable, #[automatically_derived]
impl ::core::fmt::Debug for MirPhase {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            MirPhase::Built => ::core::fmt::Formatter::write_str(f, "Built"),
            MirPhase::Analysis(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "Analysis", &__self_0),
            MirPhase::Runtime(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "Runtime", &__self_0),
        }
    }
}Debug, #[automatically_derived]
impl ::core::cmp::PartialEq for MirPhase {
    #[inline]
    fn eq(&self, other: &MirPhase) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr &&
            match (self, other) {
                (MirPhase::Analysis(__self_0), MirPhase::Analysis(__arg1_0))
                    => __self_0 == __arg1_0,
                (MirPhase::Runtime(__self_0), MirPhase::Runtime(__arg1_0)) =>
                    __self_0 == __arg1_0,
                _ => true,
            }
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for MirPhase {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_receiver_is_total_eq(&self) -> () {
        let _: ::core::cmp::AssertParamIsEq<AnalysisPhase>;
        let _: ::core::cmp::AssertParamIsEq<RuntimePhase>;
    }
}Eq, #[automatically_derived]
impl ::core::cmp::PartialOrd for MirPhase {
    #[inline]
    fn partial_cmp(&self, other: &MirPhase)
        -> ::core::option::Option<::core::cmp::Ordering> {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        match (self, other) {
            (MirPhase::Analysis(__self_0), MirPhase::Analysis(__arg1_0)) =>
                ::core::cmp::PartialOrd::partial_cmp(__self_0, __arg1_0),
            (MirPhase::Runtime(__self_0), MirPhase::Runtime(__arg1_0)) =>
                ::core::cmp::PartialOrd::partial_cmp(__self_0, __arg1_0),
            _ =>
                ::core::cmp::PartialOrd::partial_cmp(&__self_discr,
                    &__arg1_discr),
        }
    }
}PartialOrd, #[automatically_derived]
impl ::core::cmp::Ord for MirPhase {
    #[inline]
    fn cmp(&self, other: &MirPhase) -> ::core::cmp::Ordering {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        match ::core::cmp::Ord::cmp(&__self_discr, &__arg1_discr) {
            ::core::cmp::Ordering::Equal =>
                match (self, other) {
                    (MirPhase::Analysis(__self_0), MirPhase::Analysis(__arg1_0))
                        => ::core::cmp::Ord::cmp(__self_0, __arg1_0),
                    (MirPhase::Runtime(__self_0), MirPhase::Runtime(__arg1_0))
                        => ::core::cmp::Ord::cmp(__self_0, __arg1_0),
                    _ => ::core::cmp::Ordering::Equal,
                },
            cmp => cmp,
        }
    }
}Ord)]
42#[derive(const _: () =
    {
        impl<'__ctx>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_query_system::ich::StableHashingContext<'__ctx>>
            for MirPhase {
            #[inline]
            fn hash_stable(&self,
                __hcx:
                    &mut ::rustc_query_system::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                ::std::mem::discriminant(self).hash_stable(__hcx, __hasher);
                match *self {
                    MirPhase::Built => {}
                    MirPhase::Analysis(ref __binding_0) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                    MirPhase::Runtime(ref __binding_0) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                }
            }
        }
    };HashStable)]
43pub enum MirPhase {
44    /// The "built MIR" dialect, as generated by MIR building.
45    ///
46    /// The only things that operate on this dialect are unsafeck, the various MIR lints, and const
47    /// qualifs.
48    ///
49    /// This dialect has just the one (implicit) phase, which places few restrictions on what MIR
50    /// constructs are allowed.
51    Built,
52
53    /// The "analysis MIR" dialect, used for borrowck and friends.
54    ///
55    /// The only semantic difference between built MIR and analysis MIR relates to constant
56    /// promotion. In built MIR, sequences of statements that would generally be subject to
57    /// constant promotion are semantically constants, while in analysis MIR all constants are
58    /// explicit.
59    ///
60    /// The result of const promotion is available from the `mir_promoted` and `promoted_mir`
61    /// queries.
62    ///
63    /// The phases of this dialect are described in `AnalysisPhase`.
64    Analysis(AnalysisPhase),
65
66    /// The "runtime MIR" dialect, used for CTFE, optimizations, and codegen.
67    ///
68    /// The semantic differences between analysis MIR and runtime MIR are as follows.
69    ///
70    /// - Drops: In analysis MIR, `Drop` terminators represent *conditional* drops; roughly
71    ///   speaking, if dataflow analysis determines that the place being dropped is uninitialized,
72    ///   the drop will not be executed. The exact semantics of this aren't written down anywhere,
73    ///   which means they are essentially "what drop elaboration does." In runtime MIR, the drops
74    ///   are unconditional; when a `Drop` terminator is reached, if the type has drop glue that
75    ///   drop glue is always executed. This may be UB if the underlying place is not initialized.
76    /// - Packed drops: Places might in general be misaligned - in most cases this is UB, the
77    ///   exception is fields of packed structs. In analysis MIR, `Drop(P)` for a `P` that might be
78    ///   misaligned for this reason implicitly moves `P` to a temporary before dropping. Runtime
79    ///   MIR has no such rules, and dropping a misaligned place is simply UB.
80    /// - Async drops: after drop elaboration some drops may become async (`drop`, `async_fut` fields).
81    ///   StateTransform pass will expand those async drops or reset to sync.
82    /// - Unwinding: in analysis MIR, unwinding from a function which may not unwind aborts. In
83    ///   runtime MIR, this is UB.
84    /// - Retags: If `-Zmir-emit-retag` is enabled, analysis MIR has "implicit" retags in the same
85    ///   way that Rust itself has them. Where exactly these are is generally subject to change,
86    ///   and so we don't document this here. Runtime MIR has most retags explicit (though implicit
87    ///   retags can still occur at `Rvalue::{Ref,AddrOf}`).
88    /// - Coroutine bodies: In analysis MIR, locals may actually be behind a pointer that user code
89    ///   has access to. This occurs in coroutine bodies. Such locals do not behave like other
90    ///   locals, because they e.g. may be aliased in surprising ways. Runtime MIR has no such
91    ///   special locals. All coroutine bodies are lowered and so all places that look like locals
92    ///   really are locals.
93    ///
94    /// Also note that the lint pass which reports eg `200_u8 + 200_u8` as an error is run as a part
95    /// of analysis to runtime MIR lowering. To ensure lints are reported reliably, this means that
96    /// transformations that can suppress such errors should not run on analysis MIR.
97    ///
98    /// The phases of this dialect are described in `RuntimePhase`.
99    Runtime(RuntimePhase),
100}
101
102/// See [`MirPhase::Analysis`].
103#[derive(#[automatically_derived]
impl ::core::marker::Copy for AnalysisPhase { }Copy, #[automatically_derived]
impl ::core::clone::Clone for AnalysisPhase {
    #[inline]
    fn clone(&self) -> AnalysisPhase { *self }
}Clone, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for AnalysisPhase {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        AnalysisPhase::Initial => { 0usize }
                        AnalysisPhase::PostCleanup => { 1usize }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    AnalysisPhase::Initial => {}
                    AnalysisPhase::PostCleanup => {}
                }
            }
        }
    };TyEncodable, const _: () =
    {
        impl<'tcx, __D: ::rustc_middle::ty::codec::TyDecoder<'tcx>>
            ::rustc_serialize::Decodable<__D> for AnalysisPhase {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => { AnalysisPhase::Initial }
                    1usize => { AnalysisPhase::PostCleanup }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `AnalysisPhase`, expected 0..2, actual {0}",
                                n));
                    }
                }
            }
        }
    };TyDecodable, #[automatically_derived]
impl ::core::fmt::Debug for AnalysisPhase {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                AnalysisPhase::Initial => "Initial",
                AnalysisPhase::PostCleanup => "PostCleanup",
            })
    }
}Debug, #[automatically_derived]
impl ::core::cmp::PartialEq for AnalysisPhase {
    #[inline]
    fn eq(&self, other: &AnalysisPhase) -> 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 AnalysisPhase {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_receiver_is_total_eq(&self) -> () {}
}Eq, #[automatically_derived]
impl ::core::cmp::PartialOrd for AnalysisPhase {
    #[inline]
    fn partial_cmp(&self, other: &AnalysisPhase)
        -> ::core::option::Option<::core::cmp::Ordering> {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        ::core::cmp::PartialOrd::partial_cmp(&__self_discr, &__arg1_discr)
    }
}PartialOrd, #[automatically_derived]
impl ::core::cmp::Ord for AnalysisPhase {
    #[inline]
    fn cmp(&self, other: &AnalysisPhase) -> ::core::cmp::Ordering {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        ::core::cmp::Ord::cmp(&__self_discr, &__arg1_discr)
    }
}Ord)]
104#[derive(const _: () =
    {
        impl<'__ctx>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_query_system::ich::StableHashingContext<'__ctx>>
            for AnalysisPhase {
            #[inline]
            fn hash_stable(&self,
                __hcx:
                    &mut ::rustc_query_system::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                ::std::mem::discriminant(self).hash_stable(__hcx, __hasher);
                match *self {
                    AnalysisPhase::Initial => {}
                    AnalysisPhase::PostCleanup => {}
                }
            }
        }
    };HashStable)]
105pub enum AnalysisPhase {
106    Initial = 0,
107    /// Beginning in this phase, the following variants are disallowed:
108    /// * [`TerminatorKind::FalseUnwind`]
109    /// * [`TerminatorKind::FalseEdge`]
110    /// * [`StatementKind::FakeRead`]
111    /// * [`StatementKind::AscribeUserType`]
112    /// * [`StatementKind::Coverage`] with [`CoverageKind::BlockMarker`] or
113    ///   [`CoverageKind::SpanMarker`]
114    /// * [`Rvalue::Ref`] with `BorrowKind::Fake`
115    /// * [`CastKind::PointerCoercion`] with any of the following:
116    ///   * [`PointerCoercion::ArrayToPointer`]
117    ///   * [`PointerCoercion::MutToConstPointer`]
118    ///
119    /// Furthermore, `Deref` projections must be the first projection within any place (if they
120    /// appear at all)
121    PostCleanup = 1,
122}
123
124/// See [`MirPhase::Runtime`].
125#[derive(#[automatically_derived]
impl ::core::marker::Copy for RuntimePhase { }Copy, #[automatically_derived]
impl ::core::clone::Clone for RuntimePhase {
    #[inline]
    fn clone(&self) -> RuntimePhase { *self }
}Clone, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for RuntimePhase {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        RuntimePhase::Initial => { 0usize }
                        RuntimePhase::PostCleanup => { 1usize }
                        RuntimePhase::Optimized => { 2usize }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    RuntimePhase::Initial => {}
                    RuntimePhase::PostCleanup => {}
                    RuntimePhase::Optimized => {}
                }
            }
        }
    };TyEncodable, const _: () =
    {
        impl<'tcx, __D: ::rustc_middle::ty::codec::TyDecoder<'tcx>>
            ::rustc_serialize::Decodable<__D> for RuntimePhase {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => { RuntimePhase::Initial }
                    1usize => { RuntimePhase::PostCleanup }
                    2usize => { RuntimePhase::Optimized }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `RuntimePhase`, expected 0..3, actual {0}",
                                n));
                    }
                }
            }
        }
    };TyDecodable, #[automatically_derived]
impl ::core::fmt::Debug for RuntimePhase {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                RuntimePhase::Initial => "Initial",
                RuntimePhase::PostCleanup => "PostCleanup",
                RuntimePhase::Optimized => "Optimized",
            })
    }
}Debug, #[automatically_derived]
impl ::core::cmp::PartialEq for RuntimePhase {
    #[inline]
    fn eq(&self, other: &RuntimePhase) -> 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 RuntimePhase {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_receiver_is_total_eq(&self) -> () {}
}Eq, #[automatically_derived]
impl ::core::cmp::PartialOrd for RuntimePhase {
    #[inline]
    fn partial_cmp(&self, other: &RuntimePhase)
        -> ::core::option::Option<::core::cmp::Ordering> {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        ::core::cmp::PartialOrd::partial_cmp(&__self_discr, &__arg1_discr)
    }
}PartialOrd, #[automatically_derived]
impl ::core::cmp::Ord for RuntimePhase {
    #[inline]
    fn cmp(&self, other: &RuntimePhase) -> ::core::cmp::Ordering {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        ::core::cmp::Ord::cmp(&__self_discr, &__arg1_discr)
    }
}Ord)]
126#[derive(const _: () =
    {
        impl<'__ctx>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_query_system::ich::StableHashingContext<'__ctx>>
            for RuntimePhase {
            #[inline]
            fn hash_stable(&self,
                __hcx:
                    &mut ::rustc_query_system::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                ::std::mem::discriminant(self).hash_stable(__hcx, __hasher);
                match *self {
                    RuntimePhase::Initial => {}
                    RuntimePhase::PostCleanup => {}
                    RuntimePhase::Optimized => {}
                }
            }
        }
    };HashStable)]
127pub enum RuntimePhase {
128    /// In addition to the semantic changes, beginning with this phase, the following variants are
129    /// disallowed:
130    /// * [`TerminatorKind::Yield`]
131    /// * [`TerminatorKind::CoroutineDrop`]
132    /// * [`Rvalue::Aggregate`] for any `AggregateKind` except `Array`
133    /// * [`Rvalue::CopyForDeref`]
134    /// * [`PlaceElem::OpaqueCast`]
135    /// * [`LocalInfo::DerefTemp`](super::LocalInfo::DerefTemp)
136    ///
137    /// And the following variants are allowed:
138    /// * [`StatementKind::Retag`]
139    /// * [`StatementKind::SetDiscriminant`]
140    /// * [`PlaceElem::ConstantIndex`] / [`PlaceElem::Subslice`] after [`PlaceElem::Subslice`]
141    ///
142    /// Furthermore, `Copy` operands are allowed for non-`Copy` types.
143    Initial = 0,
144    /// Beginning with this phase, the following variant is disallowed:
145    /// * [`ProjectionElem::Deref`] of `Box`
146    PostCleanup = 1,
147    Optimized = 2,
148}
149
150///////////////////////////////////////////////////////////////////////////
151// Borrow kinds
152
153#[derive(#[automatically_derived]
impl ::core::marker::Copy for BorrowKind { }Copy, #[automatically_derived]
impl ::core::clone::Clone for BorrowKind {
    #[inline]
    fn clone(&self) -> BorrowKind {
        let _: ::core::clone::AssertParamIsClone<FakeBorrowKind>;
        let _: ::core::clone::AssertParamIsClone<MutBorrowKind>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for BorrowKind {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            BorrowKind::Shared =>
                ::core::fmt::Formatter::write_str(f, "Shared"),
            BorrowKind::Fake(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Fake",
                    &__self_0),
            BorrowKind::Mut { kind: __self_0 } =>
                ::core::fmt::Formatter::debug_struct_field1_finish(f, "Mut",
                    "kind", &__self_0),
        }
    }
}Debug, #[automatically_derived]
impl ::core::cmp::PartialEq for BorrowKind {
    #[inline]
    fn eq(&self, other: &BorrowKind) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr &&
            match (self, other) {
                (BorrowKind::Fake(__self_0), BorrowKind::Fake(__arg1_0)) =>
                    __self_0 == __arg1_0,
                (BorrowKind::Mut { kind: __self_0 }, BorrowKind::Mut {
                    kind: __arg1_0 }) => __self_0 == __arg1_0,
                _ => true,
            }
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for BorrowKind {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_receiver_is_total_eq(&self) -> () {
        let _: ::core::cmp::AssertParamIsEq<FakeBorrowKind>;
        let _: ::core::cmp::AssertParamIsEq<MutBorrowKind>;
    }
}Eq, #[automatically_derived]
impl ::core::cmp::PartialOrd for BorrowKind {
    #[inline]
    fn partial_cmp(&self, other: &BorrowKind)
        -> ::core::option::Option<::core::cmp::Ordering> {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        match (self, other) {
            (BorrowKind::Fake(__self_0), BorrowKind::Fake(__arg1_0)) =>
                ::core::cmp::PartialOrd::partial_cmp(__self_0, __arg1_0),
            (BorrowKind::Mut { kind: __self_0 }, BorrowKind::Mut {
                kind: __arg1_0 }) =>
                ::core::cmp::PartialOrd::partial_cmp(__self_0, __arg1_0),
            _ =>
                ::core::cmp::PartialOrd::partial_cmp(&__self_discr,
                    &__arg1_discr),
        }
    }
}PartialOrd, #[automatically_derived]
impl ::core::cmp::Ord for BorrowKind {
    #[inline]
    fn cmp(&self, other: &BorrowKind) -> ::core::cmp::Ordering {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        match ::core::cmp::Ord::cmp(&__self_discr, &__arg1_discr) {
            ::core::cmp::Ordering::Equal =>
                match (self, other) {
                    (BorrowKind::Fake(__self_0), BorrowKind::Fake(__arg1_0)) =>
                        ::core::cmp::Ord::cmp(__self_0, __arg1_0),
                    (BorrowKind::Mut { kind: __self_0 }, BorrowKind::Mut {
                        kind: __arg1_0 }) =>
                        ::core::cmp::Ord::cmp(__self_0, __arg1_0),
                    _ => ::core::cmp::Ordering::Equal,
                },
            cmp => cmp,
        }
    }
}Ord, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for BorrowKind {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        BorrowKind::Shared => { 0usize }
                        BorrowKind::Fake(ref __binding_0) => { 1usize }
                        BorrowKind::Mut { kind: ref __binding_0 } => { 2usize }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    BorrowKind::Shared => {}
                    BorrowKind::Fake(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    BorrowKind::Mut { kind: 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 BorrowKind {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => { BorrowKind::Shared }
                    1usize => {
                        BorrowKind::Fake(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    2usize => {
                        BorrowKind::Mut {
                            kind: ::rustc_serialize::Decodable::decode(__decoder),
                        }
                    }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `BorrowKind`, expected 0..3, actual {0}",
                                n));
                    }
                }
            }
        }
    };TyDecodable)]
154#[derive(#[automatically_derived]
impl ::core::hash::Hash for BorrowKind {
    #[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 {
            BorrowKind::Fake(__self_0) =>
                ::core::hash::Hash::hash(__self_0, state),
            BorrowKind::Mut { kind: __self_0 } =>
                ::core::hash::Hash::hash(__self_0, state),
            _ => {}
        }
    }
}Hash, const _: () =
    {
        impl<'__ctx>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_query_system::ich::StableHashingContext<'__ctx>>
            for BorrowKind {
            #[inline]
            fn hash_stable(&self,
                __hcx:
                    &mut ::rustc_query_system::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                ::std::mem::discriminant(self).hash_stable(__hcx, __hasher);
                match *self {
                    BorrowKind::Shared => {}
                    BorrowKind::Fake(ref __binding_0) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                    BorrowKind::Mut { kind: ref __binding_0 } => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                }
            }
        }
    };HashStable)]
155pub enum BorrowKind {
156    /// Data must be immutable and is aliasable.
157    Shared,
158
159    /// An immutable, aliasable borrow that is discarded after borrow-checking. Can behave either
160    /// like a normal shared borrow or like a special shallow borrow (see [`FakeBorrowKind`]).
161    ///
162    /// This is used when lowering index expressions and matches. This is used to prevent code like
163    /// the following from compiling:
164    /// ```compile_fail,E0510
165    /// let mut x: &[_] = &[[0, 1]];
166    /// let y: &[_] = &[];
167    /// let _ = x[0][{x = y; 1}];
168    /// ```
169    /// ```compile_fail,E0510
170    /// let mut x = &Some(0);
171    /// match *x {
172    ///     None => (),
173    ///     Some(_) if { x = &None; false } => (),
174    ///     Some(_) => (),
175    /// }
176    /// ```
177    /// We can also report errors with this kind of borrow differently.
178    Fake(FakeBorrowKind),
179
180    /// Data is mutable and not aliasable.
181    Mut { kind: MutBorrowKind },
182}
183
184#[derive(#[automatically_derived]
impl ::core::marker::Copy for RawPtrKind { }Copy, #[automatically_derived]
impl ::core::clone::Clone for RawPtrKind {
    #[inline]
    fn clone(&self) -> RawPtrKind { *self }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for RawPtrKind {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                RawPtrKind::Mut => "Mut",
                RawPtrKind::Const => "Const",
                RawPtrKind::FakeForPtrMetadata => "FakeForPtrMetadata",
            })
    }
}Debug, #[automatically_derived]
impl ::core::cmp::PartialEq for RawPtrKind {
    #[inline]
    fn eq(&self, other: &RawPtrKind) -> 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 RawPtrKind {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_receiver_is_total_eq(&self) -> () {}
}Eq, #[automatically_derived]
impl ::core::cmp::PartialOrd for RawPtrKind {
    #[inline]
    fn partial_cmp(&self, other: &RawPtrKind)
        -> ::core::option::Option<::core::cmp::Ordering> {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        ::core::cmp::PartialOrd::partial_cmp(&__self_discr, &__arg1_discr)
    }
}PartialOrd, #[automatically_derived]
impl ::core::cmp::Ord for RawPtrKind {
    #[inline]
    fn cmp(&self, other: &RawPtrKind) -> ::core::cmp::Ordering {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        ::core::cmp::Ord::cmp(&__self_discr, &__arg1_discr)
    }
}Ord, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for RawPtrKind {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        RawPtrKind::Mut => { 0usize }
                        RawPtrKind::Const => { 1usize }
                        RawPtrKind::FakeForPtrMetadata => { 2usize }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    RawPtrKind::Mut => {}
                    RawPtrKind::Const => {}
                    RawPtrKind::FakeForPtrMetadata => {}
                }
            }
        }
    };TyEncodable, const _: () =
    {
        impl<'tcx, __D: ::rustc_middle::ty::codec::TyDecoder<'tcx>>
            ::rustc_serialize::Decodable<__D> for RawPtrKind {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => { RawPtrKind::Mut }
                    1usize => { RawPtrKind::Const }
                    2usize => { RawPtrKind::FakeForPtrMetadata }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `RawPtrKind`, expected 0..3, actual {0}",
                                n));
                    }
                }
            }
        }
    };TyDecodable)]
185#[derive(#[automatically_derived]
impl ::core::hash::Hash for RawPtrKind {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) -> () {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        ::core::hash::Hash::hash(&__self_discr, state)
    }
}Hash, const _: () =
    {
        impl<'__ctx>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_query_system::ich::StableHashingContext<'__ctx>>
            for RawPtrKind {
            #[inline]
            fn hash_stable(&self,
                __hcx:
                    &mut ::rustc_query_system::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                ::std::mem::discriminant(self).hash_stable(__hcx, __hasher);
                match *self {
                    RawPtrKind::Mut => {}
                    RawPtrKind::Const => {}
                    RawPtrKind::FakeForPtrMetadata => {}
                }
            }
        }
    };HashStable)]
186pub enum RawPtrKind {
187    Mut,
188    Const,
189    /// Creates a raw pointer to a place that will only be used to access its metadata,
190    /// not the data behind the pointer. Note that this limitation is *not* enforced
191    /// by the validator.
192    ///
193    /// The borrow checker allows overlap of these raw pointers with references to the
194    /// data. This is sound even if the pointer is "misused" since any such use is anyway
195    /// unsafe. In terms of the operational semantics (i.e., Miri), this is equivalent
196    /// to `RawPtrKind::Mut`, but will never incur a retag.
197    FakeForPtrMetadata,
198}
199
200#[derive(#[automatically_derived]
impl ::core::marker::Copy for MutBorrowKind { }Copy, #[automatically_derived]
impl ::core::clone::Clone for MutBorrowKind {
    #[inline]
    fn clone(&self) -> MutBorrowKind { *self }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for MutBorrowKind {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                MutBorrowKind::Default => "Default",
                MutBorrowKind::TwoPhaseBorrow => "TwoPhaseBorrow",
                MutBorrowKind::ClosureCapture => "ClosureCapture",
            })
    }
}Debug, #[automatically_derived]
impl ::core::cmp::PartialEq for MutBorrowKind {
    #[inline]
    fn eq(&self, other: &MutBorrowKind) -> 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 MutBorrowKind {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_receiver_is_total_eq(&self) -> () {}
}Eq, #[automatically_derived]
impl ::core::cmp::PartialOrd for MutBorrowKind {
    #[inline]
    fn partial_cmp(&self, other: &MutBorrowKind)
        -> ::core::option::Option<::core::cmp::Ordering> {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        ::core::cmp::PartialOrd::partial_cmp(&__self_discr, &__arg1_discr)
    }
}PartialOrd, #[automatically_derived]
impl ::core::cmp::Ord for MutBorrowKind {
    #[inline]
    fn cmp(&self, other: &MutBorrowKind) -> ::core::cmp::Ordering {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        ::core::cmp::Ord::cmp(&__self_discr, &__arg1_discr)
    }
}Ord, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for MutBorrowKind {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        MutBorrowKind::Default => { 0usize }
                        MutBorrowKind::TwoPhaseBorrow => { 1usize }
                        MutBorrowKind::ClosureCapture => { 2usize }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    MutBorrowKind::Default => {}
                    MutBorrowKind::TwoPhaseBorrow => {}
                    MutBorrowKind::ClosureCapture => {}
                }
            }
        }
    };TyEncodable, const _: () =
    {
        impl<'tcx, __D: ::rustc_middle::ty::codec::TyDecoder<'tcx>>
            ::rustc_serialize::Decodable<__D> for MutBorrowKind {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => { MutBorrowKind::Default }
                    1usize => { MutBorrowKind::TwoPhaseBorrow }
                    2usize => { MutBorrowKind::ClosureCapture }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `MutBorrowKind`, expected 0..3, actual {0}",
                                n));
                    }
                }
            }
        }
    };TyDecodable)]
201#[derive(#[automatically_derived]
impl ::core::hash::Hash for MutBorrowKind {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) -> () {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        ::core::hash::Hash::hash(&__self_discr, state)
    }
}Hash, const _: () =
    {
        impl<'__ctx>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_query_system::ich::StableHashingContext<'__ctx>>
            for MutBorrowKind {
            #[inline]
            fn hash_stable(&self,
                __hcx:
                    &mut ::rustc_query_system::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                ::std::mem::discriminant(self).hash_stable(__hcx, __hasher);
                match *self {
                    MutBorrowKind::Default => {}
                    MutBorrowKind::TwoPhaseBorrow => {}
                    MutBorrowKind::ClosureCapture => {}
                }
            }
        }
    };HashStable)]
202pub enum MutBorrowKind {
203    Default,
204    /// This borrow arose from method-call auto-ref. (i.e., `adjustment::Adjust::Borrow`)
205    TwoPhaseBorrow,
206    /// Data must be immutable but not aliasable. This kind of borrow
207    /// cannot currently be expressed by the user and is used only in
208    /// implicit closure bindings. It is needed when the closure is
209    /// borrowing or mutating a mutable referent, e.g.:
210    /// ```
211    /// let mut z = 3;
212    /// let x: &mut isize = &mut z;
213    /// let y = || *x += 5;
214    /// ```
215    /// If we were to try to translate this closure into a more explicit
216    /// form, we'd encounter an error with the code as written:
217    /// ```compile_fail,E0594
218    /// struct Env<'a> { x: &'a &'a mut isize }
219    /// let mut z = 3;
220    /// let x: &mut isize = &mut z;
221    /// let y = (&mut Env { x: &x }, fn_ptr);  // Closure is pair of env and fn
222    /// fn fn_ptr(env: &mut Env) { **env.x += 5; }
223    /// ```
224    /// This is then illegal because you cannot mutate an `&mut` found
225    /// in an aliasable location. To solve, you'd have to translate with
226    /// an `&mut` borrow:
227    /// ```compile_fail,E0596
228    /// struct Env<'a> { x: &'a mut &'a mut isize }
229    /// let mut z = 3;
230    /// let x: &mut isize = &mut z;
231    /// let y = (&mut Env { x: &mut x }, fn_ptr); // changed from &x to &mut x
232    /// fn fn_ptr(env: &mut Env) { **env.x += 5; }
233    /// ```
234    /// Now the assignment to `**env.x` is legal, but creating a
235    /// mutable pointer to `x` is not because `x` is not mutable. We
236    /// could fix this by declaring `x` as `let mut x`. This is ok in
237    /// user code, if awkward, but extra weird for closures, since the
238    /// borrow is hidden.
239    ///
240    /// So we introduce a `ClosureCapture` borrow -- user will not have to mark the variable
241    /// containing the mutable reference as `mut`, as they didn't ever
242    /// intend to mutate the mutable reference itself. We still mutable capture it in order to
243    /// mutate the pointed value through it (but not mutating the reference itself).
244    ///
245    /// This solves the problem. For simplicity, we don't give users the way to express this
246    /// borrow, it's just used when translating closures.
247    ClosureCapture,
248}
249
250#[derive(#[automatically_derived]
impl ::core::marker::Copy for FakeBorrowKind { }Copy, #[automatically_derived]
impl ::core::clone::Clone for FakeBorrowKind {
    #[inline]
    fn clone(&self) -> FakeBorrowKind { *self }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for FakeBorrowKind {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                FakeBorrowKind::Shallow => "Shallow",
                FakeBorrowKind::Deep => "Deep",
            })
    }
}Debug, #[automatically_derived]
impl ::core::cmp::PartialEq for FakeBorrowKind {
    #[inline]
    fn eq(&self, other: &FakeBorrowKind) -> 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 FakeBorrowKind {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_receiver_is_total_eq(&self) -> () {}
}Eq, #[automatically_derived]
impl ::core::cmp::PartialOrd for FakeBorrowKind {
    #[inline]
    fn partial_cmp(&self, other: &FakeBorrowKind)
        -> ::core::option::Option<::core::cmp::Ordering> {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        ::core::cmp::PartialOrd::partial_cmp(&__self_discr, &__arg1_discr)
    }
}PartialOrd, #[automatically_derived]
impl ::core::cmp::Ord for FakeBorrowKind {
    #[inline]
    fn cmp(&self, other: &FakeBorrowKind) -> ::core::cmp::Ordering {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        ::core::cmp::Ord::cmp(&__self_discr, &__arg1_discr)
    }
}Ord, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for FakeBorrowKind {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        FakeBorrowKind::Shallow => { 0usize }
                        FakeBorrowKind::Deep => { 1usize }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    FakeBorrowKind::Shallow => {}
                    FakeBorrowKind::Deep => {}
                }
            }
        }
    };TyEncodable, const _: () =
    {
        impl<'tcx, __D: ::rustc_middle::ty::codec::TyDecoder<'tcx>>
            ::rustc_serialize::Decodable<__D> for FakeBorrowKind {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => { FakeBorrowKind::Shallow }
                    1usize => { FakeBorrowKind::Deep }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `FakeBorrowKind`, expected 0..2, actual {0}",
                                n));
                    }
                }
            }
        }
    };TyDecodable)]
251#[derive(#[automatically_derived]
impl ::core::hash::Hash for FakeBorrowKind {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) -> () {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        ::core::hash::Hash::hash(&__self_discr, state)
    }
}Hash, const _: () =
    {
        impl<'__ctx>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_query_system::ich::StableHashingContext<'__ctx>>
            for FakeBorrowKind {
            #[inline]
            fn hash_stable(&self,
                __hcx:
                    &mut ::rustc_query_system::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                ::std::mem::discriminant(self).hash_stable(__hcx, __hasher);
                match *self {
                    FakeBorrowKind::Shallow => {}
                    FakeBorrowKind::Deep => {}
                }
            }
        }
    };HashStable)]
252pub enum FakeBorrowKind {
253    /// A shared shallow borrow. The immediately borrowed place must be immutable, but projections
254    /// from it don't need to be. For example, a shallow borrow of `a.b` doesn't conflict with a
255    /// mutable borrow of `a.b.c`.
256    ///
257    /// This is used when lowering matches: when matching on a place we want to ensure that place
258    /// have the same value from the start of the match until an arm is selected. This prevents this
259    /// code from compiling:
260    /// ```compile_fail,E0510
261    /// let mut x = &Some(0);
262    /// match *x {
263    ///     None => (),
264    ///     Some(_) if { x = &None; false } => (),
265    ///     Some(_) => (),
266    /// }
267    /// ```
268    /// This can't be a shared borrow because mutably borrowing `(*x as Some).0` should not checking
269    /// the discriminant or accessing other variants, because the mutating `(*x as Some).0` can't
270    /// affect the discriminant of `x`. E.g. the following is allowed:
271    /// ```rust
272    /// let mut x = Some(0);
273    /// match x {
274    ///     Some(_)
275    ///         if {
276    ///             if let Some(ref mut y) = x {
277    ///                 *y += 1;
278    ///             };
279    ///             true
280    ///         } => {}
281    ///     _ => {}
282    /// }
283    /// ```
284    Shallow,
285    /// A shared (deep) borrow. Data must be immutable and is aliasable.
286    ///
287    /// This is used when lowering deref patterns, where shallow borrows wouldn't prevent something
288    /// like:
289    /// ```compile_fail
290    /// let mut b = Box::new(false);
291    /// match b {
292    ///     deref!(true) => {} // not reached because `*b == false`
293    ///     _ if { *b = true; false } => {} // not reached because the guard is `false`
294    ///     deref!(false) => {} // not reached because the guard changed it
295    ///     // UB because we reached the unreachable.
296    /// }
297    /// ```
298    Deep,
299}
300
301///////////////////////////////////////////////////////////////////////////
302// Statements
303
304/// The various kinds of statements that can appear in MIR.
305///
306/// Not all of these are allowed at every [`MirPhase`]. Check the documentation there to see which
307/// ones you do not have to worry about. The MIR validator will generally enforce such restrictions,
308/// causing an ICE if they are violated.
309#[derive(#[automatically_derived]
impl<'tcx> ::core::clone::Clone for StatementKind<'tcx> {
    #[inline]
    fn clone(&self) -> StatementKind<'tcx> {
        match self {
            StatementKind::Assign(__self_0) =>
                StatementKind::Assign(::core::clone::Clone::clone(__self_0)),
            StatementKind::FakeRead(__self_0) =>
                StatementKind::FakeRead(::core::clone::Clone::clone(__self_0)),
            StatementKind::SetDiscriminant {
                place: __self_0, variant_index: __self_1 } =>
                StatementKind::SetDiscriminant {
                    place: ::core::clone::Clone::clone(__self_0),
                    variant_index: ::core::clone::Clone::clone(__self_1),
                },
            StatementKind::StorageLive(__self_0) =>
                StatementKind::StorageLive(::core::clone::Clone::clone(__self_0)),
            StatementKind::StorageDead(__self_0) =>
                StatementKind::StorageDead(::core::clone::Clone::clone(__self_0)),
            StatementKind::Retag(__self_0, __self_1) =>
                StatementKind::Retag(::core::clone::Clone::clone(__self_0),
                    ::core::clone::Clone::clone(__self_1)),
            StatementKind::PlaceMention(__self_0) =>
                StatementKind::PlaceMention(::core::clone::Clone::clone(__self_0)),
            StatementKind::AscribeUserType(__self_0, __self_1) =>
                StatementKind::AscribeUserType(::core::clone::Clone::clone(__self_0),
                    ::core::clone::Clone::clone(__self_1)),
            StatementKind::Coverage(__self_0) =>
                StatementKind::Coverage(::core::clone::Clone::clone(__self_0)),
            StatementKind::Intrinsic(__self_0) =>
                StatementKind::Intrinsic(::core::clone::Clone::clone(__self_0)),
            StatementKind::ConstEvalCounter =>
                StatementKind::ConstEvalCounter,
            StatementKind::Nop => StatementKind::Nop,
            StatementKind::BackwardIncompatibleDropHint {
                place: __self_0, reason: __self_1 } =>
                StatementKind::BackwardIncompatibleDropHint {
                    place: ::core::clone::Clone::clone(__self_0),
                    reason: ::core::clone::Clone::clone(__self_1),
                },
        }
    }
}Clone, #[automatically_derived]
impl<'tcx> ::core::fmt::Debug for StatementKind<'tcx> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            StatementKind::Assign(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Assign",
                    &__self_0),
            StatementKind::FakeRead(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "FakeRead", &__self_0),
            StatementKind::SetDiscriminant {
                place: __self_0, variant_index: __self_1 } =>
                ::core::fmt::Formatter::debug_struct_field2_finish(f,
                    "SetDiscriminant", "place", __self_0, "variant_index",
                    &__self_1),
            StatementKind::StorageLive(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "StorageLive", &__self_0),
            StatementKind::StorageDead(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "StorageDead", &__self_0),
            StatementKind::Retag(__self_0, __self_1) =>
                ::core::fmt::Formatter::debug_tuple_field2_finish(f, "Retag",
                    __self_0, &__self_1),
            StatementKind::PlaceMention(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "PlaceMention", &__self_0),
            StatementKind::AscribeUserType(__self_0, __self_1) =>
                ::core::fmt::Formatter::debug_tuple_field2_finish(f,
                    "AscribeUserType", __self_0, &__self_1),
            StatementKind::Coverage(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "Coverage", &__self_0),
            StatementKind::Intrinsic(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "Intrinsic", &__self_0),
            StatementKind::ConstEvalCounter =>
                ::core::fmt::Formatter::write_str(f, "ConstEvalCounter"),
            StatementKind::Nop => ::core::fmt::Formatter::write_str(f, "Nop"),
            StatementKind::BackwardIncompatibleDropHint {
                place: __self_0, reason: __self_1 } =>
                ::core::fmt::Formatter::debug_struct_field2_finish(f,
                    "BackwardIncompatibleDropHint", "place", __self_0, "reason",
                    &__self_1),
        }
    }
}Debug, #[automatically_derived]
impl<'tcx> ::core::cmp::PartialEq for StatementKind<'tcx> {
    #[inline]
    fn eq(&self, other: &StatementKind<'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) {
                (StatementKind::Assign(__self_0),
                    StatementKind::Assign(__arg1_0)) => __self_0 == __arg1_0,
                (StatementKind::FakeRead(__self_0),
                    StatementKind::FakeRead(__arg1_0)) => __self_0 == __arg1_0,
                (StatementKind::SetDiscriminant {
                    place: __self_0, variant_index: __self_1 },
                    StatementKind::SetDiscriminant {
                    place: __arg1_0, variant_index: __arg1_1 }) =>
                    __self_0 == __arg1_0 && __self_1 == __arg1_1,
                (StatementKind::StorageLive(__self_0),
                    StatementKind::StorageLive(__arg1_0)) =>
                    __self_0 == __arg1_0,
                (StatementKind::StorageDead(__self_0),
                    StatementKind::StorageDead(__arg1_0)) =>
                    __self_0 == __arg1_0,
                (StatementKind::Retag(__self_0, __self_1),
                    StatementKind::Retag(__arg1_0, __arg1_1)) =>
                    __self_0 == __arg1_0 && __self_1 == __arg1_1,
                (StatementKind::PlaceMention(__self_0),
                    StatementKind::PlaceMention(__arg1_0)) =>
                    __self_0 == __arg1_0,
                (StatementKind::AscribeUserType(__self_0, __self_1),
                    StatementKind::AscribeUserType(__arg1_0, __arg1_1)) =>
                    __self_0 == __arg1_0 && __self_1 == __arg1_1,
                (StatementKind::Coverage(__self_0),
                    StatementKind::Coverage(__arg1_0)) => __self_0 == __arg1_0,
                (StatementKind::Intrinsic(__self_0),
                    StatementKind::Intrinsic(__arg1_0)) => __self_0 == __arg1_0,
                (StatementKind::BackwardIncompatibleDropHint {
                    place: __self_0, reason: __self_1 },
                    StatementKind::BackwardIncompatibleDropHint {
                    place: __arg1_0, reason: __arg1_1 }) =>
                    __self_0 == __arg1_0 && __self_1 == __arg1_1,
                _ => true,
            }
    }
}PartialEq, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for StatementKind<'tcx> {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        StatementKind::Assign(ref __binding_0) => { 0usize }
                        StatementKind::FakeRead(ref __binding_0) => { 1usize }
                        StatementKind::SetDiscriminant {
                            place: ref __binding_0, variant_index: ref __binding_1 } =>
                            {
                            2usize
                        }
                        StatementKind::StorageLive(ref __binding_0) => { 3usize }
                        StatementKind::StorageDead(ref __binding_0) => { 4usize }
                        StatementKind::Retag(ref __binding_0, ref __binding_1) => {
                            5usize
                        }
                        StatementKind::PlaceMention(ref __binding_0) => { 6usize }
                        StatementKind::AscribeUserType(ref __binding_0,
                            ref __binding_1) => {
                            7usize
                        }
                        StatementKind::Coverage(ref __binding_0) => { 8usize }
                        StatementKind::Intrinsic(ref __binding_0) => { 9usize }
                        StatementKind::ConstEvalCounter => { 10usize }
                        StatementKind::Nop => { 11usize }
                        StatementKind::BackwardIncompatibleDropHint {
                            place: ref __binding_0, reason: ref __binding_1 } => {
                            12usize
                        }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    StatementKind::Assign(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    StatementKind::FakeRead(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    StatementKind::SetDiscriminant {
                        place: ref __binding_0, variant_index: ref __binding_1 } =>
                        {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                    }
                    StatementKind::StorageLive(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    StatementKind::StorageDead(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    StatementKind::Retag(ref __binding_0, ref __binding_1) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                    }
                    StatementKind::PlaceMention(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    StatementKind::AscribeUserType(ref __binding_0,
                        ref __binding_1) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                    }
                    StatementKind::Coverage(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    StatementKind::Intrinsic(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    StatementKind::ConstEvalCounter => {}
                    StatementKind::Nop => {}
                    StatementKind::BackwardIncompatibleDropHint {
                        place: ref __binding_0, reason: 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 StatementKind<'tcx> {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => {
                        StatementKind::Assign(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    1usize => {
                        StatementKind::FakeRead(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    2usize => {
                        StatementKind::SetDiscriminant {
                            place: ::rustc_serialize::Decodable::decode(__decoder),
                            variant_index: ::rustc_serialize::Decodable::decode(__decoder),
                        }
                    }
                    3usize => {
                        StatementKind::StorageLive(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    4usize => {
                        StatementKind::StorageDead(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    5usize => {
                        StatementKind::Retag(::rustc_serialize::Decodable::decode(__decoder),
                            ::rustc_serialize::Decodable::decode(__decoder))
                    }
                    6usize => {
                        StatementKind::PlaceMention(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    7usize => {
                        StatementKind::AscribeUserType(::rustc_serialize::Decodable::decode(__decoder),
                            ::rustc_serialize::Decodable::decode(__decoder))
                    }
                    8usize => {
                        StatementKind::Coverage(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    9usize => {
                        StatementKind::Intrinsic(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    10usize => { StatementKind::ConstEvalCounter }
                    11usize => { StatementKind::Nop }
                    12usize => {
                        StatementKind::BackwardIncompatibleDropHint {
                            place: ::rustc_serialize::Decodable::decode(__decoder),
                            reason: ::rustc_serialize::Decodable::decode(__decoder),
                        }
                    }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `StatementKind`, expected 0..13, actual {0}",
                                n));
                    }
                }
            }
        }
    };TyDecodable, #[automatically_derived]
impl<'tcx> ::core::hash::Hash for StatementKind<'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 {
            StatementKind::Assign(__self_0) =>
                ::core::hash::Hash::hash(__self_0, state),
            StatementKind::FakeRead(__self_0) =>
                ::core::hash::Hash::hash(__self_0, state),
            StatementKind::SetDiscriminant {
                place: __self_0, variant_index: __self_1 } => {
                ::core::hash::Hash::hash(__self_0, state);
                ::core::hash::Hash::hash(__self_1, state)
            }
            StatementKind::StorageLive(__self_0) =>
                ::core::hash::Hash::hash(__self_0, state),
            StatementKind::StorageDead(__self_0) =>
                ::core::hash::Hash::hash(__self_0, state),
            StatementKind::Retag(__self_0, __self_1) => {
                ::core::hash::Hash::hash(__self_0, state);
                ::core::hash::Hash::hash(__self_1, state)
            }
            StatementKind::PlaceMention(__self_0) =>
                ::core::hash::Hash::hash(__self_0, state),
            StatementKind::AscribeUserType(__self_0, __self_1) => {
                ::core::hash::Hash::hash(__self_0, state);
                ::core::hash::Hash::hash(__self_1, state)
            }
            StatementKind::Coverage(__self_0) =>
                ::core::hash::Hash::hash(__self_0, state),
            StatementKind::Intrinsic(__self_0) =>
                ::core::hash::Hash::hash(__self_0, state),
            StatementKind::BackwardIncompatibleDropHint {
                place: __self_0, reason: __self_1 } => {
                ::core::hash::Hash::hash(__self_0, state);
                ::core::hash::Hash::hash(__self_1, state)
            }
            _ => {}
        }
    }
}Hash, const _: () =
    {
        impl<'tcx, '__ctx>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_query_system::ich::StableHashingContext<'__ctx>>
            for StatementKind<'tcx> {
            #[inline]
            fn hash_stable(&self,
                __hcx:
                    &mut ::rustc_query_system::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                ::std::mem::discriminant(self).hash_stable(__hcx, __hasher);
                match *self {
                    StatementKind::Assign(ref __binding_0) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                    StatementKind::FakeRead(ref __binding_0) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                    StatementKind::SetDiscriminant {
                        place: ref __binding_0, variant_index: ref __binding_1 } =>
                        {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                    }
                    StatementKind::StorageLive(ref __binding_0) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                    StatementKind::StorageDead(ref __binding_0) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                    StatementKind::Retag(ref __binding_0, ref __binding_1) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                    }
                    StatementKind::PlaceMention(ref __binding_0) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                    StatementKind::AscribeUserType(ref __binding_0,
                        ref __binding_1) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                    }
                    StatementKind::Coverage(ref __binding_0) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                    StatementKind::Intrinsic(ref __binding_0) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                    StatementKind::ConstEvalCounter => {}
                    StatementKind::Nop => {}
                    StatementKind::BackwardIncompatibleDropHint {
                        place: ref __binding_0, reason: ref __binding_1 } => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                    }
                }
            }
        }
    };HashStable)]
310#[derive(const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeFoldable<::rustc_middle::ty::TyCtxt<'tcx>>
            for StatementKind<'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 {
                        StatementKind::Assign(__binding_0) => {
                            StatementKind::Assign(::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?)
                        }
                        StatementKind::FakeRead(__binding_0) => {
                            StatementKind::FakeRead(::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?)
                        }
                        StatementKind::SetDiscriminant {
                            place: __binding_0, variant_index: __binding_1 } => {
                            StatementKind::SetDiscriminant {
                                place: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                variant_index: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?,
                            }
                        }
                        StatementKind::StorageLive(__binding_0) => {
                            StatementKind::StorageLive(::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?)
                        }
                        StatementKind::StorageDead(__binding_0) => {
                            StatementKind::StorageDead(::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?)
                        }
                        StatementKind::Retag(__binding_0, __binding_1) => {
                            StatementKind::Retag(::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?)
                        }
                        StatementKind::PlaceMention(__binding_0) => {
                            StatementKind::PlaceMention(::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?)
                        }
                        StatementKind::AscribeUserType(__binding_0, __binding_1) =>
                            {
                            StatementKind::AscribeUserType(::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?)
                        }
                        StatementKind::Coverage(__binding_0) => {
                            StatementKind::Coverage(__binding_0)
                        }
                        StatementKind::Intrinsic(__binding_0) => {
                            StatementKind::Intrinsic(::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?)
                        }
                        StatementKind::ConstEvalCounter => {
                            StatementKind::ConstEvalCounter
                        }
                        StatementKind::Nop => { StatementKind::Nop }
                        StatementKind::BackwardIncompatibleDropHint {
                            place: __binding_0, reason: __binding_1 } => {
                            StatementKind::BackwardIncompatibleDropHint {
                                place: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                reason: ::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 {
                    StatementKind::Assign(__binding_0) => {
                        StatementKind::Assign(::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder))
                    }
                    StatementKind::FakeRead(__binding_0) => {
                        StatementKind::FakeRead(::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder))
                    }
                    StatementKind::SetDiscriminant {
                        place: __binding_0, variant_index: __binding_1 } => {
                        StatementKind::SetDiscriminant {
                            place: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            variant_index: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
                                __folder),
                        }
                    }
                    StatementKind::StorageLive(__binding_0) => {
                        StatementKind::StorageLive(::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder))
                    }
                    StatementKind::StorageDead(__binding_0) => {
                        StatementKind::StorageDead(::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder))
                    }
                    StatementKind::Retag(__binding_0, __binding_1) => {
                        StatementKind::Retag(::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
                                __folder))
                    }
                    StatementKind::PlaceMention(__binding_0) => {
                        StatementKind::PlaceMention(::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder))
                    }
                    StatementKind::AscribeUserType(__binding_0, __binding_1) =>
                        {
                        StatementKind::AscribeUserType(::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
                                __folder))
                    }
                    StatementKind::Coverage(__binding_0) => {
                        StatementKind::Coverage(__binding_0)
                    }
                    StatementKind::Intrinsic(__binding_0) => {
                        StatementKind::Intrinsic(::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder))
                    }
                    StatementKind::ConstEvalCounter => {
                        StatementKind::ConstEvalCounter
                    }
                    StatementKind::Nop => { StatementKind::Nop }
                    StatementKind::BackwardIncompatibleDropHint {
                        place: __binding_0, reason: __binding_1 } => {
                        StatementKind::BackwardIncompatibleDropHint {
                            place: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            reason: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
                                __folder),
                        }
                    }
                }
            }
        }
    };TypeFoldable, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeVisitable<::rustc_middle::ty::TyCtxt<'tcx>>
            for StatementKind<'tcx> {
            fn visit_with<__V: ::rustc_middle::ty::TypeVisitor<::rustc_middle::ty::TyCtxt<'tcx>>>(&self,
                __visitor: &mut __V) -> __V::Result {
                match *self {
                    StatementKind::Assign(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);
                                }
                            }
                        }
                    }
                    StatementKind::FakeRead(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);
                                }
                            }
                        }
                    }
                    StatementKind::SetDiscriminant {
                        place: ref __binding_0, variant_index: 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);
                                }
                            }
                        }
                    }
                    StatementKind::StorageLive(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);
                                }
                            }
                        }
                    }
                    StatementKind::StorageDead(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);
                                }
                            }
                        }
                    }
                    StatementKind::Retag(ref __binding_0, 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);
                                }
                            }
                        }
                    }
                    StatementKind::PlaceMention(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);
                                }
                            }
                        }
                    }
                    StatementKind::AscribeUserType(ref __binding_0,
                        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);
                                }
                            }
                        }
                    }
                    StatementKind::Coverage(..) => {}
                    StatementKind::Intrinsic(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);
                                }
                            }
                        }
                    }
                    StatementKind::ConstEvalCounter => {}
                    StatementKind::Nop => {}
                    StatementKind::BackwardIncompatibleDropHint {
                        place: ref __binding_0, reason: 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)]
311pub enum StatementKind<'tcx> {
312    /// Assign statements roughly correspond to an assignment in Rust proper (`x = ...`) except
313    /// without the possibility of dropping the previous value (that must be done separately, if at
314    /// all). The *exact* way this works is undecided. It probably does something like evaluating
315    /// the LHS to a place and the RHS to a value, and then storing the value to the place. Various
316    /// parts of this may do type specific things that are more complicated than simply copying
317    /// bytes.
318    ///
319    /// **Needs clarification**: The implication of the above idea would be that assignment implies
320    /// that the resulting value is initialized. I believe we could commit to this separately from
321    /// committing to whatever part of the memory model we would need to decide on to make the above
322    /// paragraph precise. Do we want to?
323    ///
324    /// Assignments in which the types of the place and rvalue differ are not well-formed.
325    ///
326    /// **Needs clarification**: Do we ever want to worry about non-free (in the body) lifetimes for
327    /// the typing requirement in post drop-elaboration MIR? I think probably not - I'm not sure we
328    /// could meaningfully require this anyway. How about free lifetimes? Is ignoring this
329    /// interesting for optimizations? Do we want to allow such optimizations?
330    ///
331    /// **Needs clarification**: We currently require that the LHS place not overlap with any place
332    /// read as part of computation of the RHS for some rvalues. This requirement is under
333    /// discussion in [#68364]. Specifically, overlap is permitted only for assignments of a type
334    /// with `BackendRepr::Scalar | BackendRepr::ScalarPair` where all the scalar fields are
335    /// [`Scalar::Initialized`][rustc_abi::Scalar::Initialized]. As a part of this discussion, it is
336    /// also unclear in what order the components are evaluated.
337    ///
338    /// [#68364]: https://github.com/rust-lang/rust/issues/68364
339    ///
340    /// See [`Rvalue`] documentation for details on each of those.
341    Assign(Box<(Place<'tcx>, Rvalue<'tcx>)>),
342
343    /// When executed at runtime, this is a nop.
344    ///
345    /// During static analysis, a fake read:
346    /// - requires that the value being read is initialized (or, in the case
347    ///   of closures, that it was fully initialized at some point in the past)
348    /// - constitutes a use of a value for the purposes of NLL (i.e. if the
349    ///   value being fake-read is a reference, the lifetime of that reference
350    ///   will be extended to cover the `FakeRead`)
351    /// - but, unlike an actual read, does *not* invalidate any exclusive
352    ///   borrows.
353    ///
354    /// See [`FakeReadCause`] for more details on the situations in which a
355    /// `FakeRead` is emitted.
356    ///
357    /// Disallowed after drop elaboration.
358    FakeRead(Box<(FakeReadCause, Place<'tcx>)>),
359
360    /// Write the discriminant for a variant to the enum Place.
361    ///
362    /// This is permitted for both coroutines and ADTs. This does not necessarily write to the
363    /// entire place; instead, it writes to the minimum set of bytes as required by the layout for
364    /// the type.
365    SetDiscriminant { place: Box<Place<'tcx>>, variant_index: VariantIdx },
366
367    /// `StorageLive` and `StorageDead` statements mark the live range of a local.
368    ///
369    /// At any point during the execution of a function, each local is either allocated or
370    /// unallocated. Except as noted below, all locals except function parameters are initially
371    /// unallocated. `StorageLive` statements cause memory to be allocated for the local while
372    /// `StorageDead` statements cause the memory to be freed. In other words,
373    /// `StorageLive`/`StorageDead` act like the heap operations `allocate`/`deallocate`, but for
374    /// stack-allocated local variables. Using a local in any way (not only reading/writing from it)
375    /// while it is unallocated is UB.
376    ///
377    /// Some locals have no `StorageLive` or `StorageDead` statements within the entire MIR body.
378    /// These locals are implicitly allocated for the full duration of the function. There is a
379    /// convenience method at `rustc_mir_dataflow::storage::always_storage_live_locals` for
380    /// computing these locals.
381    ///
382    /// If the local is already allocated, calling `StorageLive` again will implicitly free the
383    /// local and then allocate fresh uninitialized memory. If a local is already deallocated,
384    /// calling `StorageDead` again is a NOP.
385    StorageLive(Local),
386
387    /// See `StorageLive` above.
388    StorageDead(Local),
389
390    /// Retag references in the given place, ensuring they got fresh tags.
391    ///
392    /// This is part of the Stacked Borrows model. These statements are currently only interpreted
393    /// by miri and only generated when `-Z mir-emit-retag` is passed. See
394    /// <https://internals.rust-lang.org/t/stacked-borrows-an-aliasing-model-for-rust/8153/> for
395    /// more details.
396    ///
397    /// For code that is not specific to stacked borrows, you should consider retags to read and
398    /// modify the place in an opaque way.
399    ///
400    /// Only `RetagKind::Default` and `RetagKind::FnEntry` are permitted.
401    Retag(RetagKind, Box<Place<'tcx>>),
402
403    /// This statement exists to preserve a trace of a scrutinee matched against a wildcard binding.
404    /// This is especially useful for `let _ = PLACE;` bindings that desugar to a single
405    /// `PlaceMention(PLACE)`.
406    ///
407    /// When executed at runtime, this computes the given place, but then discards
408    /// it without doing a load. `let _ = *ptr;` is fine even if the pointer is dangling.
409    PlaceMention(Box<Place<'tcx>>),
410
411    /// Encodes a user's type ascription. These need to be preserved
412    /// intact so that NLL can respect them. For example:
413    /// ```ignore (illustrative)
414    /// let a: T = y;
415    /// ```
416    /// The effect of this annotation is to relate the type `T_y` of the place `y`
417    /// to the user-given type `T`. The effect depends on the specified variance:
418    ///
419    /// - `Covariant` -- requires that `T_y <: T`
420    /// - `Contravariant` -- requires that `T_y :> T`
421    /// - `Invariant` -- requires that `T_y == T`
422    /// - `Bivariant` -- no effect
423    ///
424    /// When executed at runtime this is a nop.
425    ///
426    /// Disallowed after drop elaboration.
427    AscribeUserType(Box<(Place<'tcx>, UserTypeProjection)>, ty::Variance),
428
429    /// Carries control-flow-sensitive information injected by `-Cinstrument-coverage`,
430    /// such as where to generate physical coverage-counter-increments during codegen.
431    ///
432    /// Coverage statements are used in conjunction with the coverage mappings and other
433    /// information stored in the function's
434    /// [`mir::Body::function_coverage_info`](crate::mir::Body::function_coverage_info).
435    /// (For inlined MIR, take care to look up the *original function's* coverage info.)
436    ///
437    /// Interpreters and codegen backends that don't support coverage instrumentation
438    /// can usually treat this as a no-op.
439    Coverage(
440        // Coverage statements are unlikely to ever contain type information in
441        // the foreseeable future, so excluding them from TypeFoldable/TypeVisitable
442        // avoids some unhelpful derive boilerplate.
443        #[type_foldable(identity)]
444        #[type_visitable(ignore)]
445        CoverageKind,
446    ),
447
448    /// Denotes a call to an intrinsic that does not require an unwind path and always returns.
449    /// This avoids adding a new block and a terminator for simple intrinsics.
450    Intrinsic(Box<NonDivergingIntrinsic<'tcx>>),
451
452    /// Instructs the const eval interpreter to increment a counter; this counter is used to track
453    /// how many steps the interpreter has taken. It is used to prevent the user from writing const
454    /// code that runs for too long or infinitely. Other than in the const eval interpreter, this
455    /// is a no-op.
456    ConstEvalCounter,
457
458    /// No-op. Useful for deleting instructions without affecting statement indices.
459    Nop,
460
461    /// Marker statement indicating where `place` would be dropped.
462    /// This is semantically equivalent to `Nop`, so codegen and MIRI should interpret this
463    /// statement as such.
464    /// The only use case of this statement is for linting in MIR to detect temporary lifetime
465    /// changes.
466    BackwardIncompatibleDropHint {
467        /// Place to drop
468        place: Box<Place<'tcx>>,
469        /// Reason for backward incompatibility
470        reason: BackwardIncompatibleDropReason,
471    },
472}
473
474#[derive(
475    #[automatically_derived]
impl<'tcx> ::core::clone::Clone for NonDivergingIntrinsic<'tcx> {
    #[inline]
    fn clone(&self) -> NonDivergingIntrinsic<'tcx> {
        match self {
            NonDivergingIntrinsic::Assume(__self_0) =>
                NonDivergingIntrinsic::Assume(::core::clone::Clone::clone(__self_0)),
            NonDivergingIntrinsic::CopyNonOverlapping(__self_0) =>
                NonDivergingIntrinsic::CopyNonOverlapping(::core::clone::Clone::clone(__self_0)),
        }
    }
}Clone,
476    const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for NonDivergingIntrinsic<'tcx>
            {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        NonDivergingIntrinsic::Assume(ref __binding_0) => { 0usize }
                        NonDivergingIntrinsic::CopyNonOverlapping(ref __binding_0)
                            => {
                            1usize
                        }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    NonDivergingIntrinsic::Assume(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    NonDivergingIntrinsic::CopyNonOverlapping(ref __binding_0)
                        => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                }
            }
        }
    };TyEncodable,
477    const _: () =
    {
        impl<'tcx, __D: ::rustc_middle::ty::codec::TyDecoder<'tcx>>
            ::rustc_serialize::Decodable<__D> for NonDivergingIntrinsic<'tcx>
            {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => {
                        NonDivergingIntrinsic::Assume(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    1usize => {
                        NonDivergingIntrinsic::CopyNonOverlapping(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `NonDivergingIntrinsic`, expected 0..2, actual {0}",
                                n));
                    }
                }
            }
        }
    };TyDecodable,
478    #[automatically_derived]
impl<'tcx> ::core::fmt::Debug for NonDivergingIntrinsic<'tcx> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            NonDivergingIntrinsic::Assume(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Assume",
                    &__self_0),
            NonDivergingIntrinsic::CopyNonOverlapping(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "CopyNonOverlapping", &__self_0),
        }
    }
}Debug,
479    #[automatically_derived]
impl<'tcx> ::core::cmp::PartialEq for NonDivergingIntrinsic<'tcx> {
    #[inline]
    fn eq(&self, other: &NonDivergingIntrinsic<'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) {
                (NonDivergingIntrinsic::Assume(__self_0),
                    NonDivergingIntrinsic::Assume(__arg1_0)) =>
                    __self_0 == __arg1_0,
                (NonDivergingIntrinsic::CopyNonOverlapping(__self_0),
                    NonDivergingIntrinsic::CopyNonOverlapping(__arg1_0)) =>
                    __self_0 == __arg1_0,
                _ => unsafe { ::core::intrinsics::unreachable() }
            }
    }
}PartialEq,
480    #[automatically_derived]
impl<'tcx> ::core::hash::Hash for NonDivergingIntrinsic<'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 {
            NonDivergingIntrinsic::Assume(__self_0) =>
                ::core::hash::Hash::hash(__self_0, state),
            NonDivergingIntrinsic::CopyNonOverlapping(__self_0) =>
                ::core::hash::Hash::hash(__self_0, state),
        }
    }
}Hash,
481    const _: () =
    {
        impl<'tcx, '__ctx>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_query_system::ich::StableHashingContext<'__ctx>>
            for NonDivergingIntrinsic<'tcx> {
            #[inline]
            fn hash_stable(&self,
                __hcx:
                    &mut ::rustc_query_system::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                ::std::mem::discriminant(self).hash_stable(__hcx, __hasher);
                match *self {
                    NonDivergingIntrinsic::Assume(ref __binding_0) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                    NonDivergingIntrinsic::CopyNonOverlapping(ref __binding_0)
                        => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                }
            }
        }
    };HashStable,
482    const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeFoldable<::rustc_middle::ty::TyCtxt<'tcx>>
            for NonDivergingIntrinsic<'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 {
                        NonDivergingIntrinsic::Assume(__binding_0) => {
                            NonDivergingIntrinsic::Assume(::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?)
                        }
                        NonDivergingIntrinsic::CopyNonOverlapping(__binding_0) => {
                            NonDivergingIntrinsic::CopyNonOverlapping(::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 {
                    NonDivergingIntrinsic::Assume(__binding_0) => {
                        NonDivergingIntrinsic::Assume(::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder))
                    }
                    NonDivergingIntrinsic::CopyNonOverlapping(__binding_0) => {
                        NonDivergingIntrinsic::CopyNonOverlapping(::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder))
                    }
                }
            }
        }
    };TypeFoldable,
483    const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeVisitable<::rustc_middle::ty::TyCtxt<'tcx>>
            for NonDivergingIntrinsic<'tcx> {
            fn visit_with<__V: ::rustc_middle::ty::TypeVisitor<::rustc_middle::ty::TyCtxt<'tcx>>>(&self,
                __visitor: &mut __V) -> __V::Result {
                match *self {
                    NonDivergingIntrinsic::Assume(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);
                                }
                            }
                        }
                    }
                    NonDivergingIntrinsic::CopyNonOverlapping(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
484)]
485pub enum NonDivergingIntrinsic<'tcx> {
486    /// Denotes a call to the intrinsic function `assume`.
487    ///
488    /// The operand must be a boolean. Optimizers may use the value of the boolean to backtrack its
489    /// computation to infer information about other variables. So if the boolean came from a
490    /// `x < y` operation, subsequent operations on `x` and `y` could elide various bound checks.
491    /// If the argument is `false`, this operation is equivalent to `TerminatorKind::Unreachable`.
492    Assume(Operand<'tcx>),
493
494    /// Denotes a call to the intrinsic function `copy_nonoverlapping`.
495    ///
496    /// First, all three operands are evaluated. `src` and `dest` must each be a reference, pointer,
497    /// or `Box` pointing to the same type `T`. `count` must evaluate to a `usize`. Then, `src` and
498    /// `dest` are dereferenced, and `count * size_of::<T>()` bytes beginning with the first byte of
499    /// the `src` place are copied to the contiguous range of bytes beginning with the first byte
500    /// of `dest`.
501    ///
502    /// **Needs clarification**: In what order are operands computed and dereferenced? It should
503    /// probably match the order for assignment, but that is also undecided.
504    ///
505    /// **Needs clarification**: Is this typed or not, ie is there a typed load and store involved?
506    /// I vaguely remember Ralf saying somewhere that he thought it should not be.
507    CopyNonOverlapping(CopyNonOverlapping<'tcx>),
508}
509
510/// Describes what kind of retag is to be performed.
511#[derive(#[automatically_derived]
impl ::core::marker::Copy for RetagKind { }Copy, #[automatically_derived]
impl ::core::clone::Clone for RetagKind {
    #[inline]
    fn clone(&self) -> RetagKind { *self }
}Clone, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for RetagKind {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        RetagKind::FnEntry => { 0usize }
                        RetagKind::TwoPhase => { 1usize }
                        RetagKind::Raw => { 2usize }
                        RetagKind::Default => { 3usize }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    RetagKind::FnEntry => {}
                    RetagKind::TwoPhase => {}
                    RetagKind::Raw => {}
                    RetagKind::Default => {}
                }
            }
        }
    };TyEncodable, const _: () =
    {
        impl<'tcx, __D: ::rustc_middle::ty::codec::TyDecoder<'tcx>>
            ::rustc_serialize::Decodable<__D> for RetagKind {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => { RetagKind::FnEntry }
                    1usize => { RetagKind::TwoPhase }
                    2usize => { RetagKind::Raw }
                    3usize => { RetagKind::Default }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `RetagKind`, expected 0..4, actual {0}",
                                n));
                    }
                }
            }
        }
    };TyDecodable, #[automatically_derived]
impl ::core::fmt::Debug for RetagKind {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                RetagKind::FnEntry => "FnEntry",
                RetagKind::TwoPhase => "TwoPhase",
                RetagKind::Raw => "Raw",
                RetagKind::Default => "Default",
            })
    }
}Debug, #[automatically_derived]
impl ::core::cmp::PartialEq for RetagKind {
    #[inline]
    fn eq(&self, other: &RetagKind) -> 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 RetagKind {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_receiver_is_total_eq(&self) -> () {}
}Eq, #[automatically_derived]
impl ::core::hash::Hash for RetagKind {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) -> () {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        ::core::hash::Hash::hash(&__self_discr, state)
    }
}Hash, const _: () =
    {
        impl<'__ctx>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_query_system::ich::StableHashingContext<'__ctx>>
            for RetagKind {
            #[inline]
            fn hash_stable(&self,
                __hcx:
                    &mut ::rustc_query_system::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                ::std::mem::discriminant(self).hash_stable(__hcx, __hasher);
                match *self {
                    RetagKind::FnEntry => {}
                    RetagKind::TwoPhase => {}
                    RetagKind::Raw => {}
                    RetagKind::Default => {}
                }
            }
        }
    };HashStable)]
512#[rustc_pass_by_value]
513pub enum RetagKind {
514    /// The initial retag of arguments when entering a function.
515    FnEntry,
516    /// Retag preparing for a two-phase borrow.
517    TwoPhase,
518    /// Retagging raw pointers.
519    Raw,
520    /// A "normal" retag.
521    Default,
522}
523
524/// The `FakeReadCause` describes the type of pattern why a FakeRead statement exists.
525#[derive(#[automatically_derived]
impl ::core::marker::Copy for FakeReadCause { }Copy, #[automatically_derived]
impl ::core::clone::Clone for FakeReadCause {
    #[inline]
    fn clone(&self) -> FakeReadCause {
        let _: ::core::clone::AssertParamIsClone<Option<LocalDefId>>;
        let _: ::core::clone::AssertParamIsClone<Option<LocalDefId>>;
        *self
    }
}Clone, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for FakeReadCause {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        FakeReadCause::ForMatchGuard => { 0usize }
                        FakeReadCause::ForMatchedPlace(ref __binding_0) => {
                            1usize
                        }
                        FakeReadCause::ForGuardBinding => { 2usize }
                        FakeReadCause::ForLet(ref __binding_0) => { 3usize }
                        FakeReadCause::ForIndex => { 4usize }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    FakeReadCause::ForMatchGuard => {}
                    FakeReadCause::ForMatchedPlace(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    FakeReadCause::ForGuardBinding => {}
                    FakeReadCause::ForLet(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    FakeReadCause::ForIndex => {}
                }
            }
        }
    };TyEncodable, const _: () =
    {
        impl<'tcx, __D: ::rustc_middle::ty::codec::TyDecoder<'tcx>>
            ::rustc_serialize::Decodable<__D> for FakeReadCause {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => { FakeReadCause::ForMatchGuard }
                    1usize => {
                        FakeReadCause::ForMatchedPlace(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    2usize => { FakeReadCause::ForGuardBinding }
                    3usize => {
                        FakeReadCause::ForLet(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    4usize => { FakeReadCause::ForIndex }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `FakeReadCause`, expected 0..5, actual {0}",
                                n));
                    }
                }
            }
        }
    };TyDecodable, #[automatically_derived]
impl ::core::fmt::Debug for FakeReadCause {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            FakeReadCause::ForMatchGuard =>
                ::core::fmt::Formatter::write_str(f, "ForMatchGuard"),
            FakeReadCause::ForMatchedPlace(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "ForMatchedPlace", &__self_0),
            FakeReadCause::ForGuardBinding =>
                ::core::fmt::Formatter::write_str(f, "ForGuardBinding"),
            FakeReadCause::ForLet(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "ForLet",
                    &__self_0),
            FakeReadCause::ForIndex =>
                ::core::fmt::Formatter::write_str(f, "ForIndex"),
        }
    }
}Debug, #[automatically_derived]
impl ::core::hash::Hash for FakeReadCause {
    #[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 {
            FakeReadCause::ForMatchedPlace(__self_0) =>
                ::core::hash::Hash::hash(__self_0, state),
            FakeReadCause::ForLet(__self_0) =>
                ::core::hash::Hash::hash(__self_0, state),
            _ => {}
        }
    }
}Hash, const _: () =
    {
        impl<'__ctx>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_query_system::ich::StableHashingContext<'__ctx>>
            for FakeReadCause {
            #[inline]
            fn hash_stable(&self,
                __hcx:
                    &mut ::rustc_query_system::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                ::std::mem::discriminant(self).hash_stable(__hcx, __hasher);
                match *self {
                    FakeReadCause::ForMatchGuard => {}
                    FakeReadCause::ForMatchedPlace(ref __binding_0) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                    FakeReadCause::ForGuardBinding => {}
                    FakeReadCause::ForLet(ref __binding_0) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                    FakeReadCause::ForIndex => {}
                }
            }
        }
    };HashStable, #[automatically_derived]
impl ::core::cmp::PartialEq for FakeReadCause {
    #[inline]
    fn eq(&self, other: &FakeReadCause) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr &&
            match (self, other) {
                (FakeReadCause::ForMatchedPlace(__self_0),
                    FakeReadCause::ForMatchedPlace(__arg1_0)) =>
                    __self_0 == __arg1_0,
                (FakeReadCause::ForLet(__self_0),
                    FakeReadCause::ForLet(__arg1_0)) => __self_0 == __arg1_0,
                _ => true,
            }
    }
}PartialEq)]
526pub enum FakeReadCause {
527    /// A fake read injected into a match guard to ensure that the discriminants
528    /// that are being matched on aren't modified while the match guard is being
529    /// evaluated.
530    ///
531    /// At the beginning of each match guard, a [fake borrow][FakeBorrowKind] is
532    /// inserted for each discriminant accessed in the entire `match` statement.
533    ///
534    /// Then, at the end of the match guard, a `FakeRead(ForMatchGuard)` is
535    /// inserted to keep the fake borrows alive until that point.
536    ///
537    /// This should ensure that you cannot change the variant for an enum while
538    /// you are in the midst of matching on it.
539    ForMatchGuard,
540
541    /// Fake read of the scrutinee of a `match` or destructuring `let`
542    /// (i.e. `let` with non-trivial pattern).
543    ///
544    /// In `match x { ... }`, we generate a `FakeRead(ForMatchedPlace, x)`
545    /// and insert it into the `otherwise_block` (which is supposed to be
546    /// unreachable for irrefutable pattern-matches like `match` or `let`).
547    ///
548    /// This is necessary because `let x: !; match x {}` doesn't generate any
549    /// actual read of x, so we need to generate a `FakeRead` to check that it
550    /// is initialized.
551    ///
552    /// If the `FakeRead(ForMatchedPlace)` is being performed with a closure
553    /// that doesn't capture the required upvars, the `FakeRead` within the
554    /// closure is omitted entirely.
555    ///
556    /// To make sure that this is still sound, if a closure matches against
557    /// a Place starting with an Upvar, we hoist the `FakeRead` to the
558    /// definition point of the closure.
559    ///
560    /// If the `FakeRead` comes from being hoisted out of a closure like this,
561    /// we record the `LocalDefId` of the closure. Otherwise, the `Option` will be `None`.
562    //
563    // We can use LocalDefId here since fake read statements are removed
564    // before codegen in the `CleanupNonCodegenStatements` pass.
565    ForMatchedPlace(Option<LocalDefId>),
566
567    /// A fake read injected into a match guard to ensure that the places
568    /// bound by the pattern are immutable for the duration of the match guard.
569    ///
570    /// Within a match guard, references are created for each place that the
571    /// pattern creates a binding for — this is known as the `RefWithinGuard`
572    /// version of the variables. To make sure that the references stay
573    /// alive until the end of the match guard, and properly prevent the
574    /// places in question from being modified, a `FakeRead(ForGuardBinding)`
575    /// is inserted at the end of the match guard.
576    ///
577    /// For details on how these references are created, see the extensive
578    /// documentation on `bind_matched_candidate_for_guard` in
579    /// `rustc_mir_build`.
580    ForGuardBinding,
581
582    /// Officially, the semantics of
583    ///
584    /// `let pattern = <expr>;`
585    ///
586    /// is that `<expr>` is evaluated into a temporary and then this temporary is
587    /// into the pattern.
588    ///
589    /// However, if we see the simple pattern `let var = <expr>`, we optimize this to
590    /// evaluate `<expr>` directly into the variable `var`. This is mostly unobservable,
591    /// but in some cases it can affect the borrow checker, as in #53695.
592    ///
593    /// Therefore, we insert a `FakeRead(ForLet)` immediately after each `let`
594    /// with a trivial pattern.
595    ///
596    /// FIXME: `ExprUseVisitor` has an entirely different opinion on what `FakeRead(ForLet)`
597    /// is supposed to mean. If it was accurate to what MIR lowering does,
598    /// would it even make sense to hoist these out of closures like
599    /// `ForMatchedPlace`?
600    ForLet(Option<LocalDefId>),
601
602    /// Currently, index expressions overloaded through the `Index` trait
603    /// get lowered differently than index expressions with builtin semantics
604    /// for arrays and slices — the latter will emit code to perform
605    /// bound checks, and then return a MIR place that will only perform the
606    /// indexing "for real" when it gets incorporated into an instruction.
607    ///
608    /// This is observable in the fact that the following compiles:
609    ///
610    /// ```
611    /// fn f(x: &mut [&mut [u32]], i: usize) {
612    ///     x[i][x[i].len() - 1] += 1;
613    /// }
614    /// ```
615    ///
616    /// However, we need to be careful to not let the user invalidate the
617    /// bound check with an expression like
618    ///
619    /// `(*x)[1][{ x = y; 4}]`
620    ///
621    /// Here, the first bounds check would be invalidated when we evaluate the
622    /// second index expression. To make sure that this doesn't happen, we
623    /// create a fake borrow of `x` and hold it while we evaluate the second
624    /// index.
625    ///
626    /// This borrow is kept alive by a `FakeRead(ForIndex)` at the end of its
627    /// scope.
628    ForIndex,
629}
630
631#[derive(#[automatically_derived]
impl<'tcx> ::core::clone::Clone for CopyNonOverlapping<'tcx> {
    #[inline]
    fn clone(&self) -> CopyNonOverlapping<'tcx> {
        CopyNonOverlapping {
            src: ::core::clone::Clone::clone(&self.src),
            dst: ::core::clone::Clone::clone(&self.dst),
            count: ::core::clone::Clone::clone(&self.count),
        }
    }
}Clone, #[automatically_derived]
impl<'tcx> ::core::fmt::Debug for CopyNonOverlapping<'tcx> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field3_finish(f,
            "CopyNonOverlapping", "src", &self.src, "dst", &self.dst, "count",
            &&self.count)
    }
}Debug, #[automatically_derived]
impl<'tcx> ::core::cmp::PartialEq for CopyNonOverlapping<'tcx> {
    #[inline]
    fn eq(&self, other: &CopyNonOverlapping<'tcx>) -> bool {
        self.src == other.src && self.dst == other.dst &&
            self.count == other.count
    }
}PartialEq, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for CopyNonOverlapping<'tcx> {
            fn encode(&self, __encoder: &mut __E) {
                match *self {
                    CopyNonOverlapping {
                        src: ref __binding_0,
                        dst: ref __binding_1,
                        count: ref __binding_2 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_2,
                            __encoder);
                    }
                }
            }
        }
    };TyEncodable, const _: () =
    {
        impl<'tcx, __D: ::rustc_middle::ty::codec::TyDecoder<'tcx>>
            ::rustc_serialize::Decodable<__D> for CopyNonOverlapping<'tcx> {
            fn decode(__decoder: &mut __D) -> Self {
                CopyNonOverlapping {
                    src: ::rustc_serialize::Decodable::decode(__decoder),
                    dst: ::rustc_serialize::Decodable::decode(__decoder),
                    count: ::rustc_serialize::Decodable::decode(__decoder),
                }
            }
        }
    };TyDecodable, #[automatically_derived]
impl<'tcx> ::core::hash::Hash for CopyNonOverlapping<'tcx> {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) -> () {
        ::core::hash::Hash::hash(&self.src, state);
        ::core::hash::Hash::hash(&self.dst, state);
        ::core::hash::Hash::hash(&self.count, state)
    }
}Hash, const _: () =
    {
        impl<'tcx, '__ctx>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_query_system::ich::StableHashingContext<'__ctx>>
            for CopyNonOverlapping<'tcx> {
            #[inline]
            fn hash_stable(&self,
                __hcx:
                    &mut ::rustc_query_system::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                match *self {
                    CopyNonOverlapping {
                        src: ref __binding_0,
                        dst: ref __binding_1,
                        count: ref __binding_2 } => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                        { __binding_2.hash_stable(__hcx, __hasher); }
                    }
                }
            }
        }
    };HashStable)]
632#[derive(const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeFoldable<::rustc_middle::ty::TyCtxt<'tcx>>
            for CopyNonOverlapping<'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 {
                        CopyNonOverlapping {
                            src: __binding_0, dst: __binding_1, count: __binding_2 } =>
                            {
                            CopyNonOverlapping {
                                src: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                dst: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?,
                                count: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_2,
                                        __folder)?,
                            }
                        }
                    })
            }
            fn fold_with<__F: ::rustc_middle::ty::TypeFolder<::rustc_middle::ty::TyCtxt<'tcx>>>(self,
                __folder: &mut __F) -> Self {
                match self {
                    CopyNonOverlapping {
                        src: __binding_0, dst: __binding_1, count: __binding_2 } =>
                        {
                        CopyNonOverlapping {
                            src: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            dst: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
                                __folder),
                            count: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_2,
                                __folder),
                        }
                    }
                }
            }
        }
    };TypeFoldable, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeVisitable<::rustc_middle::ty::TyCtxt<'tcx>>
            for CopyNonOverlapping<'tcx> {
            fn visit_with<__V: ::rustc_middle::ty::TypeVisitor<::rustc_middle::ty::TyCtxt<'tcx>>>(&self,
                __visitor: &mut __V) -> __V::Result {
                match *self {
                    CopyNonOverlapping {
                        src: ref __binding_0,
                        dst: ref __binding_1,
                        count: ref __binding_2 } => {
                        {
                            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);
                                }
                            }
                        }
                    }
                }
                <__V::Result as ::rustc_middle::ty::VisitorResult>::output()
            }
        }
    };TypeVisitable)]
633pub struct CopyNonOverlapping<'tcx> {
634    pub src: Operand<'tcx>,
635    pub dst: Operand<'tcx>,
636    /// Number of elements to copy from src to dest, not bytes.
637    pub count: Operand<'tcx>,
638}
639
640/// Represents how a [`TerminatorKind::Call`] was constructed.
641/// Used only for diagnostics.
642#[derive(#[automatically_derived]
impl ::core::clone::Clone for CallSource {
    #[inline]
    fn clone(&self) -> CallSource { *self }
}Clone, #[automatically_derived]
impl ::core::marker::Copy for CallSource { }Copy, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for CallSource {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        CallSource::OverloadedOperator => { 0usize }
                        CallSource::MatchCmp => { 1usize }
                        CallSource::Misc => { 2usize }
                        CallSource::Use => { 3usize }
                        CallSource::Normal => { 4usize }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    CallSource::OverloadedOperator => {}
                    CallSource::MatchCmp => {}
                    CallSource::Misc => {}
                    CallSource::Use => {}
                    CallSource::Normal => {}
                }
            }
        }
    };TyEncodable, const _: () =
    {
        impl<'tcx, __D: ::rustc_middle::ty::codec::TyDecoder<'tcx>>
            ::rustc_serialize::Decodable<__D> for CallSource {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => { CallSource::OverloadedOperator }
                    1usize => { CallSource::MatchCmp }
                    2usize => { CallSource::Misc }
                    3usize => { CallSource::Use }
                    4usize => { CallSource::Normal }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `CallSource`, expected 0..5, actual {0}",
                                n));
                    }
                }
            }
        }
    };TyDecodable, #[automatically_derived]
impl ::core::fmt::Debug for CallSource {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                CallSource::OverloadedOperator => "OverloadedOperator",
                CallSource::MatchCmp => "MatchCmp",
                CallSource::Misc => "Misc",
                CallSource::Use => "Use",
                CallSource::Normal => "Normal",
            })
    }
}Debug, #[automatically_derived]
impl ::core::cmp::PartialEq for CallSource {
    #[inline]
    fn eq(&self, other: &CallSource) -> 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::hash::Hash for CallSource {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) -> () {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        ::core::hash::Hash::hash(&__self_discr, state)
    }
}Hash, const _: () =
    {
        impl<'__ctx>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_query_system::ich::StableHashingContext<'__ctx>>
            for CallSource {
            #[inline]
            fn hash_stable(&self,
                __hcx:
                    &mut ::rustc_query_system::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                ::std::mem::discriminant(self).hash_stable(__hcx, __hasher);
                match *self {
                    CallSource::OverloadedOperator => {}
                    CallSource::MatchCmp => {}
                    CallSource::Misc => {}
                    CallSource::Use => {}
                    CallSource::Normal => {}
                }
            }
        }
    };HashStable)]
643#[derive(const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeFoldable<::rustc_middle::ty::TyCtxt<'tcx>>
            for CallSource {
            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 {
                        CallSource::OverloadedOperator => {
                            CallSource::OverloadedOperator
                        }
                        CallSource::MatchCmp => { CallSource::MatchCmp }
                        CallSource::Misc => { CallSource::Misc }
                        CallSource::Use => { CallSource::Use }
                        CallSource::Normal => { CallSource::Normal }
                    })
            }
            fn fold_with<__F: ::rustc_middle::ty::TypeFolder<::rustc_middle::ty::TyCtxt<'tcx>>>(self,
                __folder: &mut __F) -> Self {
                match self {
                    CallSource::OverloadedOperator => {
                        CallSource::OverloadedOperator
                    }
                    CallSource::MatchCmp => { CallSource::MatchCmp }
                    CallSource::Misc => { CallSource::Misc }
                    CallSource::Use => { CallSource::Use }
                    CallSource::Normal => { CallSource::Normal }
                }
            }
        }
    };TypeFoldable, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeVisitable<::rustc_middle::ty::TyCtxt<'tcx>>
            for CallSource {
            fn visit_with<__V: ::rustc_middle::ty::TypeVisitor<::rustc_middle::ty::TyCtxt<'tcx>>>(&self,
                __visitor: &mut __V) -> __V::Result {
                match *self {
                    CallSource::OverloadedOperator => {}
                    CallSource::MatchCmp => {}
                    CallSource::Misc => {}
                    CallSource::Use => {}
                    CallSource::Normal => {}
                }
                <__V::Result as ::rustc_middle::ty::VisitorResult>::output()
            }
        }
    };TypeVisitable)]
644pub enum CallSource {
645    /// This came from something such as `a > b` or `a + b`. In THIR, if `from_hir_call`
646    /// is false then this is the desugaring.
647    OverloadedOperator,
648    /// This was from comparison generated by a match, used by const-eval for better errors
649    /// when the comparison cannot be done in compile time.
650    ///
651    /// (see <https://github.com/rust-lang/rust/issues/90237>)
652    MatchCmp,
653    /// Other types of desugaring that did not come from the HIR, but we don't care about
654    /// for diagnostics (yet).
655    Misc,
656    /// Use of value, generating a clone function call
657    Use,
658    /// Normal function call, no special source
659    Normal,
660}
661
662#[derive(#[automatically_derived]
impl ::core::clone::Clone for InlineAsmMacro {
    #[inline]
    fn clone(&self) -> InlineAsmMacro { *self }
}Clone, #[automatically_derived]
impl ::core::marker::Copy for InlineAsmMacro { }Copy, #[automatically_derived]
impl ::core::fmt::Debug for InlineAsmMacro {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                InlineAsmMacro::Asm => "Asm",
                InlineAsmMacro::NakedAsm => "NakedAsm",
            })
    }
}Debug, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for InlineAsmMacro {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        InlineAsmMacro::Asm => { 0usize }
                        InlineAsmMacro::NakedAsm => { 1usize }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    InlineAsmMacro::Asm => {}
                    InlineAsmMacro::NakedAsm => {}
                }
            }
        }
    };TyEncodable, const _: () =
    {
        impl<'tcx, __D: ::rustc_middle::ty::codec::TyDecoder<'tcx>>
            ::rustc_serialize::Decodable<__D> for InlineAsmMacro {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => { InlineAsmMacro::Asm }
                    1usize => { InlineAsmMacro::NakedAsm }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `InlineAsmMacro`, expected 0..2, actual {0}",
                                n));
                    }
                }
            }
        }
    };TyDecodable, #[automatically_derived]
impl ::core::hash::Hash for InlineAsmMacro {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) -> () {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        ::core::hash::Hash::hash(&__self_discr, state)
    }
}Hash, const _: () =
    {
        impl<'__ctx>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_query_system::ich::StableHashingContext<'__ctx>>
            for InlineAsmMacro {
            #[inline]
            fn hash_stable(&self,
                __hcx:
                    &mut ::rustc_query_system::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                ::std::mem::discriminant(self).hash_stable(__hcx, __hasher);
                match *self {
                    InlineAsmMacro::Asm => {}
                    InlineAsmMacro::NakedAsm => {}
                }
            }
        }
    };HashStable, #[automatically_derived]
impl ::core::cmp::PartialEq for InlineAsmMacro {
    #[inline]
    fn eq(&self, other: &InlineAsmMacro) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr
    }
}PartialEq)]
663#[derive(const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeFoldable<::rustc_middle::ty::TyCtxt<'tcx>>
            for InlineAsmMacro {
            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 {
                        InlineAsmMacro::Asm => { InlineAsmMacro::Asm }
                        InlineAsmMacro::NakedAsm => { InlineAsmMacro::NakedAsm }
                    })
            }
            fn fold_with<__F: ::rustc_middle::ty::TypeFolder<::rustc_middle::ty::TyCtxt<'tcx>>>(self,
                __folder: &mut __F) -> Self {
                match self {
                    InlineAsmMacro::Asm => { InlineAsmMacro::Asm }
                    InlineAsmMacro::NakedAsm => { InlineAsmMacro::NakedAsm }
                }
            }
        }
    };TypeFoldable, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeVisitable<::rustc_middle::ty::TyCtxt<'tcx>>
            for InlineAsmMacro {
            fn visit_with<__V: ::rustc_middle::ty::TypeVisitor<::rustc_middle::ty::TyCtxt<'tcx>>>(&self,
                __visitor: &mut __V) -> __V::Result {
                match *self {
                    InlineAsmMacro::Asm => {}
                    InlineAsmMacro::NakedAsm => {}
                }
                <__V::Result as ::rustc_middle::ty::VisitorResult>::output()
            }
        }
    };TypeVisitable)]
664/// The macro that an inline assembly block was created by
665pub enum InlineAsmMacro {
666    /// The `asm!` macro
667    Asm,
668    /// The `naked_asm!` macro
669    NakedAsm,
670}
671
672///////////////////////////////////////////////////////////////////////////
673// Terminators
674
675/// The various kinds of terminators, representing ways of exiting from a basic block.
676///
677/// A note on unwinding: Panics may occur during the execution of some terminators. Depending on the
678/// `-C panic` flag, this may either cause the program to abort or the call stack to unwind. Such
679/// terminators have a `unwind: UnwindAction` field on them. If stack unwinding occurs, then
680/// once the current function is reached, an action will be taken based on the `unwind` field.
681/// If the action is `Cleanup`, then the execution continues at the given basic block. If the
682/// action is `Continue` then no cleanup is performed, and the stack continues unwinding.
683///
684/// The basic block pointed to by a `Cleanup` unwind action must have its `cleanup` flag set.
685/// `cleanup` basic blocks have a couple restrictions:
686///  1. All `unwind` fields in them must be `UnwindAction::Terminate` or `UnwindAction::Unreachable`.
687///  2. `Return` terminators are not allowed in them. `Terminate` and `Resume` terminators are.
688///  3. All other basic blocks (in the current body) that are reachable from `cleanup` basic blocks
689///     must also be `cleanup`. This is a part of the type system and checked statically, so it is
690///     still an error to have such an edge in the CFG even if it's known that it won't be taken at
691///     runtime.
692///  4. The control flow between cleanup blocks must look like an upside down tree. Roughly
693///     speaking, this means that control flow that looks like a V is allowed, while control flow
694///     that looks like a W is not. This is necessary to ensure that landing pad information can be
695///     correctly codegened on MSVC. More precisely:
696///
697///     Begin with the standard control flow graph `G`. Modify `G` as follows: for any two cleanup
698///     vertices `u` and `v` such that `u` dominates `v`, contract `u` and `v` into a single vertex,
699///     deleting self edges and duplicate edges in the process. Now remove all vertices from `G`
700///     that are not cleanup vertices or are not reachable. The resulting graph must be an inverted
701///     tree, that is each vertex may have at most one successor and there may be no cycles.
702#[derive(#[automatically_derived]
impl<'tcx> ::core::clone::Clone for TerminatorKind<'tcx> {
    #[inline]
    fn clone(&self) -> TerminatorKind<'tcx> {
        match self {
            TerminatorKind::Goto { target: __self_0 } =>
                TerminatorKind::Goto {
                    target: ::core::clone::Clone::clone(__self_0),
                },
            TerminatorKind::SwitchInt { discr: __self_0, targets: __self_1 }
                =>
                TerminatorKind::SwitchInt {
                    discr: ::core::clone::Clone::clone(__self_0),
                    targets: ::core::clone::Clone::clone(__self_1),
                },
            TerminatorKind::UnwindResume => TerminatorKind::UnwindResume,
            TerminatorKind::UnwindTerminate(__self_0) =>
                TerminatorKind::UnwindTerminate(::core::clone::Clone::clone(__self_0)),
            TerminatorKind::Return => TerminatorKind::Return,
            TerminatorKind::Unreachable => TerminatorKind::Unreachable,
            TerminatorKind::Drop {
                place: __self_0,
                target: __self_1,
                unwind: __self_2,
                replace: __self_3,
                drop: __self_4,
                async_fut: __self_5 } =>
                TerminatorKind::Drop {
                    place: ::core::clone::Clone::clone(__self_0),
                    target: ::core::clone::Clone::clone(__self_1),
                    unwind: ::core::clone::Clone::clone(__self_2),
                    replace: ::core::clone::Clone::clone(__self_3),
                    drop: ::core::clone::Clone::clone(__self_4),
                    async_fut: ::core::clone::Clone::clone(__self_5),
                },
            TerminatorKind::Call {
                func: __self_0,
                args: __self_1,
                destination: __self_2,
                target: __self_3,
                unwind: __self_4,
                call_source: __self_5,
                fn_span: __self_6 } =>
                TerminatorKind::Call {
                    func: ::core::clone::Clone::clone(__self_0),
                    args: ::core::clone::Clone::clone(__self_1),
                    destination: ::core::clone::Clone::clone(__self_2),
                    target: ::core::clone::Clone::clone(__self_3),
                    unwind: ::core::clone::Clone::clone(__self_4),
                    call_source: ::core::clone::Clone::clone(__self_5),
                    fn_span: ::core::clone::Clone::clone(__self_6),
                },
            TerminatorKind::TailCall {
                func: __self_0, args: __self_1, fn_span: __self_2 } =>
                TerminatorKind::TailCall {
                    func: ::core::clone::Clone::clone(__self_0),
                    args: ::core::clone::Clone::clone(__self_1),
                    fn_span: ::core::clone::Clone::clone(__self_2),
                },
            TerminatorKind::Assert {
                cond: __self_0,
                expected: __self_1,
                msg: __self_2,
                target: __self_3,
                unwind: __self_4 } =>
                TerminatorKind::Assert {
                    cond: ::core::clone::Clone::clone(__self_0),
                    expected: ::core::clone::Clone::clone(__self_1),
                    msg: ::core::clone::Clone::clone(__self_2),
                    target: ::core::clone::Clone::clone(__self_3),
                    unwind: ::core::clone::Clone::clone(__self_4),
                },
            TerminatorKind::Yield {
                value: __self_0,
                resume: __self_1,
                resume_arg: __self_2,
                drop: __self_3 } =>
                TerminatorKind::Yield {
                    value: ::core::clone::Clone::clone(__self_0),
                    resume: ::core::clone::Clone::clone(__self_1),
                    resume_arg: ::core::clone::Clone::clone(__self_2),
                    drop: ::core::clone::Clone::clone(__self_3),
                },
            TerminatorKind::CoroutineDrop => TerminatorKind::CoroutineDrop,
            TerminatorKind::FalseEdge {
                real_target: __self_0, imaginary_target: __self_1 } =>
                TerminatorKind::FalseEdge {
                    real_target: ::core::clone::Clone::clone(__self_0),
                    imaginary_target: ::core::clone::Clone::clone(__self_1),
                },
            TerminatorKind::FalseUnwind {
                real_target: __self_0, unwind: __self_1 } =>
                TerminatorKind::FalseUnwind {
                    real_target: ::core::clone::Clone::clone(__self_0),
                    unwind: ::core::clone::Clone::clone(__self_1),
                },
            TerminatorKind::InlineAsm {
                asm_macro: __self_0,
                template: __self_1,
                operands: __self_2,
                options: __self_3,
                line_spans: __self_4,
                targets: __self_5,
                unwind: __self_6 } =>
                TerminatorKind::InlineAsm {
                    asm_macro: ::core::clone::Clone::clone(__self_0),
                    template: ::core::clone::Clone::clone(__self_1),
                    operands: ::core::clone::Clone::clone(__self_2),
                    options: ::core::clone::Clone::clone(__self_3),
                    line_spans: ::core::clone::Clone::clone(__self_4),
                    targets: ::core::clone::Clone::clone(__self_5),
                    unwind: ::core::clone::Clone::clone(__self_6),
                },
        }
    }
}Clone, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for TerminatorKind<'tcx> {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        TerminatorKind::Goto { target: ref __binding_0 } => {
                            0usize
                        }
                        TerminatorKind::SwitchInt {
                            discr: ref __binding_0, targets: ref __binding_1 } => {
                            1usize
                        }
                        TerminatorKind::UnwindResume => { 2usize }
                        TerminatorKind::UnwindTerminate(ref __binding_0) => {
                            3usize
                        }
                        TerminatorKind::Return => { 4usize }
                        TerminatorKind::Unreachable => { 5usize }
                        TerminatorKind::Drop {
                            place: ref __binding_0,
                            target: ref __binding_1,
                            unwind: ref __binding_2,
                            replace: ref __binding_3,
                            drop: ref __binding_4,
                            async_fut: ref __binding_5 } => {
                            6usize
                        }
                        TerminatorKind::Call {
                            func: ref __binding_0,
                            args: ref __binding_1,
                            destination: ref __binding_2,
                            target: ref __binding_3,
                            unwind: ref __binding_4,
                            call_source: ref __binding_5,
                            fn_span: ref __binding_6 } => {
                            7usize
                        }
                        TerminatorKind::TailCall {
                            func: ref __binding_0,
                            args: ref __binding_1,
                            fn_span: ref __binding_2 } => {
                            8usize
                        }
                        TerminatorKind::Assert {
                            cond: ref __binding_0,
                            expected: ref __binding_1,
                            msg: ref __binding_2,
                            target: ref __binding_3,
                            unwind: ref __binding_4 } => {
                            9usize
                        }
                        TerminatorKind::Yield {
                            value: ref __binding_0,
                            resume: ref __binding_1,
                            resume_arg: ref __binding_2,
                            drop: ref __binding_3 } => {
                            10usize
                        }
                        TerminatorKind::CoroutineDrop => { 11usize }
                        TerminatorKind::FalseEdge {
                            real_target: ref __binding_0,
                            imaginary_target: ref __binding_1 } => {
                            12usize
                        }
                        TerminatorKind::FalseUnwind {
                            real_target: ref __binding_0, unwind: ref __binding_1 } => {
                            13usize
                        }
                        TerminatorKind::InlineAsm {
                            asm_macro: ref __binding_0,
                            template: __binding_1,
                            operands: ref __binding_2,
                            options: ref __binding_3,
                            line_spans: __binding_4,
                            targets: ref __binding_5,
                            unwind: ref __binding_6 } => {
                            14usize
                        }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    TerminatorKind::Goto { target: ref __binding_0 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    TerminatorKind::SwitchInt {
                        discr: ref __binding_0, targets: ref __binding_1 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                    }
                    TerminatorKind::UnwindResume => {}
                    TerminatorKind::UnwindTerminate(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    TerminatorKind::Return => {}
                    TerminatorKind::Unreachable => {}
                    TerminatorKind::Drop {
                        place: ref __binding_0,
                        target: ref __binding_1,
                        unwind: ref __binding_2,
                        replace: ref __binding_3,
                        drop: ref __binding_4,
                        async_fut: ref __binding_5 } => {
                        ::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);
                    }
                    TerminatorKind::Call {
                        func: ref __binding_0,
                        args: ref __binding_1,
                        destination: ref __binding_2,
                        target: ref __binding_3,
                        unwind: ref __binding_4,
                        call_source: ref __binding_5,
                        fn_span: 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);
                    }
                    TerminatorKind::TailCall {
                        func: ref __binding_0,
                        args: ref __binding_1,
                        fn_span: ref __binding_2 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_2,
                            __encoder);
                    }
                    TerminatorKind::Assert {
                        cond: ref __binding_0,
                        expected: ref __binding_1,
                        msg: ref __binding_2,
                        target: ref __binding_3,
                        unwind: 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);
                    }
                    TerminatorKind::Yield {
                        value: ref __binding_0,
                        resume: ref __binding_1,
                        resume_arg: ref __binding_2,
                        drop: 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);
                    }
                    TerminatorKind::CoroutineDrop => {}
                    TerminatorKind::FalseEdge {
                        real_target: ref __binding_0,
                        imaginary_target: ref __binding_1 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                    }
                    TerminatorKind::FalseUnwind {
                        real_target: ref __binding_0, unwind: ref __binding_1 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                    }
                    TerminatorKind::InlineAsm {
                        asm_macro: ref __binding_0,
                        template: __binding_1,
                        operands: ref __binding_2,
                        options: ref __binding_3,
                        line_spans: __binding_4,
                        targets: ref __binding_5,
                        unwind: 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 TerminatorKind<'tcx> {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => {
                        TerminatorKind::Goto {
                            target: ::rustc_serialize::Decodable::decode(__decoder),
                        }
                    }
                    1usize => {
                        TerminatorKind::SwitchInt {
                            discr: ::rustc_serialize::Decodable::decode(__decoder),
                            targets: ::rustc_serialize::Decodable::decode(__decoder),
                        }
                    }
                    2usize => { TerminatorKind::UnwindResume }
                    3usize => {
                        TerminatorKind::UnwindTerminate(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    4usize => { TerminatorKind::Return }
                    5usize => { TerminatorKind::Unreachable }
                    6usize => {
                        TerminatorKind::Drop {
                            place: ::rustc_serialize::Decodable::decode(__decoder),
                            target: ::rustc_serialize::Decodable::decode(__decoder),
                            unwind: ::rustc_serialize::Decodable::decode(__decoder),
                            replace: ::rustc_serialize::Decodable::decode(__decoder),
                            drop: ::rustc_serialize::Decodable::decode(__decoder),
                            async_fut: ::rustc_serialize::Decodable::decode(__decoder),
                        }
                    }
                    7usize => {
                        TerminatorKind::Call {
                            func: ::rustc_serialize::Decodable::decode(__decoder),
                            args: ::rustc_serialize::Decodable::decode(__decoder),
                            destination: ::rustc_serialize::Decodable::decode(__decoder),
                            target: ::rustc_serialize::Decodable::decode(__decoder),
                            unwind: ::rustc_serialize::Decodable::decode(__decoder),
                            call_source: ::rustc_serialize::Decodable::decode(__decoder),
                            fn_span: ::rustc_serialize::Decodable::decode(__decoder),
                        }
                    }
                    8usize => {
                        TerminatorKind::TailCall {
                            func: ::rustc_serialize::Decodable::decode(__decoder),
                            args: ::rustc_serialize::Decodable::decode(__decoder),
                            fn_span: ::rustc_serialize::Decodable::decode(__decoder),
                        }
                    }
                    9usize => {
                        TerminatorKind::Assert {
                            cond: ::rustc_serialize::Decodable::decode(__decoder),
                            expected: ::rustc_serialize::Decodable::decode(__decoder),
                            msg: ::rustc_serialize::Decodable::decode(__decoder),
                            target: ::rustc_serialize::Decodable::decode(__decoder),
                            unwind: ::rustc_serialize::Decodable::decode(__decoder),
                        }
                    }
                    10usize => {
                        TerminatorKind::Yield {
                            value: ::rustc_serialize::Decodable::decode(__decoder),
                            resume: ::rustc_serialize::Decodable::decode(__decoder),
                            resume_arg: ::rustc_serialize::Decodable::decode(__decoder),
                            drop: ::rustc_serialize::Decodable::decode(__decoder),
                        }
                    }
                    11usize => { TerminatorKind::CoroutineDrop }
                    12usize => {
                        TerminatorKind::FalseEdge {
                            real_target: ::rustc_serialize::Decodable::decode(__decoder),
                            imaginary_target: ::rustc_serialize::Decodable::decode(__decoder),
                        }
                    }
                    13usize => {
                        TerminatorKind::FalseUnwind {
                            real_target: ::rustc_serialize::Decodable::decode(__decoder),
                            unwind: ::rustc_serialize::Decodable::decode(__decoder),
                        }
                    }
                    14usize => {
                        TerminatorKind::InlineAsm {
                            asm_macro: ::rustc_serialize::Decodable::decode(__decoder),
                            template: ::rustc_middle::ty::codec::RefDecodable::decode(__decoder),
                            operands: ::rustc_serialize::Decodable::decode(__decoder),
                            options: ::rustc_serialize::Decodable::decode(__decoder),
                            line_spans: ::rustc_middle::ty::codec::RefDecodable::decode(__decoder),
                            targets: ::rustc_serialize::Decodable::decode(__decoder),
                            unwind: ::rustc_serialize::Decodable::decode(__decoder),
                        }
                    }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `TerminatorKind`, expected 0..15, actual {0}",
                                n));
                    }
                }
            }
        }
    };TyDecodable, #[automatically_derived]
impl<'tcx> ::core::hash::Hash for TerminatorKind<'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 {
            TerminatorKind::Goto { target: __self_0 } =>
                ::core::hash::Hash::hash(__self_0, state),
            TerminatorKind::SwitchInt { discr: __self_0, targets: __self_1 }
                => {
                ::core::hash::Hash::hash(__self_0, state);
                ::core::hash::Hash::hash(__self_1, state)
            }
            TerminatorKind::UnwindTerminate(__self_0) =>
                ::core::hash::Hash::hash(__self_0, state),
            TerminatorKind::Drop {
                place: __self_0,
                target: __self_1,
                unwind: __self_2,
                replace: __self_3,
                drop: __self_4,
                async_fut: __self_5 } => {
                ::core::hash::Hash::hash(__self_0, state);
                ::core::hash::Hash::hash(__self_1, state);
                ::core::hash::Hash::hash(__self_2, state);
                ::core::hash::Hash::hash(__self_3, state);
                ::core::hash::Hash::hash(__self_4, state);
                ::core::hash::Hash::hash(__self_5, state)
            }
            TerminatorKind::Call {
                func: __self_0,
                args: __self_1,
                destination: __self_2,
                target: __self_3,
                unwind: __self_4,
                call_source: __self_5,
                fn_span: __self_6 } => {
                ::core::hash::Hash::hash(__self_0, state);
                ::core::hash::Hash::hash(__self_1, state);
                ::core::hash::Hash::hash(__self_2, state);
                ::core::hash::Hash::hash(__self_3, state);
                ::core::hash::Hash::hash(__self_4, state);
                ::core::hash::Hash::hash(__self_5, state);
                ::core::hash::Hash::hash(__self_6, state)
            }
            TerminatorKind::TailCall {
                func: __self_0, args: __self_1, fn_span: __self_2 } => {
                ::core::hash::Hash::hash(__self_0, state);
                ::core::hash::Hash::hash(__self_1, state);
                ::core::hash::Hash::hash(__self_2, state)
            }
            TerminatorKind::Assert {
                cond: __self_0,
                expected: __self_1,
                msg: __self_2,
                target: __self_3,
                unwind: __self_4 } => {
                ::core::hash::Hash::hash(__self_0, state);
                ::core::hash::Hash::hash(__self_1, state);
                ::core::hash::Hash::hash(__self_2, state);
                ::core::hash::Hash::hash(__self_3, state);
                ::core::hash::Hash::hash(__self_4, state)
            }
            TerminatorKind::Yield {
                value: __self_0,
                resume: __self_1,
                resume_arg: __self_2,
                drop: __self_3 } => {
                ::core::hash::Hash::hash(__self_0, state);
                ::core::hash::Hash::hash(__self_1, state);
                ::core::hash::Hash::hash(__self_2, state);
                ::core::hash::Hash::hash(__self_3, state)
            }
            TerminatorKind::FalseEdge {
                real_target: __self_0, imaginary_target: __self_1 } => {
                ::core::hash::Hash::hash(__self_0, state);
                ::core::hash::Hash::hash(__self_1, state)
            }
            TerminatorKind::FalseUnwind {
                real_target: __self_0, unwind: __self_1 } => {
                ::core::hash::Hash::hash(__self_0, state);
                ::core::hash::Hash::hash(__self_1, state)
            }
            TerminatorKind::InlineAsm {
                asm_macro: __self_0,
                template: __self_1,
                operands: __self_2,
                options: __self_3,
                line_spans: __self_4,
                targets: __self_5,
                unwind: __self_6 } => {
                ::core::hash::Hash::hash(__self_0, state);
                ::core::hash::Hash::hash(__self_1, state);
                ::core::hash::Hash::hash(__self_2, state);
                ::core::hash::Hash::hash(__self_3, state);
                ::core::hash::Hash::hash(__self_4, state);
                ::core::hash::Hash::hash(__self_5, state);
                ::core::hash::Hash::hash(__self_6, state)
            }
            _ => {}
        }
    }
}Hash, const _: () =
    {
        impl<'tcx, '__ctx>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_query_system::ich::StableHashingContext<'__ctx>>
            for TerminatorKind<'tcx> {
            #[inline]
            fn hash_stable(&self,
                __hcx:
                    &mut ::rustc_query_system::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                ::std::mem::discriminant(self).hash_stable(__hcx, __hasher);
                match *self {
                    TerminatorKind::Goto { target: ref __binding_0 } => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                    TerminatorKind::SwitchInt {
                        discr: ref __binding_0, targets: ref __binding_1 } => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                    }
                    TerminatorKind::UnwindResume => {}
                    TerminatorKind::UnwindTerminate(ref __binding_0) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                    TerminatorKind::Return => {}
                    TerminatorKind::Unreachable => {}
                    TerminatorKind::Drop {
                        place: ref __binding_0,
                        target: ref __binding_1,
                        unwind: ref __binding_2,
                        replace: ref __binding_3,
                        drop: ref __binding_4,
                        async_fut: ref __binding_5 } => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                        { __binding_2.hash_stable(__hcx, __hasher); }
                        { __binding_3.hash_stable(__hcx, __hasher); }
                        { __binding_4.hash_stable(__hcx, __hasher); }
                        { __binding_5.hash_stable(__hcx, __hasher); }
                    }
                    TerminatorKind::Call {
                        func: ref __binding_0,
                        args: ref __binding_1,
                        destination: ref __binding_2,
                        target: ref __binding_3,
                        unwind: ref __binding_4,
                        call_source: ref __binding_5,
                        fn_span: ref __binding_6 } => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                        { __binding_2.hash_stable(__hcx, __hasher); }
                        { __binding_3.hash_stable(__hcx, __hasher); }
                        { __binding_4.hash_stable(__hcx, __hasher); }
                        { __binding_5.hash_stable(__hcx, __hasher); }
                        { __binding_6.hash_stable(__hcx, __hasher); }
                    }
                    TerminatorKind::TailCall {
                        func: ref __binding_0,
                        args: ref __binding_1,
                        fn_span: ref __binding_2 } => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                        { __binding_2.hash_stable(__hcx, __hasher); }
                    }
                    TerminatorKind::Assert {
                        cond: ref __binding_0,
                        expected: ref __binding_1,
                        msg: ref __binding_2,
                        target: ref __binding_3,
                        unwind: ref __binding_4 } => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                        { __binding_2.hash_stable(__hcx, __hasher); }
                        { __binding_3.hash_stable(__hcx, __hasher); }
                        { __binding_4.hash_stable(__hcx, __hasher); }
                    }
                    TerminatorKind::Yield {
                        value: ref __binding_0,
                        resume: ref __binding_1,
                        resume_arg: ref __binding_2,
                        drop: ref __binding_3 } => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                        { __binding_2.hash_stable(__hcx, __hasher); }
                        { __binding_3.hash_stable(__hcx, __hasher); }
                    }
                    TerminatorKind::CoroutineDrop => {}
                    TerminatorKind::FalseEdge {
                        real_target: ref __binding_0,
                        imaginary_target: ref __binding_1 } => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                    }
                    TerminatorKind::FalseUnwind {
                        real_target: ref __binding_0, unwind: ref __binding_1 } => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                    }
                    TerminatorKind::InlineAsm {
                        asm_macro: ref __binding_0,
                        template: ref __binding_1,
                        operands: ref __binding_2,
                        options: ref __binding_3,
                        line_spans: ref __binding_4,
                        targets: ref __binding_5,
                        unwind: ref __binding_6 } => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                        { __binding_2.hash_stable(__hcx, __hasher); }
                        { __binding_3.hash_stable(__hcx, __hasher); }
                        { __binding_4.hash_stable(__hcx, __hasher); }
                        { __binding_5.hash_stable(__hcx, __hasher); }
                        { __binding_6.hash_stable(__hcx, __hasher); }
                    }
                }
            }
        }
    };HashStable, #[automatically_derived]
impl<'tcx> ::core::cmp::PartialEq for TerminatorKind<'tcx> {
    #[inline]
    fn eq(&self, other: &TerminatorKind<'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) {
                (TerminatorKind::Goto { target: __self_0 },
                    TerminatorKind::Goto { target: __arg1_0 }) =>
                    __self_0 == __arg1_0,
                (TerminatorKind::SwitchInt {
                    discr: __self_0, targets: __self_1 },
                    TerminatorKind::SwitchInt {
                    discr: __arg1_0, targets: __arg1_1 }) =>
                    __self_0 == __arg1_0 && __self_1 == __arg1_1,
                (TerminatorKind::UnwindTerminate(__self_0),
                    TerminatorKind::UnwindTerminate(__arg1_0)) =>
                    __self_0 == __arg1_0,
                (TerminatorKind::Drop {
                    place: __self_0,
                    target: __self_1,
                    unwind: __self_2,
                    replace: __self_3,
                    drop: __self_4,
                    async_fut: __self_5 }, TerminatorKind::Drop {
                    place: __arg1_0,
                    target: __arg1_1,
                    unwind: __arg1_2,
                    replace: __arg1_3,
                    drop: __arg1_4,
                    async_fut: __arg1_5 }) =>
                    __self_3 == __arg1_3 && __self_0 == __arg1_0 &&
                                    __self_1 == __arg1_1 && __self_2 == __arg1_2 &&
                            __self_4 == __arg1_4 && __self_5 == __arg1_5,
                (TerminatorKind::Call {
                    func: __self_0,
                    args: __self_1,
                    destination: __self_2,
                    target: __self_3,
                    unwind: __self_4,
                    call_source: __self_5,
                    fn_span: __self_6 }, TerminatorKind::Call {
                    func: __arg1_0,
                    args: __arg1_1,
                    destination: __arg1_2,
                    target: __arg1_3,
                    unwind: __arg1_4,
                    call_source: __arg1_5,
                    fn_span: __arg1_6 }) =>
                    __self_0 == __arg1_0 && __self_1 == __arg1_1 &&
                                        __self_2 == __arg1_2 && __self_3 == __arg1_3 &&
                                __self_4 == __arg1_4 && __self_5 == __arg1_5 &&
                        __self_6 == __arg1_6,
                (TerminatorKind::TailCall {
                    func: __self_0, args: __self_1, fn_span: __self_2 },
                    TerminatorKind::TailCall {
                    func: __arg1_0, args: __arg1_1, fn_span: __arg1_2 }) =>
                    __self_0 == __arg1_0 && __self_1 == __arg1_1 &&
                        __self_2 == __arg1_2,
                (TerminatorKind::Assert {
                    cond: __self_0,
                    expected: __self_1,
                    msg: __self_2,
                    target: __self_3,
                    unwind: __self_4 }, TerminatorKind::Assert {
                    cond: __arg1_0,
                    expected: __arg1_1,
                    msg: __arg1_2,
                    target: __arg1_3,
                    unwind: __arg1_4 }) =>
                    __self_1 == __arg1_1 && __self_0 == __arg1_0 &&
                                __self_2 == __arg1_2 && __self_3 == __arg1_3 &&
                        __self_4 == __arg1_4,
                (TerminatorKind::Yield {
                    value: __self_0,
                    resume: __self_1,
                    resume_arg: __self_2,
                    drop: __self_3 }, TerminatorKind::Yield {
                    value: __arg1_0,
                    resume: __arg1_1,
                    resume_arg: __arg1_2,
                    drop: __arg1_3 }) =>
                    __self_0 == __arg1_0 && __self_1 == __arg1_1 &&
                            __self_2 == __arg1_2 && __self_3 == __arg1_3,
                (TerminatorKind::FalseEdge {
                    real_target: __self_0, imaginary_target: __self_1 },
                    TerminatorKind::FalseEdge {
                    real_target: __arg1_0, imaginary_target: __arg1_1 }) =>
                    __self_0 == __arg1_0 && __self_1 == __arg1_1,
                (TerminatorKind::FalseUnwind {
                    real_target: __self_0, unwind: __self_1 },
                    TerminatorKind::FalseUnwind {
                    real_target: __arg1_0, unwind: __arg1_1 }) =>
                    __self_0 == __arg1_0 && __self_1 == __arg1_1,
                (TerminatorKind::InlineAsm {
                    asm_macro: __self_0,
                    template: __self_1,
                    operands: __self_2,
                    options: __self_3,
                    line_spans: __self_4,
                    targets: __self_5,
                    unwind: __self_6 }, TerminatorKind::InlineAsm {
                    asm_macro: __arg1_0,
                    template: __arg1_1,
                    operands: __arg1_2,
                    options: __arg1_3,
                    line_spans: __arg1_4,
                    targets: __arg1_5,
                    unwind: __arg1_6 }) =>
                    __self_0 == __arg1_0 && __self_1 == __arg1_1 &&
                                        __self_2 == __arg1_2 && __self_3 == __arg1_3 &&
                                __self_4 == __arg1_4 && __self_5 == __arg1_5 &&
                        __self_6 == __arg1_6,
                _ => true,
            }
    }
}PartialEq, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeFoldable<::rustc_middle::ty::TyCtxt<'tcx>>
            for TerminatorKind<'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 {
                        TerminatorKind::Goto { target: __binding_0 } => {
                            TerminatorKind::Goto {
                                target: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                            }
                        }
                        TerminatorKind::SwitchInt {
                            discr: __binding_0, targets: __binding_1 } => {
                            TerminatorKind::SwitchInt {
                                discr: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                targets: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?,
                            }
                        }
                        TerminatorKind::UnwindResume => {
                            TerminatorKind::UnwindResume
                        }
                        TerminatorKind::UnwindTerminate(__binding_0) => {
                            TerminatorKind::UnwindTerminate(::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?)
                        }
                        TerminatorKind::Return => { TerminatorKind::Return }
                        TerminatorKind::Unreachable => {
                            TerminatorKind::Unreachable
                        }
                        TerminatorKind::Drop {
                            place: __binding_0,
                            target: __binding_1,
                            unwind: __binding_2,
                            replace: __binding_3,
                            drop: __binding_4,
                            async_fut: __binding_5 } => {
                            TerminatorKind::Drop {
                                place: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                target: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?,
                                unwind: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_2,
                                        __folder)?,
                                replace: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_3,
                                        __folder)?,
                                drop: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_4,
                                        __folder)?,
                                async_fut: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_5,
                                        __folder)?,
                            }
                        }
                        TerminatorKind::Call {
                            func: __binding_0,
                            args: __binding_1,
                            destination: __binding_2,
                            target: __binding_3,
                            unwind: __binding_4,
                            call_source: __binding_5,
                            fn_span: __binding_6 } => {
                            TerminatorKind::Call {
                                func: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                args: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?,
                                destination: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_2,
                                        __folder)?,
                                target: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_3,
                                        __folder)?,
                                unwind: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_4,
                                        __folder)?,
                                call_source: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_5,
                                        __folder)?,
                                fn_span: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_6,
                                        __folder)?,
                            }
                        }
                        TerminatorKind::TailCall {
                            func: __binding_0, args: __binding_1, fn_span: __binding_2 }
                            => {
                            TerminatorKind::TailCall {
                                func: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                args: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?,
                                fn_span: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_2,
                                        __folder)?,
                            }
                        }
                        TerminatorKind::Assert {
                            cond: __binding_0,
                            expected: __binding_1,
                            msg: __binding_2,
                            target: __binding_3,
                            unwind: __binding_4 } => {
                            TerminatorKind::Assert {
                                cond: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                expected: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?,
                                msg: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_2,
                                        __folder)?,
                                target: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_3,
                                        __folder)?,
                                unwind: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_4,
                                        __folder)?,
                            }
                        }
                        TerminatorKind::Yield {
                            value: __binding_0,
                            resume: __binding_1,
                            resume_arg: __binding_2,
                            drop: __binding_3 } => {
                            TerminatorKind::Yield {
                                value: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                resume: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?,
                                resume_arg: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_2,
                                        __folder)?,
                                drop: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_3,
                                        __folder)?,
                            }
                        }
                        TerminatorKind::CoroutineDrop => {
                            TerminatorKind::CoroutineDrop
                        }
                        TerminatorKind::FalseEdge {
                            real_target: __binding_0, imaginary_target: __binding_1 } =>
                            {
                            TerminatorKind::FalseEdge {
                                real_target: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                imaginary_target: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?,
                            }
                        }
                        TerminatorKind::FalseUnwind {
                            real_target: __binding_0, unwind: __binding_1 } => {
                            TerminatorKind::FalseUnwind {
                                real_target: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                unwind: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?,
                            }
                        }
                        TerminatorKind::InlineAsm {
                            asm_macro: __binding_0,
                            template: __binding_1,
                            operands: __binding_2,
                            options: __binding_3,
                            line_spans: __binding_4,
                            targets: __binding_5,
                            unwind: __binding_6 } => {
                            TerminatorKind::InlineAsm {
                                asm_macro: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                template: __binding_1,
                                operands: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_2,
                                        __folder)?,
                                options: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_3,
                                        __folder)?,
                                line_spans: __binding_4,
                                targets: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_5,
                                        __folder)?,
                                unwind: ::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 {
                    TerminatorKind::Goto { target: __binding_0 } => {
                        TerminatorKind::Goto {
                            target: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                        }
                    }
                    TerminatorKind::SwitchInt {
                        discr: __binding_0, targets: __binding_1 } => {
                        TerminatorKind::SwitchInt {
                            discr: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            targets: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
                                __folder),
                        }
                    }
                    TerminatorKind::UnwindResume => {
                        TerminatorKind::UnwindResume
                    }
                    TerminatorKind::UnwindTerminate(__binding_0) => {
                        TerminatorKind::UnwindTerminate(::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder))
                    }
                    TerminatorKind::Return => { TerminatorKind::Return }
                    TerminatorKind::Unreachable => {
                        TerminatorKind::Unreachable
                    }
                    TerminatorKind::Drop {
                        place: __binding_0,
                        target: __binding_1,
                        unwind: __binding_2,
                        replace: __binding_3,
                        drop: __binding_4,
                        async_fut: __binding_5 } => {
                        TerminatorKind::Drop {
                            place: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            target: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
                                __folder),
                            unwind: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_2,
                                __folder),
                            replace: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_3,
                                __folder),
                            drop: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_4,
                                __folder),
                            async_fut: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_5,
                                __folder),
                        }
                    }
                    TerminatorKind::Call {
                        func: __binding_0,
                        args: __binding_1,
                        destination: __binding_2,
                        target: __binding_3,
                        unwind: __binding_4,
                        call_source: __binding_5,
                        fn_span: __binding_6 } => {
                        TerminatorKind::Call {
                            func: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            args: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
                                __folder),
                            destination: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_2,
                                __folder),
                            target: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_3,
                                __folder),
                            unwind: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_4,
                                __folder),
                            call_source: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_5,
                                __folder),
                            fn_span: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_6,
                                __folder),
                        }
                    }
                    TerminatorKind::TailCall {
                        func: __binding_0, args: __binding_1, fn_span: __binding_2 }
                        => {
                        TerminatorKind::TailCall {
                            func: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            args: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
                                __folder),
                            fn_span: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_2,
                                __folder),
                        }
                    }
                    TerminatorKind::Assert {
                        cond: __binding_0,
                        expected: __binding_1,
                        msg: __binding_2,
                        target: __binding_3,
                        unwind: __binding_4 } => {
                        TerminatorKind::Assert {
                            cond: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            expected: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
                                __folder),
                            msg: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_2,
                                __folder),
                            target: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_3,
                                __folder),
                            unwind: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_4,
                                __folder),
                        }
                    }
                    TerminatorKind::Yield {
                        value: __binding_0,
                        resume: __binding_1,
                        resume_arg: __binding_2,
                        drop: __binding_3 } => {
                        TerminatorKind::Yield {
                            value: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            resume: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
                                __folder),
                            resume_arg: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_2,
                                __folder),
                            drop: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_3,
                                __folder),
                        }
                    }
                    TerminatorKind::CoroutineDrop => {
                        TerminatorKind::CoroutineDrop
                    }
                    TerminatorKind::FalseEdge {
                        real_target: __binding_0, imaginary_target: __binding_1 } =>
                        {
                        TerminatorKind::FalseEdge {
                            real_target: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            imaginary_target: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
                                __folder),
                        }
                    }
                    TerminatorKind::FalseUnwind {
                        real_target: __binding_0, unwind: __binding_1 } => {
                        TerminatorKind::FalseUnwind {
                            real_target: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            unwind: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
                                __folder),
                        }
                    }
                    TerminatorKind::InlineAsm {
                        asm_macro: __binding_0,
                        template: __binding_1,
                        operands: __binding_2,
                        options: __binding_3,
                        line_spans: __binding_4,
                        targets: __binding_5,
                        unwind: __binding_6 } => {
                        TerminatorKind::InlineAsm {
                            asm_macro: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            template: __binding_1,
                            operands: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_2,
                                __folder),
                            options: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_3,
                                __folder),
                            line_spans: __binding_4,
                            targets: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_5,
                                __folder),
                            unwind: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_6,
                                __folder),
                        }
                    }
                }
            }
        }
    };TypeFoldable, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeVisitable<::rustc_middle::ty::TyCtxt<'tcx>>
            for TerminatorKind<'tcx> {
            fn visit_with<__V: ::rustc_middle::ty::TypeVisitor<::rustc_middle::ty::TyCtxt<'tcx>>>(&self,
                __visitor: &mut __V) -> __V::Result {
                match *self {
                    TerminatorKind::Goto { target: 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);
                                }
                            }
                        }
                    }
                    TerminatorKind::SwitchInt {
                        discr: ref __binding_0, targets: 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);
                                }
                            }
                        }
                    }
                    TerminatorKind::UnwindResume => {}
                    TerminatorKind::UnwindTerminate(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);
                                }
                            }
                        }
                    }
                    TerminatorKind::Return => {}
                    TerminatorKind::Unreachable => {}
                    TerminatorKind::Drop {
                        place: ref __binding_0,
                        target: ref __binding_1,
                        unwind: ref __binding_2,
                        replace: ref __binding_3,
                        drop: ref __binding_4,
                        async_fut: ref __binding_5 } => {
                        {
                            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);
                                }
                            }
                        }
                    }
                    TerminatorKind::Call {
                        func: ref __binding_0,
                        args: ref __binding_1,
                        destination: ref __binding_2,
                        target: ref __binding_3,
                        unwind: ref __binding_4,
                        call_source: ref __binding_5,
                        fn_span: 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);
                                }
                            }
                        }
                    }
                    TerminatorKind::TailCall {
                        func: ref __binding_0,
                        args: ref __binding_1,
                        fn_span: ref __binding_2 } => {
                        {
                            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);
                                }
                            }
                        }
                    }
                    TerminatorKind::Assert {
                        cond: ref __binding_0,
                        expected: ref __binding_1,
                        msg: ref __binding_2,
                        target: ref __binding_3,
                        unwind: 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);
                                }
                            }
                        }
                    }
                    TerminatorKind::Yield {
                        value: ref __binding_0,
                        resume: ref __binding_1,
                        resume_arg: ref __binding_2,
                        drop: 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);
                                }
                            }
                        }
                    }
                    TerminatorKind::CoroutineDrop => {}
                    TerminatorKind::FalseEdge {
                        real_target: ref __binding_0,
                        imaginary_target: 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);
                                }
                            }
                        }
                    }
                    TerminatorKind::FalseUnwind {
                        real_target: ref __binding_0, unwind: 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);
                                }
                            }
                        }
                    }
                    TerminatorKind::InlineAsm {
                        asm_macro: ref __binding_0,
                        operands: ref __binding_2,
                        options: ref __binding_3,
                        targets: ref __binding_5,
                        unwind: 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_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_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)]
703pub enum TerminatorKind<'tcx> {
704    /// Block has one successor; we continue execution there.
705    Goto { target: BasicBlock },
706
707    /// Switches based on the computed value.
708    ///
709    /// First, evaluates the `discr` operand. The type of the operand must be a signed or unsigned
710    /// integer, char, or bool, and must match the given type. Then, if the list of switch targets
711    /// contains the computed value, continues execution at the associated basic block. Otherwise,
712    /// continues execution at the "otherwise" basic block.
713    ///
714    /// Target values may not appear more than once.
715    SwitchInt {
716        /// The discriminant value being tested.
717        discr: Operand<'tcx>,
718        targets: SwitchTargets,
719    },
720
721    /// Indicates that the landing pad is finished and that the process should continue unwinding.
722    ///
723    /// Like a return, this marks the end of this invocation of the function.
724    ///
725    /// Only permitted in cleanup blocks. `Resume` is not permitted with `-C unwind=abort` after
726    /// deaggregation runs.
727    UnwindResume,
728
729    /// Indicates that the landing pad is finished and that the process should terminate.
730    ///
731    /// Used to prevent unwinding for foreign items or with `-C unwind=abort`. Only permitted in
732    /// cleanup blocks.
733    UnwindTerminate(UnwindTerminateReason),
734
735    /// Returns from the function.
736    ///
737    /// Like function calls, the exact semantics of returns in Rust are unclear. Returning very
738    /// likely at least assigns the value currently in the return place (`_0`) to the place
739    /// specified in the associated `Call` terminator in the calling function, as if assigned via
740    /// `dest = move _0`. It might additionally do other things, like have side-effects in the
741    /// aliasing model.
742    ///
743    /// If the body is a coroutine body, this has slightly different semantics; it instead causes a
744    /// `CoroutineState::Returned(_0)` to be created (as if by an `Aggregate` rvalue) and assigned
745    /// to the return place.
746    Return,
747
748    /// Indicates a terminator that can never be reached.
749    ///
750    /// Executing this terminator is UB.
751    Unreachable,
752
753    /// The behavior of this statement differs significantly before and after drop elaboration.
754    ///
755    /// After drop elaboration: `Drop` terminators are a complete nop for types that have no drop
756    /// glue. For other types, `Drop` terminators behave exactly like a call to
757    /// `core::mem::drop_in_place` with a pointer to the given place.
758    ///
759    /// `Drop` before drop elaboration is a *conditional* execution of the drop glue. Specifically,
760    /// the `Drop` will be executed if...
761    ///
762    /// **Needs clarification**: End of that sentence. This in effect should document the exact
763    /// behavior of drop elaboration. The following sounds vaguely right, but I'm not quite sure:
764    ///
765    /// > The drop glue is executed if, among all statements executed within this `Body`, an assignment to
766    /// > the place or one of its "parents" occurred more recently than a move out of it. This does not
767    /// > consider indirect assignments.
768    ///
769    /// The `replace` flag indicates whether this terminator was created as part of an assignment.
770    /// This should only be used for diagnostic purposes, and does not have any operational
771    /// meaning.
772    ///
773    /// Async drop processing:
774    /// In compiler/rustc_mir_build/src/build/scope.rs we detect possible async drop:
775    ///   drop of object with `needs_async_drop`.
776    /// Async drop later, in StateTransform pass, may be expanded into additional yield-point
777    ///   for poll-loop of async drop future.
778    /// So we need prepared 'drop' target block in the similar way as for `Yield` terminator
779    ///   (see `drops.build_mir::<CoroutineDrop>` in scopes.rs).
780    /// In compiler/rustc_mir_transform/src/elaborate_drops.rs for object implementing `AsyncDrop` trait
781    ///   we need to prepare async drop feature - resolve `AsyncDrop::drop` and codegen call.
782    /// `async_fut` is set to the corresponding local.
783    /// For coroutine drop we don't need this logic because coroutine drop works with the same
784    ///   layout object as coroutine itself. So `async_fut` will be `None` for coroutine drop.
785    /// Both `drop` and `async_fut` fields are only used in compiler/rustc_mir_transform/src/coroutine.rs,
786    ///   StateTransform pass. In `expand_async_drops` async drops are expanded
787    ///   into one or two yield points with poll ready/pending switch.
788    /// When a coroutine has any internal async drop, the coroutine drop function will be async
789    ///   (generated by `create_coroutine_drop_shim_async`, not `create_coroutine_drop_shim`).
790    Drop {
791        place: Place<'tcx>,
792        target: BasicBlock,
793        unwind: UnwindAction,
794        replace: bool,
795        /// Cleanup to be done if the coroutine is dropped at this suspend point (for async drop).
796        drop: Option<BasicBlock>,
797        /// Prepared async future local (for async drop)
798        async_fut: Option<Local>,
799    },
800
801    /// Roughly speaking, evaluates the `func` operand and the arguments, and starts execution of
802    /// the referred to function. The operand types must match the argument types of the function.
803    /// The return place type must match the return type. The type of the `func` operand must be
804    /// callable, meaning either a function pointer, a function type, or a closure type.
805    ///
806    /// **Needs clarification**: The exact semantics of this. Current backends rely on `move`
807    /// operands not aliasing the return place. It is unclear how this is justified in MIR, see
808    /// [#71117].
809    ///
810    /// [#71117]: https://github.com/rust-lang/rust/issues/71117
811    Call {
812        /// The function that’s being called.
813        func: Operand<'tcx>,
814        /// Arguments the function is called with.
815        /// These are owned by the callee, which is free to modify them.
816        /// This allows the memory occupied by "by-value" arguments to be
817        /// reused across function calls without duplicating the contents.
818        /// The span for each arg is also included
819        /// (e.g. `a` and `b` in `x.foo(a, b)`).
820        args: Box<[Spanned<Operand<'tcx>>]>,
821        /// Where the returned value will be written
822        destination: Place<'tcx>,
823        /// Where to go after this call returns. If none, the call necessarily diverges.
824        target: Option<BasicBlock>,
825        /// Action to be taken if the call unwinds.
826        unwind: UnwindAction,
827        /// Where this call came from in HIR/THIR.
828        call_source: CallSource,
829        /// This `Span` is the span of the function, without the dot and receiver
830        /// e.g. `foo(a, b)` in `x.foo(a, b)`
831        fn_span: Span,
832    },
833
834    /// Tail call.
835    ///
836    /// Roughly speaking this is a chimera of [`Call`] and [`Return`], with some caveats.
837    /// Semantically tail calls consists of two actions:
838    /// - pop of the current stack frame
839    /// - a call to the `func`, with the return address of the **current** caller
840    ///   - so that a `return` inside `func` returns to the caller of the caller
841    ///     of the function that is currently being executed
842    ///
843    /// Note that in difference with [`Call`] this is missing
844    /// - `destination` (because it's always the return place)
845    /// - `target` (because it's always taken from the current stack frame)
846    /// - `unwind` (because it's always taken from the current stack frame)
847    ///
848    /// [`Call`]: TerminatorKind::Call
849    /// [`Return`]: TerminatorKind::Return
850    TailCall {
851        /// The function that’s being called.
852        func: Operand<'tcx>,
853        /// Arguments the function is called with.
854        /// These are owned by the callee, which is free to modify them.
855        /// This allows the memory occupied by "by-value" arguments to be
856        /// reused across function calls without duplicating the contents.
857        args: Box<[Spanned<Operand<'tcx>>]>,
858        // FIXME(explicit_tail_calls): should we have the span for `become`? is this span accurate? do we need it?
859        /// This `Span` is the span of the function, without the dot and receiver
860        /// (e.g. `foo(a, b)` in `x.foo(a, b)`
861        fn_span: Span,
862    },
863
864    /// Evaluates the operand, which must have type `bool`. If it is not equal to `expected`,
865    /// initiates a panic. Initiating a panic corresponds to a `Call` terminator with some
866    /// unspecified constant as the function to call, all the operands stored in the `AssertMessage`
867    /// as parameters, and `None` for the destination. Keep in mind that the `cleanup` path is not
868    /// necessarily executed even in the case of a panic, for example in `-C panic=abort`. If the
869    /// assertion does not fail, execution continues at the specified basic block.
870    ///
871    /// When overflow checking is disabled and this is run-time MIR (as opposed to compile-time MIR
872    /// that is used for CTFE), the following variants of this terminator behave as `goto target`:
873    /// - `OverflowNeg(..)`,
874    /// - `Overflow(op, ..)` if op is add, sub, mul, shl, shr, but NOT div or rem.
875    Assert {
876        cond: Operand<'tcx>,
877        expected: bool,
878        msg: Box<AssertMessage<'tcx>>,
879        target: BasicBlock,
880        unwind: UnwindAction,
881    },
882
883    /// Marks a suspend point.
884    ///
885    /// Like `Return` terminators in coroutine bodies, this computes `value` and then a
886    /// `CoroutineState::Yielded(value)` as if by `Aggregate` rvalue. That value is then assigned to
887    /// the return place of the function calling this one, and execution continues in the calling
888    /// function. When next invoked with the same first argument, execution of this function
889    /// continues at the `resume` basic block, with the second argument written to the `resume_arg`
890    /// place. If the coroutine is dropped before then, the `drop` basic block is invoked.
891    ///
892    /// Note that coroutines can be (unstably) cloned under certain conditions, which means that
893    /// this terminator can **return multiple times**! MIR optimizations that reorder code into
894    /// different basic blocks needs to be aware of that.
895    /// See <https://github.com/rust-lang/rust/issues/95360>.
896    ///
897    /// Not permitted in bodies that are not coroutine bodies, or after coroutine lowering.
898    ///
899    /// **Needs clarification**: What about the evaluation order of the `resume_arg` and `value`?
900    Yield {
901        /// The value to return.
902        value: Operand<'tcx>,
903        /// Where to resume to.
904        resume: BasicBlock,
905        /// The place to store the resume argument in.
906        resume_arg: Place<'tcx>,
907        /// Cleanup to be done if the coroutine is dropped at this suspend point.
908        drop: Option<BasicBlock>,
909    },
910
911    /// Indicates the end of dropping a coroutine.
912    ///
913    /// Semantically just a `return` (from the coroutines drop glue). Only permitted in the same situations
914    /// as `yield`.
915    ///
916    /// **Needs clarification**: Is that even correct? The coroutine drop code is always confusing
917    /// to me, because it's not even really in the current body.
918    ///
919    /// **Needs clarification**: Are there type system constraints on these terminators? Should
920    /// there be a "block type" like `cleanup` blocks for them?
921    CoroutineDrop,
922
923    /// A block where control flow only ever takes one real path, but borrowck needs to be more
924    /// conservative.
925    ///
926    /// At runtime this is semantically just a goto.
927    ///
928    /// Disallowed after drop elaboration.
929    FalseEdge {
930        /// The target normal control flow will take.
931        real_target: BasicBlock,
932        /// A block control flow could conceptually jump to, but won't in
933        /// practice.
934        imaginary_target: BasicBlock,
935    },
936
937    /// A terminator for blocks that only take one path in reality, but where we reserve the right
938    /// to unwind in borrowck, even if it won't happen in practice. This can arise in infinite loops
939    /// with no function calls for example.
940    ///
941    /// At runtime this is semantically just a goto.
942    ///
943    /// Disallowed after drop elaboration.
944    FalseUnwind {
945        /// The target normal control flow will take.
946        real_target: BasicBlock,
947        /// The imaginary cleanup block link. This particular path will never be taken
948        /// in practice, but in order to avoid fragility we want to always
949        /// consider it in borrowck. We don't want to accept programs which
950        /// pass borrowck only when `panic=abort` or some assertions are disabled
951        /// due to release vs. debug mode builds.
952        unwind: UnwindAction,
953    },
954
955    /// Block ends with an inline assembly block. This is a terminator since
956    /// inline assembly is allowed to diverge.
957    InlineAsm {
958        /// Macro used to create this inline asm: one of `asm!` or `naked_asm!`
959        asm_macro: InlineAsmMacro,
960
961        /// The template for the inline assembly, with placeholders.
962        #[type_foldable(identity)]
963        #[type_visitable(ignore)]
964        template: &'tcx [InlineAsmTemplatePiece],
965
966        /// The operands for the inline assembly, as `Operand`s or `Place`s.
967        operands: Box<[InlineAsmOperand<'tcx>]>,
968
969        /// Miscellaneous options for the inline assembly.
970        options: InlineAsmOptions,
971
972        /// Source spans for each line of the inline assembly code. These are
973        /// used to map assembler errors back to the line in the source code.
974        #[type_foldable(identity)]
975        #[type_visitable(ignore)]
976        line_spans: &'tcx [Span],
977
978        /// Valid targets for the inline assembly.
979        /// The first element is the fallthrough destination, unless
980        /// asm_macro == InlineAsmMacro::NakedAsm or InlineAsmOptions::NORETURN is set.
981        targets: Box<[BasicBlock]>,
982
983        /// Action to be taken if the inline assembly unwinds. This is present
984        /// if and only if InlineAsmOptions::MAY_UNWIND is set.
985        unwind: UnwindAction,
986    },
987}
988
989#[derive(
990    #[automatically_derived]
impl ::core::clone::Clone for BackwardIncompatibleDropReason {
    #[inline]
    fn clone(&self) -> BackwardIncompatibleDropReason {
        BackwardIncompatibleDropReason::Edition2024
    }
}Clone,
991    #[automatically_derived]
impl ::core::fmt::Debug for BackwardIncompatibleDropReason {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f, "Edition2024")
    }
}Debug,
992    const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for
            BackwardIncompatibleDropReason {
            fn encode(&self, __encoder: &mut __E) {
                match *self {
                    BackwardIncompatibleDropReason::Edition2024 => {}
                }
            }
        }
    };TyEncodable,
993    const _: () =
    {
        impl<'tcx, __D: ::rustc_middle::ty::codec::TyDecoder<'tcx>>
            ::rustc_serialize::Decodable<__D> for
            BackwardIncompatibleDropReason {
            fn decode(__decoder: &mut __D) -> Self {
                BackwardIncompatibleDropReason::Edition2024
            }
        }
    };TyDecodable,
994    #[automatically_derived]
impl ::core::hash::Hash for BackwardIncompatibleDropReason {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) -> () {}
}Hash,
995    const _: () =
    {
        impl<'__ctx>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_query_system::ich::StableHashingContext<'__ctx>>
            for BackwardIncompatibleDropReason {
            #[inline]
            fn hash_stable(&self,
                __hcx:
                    &mut ::rustc_query_system::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                ::std::mem::discriminant(self).hash_stable(__hcx, __hasher);
                match *self {
                    BackwardIncompatibleDropReason::Edition2024 => {}
                }
            }
        }
    };HashStable,
996    #[automatically_derived]
impl ::core::cmp::PartialEq for BackwardIncompatibleDropReason {
    #[inline]
    fn eq(&self, other: &BackwardIncompatibleDropReason) -> bool { true }
}PartialEq,
997    const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeFoldable<::rustc_middle::ty::TyCtxt<'tcx>>
            for BackwardIncompatibleDropReason {
            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 {
                        BackwardIncompatibleDropReason::Edition2024 => {
                            BackwardIncompatibleDropReason::Edition2024
                        }
                    })
            }
            fn fold_with<__F: ::rustc_middle::ty::TypeFolder<::rustc_middle::ty::TyCtxt<'tcx>>>(self,
                __folder: &mut __F) -> Self {
                match self {
                    BackwardIncompatibleDropReason::Edition2024 => {
                        BackwardIncompatibleDropReason::Edition2024
                    }
                }
            }
        }
    };TypeFoldable,
998    const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeVisitable<::rustc_middle::ty::TyCtxt<'tcx>>
            for BackwardIncompatibleDropReason {
            fn visit_with<__V: ::rustc_middle::ty::TypeVisitor<::rustc_middle::ty::TyCtxt<'tcx>>>(&self,
                __visitor: &mut __V) -> __V::Result {
                match *self {
                    BackwardIncompatibleDropReason::Edition2024 => {}
                }
                <__V::Result as ::rustc_middle::ty::VisitorResult>::output()
            }
        }
    };TypeVisitable
999)]
1000pub enum BackwardIncompatibleDropReason {
1001    Edition2024,
1002}
1003
1004#[derive(#[automatically_derived]
impl ::core::fmt::Debug for SwitchTargets {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field2_finish(f, "SwitchTargets",
            "values", &self.values, "targets", &&self.targets)
    }
}Debug, #[automatically_derived]
impl ::core::clone::Clone for SwitchTargets {
    #[inline]
    fn clone(&self) -> SwitchTargets {
        SwitchTargets {
            values: ::core::clone::Clone::clone(&self.values),
            targets: ::core::clone::Clone::clone(&self.targets),
        }
    }
}Clone, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for SwitchTargets {
            fn encode(&self, __encoder: &mut __E) {
                match *self {
                    SwitchTargets {
                        values: ref __binding_0, targets: 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 SwitchTargets {
            fn decode(__decoder: &mut __D) -> Self {
                SwitchTargets {
                    values: ::rustc_serialize::Decodable::decode(__decoder),
                    targets: ::rustc_serialize::Decodable::decode(__decoder),
                }
            }
        }
    };TyDecodable, #[automatically_derived]
impl ::core::hash::Hash for SwitchTargets {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) -> () {
        ::core::hash::Hash::hash(&self.values, state);
        ::core::hash::Hash::hash(&self.targets, state)
    }
}Hash, const _: () =
    {
        impl<'__ctx>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_query_system::ich::StableHashingContext<'__ctx>>
            for SwitchTargets {
            #[inline]
            fn hash_stable(&self,
                __hcx:
                    &mut ::rustc_query_system::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                match *self {
                    SwitchTargets {
                        values: ref __binding_0, targets: ref __binding_1 } => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                    }
                }
            }
        }
    };HashStable, #[automatically_derived]
impl ::core::cmp::PartialEq for SwitchTargets {
    #[inline]
    fn eq(&self, other: &SwitchTargets) -> bool {
        self.values == other.values && self.targets == other.targets
    }
}PartialEq)]
1005pub struct SwitchTargets {
1006    /// Possible values. For each value, the location to branch to is found in
1007    /// the corresponding element in the `targets` vector.
1008    pub(super) values: SmallVec<[Pu128; 1]>,
1009
1010    /// Possible branch targets. The last element of this vector is used for
1011    /// the "otherwise" branch, so `targets.len() == values.len() + 1` always
1012    /// holds.
1013    //
1014    // Note: This invariant is non-obvious and easy to violate. This would be a
1015    // more rigorous representation:
1016    //
1017    //   normal: SmallVec<[(Pu128, BasicBlock); 1]>,
1018    //   otherwise: BasicBlock,
1019    //
1020    // But it's important to have the targets in a sliceable type, because
1021    // target slices show up elsewhere. E.g. `TerminatorKind::InlineAsm` has a
1022    // boxed slice, and `TerminatorKind::FalseEdge` has a single target that
1023    // can be converted to a slice with `slice::from_ref`.
1024    //
1025    // Why does this matter? In functions like `TerminatorKind::successors` we
1026    // return `impl Iterator` and a non-slice-of-targets representation here
1027    // causes problems because multiple different concrete iterator types would
1028    // be involved and we would need a boxed trait object, which requires an
1029    // allocation, which is expensive if done frequently.
1030    pub(super) targets: SmallVec<[BasicBlock; 2]>,
1031}
1032
1033/// Action to be taken when a stack unwind happens.
1034#[derive(#[automatically_derived]
impl ::core::marker::Copy for UnwindAction { }Copy, #[automatically_derived]
impl ::core::clone::Clone for UnwindAction {
    #[inline]
    fn clone(&self) -> UnwindAction {
        let _: ::core::clone::AssertParamIsClone<UnwindTerminateReason>;
        let _: ::core::clone::AssertParamIsClone<BasicBlock>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for UnwindAction {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            UnwindAction::Continue =>
                ::core::fmt::Formatter::write_str(f, "Continue"),
            UnwindAction::Unreachable =>
                ::core::fmt::Formatter::write_str(f, "Unreachable"),
            UnwindAction::Terminate(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "Terminate", &__self_0),
            UnwindAction::Cleanup(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "Cleanup", &__self_0),
        }
    }
}Debug, #[automatically_derived]
impl ::core::cmp::PartialEq for UnwindAction {
    #[inline]
    fn eq(&self, other: &UnwindAction) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr &&
            match (self, other) {
                (UnwindAction::Terminate(__self_0),
                    UnwindAction::Terminate(__arg1_0)) => __self_0 == __arg1_0,
                (UnwindAction::Cleanup(__self_0),
                    UnwindAction::Cleanup(__arg1_0)) => __self_0 == __arg1_0,
                _ => true,
            }
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for UnwindAction {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_receiver_is_total_eq(&self) -> () {
        let _: ::core::cmp::AssertParamIsEq<UnwindTerminateReason>;
        let _: ::core::cmp::AssertParamIsEq<BasicBlock>;
    }
}Eq, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for UnwindAction {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        UnwindAction::Continue => { 0usize }
                        UnwindAction::Unreachable => { 1usize }
                        UnwindAction::Terminate(ref __binding_0) => { 2usize }
                        UnwindAction::Cleanup(ref __binding_0) => { 3usize }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    UnwindAction::Continue => {}
                    UnwindAction::Unreachable => {}
                    UnwindAction::Terminate(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    UnwindAction::Cleanup(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 UnwindAction {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => { UnwindAction::Continue }
                    1usize => { UnwindAction::Unreachable }
                    2usize => {
                        UnwindAction::Terminate(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    3usize => {
                        UnwindAction::Cleanup(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `UnwindAction`, expected 0..4, actual {0}",
                                n));
                    }
                }
            }
        }
    };TyDecodable, #[automatically_derived]
impl ::core::hash::Hash for UnwindAction {
    #[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 {
            UnwindAction::Terminate(__self_0) =>
                ::core::hash::Hash::hash(__self_0, state),
            UnwindAction::Cleanup(__self_0) =>
                ::core::hash::Hash::hash(__self_0, state),
            _ => {}
        }
    }
}Hash, const _: () =
    {
        impl<'__ctx>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_query_system::ich::StableHashingContext<'__ctx>>
            for UnwindAction {
            #[inline]
            fn hash_stable(&self,
                __hcx:
                    &mut ::rustc_query_system::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                ::std::mem::discriminant(self).hash_stable(__hcx, __hasher);
                match *self {
                    UnwindAction::Continue => {}
                    UnwindAction::Unreachable => {}
                    UnwindAction::Terminate(ref __binding_0) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                    UnwindAction::Cleanup(ref __binding_0) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                }
            }
        }
    };HashStable)]
1035#[derive(const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeFoldable<::rustc_middle::ty::TyCtxt<'tcx>>
            for UnwindAction {
            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 {
                        UnwindAction::Continue => { UnwindAction::Continue }
                        UnwindAction::Unreachable => { UnwindAction::Unreachable }
                        UnwindAction::Terminate(__binding_0) => {
                            UnwindAction::Terminate(::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?)
                        }
                        UnwindAction::Cleanup(__binding_0) => {
                            UnwindAction::Cleanup(::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 {
                    UnwindAction::Continue => { UnwindAction::Continue }
                    UnwindAction::Unreachable => { UnwindAction::Unreachable }
                    UnwindAction::Terminate(__binding_0) => {
                        UnwindAction::Terminate(::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder))
                    }
                    UnwindAction::Cleanup(__binding_0) => {
                        UnwindAction::Cleanup(::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder))
                    }
                }
            }
        }
    };TypeFoldable, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeVisitable<::rustc_middle::ty::TyCtxt<'tcx>>
            for UnwindAction {
            fn visit_with<__V: ::rustc_middle::ty::TypeVisitor<::rustc_middle::ty::TyCtxt<'tcx>>>(&self,
                __visitor: &mut __V) -> __V::Result {
                match *self {
                    UnwindAction::Continue => {}
                    UnwindAction::Unreachable => {}
                    UnwindAction::Terminate(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);
                                }
                            }
                        }
                    }
                    UnwindAction::Cleanup(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)]
1036pub enum UnwindAction {
1037    /// No action is to be taken. Continue unwinding.
1038    ///
1039    /// This is similar to `Cleanup(bb)` where `bb` does nothing but `Resume`, but they are not
1040    /// equivalent, as presence of `Cleanup(_)` will make a frame non-POF.
1041    Continue,
1042    /// Triggers undefined behavior if unwind happens.
1043    Unreachable,
1044    /// Terminates the execution if unwind happens.
1045    ///
1046    /// Depending on the platform and situation this may cause a non-unwindable panic or abort.
1047    Terminate(UnwindTerminateReason),
1048    /// Cleanups to be done.
1049    Cleanup(BasicBlock),
1050}
1051
1052/// The reason we are terminating the process during unwinding.
1053#[derive(#[automatically_derived]
impl ::core::marker::Copy for UnwindTerminateReason { }Copy, #[automatically_derived]
impl ::core::clone::Clone for UnwindTerminateReason {
    #[inline]
    fn clone(&self) -> UnwindTerminateReason { *self }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for UnwindTerminateReason {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                UnwindTerminateReason::Abi => "Abi",
                UnwindTerminateReason::InCleanup => "InCleanup",
            })
    }
}Debug, #[automatically_derived]
impl ::core::cmp::PartialEq for UnwindTerminateReason {
    #[inline]
    fn eq(&self, other: &UnwindTerminateReason) -> 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 UnwindTerminateReason {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_receiver_is_total_eq(&self) -> () {}
}Eq, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for UnwindTerminateReason {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        UnwindTerminateReason::Abi => { 0usize }
                        UnwindTerminateReason::InCleanup => { 1usize }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    UnwindTerminateReason::Abi => {}
                    UnwindTerminateReason::InCleanup => {}
                }
            }
        }
    };TyEncodable, const _: () =
    {
        impl<'tcx, __D: ::rustc_middle::ty::codec::TyDecoder<'tcx>>
            ::rustc_serialize::Decodable<__D> for UnwindTerminateReason {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => { UnwindTerminateReason::Abi }
                    1usize => { UnwindTerminateReason::InCleanup }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `UnwindTerminateReason`, expected 0..2, actual {0}",
                                n));
                    }
                }
            }
        }
    };TyDecodable, #[automatically_derived]
impl ::core::hash::Hash for UnwindTerminateReason {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) -> () {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        ::core::hash::Hash::hash(&__self_discr, state)
    }
}Hash, const _: () =
    {
        impl<'__ctx>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_query_system::ich::StableHashingContext<'__ctx>>
            for UnwindTerminateReason {
            #[inline]
            fn hash_stable(&self,
                __hcx:
                    &mut ::rustc_query_system::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                ::std::mem::discriminant(self).hash_stable(__hcx, __hasher);
                match *self {
                    UnwindTerminateReason::Abi => {}
                    UnwindTerminateReason::InCleanup => {}
                }
            }
        }
    };HashStable)]
1054#[derive(const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeFoldable<::rustc_middle::ty::TyCtxt<'tcx>>
            for UnwindTerminateReason {
            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 {
                        UnwindTerminateReason::Abi => { UnwindTerminateReason::Abi }
                        UnwindTerminateReason::InCleanup => {
                            UnwindTerminateReason::InCleanup
                        }
                    })
            }
            fn fold_with<__F: ::rustc_middle::ty::TypeFolder<::rustc_middle::ty::TyCtxt<'tcx>>>(self,
                __folder: &mut __F) -> Self {
                match self {
                    UnwindTerminateReason::Abi => { UnwindTerminateReason::Abi }
                    UnwindTerminateReason::InCleanup => {
                        UnwindTerminateReason::InCleanup
                    }
                }
            }
        }
    };TypeFoldable, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeVisitable<::rustc_middle::ty::TyCtxt<'tcx>>
            for UnwindTerminateReason {
            fn visit_with<__V: ::rustc_middle::ty::TypeVisitor<::rustc_middle::ty::TyCtxt<'tcx>>>(&self,
                __visitor: &mut __V) -> __V::Result {
                match *self {
                    UnwindTerminateReason::Abi => {}
                    UnwindTerminateReason::InCleanup => {}
                }
                <__V::Result as ::rustc_middle::ty::VisitorResult>::output()
            }
        }
    };TypeVisitable)]
1055pub enum UnwindTerminateReason {
1056    /// Unwinding is just not possible given the ABI of this function.
1057    Abi,
1058    /// We were already cleaning up for an ongoing unwind, and a *second*, *nested* unwind was
1059    /// triggered by the drop glue.
1060    InCleanup,
1061}
1062
1063/// Information about an assertion failure.
1064#[derive(#[automatically_derived]
impl<O: ::core::clone::Clone> ::core::clone::Clone for AssertKind<O> {
    #[inline]
    fn clone(&self) -> AssertKind<O> {
        match self {
            AssertKind::BoundsCheck { len: __self_0, index: __self_1 } =>
                AssertKind::BoundsCheck {
                    len: ::core::clone::Clone::clone(__self_0),
                    index: ::core::clone::Clone::clone(__self_1),
                },
            AssertKind::Overflow(__self_0, __self_1, __self_2) =>
                AssertKind::Overflow(::core::clone::Clone::clone(__self_0),
                    ::core::clone::Clone::clone(__self_1),
                    ::core::clone::Clone::clone(__self_2)),
            AssertKind::OverflowNeg(__self_0) =>
                AssertKind::OverflowNeg(::core::clone::Clone::clone(__self_0)),
            AssertKind::DivisionByZero(__self_0) =>
                AssertKind::DivisionByZero(::core::clone::Clone::clone(__self_0)),
            AssertKind::RemainderByZero(__self_0) =>
                AssertKind::RemainderByZero(::core::clone::Clone::clone(__self_0)),
            AssertKind::ResumedAfterReturn(__self_0) =>
                AssertKind::ResumedAfterReturn(::core::clone::Clone::clone(__self_0)),
            AssertKind::ResumedAfterPanic(__self_0) =>
                AssertKind::ResumedAfterPanic(::core::clone::Clone::clone(__self_0)),
            AssertKind::ResumedAfterDrop(__self_0) =>
                AssertKind::ResumedAfterDrop(::core::clone::Clone::clone(__self_0)),
            AssertKind::MisalignedPointerDereference {
                required: __self_0, found: __self_1 } =>
                AssertKind::MisalignedPointerDereference {
                    required: ::core::clone::Clone::clone(__self_0),
                    found: ::core::clone::Clone::clone(__self_1),
                },
            AssertKind::NullPointerDereference =>
                AssertKind::NullPointerDereference,
            AssertKind::InvalidEnumConstruction(__self_0) =>
                AssertKind::InvalidEnumConstruction(::core::clone::Clone::clone(__self_0)),
        }
    }
}Clone, #[automatically_derived]
impl<O: ::core::hash::Hash> ::core::hash::Hash for AssertKind<O> {
    #[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 {
            AssertKind::BoundsCheck { len: __self_0, index: __self_1 } => {
                ::core::hash::Hash::hash(__self_0, state);
                ::core::hash::Hash::hash(__self_1, state)
            }
            AssertKind::Overflow(__self_0, __self_1, __self_2) => {
                ::core::hash::Hash::hash(__self_0, state);
                ::core::hash::Hash::hash(__self_1, state);
                ::core::hash::Hash::hash(__self_2, state)
            }
            AssertKind::OverflowNeg(__self_0) =>
                ::core::hash::Hash::hash(__self_0, state),
            AssertKind::DivisionByZero(__self_0) =>
                ::core::hash::Hash::hash(__self_0, state),
            AssertKind::RemainderByZero(__self_0) =>
                ::core::hash::Hash::hash(__self_0, state),
            AssertKind::ResumedAfterReturn(__self_0) =>
                ::core::hash::Hash::hash(__self_0, state),
            AssertKind::ResumedAfterPanic(__self_0) =>
                ::core::hash::Hash::hash(__self_0, state),
            AssertKind::ResumedAfterDrop(__self_0) =>
                ::core::hash::Hash::hash(__self_0, state),
            AssertKind::MisalignedPointerDereference {
                required: __self_0, found: __self_1 } => {
                ::core::hash::Hash::hash(__self_0, state);
                ::core::hash::Hash::hash(__self_1, state)
            }
            AssertKind::InvalidEnumConstruction(__self_0) =>
                ::core::hash::Hash::hash(__self_0, state),
            _ => {}
        }
    }
}Hash, const _: () =
    {
        impl<'__ctx, O>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_query_system::ich::StableHashingContext<'__ctx>>
            for AssertKind<O> where
            O: ::rustc_data_structures::stable_hasher::HashStable<::rustc_query_system::ich::StableHashingContext<'__ctx>>
            {
            #[inline]
            fn hash_stable(&self,
                __hcx:
                    &mut ::rustc_query_system::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                ::std::mem::discriminant(self).hash_stable(__hcx, __hasher);
                match *self {
                    AssertKind::BoundsCheck {
                        len: ref __binding_0, index: ref __binding_1 } => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                    }
                    AssertKind::Overflow(ref __binding_0, ref __binding_1,
                        ref __binding_2) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                        { __binding_2.hash_stable(__hcx, __hasher); }
                    }
                    AssertKind::OverflowNeg(ref __binding_0) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                    AssertKind::DivisionByZero(ref __binding_0) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                    AssertKind::RemainderByZero(ref __binding_0) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                    AssertKind::ResumedAfterReturn(ref __binding_0) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                    AssertKind::ResumedAfterPanic(ref __binding_0) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                    AssertKind::ResumedAfterDrop(ref __binding_0) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                    AssertKind::MisalignedPointerDereference {
                        required: ref __binding_0, found: ref __binding_1 } => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                    }
                    AssertKind::NullPointerDereference => {}
                    AssertKind::InvalidEnumConstruction(ref __binding_0) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                }
            }
        }
    };HashStable, #[automatically_derived]
impl<O: ::core::cmp::PartialEq> ::core::cmp::PartialEq for AssertKind<O> {
    #[inline]
    fn eq(&self, other: &AssertKind<O>) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr &&
            match (self, other) {
                (AssertKind::BoundsCheck { len: __self_0, index: __self_1 },
                    AssertKind::BoundsCheck { len: __arg1_0, index: __arg1_1 })
                    => __self_0 == __arg1_0 && __self_1 == __arg1_1,
                (AssertKind::Overflow(__self_0, __self_1, __self_2),
                    AssertKind::Overflow(__arg1_0, __arg1_1, __arg1_2)) =>
                    __self_0 == __arg1_0 && __self_1 == __arg1_1 &&
                        __self_2 == __arg1_2,
                (AssertKind::OverflowNeg(__self_0),
                    AssertKind::OverflowNeg(__arg1_0)) => __self_0 == __arg1_0,
                (AssertKind::DivisionByZero(__self_0),
                    AssertKind::DivisionByZero(__arg1_0)) =>
                    __self_0 == __arg1_0,
                (AssertKind::RemainderByZero(__self_0),
                    AssertKind::RemainderByZero(__arg1_0)) =>
                    __self_0 == __arg1_0,
                (AssertKind::ResumedAfterReturn(__self_0),
                    AssertKind::ResumedAfterReturn(__arg1_0)) =>
                    __self_0 == __arg1_0,
                (AssertKind::ResumedAfterPanic(__self_0),
                    AssertKind::ResumedAfterPanic(__arg1_0)) =>
                    __self_0 == __arg1_0,
                (AssertKind::ResumedAfterDrop(__self_0),
                    AssertKind::ResumedAfterDrop(__arg1_0)) =>
                    __self_0 == __arg1_0,
                (AssertKind::MisalignedPointerDereference {
                    required: __self_0, found: __self_1 },
                    AssertKind::MisalignedPointerDereference {
                    required: __arg1_0, found: __arg1_1 }) =>
                    __self_0 == __arg1_0 && __self_1 == __arg1_1,
                (AssertKind::InvalidEnumConstruction(__self_0),
                    AssertKind::InvalidEnumConstruction(__arg1_0)) =>
                    __self_0 == __arg1_0,
                _ => true,
            }
    }
}PartialEq, #[automatically_derived]
impl<O: ::core::fmt::Debug> ::core::fmt::Debug for AssertKind<O> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            AssertKind::BoundsCheck { len: __self_0, index: __self_1 } =>
                ::core::fmt::Formatter::debug_struct_field2_finish(f,
                    "BoundsCheck", "len", __self_0, "index", &__self_1),
            AssertKind::Overflow(__self_0, __self_1, __self_2) =>
                ::core::fmt::Formatter::debug_tuple_field3_finish(f,
                    "Overflow", __self_0, __self_1, &__self_2),
            AssertKind::OverflowNeg(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "OverflowNeg", &__self_0),
            AssertKind::DivisionByZero(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "DivisionByZero", &__self_0),
            AssertKind::RemainderByZero(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "RemainderByZero", &__self_0),
            AssertKind::ResumedAfterReturn(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "ResumedAfterReturn", &__self_0),
            AssertKind::ResumedAfterPanic(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "ResumedAfterPanic", &__self_0),
            AssertKind::ResumedAfterDrop(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "ResumedAfterDrop", &__self_0),
            AssertKind::MisalignedPointerDereference {
                required: __self_0, found: __self_1 } =>
                ::core::fmt::Formatter::debug_struct_field2_finish(f,
                    "MisalignedPointerDereference", "required", __self_0,
                    "found", &__self_1),
            AssertKind::NullPointerDereference =>
                ::core::fmt::Formatter::write_str(f,
                    "NullPointerDereference"),
            AssertKind::InvalidEnumConstruction(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "InvalidEnumConstruction", &__self_0),
        }
    }
}Debug)]
1065#[derive(const _: () =
    {
        impl<'tcx, O, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for AssertKind<O> where
            O: ::rustc_serialize::Encodable<__E> {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        AssertKind::BoundsCheck {
                            len: ref __binding_0, index: ref __binding_1 } => {
                            0usize
                        }
                        AssertKind::Overflow(ref __binding_0, ref __binding_1,
                            ref __binding_2) => {
                            1usize
                        }
                        AssertKind::OverflowNeg(ref __binding_0) => { 2usize }
                        AssertKind::DivisionByZero(ref __binding_0) => { 3usize }
                        AssertKind::RemainderByZero(ref __binding_0) => { 4usize }
                        AssertKind::ResumedAfterReturn(ref __binding_0) => {
                            5usize
                        }
                        AssertKind::ResumedAfterPanic(ref __binding_0) => { 6usize }
                        AssertKind::ResumedAfterDrop(ref __binding_0) => { 7usize }
                        AssertKind::MisalignedPointerDereference {
                            required: ref __binding_0, found: ref __binding_1 } => {
                            8usize
                        }
                        AssertKind::NullPointerDereference => { 9usize }
                        AssertKind::InvalidEnumConstruction(ref __binding_0) => {
                            10usize
                        }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    AssertKind::BoundsCheck {
                        len: ref __binding_0, index: ref __binding_1 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                    }
                    AssertKind::Overflow(ref __binding_0, ref __binding_1,
                        ref __binding_2) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_2,
                            __encoder);
                    }
                    AssertKind::OverflowNeg(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    AssertKind::DivisionByZero(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    AssertKind::RemainderByZero(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    AssertKind::ResumedAfterReturn(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    AssertKind::ResumedAfterPanic(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    AssertKind::ResumedAfterDrop(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    AssertKind::MisalignedPointerDereference {
                        required: ref __binding_0, found: ref __binding_1 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                    }
                    AssertKind::NullPointerDereference => {}
                    AssertKind::InvalidEnumConstruction(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                }
            }
        }
    };TyEncodable, const _: () =
    {
        impl<'tcx, O, __D: ::rustc_middle::ty::codec::TyDecoder<'tcx>>
            ::rustc_serialize::Decodable<__D> for AssertKind<O> where
            O: ::rustc_serialize::Decodable<__D> {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => {
                        AssertKind::BoundsCheck {
                            len: ::rustc_serialize::Decodable::decode(__decoder),
                            index: ::rustc_serialize::Decodable::decode(__decoder),
                        }
                    }
                    1usize => {
                        AssertKind::Overflow(::rustc_serialize::Decodable::decode(__decoder),
                            ::rustc_serialize::Decodable::decode(__decoder),
                            ::rustc_serialize::Decodable::decode(__decoder))
                    }
                    2usize => {
                        AssertKind::OverflowNeg(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    3usize => {
                        AssertKind::DivisionByZero(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    4usize => {
                        AssertKind::RemainderByZero(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    5usize => {
                        AssertKind::ResumedAfterReturn(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    6usize => {
                        AssertKind::ResumedAfterPanic(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    7usize => {
                        AssertKind::ResumedAfterDrop(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    8usize => {
                        AssertKind::MisalignedPointerDereference {
                            required: ::rustc_serialize::Decodable::decode(__decoder),
                            found: ::rustc_serialize::Decodable::decode(__decoder),
                        }
                    }
                    9usize => { AssertKind::NullPointerDereference }
                    10usize => {
                        AssertKind::InvalidEnumConstruction(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `AssertKind`, expected 0..11, actual {0}",
                                n));
                    }
                }
            }
        }
    };TyDecodable, const _: () =
    {
        impl<'tcx, O>
            ::rustc_middle::ty::TypeFoldable<::rustc_middle::ty::TyCtxt<'tcx>>
            for AssertKind<O> where
            O: ::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 {
                        AssertKind::BoundsCheck {
                            len: __binding_0, index: __binding_1 } => {
                            AssertKind::BoundsCheck {
                                len: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                index: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?,
                            }
                        }
                        AssertKind::Overflow(__binding_0, __binding_1, __binding_2)
                            => {
                            AssertKind::Overflow(::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?,
                                ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_2,
                                        __folder)?)
                        }
                        AssertKind::OverflowNeg(__binding_0) => {
                            AssertKind::OverflowNeg(::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?)
                        }
                        AssertKind::DivisionByZero(__binding_0) => {
                            AssertKind::DivisionByZero(::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?)
                        }
                        AssertKind::RemainderByZero(__binding_0) => {
                            AssertKind::RemainderByZero(::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?)
                        }
                        AssertKind::ResumedAfterReturn(__binding_0) => {
                            AssertKind::ResumedAfterReturn(::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?)
                        }
                        AssertKind::ResumedAfterPanic(__binding_0) => {
                            AssertKind::ResumedAfterPanic(::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?)
                        }
                        AssertKind::ResumedAfterDrop(__binding_0) => {
                            AssertKind::ResumedAfterDrop(::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?)
                        }
                        AssertKind::MisalignedPointerDereference {
                            required: __binding_0, found: __binding_1 } => {
                            AssertKind::MisalignedPointerDereference {
                                required: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                found: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?,
                            }
                        }
                        AssertKind::NullPointerDereference => {
                            AssertKind::NullPointerDereference
                        }
                        AssertKind::InvalidEnumConstruction(__binding_0) => {
                            AssertKind::InvalidEnumConstruction(::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 {
                    AssertKind::BoundsCheck {
                        len: __binding_0, index: __binding_1 } => {
                        AssertKind::BoundsCheck {
                            len: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            index: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
                                __folder),
                        }
                    }
                    AssertKind::Overflow(__binding_0, __binding_1, __binding_2)
                        => {
                        AssertKind::Overflow(::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
                                __folder),
                            ::rustc_middle::ty::TypeFoldable::fold_with(__binding_2,
                                __folder))
                    }
                    AssertKind::OverflowNeg(__binding_0) => {
                        AssertKind::OverflowNeg(::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder))
                    }
                    AssertKind::DivisionByZero(__binding_0) => {
                        AssertKind::DivisionByZero(::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder))
                    }
                    AssertKind::RemainderByZero(__binding_0) => {
                        AssertKind::RemainderByZero(::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder))
                    }
                    AssertKind::ResumedAfterReturn(__binding_0) => {
                        AssertKind::ResumedAfterReturn(::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder))
                    }
                    AssertKind::ResumedAfterPanic(__binding_0) => {
                        AssertKind::ResumedAfterPanic(::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder))
                    }
                    AssertKind::ResumedAfterDrop(__binding_0) => {
                        AssertKind::ResumedAfterDrop(::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder))
                    }
                    AssertKind::MisalignedPointerDereference {
                        required: __binding_0, found: __binding_1 } => {
                        AssertKind::MisalignedPointerDereference {
                            required: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            found: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
                                __folder),
                        }
                    }
                    AssertKind::NullPointerDereference => {
                        AssertKind::NullPointerDereference
                    }
                    AssertKind::InvalidEnumConstruction(__binding_0) => {
                        AssertKind::InvalidEnumConstruction(::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder))
                    }
                }
            }
        }
    };TypeFoldable, const _: () =
    {
        impl<'tcx, O>
            ::rustc_middle::ty::TypeVisitable<::rustc_middle::ty::TyCtxt<'tcx>>
            for AssertKind<O> where
            O: ::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 {
                    AssertKind::BoundsCheck {
                        len: ref __binding_0, index: 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);
                                }
                            }
                        }
                    }
                    AssertKind::Overflow(ref __binding_0, ref __binding_1,
                        ref __binding_2) => {
                        {
                            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);
                                }
                            }
                        }
                    }
                    AssertKind::OverflowNeg(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);
                                }
                            }
                        }
                    }
                    AssertKind::DivisionByZero(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);
                                }
                            }
                        }
                    }
                    AssertKind::RemainderByZero(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);
                                }
                            }
                        }
                    }
                    AssertKind::ResumedAfterReturn(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);
                                }
                            }
                        }
                    }
                    AssertKind::ResumedAfterPanic(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);
                                }
                            }
                        }
                    }
                    AssertKind::ResumedAfterDrop(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);
                                }
                            }
                        }
                    }
                    AssertKind::MisalignedPointerDereference {
                        required: ref __binding_0, found: 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);
                                }
                            }
                        }
                    }
                    AssertKind::NullPointerDereference => {}
                    AssertKind::InvalidEnumConstruction(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)]
1066pub enum AssertKind<O> {
1067    BoundsCheck { len: O, index: O },
1068    Overflow(BinOp, O, O),
1069    OverflowNeg(O),
1070    DivisionByZero(O),
1071    RemainderByZero(O),
1072    ResumedAfterReturn(CoroutineKind),
1073    ResumedAfterPanic(CoroutineKind),
1074    ResumedAfterDrop(CoroutineKind),
1075    MisalignedPointerDereference { required: O, found: O },
1076    NullPointerDereference,
1077    InvalidEnumConstruction(O),
1078}
1079
1080#[derive(#[automatically_derived]
impl<'tcx> ::core::clone::Clone for InlineAsmOperand<'tcx> {
    #[inline]
    fn clone(&self) -> InlineAsmOperand<'tcx> {
        match self {
            InlineAsmOperand::In { reg: __self_0, value: __self_1 } =>
                InlineAsmOperand::In {
                    reg: ::core::clone::Clone::clone(__self_0),
                    value: ::core::clone::Clone::clone(__self_1),
                },
            InlineAsmOperand::Out {
                reg: __self_0, late: __self_1, place: __self_2 } =>
                InlineAsmOperand::Out {
                    reg: ::core::clone::Clone::clone(__self_0),
                    late: ::core::clone::Clone::clone(__self_1),
                    place: ::core::clone::Clone::clone(__self_2),
                },
            InlineAsmOperand::InOut {
                reg: __self_0,
                late: __self_1,
                in_value: __self_2,
                out_place: __self_3 } =>
                InlineAsmOperand::InOut {
                    reg: ::core::clone::Clone::clone(__self_0),
                    late: ::core::clone::Clone::clone(__self_1),
                    in_value: ::core::clone::Clone::clone(__self_2),
                    out_place: ::core::clone::Clone::clone(__self_3),
                },
            InlineAsmOperand::Const { value: __self_0 } =>
                InlineAsmOperand::Const {
                    value: ::core::clone::Clone::clone(__self_0),
                },
            InlineAsmOperand::SymFn { value: __self_0 } =>
                InlineAsmOperand::SymFn {
                    value: ::core::clone::Clone::clone(__self_0),
                },
            InlineAsmOperand::SymStatic { def_id: __self_0 } =>
                InlineAsmOperand::SymStatic {
                    def_id: ::core::clone::Clone::clone(__self_0),
                },
            InlineAsmOperand::Label { target_index: __self_0 } =>
                InlineAsmOperand::Label {
                    target_index: ::core::clone::Clone::clone(__self_0),
                },
        }
    }
}Clone, #[automatically_derived]
impl<'tcx> ::core::fmt::Debug for InlineAsmOperand<'tcx> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            InlineAsmOperand::In { reg: __self_0, value: __self_1 } =>
                ::core::fmt::Formatter::debug_struct_field2_finish(f, "In",
                    "reg", __self_0, "value", &__self_1),
            InlineAsmOperand::Out {
                reg: __self_0, late: __self_1, place: __self_2 } =>
                ::core::fmt::Formatter::debug_struct_field3_finish(f, "Out",
                    "reg", __self_0, "late", __self_1, "place", &__self_2),
            InlineAsmOperand::InOut {
                reg: __self_0,
                late: __self_1,
                in_value: __self_2,
                out_place: __self_3 } =>
                ::core::fmt::Formatter::debug_struct_field4_finish(f, "InOut",
                    "reg", __self_0, "late", __self_1, "in_value", __self_2,
                    "out_place", &__self_3),
            InlineAsmOperand::Const { value: __self_0 } =>
                ::core::fmt::Formatter::debug_struct_field1_finish(f, "Const",
                    "value", &__self_0),
            InlineAsmOperand::SymFn { value: __self_0 } =>
                ::core::fmt::Formatter::debug_struct_field1_finish(f, "SymFn",
                    "value", &__self_0),
            InlineAsmOperand::SymStatic { def_id: __self_0 } =>
                ::core::fmt::Formatter::debug_struct_field1_finish(f,
                    "SymStatic", "def_id", &__self_0),
            InlineAsmOperand::Label { target_index: __self_0 } =>
                ::core::fmt::Formatter::debug_struct_field1_finish(f, "Label",
                    "target_index", &__self_0),
        }
    }
}Debug, #[automatically_derived]
impl<'tcx> ::core::cmp::PartialEq for InlineAsmOperand<'tcx> {
    #[inline]
    fn eq(&self, other: &InlineAsmOperand<'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) {
                (InlineAsmOperand::In { reg: __self_0, value: __self_1 },
                    InlineAsmOperand::In { reg: __arg1_0, value: __arg1_1 }) =>
                    __self_0 == __arg1_0 && __self_1 == __arg1_1,
                (InlineAsmOperand::Out {
                    reg: __self_0, late: __self_1, place: __self_2 },
                    InlineAsmOperand::Out {
                    reg: __arg1_0, late: __arg1_1, place: __arg1_2 }) =>
                    __self_1 == __arg1_1 && __self_0 == __arg1_0 &&
                        __self_2 == __arg1_2,
                (InlineAsmOperand::InOut {
                    reg: __self_0,
                    late: __self_1,
                    in_value: __self_2,
                    out_place: __self_3 }, InlineAsmOperand::InOut {
                    reg: __arg1_0,
                    late: __arg1_1,
                    in_value: __arg1_2,
                    out_place: __arg1_3 }) =>
                    __self_1 == __arg1_1 && __self_0 == __arg1_0 &&
                            __self_2 == __arg1_2 && __self_3 == __arg1_3,
                (InlineAsmOperand::Const { value: __self_0 },
                    InlineAsmOperand::Const { value: __arg1_0 }) =>
                    __self_0 == __arg1_0,
                (InlineAsmOperand::SymFn { value: __self_0 },
                    InlineAsmOperand::SymFn { value: __arg1_0 }) =>
                    __self_0 == __arg1_0,
                (InlineAsmOperand::SymStatic { def_id: __self_0 },
                    InlineAsmOperand::SymStatic { def_id: __arg1_0 }) =>
                    __self_0 == __arg1_0,
                (InlineAsmOperand::Label { target_index: __self_0 },
                    InlineAsmOperand::Label { target_index: __arg1_0 }) =>
                    __self_0 == __arg1_0,
                _ => unsafe { ::core::intrinsics::unreachable() }
            }
    }
}PartialEq, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for InlineAsmOperand<'tcx> {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        InlineAsmOperand::In {
                            reg: ref __binding_0, value: ref __binding_1 } => {
                            0usize
                        }
                        InlineAsmOperand::Out {
                            reg: ref __binding_0,
                            late: ref __binding_1,
                            place: ref __binding_2 } => {
                            1usize
                        }
                        InlineAsmOperand::InOut {
                            reg: ref __binding_0,
                            late: ref __binding_1,
                            in_value: ref __binding_2,
                            out_place: ref __binding_3 } => {
                            2usize
                        }
                        InlineAsmOperand::Const { value: ref __binding_0 } => {
                            3usize
                        }
                        InlineAsmOperand::SymFn { value: ref __binding_0 } => {
                            4usize
                        }
                        InlineAsmOperand::SymStatic { def_id: ref __binding_0 } => {
                            5usize
                        }
                        InlineAsmOperand::Label { target_index: ref __binding_0 } =>
                            {
                            6usize
                        }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    InlineAsmOperand::In {
                        reg: ref __binding_0, value: ref __binding_1 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                    }
                    InlineAsmOperand::Out {
                        reg: ref __binding_0,
                        late: ref __binding_1,
                        place: ref __binding_2 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_2,
                            __encoder);
                    }
                    InlineAsmOperand::InOut {
                        reg: ref __binding_0,
                        late: ref __binding_1,
                        in_value: ref __binding_2,
                        out_place: 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);
                    }
                    InlineAsmOperand::Const { value: ref __binding_0 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    InlineAsmOperand::SymFn { value: ref __binding_0 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    InlineAsmOperand::SymStatic { def_id: ref __binding_0 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    InlineAsmOperand::Label { target_index: 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 InlineAsmOperand<'tcx> {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => {
                        InlineAsmOperand::In {
                            reg: ::rustc_serialize::Decodable::decode(__decoder),
                            value: ::rustc_serialize::Decodable::decode(__decoder),
                        }
                    }
                    1usize => {
                        InlineAsmOperand::Out {
                            reg: ::rustc_serialize::Decodable::decode(__decoder),
                            late: ::rustc_serialize::Decodable::decode(__decoder),
                            place: ::rustc_serialize::Decodable::decode(__decoder),
                        }
                    }
                    2usize => {
                        InlineAsmOperand::InOut {
                            reg: ::rustc_serialize::Decodable::decode(__decoder),
                            late: ::rustc_serialize::Decodable::decode(__decoder),
                            in_value: ::rustc_serialize::Decodable::decode(__decoder),
                            out_place: ::rustc_serialize::Decodable::decode(__decoder),
                        }
                    }
                    3usize => {
                        InlineAsmOperand::Const {
                            value: ::rustc_serialize::Decodable::decode(__decoder),
                        }
                    }
                    4usize => {
                        InlineAsmOperand::SymFn {
                            value: ::rustc_serialize::Decodable::decode(__decoder),
                        }
                    }
                    5usize => {
                        InlineAsmOperand::SymStatic {
                            def_id: ::rustc_serialize::Decodable::decode(__decoder),
                        }
                    }
                    6usize => {
                        InlineAsmOperand::Label {
                            target_index: ::rustc_serialize::Decodable::decode(__decoder),
                        }
                    }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `InlineAsmOperand`, expected 0..7, actual {0}",
                                n));
                    }
                }
            }
        }
    };TyDecodable, #[automatically_derived]
impl<'tcx> ::core::hash::Hash for InlineAsmOperand<'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 {
            InlineAsmOperand::In { reg: __self_0, value: __self_1 } => {
                ::core::hash::Hash::hash(__self_0, state);
                ::core::hash::Hash::hash(__self_1, state)
            }
            InlineAsmOperand::Out {
                reg: __self_0, late: __self_1, place: __self_2 } => {
                ::core::hash::Hash::hash(__self_0, state);
                ::core::hash::Hash::hash(__self_1, state);
                ::core::hash::Hash::hash(__self_2, state)
            }
            InlineAsmOperand::InOut {
                reg: __self_0,
                late: __self_1,
                in_value: __self_2,
                out_place: __self_3 } => {
                ::core::hash::Hash::hash(__self_0, state);
                ::core::hash::Hash::hash(__self_1, state);
                ::core::hash::Hash::hash(__self_2, state);
                ::core::hash::Hash::hash(__self_3, state)
            }
            InlineAsmOperand::Const { value: __self_0 } =>
                ::core::hash::Hash::hash(__self_0, state),
            InlineAsmOperand::SymFn { value: __self_0 } =>
                ::core::hash::Hash::hash(__self_0, state),
            InlineAsmOperand::SymStatic { def_id: __self_0 } =>
                ::core::hash::Hash::hash(__self_0, state),
            InlineAsmOperand::Label { target_index: __self_0 } =>
                ::core::hash::Hash::hash(__self_0, state),
        }
    }
}Hash, const _: () =
    {
        impl<'tcx, '__ctx>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_query_system::ich::StableHashingContext<'__ctx>>
            for InlineAsmOperand<'tcx> {
            #[inline]
            fn hash_stable(&self,
                __hcx:
                    &mut ::rustc_query_system::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                ::std::mem::discriminant(self).hash_stable(__hcx, __hasher);
                match *self {
                    InlineAsmOperand::In {
                        reg: ref __binding_0, value: ref __binding_1 } => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                    }
                    InlineAsmOperand::Out {
                        reg: ref __binding_0,
                        late: ref __binding_1,
                        place: ref __binding_2 } => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                        { __binding_2.hash_stable(__hcx, __hasher); }
                    }
                    InlineAsmOperand::InOut {
                        reg: ref __binding_0,
                        late: ref __binding_1,
                        in_value: ref __binding_2,
                        out_place: ref __binding_3 } => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                        { __binding_2.hash_stable(__hcx, __hasher); }
                        { __binding_3.hash_stable(__hcx, __hasher); }
                    }
                    InlineAsmOperand::Const { value: ref __binding_0 } => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                    InlineAsmOperand::SymFn { value: ref __binding_0 } => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                    InlineAsmOperand::SymStatic { def_id: ref __binding_0 } => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                    InlineAsmOperand::Label { target_index: ref __binding_0 } =>
                        {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                }
            }
        }
    };HashStable)]
1081#[derive(const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeFoldable<::rustc_middle::ty::TyCtxt<'tcx>>
            for InlineAsmOperand<'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 {
                        InlineAsmOperand::In { reg: __binding_0, value: __binding_1
                            } => {
                            InlineAsmOperand::In {
                                reg: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                value: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?,
                            }
                        }
                        InlineAsmOperand::Out {
                            reg: __binding_0, late: __binding_1, place: __binding_2 } =>
                            {
                            InlineAsmOperand::Out {
                                reg: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                late: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?,
                                place: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_2,
                                        __folder)?,
                            }
                        }
                        InlineAsmOperand::InOut {
                            reg: __binding_0,
                            late: __binding_1,
                            in_value: __binding_2,
                            out_place: __binding_3 } => {
                            InlineAsmOperand::InOut {
                                reg: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                late: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?,
                                in_value: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_2,
                                        __folder)?,
                                out_place: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_3,
                                        __folder)?,
                            }
                        }
                        InlineAsmOperand::Const { value: __binding_0 } => {
                            InlineAsmOperand::Const {
                                value: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                            }
                        }
                        InlineAsmOperand::SymFn { value: __binding_0 } => {
                            InlineAsmOperand::SymFn {
                                value: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                            }
                        }
                        InlineAsmOperand::SymStatic { def_id: __binding_0 } => {
                            InlineAsmOperand::SymStatic {
                                def_id: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                            }
                        }
                        InlineAsmOperand::Label { target_index: __binding_0 } => {
                            InlineAsmOperand::Label {
                                target_index: ::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 {
                    InlineAsmOperand::In { reg: __binding_0, value: __binding_1
                        } => {
                        InlineAsmOperand::In {
                            reg: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            value: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
                                __folder),
                        }
                    }
                    InlineAsmOperand::Out {
                        reg: __binding_0, late: __binding_1, place: __binding_2 } =>
                        {
                        InlineAsmOperand::Out {
                            reg: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            late: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
                                __folder),
                            place: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_2,
                                __folder),
                        }
                    }
                    InlineAsmOperand::InOut {
                        reg: __binding_0,
                        late: __binding_1,
                        in_value: __binding_2,
                        out_place: __binding_3 } => {
                        InlineAsmOperand::InOut {
                            reg: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            late: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
                                __folder),
                            in_value: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_2,
                                __folder),
                            out_place: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_3,
                                __folder),
                        }
                    }
                    InlineAsmOperand::Const { value: __binding_0 } => {
                        InlineAsmOperand::Const {
                            value: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                        }
                    }
                    InlineAsmOperand::SymFn { value: __binding_0 } => {
                        InlineAsmOperand::SymFn {
                            value: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                        }
                    }
                    InlineAsmOperand::SymStatic { def_id: __binding_0 } => {
                        InlineAsmOperand::SymStatic {
                            def_id: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                        }
                    }
                    InlineAsmOperand::Label { target_index: __binding_0 } => {
                        InlineAsmOperand::Label {
                            target_index: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                        }
                    }
                }
            }
        }
    };TypeFoldable, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeVisitable<::rustc_middle::ty::TyCtxt<'tcx>>
            for InlineAsmOperand<'tcx> {
            fn visit_with<__V: ::rustc_middle::ty::TypeVisitor<::rustc_middle::ty::TyCtxt<'tcx>>>(&self,
                __visitor: &mut __V) -> __V::Result {
                match *self {
                    InlineAsmOperand::In {
                        reg: ref __binding_0, value: 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);
                                }
                            }
                        }
                    }
                    InlineAsmOperand::Out {
                        reg: ref __binding_0,
                        late: ref __binding_1,
                        place: ref __binding_2 } => {
                        {
                            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);
                                }
                            }
                        }
                    }
                    InlineAsmOperand::InOut {
                        reg: ref __binding_0,
                        late: ref __binding_1,
                        in_value: ref __binding_2,
                        out_place: 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);
                                }
                            }
                        }
                    }
                    InlineAsmOperand::Const { value: 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);
                                }
                            }
                        }
                    }
                    InlineAsmOperand::SymFn { value: 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);
                                }
                            }
                        }
                    }
                    InlineAsmOperand::SymStatic { 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);
                                }
                            }
                        }
                    }
                    InlineAsmOperand::Label { target_index: 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)]
1082pub enum InlineAsmOperand<'tcx> {
1083    In {
1084        reg: InlineAsmRegOrRegClass,
1085        value: Operand<'tcx>,
1086    },
1087    Out {
1088        reg: InlineAsmRegOrRegClass,
1089        late: bool,
1090        place: Option<Place<'tcx>>,
1091    },
1092    InOut {
1093        reg: InlineAsmRegOrRegClass,
1094        late: bool,
1095        in_value: Operand<'tcx>,
1096        out_place: Option<Place<'tcx>>,
1097    },
1098    Const {
1099        value: Box<ConstOperand<'tcx>>,
1100    },
1101    SymFn {
1102        value: Box<ConstOperand<'tcx>>,
1103    },
1104    SymStatic {
1105        def_id: DefId,
1106    },
1107    Label {
1108        /// This represents the index into the `targets` array in `TerminatorKind::InlineAsm`.
1109        target_index: usize,
1110    },
1111}
1112
1113/// Type for MIR `Assert` terminator error messages.
1114pub type AssertMessage<'tcx> = AssertKind<Operand<'tcx>>;
1115
1116///////////////////////////////////////////////////////////////////////////
1117// Places
1118
1119/// Places roughly correspond to a "location in memory." Places in MIR are the same mathematical
1120/// object as places in Rust. This of course means that what exactly they are is undecided and part
1121/// of the Rust memory model. However, they will likely contain at least the following pieces of
1122/// information in some form:
1123///
1124///  1. The address in memory that the place refers to.
1125///  2. The provenance with which the place is being accessed.
1126///  3. The type of the place and an optional variant index. See [`PlaceTy`][super::PlaceTy].
1127///  4. Optionally, some metadata. This exists if and only if the type of the place is not `Sized`.
1128///
1129/// We'll give a description below of how all pieces of the place except for the provenance are
1130/// calculated. We cannot give a description of the provenance, because that is part of the
1131/// undecided aliasing model - we only include it here at all to acknowledge its existence.
1132///
1133/// Each local naturally corresponds to the place `Place { local, projection: [] }`. This place has
1134/// the address of the local's allocation and the type of the local.
1135///
1136/// For places that are not locals, ie they have a non-empty list of projections, we define the
1137/// values as a function of the parent place, that is the place with its last [`ProjectionElem`]
1138/// stripped. The way this is computed of course depends on the kind of that last projection
1139/// element:
1140///
1141///  - [`Downcast`](ProjectionElem::Downcast): This projection sets the place's variant index to the
1142///    given one, and makes no other changes. A `Downcast` projection must always be followed
1143///    immediately by a `Field` projection.
1144///  - [`Field`](ProjectionElem::Field): `Field` projections take their parent place and create a
1145///    place referring to one of the fields of the type. The resulting address is the parent
1146///    address, plus the offset of the field. The type becomes the type of the field. If the parent
1147///    was unsized and so had metadata associated with it, then the metadata is retained if the
1148///    field is unsized and thrown out if it is sized.
1149///
1150///    These projections are only legal for tuples, ADTs, closures, and coroutines. If the ADT or
1151///    coroutine has more than one variant, the parent place's variant index must be set, indicating
1152///    which variant is being used. If it has just one variant, the variant index may or may not be
1153///    included - the single possible variant is inferred if it is not included.
1154///  - [`OpaqueCast`](ProjectionElem::OpaqueCast): This projection changes the place's type to the
1155///    given one, and makes no other changes. A `OpaqueCast` projection on any type other than an
1156///    opaque type from the current crate is not well-formed.
1157///  - [`ConstantIndex`](ProjectionElem::ConstantIndex): Computes an offset in units of `T` into the
1158///    place as described in the documentation for the `ProjectionElem`. The resulting address is
1159///    the parent's address plus that offset, and the type is `T`. This is only legal if the parent
1160///    place has type `[T;  N]` or `[T]` (*not* `&[T]`). Since such a `T` is always sized, any
1161///    resulting metadata is thrown out.
1162///  - [`Subslice`](ProjectionElem::Subslice): This projection calculates an offset and a new
1163///    address in a similar manner as `ConstantIndex`. It is also only legal on `[T; N]` and `[T]`.
1164///    However, this yields a `Place` of type `[T]`, and additionally sets the metadata to be the
1165///    length of the subslice.
1166///  - [`Index`](ProjectionElem::Index): Like `ConstantIndex`, only legal on `[T; N]` or `[T]`.
1167///    However, `Index` additionally takes a local from which the value of the index is computed at
1168///    runtime. Computing the value of the index involves interpreting the `Local` as a
1169///    `Place { local, projection: [] }`, and then computing its value as if done via
1170///    [`Operand::Copy`]. The array/slice is then indexed with the resulting value. The local must
1171///    have type `usize`.
1172///  - [`Deref`](ProjectionElem::Deref): Derefs are the last type of projection, and the most
1173///    complicated. They are only legal on parent places that are references, pointers, or `Box`. A
1174///    `Deref` projection begins by loading a value from the parent place, as if by
1175///    [`Operand::Copy`]. It then dereferences the resulting pointer, creating a place of the
1176///    pointee's type. The resulting address is the address that was stored in the pointer. If the
1177///    pointee type is unsized, the pointer additionally stored the value of the metadata.
1178///
1179/// The "validity invariant" of places is the same as that of raw pointers, meaning that e.g.
1180/// `*ptr` on a dangling or unaligned pointer is never UB. (Later doing a load/store on that place
1181/// or turning it into a reference can be UB though!) The only ways for a place computation can
1182/// cause UB are:
1183/// - On a `Deref` projection, we do an actual load of the inner place, with all the usual
1184///   consequences (the inner place must be based on an aligned pointer, it must point to allocated
1185///   memory, the aliasig model must allow reads, this must not be a data race).
1186/// - For the projections that perform pointer arithmetic, the offset must in-bounds of an
1187///   allocation (i.e., the preconditions of `ptr::offset` must be met).
1188#[derive(#[automatically_derived]
impl<'tcx> ::core::marker::Copy for Place<'tcx> { }Copy, #[automatically_derived]
impl<'tcx> ::core::clone::Clone for Place<'tcx> {
    #[inline]
    fn clone(&self) -> Place<'tcx> {
        let _: ::core::clone::AssertParamIsClone<Local>;
        let _: ::core::clone::AssertParamIsClone<&'tcx List<PlaceElem<'tcx>>>;
        *self
    }
}Clone, #[automatically_derived]
impl<'tcx> ::core::cmp::PartialEq for Place<'tcx> {
    #[inline]
    fn eq(&self, other: &Place<'tcx>) -> bool {
        self.local == other.local && self.projection == other.projection
    }
}PartialEq, #[automatically_derived]
impl<'tcx> ::core::cmp::Eq for Place<'tcx> {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_receiver_is_total_eq(&self) -> () {
        let _: ::core::cmp::AssertParamIsEq<Local>;
        let _: ::core::cmp::AssertParamIsEq<&'tcx List<PlaceElem<'tcx>>>;
    }
}Eq, #[automatically_derived]
impl<'tcx> ::core::hash::Hash for Place<'tcx> {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) -> () {
        ::core::hash::Hash::hash(&self.local, state);
        ::core::hash::Hash::hash(&self.projection, state)
    }
}Hash, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for Place<'tcx> {
            fn encode(&self, __encoder: &mut __E) {
                match *self {
                    Place { local: ref __binding_0, projection: __binding_1 } =>
                        {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                    }
                }
            }
        }
    };TyEncodable, const _: () =
    {
        impl<'tcx, '__ctx>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_query_system::ich::StableHashingContext<'__ctx>>
            for Place<'tcx> {
            #[inline]
            fn hash_stable(&self,
                __hcx:
                    &mut ::rustc_query_system::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                match *self {
                    Place { local: ref __binding_0, projection: ref __binding_1
                        } => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                    }
                }
            }
        }
    };HashStable, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeFoldable<::rustc_middle::ty::TyCtxt<'tcx>>
            for Place<'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 {
                        Place { local: __binding_0, projection: __binding_1 } => {
                            Place {
                                local: ::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 {
                    Place { local: __binding_0, projection: __binding_1 } => {
                        Place {
                            local: ::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 Place<'tcx> {
            fn visit_with<__V: ::rustc_middle::ty::TypeVisitor<::rustc_middle::ty::TyCtxt<'tcx>>>(&self,
                __visitor: &mut __V) -> __V::Result {
                match *self {
                    Place { local: 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)]
1189pub struct Place<'tcx> {
1190    pub local: Local,
1191
1192    /// projection out of a place (access a field, deref a pointer, etc)
1193    pub projection: &'tcx List<PlaceElem<'tcx>>,
1194}
1195
1196#[derive(#[automatically_derived]
impl<V: ::core::marker::Copy, T: ::core::marker::Copy> ::core::marker::Copy
    for ProjectionElem<V, T> {
}Copy, #[automatically_derived]
impl<V: ::core::clone::Clone, T: ::core::clone::Clone> ::core::clone::Clone
    for ProjectionElem<V, T> {
    #[inline]
    fn clone(&self) -> ProjectionElem<V, T> {
        match self {
            ProjectionElem::Deref => ProjectionElem::Deref,
            ProjectionElem::Field(__self_0, __self_1) =>
                ProjectionElem::Field(::core::clone::Clone::clone(__self_0),
                    ::core::clone::Clone::clone(__self_1)),
            ProjectionElem::Index(__self_0) =>
                ProjectionElem::Index(::core::clone::Clone::clone(__self_0)),
            ProjectionElem::ConstantIndex {
                offset: __self_0, min_length: __self_1, from_end: __self_2 }
                =>
                ProjectionElem::ConstantIndex {
                    offset: ::core::clone::Clone::clone(__self_0),
                    min_length: ::core::clone::Clone::clone(__self_1),
                    from_end: ::core::clone::Clone::clone(__self_2),
                },
            ProjectionElem::Subslice {
                from: __self_0, to: __self_1, from_end: __self_2 } =>
                ProjectionElem::Subslice {
                    from: ::core::clone::Clone::clone(__self_0),
                    to: ::core::clone::Clone::clone(__self_1),
                    from_end: ::core::clone::Clone::clone(__self_2),
                },
            ProjectionElem::Downcast(__self_0, __self_1) =>
                ProjectionElem::Downcast(::core::clone::Clone::clone(__self_0),
                    ::core::clone::Clone::clone(__self_1)),
            ProjectionElem::OpaqueCast(__self_0) =>
                ProjectionElem::OpaqueCast(::core::clone::Clone::clone(__self_0)),
            ProjectionElem::UnwrapUnsafeBinder(__self_0) =>
                ProjectionElem::UnwrapUnsafeBinder(::core::clone::Clone::clone(__self_0)),
        }
    }
}Clone, #[automatically_derived]
impl<V: ::core::fmt::Debug, T: ::core::fmt::Debug> ::core::fmt::Debug for
    ProjectionElem<V, T> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            ProjectionElem::Deref =>
                ::core::fmt::Formatter::write_str(f, "Deref"),
            ProjectionElem::Field(__self_0, __self_1) =>
                ::core::fmt::Formatter::debug_tuple_field2_finish(f, "Field",
                    __self_0, &__self_1),
            ProjectionElem::Index(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Index",
                    &__self_0),
            ProjectionElem::ConstantIndex {
                offset: __self_0, min_length: __self_1, from_end: __self_2 }
                =>
                ::core::fmt::Formatter::debug_struct_field3_finish(f,
                    "ConstantIndex", "offset", __self_0, "min_length", __self_1,
                    "from_end", &__self_2),
            ProjectionElem::Subslice {
                from: __self_0, to: __self_1, from_end: __self_2 } =>
                ::core::fmt::Formatter::debug_struct_field3_finish(f,
                    "Subslice", "from", __self_0, "to", __self_1, "from_end",
                    &__self_2),
            ProjectionElem::Downcast(__self_0, __self_1) =>
                ::core::fmt::Formatter::debug_tuple_field2_finish(f,
                    "Downcast", __self_0, &__self_1),
            ProjectionElem::OpaqueCast(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "OpaqueCast", &__self_0),
            ProjectionElem::UnwrapUnsafeBinder(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "UnwrapUnsafeBinder", &__self_0),
        }
    }
}Debug, #[automatically_derived]
impl<V: ::core::cmp::PartialEq, T: ::core::cmp::PartialEq>
    ::core::cmp::PartialEq for ProjectionElem<V, T> {
    #[inline]
    fn eq(&self, other: &ProjectionElem<V, T>) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr &&
            match (self, other) {
                (ProjectionElem::Field(__self_0, __self_1),
                    ProjectionElem::Field(__arg1_0, __arg1_1)) =>
                    __self_0 == __arg1_0 && __self_1 == __arg1_1,
                (ProjectionElem::Index(__self_0),
                    ProjectionElem::Index(__arg1_0)) => __self_0 == __arg1_0,
                (ProjectionElem::ConstantIndex {
                    offset: __self_0, min_length: __self_1, from_end: __self_2
                    }, ProjectionElem::ConstantIndex {
                    offset: __arg1_0, min_length: __arg1_1, from_end: __arg1_2
                    }) =>
                    __self_0 == __arg1_0 && __self_1 == __arg1_1 &&
                        __self_2 == __arg1_2,
                (ProjectionElem::Subslice {
                    from: __self_0, to: __self_1, from_end: __self_2 },
                    ProjectionElem::Subslice {
                    from: __arg1_0, to: __arg1_1, from_end: __arg1_2 }) =>
                    __self_0 == __arg1_0 && __self_1 == __arg1_1 &&
                        __self_2 == __arg1_2,
                (ProjectionElem::Downcast(__self_0, __self_1),
                    ProjectionElem::Downcast(__arg1_0, __arg1_1)) =>
                    __self_0 == __arg1_0 && __self_1 == __arg1_1,
                (ProjectionElem::OpaqueCast(__self_0),
                    ProjectionElem::OpaqueCast(__arg1_0)) =>
                    __self_0 == __arg1_0,
                (ProjectionElem::UnwrapUnsafeBinder(__self_0),
                    ProjectionElem::UnwrapUnsafeBinder(__arg1_0)) =>
                    __self_0 == __arg1_0,
                _ => true,
            }
    }
}PartialEq, #[automatically_derived]
impl<V: ::core::cmp::Eq, T: ::core::cmp::Eq> ::core::cmp::Eq for
    ProjectionElem<V, T> {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_receiver_is_total_eq(&self) -> () {
        let _: ::core::cmp::AssertParamIsEq<FieldIdx>;
        let _: ::core::cmp::AssertParamIsEq<T>;
        let _: ::core::cmp::AssertParamIsEq<V>;
        let _: ::core::cmp::AssertParamIsEq<u64>;
        let _: ::core::cmp::AssertParamIsEq<bool>;
        let _: ::core::cmp::AssertParamIsEq<Option<Symbol>>;
        let _: ::core::cmp::AssertParamIsEq<VariantIdx>;
    }
}Eq, #[automatically_derived]
impl<V: ::core::hash::Hash, T: ::core::hash::Hash> ::core::hash::Hash for
    ProjectionElem<V, T> {
    #[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 {
            ProjectionElem::Field(__self_0, __self_1) => {
                ::core::hash::Hash::hash(__self_0, state);
                ::core::hash::Hash::hash(__self_1, state)
            }
            ProjectionElem::Index(__self_0) =>
                ::core::hash::Hash::hash(__self_0, state),
            ProjectionElem::ConstantIndex {
                offset: __self_0, min_length: __self_1, from_end: __self_2 }
                => {
                ::core::hash::Hash::hash(__self_0, state);
                ::core::hash::Hash::hash(__self_1, state);
                ::core::hash::Hash::hash(__self_2, state)
            }
            ProjectionElem::Subslice {
                from: __self_0, to: __self_1, from_end: __self_2 } => {
                ::core::hash::Hash::hash(__self_0, state);
                ::core::hash::Hash::hash(__self_1, state);
                ::core::hash::Hash::hash(__self_2, state)
            }
            ProjectionElem::Downcast(__self_0, __self_1) => {
                ::core::hash::Hash::hash(__self_0, state);
                ::core::hash::Hash::hash(__self_1, state)
            }
            ProjectionElem::OpaqueCast(__self_0) =>
                ::core::hash::Hash::hash(__self_0, state),
            ProjectionElem::UnwrapUnsafeBinder(__self_0) =>
                ::core::hash::Hash::hash(__self_0, state),
            _ => {}
        }
    }
}Hash)]
1197#[derive(const _: () =
    {
        impl<'tcx, V, T, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for ProjectionElem<V, T> where
            T: ::rustc_serialize::Encodable<__E>,
            V: ::rustc_serialize::Encodable<__E> {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        ProjectionElem::Deref => { 0usize }
                        ProjectionElem::Field(ref __binding_0, ref __binding_1) => {
                            1usize
                        }
                        ProjectionElem::Index(ref __binding_0) => { 2usize }
                        ProjectionElem::ConstantIndex {
                            offset: ref __binding_0,
                            min_length: ref __binding_1,
                            from_end: ref __binding_2 } => {
                            3usize
                        }
                        ProjectionElem::Subslice {
                            from: ref __binding_0,
                            to: ref __binding_1,
                            from_end: ref __binding_2 } => {
                            4usize
                        }
                        ProjectionElem::Downcast(ref __binding_0, ref __binding_1)
                            => {
                            5usize
                        }
                        ProjectionElem::OpaqueCast(ref __binding_0) => { 6usize }
                        ProjectionElem::UnwrapUnsafeBinder(ref __binding_0) => {
                            7usize
                        }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    ProjectionElem::Deref => {}
                    ProjectionElem::Field(ref __binding_0, ref __binding_1) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                    }
                    ProjectionElem::Index(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    ProjectionElem::ConstantIndex {
                        offset: ref __binding_0,
                        min_length: ref __binding_1,
                        from_end: ref __binding_2 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_2,
                            __encoder);
                    }
                    ProjectionElem::Subslice {
                        from: ref __binding_0,
                        to: ref __binding_1,
                        from_end: ref __binding_2 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_2,
                            __encoder);
                    }
                    ProjectionElem::Downcast(ref __binding_0, ref __binding_1)
                        => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                    }
                    ProjectionElem::OpaqueCast(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    ProjectionElem::UnwrapUnsafeBinder(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                }
            }
        }
    };TyEncodable, const _: () =
    {
        impl<'tcx, V, T, __D: ::rustc_middle::ty::codec::TyDecoder<'tcx>>
            ::rustc_serialize::Decodable<__D> for ProjectionElem<V, T> where
            T: ::rustc_serialize::Decodable<__D>,
            V: ::rustc_serialize::Decodable<__D> {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => { ProjectionElem::Deref }
                    1usize => {
                        ProjectionElem::Field(::rustc_serialize::Decodable::decode(__decoder),
                            ::rustc_serialize::Decodable::decode(__decoder))
                    }
                    2usize => {
                        ProjectionElem::Index(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    3usize => {
                        ProjectionElem::ConstantIndex {
                            offset: ::rustc_serialize::Decodable::decode(__decoder),
                            min_length: ::rustc_serialize::Decodable::decode(__decoder),
                            from_end: ::rustc_serialize::Decodable::decode(__decoder),
                        }
                    }
                    4usize => {
                        ProjectionElem::Subslice {
                            from: ::rustc_serialize::Decodable::decode(__decoder),
                            to: ::rustc_serialize::Decodable::decode(__decoder),
                            from_end: ::rustc_serialize::Decodable::decode(__decoder),
                        }
                    }
                    5usize => {
                        ProjectionElem::Downcast(::rustc_serialize::Decodable::decode(__decoder),
                            ::rustc_serialize::Decodable::decode(__decoder))
                    }
                    6usize => {
                        ProjectionElem::OpaqueCast(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    7usize => {
                        ProjectionElem::UnwrapUnsafeBinder(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `ProjectionElem`, expected 0..8, actual {0}",
                                n));
                    }
                }
            }
        }
    };TyDecodable, const _: () =
    {
        impl<'__ctx, V, T>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_query_system::ich::StableHashingContext<'__ctx>>
            for ProjectionElem<V, T> where
            T: ::rustc_data_structures::stable_hasher::HashStable<::rustc_query_system::ich::StableHashingContext<'__ctx>>,
            V: ::rustc_data_structures::stable_hasher::HashStable<::rustc_query_system::ich::StableHashingContext<'__ctx>>
            {
            #[inline]
            fn hash_stable(&self,
                __hcx:
                    &mut ::rustc_query_system::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                ::std::mem::discriminant(self).hash_stable(__hcx, __hasher);
                match *self {
                    ProjectionElem::Deref => {}
                    ProjectionElem::Field(ref __binding_0, ref __binding_1) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                    }
                    ProjectionElem::Index(ref __binding_0) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                    ProjectionElem::ConstantIndex {
                        offset: ref __binding_0,
                        min_length: ref __binding_1,
                        from_end: ref __binding_2 } => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                        { __binding_2.hash_stable(__hcx, __hasher); }
                    }
                    ProjectionElem::Subslice {
                        from: ref __binding_0,
                        to: ref __binding_1,
                        from_end: ref __binding_2 } => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                        { __binding_2.hash_stable(__hcx, __hasher); }
                    }
                    ProjectionElem::Downcast(ref __binding_0, ref __binding_1)
                        => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                    }
                    ProjectionElem::OpaqueCast(ref __binding_0) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                    ProjectionElem::UnwrapUnsafeBinder(ref __binding_0) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                }
            }
        }
    };HashStable, const _: () =
    {
        impl<'tcx, V, T>
            ::rustc_middle::ty::TypeFoldable<::rustc_middle::ty::TyCtxt<'tcx>>
            for ProjectionElem<V, T> where
            T: ::rustc_middle::ty::TypeFoldable<::rustc_middle::ty::TyCtxt<'tcx>>,
            V: ::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 {
                        ProjectionElem::Deref => { ProjectionElem::Deref }
                        ProjectionElem::Field(__binding_0, __binding_1) => {
                            ProjectionElem::Field(::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?)
                        }
                        ProjectionElem::Index(__binding_0) => {
                            ProjectionElem::Index(::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?)
                        }
                        ProjectionElem::ConstantIndex {
                            offset: __binding_0,
                            min_length: __binding_1,
                            from_end: __binding_2 } => {
                            ProjectionElem::ConstantIndex {
                                offset: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                min_length: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?,
                                from_end: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_2,
                                        __folder)?,
                            }
                        }
                        ProjectionElem::Subslice {
                            from: __binding_0, to: __binding_1, from_end: __binding_2 }
                            => {
                            ProjectionElem::Subslice {
                                from: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                to: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?,
                                from_end: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_2,
                                        __folder)?,
                            }
                        }
                        ProjectionElem::Downcast(__binding_0, __binding_1) => {
                            ProjectionElem::Downcast(::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?)
                        }
                        ProjectionElem::OpaqueCast(__binding_0) => {
                            ProjectionElem::OpaqueCast(::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?)
                        }
                        ProjectionElem::UnwrapUnsafeBinder(__binding_0) => {
                            ProjectionElem::UnwrapUnsafeBinder(::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 {
                    ProjectionElem::Deref => { ProjectionElem::Deref }
                    ProjectionElem::Field(__binding_0, __binding_1) => {
                        ProjectionElem::Field(::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
                                __folder))
                    }
                    ProjectionElem::Index(__binding_0) => {
                        ProjectionElem::Index(::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder))
                    }
                    ProjectionElem::ConstantIndex {
                        offset: __binding_0,
                        min_length: __binding_1,
                        from_end: __binding_2 } => {
                        ProjectionElem::ConstantIndex {
                            offset: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            min_length: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
                                __folder),
                            from_end: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_2,
                                __folder),
                        }
                    }
                    ProjectionElem::Subslice {
                        from: __binding_0, to: __binding_1, from_end: __binding_2 }
                        => {
                        ProjectionElem::Subslice {
                            from: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            to: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
                                __folder),
                            from_end: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_2,
                                __folder),
                        }
                    }
                    ProjectionElem::Downcast(__binding_0, __binding_1) => {
                        ProjectionElem::Downcast(::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
                                __folder))
                    }
                    ProjectionElem::OpaqueCast(__binding_0) => {
                        ProjectionElem::OpaqueCast(::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder))
                    }
                    ProjectionElem::UnwrapUnsafeBinder(__binding_0) => {
                        ProjectionElem::UnwrapUnsafeBinder(::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder))
                    }
                }
            }
        }
    };TypeFoldable, const _: () =
    {
        impl<'tcx, V, T>
            ::rustc_middle::ty::TypeVisitable<::rustc_middle::ty::TyCtxt<'tcx>>
            for ProjectionElem<V, T> where
            T: ::rustc_middle::ty::TypeVisitable<::rustc_middle::ty::TyCtxt<'tcx>>,
            V: ::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 {
                    ProjectionElem::Deref => {}
                    ProjectionElem::Field(ref __binding_0, 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);
                                }
                            }
                        }
                    }
                    ProjectionElem::Index(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);
                                }
                            }
                        }
                    }
                    ProjectionElem::ConstantIndex {
                        offset: ref __binding_0,
                        min_length: ref __binding_1,
                        from_end: ref __binding_2 } => {
                        {
                            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);
                                }
                            }
                        }
                    }
                    ProjectionElem::Subslice {
                        from: ref __binding_0,
                        to: ref __binding_1,
                        from_end: ref __binding_2 } => {
                        {
                            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);
                                }
                            }
                        }
                    }
                    ProjectionElem::Downcast(ref __binding_0, 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);
                                }
                            }
                        }
                    }
                    ProjectionElem::OpaqueCast(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);
                                }
                            }
                        }
                    }
                    ProjectionElem::UnwrapUnsafeBinder(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)]
1198pub enum ProjectionElem<V, T> {
1199    Deref,
1200
1201    /// A field (e.g., `f` in `_1.f`) is one variant of [`ProjectionElem`]. Conceptually,
1202    /// rustc can identify that a field projection refers to either two different regions of memory
1203    /// or the same one between the base and the 'projection element'.
1204    /// Read more about projections in the [rustc-dev-guide][mir-datatypes]
1205    ///
1206    /// [mir-datatypes]: https://rustc-dev-guide.rust-lang.org/mir/index.html#mir-data-types
1207    Field(FieldIdx, T),
1208
1209    /// Index into a slice/array.
1210    ///
1211    /// Note that this does not also dereference, and so it does not exactly correspond to slice
1212    /// indexing in Rust. In other words, in the below Rust code:
1213    ///
1214    /// ```rust
1215    /// let x = &[1, 2, 3, 4];
1216    /// let i = 2;
1217    /// x[i];
1218    /// ```
1219    ///
1220    /// The `x[i]` is turned into a `Deref` followed by an `Index`, not just an `Index`. The same
1221    /// thing is true of the `ConstantIndex` and `Subslice` projections below.
1222    Index(V),
1223
1224    /// These endpoint-relative indices are generated by slice/array patterns.
1225    ///
1226    /// For array types, `offset` is always relative to the start of the array.
1227    /// For slice types, `from_end` determines whether `offset` is relative to
1228    /// the start or the end of the slice being inspected.
1229    ///
1230    /// Slice-pattern indices are easiest to explain by the position of `X` in
1231    /// these examples:
1232    ///
1233    /// ```ignore (illustrative)
1234    /// [X, _, .., _, _] => { offset: 0, min_length: 4, from_end: false },
1235    /// [_, X, .., _, _] => { offset: 1, min_length: 4, from_end: false },
1236    /// [_, _, .., X, _] => { offset: 2, min_length: 4, from_end: true },
1237    /// [_, _, .., _, X] => { offset: 1, min_length: 4, from_end: true },
1238    /// ```
1239    ConstantIndex {
1240        /// - If `from_end == false`, this is a 0-based offset from the start of the array/slice.
1241        /// - If `from_end == true`, this is a 1-based offset from the end of the slice.
1242        offset: u64,
1243        /// The thing being indexed must be at least this long -- otherwise, the
1244        /// projection is UB.
1245        ///
1246        /// For arrays this is always the exact length.
1247        min_length: u64,
1248        /// If `true`, `offset` is a 1-based offset from the end of the slice.
1249        /// Always false when indexing an array.
1250        from_end: bool,
1251    },
1252
1253    /// These indices are generated by slice patterns.
1254    ///
1255    /// If `from_end` is true `slice[from..slice.len() - to]`.
1256    /// Otherwise `array[from..to]`.
1257    ///
1258    /// This projection cannot have `ConstantIndex` or additional `Subslice` projections after it
1259    /// before runtime MIR.
1260    Subslice {
1261        from: u64,
1262        to: u64,
1263        /// Whether `to` counts from the start or end of the array/slice.
1264        /// For `PlaceElem`s this is `true` if and only if the base is a slice.
1265        /// For `ProjectionKind`, this can also be `true` for arrays.
1266        from_end: bool,
1267    },
1268
1269    /// "Downcast" to a variant of an enum or a coroutine.
1270    ///
1271    /// The included Symbol is the name of the variant, used for printing MIR.
1272    ///
1273    /// This operation itself is never UB, all it does is change the type of the place.
1274    Downcast(Option<Symbol>, VariantIdx),
1275
1276    /// Like an explicit cast from an opaque type to a concrete type, but without
1277    /// requiring an intermediate variable.
1278    ///
1279    /// This is unused with `-Znext-solver`.
1280    OpaqueCast(T),
1281
1282    /// A transmute from an unsafe binder to the type that it wraps. This is a projection
1283    /// of a place, so it doesn't necessarily constitute a move out of the binder.
1284    UnwrapUnsafeBinder(T),
1285}
1286
1287/// Alias for projections as they appear in places, where the base is a place
1288/// and the index is a local.
1289pub type PlaceElem<'tcx> = ProjectionElem<Local, Ty<'tcx>>;
1290
1291///////////////////////////////////////////////////////////////////////////
1292// Operands
1293
1294/// An operand in MIR represents a "value" in Rust, the definition of which is undecided and part of
1295/// the memory model. One proposal for a definition of values can be found [on UCG][value-def].
1296///
1297/// [value-def]: https://github.com/rust-lang/unsafe-code-guidelines/blob/master/wip/value-domain.md
1298///
1299/// The most common way to create values is via loading a place. Loading a place is an operation
1300/// which reads the memory of the place and converts it to a value. This is a fundamentally *typed*
1301/// operation. The nature of the value produced depends on the type of the conversion. Furthermore,
1302/// there may be other effects: if the type has a validity constraint loading the place might be UB
1303/// if the validity constraint is not met.
1304///
1305/// **Needs clarification:** Is loading a place that has its variant index set well-formed? Miri
1306/// currently implements it, but it seems like this may be something to check against in the
1307/// validator.
1308#[derive(#[automatically_derived]
impl<'tcx> ::core::clone::Clone for Operand<'tcx> {
    #[inline]
    fn clone(&self) -> Operand<'tcx> {
        match self {
            Operand::Copy(__self_0) =>
                Operand::Copy(::core::clone::Clone::clone(__self_0)),
            Operand::Move(__self_0) =>
                Operand::Move(::core::clone::Clone::clone(__self_0)),
            Operand::Constant(__self_0) =>
                Operand::Constant(::core::clone::Clone::clone(__self_0)),
            Operand::RuntimeChecks(__self_0) =>
                Operand::RuntimeChecks(::core::clone::Clone::clone(__self_0)),
        }
    }
}Clone, #[automatically_derived]
impl<'tcx> ::core::cmp::PartialEq for Operand<'tcx> {
    #[inline]
    fn eq(&self, other: &Operand<'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) {
                (Operand::Copy(__self_0), Operand::Copy(__arg1_0)) =>
                    __self_0 == __arg1_0,
                (Operand::Move(__self_0), Operand::Move(__arg1_0)) =>
                    __self_0 == __arg1_0,
                (Operand::Constant(__self_0), Operand::Constant(__arg1_0)) =>
                    __self_0 == __arg1_0,
                (Operand::RuntimeChecks(__self_0),
                    Operand::RuntimeChecks(__arg1_0)) => __self_0 == __arg1_0,
                _ => unsafe { ::core::intrinsics::unreachable() }
            }
    }
}PartialEq, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for Operand<'tcx> {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        Operand::Copy(ref __binding_0) => { 0usize }
                        Operand::Move(ref __binding_0) => { 1usize }
                        Operand::Constant(ref __binding_0) => { 2usize }
                        Operand::RuntimeChecks(ref __binding_0) => { 3usize }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    Operand::Copy(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    Operand::Move(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    Operand::Constant(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    Operand::RuntimeChecks(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 Operand<'tcx> {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => {
                        Operand::Copy(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    1usize => {
                        Operand::Move(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    2usize => {
                        Operand::Constant(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    3usize => {
                        Operand::RuntimeChecks(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `Operand`, expected 0..4, actual {0}",
                                n));
                    }
                }
            }
        }
    };TyDecodable, #[automatically_derived]
impl<'tcx> ::core::hash::Hash for Operand<'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 {
            Operand::Copy(__self_0) =>
                ::core::hash::Hash::hash(__self_0, state),
            Operand::Move(__self_0) =>
                ::core::hash::Hash::hash(__self_0, state),
            Operand::Constant(__self_0) =>
                ::core::hash::Hash::hash(__self_0, state),
            Operand::RuntimeChecks(__self_0) =>
                ::core::hash::Hash::hash(__self_0, state),
        }
    }
}Hash, const _: () =
    {
        impl<'tcx, '__ctx>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_query_system::ich::StableHashingContext<'__ctx>>
            for Operand<'tcx> {
            #[inline]
            fn hash_stable(&self,
                __hcx:
                    &mut ::rustc_query_system::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                ::std::mem::discriminant(self).hash_stable(__hcx, __hasher);
                match *self {
                    Operand::Copy(ref __binding_0) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                    Operand::Move(ref __binding_0) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                    Operand::Constant(ref __binding_0) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                    Operand::RuntimeChecks(ref __binding_0) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                }
            }
        }
    };HashStable, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeFoldable<::rustc_middle::ty::TyCtxt<'tcx>>
            for Operand<'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 {
                        Operand::Copy(__binding_0) => {
                            Operand::Copy(::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?)
                        }
                        Operand::Move(__binding_0) => {
                            Operand::Move(::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?)
                        }
                        Operand::Constant(__binding_0) => {
                            Operand::Constant(::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?)
                        }
                        Operand::RuntimeChecks(__binding_0) => {
                            Operand::RuntimeChecks(::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 {
                    Operand::Copy(__binding_0) => {
                        Operand::Copy(::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder))
                    }
                    Operand::Move(__binding_0) => {
                        Operand::Move(::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder))
                    }
                    Operand::Constant(__binding_0) => {
                        Operand::Constant(::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder))
                    }
                    Operand::RuntimeChecks(__binding_0) => {
                        Operand::RuntimeChecks(::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder))
                    }
                }
            }
        }
    };TypeFoldable, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeVisitable<::rustc_middle::ty::TyCtxt<'tcx>>
            for Operand<'tcx> {
            fn visit_with<__V: ::rustc_middle::ty::TypeVisitor<::rustc_middle::ty::TyCtxt<'tcx>>>(&self,
                __visitor: &mut __V) -> __V::Result {
                match *self {
                    Operand::Copy(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);
                                }
                            }
                        }
                    }
                    Operand::Move(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);
                                }
                            }
                        }
                    }
                    Operand::Constant(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);
                                }
                            }
                        }
                    }
                    Operand::RuntimeChecks(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)]
1309pub enum Operand<'tcx> {
1310    /// Creates a value by loading the given place.
1311    ///
1312    /// Before drop elaboration, the type of the place must be `Copy`. After drop elaboration there
1313    /// is no such requirement.
1314    Copy(Place<'tcx>),
1315
1316    /// Creates a value by performing loading the place, just like the `Copy` operand.
1317    ///
1318    /// This *may* additionally overwrite the place with `uninit` bytes, depending on how we decide
1319    /// in [UCG#188]. You should not emit MIR that may attempt a subsequent second load of this
1320    /// place without first re-initializing it.
1321    ///
1322    /// **Needs clarification:** The operational impact of `Move` is unclear. Currently (both in
1323    /// Miri and codegen) it has no effect at all unless it appears in an argument to `Call`; for
1324    /// `Call` it allows the argument to be passed to the callee "in-place", i.e. the callee might
1325    /// just get a reference to this place instead of a full copy. Miri implements this with a
1326    /// combination of aliasing model "protectors" and putting `uninit` into the place. Ralf
1327    /// proposes that we don't want these semantics for `Move` in regular assignments, because
1328    /// loading a place should not have side-effects, and the aliasing model "protectors" are
1329    /// inherently tied to a function call. Are these the semantics we want for MIR? Is this
1330    /// something we can even decide without knowing more about Rust's memory model?
1331    ///
1332    /// [UCG#188]: https://github.com/rust-lang/unsafe-code-guidelines/issues/188
1333    Move(Place<'tcx>),
1334
1335    /// Constants are already semantically values, and remain unchanged.
1336    Constant(Box<ConstOperand<'tcx>>),
1337
1338    /// Query the compilation session of the current crate for a particular flag. This is not quite
1339    /// a const since its value can differ across crates within a single crate graph.
1340    RuntimeChecks(RuntimeChecks),
1341}
1342
1343#[derive(#[automatically_derived]
impl<'tcx> ::core::clone::Clone for ConstOperand<'tcx> {
    #[inline]
    fn clone(&self) -> ConstOperand<'tcx> {
        let _: ::core::clone::AssertParamIsClone<Span>;
        let _:
                ::core::clone::AssertParamIsClone<Option<UserTypeAnnotationIndex>>;
        let _: ::core::clone::AssertParamIsClone<Const<'tcx>>;
        *self
    }
}Clone, #[automatically_derived]
impl<'tcx> ::core::marker::Copy for ConstOperand<'tcx> { }Copy, #[automatically_derived]
impl<'tcx> ::core::cmp::PartialEq for ConstOperand<'tcx> {
    #[inline]
    fn eq(&self, other: &ConstOperand<'tcx>) -> bool {
        self.span == other.span && self.user_ty == other.user_ty &&
            self.const_ == other.const_
    }
}PartialEq, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for ConstOperand<'tcx> {
            fn encode(&self, __encoder: &mut __E) {
                match *self {
                    ConstOperand {
                        span: ref __binding_0,
                        user_ty: ref __binding_1,
                        const_: ref __binding_2 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_2,
                            __encoder);
                    }
                }
            }
        }
    };TyEncodable, const _: () =
    {
        impl<'tcx, __D: ::rustc_middle::ty::codec::TyDecoder<'tcx>>
            ::rustc_serialize::Decodable<__D> for ConstOperand<'tcx> {
            fn decode(__decoder: &mut __D) -> Self {
                ConstOperand {
                    span: ::rustc_serialize::Decodable::decode(__decoder),
                    user_ty: ::rustc_serialize::Decodable::decode(__decoder),
                    const_: ::rustc_serialize::Decodable::decode(__decoder),
                }
            }
        }
    };TyDecodable, #[automatically_derived]
impl<'tcx> ::core::hash::Hash for ConstOperand<'tcx> {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) -> () {
        ::core::hash::Hash::hash(&self.span, state);
        ::core::hash::Hash::hash(&self.user_ty, state);
        ::core::hash::Hash::hash(&self.const_, state)
    }
}Hash, const _: () =
    {
        impl<'tcx, '__ctx>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_query_system::ich::StableHashingContext<'__ctx>>
            for ConstOperand<'tcx> {
            #[inline]
            fn hash_stable(&self,
                __hcx:
                    &mut ::rustc_query_system::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                match *self {
                    ConstOperand {
                        span: ref __binding_0,
                        user_ty: ref __binding_1,
                        const_: ref __binding_2 } => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                        { __binding_2.hash_stable(__hcx, __hasher); }
                    }
                }
            }
        }
    };HashStable)]
1344#[derive(const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeFoldable<::rustc_middle::ty::TyCtxt<'tcx>>
            for ConstOperand<'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 {
                        ConstOperand {
                            span: __binding_0, user_ty: __binding_1, const_: __binding_2
                            } => {
                            ConstOperand {
                                span: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                user_ty: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?,
                                const_: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_2,
                                        __folder)?,
                            }
                        }
                    })
            }
            fn fold_with<__F: ::rustc_middle::ty::TypeFolder<::rustc_middle::ty::TyCtxt<'tcx>>>(self,
                __folder: &mut __F) -> Self {
                match self {
                    ConstOperand {
                        span: __binding_0, user_ty: __binding_1, const_: __binding_2
                        } => {
                        ConstOperand {
                            span: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            user_ty: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
                                __folder),
                            const_: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_2,
                                __folder),
                        }
                    }
                }
            }
        }
    };TypeFoldable, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeVisitable<::rustc_middle::ty::TyCtxt<'tcx>>
            for ConstOperand<'tcx> {
            fn visit_with<__V: ::rustc_middle::ty::TypeVisitor<::rustc_middle::ty::TyCtxt<'tcx>>>(&self,
                __visitor: &mut __V) -> __V::Result {
                match *self {
                    ConstOperand {
                        span: ref __binding_0,
                        user_ty: ref __binding_1,
                        const_: ref __binding_2 } => {
                        {
                            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);
                                }
                            }
                        }
                    }
                }
                <__V::Result as ::rustc_middle::ty::VisitorResult>::output()
            }
        }
    };TypeVisitable)]
1345pub struct ConstOperand<'tcx> {
1346    pub span: Span,
1347
1348    /// Optional user-given type: for something like
1349    /// `collect::<Vec<_>>`, this would be present and would
1350    /// indicate that `Vec<_>` was explicitly specified.
1351    ///
1352    /// Needed for NLL to impose user-given type constraints.
1353    pub user_ty: Option<UserTypeAnnotationIndex>,
1354
1355    pub const_: Const<'tcx>,
1356}
1357
1358///////////////////////////////////////////////////////////////////////////
1359// Rvalues
1360
1361/// The various kinds of rvalues that can appear in MIR.
1362///
1363/// Not all of these are allowed at every [`MirPhase`] - when this is the case, it's stated below.
1364///
1365/// Computing any rvalue begins by evaluating the places and operands in some order (**Needs
1366/// clarification**: Which order?). These are then used to produce a "value" - the same kind of
1367/// value that an [`Operand`] produces.
1368#[derive(#[automatically_derived]
impl<'tcx> ::core::clone::Clone for Rvalue<'tcx> {
    #[inline]
    fn clone(&self) -> Rvalue<'tcx> {
        match self {
            Rvalue::Use(__self_0) =>
                Rvalue::Use(::core::clone::Clone::clone(__self_0)),
            Rvalue::Repeat(__self_0, __self_1) =>
                Rvalue::Repeat(::core::clone::Clone::clone(__self_0),
                    ::core::clone::Clone::clone(__self_1)),
            Rvalue::Ref(__self_0, __self_1, __self_2) =>
                Rvalue::Ref(::core::clone::Clone::clone(__self_0),
                    ::core::clone::Clone::clone(__self_1),
                    ::core::clone::Clone::clone(__self_2)),
            Rvalue::ThreadLocalRef(__self_0) =>
                Rvalue::ThreadLocalRef(::core::clone::Clone::clone(__self_0)),
            Rvalue::RawPtr(__self_0, __self_1) =>
                Rvalue::RawPtr(::core::clone::Clone::clone(__self_0),
                    ::core::clone::Clone::clone(__self_1)),
            Rvalue::Cast(__self_0, __self_1, __self_2) =>
                Rvalue::Cast(::core::clone::Clone::clone(__self_0),
                    ::core::clone::Clone::clone(__self_1),
                    ::core::clone::Clone::clone(__self_2)),
            Rvalue::BinaryOp(__self_0, __self_1) =>
                Rvalue::BinaryOp(::core::clone::Clone::clone(__self_0),
                    ::core::clone::Clone::clone(__self_1)),
            Rvalue::UnaryOp(__self_0, __self_1) =>
                Rvalue::UnaryOp(::core::clone::Clone::clone(__self_0),
                    ::core::clone::Clone::clone(__self_1)),
            Rvalue::Discriminant(__self_0) =>
                Rvalue::Discriminant(::core::clone::Clone::clone(__self_0)),
            Rvalue::Aggregate(__self_0, __self_1) =>
                Rvalue::Aggregate(::core::clone::Clone::clone(__self_0),
                    ::core::clone::Clone::clone(__self_1)),
            Rvalue::ShallowInitBox(__self_0, __self_1) =>
                Rvalue::ShallowInitBox(::core::clone::Clone::clone(__self_0),
                    ::core::clone::Clone::clone(__self_1)),
            Rvalue::CopyForDeref(__self_0) =>
                Rvalue::CopyForDeref(::core::clone::Clone::clone(__self_0)),
            Rvalue::WrapUnsafeBinder(__self_0, __self_1) =>
                Rvalue::WrapUnsafeBinder(::core::clone::Clone::clone(__self_0),
                    ::core::clone::Clone::clone(__self_1)),
        }
    }
}Clone, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for Rvalue<'tcx> {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        Rvalue::Use(ref __binding_0) => { 0usize }
                        Rvalue::Repeat(ref __binding_0, ref __binding_1) => {
                            1usize
                        }
                        Rvalue::Ref(ref __binding_0, ref __binding_1,
                            ref __binding_2) => {
                            2usize
                        }
                        Rvalue::ThreadLocalRef(ref __binding_0) => { 3usize }
                        Rvalue::RawPtr(ref __binding_0, ref __binding_1) => {
                            4usize
                        }
                        Rvalue::Cast(ref __binding_0, ref __binding_1,
                            ref __binding_2) => {
                            5usize
                        }
                        Rvalue::BinaryOp(ref __binding_0, ref __binding_1) => {
                            6usize
                        }
                        Rvalue::UnaryOp(ref __binding_0, ref __binding_1) => {
                            7usize
                        }
                        Rvalue::Discriminant(ref __binding_0) => { 8usize }
                        Rvalue::Aggregate(ref __binding_0, ref __binding_1) => {
                            9usize
                        }
                        Rvalue::ShallowInitBox(ref __binding_0, ref __binding_1) =>
                            {
                            10usize
                        }
                        Rvalue::CopyForDeref(ref __binding_0) => { 11usize }
                        Rvalue::WrapUnsafeBinder(ref __binding_0, ref __binding_1)
                            => {
                            12usize
                        }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    Rvalue::Use(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    Rvalue::Repeat(ref __binding_0, ref __binding_1) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                    }
                    Rvalue::Ref(ref __binding_0, ref __binding_1,
                        ref __binding_2) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_2,
                            __encoder);
                    }
                    Rvalue::ThreadLocalRef(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    Rvalue::RawPtr(ref __binding_0, ref __binding_1) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                    }
                    Rvalue::Cast(ref __binding_0, ref __binding_1,
                        ref __binding_2) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_2,
                            __encoder);
                    }
                    Rvalue::BinaryOp(ref __binding_0, ref __binding_1) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                    }
                    Rvalue::UnaryOp(ref __binding_0, ref __binding_1) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                    }
                    Rvalue::Discriminant(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    Rvalue::Aggregate(ref __binding_0, ref __binding_1) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                    }
                    Rvalue::ShallowInitBox(ref __binding_0, ref __binding_1) =>
                        {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                    }
                    Rvalue::CopyForDeref(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    Rvalue::WrapUnsafeBinder(ref __binding_0, 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 Rvalue<'tcx> {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => {
                        Rvalue::Use(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    1usize => {
                        Rvalue::Repeat(::rustc_serialize::Decodable::decode(__decoder),
                            ::rustc_serialize::Decodable::decode(__decoder))
                    }
                    2usize => {
                        Rvalue::Ref(::rustc_serialize::Decodable::decode(__decoder),
                            ::rustc_serialize::Decodable::decode(__decoder),
                            ::rustc_serialize::Decodable::decode(__decoder))
                    }
                    3usize => {
                        Rvalue::ThreadLocalRef(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    4usize => {
                        Rvalue::RawPtr(::rustc_serialize::Decodable::decode(__decoder),
                            ::rustc_serialize::Decodable::decode(__decoder))
                    }
                    5usize => {
                        Rvalue::Cast(::rustc_serialize::Decodable::decode(__decoder),
                            ::rustc_serialize::Decodable::decode(__decoder),
                            ::rustc_serialize::Decodable::decode(__decoder))
                    }
                    6usize => {
                        Rvalue::BinaryOp(::rustc_serialize::Decodable::decode(__decoder),
                            ::rustc_serialize::Decodable::decode(__decoder))
                    }
                    7usize => {
                        Rvalue::UnaryOp(::rustc_serialize::Decodable::decode(__decoder),
                            ::rustc_serialize::Decodable::decode(__decoder))
                    }
                    8usize => {
                        Rvalue::Discriminant(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    9usize => {
                        Rvalue::Aggregate(::rustc_serialize::Decodable::decode(__decoder),
                            ::rustc_serialize::Decodable::decode(__decoder))
                    }
                    10usize => {
                        Rvalue::ShallowInitBox(::rustc_serialize::Decodable::decode(__decoder),
                            ::rustc_serialize::Decodable::decode(__decoder))
                    }
                    11usize => {
                        Rvalue::CopyForDeref(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    12usize => {
                        Rvalue::WrapUnsafeBinder(::rustc_serialize::Decodable::decode(__decoder),
                            ::rustc_serialize::Decodable::decode(__decoder))
                    }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `Rvalue`, expected 0..13, actual {0}",
                                n));
                    }
                }
            }
        }
    };TyDecodable, #[automatically_derived]
impl<'tcx> ::core::hash::Hash for Rvalue<'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 {
            Rvalue::Use(__self_0) =>
                ::core::hash::Hash::hash(__self_0, state),
            Rvalue::Repeat(__self_0, __self_1) => {
                ::core::hash::Hash::hash(__self_0, state);
                ::core::hash::Hash::hash(__self_1, state)
            }
            Rvalue::Ref(__self_0, __self_1, __self_2) => {
                ::core::hash::Hash::hash(__self_0, state);
                ::core::hash::Hash::hash(__self_1, state);
                ::core::hash::Hash::hash(__self_2, state)
            }
            Rvalue::ThreadLocalRef(__self_0) =>
                ::core::hash::Hash::hash(__self_0, state),
            Rvalue::RawPtr(__self_0, __self_1) => {
                ::core::hash::Hash::hash(__self_0, state);
                ::core::hash::Hash::hash(__self_1, state)
            }
            Rvalue::Cast(__self_0, __self_1, __self_2) => {
                ::core::hash::Hash::hash(__self_0, state);
                ::core::hash::Hash::hash(__self_1, state);
                ::core::hash::Hash::hash(__self_2, state)
            }
            Rvalue::BinaryOp(__self_0, __self_1) => {
                ::core::hash::Hash::hash(__self_0, state);
                ::core::hash::Hash::hash(__self_1, state)
            }
            Rvalue::UnaryOp(__self_0, __self_1) => {
                ::core::hash::Hash::hash(__self_0, state);
                ::core::hash::Hash::hash(__self_1, state)
            }
            Rvalue::Discriminant(__self_0) =>
                ::core::hash::Hash::hash(__self_0, state),
            Rvalue::Aggregate(__self_0, __self_1) => {
                ::core::hash::Hash::hash(__self_0, state);
                ::core::hash::Hash::hash(__self_1, state)
            }
            Rvalue::ShallowInitBox(__self_0, __self_1) => {
                ::core::hash::Hash::hash(__self_0, state);
                ::core::hash::Hash::hash(__self_1, state)
            }
            Rvalue::CopyForDeref(__self_0) =>
                ::core::hash::Hash::hash(__self_0, state),
            Rvalue::WrapUnsafeBinder(__self_0, __self_1) => {
                ::core::hash::Hash::hash(__self_0, state);
                ::core::hash::Hash::hash(__self_1, state)
            }
        }
    }
}Hash, const _: () =
    {
        impl<'tcx, '__ctx>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_query_system::ich::StableHashingContext<'__ctx>>
            for Rvalue<'tcx> {
            #[inline]
            fn hash_stable(&self,
                __hcx:
                    &mut ::rustc_query_system::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                ::std::mem::discriminant(self).hash_stable(__hcx, __hasher);
                match *self {
                    Rvalue::Use(ref __binding_0) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                    Rvalue::Repeat(ref __binding_0, ref __binding_1) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                    }
                    Rvalue::Ref(ref __binding_0, ref __binding_1,
                        ref __binding_2) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                        { __binding_2.hash_stable(__hcx, __hasher); }
                    }
                    Rvalue::ThreadLocalRef(ref __binding_0) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                    Rvalue::RawPtr(ref __binding_0, ref __binding_1) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                    }
                    Rvalue::Cast(ref __binding_0, ref __binding_1,
                        ref __binding_2) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                        { __binding_2.hash_stable(__hcx, __hasher); }
                    }
                    Rvalue::BinaryOp(ref __binding_0, ref __binding_1) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                    }
                    Rvalue::UnaryOp(ref __binding_0, ref __binding_1) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                    }
                    Rvalue::Discriminant(ref __binding_0) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                    Rvalue::Aggregate(ref __binding_0, ref __binding_1) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                    }
                    Rvalue::ShallowInitBox(ref __binding_0, ref __binding_1) =>
                        {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                    }
                    Rvalue::CopyForDeref(ref __binding_0) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                    Rvalue::WrapUnsafeBinder(ref __binding_0, ref __binding_1)
                        => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                    }
                }
            }
        }
    };HashStable, #[automatically_derived]
impl<'tcx> ::core::cmp::PartialEq for Rvalue<'tcx> {
    #[inline]
    fn eq(&self, other: &Rvalue<'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) {
                (Rvalue::Use(__self_0), Rvalue::Use(__arg1_0)) =>
                    __self_0 == __arg1_0,
                (Rvalue::Repeat(__self_0, __self_1),
                    Rvalue::Repeat(__arg1_0, __arg1_1)) =>
                    __self_0 == __arg1_0 && __self_1 == __arg1_1,
                (Rvalue::Ref(__self_0, __self_1, __self_2),
                    Rvalue::Ref(__arg1_0, __arg1_1, __arg1_2)) =>
                    __self_0 == __arg1_0 && __self_1 == __arg1_1 &&
                        __self_2 == __arg1_2,
                (Rvalue::ThreadLocalRef(__self_0),
                    Rvalue::ThreadLocalRef(__arg1_0)) => __self_0 == __arg1_0,
                (Rvalue::RawPtr(__self_0, __self_1),
                    Rvalue::RawPtr(__arg1_0, __arg1_1)) =>
                    __self_0 == __arg1_0 && __self_1 == __arg1_1,
                (Rvalue::Cast(__self_0, __self_1, __self_2),
                    Rvalue::Cast(__arg1_0, __arg1_1, __arg1_2)) =>
                    __self_0 == __arg1_0 && __self_1 == __arg1_1 &&
                        __self_2 == __arg1_2,
                (Rvalue::BinaryOp(__self_0, __self_1),
                    Rvalue::BinaryOp(__arg1_0, __arg1_1)) =>
                    __self_0 == __arg1_0 && __self_1 == __arg1_1,
                (Rvalue::UnaryOp(__self_0, __self_1),
                    Rvalue::UnaryOp(__arg1_0, __arg1_1)) =>
                    __self_0 == __arg1_0 && __self_1 == __arg1_1,
                (Rvalue::Discriminant(__self_0),
                    Rvalue::Discriminant(__arg1_0)) => __self_0 == __arg1_0,
                (Rvalue::Aggregate(__self_0, __self_1),
                    Rvalue::Aggregate(__arg1_0, __arg1_1)) =>
                    __self_0 == __arg1_0 && __self_1 == __arg1_1,
                (Rvalue::ShallowInitBox(__self_0, __self_1),
                    Rvalue::ShallowInitBox(__arg1_0, __arg1_1)) =>
                    __self_0 == __arg1_0 && __self_1 == __arg1_1,
                (Rvalue::CopyForDeref(__self_0),
                    Rvalue::CopyForDeref(__arg1_0)) => __self_0 == __arg1_0,
                (Rvalue::WrapUnsafeBinder(__self_0, __self_1),
                    Rvalue::WrapUnsafeBinder(__arg1_0, __arg1_1)) =>
                    __self_0 == __arg1_0 && __self_1 == __arg1_1,
                _ => unsafe { ::core::intrinsics::unreachable() }
            }
    }
}PartialEq, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeFoldable<::rustc_middle::ty::TyCtxt<'tcx>>
            for Rvalue<'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 {
                        Rvalue::Use(__binding_0) => {
                            Rvalue::Use(::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?)
                        }
                        Rvalue::Repeat(__binding_0, __binding_1) => {
                            Rvalue::Repeat(::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?)
                        }
                        Rvalue::Ref(__binding_0, __binding_1, __binding_2) => {
                            Rvalue::Ref(::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?,
                                ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_2,
                                        __folder)?)
                        }
                        Rvalue::ThreadLocalRef(__binding_0) => {
                            Rvalue::ThreadLocalRef(::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?)
                        }
                        Rvalue::RawPtr(__binding_0, __binding_1) => {
                            Rvalue::RawPtr(::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?)
                        }
                        Rvalue::Cast(__binding_0, __binding_1, __binding_2) => {
                            Rvalue::Cast(::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?,
                                ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_2,
                                        __folder)?)
                        }
                        Rvalue::BinaryOp(__binding_0, __binding_1) => {
                            Rvalue::BinaryOp(::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?)
                        }
                        Rvalue::UnaryOp(__binding_0, __binding_1) => {
                            Rvalue::UnaryOp(::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?)
                        }
                        Rvalue::Discriminant(__binding_0) => {
                            Rvalue::Discriminant(::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?)
                        }
                        Rvalue::Aggregate(__binding_0, __binding_1) => {
                            Rvalue::Aggregate(::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?)
                        }
                        Rvalue::ShallowInitBox(__binding_0, __binding_1) => {
                            Rvalue::ShallowInitBox(::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?)
                        }
                        Rvalue::CopyForDeref(__binding_0) => {
                            Rvalue::CopyForDeref(::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?)
                        }
                        Rvalue::WrapUnsafeBinder(__binding_0, __binding_1) => {
                            Rvalue::WrapUnsafeBinder(::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                ::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 {
                    Rvalue::Use(__binding_0) => {
                        Rvalue::Use(::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder))
                    }
                    Rvalue::Repeat(__binding_0, __binding_1) => {
                        Rvalue::Repeat(::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
                                __folder))
                    }
                    Rvalue::Ref(__binding_0, __binding_1, __binding_2) => {
                        Rvalue::Ref(::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
                                __folder),
                            ::rustc_middle::ty::TypeFoldable::fold_with(__binding_2,
                                __folder))
                    }
                    Rvalue::ThreadLocalRef(__binding_0) => {
                        Rvalue::ThreadLocalRef(::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder))
                    }
                    Rvalue::RawPtr(__binding_0, __binding_1) => {
                        Rvalue::RawPtr(::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
                                __folder))
                    }
                    Rvalue::Cast(__binding_0, __binding_1, __binding_2) => {
                        Rvalue::Cast(::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
                                __folder),
                            ::rustc_middle::ty::TypeFoldable::fold_with(__binding_2,
                                __folder))
                    }
                    Rvalue::BinaryOp(__binding_0, __binding_1) => {
                        Rvalue::BinaryOp(::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
                                __folder))
                    }
                    Rvalue::UnaryOp(__binding_0, __binding_1) => {
                        Rvalue::UnaryOp(::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
                                __folder))
                    }
                    Rvalue::Discriminant(__binding_0) => {
                        Rvalue::Discriminant(::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder))
                    }
                    Rvalue::Aggregate(__binding_0, __binding_1) => {
                        Rvalue::Aggregate(::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
                                __folder))
                    }
                    Rvalue::ShallowInitBox(__binding_0, __binding_1) => {
                        Rvalue::ShallowInitBox(::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
                                __folder))
                    }
                    Rvalue::CopyForDeref(__binding_0) => {
                        Rvalue::CopyForDeref(::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder))
                    }
                    Rvalue::WrapUnsafeBinder(__binding_0, __binding_1) => {
                        Rvalue::WrapUnsafeBinder(::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
                                __folder))
                    }
                }
            }
        }
    };TypeFoldable, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeVisitable<::rustc_middle::ty::TyCtxt<'tcx>>
            for Rvalue<'tcx> {
            fn visit_with<__V: ::rustc_middle::ty::TypeVisitor<::rustc_middle::ty::TyCtxt<'tcx>>>(&self,
                __visitor: &mut __V) -> __V::Result {
                match *self {
                    Rvalue::Use(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);
                                }
                            }
                        }
                    }
                    Rvalue::Repeat(ref __binding_0, 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);
                                }
                            }
                        }
                    }
                    Rvalue::Ref(ref __binding_0, ref __binding_1,
                        ref __binding_2) => {
                        {
                            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);
                                }
                            }
                        }
                    }
                    Rvalue::ThreadLocalRef(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);
                                }
                            }
                        }
                    }
                    Rvalue::RawPtr(ref __binding_0, 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);
                                }
                            }
                        }
                    }
                    Rvalue::Cast(ref __binding_0, ref __binding_1,
                        ref __binding_2) => {
                        {
                            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);
                                }
                            }
                        }
                    }
                    Rvalue::BinaryOp(ref __binding_0, 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);
                                }
                            }
                        }
                    }
                    Rvalue::UnaryOp(ref __binding_0, 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);
                                }
                            }
                        }
                    }
                    Rvalue::Discriminant(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);
                                }
                            }
                        }
                    }
                    Rvalue::Aggregate(ref __binding_0, 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);
                                }
                            }
                        }
                    }
                    Rvalue::ShallowInitBox(ref __binding_0, 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);
                                }
                            }
                        }
                    }
                    Rvalue::CopyForDeref(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);
                                }
                            }
                        }
                    }
                    Rvalue::WrapUnsafeBinder(ref __binding_0, 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)]
1369pub enum Rvalue<'tcx> {
1370    /// Yields the operand unchanged
1371    Use(Operand<'tcx>),
1372
1373    /// Creates an array where each element is the value of the operand.
1374    ///
1375    /// Corresponds to source code like `[x; 32]`.
1376    Repeat(Operand<'tcx>, ty::Const<'tcx>),
1377
1378    /// Creates a reference of the indicated kind to the place.
1379    ///
1380    /// There is not much to document here, because besides the obvious parts the semantics of this
1381    /// are essentially entirely a part of the aliasing model. There are many UCG issues discussing
1382    /// exactly what the behavior of this operation should be.
1383    ///
1384    /// `Shallow` borrows are disallowed after drop lowering.
1385    Ref(Region<'tcx>, BorrowKind, Place<'tcx>),
1386
1387    /// Creates a pointer/reference to the given thread local.
1388    ///
1389    /// The yielded type is a `*mut T` if the static is mutable, otherwise if the static is extern a
1390    /// `*const T`, and if neither of those apply a `&T`.
1391    ///
1392    /// **Note:** This is a runtime operation that actually executes code and is in this sense more
1393    /// like a function call. Also, eliminating dead stores of this rvalue causes `fn main() {}` to
1394    /// SIGILL for some reason that I (JakobDegen) never got a chance to look into.
1395    ///
1396    /// **Needs clarification**: Are there weird additional semantics here related to the runtime
1397    /// nature of this operation?
1398    ThreadLocalRef(DefId),
1399
1400    /// Creates a raw pointer with the indicated mutability to the place.
1401    ///
1402    /// This is generated by pointer casts like `&v as *const _` or raw borrow expressions like
1403    /// `&raw const v`.
1404    ///
1405    /// Like with references, the semantics of this operation are heavily dependent on the aliasing
1406    /// model.
1407    RawPtr(RawPtrKind, Place<'tcx>),
1408
1409    /// Performs essentially all of the casts that can be performed via `as`.
1410    ///
1411    /// This allows for casts from/to a variety of types.
1412    ///
1413    /// **FIXME**: Document exactly which `CastKind`s allow which types of casts.
1414    Cast(CastKind, Operand<'tcx>, Ty<'tcx>),
1415
1416    /// * `Offset` has the same semantics as [`offset`](pointer::offset), except that the second
1417    ///   parameter may be a `usize` as well.
1418    /// * The comparison operations accept `bool`s, `char`s, signed or unsigned integers, floats,
1419    ///   raw pointers, or function pointers and return a `bool`. The types of the operands must be
1420    ///   matching, up to the usual caveat of the lifetimes in function pointers.
1421    /// * Left and right shift operations accept signed or unsigned integers not necessarily of the
1422    ///   same type and return a value of the same type as their LHS. Like in Rust, the RHS is
1423    ///   truncated as needed.
1424    /// * The `Bit*` operations accept signed integers, unsigned integers, or bools with matching
1425    ///   types and return a value of that type.
1426    /// * The `FooWithOverflow` are like the `Foo`, but returning `(T, bool)` instead of just `T`,
1427    ///   where the `bool` is true if the result is not equal to the infinite-precision result.
1428    /// * The remaining operations accept signed integers, unsigned integers, or floats with
1429    ///   matching types and return a value of that type.
1430    BinaryOp(BinOp, Box<(Operand<'tcx>, Operand<'tcx>)>),
1431
1432    /// Exactly like `BinaryOp`, but less operands.
1433    ///
1434    /// Also does two's-complement arithmetic. Negation requires a signed integer or a float;
1435    /// bitwise not requires a signed integer, unsigned integer, or bool. Both operation kinds
1436    /// return a value with the same type as their operand.
1437    UnaryOp(UnOp, Operand<'tcx>),
1438
1439    /// Computes the discriminant of the place, returning it as an integer of type
1440    /// [`discriminant_ty`]. Returns zero for types without discriminant.
1441    ///
1442    /// The validity requirements for the underlying value are undecided for this rvalue, see
1443    /// [#91095]. Note too that the value of the discriminant is not the same thing as the
1444    /// variant index; use [`discriminant_for_variant`] to convert.
1445    ///
1446    /// [`discriminant_ty`]: crate::ty::Ty::discriminant_ty
1447    /// [#91095]: https://github.com/rust-lang/rust/issues/91095
1448    /// [`discriminant_for_variant`]: crate::ty::Ty::discriminant_for_variant
1449    Discriminant(Place<'tcx>),
1450
1451    /// Creates an aggregate value, like a tuple or struct.
1452    ///
1453    /// This is needed because dataflow analysis needs to distinguish
1454    /// `dest = Foo { x: ..., y: ... }` from `dest.x = ...; dest.y = ...;` in the case that `Foo`
1455    /// has a destructor.
1456    ///
1457    /// Disallowed after deaggregation for all aggregate kinds except `Array` and `Coroutine`. After
1458    /// coroutine lowering, `Coroutine` aggregate kinds are disallowed too.
1459    Aggregate(Box<AggregateKind<'tcx>>, IndexVec<FieldIdx, Operand<'tcx>>),
1460
1461    /// Transmutes a `*mut u8` into shallow-initialized `Box<T>`.
1462    ///
1463    /// This is different from a normal transmute because dataflow analysis will treat the box as
1464    /// initialized but its content as uninitialized. Like other pointer casts, this in general
1465    /// affects alias analysis.
1466    ShallowInitBox(Operand<'tcx>, Ty<'tcx>),
1467
1468    /// A CopyForDeref is equivalent to a read from a place at the
1469    /// codegen level, but is treated specially by drop elaboration. When such a read happens, it
1470    /// is guaranteed (via nature of the mir_opt `Derefer` in rustc_mir_transform/src/deref_separator)
1471    /// that the returned value is written into a `DerefTemp` local and that its only use is a deref operation,
1472    /// immediately followed by one or more projections. Drop elaboration treats this rvalue as if the
1473    /// read never happened and just projects further. This allows simplifying various MIR
1474    /// optimizations and codegen backends that previously had to handle deref operations anywhere
1475    /// in a place.
1476    ///
1477    /// Disallowed in runtime MIR and is replaced by normal copies.
1478    CopyForDeref(Place<'tcx>),
1479
1480    /// Wraps a value in an unsafe binder.
1481    WrapUnsafeBinder(Operand<'tcx>, Ty<'tcx>),
1482}
1483
1484#[derive(#[automatically_derived]
impl ::core::clone::Clone for CastKind {
    #[inline]
    fn clone(&self) -> CastKind {
        let _: ::core::clone::AssertParamIsClone<PointerCoercion>;
        let _: ::core::clone::AssertParamIsClone<CoercionSource>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::marker::Copy for CastKind { }Copy, #[automatically_derived]
impl ::core::fmt::Debug for CastKind {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            CastKind::PointerExposeProvenance =>
                ::core::fmt::Formatter::write_str(f,
                    "PointerExposeProvenance"),
            CastKind::PointerWithExposedProvenance =>
                ::core::fmt::Formatter::write_str(f,
                    "PointerWithExposedProvenance"),
            CastKind::PointerCoercion(__self_0, __self_1) =>
                ::core::fmt::Formatter::debug_tuple_field2_finish(f,
                    "PointerCoercion", __self_0, &__self_1),
            CastKind::IntToInt =>
                ::core::fmt::Formatter::write_str(f, "IntToInt"),
            CastKind::FloatToInt =>
                ::core::fmt::Formatter::write_str(f, "FloatToInt"),
            CastKind::FloatToFloat =>
                ::core::fmt::Formatter::write_str(f, "FloatToFloat"),
            CastKind::IntToFloat =>
                ::core::fmt::Formatter::write_str(f, "IntToFloat"),
            CastKind::PtrToPtr =>
                ::core::fmt::Formatter::write_str(f, "PtrToPtr"),
            CastKind::FnPtrToPtr =>
                ::core::fmt::Formatter::write_str(f, "FnPtrToPtr"),
            CastKind::Transmute =>
                ::core::fmt::Formatter::write_str(f, "Transmute"),
            CastKind::Subtype =>
                ::core::fmt::Formatter::write_str(f, "Subtype"),
        }
    }
}Debug, #[automatically_derived]
impl ::core::cmp::PartialEq for CastKind {
    #[inline]
    fn eq(&self, other: &CastKind) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr &&
            match (self, other) {
                (CastKind::PointerCoercion(__self_0, __self_1),
                    CastKind::PointerCoercion(__arg1_0, __arg1_1)) =>
                    __self_0 == __arg1_0 && __self_1 == __arg1_1,
                _ => true,
            }
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for CastKind {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_receiver_is_total_eq(&self) -> () {
        let _: ::core::cmp::AssertParamIsEq<PointerCoercion>;
        let _: ::core::cmp::AssertParamIsEq<CoercionSource>;
    }
}Eq, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for CastKind {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        CastKind::PointerExposeProvenance => { 0usize }
                        CastKind::PointerWithExposedProvenance => { 1usize }
                        CastKind::PointerCoercion(ref __binding_0, ref __binding_1)
                            => {
                            2usize
                        }
                        CastKind::IntToInt => { 3usize }
                        CastKind::FloatToInt => { 4usize }
                        CastKind::FloatToFloat => { 5usize }
                        CastKind::IntToFloat => { 6usize }
                        CastKind::PtrToPtr => { 7usize }
                        CastKind::FnPtrToPtr => { 8usize }
                        CastKind::Transmute => { 9usize }
                        CastKind::Subtype => { 10usize }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    CastKind::PointerExposeProvenance => {}
                    CastKind::PointerWithExposedProvenance => {}
                    CastKind::PointerCoercion(ref __binding_0, ref __binding_1)
                        => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                    }
                    CastKind::IntToInt => {}
                    CastKind::FloatToInt => {}
                    CastKind::FloatToFloat => {}
                    CastKind::IntToFloat => {}
                    CastKind::PtrToPtr => {}
                    CastKind::FnPtrToPtr => {}
                    CastKind::Transmute => {}
                    CastKind::Subtype => {}
                }
            }
        }
    };TyEncodable, const _: () =
    {
        impl<'tcx, __D: ::rustc_middle::ty::codec::TyDecoder<'tcx>>
            ::rustc_serialize::Decodable<__D> for CastKind {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => { CastKind::PointerExposeProvenance }
                    1usize => { CastKind::PointerWithExposedProvenance }
                    2usize => {
                        CastKind::PointerCoercion(::rustc_serialize::Decodable::decode(__decoder),
                            ::rustc_serialize::Decodable::decode(__decoder))
                    }
                    3usize => { CastKind::IntToInt }
                    4usize => { CastKind::FloatToInt }
                    5usize => { CastKind::FloatToFloat }
                    6usize => { CastKind::IntToFloat }
                    7usize => { CastKind::PtrToPtr }
                    8usize => { CastKind::FnPtrToPtr }
                    9usize => { CastKind::Transmute }
                    10usize => { CastKind::Subtype }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `CastKind`, expected 0..11, actual {0}",
                                n));
                    }
                }
            }
        }
    };TyDecodable, #[automatically_derived]
impl ::core::hash::Hash for CastKind {
    #[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 {
            CastKind::PointerCoercion(__self_0, __self_1) => {
                ::core::hash::Hash::hash(__self_0, state);
                ::core::hash::Hash::hash(__self_1, state)
            }
            _ => {}
        }
    }
}Hash, const _: () =
    {
        impl<'__ctx>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_query_system::ich::StableHashingContext<'__ctx>>
            for CastKind {
            #[inline]
            fn hash_stable(&self,
                __hcx:
                    &mut ::rustc_query_system::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                ::std::mem::discriminant(self).hash_stable(__hcx, __hasher);
                match *self {
                    CastKind::PointerExposeProvenance => {}
                    CastKind::PointerWithExposedProvenance => {}
                    CastKind::PointerCoercion(ref __binding_0, ref __binding_1)
                        => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                    }
                    CastKind::IntToInt => {}
                    CastKind::FloatToInt => {}
                    CastKind::FloatToFloat => {}
                    CastKind::IntToFloat => {}
                    CastKind::PtrToPtr => {}
                    CastKind::FnPtrToPtr => {}
                    CastKind::Transmute => {}
                    CastKind::Subtype => {}
                }
            }
        }
    };HashStable)]
1485pub enum CastKind {
1486    /// An exposing pointer to address cast. A cast between a pointer and an integer type, or
1487    /// between a function pointer and an integer type.
1488    /// See the docs on `expose_provenance` for more details.
1489    PointerExposeProvenance,
1490    /// An address-to-pointer cast that picks up an exposed provenance.
1491    /// See the docs on `with_exposed_provenance` for more details.
1492    PointerWithExposedProvenance,
1493    /// Pointer related casts that are done by coercions. Note that reference-to-raw-ptr casts are
1494    /// translated into `&raw mut/const *r`, i.e., they are not actually casts.
1495    ///
1496    /// The following are allowed in [`AnalysisPhase::Initial`] as they're needed for borrowck,
1497    /// but after that are forbidden (including in all phases of runtime MIR):
1498    /// * [`PointerCoercion::ArrayToPointer`]
1499    /// * [`PointerCoercion::MutToConstPointer`]
1500    ///
1501    /// Both are runtime nops, so should be [`CastKind::PtrToPtr`] instead in runtime MIR.
1502    PointerCoercion(PointerCoercion, CoercionSource),
1503    IntToInt,
1504    FloatToInt,
1505    FloatToFloat,
1506    IntToFloat,
1507    PtrToPtr,
1508    FnPtrToPtr,
1509    /// Reinterpret the bits of the input as a different type.
1510    ///
1511    /// MIR is well-formed if the input and output types have different sizes,
1512    /// but running a transmute between differently-sized types is UB.
1513    Transmute,
1514
1515    /// A `Subtype` cast is applied to any `StatementKind::Assign` where
1516    /// type of lvalue doesn't match the type of rvalue, the primary goal is making subtyping
1517    /// explicit during optimizations and codegen.
1518    ///
1519    /// This cast doesn't impact the runtime behavior of the program except for potentially changing
1520    /// some type metadata of the interpreter or codegen backend.
1521    ///
1522    /// This goal is achieved with mir_transform pass `Subtyper`, which runs right after
1523    /// borrowchecker, as we only care about subtyping that can affect trait selection and
1524    /// `TypeId`.
1525    Subtype,
1526}
1527
1528/// Represents how a [`CastKind::PointerCoercion`] was constructed.
1529/// Used only for diagnostics.
1530#[derive(#[automatically_derived]
impl ::core::clone::Clone for CoercionSource {
    #[inline]
    fn clone(&self) -> CoercionSource { *self }
}Clone, #[automatically_derived]
impl ::core::marker::Copy for CoercionSource { }Copy, #[automatically_derived]
impl ::core::fmt::Debug for CoercionSource {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                CoercionSource::AsCast => "AsCast",
                CoercionSource::Implicit => "Implicit",
            })
    }
}Debug, #[automatically_derived]
impl ::core::cmp::PartialEq for CoercionSource {
    #[inline]
    fn eq(&self, other: &CoercionSource) -> 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 CoercionSource {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_receiver_is_total_eq(&self) -> () {}
}Eq, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for CoercionSource {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        CoercionSource::AsCast => { 0usize }
                        CoercionSource::Implicit => { 1usize }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    CoercionSource::AsCast => {}
                    CoercionSource::Implicit => {}
                }
            }
        }
    };TyEncodable, const _: () =
    {
        impl<'tcx, __D: ::rustc_middle::ty::codec::TyDecoder<'tcx>>
            ::rustc_serialize::Decodable<__D> for CoercionSource {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => { CoercionSource::AsCast }
                    1usize => { CoercionSource::Implicit }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `CoercionSource`, expected 0..2, actual {0}",
                                n));
                    }
                }
            }
        }
    };TyDecodable, #[automatically_derived]
impl ::core::hash::Hash for CoercionSource {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) -> () {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        ::core::hash::Hash::hash(&__self_discr, state)
    }
}Hash, const _: () =
    {
        impl<'__ctx>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_query_system::ich::StableHashingContext<'__ctx>>
            for CoercionSource {
            #[inline]
            fn hash_stable(&self,
                __hcx:
                    &mut ::rustc_query_system::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                ::std::mem::discriminant(self).hash_stable(__hcx, __hasher);
                match *self {
                    CoercionSource::AsCast => {}
                    CoercionSource::Implicit => {}
                }
            }
        }
    };HashStable)]
1531pub enum CoercionSource {
1532    /// The coercion was manually written by the user with an `as` cast.
1533    AsCast,
1534    /// The coercion was automatically inserted by the compiler.
1535    Implicit,
1536}
1537
1538#[derive(#[automatically_derived]
impl<'tcx> ::core::clone::Clone for AggregateKind<'tcx> {
    #[inline]
    fn clone(&self) -> AggregateKind<'tcx> {
        match self {
            AggregateKind::Array(__self_0) =>
                AggregateKind::Array(::core::clone::Clone::clone(__self_0)),
            AggregateKind::Tuple => AggregateKind::Tuple,
            AggregateKind::Adt(__self_0, __self_1, __self_2, __self_3,
                __self_4) =>
                AggregateKind::Adt(::core::clone::Clone::clone(__self_0),
                    ::core::clone::Clone::clone(__self_1),
                    ::core::clone::Clone::clone(__self_2),
                    ::core::clone::Clone::clone(__self_3),
                    ::core::clone::Clone::clone(__self_4)),
            AggregateKind::Closure(__self_0, __self_1) =>
                AggregateKind::Closure(::core::clone::Clone::clone(__self_0),
                    ::core::clone::Clone::clone(__self_1)),
            AggregateKind::Coroutine(__self_0, __self_1) =>
                AggregateKind::Coroutine(::core::clone::Clone::clone(__self_0),
                    ::core::clone::Clone::clone(__self_1)),
            AggregateKind::CoroutineClosure(__self_0, __self_1) =>
                AggregateKind::CoroutineClosure(::core::clone::Clone::clone(__self_0),
                    ::core::clone::Clone::clone(__self_1)),
            AggregateKind::RawPtr(__self_0, __self_1) =>
                AggregateKind::RawPtr(::core::clone::Clone::clone(__self_0),
                    ::core::clone::Clone::clone(__self_1)),
        }
    }
}Clone, #[automatically_derived]
impl<'tcx> ::core::fmt::Debug for AggregateKind<'tcx> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            AggregateKind::Array(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Array",
                    &__self_0),
            AggregateKind::Tuple =>
                ::core::fmt::Formatter::write_str(f, "Tuple"),
            AggregateKind::Adt(__self_0, __self_1, __self_2, __self_3,
                __self_4) =>
                ::core::fmt::Formatter::debug_tuple_field5_finish(f, "Adt",
                    __self_0, __self_1, __self_2, __self_3, &__self_4),
            AggregateKind::Closure(__self_0, __self_1) =>
                ::core::fmt::Formatter::debug_tuple_field2_finish(f,
                    "Closure", __self_0, &__self_1),
            AggregateKind::Coroutine(__self_0, __self_1) =>
                ::core::fmt::Formatter::debug_tuple_field2_finish(f,
                    "Coroutine", __self_0, &__self_1),
            AggregateKind::CoroutineClosure(__self_0, __self_1) =>
                ::core::fmt::Formatter::debug_tuple_field2_finish(f,
                    "CoroutineClosure", __self_0, &__self_1),
            AggregateKind::RawPtr(__self_0, __self_1) =>
                ::core::fmt::Formatter::debug_tuple_field2_finish(f, "RawPtr",
                    __self_0, &__self_1),
        }
    }
}Debug, #[automatically_derived]
impl<'tcx> ::core::cmp::PartialEq for AggregateKind<'tcx> {
    #[inline]
    fn eq(&self, other: &AggregateKind<'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) {
                (AggregateKind::Array(__self_0),
                    AggregateKind::Array(__arg1_0)) => __self_0 == __arg1_0,
                (AggregateKind::Adt(__self_0, __self_1, __self_2, __self_3,
                    __self_4),
                    AggregateKind::Adt(__arg1_0, __arg1_1, __arg1_2, __arg1_3,
                    __arg1_4)) =>
                    __self_0 == __arg1_0 && __self_1 == __arg1_1 &&
                                __self_2 == __arg1_2 && __self_3 == __arg1_3 &&
                        __self_4 == __arg1_4,
                (AggregateKind::Closure(__self_0, __self_1),
                    AggregateKind::Closure(__arg1_0, __arg1_1)) =>
                    __self_0 == __arg1_0 && __self_1 == __arg1_1,
                (AggregateKind::Coroutine(__self_0, __self_1),
                    AggregateKind::Coroutine(__arg1_0, __arg1_1)) =>
                    __self_0 == __arg1_0 && __self_1 == __arg1_1,
                (AggregateKind::CoroutineClosure(__self_0, __self_1),
                    AggregateKind::CoroutineClosure(__arg1_0, __arg1_1)) =>
                    __self_0 == __arg1_0 && __self_1 == __arg1_1,
                (AggregateKind::RawPtr(__self_0, __self_1),
                    AggregateKind::RawPtr(__arg1_0, __arg1_1)) =>
                    __self_0 == __arg1_0 && __self_1 == __arg1_1,
                _ => true,
            }
    }
}PartialEq, #[automatically_derived]
impl<'tcx> ::core::cmp::Eq for AggregateKind<'tcx> {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_receiver_is_total_eq(&self) -> () {
        let _: ::core::cmp::AssertParamIsEq<Ty<'tcx>>;
        let _: ::core::cmp::AssertParamIsEq<DefId>;
        let _: ::core::cmp::AssertParamIsEq<VariantIdx>;
        let _: ::core::cmp::AssertParamIsEq<GenericArgsRef<'tcx>>;
        let _: ::core::cmp::AssertParamIsEq<Option<UserTypeAnnotationIndex>>;
        let _: ::core::cmp::AssertParamIsEq<Option<FieldIdx>>;
        let _: ::core::cmp::AssertParamIsEq<GenericArgsRef<'tcx>>;
        let _: ::core::cmp::AssertParamIsEq<GenericArgsRef<'tcx>>;
        let _: ::core::cmp::AssertParamIsEq<GenericArgsRef<'tcx>>;
        let _: ::core::cmp::AssertParamIsEq<Ty<'tcx>>;
        let _: ::core::cmp::AssertParamIsEq<Mutability>;
    }
}Eq, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for AggregateKind<'tcx> {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        AggregateKind::Array(ref __binding_0) => { 0usize }
                        AggregateKind::Tuple => { 1usize }
                        AggregateKind::Adt(ref __binding_0, ref __binding_1,
                            ref __binding_2, ref __binding_3, ref __binding_4) => {
                            2usize
                        }
                        AggregateKind::Closure(ref __binding_0, ref __binding_1) =>
                            {
                            3usize
                        }
                        AggregateKind::Coroutine(ref __binding_0, ref __binding_1)
                            => {
                            4usize
                        }
                        AggregateKind::CoroutineClosure(ref __binding_0,
                            ref __binding_1) => {
                            5usize
                        }
                        AggregateKind::RawPtr(ref __binding_0, ref __binding_1) => {
                            6usize
                        }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    AggregateKind::Array(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    AggregateKind::Tuple => {}
                    AggregateKind::Adt(ref __binding_0, ref __binding_1,
                        ref __binding_2, ref __binding_3, 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);
                    }
                    AggregateKind::Closure(ref __binding_0, ref __binding_1) =>
                        {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                    }
                    AggregateKind::Coroutine(ref __binding_0, ref __binding_1)
                        => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                    }
                    AggregateKind::CoroutineClosure(ref __binding_0,
                        ref __binding_1) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                    }
                    AggregateKind::RawPtr(ref __binding_0, 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 AggregateKind<'tcx> {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => {
                        AggregateKind::Array(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    1usize => { AggregateKind::Tuple }
                    2usize => {
                        AggregateKind::Adt(::rustc_serialize::Decodable::decode(__decoder),
                            ::rustc_serialize::Decodable::decode(__decoder),
                            ::rustc_serialize::Decodable::decode(__decoder),
                            ::rustc_serialize::Decodable::decode(__decoder),
                            ::rustc_serialize::Decodable::decode(__decoder))
                    }
                    3usize => {
                        AggregateKind::Closure(::rustc_serialize::Decodable::decode(__decoder),
                            ::rustc_serialize::Decodable::decode(__decoder))
                    }
                    4usize => {
                        AggregateKind::Coroutine(::rustc_serialize::Decodable::decode(__decoder),
                            ::rustc_serialize::Decodable::decode(__decoder))
                    }
                    5usize => {
                        AggregateKind::CoroutineClosure(::rustc_serialize::Decodable::decode(__decoder),
                            ::rustc_serialize::Decodable::decode(__decoder))
                    }
                    6usize => {
                        AggregateKind::RawPtr(::rustc_serialize::Decodable::decode(__decoder),
                            ::rustc_serialize::Decodable::decode(__decoder))
                    }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `AggregateKind`, expected 0..7, actual {0}",
                                n));
                    }
                }
            }
        }
    };TyDecodable, #[automatically_derived]
impl<'tcx> ::core::hash::Hash for AggregateKind<'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 {
            AggregateKind::Array(__self_0) =>
                ::core::hash::Hash::hash(__self_0, state),
            AggregateKind::Adt(__self_0, __self_1, __self_2, __self_3,
                __self_4) => {
                ::core::hash::Hash::hash(__self_0, state);
                ::core::hash::Hash::hash(__self_1, state);
                ::core::hash::Hash::hash(__self_2, state);
                ::core::hash::Hash::hash(__self_3, state);
                ::core::hash::Hash::hash(__self_4, state)
            }
            AggregateKind::Closure(__self_0, __self_1) => {
                ::core::hash::Hash::hash(__self_0, state);
                ::core::hash::Hash::hash(__self_1, state)
            }
            AggregateKind::Coroutine(__self_0, __self_1) => {
                ::core::hash::Hash::hash(__self_0, state);
                ::core::hash::Hash::hash(__self_1, state)
            }
            AggregateKind::CoroutineClosure(__self_0, __self_1) => {
                ::core::hash::Hash::hash(__self_0, state);
                ::core::hash::Hash::hash(__self_1, state)
            }
            AggregateKind::RawPtr(__self_0, __self_1) => {
                ::core::hash::Hash::hash(__self_0, state);
                ::core::hash::Hash::hash(__self_1, state)
            }
            _ => {}
        }
    }
}Hash, const _: () =
    {
        impl<'tcx, '__ctx>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_query_system::ich::StableHashingContext<'__ctx>>
            for AggregateKind<'tcx> {
            #[inline]
            fn hash_stable(&self,
                __hcx:
                    &mut ::rustc_query_system::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                ::std::mem::discriminant(self).hash_stable(__hcx, __hasher);
                match *self {
                    AggregateKind::Array(ref __binding_0) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                    AggregateKind::Tuple => {}
                    AggregateKind::Adt(ref __binding_0, ref __binding_1,
                        ref __binding_2, ref __binding_3, ref __binding_4) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                        { __binding_2.hash_stable(__hcx, __hasher); }
                        { __binding_3.hash_stable(__hcx, __hasher); }
                        { __binding_4.hash_stable(__hcx, __hasher); }
                    }
                    AggregateKind::Closure(ref __binding_0, ref __binding_1) =>
                        {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                    }
                    AggregateKind::Coroutine(ref __binding_0, ref __binding_1)
                        => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                    }
                    AggregateKind::CoroutineClosure(ref __binding_0,
                        ref __binding_1) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                    }
                    AggregateKind::RawPtr(ref __binding_0, ref __binding_1) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                    }
                }
            }
        }
    };HashStable)]
1539#[derive(const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeFoldable<::rustc_middle::ty::TyCtxt<'tcx>>
            for AggregateKind<'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 {
                        AggregateKind::Array(__binding_0) => {
                            AggregateKind::Array(::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?)
                        }
                        AggregateKind::Tuple => { AggregateKind::Tuple }
                        AggregateKind::Adt(__binding_0, __binding_1, __binding_2,
                            __binding_3, __binding_4) => {
                            AggregateKind::Adt(::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?,
                                ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_2,
                                        __folder)?,
                                ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_3,
                                        __folder)?,
                                ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_4,
                                        __folder)?)
                        }
                        AggregateKind::Closure(__binding_0, __binding_1) => {
                            AggregateKind::Closure(::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?)
                        }
                        AggregateKind::Coroutine(__binding_0, __binding_1) => {
                            AggregateKind::Coroutine(::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?)
                        }
                        AggregateKind::CoroutineClosure(__binding_0, __binding_1) =>
                            {
                            AggregateKind::CoroutineClosure(::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?)
                        }
                        AggregateKind::RawPtr(__binding_0, __binding_1) => {
                            AggregateKind::RawPtr(::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                ::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 {
                    AggregateKind::Array(__binding_0) => {
                        AggregateKind::Array(::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder))
                    }
                    AggregateKind::Tuple => { AggregateKind::Tuple }
                    AggregateKind::Adt(__binding_0, __binding_1, __binding_2,
                        __binding_3, __binding_4) => {
                        AggregateKind::Adt(::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
                                __folder),
                            ::rustc_middle::ty::TypeFoldable::fold_with(__binding_2,
                                __folder),
                            ::rustc_middle::ty::TypeFoldable::fold_with(__binding_3,
                                __folder),
                            ::rustc_middle::ty::TypeFoldable::fold_with(__binding_4,
                                __folder))
                    }
                    AggregateKind::Closure(__binding_0, __binding_1) => {
                        AggregateKind::Closure(::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
                                __folder))
                    }
                    AggregateKind::Coroutine(__binding_0, __binding_1) => {
                        AggregateKind::Coroutine(::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
                                __folder))
                    }
                    AggregateKind::CoroutineClosure(__binding_0, __binding_1) =>
                        {
                        AggregateKind::CoroutineClosure(::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
                                __folder))
                    }
                    AggregateKind::RawPtr(__binding_0, __binding_1) => {
                        AggregateKind::RawPtr(::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
                                __folder))
                    }
                }
            }
        }
    };TypeFoldable, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeVisitable<::rustc_middle::ty::TyCtxt<'tcx>>
            for AggregateKind<'tcx> {
            fn visit_with<__V: ::rustc_middle::ty::TypeVisitor<::rustc_middle::ty::TyCtxt<'tcx>>>(&self,
                __visitor: &mut __V) -> __V::Result {
                match *self {
                    AggregateKind::Array(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);
                                }
                            }
                        }
                    }
                    AggregateKind::Tuple => {}
                    AggregateKind::Adt(ref __binding_0, ref __binding_1,
                        ref __binding_2, ref __binding_3, 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);
                                }
                            }
                        }
                    }
                    AggregateKind::Closure(ref __binding_0, 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);
                                }
                            }
                        }
                    }
                    AggregateKind::Coroutine(ref __binding_0, 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);
                                }
                            }
                        }
                    }
                    AggregateKind::CoroutineClosure(ref __binding_0,
                        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);
                                }
                            }
                        }
                    }
                    AggregateKind::RawPtr(ref __binding_0, 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)]
1540pub enum AggregateKind<'tcx> {
1541    /// The type is of the element
1542    Array(Ty<'tcx>),
1543    Tuple,
1544
1545    /// The second field is the variant index. It's equal to 0 for struct
1546    /// and union expressions. The last field is the
1547    /// active field number and is present only for union expressions
1548    /// -- e.g., for a union expression `SomeUnion { c: .. }`, the
1549    /// active field index would identity the field `c`
1550    Adt(DefId, VariantIdx, GenericArgsRef<'tcx>, Option<UserTypeAnnotationIndex>, Option<FieldIdx>),
1551
1552    Closure(DefId, GenericArgsRef<'tcx>),
1553    Coroutine(DefId, GenericArgsRef<'tcx>),
1554    CoroutineClosure(DefId, GenericArgsRef<'tcx>),
1555
1556    /// Construct a raw pointer from the data pointer and metadata.
1557    ///
1558    /// The `Ty` here is the type of the *pointee*, not the pointer itself.
1559    /// The `Mutability` indicates whether this produces a `*const` or `*mut`.
1560    ///
1561    /// The [`Rvalue::Aggregate`] operands for thus must be
1562    ///
1563    /// 0. A raw pointer of matching mutability with any [`core::ptr::Thin`] pointee
1564    /// 1. A value of the appropriate [`core::ptr::Pointee::Metadata`] type
1565    ///
1566    /// *Both* operands must always be included, even the unit value if this is
1567    /// creating a thin pointer. If you're just converting between thin pointers,
1568    /// you may want an [`Rvalue::Cast`] with [`CastKind::PtrToPtr`] instead.
1569    RawPtr(Ty<'tcx>, Mutability),
1570}
1571
1572#[derive(#[automatically_derived]
impl ::core::marker::Copy for RuntimeChecks { }Copy, #[automatically_derived]
impl ::core::clone::Clone for RuntimeChecks {
    #[inline]
    fn clone(&self) -> RuntimeChecks { *self }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for RuntimeChecks {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                RuntimeChecks::UbChecks => "UbChecks",
                RuntimeChecks::ContractChecks => "ContractChecks",
                RuntimeChecks::OverflowChecks => "OverflowChecks",
            })
    }
}Debug, #[automatically_derived]
impl ::core::cmp::PartialEq for RuntimeChecks {
    #[inline]
    fn eq(&self, other: &RuntimeChecks) -> 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 RuntimeChecks {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_receiver_is_total_eq(&self) -> () {}
}Eq, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for RuntimeChecks {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        RuntimeChecks::UbChecks => { 0usize }
                        RuntimeChecks::ContractChecks => { 1usize }
                        RuntimeChecks::OverflowChecks => { 2usize }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    RuntimeChecks::UbChecks => {}
                    RuntimeChecks::ContractChecks => {}
                    RuntimeChecks::OverflowChecks => {}
                }
            }
        }
    };TyEncodable, const _: () =
    {
        impl<'tcx, __D: ::rustc_middle::ty::codec::TyDecoder<'tcx>>
            ::rustc_serialize::Decodable<__D> for RuntimeChecks {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => { RuntimeChecks::UbChecks }
                    1usize => { RuntimeChecks::ContractChecks }
                    2usize => { RuntimeChecks::OverflowChecks }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `RuntimeChecks`, expected 0..3, actual {0}",
                                n));
                    }
                }
            }
        }
    };TyDecodable, #[automatically_derived]
impl ::core::hash::Hash for RuntimeChecks {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) -> () {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        ::core::hash::Hash::hash(&__self_discr, state)
    }
}Hash, const _: () =
    {
        impl<'__ctx>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_query_system::ich::StableHashingContext<'__ctx>>
            for RuntimeChecks {
            #[inline]
            fn hash_stable(&self,
                __hcx:
                    &mut ::rustc_query_system::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                ::std::mem::discriminant(self).hash_stable(__hcx, __hasher);
                match *self {
                    RuntimeChecks::UbChecks => {}
                    RuntimeChecks::ContractChecks => {}
                    RuntimeChecks::OverflowChecks => {}
                }
            }
        }
    };HashStable)]
1573pub enum RuntimeChecks {
1574    /// Returns whether we should perform some UB-checking at runtime.
1575    /// See the `ub_checks` intrinsic docs for details.
1576    UbChecks,
1577    /// Returns whether we should perform contract-checking at runtime.
1578    /// See the `contract_checks` intrinsic docs for details.
1579    ContractChecks,
1580    /// Returns whether we should perform some overflow-checking at runtime.
1581    /// See the `overflow_checks` intrinsic docs for details.
1582    OverflowChecks,
1583}
1584
1585impl RuntimeChecks {
1586    pub fn value(self, sess: &rustc_session::Session) -> bool {
1587        match self {
1588            Self::UbChecks => sess.ub_checks(),
1589            Self::ContractChecks => sess.contract_checks(),
1590            Self::OverflowChecks => sess.overflow_checks(),
1591        }
1592    }
1593}
1594
1595#[derive(#[automatically_derived]
impl ::core::marker::Copy for UnOp { }Copy, #[automatically_derived]
impl ::core::clone::Clone for UnOp {
    #[inline]
    fn clone(&self) -> UnOp { *self }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for UnOp {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                UnOp::Not => "Not",
                UnOp::Neg => "Neg",
                UnOp::PtrMetadata => "PtrMetadata",
            })
    }
}Debug, #[automatically_derived]
impl ::core::cmp::PartialEq for UnOp {
    #[inline]
    fn eq(&self, other: &UnOp) -> 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 UnOp {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_receiver_is_total_eq(&self) -> () {}
}Eq, #[automatically_derived]
impl ::core::hash::Hash for UnOp {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) -> () {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        ::core::hash::Hash::hash(&__self_discr, state)
    }
}Hash)]
1596#[derive(const _: () =
    {
        impl<'__ctx>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_query_system::ich::StableHashingContext<'__ctx>>
            for UnOp {
            #[inline]
            fn hash_stable(&self,
                __hcx:
                    &mut ::rustc_query_system::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                ::std::mem::discriminant(self).hash_stable(__hcx, __hasher);
                match *self {
                    UnOp::Not => {}
                    UnOp::Neg => {}
                    UnOp::PtrMetadata => {}
                }
            }
        }
    };HashStable, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for UnOp {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        UnOp::Not => { 0usize }
                        UnOp::Neg => { 1usize }
                        UnOp::PtrMetadata => { 2usize }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    UnOp::Not => {}
                    UnOp::Neg => {}
                    UnOp::PtrMetadata => {}
                }
            }
        }
    };TyEncodable, const _: () =
    {
        impl<'tcx, __D: ::rustc_middle::ty::codec::TyDecoder<'tcx>>
            ::rustc_serialize::Decodable<__D> for UnOp {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => { UnOp::Not }
                    1usize => { UnOp::Neg }
                    2usize => { UnOp::PtrMetadata }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `UnOp`, expected 0..3, actual {0}",
                                n));
                    }
                }
            }
        }
    };TyDecodable, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeFoldable<::rustc_middle::ty::TyCtxt<'tcx>>
            for UnOp {
            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 {
                        UnOp::Not => { UnOp::Not }
                        UnOp::Neg => { UnOp::Neg }
                        UnOp::PtrMetadata => { UnOp::PtrMetadata }
                    })
            }
            fn fold_with<__F: ::rustc_middle::ty::TypeFolder<::rustc_middle::ty::TyCtxt<'tcx>>>(self,
                __folder: &mut __F) -> Self {
                match self {
                    UnOp::Not => { UnOp::Not }
                    UnOp::Neg => { UnOp::Neg }
                    UnOp::PtrMetadata => { UnOp::PtrMetadata }
                }
            }
        }
    };TypeFoldable, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeVisitable<::rustc_middle::ty::TyCtxt<'tcx>>
            for UnOp {
            fn visit_with<__V: ::rustc_middle::ty::TypeVisitor<::rustc_middle::ty::TyCtxt<'tcx>>>(&self,
                __visitor: &mut __V) -> __V::Result {
                match *self {
                    UnOp::Not => {}
                    UnOp::Neg => {}
                    UnOp::PtrMetadata => {}
                }
                <__V::Result as ::rustc_middle::ty::VisitorResult>::output()
            }
        }
    };TypeVisitable)]
1597pub enum UnOp {
1598    /// The `!` operator for logical inversion
1599    Not,
1600    /// The `-` operator for negation
1601    Neg,
1602    /// Gets the metadata `M` from a `*const`/`*mut`/`&`/`&mut` to
1603    /// `impl Pointee<Metadata = M>`.
1604    ///
1605    /// For example, this will give a `()` from `*const i32`, a `usize` from
1606    /// `&mut [u8]`, or a `ptr::DynMetadata<dyn Foo>` (internally a pointer)
1607    /// from a `*mut dyn Foo`.
1608    ///
1609    /// Allowed only in [`MirPhase::Runtime`]; earlier it's an intrinsic.
1610    PtrMetadata,
1611}
1612
1613#[derive(#[automatically_derived]
impl ::core::marker::Copy for BinOp { }Copy, #[automatically_derived]
impl ::core::clone::Clone for BinOp {
    #[inline]
    fn clone(&self) -> BinOp { *self }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for BinOp {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                BinOp::Add => "Add",
                BinOp::AddUnchecked => "AddUnchecked",
                BinOp::AddWithOverflow => "AddWithOverflow",
                BinOp::Sub => "Sub",
                BinOp::SubUnchecked => "SubUnchecked",
                BinOp::SubWithOverflow => "SubWithOverflow",
                BinOp::Mul => "Mul",
                BinOp::MulUnchecked => "MulUnchecked",
                BinOp::MulWithOverflow => "MulWithOverflow",
                BinOp::Div => "Div",
                BinOp::Rem => "Rem",
                BinOp::BitXor => "BitXor",
                BinOp::BitAnd => "BitAnd",
                BinOp::BitOr => "BitOr",
                BinOp::Shl => "Shl",
                BinOp::ShlUnchecked => "ShlUnchecked",
                BinOp::Shr => "Shr",
                BinOp::ShrUnchecked => "ShrUnchecked",
                BinOp::Eq => "Eq",
                BinOp::Lt => "Lt",
                BinOp::Le => "Le",
                BinOp::Ne => "Ne",
                BinOp::Ge => "Ge",
                BinOp::Gt => "Gt",
                BinOp::Cmp => "Cmp",
                BinOp::Offset => "Offset",
            })
    }
}Debug, #[automatically_derived]
impl ::core::cmp::PartialEq for BinOp {
    #[inline]
    fn eq(&self, other: &BinOp) -> 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 BinOp {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_receiver_is_total_eq(&self) -> () {}
}Eq, #[automatically_derived]
impl ::core::hash::Hash for BinOp {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) -> () {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        ::core::hash::Hash::hash(&__self_discr, state)
    }
}Hash)]
1614#[derive(const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for BinOp {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        BinOp::Add => { 0usize }
                        BinOp::AddUnchecked => { 1usize }
                        BinOp::AddWithOverflow => { 2usize }
                        BinOp::Sub => { 3usize }
                        BinOp::SubUnchecked => { 4usize }
                        BinOp::SubWithOverflow => { 5usize }
                        BinOp::Mul => { 6usize }
                        BinOp::MulUnchecked => { 7usize }
                        BinOp::MulWithOverflow => { 8usize }
                        BinOp::Div => { 9usize }
                        BinOp::Rem => { 10usize }
                        BinOp::BitXor => { 11usize }
                        BinOp::BitAnd => { 12usize }
                        BinOp::BitOr => { 13usize }
                        BinOp::Shl => { 14usize }
                        BinOp::ShlUnchecked => { 15usize }
                        BinOp::Shr => { 16usize }
                        BinOp::ShrUnchecked => { 17usize }
                        BinOp::Eq => { 18usize }
                        BinOp::Lt => { 19usize }
                        BinOp::Le => { 20usize }
                        BinOp::Ne => { 21usize }
                        BinOp::Ge => { 22usize }
                        BinOp::Gt => { 23usize }
                        BinOp::Cmp => { 24usize }
                        BinOp::Offset => { 25usize }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    BinOp::Add => {}
                    BinOp::AddUnchecked => {}
                    BinOp::AddWithOverflow => {}
                    BinOp::Sub => {}
                    BinOp::SubUnchecked => {}
                    BinOp::SubWithOverflow => {}
                    BinOp::Mul => {}
                    BinOp::MulUnchecked => {}
                    BinOp::MulWithOverflow => {}
                    BinOp::Div => {}
                    BinOp::Rem => {}
                    BinOp::BitXor => {}
                    BinOp::BitAnd => {}
                    BinOp::BitOr => {}
                    BinOp::Shl => {}
                    BinOp::ShlUnchecked => {}
                    BinOp::Shr => {}
                    BinOp::ShrUnchecked => {}
                    BinOp::Eq => {}
                    BinOp::Lt => {}
                    BinOp::Le => {}
                    BinOp::Ne => {}
                    BinOp::Ge => {}
                    BinOp::Gt => {}
                    BinOp::Cmp => {}
                    BinOp::Offset => {}
                }
            }
        }
    };TyEncodable, const _: () =
    {
        impl<'tcx, __D: ::rustc_middle::ty::codec::TyDecoder<'tcx>>
            ::rustc_serialize::Decodable<__D> for BinOp {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => { BinOp::Add }
                    1usize => { BinOp::AddUnchecked }
                    2usize => { BinOp::AddWithOverflow }
                    3usize => { BinOp::Sub }
                    4usize => { BinOp::SubUnchecked }
                    5usize => { BinOp::SubWithOverflow }
                    6usize => { BinOp::Mul }
                    7usize => { BinOp::MulUnchecked }
                    8usize => { BinOp::MulWithOverflow }
                    9usize => { BinOp::Div }
                    10usize => { BinOp::Rem }
                    11usize => { BinOp::BitXor }
                    12usize => { BinOp::BitAnd }
                    13usize => { BinOp::BitOr }
                    14usize => { BinOp::Shl }
                    15usize => { BinOp::ShlUnchecked }
                    16usize => { BinOp::Shr }
                    17usize => { BinOp::ShrUnchecked }
                    18usize => { BinOp::Eq }
                    19usize => { BinOp::Lt }
                    20usize => { BinOp::Le }
                    21usize => { BinOp::Ne }
                    22usize => { BinOp::Ge }
                    23usize => { BinOp::Gt }
                    24usize => { BinOp::Cmp }
                    25usize => { BinOp::Offset }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `BinOp`, expected 0..26, actual {0}",
                                n));
                    }
                }
            }
        }
    };TyDecodable, const _: () =
    {
        impl<'__ctx>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_query_system::ich::StableHashingContext<'__ctx>>
            for BinOp {
            #[inline]
            fn hash_stable(&self,
                __hcx:
                    &mut ::rustc_query_system::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                ::std::mem::discriminant(self).hash_stable(__hcx, __hasher);
                match *self {
                    BinOp::Add => {}
                    BinOp::AddUnchecked => {}
                    BinOp::AddWithOverflow => {}
                    BinOp::Sub => {}
                    BinOp::SubUnchecked => {}
                    BinOp::SubWithOverflow => {}
                    BinOp::Mul => {}
                    BinOp::MulUnchecked => {}
                    BinOp::MulWithOverflow => {}
                    BinOp::Div => {}
                    BinOp::Rem => {}
                    BinOp::BitXor => {}
                    BinOp::BitAnd => {}
                    BinOp::BitOr => {}
                    BinOp::Shl => {}
                    BinOp::ShlUnchecked => {}
                    BinOp::Shr => {}
                    BinOp::ShrUnchecked => {}
                    BinOp::Eq => {}
                    BinOp::Lt => {}
                    BinOp::Le => {}
                    BinOp::Ne => {}
                    BinOp::Ge => {}
                    BinOp::Gt => {}
                    BinOp::Cmp => {}
                    BinOp::Offset => {}
                }
            }
        }
    };HashStable, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeFoldable<::rustc_middle::ty::TyCtxt<'tcx>>
            for BinOp {
            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 {
                        BinOp::Add => { BinOp::Add }
                        BinOp::AddUnchecked => { BinOp::AddUnchecked }
                        BinOp::AddWithOverflow => { BinOp::AddWithOverflow }
                        BinOp::Sub => { BinOp::Sub }
                        BinOp::SubUnchecked => { BinOp::SubUnchecked }
                        BinOp::SubWithOverflow => { BinOp::SubWithOverflow }
                        BinOp::Mul => { BinOp::Mul }
                        BinOp::MulUnchecked => { BinOp::MulUnchecked }
                        BinOp::MulWithOverflow => { BinOp::MulWithOverflow }
                        BinOp::Div => { BinOp::Div }
                        BinOp::Rem => { BinOp::Rem }
                        BinOp::BitXor => { BinOp::BitXor }
                        BinOp::BitAnd => { BinOp::BitAnd }
                        BinOp::BitOr => { BinOp::BitOr }
                        BinOp::Shl => { BinOp::Shl }
                        BinOp::ShlUnchecked => { BinOp::ShlUnchecked }
                        BinOp::Shr => { BinOp::Shr }
                        BinOp::ShrUnchecked => { BinOp::ShrUnchecked }
                        BinOp::Eq => { BinOp::Eq }
                        BinOp::Lt => { BinOp::Lt }
                        BinOp::Le => { BinOp::Le }
                        BinOp::Ne => { BinOp::Ne }
                        BinOp::Ge => { BinOp::Ge }
                        BinOp::Gt => { BinOp::Gt }
                        BinOp::Cmp => { BinOp::Cmp }
                        BinOp::Offset => { BinOp::Offset }
                    })
            }
            fn fold_with<__F: ::rustc_middle::ty::TypeFolder<::rustc_middle::ty::TyCtxt<'tcx>>>(self,
                __folder: &mut __F) -> Self {
                match self {
                    BinOp::Add => { BinOp::Add }
                    BinOp::AddUnchecked => { BinOp::AddUnchecked }
                    BinOp::AddWithOverflow => { BinOp::AddWithOverflow }
                    BinOp::Sub => { BinOp::Sub }
                    BinOp::SubUnchecked => { BinOp::SubUnchecked }
                    BinOp::SubWithOverflow => { BinOp::SubWithOverflow }
                    BinOp::Mul => { BinOp::Mul }
                    BinOp::MulUnchecked => { BinOp::MulUnchecked }
                    BinOp::MulWithOverflow => { BinOp::MulWithOverflow }
                    BinOp::Div => { BinOp::Div }
                    BinOp::Rem => { BinOp::Rem }
                    BinOp::BitXor => { BinOp::BitXor }
                    BinOp::BitAnd => { BinOp::BitAnd }
                    BinOp::BitOr => { BinOp::BitOr }
                    BinOp::Shl => { BinOp::Shl }
                    BinOp::ShlUnchecked => { BinOp::ShlUnchecked }
                    BinOp::Shr => { BinOp::Shr }
                    BinOp::ShrUnchecked => { BinOp::ShrUnchecked }
                    BinOp::Eq => { BinOp::Eq }
                    BinOp::Lt => { BinOp::Lt }
                    BinOp::Le => { BinOp::Le }
                    BinOp::Ne => { BinOp::Ne }
                    BinOp::Ge => { BinOp::Ge }
                    BinOp::Gt => { BinOp::Gt }
                    BinOp::Cmp => { BinOp::Cmp }
                    BinOp::Offset => { BinOp::Offset }
                }
            }
        }
    };TypeFoldable, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeVisitable<::rustc_middle::ty::TyCtxt<'tcx>>
            for BinOp {
            fn visit_with<__V: ::rustc_middle::ty::TypeVisitor<::rustc_middle::ty::TyCtxt<'tcx>>>(&self,
                __visitor: &mut __V) -> __V::Result {
                match *self {
                    BinOp::Add => {}
                    BinOp::AddUnchecked => {}
                    BinOp::AddWithOverflow => {}
                    BinOp::Sub => {}
                    BinOp::SubUnchecked => {}
                    BinOp::SubWithOverflow => {}
                    BinOp::Mul => {}
                    BinOp::MulUnchecked => {}
                    BinOp::MulWithOverflow => {}
                    BinOp::Div => {}
                    BinOp::Rem => {}
                    BinOp::BitXor => {}
                    BinOp::BitAnd => {}
                    BinOp::BitOr => {}
                    BinOp::Shl => {}
                    BinOp::ShlUnchecked => {}
                    BinOp::Shr => {}
                    BinOp::ShrUnchecked => {}
                    BinOp::Eq => {}
                    BinOp::Lt => {}
                    BinOp::Le => {}
                    BinOp::Ne => {}
                    BinOp::Ge => {}
                    BinOp::Gt => {}
                    BinOp::Cmp => {}
                    BinOp::Offset => {}
                }
                <__V::Result as ::rustc_middle::ty::VisitorResult>::output()
            }
        }
    };TypeVisitable)]
1615pub enum BinOp {
1616    /// The `+` operator (addition)
1617    Add,
1618    /// Like `Add`, but with UB on overflow.  (Integers only.)
1619    AddUnchecked,
1620    /// Like `Add`, but returns `(T, bool)` of both the wrapped result
1621    /// and a bool indicating whether it overflowed.
1622    AddWithOverflow,
1623    /// The `-` operator (subtraction)
1624    Sub,
1625    /// Like `Sub`, but with UB on overflow.  (Integers only.)
1626    SubUnchecked,
1627    /// Like `Sub`, but returns `(T, bool)` of both the wrapped result
1628    /// and a bool indicating whether it overflowed.
1629    SubWithOverflow,
1630    /// The `*` operator (multiplication)
1631    Mul,
1632    /// Like `Mul`, but with UB on overflow.  (Integers only.)
1633    MulUnchecked,
1634    /// Like `Mul`, but returns `(T, bool)` of both the wrapped result
1635    /// and a bool indicating whether it overflowed.
1636    MulWithOverflow,
1637    /// The `/` operator (division)
1638    ///
1639    /// For integer types, division by zero is UB, as is `MIN / -1` for signed.
1640    /// The compiler should have inserted checks prior to this.
1641    ///
1642    /// Floating-point division by zero is safe, and does not need guards.
1643    Div,
1644    /// The `%` operator (modulus)
1645    ///
1646    /// For integer types, using zero as the modulus (second operand) is UB,
1647    /// as is `MIN % -1` for signed.
1648    /// The compiler should have inserted checks prior to this.
1649    ///
1650    /// Floating-point remainder by zero is safe, and does not need guards.
1651    Rem,
1652    /// The `^` operator (bitwise xor)
1653    BitXor,
1654    /// The `&` operator (bitwise and)
1655    BitAnd,
1656    /// The `|` operator (bitwise or)
1657    BitOr,
1658    /// The `<<` operator (shift left)
1659    ///
1660    /// The offset is given by `RHS.rem_euclid(LHS::BITS)`.
1661    /// In other words, it is (uniquely) determined as follows:
1662    /// - it is "equal modulo LHS::BITS" to the RHS
1663    /// - it is in the range `0..LHS::BITS`
1664    Shl,
1665    /// Like `Shl`, but is UB if the RHS >= LHS::BITS or RHS < 0
1666    ShlUnchecked,
1667    /// The `>>` operator (shift right)
1668    ///
1669    /// The offset is given by `RHS.rem_euclid(LHS::BITS)`.
1670    /// In other words, it is (uniquely) determined as follows:
1671    /// - it is "equal modulo LHS::BITS" to the RHS
1672    /// - it is in the range `0..LHS::BITS`
1673    ///
1674    /// This is an arithmetic shift if the LHS is signed
1675    /// and a logical shift if the LHS is unsigned.
1676    Shr,
1677    /// Like `Shl`, but is UB if the RHS >= LHS::BITS or RHS < 0
1678    ShrUnchecked,
1679    /// The `==` operator (equality)
1680    Eq,
1681    /// The `<` operator (less than)
1682    Lt,
1683    /// The `<=` operator (less than or equal to)
1684    Le,
1685    /// The `!=` operator (not equal to)
1686    Ne,
1687    /// The `>=` operator (greater than or equal to)
1688    Ge,
1689    /// The `>` operator (greater than)
1690    Gt,
1691    /// The `<=>` operator (three-way comparison, like `Ord::cmp`)
1692    ///
1693    /// This is supported only on the integer types and `char`, always returning
1694    /// [`rustc_hir::LangItem::OrderingEnum`] (aka [`std::cmp::Ordering`]).
1695    ///
1696    /// [`Rvalue::BinaryOp`]`(BinOp::Cmp, A, B)` returns
1697    /// - `Ordering::Less` (`-1_i8`, as a Scalar) if `A < B`
1698    /// - `Ordering::Equal` (`0_i8`, as a Scalar) if `A == B`
1699    /// - `Ordering::Greater` (`+1_i8`, as a Scalar) if `A > B`
1700    Cmp,
1701    /// The `ptr.offset` operator
1702    Offset,
1703}
1704
1705// Assignment operators, e.g. `+=`. See comments on the corresponding variants
1706// in `BinOp` for details.
1707#[derive(#[automatically_derived]
impl ::core::marker::Copy for AssignOp { }Copy, #[automatically_derived]
impl ::core::clone::Clone for AssignOp {
    #[inline]
    fn clone(&self) -> AssignOp { *self }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for AssignOp {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                AssignOp::AddAssign => "AddAssign",
                AssignOp::SubAssign => "SubAssign",
                AssignOp::MulAssign => "MulAssign",
                AssignOp::DivAssign => "DivAssign",
                AssignOp::RemAssign => "RemAssign",
                AssignOp::BitXorAssign => "BitXorAssign",
                AssignOp::BitAndAssign => "BitAndAssign",
                AssignOp::BitOrAssign => "BitOrAssign",
                AssignOp::ShlAssign => "ShlAssign",
                AssignOp::ShrAssign => "ShrAssign",
            })
    }
}Debug, #[automatically_derived]
impl ::core::cmp::PartialEq for AssignOp {
    #[inline]
    fn eq(&self, other: &AssignOp) -> 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 AssignOp {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_receiver_is_total_eq(&self) -> () {}
}Eq, #[automatically_derived]
impl ::core::hash::Hash for AssignOp {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) -> () {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        ::core::hash::Hash::hash(&__self_discr, state)
    }
}Hash, const _: () =
    {
        impl<'__ctx>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_query_system::ich::StableHashingContext<'__ctx>>
            for AssignOp {
            #[inline]
            fn hash_stable(&self,
                __hcx:
                    &mut ::rustc_query_system::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                ::std::mem::discriminant(self).hash_stable(__hcx, __hasher);
                match *self {
                    AssignOp::AddAssign => {}
                    AssignOp::SubAssign => {}
                    AssignOp::MulAssign => {}
                    AssignOp::DivAssign => {}
                    AssignOp::RemAssign => {}
                    AssignOp::BitXorAssign => {}
                    AssignOp::BitAndAssign => {}
                    AssignOp::BitOrAssign => {}
                    AssignOp::ShlAssign => {}
                    AssignOp::ShrAssign => {}
                }
            }
        }
    };HashStable)]
1708pub enum AssignOp {
1709    AddAssign,
1710    SubAssign,
1711    MulAssign,
1712    DivAssign,
1713    RemAssign,
1714    BitXorAssign,
1715    BitAndAssign,
1716    BitOrAssign,
1717    ShlAssign,
1718    ShrAssign,
1719}
1720
1721// Sometimes `BinOp` and `AssignOp` need the same treatment. The operations
1722// covered by `AssignOp` are a subset of those covered by `BinOp`, so it makes
1723// sense to convert `AssignOp` to `BinOp`.
1724impl From<AssignOp> for BinOp {
1725    fn from(op: AssignOp) -> BinOp {
1726        match op {
1727            AssignOp::AddAssign => BinOp::Add,
1728            AssignOp::SubAssign => BinOp::Sub,
1729            AssignOp::MulAssign => BinOp::Mul,
1730            AssignOp::DivAssign => BinOp::Div,
1731            AssignOp::RemAssign => BinOp::Rem,
1732            AssignOp::BitXorAssign => BinOp::BitXor,
1733            AssignOp::BitAndAssign => BinOp::BitAnd,
1734            AssignOp::BitOrAssign => BinOp::BitOr,
1735            AssignOp::ShlAssign => BinOp::Shl,
1736            AssignOp::ShrAssign => BinOp::Shr,
1737        }
1738    }
1739}
1740
1741// Some nodes are used a lot. Make sure they don't unintentionally get bigger.
1742#[cfg(target_pointer_width = "64")]
1743mod size_asserts {
1744    use rustc_data_structures::static_assert_size;
1745
1746    use super::*;
1747    // tidy-alphabetical-start
1748    const _: [(); 32] = [(); ::std::mem::size_of::<AggregateKind<'_>>()];static_assert_size!(AggregateKind<'_>, 32);
1749    const _: [(); 24] = [(); ::std::mem::size_of::<Operand<'_>>()];static_assert_size!(Operand<'_>, 24);
1750    const _: [(); 16] = [(); ::std::mem::size_of::<Place<'_>>()];static_assert_size!(Place<'_>, 16);
1751    const _: [(); 24] = [(); ::std::mem::size_of::<PlaceElem<'_>>()];static_assert_size!(PlaceElem<'_>, 24);
1752    const _: [(); 40] = [(); ::std::mem::size_of::<Rvalue<'_>>()];static_assert_size!(Rvalue<'_>, 40);
1753    const _: [(); 16] = [(); ::std::mem::size_of::<StatementKind<'_>>()];static_assert_size!(StatementKind<'_>, 16);
1754    const _: [(); 80] = [(); ::std::mem::size_of::<TerminatorKind<'_>>()];static_assert_size!(TerminatorKind<'_>, 80);
1755    // tidy-alphabetical-end
1756}