Skip to main content

rustc_trait_selection/traits/select/
mod.rs

1//! Candidate selection. See the [rustc dev guide] for more information on how this works.
2//!
3//! [rustc dev guide]: https://rustc-dev-guide.rust-lang.org/traits/resolution.html#selection
4
5use std::cell::{Cell, RefCell};
6use std::cmp;
7use std::fmt::{self, Display};
8use std::ops::ControlFlow;
9
10use hir::def::DefKind;
11use rustc_data_structures::assert_matches;
12use rustc_data_structures::fx::{FxIndexMap, FxIndexSet};
13use rustc_data_structures::stack::ensure_sufficient_stack;
14use rustc_errors::{Diag, EmissionGuarantee};
15use rustc_hir::def_id::DefId;
16use rustc_hir::{self as hir, LangItem, find_attr};
17use rustc_infer::infer::BoundRegionConversionTime::{self, HigherRankedType};
18use rustc_infer::infer::DefineOpaqueTypes;
19use rustc_infer::infer::at::ToTrace;
20use rustc_infer::infer::relate::TypeRelation;
21use rustc_infer::traits::{PredicateObligations, TraitObligation};
22use rustc_macros::{TypeFoldable, TypeVisitable};
23use rustc_middle::bug;
24use rustc_middle::dep_graph::{DepKind, DepNodeIndex};
25pub use rustc_middle::traits::select::*;
26use rustc_middle::ty::abstract_const::NotConstEvaluatable;
27use rustc_middle::ty::error::TypeErrorToStringExt;
28use rustc_middle::ty::print::{PrintTraitRefExt as _, with_no_trimmed_paths};
29use rustc_middle::ty::{
30    self, CandidatePreferenceMode, DeepRejectCtxt, GenericArgsRef, PolyProjectionPredicate,
31    SizedTraitKind, Ty, TyCtxt, TypeFoldable, TypeVisitableExt, TypingMode, Upcast, elaborate,
32    may_use_unstable_feature,
33};
34use rustc_next_trait_solver::solve::AliasBoundKind;
35use rustc_span::Symbol;
36use tracing::{debug, instrument, trace};
37
38use self::EvaluationResult::*;
39use self::SelectionCandidate::*;
40use super::coherence::{self, Conflict};
41use super::project::ProjectionTermObligation;
42use super::util::closure_trait_ref_and_return_type;
43use super::{
44    ImplDerivedCause, Normalized, Obligation, ObligationCause, ObligationCauseCode,
45    PolyTraitObligation, PredicateObligation, Selection, SelectionError, SelectionResult,
46    TraitQueryMode, const_evaluatable, project, util, wf,
47};
48use crate::error_reporting::InferCtxtErrorExt;
49use crate::infer::{InferCtxt, InferOk, TypeFreshener};
50use crate::solve::InferCtxtSelectExt as _;
51use crate::traits::normalize::{normalize_with_depth, normalize_with_depth_to};
52use crate::traits::project::{ProjectAndUnifyResult, ProjectionCacheKeyExt};
53use crate::traits::{EvaluateConstErr, ProjectionCacheKey, effects, sizedness_fast_path};
54
55mod _match;
56mod candidate_assembly;
57mod confirmation;
58
59#[derive(#[automatically_derived]
impl<'tcx> ::core::clone::Clone for IntercrateAmbiguityCause<'tcx> {
    #[inline]
    fn clone(&self) -> IntercrateAmbiguityCause<'tcx> {
        match self {
            IntercrateAmbiguityCause::DownstreamCrate {
                trait_ref: __self_0, self_ty: __self_1 } =>
                IntercrateAmbiguityCause::DownstreamCrate {
                    trait_ref: ::core::clone::Clone::clone(__self_0),
                    self_ty: ::core::clone::Clone::clone(__self_1),
                },
            IntercrateAmbiguityCause::UpstreamCrateUpdate {
                trait_ref: __self_0, self_ty: __self_1 } =>
                IntercrateAmbiguityCause::UpstreamCrateUpdate {
                    trait_ref: ::core::clone::Clone::clone(__self_0),
                    self_ty: ::core::clone::Clone::clone(__self_1),
                },
            IntercrateAmbiguityCause::ReservationImpl { message: __self_0 } =>
                IntercrateAmbiguityCause::ReservationImpl {
                    message: ::core::clone::Clone::clone(__self_0),
                },
        }
    }
}Clone, #[automatically_derived]
impl<'tcx> ::core::fmt::Debug for IntercrateAmbiguityCause<'tcx> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            IntercrateAmbiguityCause::DownstreamCrate {
                trait_ref: __self_0, self_ty: __self_1 } =>
                ::core::fmt::Formatter::debug_struct_field2_finish(f,
                    "DownstreamCrate", "trait_ref", __self_0, "self_ty",
                    &__self_1),
            IntercrateAmbiguityCause::UpstreamCrateUpdate {
                trait_ref: __self_0, self_ty: __self_1 } =>
                ::core::fmt::Formatter::debug_struct_field2_finish(f,
                    "UpstreamCrateUpdate", "trait_ref", __self_0, "self_ty",
                    &__self_1),
            IntercrateAmbiguityCause::ReservationImpl { message: __self_0 } =>
                ::core::fmt::Formatter::debug_struct_field1_finish(f,
                    "ReservationImpl", "message", &__self_0),
        }
    }
}Debug, #[automatically_derived]
impl<'tcx> ::core::cmp::Eq for IntercrateAmbiguityCause<'tcx> {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_receiver_is_total_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<ty::TraitRef<'tcx>>;
        let _: ::core::cmp::AssertParamIsEq<Option<Ty<'tcx>>>;
        let _: ::core::cmp::AssertParamIsEq<ty::TraitRef<'tcx>>;
        let _: ::core::cmp::AssertParamIsEq<Option<Ty<'tcx>>>;
        let _: ::core::cmp::AssertParamIsEq<Symbol>;
    }
}Eq, #[automatically_derived]
impl<'tcx> ::core::cmp::PartialEq for IntercrateAmbiguityCause<'tcx> {
    #[inline]
    fn eq(&self, other: &IntercrateAmbiguityCause<'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) {
                (IntercrateAmbiguityCause::DownstreamCrate {
                    trait_ref: __self_0, self_ty: __self_1 },
                    IntercrateAmbiguityCause::DownstreamCrate {
                    trait_ref: __arg1_0, self_ty: __arg1_1 }) =>
                    __self_0 == __arg1_0 && __self_1 == __arg1_1,
                (IntercrateAmbiguityCause::UpstreamCrateUpdate {
                    trait_ref: __self_0, self_ty: __self_1 },
                    IntercrateAmbiguityCause::UpstreamCrateUpdate {
                    trait_ref: __arg1_0, self_ty: __arg1_1 }) =>
                    __self_0 == __arg1_0 && __self_1 == __arg1_1,
                (IntercrateAmbiguityCause::ReservationImpl { message: __self_0
                    }, IntercrateAmbiguityCause::ReservationImpl {
                    message: __arg1_0 }) => __self_0 == __arg1_0,
                _ => unsafe { ::core::intrinsics::unreachable() }
            }
    }
}PartialEq, #[automatically_derived]
impl<'tcx> ::core::hash::Hash for IntercrateAmbiguityCause<'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 {
            IntercrateAmbiguityCause::DownstreamCrate {
                trait_ref: __self_0, self_ty: __self_1 } => {
                ::core::hash::Hash::hash(__self_0, state);
                ::core::hash::Hash::hash(__self_1, state)
            }
            IntercrateAmbiguityCause::UpstreamCrateUpdate {
                trait_ref: __self_0, self_ty: __self_1 } => {
                ::core::hash::Hash::hash(__self_0, state);
                ::core::hash::Hash::hash(__self_1, state)
            }
            IntercrateAmbiguityCause::ReservationImpl { message: __self_0 } =>
                ::core::hash::Hash::hash(__self_0, state),
        }
    }
}Hash)]
60pub enum IntercrateAmbiguityCause<'tcx> {
61    DownstreamCrate { trait_ref: ty::TraitRef<'tcx>, self_ty: Option<Ty<'tcx>> },
62    UpstreamCrateUpdate { trait_ref: ty::TraitRef<'tcx>, self_ty: Option<Ty<'tcx>> },
63    ReservationImpl { message: Symbol },
64}
65
66impl<'tcx> IntercrateAmbiguityCause<'tcx> {
67    /// Emits notes when the overlap is caused by complex intercrate ambiguities.
68    /// See #23980 for details.
69    pub fn add_intercrate_ambiguity_hint<G: EmissionGuarantee>(&self, err: &mut Diag<'_, G>) {
70        err.note(self.intercrate_ambiguity_hint());
71    }
72
73    pub fn intercrate_ambiguity_hint(&self) -> String {
74        {
    let _guard = NoTrimmedGuard::new();
    match self {
        IntercrateAmbiguityCause::DownstreamCrate { trait_ref, self_ty } => {
            ::alloc::__export::must_use({
                    ::alloc::fmt::format(format_args!("downstream crates may implement trait `{0}`{1}",
                            trait_ref.print_trait_sugared(),
                            if let Some(self_ty) = self_ty {
                                ::alloc::__export::must_use({
                                        ::alloc::fmt::format(format_args!(" for type `{0}`",
                                                self_ty))
                                    })
                            } else { String::new() }))
                })
        }
        IntercrateAmbiguityCause::UpstreamCrateUpdate { trait_ref, self_ty }
            => {
            ::alloc::__export::must_use({
                    ::alloc::fmt::format(format_args!("upstream crates may add a new impl of trait `{0}`{1} in future versions",
                            trait_ref.print_trait_sugared(),
                            if let Some(self_ty) = self_ty {
                                ::alloc::__export::must_use({
                                        ::alloc::fmt::format(format_args!(" for type `{0}`",
                                                self_ty))
                                    })
                            } else { String::new() }))
                })
        }
        IntercrateAmbiguityCause::ReservationImpl { message } =>
            message.to_string(),
    }
}with_no_trimmed_paths!(match self {
75            IntercrateAmbiguityCause::DownstreamCrate { trait_ref, self_ty } => {
76                format!(
77                    "downstream crates may implement trait `{trait_desc}`{self_desc}",
78                    trait_desc = trait_ref.print_trait_sugared(),
79                    self_desc = if let Some(self_ty) = self_ty {
80                        format!(" for type `{self_ty}`")
81                    } else {
82                        String::new()
83                    }
84                )
85            }
86            IntercrateAmbiguityCause::UpstreamCrateUpdate { trait_ref, self_ty } => {
87                format!(
88                    "upstream crates may add a new impl of trait `{trait_desc}`{self_desc} \
89                in future versions",
90                    trait_desc = trait_ref.print_trait_sugared(),
91                    self_desc = if let Some(self_ty) = self_ty {
92                        format!(" for type `{self_ty}`")
93                    } else {
94                        String::new()
95                    }
96                )
97            }
98            IntercrateAmbiguityCause::ReservationImpl { message } => message.to_string(),
99        })
100    }
101}
102
103pub struct SelectionContext<'cx, 'tcx> {
104    pub infcx: &'cx InferCtxt<'tcx>,
105
106    /// Freshener used specifically for entries on the obligation
107    /// stack. This ensures that all entries on the stack at one time
108    /// will have the same set of placeholder entries, which is
109    /// important for checking for trait bounds that recursively
110    /// require themselves.
111    freshener: TypeFreshener<'cx, 'tcx>,
112
113    /// If `intercrate` is set, we remember predicates which were
114    /// considered ambiguous because of impls potentially added in other crates.
115    /// This is used in coherence to give improved diagnostics.
116    /// We don't do his until we detect a coherence error because it can
117    /// lead to false overflow results (#47139) and because always
118    /// computing it may negatively impact performance.
119    intercrate_ambiguity_causes: Option<FxIndexSet<IntercrateAmbiguityCause<'tcx>>>,
120
121    /// The mode that trait queries run in, which informs our error handling
122    /// policy. In essence, canonicalized queries need their errors propagated
123    /// rather than immediately reported because we do not have accurate spans.
124    query_mode: TraitQueryMode,
125}
126
127// A stack that walks back up the stack frame.
128struct TraitObligationStack<'prev, 'tcx> {
129    obligation: &'prev PolyTraitObligation<'tcx>,
130
131    /// The trait predicate from `obligation` but "freshened" with the
132    /// selection-context's freshener. Used to check for recursion.
133    fresh_trait_pred: ty::PolyTraitPredicate<'tcx>,
134
135    /// Starts out equal to `depth` -- if, during evaluation, we
136    /// encounter a cycle, then we will set this flag to the minimum
137    /// depth of that cycle for all participants in the cycle. These
138    /// participants will then forego caching their results. This is
139    /// not the most efficient solution, but it addresses #60010. The
140    /// problem we are trying to prevent:
141    ///
142    /// - If you have `A: AutoTrait` requires `B: AutoTrait` and `C: NonAutoTrait`
143    /// - `B: AutoTrait` requires `A: AutoTrait` (coinductive cycle, ok)
144    /// - `C: NonAutoTrait` requires `A: AutoTrait` (non-coinductive cycle, not ok)
145    ///
146    /// you don't want to cache that `B: AutoTrait` or `A: AutoTrait`
147    /// is `EvaluatedToOk`; this is because they were only considered
148    /// ok on the premise that if `A: AutoTrait` held, but we indeed
149    /// encountered a problem (later on) with `A: AutoTrait`. So we
150    /// currently set a flag on the stack node for `B: AutoTrait` (as
151    /// well as the second instance of `A: AutoTrait`) to suppress
152    /// caching.
153    ///
154    /// This is a simple, targeted fix. A more-performant fix requires
155    /// deeper changes, but would permit more caching: we could
156    /// basically defer caching until we have fully evaluated the
157    /// tree, and then cache the entire tree at once. In any case, the
158    /// performance impact here shouldn't be so horrible: every time
159    /// this is hit, we do cache at least one trait, so we only
160    /// evaluate each member of a cycle up to N times, where N is the
161    /// length of the cycle. This means the performance impact is
162    /// bounded and we shouldn't have any terrible worst-cases.
163    reached_depth: Cell<usize>,
164
165    previous: TraitObligationStackList<'prev, 'tcx>,
166
167    /// The number of parent frames plus one (thus, the topmost frame has depth 1).
168    depth: usize,
169
170    /// The depth-first number of this node in the search graph -- a
171    /// pre-order index. Basically, a freshly incremented counter.
172    dfn: usize,
173}
174
175struct SelectionCandidateSet<'tcx> {
176    /// A list of candidates that definitely apply to the current
177    /// obligation (meaning: types unify).
178    vec: Vec<SelectionCandidate<'tcx>>,
179
180    /// If `true`, then there were candidates that might or might
181    /// not have applied, but we couldn't tell. This occurs when some
182    /// of the input types are type variables, in which case there are
183    /// various "builtin" rules that might or might not trigger.
184    ambiguous: bool,
185}
186
187#[derive(#[automatically_derived]
impl<'tcx> ::core::cmp::PartialEq for EvaluatedCandidate<'tcx> {
    #[inline]
    fn eq(&self, other: &EvaluatedCandidate<'tcx>) -> bool {
        self.candidate == other.candidate &&
            self.evaluation == other.evaluation
    }
}PartialEq, #[automatically_derived]
impl<'tcx> ::core::cmp::Eq for EvaluatedCandidate<'tcx> {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_receiver_is_total_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<SelectionCandidate<'tcx>>;
        let _: ::core::cmp::AssertParamIsEq<EvaluationResult>;
    }
}Eq, #[automatically_derived]
impl<'tcx> ::core::fmt::Debug for EvaluatedCandidate<'tcx> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field2_finish(f,
            "EvaluatedCandidate", "candidate", &self.candidate, "evaluation",
            &&self.evaluation)
    }
}Debug, #[automatically_derived]
impl<'tcx> ::core::clone::Clone for EvaluatedCandidate<'tcx> {
    #[inline]
    fn clone(&self) -> EvaluatedCandidate<'tcx> {
        EvaluatedCandidate {
            candidate: ::core::clone::Clone::clone(&self.candidate),
            evaluation: ::core::clone::Clone::clone(&self.evaluation),
        }
    }
}Clone)]
188struct EvaluatedCandidate<'tcx> {
189    candidate: SelectionCandidate<'tcx>,
190    evaluation: EvaluationResult,
191}
192
193impl<'cx, 'tcx> SelectionContext<'cx, 'tcx> {
194    pub fn new(infcx: &'cx InferCtxt<'tcx>) -> SelectionContext<'cx, 'tcx> {
195        SelectionContext {
196            infcx,
197            freshener: TypeFreshener::new(infcx),
198            intercrate_ambiguity_causes: None,
199            query_mode: TraitQueryMode::Standard,
200        }
201    }
202
203    pub fn with_query_mode(
204        infcx: &'cx InferCtxt<'tcx>,
205        query_mode: TraitQueryMode,
206    ) -> SelectionContext<'cx, 'tcx> {
207        {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/select/mod.rs:207",
                        "rustc_trait_selection::traits::select",
                        ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
                        ::tracing_core::__macro_support::Option::Some(207u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
                        ::tracing_core::field::FieldSet::new(&["message",
                                        "query_mode"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                let mut iter = __CALLSITE.metadata().fields().iter();
                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&format_args!("with_query_mode")
                                            as &dyn Value)),
                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&debug(&query_mode)
                                            as &dyn Value))])
            });
    } else { ; }
};debug!(?query_mode, "with_query_mode");
208        SelectionContext { query_mode, ..SelectionContext::new(infcx) }
209    }
210
211    /// Enables tracking of intercrate ambiguity causes. See
212    /// the documentation of [`Self::intercrate_ambiguity_causes`] for more.
213    pub fn enable_tracking_intercrate_ambiguity_causes(&mut self) {
214        match self.infcx.typing_mode() {
    TypingMode::Coherence => {}
    ref left_val => {
        ::core::panicking::assert_matches_failed(left_val,
            "TypingMode::Coherence", ::core::option::Option::None);
    }
};assert_matches!(self.infcx.typing_mode(), TypingMode::Coherence);
215        if !self.intercrate_ambiguity_causes.is_none() {
    ::core::panicking::panic("assertion failed: self.intercrate_ambiguity_causes.is_none()")
};assert!(self.intercrate_ambiguity_causes.is_none());
216        self.intercrate_ambiguity_causes = Some(FxIndexSet::default());
217        {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/select/mod.rs:217",
                        "rustc_trait_selection::traits::select",
                        ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
                        ::tracing_core::__macro_support::Option::Some(217u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                let mut iter = __CALLSITE.metadata().fields().iter();
                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&format_args!("selcx: enable_tracking_intercrate_ambiguity_causes")
                                            as &dyn Value))])
            });
    } else { ; }
};debug!("selcx: enable_tracking_intercrate_ambiguity_causes");
218    }
219
220    /// Gets the intercrate ambiguity causes collected since tracking
221    /// was enabled and disables tracking at the same time. If
222    /// tracking is not enabled, just returns an empty vector.
223    pub fn take_intercrate_ambiguity_causes(
224        &mut self,
225    ) -> FxIndexSet<IntercrateAmbiguityCause<'tcx>> {
226        match self.infcx.typing_mode() {
    TypingMode::Coherence => {}
    ref left_val => {
        ::core::panicking::assert_matches_failed(left_val,
            "TypingMode::Coherence", ::core::option::Option::None);
    }
};assert_matches!(self.infcx.typing_mode(), TypingMode::Coherence);
227        self.intercrate_ambiguity_causes.take().unwrap_or_default()
228    }
229
230    pub fn tcx(&self) -> TyCtxt<'tcx> {
231        self.infcx.tcx
232    }
233
234    ///////////////////////////////////////////////////////////////////////////
235    // Selection
236    //
237    // The selection phase tries to identify *how* an obligation will
238    // be resolved. For example, it will identify which impl or
239    // parameter bound is to be used. The process can be inconclusive
240    // if the self type in the obligation is not fully inferred. Selection
241    // can result in an error in one of two ways:
242    //
243    // 1. If no applicable impl or parameter bound can be found.
244    // 2. If the output type parameters in the obligation do not match
245    //    those specified by the impl/bound. For example, if the obligation
246    //    is `Vec<Foo>: Iterable<Bar>`, but the impl specifies
247    //    `impl<T> Iterable<T> for Vec<T>`, than an error would result.
248
249    /// Attempts to satisfy the obligation. If successful, this will affect the surrounding
250    /// type environment by performing unification.
251    x;#[instrument(level = "debug", skip(self), ret)]
252    pub fn poly_select(
253        &mut self,
254        obligation: &PolyTraitObligation<'tcx>,
255    ) -> SelectionResult<'tcx, Selection<'tcx>> {
256        assert!(!self.infcx.next_trait_solver());
257
258        let candidate = match self.select_from_obligation(obligation) {
259            Err(SelectionError::Overflow(OverflowError::Canonical)) => {
260                // In standard mode, overflow must have been caught and reported
261                // earlier.
262                assert!(self.query_mode == TraitQueryMode::Canonical);
263                return Err(SelectionError::Overflow(OverflowError::Canonical));
264            }
265            Err(e) => {
266                return Err(e);
267            }
268            Ok(None) => {
269                return Ok(None);
270            }
271            Ok(Some(candidate)) => candidate,
272        };
273
274        match self.confirm_candidate(obligation, candidate) {
275            Err(SelectionError::Overflow(OverflowError::Canonical)) => {
276                assert!(self.query_mode == TraitQueryMode::Canonical);
277                Err(SelectionError::Overflow(OverflowError::Canonical))
278            }
279            Err(e) => Err(e),
280            Ok(candidate) => Ok(Some(candidate)),
281        }
282    }
283
284    pub fn select(
285        &mut self,
286        obligation: &TraitObligation<'tcx>,
287    ) -> SelectionResult<'tcx, Selection<'tcx>> {
288        if self.infcx.next_trait_solver() {
289            return self.infcx.select_in_new_trait_solver(obligation);
290        }
291
292        self.poly_select(&Obligation {
293            cause: obligation.cause.clone(),
294            param_env: obligation.param_env,
295            predicate: ty::Binder::dummy(obligation.predicate),
296            recursion_depth: obligation.recursion_depth,
297        })
298    }
299
300    fn select_from_obligation(
301        &mut self,
302        obligation: &PolyTraitObligation<'tcx>,
303    ) -> SelectionResult<'tcx, SelectionCandidate<'tcx>> {
304        if true {
    if !!obligation.predicate.has_escaping_bound_vars() {
        ::core::panicking::panic("assertion failed: !obligation.predicate.has_escaping_bound_vars()")
    };
};debug_assert!(!obligation.predicate.has_escaping_bound_vars());
305
306        let pec = &ProvisionalEvaluationCache::default();
307        let stack = self.push_stack(TraitObligationStackList::empty(pec), obligation);
308
309        self.candidate_from_obligation(&stack)
310    }
311
312    x;#[instrument(level = "debug", skip(self), ret)]
313    fn candidate_from_obligation<'o>(
314        &mut self,
315        stack: &TraitObligationStack<'o, 'tcx>,
316    ) -> SelectionResult<'tcx, SelectionCandidate<'tcx>> {
317        debug_assert!(!self.infcx.next_trait_solver());
318        // Watch out for overflow. This intentionally bypasses (and does
319        // not update) the cache.
320        self.check_recursion_limit(stack.obligation, stack.obligation)?;
321
322        // Check the cache. Note that we freshen the trait-ref
323        // separately rather than using `stack.fresh_trait_pred` --
324        // this is because we want the unbound variables to be
325        // replaced with fresh types starting from index 0.
326        let cache_fresh_trait_pred =
327            stack.obligation.predicate.fold_with(&mut TypeFreshener::new(self.infcx));
328        debug!(?cache_fresh_trait_pred);
329        debug_assert!(!stack.obligation.predicate.has_escaping_bound_vars());
330
331        if let Some(c) =
332            self.check_candidate_cache(stack.obligation.param_env, cache_fresh_trait_pred)
333        {
334            debug!("CACHE HIT");
335            return c;
336        }
337
338        // If no match, compute result and insert into cache.
339        //
340        // FIXME(nikomatsakis) -- this cache is not taking into
341        // account cycles that may have occurred in forming the
342        // candidate. I don't know of any specific problems that
343        // result but it seems awfully suspicious.
344        let (candidate, dep_node) =
345            self.in_task(|this| this.candidate_from_obligation_no_cache(stack));
346
347        debug!("CACHE MISS");
348        self.insert_candidate_cache(
349            stack.obligation.param_env,
350            cache_fresh_trait_pred,
351            dep_node,
352            candidate.clone(),
353        );
354        candidate
355    }
356
357    fn candidate_from_obligation_no_cache<'o>(
358        &mut self,
359        stack: &TraitObligationStack<'o, 'tcx>,
360    ) -> SelectionResult<'tcx, SelectionCandidate<'tcx>> {
361        if let Err(conflict) = self.is_knowable(stack) {
362            {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/select/mod.rs:362",
                        "rustc_trait_selection::traits::select",
                        ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
                        ::tracing_core::__macro_support::Option::Some(362u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                let mut iter = __CALLSITE.metadata().fields().iter();
                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&format_args!("coherence stage: not knowable")
                                            as &dyn Value))])
            });
    } else { ; }
};debug!("coherence stage: not knowable");
363            if self.intercrate_ambiguity_causes.is_some() {
364                {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/select/mod.rs:364",
                        "rustc_trait_selection::traits::select",
                        ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
                        ::tracing_core::__macro_support::Option::Some(364u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                let mut iter = __CALLSITE.metadata().fields().iter();
                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&format_args!("evaluate_stack: intercrate_ambiguity_causes is some")
                                            as &dyn Value))])
            });
    } else { ; }
};debug!("evaluate_stack: intercrate_ambiguity_causes is some");
365                // Heuristics: show the diagnostics when there are no candidates in crate.
366                if let Ok(candidate_set) = self.assemble_candidates(stack) {
367                    let mut no_candidates_apply = true;
368
369                    for c in candidate_set.vec.iter() {
370                        if self.evaluate_candidate(stack, c)?.may_apply() {
371                            no_candidates_apply = false;
372                            break;
373                        }
374                    }
375
376                    if !candidate_set.ambiguous && no_candidates_apply {
377                        let trait_ref = self.infcx.resolve_vars_if_possible(
378                            stack.obligation.predicate.skip_binder().trait_ref,
379                        );
380                        if !trait_ref.references_error() {
381                            let self_ty = trait_ref.self_ty();
382                            let self_ty = self_ty.has_concrete_skeleton().then(|| self_ty);
383                            let cause = if let Conflict::Upstream = conflict {
384                                IntercrateAmbiguityCause::UpstreamCrateUpdate { trait_ref, self_ty }
385                            } else {
386                                IntercrateAmbiguityCause::DownstreamCrate { trait_ref, self_ty }
387                            };
388                            {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/select/mod.rs:388",
                        "rustc_trait_selection::traits::select",
                        ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
                        ::tracing_core::__macro_support::Option::Some(388u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
                        ::tracing_core::field::FieldSet::new(&["message", "cause"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                let mut iter = __CALLSITE.metadata().fields().iter();
                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&format_args!("evaluate_stack: pushing cause")
                                            as &dyn Value)),
                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&debug(&cause) as
                                            &dyn Value))])
            });
    } else { ; }
};debug!(?cause, "evaluate_stack: pushing cause");
389                            self.intercrate_ambiguity_causes.as_mut().unwrap().insert(cause);
390                        }
391                    }
392                }
393            }
394            return Ok(None);
395        }
396
397        let candidate_set = self.assemble_candidates(stack)?;
398
399        if candidate_set.ambiguous {
400            {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/select/mod.rs:400",
                        "rustc_trait_selection::traits::select",
                        ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
                        ::tracing_core::__macro_support::Option::Some(400u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                let mut iter = __CALLSITE.metadata().fields().iter();
                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&format_args!("candidate set contains ambig")
                                            as &dyn Value))])
            });
    } else { ; }
};debug!("candidate set contains ambig");
401            return Ok(None);
402        }
403
404        let candidates = candidate_set.vec;
405
406        {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/select/mod.rs:406",
                        "rustc_trait_selection::traits::select",
                        ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
                        ::tracing_core::__macro_support::Option::Some(406u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
                        ::tracing_core::field::FieldSet::new(&["message", "stack",
                                        "candidates"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                let mut iter = __CALLSITE.metadata().fields().iter();
                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&format_args!("assembled {0} candidates",
                                                    candidates.len()) as &dyn Value)),
                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&debug(&stack) as
                                            &dyn Value)),
                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&debug(&candidates)
                                            as &dyn Value))])
            });
    } else { ; }
};debug!(?stack, ?candidates, "assembled {} candidates", candidates.len());
407
408        // At this point, we know that each of the entries in the
409        // candidate set is *individually* applicable. Now we have to
410        // figure out if they contain mutual incompatibilities. This
411        // frequently arises if we have an unconstrained input type --
412        // for example, we are looking for `$0: Eq` where `$0` is some
413        // unconstrained type variable. In that case, we'll get a
414        // candidate which assumes $0 == int, one that assumes `$0 ==
415        // usize`, etc. This spells an ambiguity.
416
417        let mut candidates = self.filter_impls(candidates, stack.obligation);
418
419        // If there is more than one candidate, first winnow them down
420        // by considering extra conditions (nested obligations and so
421        // forth). We don't winnow if there is exactly one
422        // candidate. This is a relatively minor distinction but it
423        // can lead to better inference and error-reporting. An
424        // example would be if there was an impl:
425        //
426        //     impl<T:Clone> Vec<T> { fn push_clone(...) { ... } }
427        //
428        // and we were to see some code `foo.push_clone()` where `boo`
429        // is a `Vec<Bar>` and `Bar` does not implement `Clone`. If
430        // we were to winnow, we'd wind up with zero candidates.
431        // Instead, we select the right impl now but report "`Bar` does
432        // not implement `Clone`".
433        if candidates.len() == 1 {
434            return self.filter_reservation_impls(candidates.pop().unwrap());
435        }
436
437        // Winnow, but record the exact outcome of evaluation, which
438        // is needed for specialization. Propagate overflow if it occurs.
439        let candidates = candidates
440            .into_iter()
441            .map(|c| match self.evaluate_candidate(stack, &c) {
442                Ok(eval) if eval.may_apply() => {
443                    Ok(Some(EvaluatedCandidate { candidate: c, evaluation: eval }))
444                }
445                Ok(_) => Ok(None),
446                Err(OverflowError::Canonical) => {
447                    Err(SelectionError::Overflow(OverflowError::Canonical))
448                }
449                Err(OverflowError::Error(e)) => {
450                    Err(SelectionError::Overflow(OverflowError::Error(e)))
451                }
452            })
453            .flat_map(Result::transpose)
454            .collect::<Result<Vec<_>, _>>()?;
455
456        {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/select/mod.rs:456",
                        "rustc_trait_selection::traits::select",
                        ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
                        ::tracing_core::__macro_support::Option::Some(456u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
                        ::tracing_core::field::FieldSet::new(&["message", "stack",
                                        "candidates"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                let mut iter = __CALLSITE.metadata().fields().iter();
                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&format_args!("{0} potentially applicable candidates",
                                                    candidates.len()) as &dyn Value)),
                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&debug(&stack) as
                                            &dyn Value)),
                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&debug(&candidates)
                                            as &dyn Value))])
            });
    } else { ; }
};debug!(?stack, ?candidates, "{} potentially applicable candidates", candidates.len());
457        // If there are *NO* candidates, then there are no impls --
458        // that we know of, anyway. Note that in the case where there
459        // are unbound type variables within the obligation, it might
460        // be the case that you could still satisfy the obligation
461        // from another crate by instantiating the type variables with
462        // a type from another crate that does have an impl. This case
463        // is checked for in `evaluate_stack` (and hence users
464        // who might care about this case, like coherence, should use
465        // that function).
466        if candidates.is_empty() {
467            // If there's an error type, 'downgrade' our result from
468            // `Err(Unimplemented)` to `Ok(None)`. This helps us avoid
469            // emitting additional spurious errors, since we're guaranteed
470            // to have emitted at least one.
471            if stack.obligation.predicate.references_error() {
472                {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/select/mod.rs:472",
                        "rustc_trait_selection::traits::select",
                        ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
                        ::tracing_core::__macro_support::Option::Some(472u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
                        ::tracing_core::field::FieldSet::new(&["message",
                                        "stack.obligation.predicate"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                let mut iter = __CALLSITE.metadata().fields().iter();
                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&format_args!("found error type in predicate, treating as ambiguous")
                                            as &dyn Value)),
                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&debug(&stack.obligation.predicate)
                                            as &dyn Value))])
            });
    } else { ; }
};debug!(?stack.obligation.predicate, "found error type in predicate, treating as ambiguous");
473                Ok(None)
474            } else {
475                Err(SelectionError::Unimplemented)
476            }
477        } else {
478            let has_non_region_infer = stack.obligation.predicate.has_non_region_infer();
479            let candidate_preference_mode =
480                CandidatePreferenceMode::compute(self.tcx(), stack.obligation.predicate.def_id());
481            if let Some(candidate) =
482                self.winnow_candidates(has_non_region_infer, candidate_preference_mode, candidates)
483            {
484                self.filter_reservation_impls(candidate)
485            } else {
486                Ok(None)
487            }
488        }
489    }
490
491    ///////////////////////////////////////////////////////////////////////////
492    // EVALUATION
493    //
494    // Tests whether an obligation can be selected or whether an impl
495    // can be applied to particular types. It skips the "confirmation"
496    // step and hence completely ignores output type parameters.
497    //
498    // The result is "true" if the obligation *may* hold and "false" if
499    // we can be sure it does not.
500
501    /// Evaluates whether the obligation `obligation` can be satisfied
502    /// and returns an `EvaluationResult`. This is meant for the
503    /// *initial* call.
504    ///
505    /// Do not use this directly, use `infcx.evaluate_obligation` instead.
506    pub fn evaluate_root_obligation(
507        &mut self,
508        obligation: &PredicateObligation<'tcx>,
509    ) -> Result<EvaluationResult, OverflowError> {
510        if true {
    if !!self.infcx.next_trait_solver() {
        ::core::panicking::panic("assertion failed: !self.infcx.next_trait_solver()")
    };
};debug_assert!(!self.infcx.next_trait_solver());
511        self.evaluation_probe(|this| {
512            let goal =
513                this.infcx.resolve_vars_if_possible((obligation.predicate, obligation.param_env));
514            let mut result = this.evaluate_predicate_recursively(
515                TraitObligationStackList::empty(&ProvisionalEvaluationCache::default()),
516                obligation.clone(),
517            )?;
518            // If the predicate has done any inference, then downgrade the
519            // result to ambiguous.
520            if this.infcx.resolve_vars_if_possible(goal) != goal {
521                result = result.max(EvaluatedToAmbig);
522            }
523            Ok(result)
524        })
525    }
526
527    /// Computes the evaluation result of `op`, discarding any constraints.
528    ///
529    /// This also runs for leak check to allow higher ranked region errors to impact
530    /// selection. By default it checks for leaks from all universes created inside of
531    /// `op`, but this can be overwritten if necessary.
532    fn evaluation_probe(
533        &mut self,
534        op: impl FnOnce(&mut Self) -> Result<EvaluationResult, OverflowError>,
535    ) -> Result<EvaluationResult, OverflowError> {
536        self.infcx.probe(|snapshot| -> Result<EvaluationResult, OverflowError> {
537            let outer_universe = self.infcx.universe();
538            let result = op(self)?;
539
540            match self.infcx.leak_check(outer_universe, Some(snapshot)) {
541                Ok(()) => {}
542                Err(_) => return Ok(EvaluatedToErr),
543            }
544
545            if self.infcx.opaque_types_added_in_snapshot(snapshot) {
546                return Ok(result.max(EvaluatedToOkModuloOpaqueTypes));
547            }
548
549            if self.infcx.region_constraints_added_in_snapshot(snapshot) {
550                Ok(result.max(EvaluatedToOkModuloRegions))
551            } else {
552                Ok(result)
553            }
554        })
555    }
556
557    /// Evaluates the predicates in `predicates` recursively. This may
558    /// guide inference. If this is not desired, run it inside of a
559    /// is run within an inference probe.
560    /// `probe`.
561    #[allow(clippy :: suspicious_else_formatting)]
{
    let __tracing_attr_span;
    let __tracing_attr_guard;
    if ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() ||
            { false } {
        __tracing_attr_span =
            {
                use ::tracing::__macro_support::Callsite as _;
                static __CALLSITE: ::tracing::callsite::DefaultCallsite =
                    {
                        static META: ::tracing::Metadata<'static> =
                            {
                                ::tracing_core::metadata::Metadata::new("evaluate_predicates_recursively",
                                    "rustc_trait_selection::traits::select",
                                    ::tracing::Level::DEBUG,
                                    ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
                                    ::tracing_core::__macro_support::Option::Some(561u32),
                                    ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
                                    ::tracing_core::field::FieldSet::new(&["predicates"],
                                        ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                    ::tracing::metadata::Kind::SPAN)
                            };
                        ::tracing::callsite::DefaultCallsite::new(&META)
                    };
                let mut interest = ::tracing::subscriber::Interest::never();
                if ::tracing::Level::DEBUG <=
                                    ::tracing::level_filters::STATIC_MAX_LEVEL &&
                                ::tracing::Level::DEBUG <=
                                    ::tracing::level_filters::LevelFilter::current() &&
                            { interest = __CALLSITE.interest(); !interest.is_never() }
                        &&
                        ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                            interest) {
                    let meta = __CALLSITE.metadata();
                    ::tracing::Span::new(meta,
                        &{
                                #[allow(unused_imports)]
                                use ::tracing::field::{debug, display, Value};
                                let mut iter = meta.fields().iter();
                                meta.fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&::tracing::field::debug(&predicates)
                                                            as &dyn Value))])
                            })
                } else {
                    let span =
                        ::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
                    {};
                    span
                }
            };
        __tracing_attr_guard = __tracing_attr_span.enter();
    }

    #[warn(clippy :: suspicious_else_formatting)]
    {

        #[allow(unknown_lints, unreachable_code, clippy ::
        diverging_sub_expression, clippy :: empty_loop, clippy ::
        let_unit_value, clippy :: let_with_type_underscore, clippy ::
        needless_return, clippy :: unreachable)]
        if false {
            let __tracing_attr_fake_return:
                    Result<EvaluationResult, OverflowError> = loop {};
            return __tracing_attr_fake_return;
        }
        {
            let mut result = EvaluatedToOk;
            for mut obligation in predicates {
                obligation.set_depth_from_parent(stack.depth());
                let eval =
                    self.evaluate_predicate_recursively(stack,
                            obligation.clone())?;
                if let EvaluatedToErr = eval {
                    return Ok(EvaluatedToErr);
                } else { result = cmp::max(result, eval); }
            }
            Ok(result)
        }
    }
}#[instrument(skip(self, stack), level = "debug")]
562    fn evaluate_predicates_recursively<'o, I>(
563        &mut self,
564        stack: TraitObligationStackList<'o, 'tcx>,
565        predicates: I,
566    ) -> Result<EvaluationResult, OverflowError>
567    where
568        I: IntoIterator<Item = PredicateObligation<'tcx>> + std::fmt::Debug,
569    {
570        let mut result = EvaluatedToOk;
571        for mut obligation in predicates {
572            obligation.set_depth_from_parent(stack.depth());
573            let eval = self.evaluate_predicate_recursively(stack, obligation.clone())?;
574            if let EvaluatedToErr = eval {
575                // fast-path - EvaluatedToErr is the top of the lattice,
576                // so we don't need to look on the other predicates.
577                return Ok(EvaluatedToErr);
578            } else {
579                result = cmp::max(result, eval);
580            }
581        }
582        Ok(result)
583    }
584
585    x;#[instrument(
586        level = "debug",
587        skip(self, previous_stack),
588        fields(previous_stack = ?previous_stack.head())
589        ret,
590    )]
591    fn evaluate_predicate_recursively<'o>(
592        &mut self,
593        previous_stack: TraitObligationStackList<'o, 'tcx>,
594        obligation: PredicateObligation<'tcx>,
595    ) -> Result<EvaluationResult, OverflowError> {
596        debug_assert!(!self.infcx.next_trait_solver());
597        // `previous_stack` stores a `PolyTraitObligation`, while `obligation` is
598        // a `PredicateObligation`. These are distinct types, so we can't
599        // use any `Option` combinator method that would force them to be
600        // the same.
601        match previous_stack.head() {
602            Some(h) => self.check_recursion_limit(&obligation, h.obligation)?,
603            None => self.check_recursion_limit(&obligation, &obligation)?,
604        }
605
606        if sizedness_fast_path(self.tcx(), obligation.predicate, obligation.param_env) {
607            return Ok(EvaluatedToOk);
608        }
609
610        ensure_sufficient_stack(|| {
611            let bound_predicate = obligation.predicate.kind();
612            match bound_predicate.skip_binder() {
613                ty::PredicateKind::Clause(ty::ClauseKind::Trait(t)) => {
614                    let t = bound_predicate.rebind(t);
615                    debug_assert!(!t.has_escaping_bound_vars());
616                    let obligation = obligation.with(self.tcx(), t);
617                    self.evaluate_trait_predicate_recursively(previous_stack, obligation)
618                }
619
620                ty::PredicateKind::Clause(ty::ClauseKind::HostEffect(data)) => {
621                    self.infcx.enter_forall(bound_predicate.rebind(data), |data| {
622                        match effects::evaluate_host_effect_obligation(
623                            self,
624                            &obligation.with(self.tcx(), data),
625                        ) {
626                            Ok(nested) => {
627                                self.evaluate_predicates_recursively(previous_stack, nested)
628                            }
629                            Err(effects::EvaluationFailure::Ambiguous) => Ok(EvaluatedToAmbig),
630                            Err(effects::EvaluationFailure::NoSolution) => Ok(EvaluatedToErr),
631                        }
632                    })
633                }
634
635                ty::PredicateKind::Subtype(p) => {
636                    let p = bound_predicate.rebind(p);
637                    // Does this code ever run?
638                    match self.infcx.subtype_predicate(&obligation.cause, obligation.param_env, p) {
639                        Ok(Ok(InferOk { obligations, .. })) => {
640                            self.evaluate_predicates_recursively(previous_stack, obligations)
641                        }
642                        Ok(Err(_)) => Ok(EvaluatedToErr),
643                        Err(..) => Ok(EvaluatedToAmbig),
644                    }
645                }
646
647                ty::PredicateKind::Coerce(p) => {
648                    let p = bound_predicate.rebind(p);
649                    // Does this code ever run?
650                    match self.infcx.coerce_predicate(&obligation.cause, obligation.param_env, p) {
651                        Ok(Ok(InferOk { obligations, .. })) => {
652                            self.evaluate_predicates_recursively(previous_stack, obligations)
653                        }
654                        Ok(Err(_)) => Ok(EvaluatedToErr),
655                        Err(..) => Ok(EvaluatedToAmbig),
656                    }
657                }
658
659                ty::PredicateKind::Clause(ty::ClauseKind::WellFormed(term)) => {
660                    if term.is_trivially_wf(self.tcx()) {
661                        return Ok(EvaluatedToOk);
662                    }
663
664                    // So, there is a bit going on here. First, `WellFormed` predicates
665                    // are coinductive, like trait predicates with auto traits.
666                    // This means that we need to detect if we have recursively
667                    // evaluated `WellFormed(X)`. Otherwise, we would run into
668                    // a "natural" overflow error.
669                    //
670                    // Now, the next question is whether we need to do anything
671                    // special with caching. Considering the following tree:
672                    // - `WF(Foo<T>)`
673                    //   - `Bar<T>: Send`
674                    //     - `WF(Foo<T>)`
675                    //   - `Foo<T>: Trait`
676                    // In this case, the innermost `WF(Foo<T>)` should return
677                    // `EvaluatedToOk`, since it's coinductive. Then if
678                    // `Bar<T>: Send` is resolved to `EvaluatedToOk`, it can be
679                    // inserted into a cache (because without thinking about `WF`
680                    // goals, it isn't in a cycle). If `Foo<T>: Trait` later doesn't
681                    // hold, then `Bar<T>: Send` shouldn't hold. Therefore, we
682                    // *do* need to keep track of coinductive cycles.
683
684                    let cache = previous_stack.cache;
685                    let dfn = cache.next_dfn();
686
687                    for stack_term in previous_stack.cache.wf_args.borrow().iter().rev() {
688                        if stack_term.0 != term {
689                            continue;
690                        }
691                        debug!("WellFormed({:?}) on stack", term);
692                        if let Some(stack) = previous_stack.head {
693                            // Okay, let's imagine we have two different stacks:
694                            //   `T: NonAutoTrait -> WF(T) -> T: NonAutoTrait`
695                            //   `WF(T) -> T: NonAutoTrait -> WF(T)`
696                            // Because of this, we need to check that all
697                            // predicates between the WF goals are coinductive.
698                            // Otherwise, we can say that `T: NonAutoTrait` is
699                            // true.
700                            // Let's imagine we have a predicate stack like
701                            //         `Foo: Bar -> WF(T) -> T: NonAutoTrait -> T: Auto`
702                            // depth   ^1                    ^2                 ^3
703                            // and the current predicate is `WF(T)`. `wf_args`
704                            // would contain `(T, 1)`. We want to check all
705                            // trait predicates greater than `1`. The previous
706                            // stack would be `T: Auto`.
707                            let cycle = stack.iter().take_while(|s| s.depth > stack_term.1);
708                            let tcx = self.tcx();
709                            let cycle = cycle.map(|stack| stack.obligation.predicate.upcast(tcx));
710                            if self.coinductive_match(cycle) {
711                                stack.update_reached_depth(stack_term.1);
712                                return Ok(EvaluatedToOk);
713                            } else {
714                                return Ok(EvaluatedToAmbigStackDependent);
715                            }
716                        }
717                        return Ok(EvaluatedToOk);
718                    }
719
720                    match wf::obligations(
721                        self.infcx,
722                        obligation.param_env,
723                        obligation.cause.body_id,
724                        obligation.recursion_depth + 1,
725                        term,
726                        obligation.cause.span,
727                    ) {
728                        Some(obligations) => {
729                            cache.wf_args.borrow_mut().push((term, previous_stack.depth()));
730                            let result =
731                                self.evaluate_predicates_recursively(previous_stack, obligations);
732                            cache.wf_args.borrow_mut().pop();
733
734                            let result = result?;
735
736                            if !result.must_apply_modulo_regions() {
737                                cache.on_failure(dfn);
738                            }
739
740                            cache.on_completion(dfn);
741
742                            Ok(result)
743                        }
744                        None => Ok(EvaluatedToAmbig),
745                    }
746                }
747
748                ty::PredicateKind::Clause(ty::ClauseKind::TypeOutlives(pred)) => {
749                    // A global type with no free lifetimes or generic parameters
750                    // outlives anything.
751                    if pred.0.has_free_regions()
752                        || pred.0.has_bound_regions()
753                        || pred.0.has_non_region_infer()
754                        || pred.0.has_non_region_infer()
755                    {
756                        Ok(EvaluatedToOkModuloRegions)
757                    } else {
758                        Ok(EvaluatedToOk)
759                    }
760                }
761
762                ty::PredicateKind::Clause(ty::ClauseKind::RegionOutlives(..)) => {
763                    // We do not consider region relationships when evaluating trait matches.
764                    Ok(EvaluatedToOkModuloRegions)
765                }
766
767                ty::PredicateKind::DynCompatible(trait_def_id) => {
768                    if self.tcx().is_dyn_compatible(trait_def_id) {
769                        Ok(EvaluatedToOk)
770                    } else {
771                        Ok(EvaluatedToErr)
772                    }
773                }
774
775                ty::PredicateKind::Clause(ty::ClauseKind::Projection(data)) => {
776                    let data = bound_predicate.rebind(data);
777                    let project_obligation = obligation.with(self.tcx(), data);
778                    match project::poly_project_and_unify_term(self, &project_obligation) {
779                        ProjectAndUnifyResult::Holds(mut subobligations) => {
780                            'compute_res: {
781                                // If we've previously marked this projection as 'complete', then
782                                // use the final cached result (either `EvaluatedToOk` or
783                                // `EvaluatedToOkModuloRegions`), and skip re-evaluating the
784                                // sub-obligations.
785                                if let Some(key) =
786                                    ProjectionCacheKey::from_poly_projection_obligation(
787                                        self,
788                                        &project_obligation,
789                                    )
790                                    && let Some(cached_res) = self
791                                        .infcx
792                                        .inner
793                                        .borrow_mut()
794                                        .projection_cache()
795                                        .is_complete(key)
796                                {
797                                    break 'compute_res Ok(cached_res);
798                                }
799
800                                // Need to explicitly set the depth of nested goals here as
801                                // projection obligations can cycle by themselves and in
802                                // `evaluate_predicates_recursively` we only add the depth
803                                // for parent trait goals because only these get added to the
804                                // `TraitObligationStackList`.
805                                for subobligation in subobligations.iter_mut() {
806                                    subobligation.set_depth_from_parent(obligation.recursion_depth);
807                                }
808                                let res = self.evaluate_predicates_recursively(
809                                    previous_stack,
810                                    subobligations,
811                                );
812                                if let Ok(eval_rslt) = res
813                                    && (eval_rslt == EvaluatedToOk
814                                        || eval_rslt == EvaluatedToOkModuloRegions)
815                                    && let Some(key) =
816                                        ProjectionCacheKey::from_poly_projection_obligation(
817                                            self,
818                                            &project_obligation,
819                                        )
820                                {
821                                    // If the result is something that we can cache, then mark this
822                                    // entry as 'complete'. This will allow us to skip evaluating the
823                                    // subobligations at all the next time we evaluate the projection
824                                    // predicate.
825                                    self.infcx
826                                        .inner
827                                        .borrow_mut()
828                                        .projection_cache()
829                                        .complete(key, eval_rslt);
830                                }
831                                res
832                            }
833                        }
834                        ProjectAndUnifyResult::FailedNormalization => Ok(EvaluatedToAmbig),
835                        ProjectAndUnifyResult::Recursive => Ok(EvaluatedToAmbigStackDependent),
836                        ProjectAndUnifyResult::MismatchedProjectionTypes(_) => Ok(EvaluatedToErr),
837                    }
838                }
839
840                ty::PredicateKind::Clause(ty::ClauseKind::UnstableFeature(symbol)) => {
841                    if may_use_unstable_feature(self.infcx, obligation.param_env, symbol) {
842                        Ok(EvaluatedToOk)
843                    } else {
844                        Ok(EvaluatedToAmbig)
845                    }
846                }
847
848                ty::PredicateKind::Clause(ty::ClauseKind::ConstEvaluatable(uv)) => {
849                    match const_evaluatable::is_const_evaluatable(
850                        self.infcx,
851                        uv,
852                        obligation.param_env,
853                        obligation.cause.span,
854                    ) {
855                        Ok(()) => Ok(EvaluatedToOk),
856                        Err(NotConstEvaluatable::MentionsInfer) => Ok(EvaluatedToAmbig),
857                        Err(NotConstEvaluatable::MentionsParam) => Ok(EvaluatedToErr),
858                        Err(_) => Ok(EvaluatedToErr),
859                    }
860                }
861
862                ty::PredicateKind::ConstEquate(c1, c2) => {
863                    let tcx = self.tcx();
864                    assert!(
865                        tcx.features().generic_const_exprs(),
866                        "`ConstEquate` without a feature gate: {c1:?} {c2:?}",
867                    );
868
869                    {
870                        let c1 = tcx.expand_abstract_consts(c1);
871                        let c2 = tcx.expand_abstract_consts(c2);
872                        debug!(
873                            "evaluate_predicate_recursively: equating consts:\nc1= {:?}\nc2= {:?}",
874                            c1, c2
875                        );
876
877                        use rustc_hir::def::DefKind;
878                        match (c1.kind(), c2.kind()) {
879                            (ty::ConstKind::Unevaluated(a), ty::ConstKind::Unevaluated(b))
880                                if a.def == b.def && tcx.def_kind(a.def) == DefKind::AssocConst =>
881                            {
882                                if let Ok(InferOk { obligations, value: () }) = self
883                                    .infcx
884                                    .at(&obligation.cause, obligation.param_env)
885                                    // Can define opaque types as this is only reachable with
886                                    // `generic_const_exprs`
887                                    .eq(
888                                        DefineOpaqueTypes::Yes,
889                                        ty::AliasTerm::from(a),
890                                        ty::AliasTerm::from(b),
891                                    )
892                                {
893                                    return self.evaluate_predicates_recursively(
894                                        previous_stack,
895                                        obligations,
896                                    );
897                                }
898                            }
899                            (_, ty::ConstKind::Unevaluated(_))
900                            | (ty::ConstKind::Unevaluated(_), _) => (),
901                            (_, _) => {
902                                if let Ok(InferOk { obligations, value: () }) = self
903                                    .infcx
904                                    .at(&obligation.cause, obligation.param_env)
905                                    // Can define opaque types as this is only reachable with
906                                    // `generic_const_exprs`
907                                    .eq(DefineOpaqueTypes::Yes, c1, c2)
908                                {
909                                    return self.evaluate_predicates_recursively(
910                                        previous_stack,
911                                        obligations,
912                                    );
913                                }
914                            }
915                        }
916                    }
917
918                    let evaluate = |c: ty::Const<'tcx>| {
919                        if let ty::ConstKind::Unevaluated(_) = c.kind() {
920                            match crate::traits::try_evaluate_const(
921                                self.infcx,
922                                c,
923                                obligation.param_env,
924                            ) {
925                                Ok(val) => Ok(val),
926                                Err(e) => Err(e),
927                            }
928                        } else {
929                            Ok(c)
930                        }
931                    };
932
933                    match (evaluate(c1), evaluate(c2)) {
934                        (Ok(c1), Ok(c2)) => {
935                            match self.infcx.at(&obligation.cause, obligation.param_env).eq(
936                                // Can define opaque types as this is only reachable with
937                                // `generic_const_exprs`
938                                DefineOpaqueTypes::Yes,
939                                c1,
940                                c2,
941                            ) {
942                                Ok(inf_ok) => self.evaluate_predicates_recursively(
943                                    previous_stack,
944                                    inf_ok.into_obligations(),
945                                ),
946                                Err(_) => Ok(EvaluatedToErr),
947                            }
948                        }
949                        (Err(EvaluateConstErr::InvalidConstParamTy(..)), _)
950                        | (_, Err(EvaluateConstErr::InvalidConstParamTy(..))) => Ok(EvaluatedToErr),
951                        (Err(EvaluateConstErr::EvaluationFailure(..)), _)
952                        | (_, Err(EvaluateConstErr::EvaluationFailure(..))) => Ok(EvaluatedToErr),
953                        (Err(EvaluateConstErr::HasGenericsOrInfers), _)
954                        | (_, Err(EvaluateConstErr::HasGenericsOrInfers)) => {
955                            if c1.has_non_region_infer() || c2.has_non_region_infer() {
956                                Ok(EvaluatedToAmbig)
957                            } else {
958                                // Two different constants using generic parameters ~> error.
959                                Ok(EvaluatedToErr)
960                            }
961                        }
962                    }
963                }
964                ty::PredicateKind::NormalizesTo(..) => {
965                    bug!("NormalizesTo is only used by the new solver")
966                }
967                ty::PredicateKind::AliasRelate(..) => {
968                    bug!("AliasRelate is only used by the new solver")
969                }
970                ty::PredicateKind::Ambiguous => Ok(EvaluatedToAmbig),
971                ty::PredicateKind::Clause(ty::ClauseKind::ConstArgHasType(ct, ty)) => {
972                    let ct = self.infcx.shallow_resolve_const(ct);
973                    let ct_ty = match ct.kind() {
974                        ty::ConstKind::Infer(_) => {
975                            return Ok(EvaluatedToAmbig);
976                        }
977                        ty::ConstKind::Error(_) => return Ok(EvaluatedToOk),
978                        ty::ConstKind::Value(cv) => cv.ty,
979                        ty::ConstKind::Unevaluated(uv) => {
980                            self.tcx().type_of(uv.def).instantiate(self.tcx(), uv.args)
981                        }
982                        // FIXME(generic_const_exprs): See comment in `fulfill.rs`
983                        ty::ConstKind::Expr(_) => return Ok(EvaluatedToOk),
984                        ty::ConstKind::Placeholder(_) => {
985                            bug!("placeholder const {:?} in old solver", ct)
986                        }
987                        ty::ConstKind::Bound(_, _) => bug!("escaping bound vars in {:?}", ct),
988                        ty::ConstKind::Param(param_ct) => {
989                            param_ct.find_const_ty_from_env(obligation.param_env)
990                        }
991                    };
992
993                    match self.infcx.at(&obligation.cause, obligation.param_env).eq(
994                        // Only really exercised by generic_const_exprs
995                        DefineOpaqueTypes::Yes,
996                        ct_ty,
997                        ty,
998                    ) {
999                        Ok(inf_ok) => self.evaluate_predicates_recursively(
1000                            previous_stack,
1001                            inf_ok.into_obligations(),
1002                        ),
1003                        Err(_) => Ok(EvaluatedToErr),
1004                    }
1005                }
1006            }
1007        })
1008    }
1009
1010    x;#[instrument(skip(self, previous_stack), level = "debug", ret)]
1011    fn evaluate_trait_predicate_recursively<'o>(
1012        &mut self,
1013        previous_stack: TraitObligationStackList<'o, 'tcx>,
1014        mut obligation: PolyTraitObligation<'tcx>,
1015    ) -> Result<EvaluationResult, OverflowError> {
1016        if !matches!(self.infcx.typing_mode(), TypingMode::Coherence)
1017            && obligation.is_global()
1018            && obligation.param_env.caller_bounds().iter().all(|bound| bound.has_param())
1019        {
1020            // If a param env has no global bounds, global obligations do not
1021            // depend on its particular value in order to work, so we can clear
1022            // out the param env and get better caching.
1023            debug!("in global");
1024            obligation.param_env = ty::ParamEnv::empty();
1025        }
1026
1027        let stack = self.push_stack(previous_stack, &obligation);
1028        let fresh_trait_pred = stack.fresh_trait_pred;
1029        let param_env = obligation.param_env;
1030
1031        debug!(?fresh_trait_pred);
1032
1033        // If a trait predicate is in the (local or global) evaluation cache,
1034        // then we know it holds without cycles.
1035        if let Some(result) = self.check_evaluation_cache(param_env, fresh_trait_pred) {
1036            debug!("CACHE HIT");
1037            return Ok(result);
1038        }
1039
1040        if let Some(result) = stack.cache().get_provisional(fresh_trait_pred) {
1041            debug!("PROVISIONAL CACHE HIT");
1042            stack.update_reached_depth(result.reached_depth);
1043            return Ok(result.result);
1044        }
1045
1046        // Check if this is a match for something already on the
1047        // stack. If so, we don't want to insert the result into the
1048        // main cache (it is cycle dependent) nor the provisional
1049        // cache (which is meant for things that have completed but
1050        // for a "backedge" -- this result *is* the backedge).
1051        if let Some(cycle_result) = self.check_evaluation_cycle(&stack) {
1052            return Ok(cycle_result);
1053        }
1054
1055        let (result, dep_node) = self.in_task(|this| {
1056            let mut result = this.evaluate_stack(&stack)?;
1057
1058            // fix issue #103563, we don't normalize
1059            // nested obligations which produced by `TraitDef` candidate
1060            // (i.e. using bounds on assoc items as assumptions).
1061            // because we don't have enough information to
1062            // normalize these obligations before evaluating.
1063            // so we will try to normalize the obligation and evaluate again.
1064            // we will replace it with new solver in the future.
1065            if EvaluationResult::EvaluatedToErr == result
1066                && fresh_trait_pred.has_aliases()
1067                && fresh_trait_pred.is_global()
1068            {
1069                let mut nested_obligations = PredicateObligations::new();
1070                let predicate = normalize_with_depth_to(
1071                    this,
1072                    param_env,
1073                    obligation.cause.clone(),
1074                    obligation.recursion_depth + 1,
1075                    obligation.predicate,
1076                    &mut nested_obligations,
1077                );
1078                if predicate != obligation.predicate {
1079                    let mut nested_result = EvaluationResult::EvaluatedToOk;
1080                    for obligation in nested_obligations {
1081                        nested_result = cmp::max(
1082                            this.evaluate_predicate_recursively(previous_stack, obligation)?,
1083                            nested_result,
1084                        );
1085                    }
1086
1087                    if nested_result.must_apply_modulo_regions() {
1088                        let obligation = obligation.with(this.tcx(), predicate);
1089                        result = cmp::max(
1090                            nested_result,
1091                            this.evaluate_trait_predicate_recursively(previous_stack, obligation)?,
1092                        );
1093                    }
1094                }
1095            }
1096
1097            Ok::<_, OverflowError>(result)
1098        });
1099
1100        let result = result?;
1101
1102        if !result.must_apply_modulo_regions() {
1103            stack.cache().on_failure(stack.dfn);
1104        }
1105
1106        let reached_depth = stack.reached_depth.get();
1107        if reached_depth >= stack.depth {
1108            debug!("CACHE MISS");
1109            self.insert_evaluation_cache(param_env, fresh_trait_pred, dep_node, result);
1110            stack.cache().on_completion(stack.dfn);
1111        } else {
1112            debug!("PROVISIONAL");
1113            debug!(
1114                "caching provisionally because {:?} \
1115                 is a cycle participant (at depth {}, reached depth {})",
1116                fresh_trait_pred, stack.depth, reached_depth,
1117            );
1118
1119            stack.cache().insert_provisional(stack.dfn, reached_depth, fresh_trait_pred, result);
1120        }
1121
1122        Ok(result)
1123    }
1124
1125    /// If there is any previous entry on the stack that precisely
1126    /// matches this obligation, then we can assume that the
1127    /// obligation is satisfied for now (still all other conditions
1128    /// must be met of course). One obvious case this comes up is
1129    /// marker traits like `Send`. Think of a linked list:
1130    ///
1131    ///     struct List<T> { data: T, next: Option<Box<List<T>>> }
1132    ///
1133    /// `Box<List<T>>` will be `Send` if `T` is `Send` and
1134    /// `Option<Box<List<T>>>` is `Send`, and in turn
1135    /// `Option<Box<List<T>>>` is `Send` if `Box<List<T>>` is
1136    /// `Send`.
1137    ///
1138    /// Note that we do this comparison using the `fresh_trait_pred`
1139    /// fields. Because these have all been freshened using
1140    /// `self.freshener`, we can be sure that (a) this will not
1141    /// affect the inferencer state and (b) that if we see two
1142    /// fresh regions with the same index, they refer to the same
1143    /// unbound type variable.
1144    fn check_evaluation_cycle(
1145        &mut self,
1146        stack: &TraitObligationStack<'_, 'tcx>,
1147    ) -> Option<EvaluationResult> {
1148        if let Some(cycle_depth) = stack
1149            .iter()
1150            .skip(1) // Skip top-most frame.
1151            .find(|prev| {
1152                stack.obligation.param_env == prev.obligation.param_env
1153                    && stack.fresh_trait_pred == prev.fresh_trait_pred
1154            })
1155            .map(|stack| stack.depth)
1156        {
1157            {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/select/mod.rs:1157",
                        "rustc_trait_selection::traits::select",
                        ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
                        ::tracing_core::__macro_support::Option::Some(1157u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                let mut iter = __CALLSITE.metadata().fields().iter();
                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&format_args!("evaluate_stack --> recursive at depth {0}",
                                                    cycle_depth) as &dyn Value))])
            });
    } else { ; }
};debug!("evaluate_stack --> recursive at depth {}", cycle_depth);
1158
1159            // If we have a stack like `A B C D E A`, where the top of
1160            // the stack is the final `A`, then this will iterate over
1161            // `A, E, D, C, B` -- i.e., all the participants apart
1162            // from the cycle head. We mark them as participating in a
1163            // cycle. This suppresses caching for those nodes. See
1164            // `in_cycle` field for more details.
1165            stack.update_reached_depth(cycle_depth);
1166
1167            // Subtle: when checking for a coinductive cycle, we do
1168            // not compare using the "freshened trait refs" (which
1169            // have erased regions) but rather the fully explicit
1170            // trait refs. This is important because it's only a cycle
1171            // if the regions match exactly.
1172            let cycle = stack.iter().skip(1).take_while(|s| s.depth >= cycle_depth);
1173            let tcx = self.tcx();
1174            let cycle = cycle.map(|stack| stack.obligation.predicate.upcast(tcx));
1175            if self.coinductive_match(cycle) {
1176                {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/select/mod.rs:1176",
                        "rustc_trait_selection::traits::select",
                        ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
                        ::tracing_core::__macro_support::Option::Some(1176u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                let mut iter = __CALLSITE.metadata().fields().iter();
                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&format_args!("evaluate_stack --> recursive, coinductive")
                                            as &dyn Value))])
            });
    } else { ; }
};debug!("evaluate_stack --> recursive, coinductive");
1177                Some(EvaluatedToOk)
1178            } else {
1179                {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/select/mod.rs:1179",
                        "rustc_trait_selection::traits::select",
                        ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
                        ::tracing_core::__macro_support::Option::Some(1179u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                let mut iter = __CALLSITE.metadata().fields().iter();
                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&format_args!("evaluate_stack --> recursive, inductive")
                                            as &dyn Value))])
            });
    } else { ; }
};debug!("evaluate_stack --> recursive, inductive");
1180                Some(EvaluatedToAmbigStackDependent)
1181            }
1182        } else {
1183            None
1184        }
1185    }
1186
1187    fn evaluate_stack<'o>(
1188        &mut self,
1189        stack: &TraitObligationStack<'o, 'tcx>,
1190    ) -> Result<EvaluationResult, OverflowError> {
1191        if true {
    if !!self.infcx.next_trait_solver() {
        ::core::panicking::panic("assertion failed: !self.infcx.next_trait_solver()")
    };
};debug_assert!(!self.infcx.next_trait_solver());
1192        // In intercrate mode, whenever any of the generics are unbound,
1193        // there can always be an impl. Even if there are no impls in
1194        // this crate, perhaps the type would be unified with
1195        // something from another crate that does provide an impl.
1196        //
1197        // In intra mode, we must still be conservative. The reason is
1198        // that we want to avoid cycles. Imagine an impl like:
1199        //
1200        //     impl<T:Eq> Eq for Vec<T>
1201        //
1202        // and a trait reference like `$0 : Eq` where `$0` is an
1203        // unbound variable. When we evaluate this trait-reference, we
1204        // will unify `$0` with `Vec<$1>` (for some fresh variable
1205        // `$1`), on the condition that `$1 : Eq`. We will then wind
1206        // up with many candidates (since that are other `Eq` impls
1207        // that apply) and try to winnow things down. This results in
1208        // a recursive evaluation that `$1 : Eq` -- as you can
1209        // imagine, this is just where we started. To avoid that, we
1210        // check for unbound variables and return an ambiguous (hence possible)
1211        // match if we've seen this trait before.
1212        //
1213        // This suffices to allow chains like `FnMut` implemented in
1214        // terms of `Fn` etc, but we could probably make this more
1215        // precise still.
1216        let unbound_input_types =
1217            stack.fresh_trait_pred.skip_binder().trait_ref.args.types().any(|ty| ty.is_fresh());
1218
1219        if unbound_input_types
1220            && stack.iter().skip(1).any(|prev| {
1221                stack.obligation.param_env == prev.obligation.param_env
1222                    && self.match_fresh_trait_preds(stack.fresh_trait_pred, prev.fresh_trait_pred)
1223            })
1224        {
1225            {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/select/mod.rs:1225",
                        "rustc_trait_selection::traits::select",
                        ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
                        ::tracing_core::__macro_support::Option::Some(1225u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                let mut iter = __CALLSITE.metadata().fields().iter();
                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&format_args!("evaluate_stack --> unbound argument, recursive --> giving up")
                                            as &dyn Value))])
            });
    } else { ; }
};debug!("evaluate_stack --> unbound argument, recursive --> giving up");
1226            return Ok(EvaluatedToAmbigStackDependent);
1227        }
1228
1229        match self.candidate_from_obligation(stack) {
1230            Ok(Some(c)) => self.evaluate_candidate(stack, &c),
1231            Ok(None) => Ok(EvaluatedToAmbig),
1232            Err(SelectionError::Overflow(OverflowError::Canonical)) => {
1233                Err(OverflowError::Canonical)
1234            }
1235            Err(..) => Ok(EvaluatedToErr),
1236        }
1237    }
1238
1239    /// For defaulted traits, we use a co-inductive strategy to solve, so
1240    /// that recursion is ok. This routine returns `true` if the top of the
1241    /// stack (`cycle[0]`):
1242    ///
1243    /// - is a coinductive trait: an auto-trait or `Sized`,
1244    /// - it also appears in the backtrace at some position `X`,
1245    /// - all the predicates at positions `X..` between `X` and the top are
1246    ///   also coinductive traits.
1247    pub(crate) fn coinductive_match<I>(&mut self, mut cycle: I) -> bool
1248    where
1249        I: Iterator<Item = ty::Predicate<'tcx>>,
1250    {
1251        cycle.all(|p| match p.kind().skip_binder() {
1252            ty::PredicateKind::Clause(ty::ClauseKind::Trait(data)) => {
1253                self.infcx.tcx.trait_is_coinductive(data.def_id())
1254            }
1255            ty::PredicateKind::Clause(ty::ClauseKind::WellFormed(_)) => {
1256                // FIXME(generic_const_exprs): GCE needs well-formedness predicates to be
1257                // coinductive, but GCE is on the way out anyways, so this should eventually
1258                // be replaced with `false`.
1259                self.infcx.tcx.features().generic_const_exprs()
1260            }
1261            _ => false,
1262        })
1263    }
1264
1265    /// Further evaluates `candidate` to decide whether all type parameters match and whether nested
1266    /// obligations are met. Returns whether `candidate` remains viable after this further
1267    /// scrutiny.
1268    x;#[instrument(
1269        level = "debug",
1270        skip(self, stack),
1271        fields(depth = stack.obligation.recursion_depth),
1272        ret
1273    )]
1274    fn evaluate_candidate<'o>(
1275        &mut self,
1276        stack: &TraitObligationStack<'o, 'tcx>,
1277        candidate: &SelectionCandidate<'tcx>,
1278    ) -> Result<EvaluationResult, OverflowError> {
1279        let mut result = self.evaluation_probe(|this| {
1280            match this.confirm_candidate(stack.obligation, candidate.clone()) {
1281                Ok(selection) => {
1282                    debug!(?selection);
1283                    this.evaluate_predicates_recursively(
1284                        stack.list(),
1285                        selection.nested_obligations().into_iter(),
1286                    )
1287                }
1288                Err(..) => Ok(EvaluatedToErr),
1289            }
1290        })?;
1291
1292        // If we erased any lifetimes, then we want to use
1293        // `EvaluatedToOkModuloRegions` instead of `EvaluatedToOk`
1294        // as your final result. The result will be cached using
1295        // the freshened trait predicate as a key, so we need
1296        // our result to be correct by *any* choice of original lifetimes,
1297        // not just the lifetime choice for this particular (non-erased)
1298        // predicate.
1299        // See issue #80691
1300        if stack.fresh_trait_pred.has_erased_regions() {
1301            result = result.max(EvaluatedToOkModuloRegions);
1302        }
1303
1304        Ok(result)
1305    }
1306
1307    fn check_evaluation_cache(
1308        &self,
1309        param_env: ty::ParamEnv<'tcx>,
1310        trait_pred: ty::PolyTraitPredicate<'tcx>,
1311    ) -> Option<EvaluationResult> {
1312        let infcx = self.infcx;
1313        let tcx = infcx.tcx;
1314        if self.can_use_global_caches(param_env, trait_pred) {
1315            let key = (infcx.typing_env(param_env), trait_pred);
1316            if let Some(res) = tcx.evaluation_cache.get(&key, tcx) {
1317                Some(res)
1318            } else {
1319                if true {
    match (&infcx.evaluation_cache.get(&(param_env, trait_pred), tcx), &None)
        {
        (left_val, right_val) => {
            if !(*left_val == *right_val) {
                let kind = ::core::panicking::AssertKind::Eq;
                ::core::panicking::assert_failed(kind, &*left_val,
                    &*right_val, ::core::option::Option::None);
            }
        }
    };
};debug_assert_eq!(infcx.evaluation_cache.get(&(param_env, trait_pred), tcx), None);
1320                None
1321            }
1322        } else {
1323            self.infcx.evaluation_cache.get(&(param_env, trait_pred), tcx)
1324        }
1325    }
1326
1327    fn insert_evaluation_cache(
1328        &mut self,
1329        param_env: ty::ParamEnv<'tcx>,
1330        trait_pred: ty::PolyTraitPredicate<'tcx>,
1331        dep_node: DepNodeIndex,
1332        result: EvaluationResult,
1333    ) {
1334        // Avoid caching results that depend on more than just the trait-ref
1335        // - the stack can create recursion.
1336        if result.is_stack_dependent() {
1337            return;
1338        }
1339
1340        let infcx = self.infcx;
1341        let tcx = infcx.tcx;
1342        if self.can_use_global_caches(param_env, trait_pred) {
1343            {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/select/mod.rs:1343",
                        "rustc_trait_selection::traits::select",
                        ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
                        ::tracing_core::__macro_support::Option::Some(1343u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
                        ::tracing_core::field::FieldSet::new(&["message",
                                        "trait_pred", "result"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                let mut iter = __CALLSITE.metadata().fields().iter();
                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&format_args!("insert_evaluation_cache global")
                                            as &dyn Value)),
                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&debug(&trait_pred)
                                            as &dyn Value)),
                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&debug(&result) as
                                            &dyn Value))])
            });
    } else { ; }
};debug!(?trait_pred, ?result, "insert_evaluation_cache global");
1344            // This may overwrite the cache with the same value
1345            tcx.evaluation_cache.insert(
1346                (infcx.typing_env(param_env), trait_pred),
1347                dep_node,
1348                result,
1349            );
1350            return;
1351        } else {
1352            {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/select/mod.rs:1352",
                        "rustc_trait_selection::traits::select",
                        ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
                        ::tracing_core::__macro_support::Option::Some(1352u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
                        ::tracing_core::field::FieldSet::new(&["message",
                                        "trait_pred", "result"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                let mut iter = __CALLSITE.metadata().fields().iter();
                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&format_args!("insert_evaluation_cache local")
                                            as &dyn Value)),
                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&debug(&trait_pred)
                                            as &dyn Value)),
                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&debug(&result) as
                                            &dyn Value))])
            });
    } else { ; }
};debug!(?trait_pred, ?result, "insert_evaluation_cache local");
1353            self.infcx.evaluation_cache.insert((param_env, trait_pred), dep_node, result);
1354        }
1355    }
1356
1357    fn check_recursion_depth<T>(
1358        &self,
1359        depth: usize,
1360        error_obligation: &Obligation<'tcx, T>,
1361    ) -> Result<(), OverflowError>
1362    where
1363        T: Upcast<TyCtxt<'tcx>, ty::Predicate<'tcx>> + Clone,
1364    {
1365        if !self.infcx.tcx.recursion_limit().value_within_limit(depth) {
1366            match self.query_mode {
1367                TraitQueryMode::Standard => {
1368                    if let Some(e) = self.infcx.tainted_by_errors() {
1369                        return Err(OverflowError::Error(e));
1370                    }
1371                    self.infcx.err_ctxt().report_overflow_obligation(error_obligation, true);
1372                }
1373                TraitQueryMode::Canonical => {
1374                    return Err(OverflowError::Canonical);
1375                }
1376            }
1377        }
1378        Ok(())
1379    }
1380
1381    /// Checks that the recursion limit has not been exceeded.
1382    ///
1383    /// The weird return type of this function allows it to be used with the `try` (`?`)
1384    /// operator within certain functions.
1385    #[inline(always)]
1386    fn check_recursion_limit<T: Display + TypeFoldable<TyCtxt<'tcx>>, V>(
1387        &self,
1388        obligation: &Obligation<'tcx, T>,
1389        error_obligation: &Obligation<'tcx, V>,
1390    ) -> Result<(), OverflowError>
1391    where
1392        V: Upcast<TyCtxt<'tcx>, ty::Predicate<'tcx>> + Clone,
1393    {
1394        self.check_recursion_depth(obligation.recursion_depth, error_obligation)
1395    }
1396
1397    fn in_task<OP, R>(&mut self, op: OP) -> (R, DepNodeIndex)
1398    where
1399        OP: FnOnce(&mut Self) -> R,
1400    {
1401        self.tcx().dep_graph.with_anon_task(self.tcx(), DepKind::TraitSelect, || op(self))
1402    }
1403
1404    /// filter_impls filters candidates that have a positive impl for a negative
1405    /// goal and a negative impl for a positive goal
1406    #[allow(clippy :: suspicious_else_formatting)]
{
    let __tracing_attr_span;
    let __tracing_attr_guard;
    if ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() ||
            { false } {
        __tracing_attr_span =
            {
                use ::tracing::__macro_support::Callsite as _;
                static __CALLSITE: ::tracing::callsite::DefaultCallsite =
                    {
                        static META: ::tracing::Metadata<'static> =
                            {
                                ::tracing_core::metadata::Metadata::new("filter_impls",
                                    "rustc_trait_selection::traits::select",
                                    ::tracing::Level::DEBUG,
                                    ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
                                    ::tracing_core::__macro_support::Option::Some(1406u32),
                                    ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
                                    ::tracing_core::field::FieldSet::new(&["obligation"],
                                        ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                    ::tracing::metadata::Kind::SPAN)
                            };
                        ::tracing::callsite::DefaultCallsite::new(&META)
                    };
                let mut interest = ::tracing::subscriber::Interest::never();
                if ::tracing::Level::DEBUG <=
                                    ::tracing::level_filters::STATIC_MAX_LEVEL &&
                                ::tracing::Level::DEBUG <=
                                    ::tracing::level_filters::LevelFilter::current() &&
                            { interest = __CALLSITE.interest(); !interest.is_never() }
                        &&
                        ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                            interest) {
                    let meta = __CALLSITE.metadata();
                    ::tracing::Span::new(meta,
                        &{
                                #[allow(unused_imports)]
                                use ::tracing::field::{debug, display, Value};
                                let mut iter = meta.fields().iter();
                                meta.fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&::tracing::field::debug(&obligation)
                                                            as &dyn Value))])
                            })
                } else {
                    let span =
                        ::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
                    {};
                    span
                }
            };
        __tracing_attr_guard = __tracing_attr_span.enter();
    }

    #[warn(clippy :: suspicious_else_formatting)]
    {

        #[allow(unknown_lints, unreachable_code, clippy ::
        diverging_sub_expression, clippy :: empty_loop, clippy ::
        let_unit_value, clippy :: let_with_type_underscore, clippy ::
        needless_return, clippy :: unreachable)]
        if false {
            let __tracing_attr_fake_return: Vec<SelectionCandidate<'tcx>> =
                loop {};
            return __tracing_attr_fake_return;
        }
        {
            {
                use ::tracing::__macro_support::Callsite as _;
                static __CALLSITE: ::tracing::callsite::DefaultCallsite =
                    {
                        static META: ::tracing::Metadata<'static> =
                            {
                                ::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/select/mod.rs:1412",
                                    "rustc_trait_selection::traits::select",
                                    ::tracing::Level::TRACE,
                                    ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
                                    ::tracing_core::__macro_support::Option::Some(1412u32),
                                    ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
                                    ::tracing_core::field::FieldSet::new(&["message"],
                                        ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                    ::tracing::metadata::Kind::EVENT)
                            };
                        ::tracing::callsite::DefaultCallsite::new(&META)
                    };
                let enabled =
                    ::tracing::Level::TRACE <=
                                ::tracing::level_filters::STATIC_MAX_LEVEL &&
                            ::tracing::Level::TRACE <=
                                ::tracing::level_filters::LevelFilter::current() &&
                        {
                            let interest = __CALLSITE.interest();
                            !interest.is_never() &&
                                ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                                    interest)
                        };
                if enabled {
                    (|value_set: ::tracing::field::ValueSet|
                                {
                                    let meta = __CALLSITE.metadata();
                                    ::tracing::Event::dispatch(meta, &value_set);
                                    ;
                                })({
                            #[allow(unused_imports)]
                            use ::tracing::field::{debug, display, Value};
                            let mut iter = __CALLSITE.metadata().fields().iter();
                            __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                ::tracing::__macro_support::Option::Some(&format_args!("{0:#?}",
                                                                candidates) as &dyn Value))])
                        });
                } else { ; }
            };
            let tcx = self.tcx();
            let mut result = Vec::with_capacity(candidates.len());
            for candidate in candidates {
                if let ImplCandidate(def_id) = candidate {
                    match (tcx.impl_polarity(def_id), obligation.polarity()) {
                        (ty::ImplPolarity::Reservation, _) |
                            (ty::ImplPolarity::Positive,
                            ty::PredicatePolarity::Positive) |
                            (ty::ImplPolarity::Negative,
                            ty::PredicatePolarity::Negative) => {
                            result.push(candidate);
                        }
                        _ => {}
                    }
                } else { result.push(candidate); }
            }
            {
                use ::tracing::__macro_support::Callsite as _;
                static __CALLSITE: ::tracing::callsite::DefaultCallsite =
                    {
                        static META: ::tracing::Metadata<'static> =
                            {
                                ::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/select/mod.rs:1431",
                                    "rustc_trait_selection::traits::select",
                                    ::tracing::Level::TRACE,
                                    ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
                                    ::tracing_core::__macro_support::Option::Some(1431u32),
                                    ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
                                    ::tracing_core::field::FieldSet::new(&["message"],
                                        ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                    ::tracing::metadata::Kind::EVENT)
                            };
                        ::tracing::callsite::DefaultCallsite::new(&META)
                    };
                let enabled =
                    ::tracing::Level::TRACE <=
                                ::tracing::level_filters::STATIC_MAX_LEVEL &&
                            ::tracing::Level::TRACE <=
                                ::tracing::level_filters::LevelFilter::current() &&
                        {
                            let interest = __CALLSITE.interest();
                            !interest.is_never() &&
                                ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                                    interest)
                        };
                if enabled {
                    (|value_set: ::tracing::field::ValueSet|
                                {
                                    let meta = __CALLSITE.metadata();
                                    ::tracing::Event::dispatch(meta, &value_set);
                                    ;
                                })({
                            #[allow(unused_imports)]
                            use ::tracing::field::{debug, display, Value};
                            let mut iter = __CALLSITE.metadata().fields().iter();
                            __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                ::tracing::__macro_support::Option::Some(&format_args!("{0:#?}",
                                                                result) as &dyn Value))])
                        });
                } else { ; }
            };
            result
        }
    }
}#[instrument(level = "debug", skip(self, candidates))]
1407    fn filter_impls(
1408        &mut self,
1409        candidates: Vec<SelectionCandidate<'tcx>>,
1410        obligation: &PolyTraitObligation<'tcx>,
1411    ) -> Vec<SelectionCandidate<'tcx>> {
1412        trace!("{candidates:#?}");
1413        let tcx = self.tcx();
1414        let mut result = Vec::with_capacity(candidates.len());
1415
1416        for candidate in candidates {
1417            if let ImplCandidate(def_id) = candidate {
1418                match (tcx.impl_polarity(def_id), obligation.polarity()) {
1419                    (ty::ImplPolarity::Reservation, _)
1420                    | (ty::ImplPolarity::Positive, ty::PredicatePolarity::Positive)
1421                    | (ty::ImplPolarity::Negative, ty::PredicatePolarity::Negative) => {
1422                        result.push(candidate);
1423                    }
1424                    _ => {}
1425                }
1426            } else {
1427                result.push(candidate);
1428            }
1429        }
1430
1431        trace!("{result:#?}");
1432        result
1433    }
1434
1435    /// filter_reservation_impls filter reservation impl for any goal as ambiguous
1436    #[allow(clippy :: suspicious_else_formatting)]
{
    let __tracing_attr_span;
    let __tracing_attr_guard;
    if ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() ||
            { false } {
        __tracing_attr_span =
            {
                use ::tracing::__macro_support::Callsite as _;
                static __CALLSITE: ::tracing::callsite::DefaultCallsite =
                    {
                        static META: ::tracing::Metadata<'static> =
                            {
                                ::tracing_core::metadata::Metadata::new("filter_reservation_impls",
                                    "rustc_trait_selection::traits::select",
                                    ::tracing::Level::DEBUG,
                                    ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
                                    ::tracing_core::__macro_support::Option::Some(1436u32),
                                    ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
                                    ::tracing_core::field::FieldSet::new(&["candidate"],
                                        ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                    ::tracing::metadata::Kind::SPAN)
                            };
                        ::tracing::callsite::DefaultCallsite::new(&META)
                    };
                let mut interest = ::tracing::subscriber::Interest::never();
                if ::tracing::Level::DEBUG <=
                                    ::tracing::level_filters::STATIC_MAX_LEVEL &&
                                ::tracing::Level::DEBUG <=
                                    ::tracing::level_filters::LevelFilter::current() &&
                            { interest = __CALLSITE.interest(); !interest.is_never() }
                        &&
                        ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                            interest) {
                    let meta = __CALLSITE.metadata();
                    ::tracing::Span::new(meta,
                        &{
                                #[allow(unused_imports)]
                                use ::tracing::field::{debug, display, Value};
                                let mut iter = meta.fields().iter();
                                meta.fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&::tracing::field::debug(&candidate)
                                                            as &dyn Value))])
                            })
                } else {
                    let span =
                        ::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
                    {};
                    span
                }
            };
        __tracing_attr_guard = __tracing_attr_span.enter();
    }

    #[warn(clippy :: suspicious_else_formatting)]
    {

        #[allow(unknown_lints, unreachable_code, clippy ::
        diverging_sub_expression, clippy :: empty_loop, clippy ::
        let_unit_value, clippy :: let_with_type_underscore, clippy ::
        needless_return, clippy :: unreachable)]
        if false {
            let __tracing_attr_fake_return:
                    SelectionResult<'tcx, SelectionCandidate<'tcx>> = loop {};
            return __tracing_attr_fake_return;
        }
        {
            let tcx = self.tcx();
            if let ImplCandidate(def_id) = candidate &&
                    let ty::ImplPolarity::Reservation =
                        tcx.impl_polarity(def_id) {
                if let Some(intercrate_ambiguity_clauses) =
                        &mut self.intercrate_ambiguity_causes {
                    let message =
                        {

                            #[allow(deprecated)]
                            {
                                {
                                    'done:
                                        {
                                        for i in tcx.get_all_attrs(def_id) {
                                            #[allow(unused_imports)]
                                            use rustc_hir::attrs::AttributeKind::*;
                                            let i: &rustc_hir::Attribute = i;
                                            match i {
                                                rustc_hir::Attribute::Parsed(RustcReservationImpl(_,
                                                    message)) => {
                                                    break 'done Some(*message);
                                                }
                                                rustc_hir::Attribute::Unparsed(..) =>
                                                    {}
                                                    #[deny(unreachable_patterns)]
                                                    _ => {}
                                            }
                                        }
                                        None
                                    }
                                }
                            }
                        };
                    if let Some(message) = message {
                        {
                            use ::tracing::__macro_support::Callsite as _;
                            static __CALLSITE: ::tracing::callsite::DefaultCallsite =
                                {
                                    static META: ::tracing::Metadata<'static> =
                                        {
                                            ::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/select/mod.rs:1449",
                                                "rustc_trait_selection::traits::select",
                                                ::tracing::Level::DEBUG,
                                                ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
                                                ::tracing_core::__macro_support::Option::Some(1449u32),
                                                ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
                                                ::tracing_core::field::FieldSet::new(&["message"],
                                                    ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                                ::tracing::metadata::Kind::EVENT)
                                        };
                                    ::tracing::callsite::DefaultCallsite::new(&META)
                                };
                            let enabled =
                                ::tracing::Level::DEBUG <=
                                            ::tracing::level_filters::STATIC_MAX_LEVEL &&
                                        ::tracing::Level::DEBUG <=
                                            ::tracing::level_filters::LevelFilter::current() &&
                                    {
                                        let interest = __CALLSITE.interest();
                                        !interest.is_never() &&
                                            ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                                                interest)
                                    };
                            if enabled {
                                (|value_set: ::tracing::field::ValueSet|
                                            {
                                                let meta = __CALLSITE.metadata();
                                                ::tracing::Event::dispatch(meta, &value_set);
                                                ;
                                            })({
                                        #[allow(unused_imports)]
                                        use ::tracing::field::{debug, display, Value};
                                        let mut iter = __CALLSITE.metadata().fields().iter();
                                        __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                            ::tracing::__macro_support::Option::Some(&format_args!("filter_reservation_impls: reservation impl ambiguity on {0:?}",
                                                                            def_id) as &dyn Value))])
                                    });
                            } else { ; }
                        };
                        intercrate_ambiguity_clauses.insert(IntercrateAmbiguityCause::ReservationImpl {
                                message,
                            });
                    }
                }
                return Ok(None);
            }
            Ok(Some(candidate))
        }
    }
}#[instrument(level = "debug", skip(self))]
1437    fn filter_reservation_impls(
1438        &mut self,
1439        candidate: SelectionCandidate<'tcx>,
1440    ) -> SelectionResult<'tcx, SelectionCandidate<'tcx>> {
1441        let tcx = self.tcx();
1442        // Treat reservation impls as ambiguity.
1443        if let ImplCandidate(def_id) = candidate
1444            && let ty::ImplPolarity::Reservation = tcx.impl_polarity(def_id)
1445        {
1446            if let Some(intercrate_ambiguity_clauses) = &mut self.intercrate_ambiguity_causes {
1447                let message = find_attr!(tcx, def_id, RustcReservationImpl(_, message) => *message);
1448                if let Some(message) = message {
1449                    debug!(
1450                        "filter_reservation_impls: \
1451                                 reservation impl ambiguity on {:?}",
1452                        def_id
1453                    );
1454                    intercrate_ambiguity_clauses
1455                        .insert(IntercrateAmbiguityCause::ReservationImpl { message });
1456                }
1457            }
1458            return Ok(None);
1459        }
1460        Ok(Some(candidate))
1461    }
1462
1463    fn is_knowable<'o>(&mut self, stack: &TraitObligationStack<'o, 'tcx>) -> Result<(), Conflict> {
1464        let obligation = &stack.obligation;
1465        match self.infcx.typing_mode() {
1466            TypingMode::Coherence => {}
1467            TypingMode::Analysis { .. }
1468            | TypingMode::Borrowck { .. }
1469            | TypingMode::PostBorrowckAnalysis { .. }
1470            | TypingMode::PostAnalysis => return Ok(()),
1471        }
1472
1473        {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/select/mod.rs:1473",
                        "rustc_trait_selection::traits::select",
                        ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
                        ::tracing_core::__macro_support::Option::Some(1473u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                let mut iter = __CALLSITE.metadata().fields().iter();
                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&format_args!("is_knowable()")
                                            as &dyn Value))])
            });
    } else { ; }
};debug!("is_knowable()");
1474
1475        let predicate = self.infcx.resolve_vars_if_possible(obligation.predicate);
1476
1477        // Okay to skip binder because of the nature of the
1478        // trait-ref-is-knowable check, which does not care about
1479        // bound regions.
1480        let trait_ref = predicate.skip_binder().trait_ref;
1481
1482        coherence::trait_ref_is_knowable(self.infcx, trait_ref, |ty| Ok::<_, !>(ty)).into_ok()
1483    }
1484
1485    /// Returns `true` if the global caches can be used.
1486    fn can_use_global_caches(
1487        &self,
1488        param_env: ty::ParamEnv<'tcx>,
1489        pred: ty::PolyTraitPredicate<'tcx>,
1490    ) -> bool {
1491        // If there are any inference variables in the `ParamEnv`, then we
1492        // always use a cache local to this particular scope. Otherwise, we
1493        // switch to a global cache.
1494        if param_env.has_infer() || pred.has_infer() {
1495            return false;
1496        }
1497
1498        match self.infcx.typing_mode() {
1499            // Avoid using the global cache during coherence and just rely
1500            // on the local cache. It is really just a simplification to
1501            // avoid us having to fear that coherence results "pollute"
1502            // the master cache. Since coherence executes pretty quickly,
1503            // it's not worth going to more trouble to increase the
1504            // hit-rate, I don't think.
1505            TypingMode::Coherence => false,
1506            // Avoid using the global cache when we're defining opaque types
1507            // as their hidden type may impact the result of candidate selection.
1508            //
1509            // HACK: This is still theoretically unsound. Goals can indirectly rely
1510            // on opaques in the defining scope, and it's easier to do so with TAIT.
1511            // However, if we disqualify *all* goals from being cached, perf suffers.
1512            // This is likely fixed by better caching in general in the new solver.
1513            // See: <https://github.com/rust-lang/rust/issues/132064>.
1514            TypingMode::Analysis {
1515                defining_opaque_types_and_generators: defining_opaque_types,
1516            }
1517            | TypingMode::Borrowck { defining_opaque_types } => {
1518                defining_opaque_types.is_empty()
1519                    || (!pred.has_opaque_types() && !pred.has_coroutines())
1520            }
1521            // The hidden types of `defined_opaque_types` is not local to the current
1522            // inference context, so we can freely move this to the global cache.
1523            TypingMode::PostBorrowckAnalysis { .. } => true,
1524            // The global cache is only used if there are no opaque types in
1525            // the defining scope or we're outside of analysis.
1526            //
1527            // FIXME(#132279): This is still incorrect as we treat opaque types
1528            // and default associated items differently between these two modes.
1529            TypingMode::PostAnalysis => true,
1530        }
1531    }
1532
1533    fn check_candidate_cache(
1534        &mut self,
1535        param_env: ty::ParamEnv<'tcx>,
1536        cache_fresh_trait_pred: ty::PolyTraitPredicate<'tcx>,
1537    ) -> Option<SelectionResult<'tcx, SelectionCandidate<'tcx>>> {
1538        let infcx = self.infcx;
1539        let tcx = infcx.tcx;
1540        let pred = cache_fresh_trait_pred.skip_binder();
1541
1542        if self.can_use_global_caches(param_env, cache_fresh_trait_pred) {
1543            if let Some(res) = tcx.selection_cache.get(&(infcx.typing_env(param_env), pred), tcx) {
1544                return Some(res);
1545            } else if truecfg!(debug_assertions) {
1546                match infcx.selection_cache.get(&(param_env, pred), tcx) {
1547                    None | Some(Err(SelectionError::Overflow(OverflowError::Canonical))) => {}
1548                    res => ::rustc_middle::util::bug::bug_fmt(format_args!("unexpected local cache result: {0:?}",
        res))bug!("unexpected local cache result: {res:?}"),
1549                }
1550            }
1551        }
1552
1553        // Subtle: we need to check the local cache even if we're able to use the
1554        // global cache as we don't cache overflow in the global cache but need to
1555        // cache it as otherwise rustdoc hangs when compiling diesel.
1556        infcx.selection_cache.get(&(param_env, pred), tcx)
1557    }
1558
1559    /// Determines whether can we safely cache the result
1560    /// of selecting an obligation. This is almost always `true`,
1561    /// except when dealing with certain `ParamCandidate`s.
1562    ///
1563    /// Ordinarily, a `ParamCandidate` will contain no inference variables,
1564    /// since it was usually produced directly from a `DefId`. However,
1565    /// certain cases (currently only librustdoc's blanket impl finder),
1566    /// a `ParamEnv` may be explicitly constructed with inference types.
1567    /// When this is the case, we do *not* want to cache the resulting selection
1568    /// candidate. This is due to the fact that it might not always be possible
1569    /// to equate the obligation's trait ref and the candidate's trait ref,
1570    /// if more constraints end up getting added to an inference variable.
1571    ///
1572    /// Because of this, we always want to re-run the full selection
1573    /// process for our obligation the next time we see it, since
1574    /// we might end up picking a different `SelectionCandidate` (or none at all).
1575    fn can_cache_candidate(
1576        &self,
1577        result: &SelectionResult<'tcx, SelectionCandidate<'tcx>>,
1578    ) -> bool {
1579        match result {
1580            Ok(Some(SelectionCandidate::ParamCandidate(trait_ref))) => !trait_ref.has_infer(),
1581            _ => true,
1582        }
1583    }
1584
1585    #[allow(clippy :: suspicious_else_formatting)]
{
    let __tracing_attr_span;
    let __tracing_attr_guard;
    if ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() ||
            { false } {
        __tracing_attr_span =
            {
                use ::tracing::__macro_support::Callsite as _;
                static __CALLSITE: ::tracing::callsite::DefaultCallsite =
                    {
                        static META: ::tracing::Metadata<'static> =
                            {
                                ::tracing_core::metadata::Metadata::new("insert_candidate_cache",
                                    "rustc_trait_selection::traits::select",
                                    ::tracing::Level::DEBUG,
                                    ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
                                    ::tracing_core::__macro_support::Option::Some(1585u32),
                                    ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
                                    ::tracing_core::field::FieldSet::new(&["candidate"],
                                        ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                    ::tracing::metadata::Kind::SPAN)
                            };
                        ::tracing::callsite::DefaultCallsite::new(&META)
                    };
                let mut interest = ::tracing::subscriber::Interest::never();
                if ::tracing::Level::DEBUG <=
                                    ::tracing::level_filters::STATIC_MAX_LEVEL &&
                                ::tracing::Level::DEBUG <=
                                    ::tracing::level_filters::LevelFilter::current() &&
                            { interest = __CALLSITE.interest(); !interest.is_never() }
                        &&
                        ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                            interest) {
                    let meta = __CALLSITE.metadata();
                    ::tracing::Span::new(meta,
                        &{
                                #[allow(unused_imports)]
                                use ::tracing::field::{debug, display, Value};
                                let mut iter = meta.fields().iter();
                                meta.fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&::tracing::field::debug(&candidate)
                                                            as &dyn Value))])
                            })
                } else {
                    let span =
                        ::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
                    {};
                    span
                }
            };
        __tracing_attr_guard = __tracing_attr_span.enter();
    }

    #[warn(clippy :: suspicious_else_formatting)]
    {

        #[allow(unknown_lints, unreachable_code, clippy ::
        diverging_sub_expression, clippy :: empty_loop, clippy ::
        let_unit_value, clippy :: let_with_type_underscore, clippy ::
        needless_return, clippy :: unreachable)]
        if false {
            let __tracing_attr_fake_return: () = loop {};
            return __tracing_attr_fake_return;
        }
        {
            let infcx = self.infcx;
            let tcx = infcx.tcx;
            let pred = cache_fresh_trait_pred.skip_binder();
            if !self.can_cache_candidate(&candidate) {
                {
                    use ::tracing::__macro_support::Callsite as _;
                    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
                        {
                            static META: ::tracing::Metadata<'static> =
                                {
                                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/select/mod.rs:1598",
                                        "rustc_trait_selection::traits::select",
                                        ::tracing::Level::DEBUG,
                                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
                                        ::tracing_core::__macro_support::Option::Some(1598u32),
                                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
                                        ::tracing_core::field::FieldSet::new(&["message", "pred",
                                                        "candidate"],
                                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                        ::tracing::metadata::Kind::EVENT)
                                };
                            ::tracing::callsite::DefaultCallsite::new(&META)
                        };
                    let enabled =
                        ::tracing::Level::DEBUG <=
                                    ::tracing::level_filters::STATIC_MAX_LEVEL &&
                                ::tracing::Level::DEBUG <=
                                    ::tracing::level_filters::LevelFilter::current() &&
                            {
                                let interest = __CALLSITE.interest();
                                !interest.is_never() &&
                                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                                        interest)
                            };
                    if enabled {
                        (|value_set: ::tracing::field::ValueSet|
                                    {
                                        let meta = __CALLSITE.metadata();
                                        ::tracing::Event::dispatch(meta, &value_set);
                                        ;
                                    })({
                                #[allow(unused_imports)]
                                use ::tracing::field::{debug, display, Value};
                                let mut iter = __CALLSITE.metadata().fields().iter();
                                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&format_args!("insert_candidate_cache - candidate is not cacheable")
                                                            as &dyn Value)),
                                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&debug(&pred) as
                                                            &dyn Value)),
                                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&debug(&candidate)
                                                            as &dyn Value))])
                            });
                    } else { ; }
                };
                return;
            }
            if self.can_use_global_caches(param_env, cache_fresh_trait_pred) {
                if let Err(SelectionError::Overflow(OverflowError::Canonical))
                        = candidate
                    {} else {
                    {
                        use ::tracing::__macro_support::Callsite as _;
                        static __CALLSITE: ::tracing::callsite::DefaultCallsite =
                            {
                                static META: ::tracing::Metadata<'static> =
                                    {
                                        ::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/select/mod.rs:1606",
                                            "rustc_trait_selection::traits::select",
                                            ::tracing::Level::DEBUG,
                                            ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
                                            ::tracing_core::__macro_support::Option::Some(1606u32),
                                            ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
                                            ::tracing_core::field::FieldSet::new(&["message", "pred",
                                                            "candidate"],
                                                ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                            ::tracing::metadata::Kind::EVENT)
                                    };
                                ::tracing::callsite::DefaultCallsite::new(&META)
                            };
                        let enabled =
                            ::tracing::Level::DEBUG <=
                                        ::tracing::level_filters::STATIC_MAX_LEVEL &&
                                    ::tracing::Level::DEBUG <=
                                        ::tracing::level_filters::LevelFilter::current() &&
                                {
                                    let interest = __CALLSITE.interest();
                                    !interest.is_never() &&
                                        ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                                            interest)
                                };
                        if enabled {
                            (|value_set: ::tracing::field::ValueSet|
                                        {
                                            let meta = __CALLSITE.metadata();
                                            ::tracing::Event::dispatch(meta, &value_set);
                                            ;
                                        })({
                                    #[allow(unused_imports)]
                                    use ::tracing::field::{debug, display, Value};
                                    let mut iter = __CALLSITE.metadata().fields().iter();
                                    __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                        ::tracing::__macro_support::Option::Some(&format_args!("insert_candidate_cache global")
                                                                as &dyn Value)),
                                                    (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                        ::tracing::__macro_support::Option::Some(&debug(&pred) as
                                                                &dyn Value)),
                                                    (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                        ::tracing::__macro_support::Option::Some(&debug(&candidate)
                                                                as &dyn Value))])
                                });
                        } else { ; }
                    };
                    if true {
                        if !!candidate.has_infer() {
                            ::core::panicking::panic("assertion failed: !candidate.has_infer()")
                        };
                    };
                    tcx.selection_cache.insert((infcx.typing_env(param_env),
                            pred), dep_node, candidate);
                    return;
                }
            }
            {
                use ::tracing::__macro_support::Callsite as _;
                static __CALLSITE: ::tracing::callsite::DefaultCallsite =
                    {
                        static META: ::tracing::Metadata<'static> =
                            {
                                ::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/select/mod.rs:1619",
                                    "rustc_trait_selection::traits::select",
                                    ::tracing::Level::DEBUG,
                                    ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
                                    ::tracing_core::__macro_support::Option::Some(1619u32),
                                    ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
                                    ::tracing_core::field::FieldSet::new(&["message", "pred",
                                                    "candidate"],
                                        ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                    ::tracing::metadata::Kind::EVENT)
                            };
                        ::tracing::callsite::DefaultCallsite::new(&META)
                    };
                let enabled =
                    ::tracing::Level::DEBUG <=
                                ::tracing::level_filters::STATIC_MAX_LEVEL &&
                            ::tracing::Level::DEBUG <=
                                ::tracing::level_filters::LevelFilter::current() &&
                        {
                            let interest = __CALLSITE.interest();
                            !interest.is_never() &&
                                ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                                    interest)
                        };
                if enabled {
                    (|value_set: ::tracing::field::ValueSet|
                                {
                                    let meta = __CALLSITE.metadata();
                                    ::tracing::Event::dispatch(meta, &value_set);
                                    ;
                                })({
                            #[allow(unused_imports)]
                            use ::tracing::field::{debug, display, Value};
                            let mut iter = __CALLSITE.metadata().fields().iter();
                            __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                ::tracing::__macro_support::Option::Some(&format_args!("insert_candidate_cache local")
                                                        as &dyn Value)),
                                            (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                ::tracing::__macro_support::Option::Some(&debug(&pred) as
                                                        &dyn Value)),
                                            (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                ::tracing::__macro_support::Option::Some(&debug(&candidate)
                                                        as &dyn Value))])
                        });
                } else { ; }
            };
            self.infcx.selection_cache.insert((param_env, pred), dep_node,
                candidate);
        }
    }
}#[instrument(skip(self, param_env, cache_fresh_trait_pred, dep_node), level = "debug")]
1586    fn insert_candidate_cache(
1587        &mut self,
1588        param_env: ty::ParamEnv<'tcx>,
1589        cache_fresh_trait_pred: ty::PolyTraitPredicate<'tcx>,
1590        dep_node: DepNodeIndex,
1591        candidate: SelectionResult<'tcx, SelectionCandidate<'tcx>>,
1592    ) {
1593        let infcx = self.infcx;
1594        let tcx = infcx.tcx;
1595        let pred = cache_fresh_trait_pred.skip_binder();
1596
1597        if !self.can_cache_candidate(&candidate) {
1598            debug!(?pred, ?candidate, "insert_candidate_cache - candidate is not cacheable");
1599            return;
1600        }
1601
1602        if self.can_use_global_caches(param_env, cache_fresh_trait_pred) {
1603            if let Err(SelectionError::Overflow(OverflowError::Canonical)) = candidate {
1604                // Don't cache overflow globally; we only produce this in certain modes.
1605            } else {
1606                debug!(?pred, ?candidate, "insert_candidate_cache global");
1607                debug_assert!(!candidate.has_infer());
1608
1609                // This may overwrite the cache with the same value.
1610                tcx.selection_cache.insert(
1611                    (infcx.typing_env(param_env), pred),
1612                    dep_node,
1613                    candidate,
1614                );
1615                return;
1616            }
1617        }
1618
1619        debug!(?pred, ?candidate, "insert_candidate_cache local");
1620        self.infcx.selection_cache.insert((param_env, pred), dep_node, candidate);
1621    }
1622
1623    /// Looks at the item bounds of the projection or opaque type.
1624    /// If this is a nested rigid projection, such as
1625    /// `<<T as Tr1>::Assoc as Tr2>::Assoc`, consider the item bounds
1626    /// on both `Tr1::Assoc` and `Tr2::Assoc`, since we may encounter
1627    /// relative bounds on both via the `associated_type_bounds` feature.
1628    pub(super) fn for_each_item_bound<T>(
1629        &mut self,
1630        mut self_ty: Ty<'tcx>,
1631        mut for_each: impl FnMut(
1632            &mut Self,
1633            ty::Clause<'tcx>,
1634            usize,
1635            AliasBoundKind,
1636        ) -> ControlFlow<T, ()>,
1637        on_ambiguity: impl FnOnce(),
1638    ) -> ControlFlow<T, ()> {
1639        let mut idx = 0;
1640        let mut alias_bound_kind = AliasBoundKind::SelfBounds;
1641
1642        loop {
1643            let (kind, alias_ty) = match *self_ty.kind() {
1644                ty::Alias(kind @ (ty::Projection | ty::Opaque), alias_ty) => (kind, alias_ty),
1645                ty::Infer(ty::TyVar(_)) => {
1646                    on_ambiguity();
1647                    return ControlFlow::Continue(());
1648                }
1649                _ => return ControlFlow::Continue(()),
1650            };
1651
1652            // HACK: On subsequent recursions, we only care about bounds that don't
1653            // share the same type as `self_ty`. This is because for truly rigid
1654            // projections, we will never be able to equate, e.g. `<T as Tr>::A`
1655            // with `<<T as Tr>::A as Tr>::A`.
1656            let relevant_bounds = if alias_bound_kind == AliasBoundKind::NonSelfBounds {
1657                self.tcx().item_non_self_bounds(alias_ty.def_id)
1658            } else {
1659                self.tcx().item_self_bounds(alias_ty.def_id)
1660            };
1661
1662            for bound in relevant_bounds.instantiate(self.tcx(), alias_ty.args) {
1663                for_each(self, bound, idx, alias_bound_kind)?;
1664                idx += 1;
1665            }
1666
1667            if kind == ty::Projection {
1668                self_ty = alias_ty.self_ty();
1669            } else {
1670                return ControlFlow::Continue(());
1671            }
1672
1673            alias_bound_kind = AliasBoundKind::NonSelfBounds;
1674        }
1675    }
1676
1677    /// Equates the trait in `obligation` with trait bound. If the two traits
1678    /// can be equated and the normalized trait bound doesn't contain inference
1679    /// variables or placeholders, the normalized bound is returned.
1680    fn match_normalize_trait_ref(
1681        &mut self,
1682        obligation: &PolyTraitObligation<'tcx>,
1683        placeholder_trait_ref: ty::TraitRef<'tcx>,
1684        trait_bound: ty::PolyTraitRef<'tcx>,
1685    ) -> Result<Option<ty::TraitRef<'tcx>>, ()> {
1686        if true {
    if !!placeholder_trait_ref.has_escaping_bound_vars() {
        ::core::panicking::panic("assertion failed: !placeholder_trait_ref.has_escaping_bound_vars()")
    };
};debug_assert!(!placeholder_trait_ref.has_escaping_bound_vars());
1687        if placeholder_trait_ref.def_id != trait_bound.def_id() {
1688            // Avoid unnecessary normalization
1689            return Err(());
1690        }
1691
1692        let drcx = DeepRejectCtxt::relate_rigid_rigid(self.infcx.tcx);
1693        let obligation_args = obligation.predicate.skip_binder().trait_ref.args;
1694        if !drcx.args_may_unify(obligation_args, trait_bound.skip_binder().args) {
1695            return Err(());
1696        }
1697
1698        let trait_bound = self.infcx.instantiate_binder_with_fresh_vars(
1699            obligation.cause.span,
1700            HigherRankedType,
1701            trait_bound,
1702        );
1703        let Normalized { value: trait_bound, obligations: _ } = ensure_sufficient_stack(|| {
1704            normalize_with_depth(
1705                self,
1706                obligation.param_env,
1707                obligation.cause.clone(),
1708                obligation.recursion_depth + 1,
1709                trait_bound,
1710            )
1711        });
1712        self.infcx
1713            .at(&obligation.cause, obligation.param_env)
1714            .eq(DefineOpaqueTypes::No, placeholder_trait_ref, trait_bound)
1715            .map(|InferOk { obligations: _, value: () }| {
1716                // This method is called within a probe, so we can't have
1717                // inference variables and placeholders escape.
1718                if !trait_bound.has_infer() && !trait_bound.has_placeholders() {
1719                    Some(trait_bound)
1720                } else {
1721                    None
1722                }
1723            })
1724            .map_err(|_| ())
1725    }
1726
1727    fn where_clause_may_apply<'o>(
1728        &mut self,
1729        stack: &TraitObligationStack<'o, 'tcx>,
1730        where_clause_trait_ref: ty::PolyTraitRef<'tcx>,
1731    ) -> Result<EvaluationResult, OverflowError> {
1732        self.evaluation_probe(|this| {
1733            match this.match_where_clause_trait_ref(stack.obligation, where_clause_trait_ref) {
1734                Ok(obligations) => this.evaluate_predicates_recursively(stack.list(), obligations),
1735                Err(()) => Ok(EvaluatedToErr),
1736            }
1737        })
1738    }
1739
1740    /// Return `Yes` if the obligation's predicate type applies to the env_predicate, and
1741    /// `No` if it does not. Return `Ambiguous` in the case that the projection type is a GAT,
1742    /// and applying this env_predicate constrains any of the obligation's GAT parameters.
1743    ///
1744    /// This behavior is a somewhat of a hack to prevent over-constraining inference variables
1745    /// in cases like #91762.
1746    pub(super) fn match_projection_projections(
1747        &mut self,
1748        obligation: &ProjectionTermObligation<'tcx>,
1749        env_predicate: PolyProjectionPredicate<'tcx>,
1750        potentially_unnormalized_candidates: bool,
1751    ) -> ProjectionMatchesProjection {
1752        if true {
    match (&obligation.predicate.def_id, &env_predicate.item_def_id()) {
        (left_val, right_val) => {
            if !(*left_val == *right_val) {
                let kind = ::core::panicking::AssertKind::Eq;
                ::core::panicking::assert_failed(kind, &*left_val,
                    &*right_val, ::core::option::Option::None);
            }
        }
    };
};debug_assert_eq!(obligation.predicate.def_id, env_predicate.item_def_id());
1753
1754        let mut nested_obligations = PredicateObligations::new();
1755        let infer_predicate = self.infcx.instantiate_binder_with_fresh_vars(
1756            obligation.cause.span,
1757            BoundRegionConversionTime::HigherRankedType,
1758            env_predicate,
1759        );
1760        let infer_projection = if potentially_unnormalized_candidates {
1761            ensure_sufficient_stack(|| {
1762                normalize_with_depth_to(
1763                    self,
1764                    obligation.param_env,
1765                    obligation.cause.clone(),
1766                    obligation.recursion_depth + 1,
1767                    infer_predicate.projection_term,
1768                    &mut nested_obligations,
1769                )
1770            })
1771        } else {
1772            infer_predicate.projection_term
1773        };
1774
1775        let is_match = self
1776            .infcx
1777            .at(&obligation.cause, obligation.param_env)
1778            .eq(DefineOpaqueTypes::No, obligation.predicate, infer_projection)
1779            .is_ok_and(|InferOk { obligations, value: () }| {
1780                self.evaluate_predicates_recursively(
1781                    TraitObligationStackList::empty(&ProvisionalEvaluationCache::default()),
1782                    nested_obligations.into_iter().chain(obligations),
1783                )
1784                .is_ok_and(|res| res.may_apply())
1785            });
1786
1787        if is_match {
1788            let generics = self.tcx().generics_of(obligation.predicate.def_id);
1789            // FIXME(generic_associated_types): Addresses aggressive inference in #92917.
1790            // If this type is a GAT, and of the GAT args resolve to something new,
1791            // that means that we must have newly inferred something about the GAT.
1792            // We should give up in that case.
1793            //
1794            // This only detects one layer of inference, which is probably not what we actually
1795            // want, but fixing it causes some ambiguity:
1796            // <https://github.com/rust-lang/rust/issues/125196>.
1797            if !generics.is_own_empty()
1798                && obligation.predicate.args[generics.parent_count..].iter().any(|&p| {
1799                    p.has_non_region_infer()
1800                        && match p.kind() {
1801                            ty::GenericArgKind::Const(ct) => {
1802                                self.infcx.shallow_resolve_const(ct) != ct
1803                            }
1804                            ty::GenericArgKind::Type(ty) => self.infcx.shallow_resolve(ty) != ty,
1805                            ty::GenericArgKind::Lifetime(_) => false,
1806                        }
1807                })
1808            {
1809                ProjectionMatchesProjection::Ambiguous
1810            } else {
1811                ProjectionMatchesProjection::Yes
1812            }
1813        } else {
1814            ProjectionMatchesProjection::No
1815        }
1816    }
1817}
1818
1819/// ## Winnowing
1820///
1821/// Winnowing is the process of attempting to resolve ambiguity by
1822/// probing further. During the winnowing process, we unify all
1823/// type variables and then we also attempt to evaluate recursive
1824/// bounds to see if they are satisfied.
1825impl<'tcx> SelectionContext<'_, 'tcx> {
1826    /// If there are multiple ways to prove a trait goal, we make some
1827    /// *fairly arbitrary* choices about which candidate is actually used.
1828    ///
1829    /// For more details, look at the implementation of this method :)
1830    x;#[instrument(level = "debug", skip(self), ret)]
1831    fn winnow_candidates(
1832        &mut self,
1833        has_non_region_infer: bool,
1834        candidate_preference_mode: CandidatePreferenceMode,
1835        mut candidates: Vec<EvaluatedCandidate<'tcx>>,
1836    ) -> Option<SelectionCandidate<'tcx>> {
1837        if candidates.len() == 1 {
1838            return Some(candidates.pop().unwrap().candidate);
1839        }
1840
1841        // We prefer `Sized` candidates over everything.
1842        let mut sized_candidates =
1843            candidates.iter().filter(|c| matches!(c.candidate, SizedCandidate));
1844        if let Some(sized_candidate) = sized_candidates.next() {
1845            // There should only ever be a single sized candidate
1846            // as they would otherwise overlap.
1847            debug_assert_eq!(sized_candidates.next(), None);
1848            // Only prefer the built-in `Sized` candidate if its nested goals are certain.
1849            // Otherwise, we may encounter failure later on if inference causes this candidate
1850            // to not hold, but a where clause would've applied instead.
1851            if sized_candidate.evaluation.must_apply_modulo_regions() {
1852                return Some(sized_candidate.candidate.clone());
1853            } else {
1854                return None;
1855            }
1856        }
1857
1858        // Before we consider where-bounds, we have to deduplicate them here and also
1859        // drop where-bounds in case the same where-bound exists without bound vars.
1860        // This is necessary as elaborating super-trait bounds may result in duplicates.
1861        'search_victim: loop {
1862            for (i, this) in candidates.iter().enumerate() {
1863                let ParamCandidate(this) = this.candidate else { continue };
1864                for (j, other) in candidates.iter().enumerate() {
1865                    if i == j {
1866                        continue;
1867                    }
1868
1869                    let ParamCandidate(other) = other.candidate else { continue };
1870                    if this == other {
1871                        candidates.remove(j);
1872                        continue 'search_victim;
1873                    }
1874
1875                    if this.skip_binder().trait_ref == other.skip_binder().trait_ref
1876                        && this.skip_binder().polarity == other.skip_binder().polarity
1877                        && !this.skip_binder().trait_ref.has_escaping_bound_vars()
1878                    {
1879                        candidates.remove(j);
1880                        continue 'search_victim;
1881                    }
1882                }
1883            }
1884
1885            break;
1886        }
1887
1888        let mut alias_bounds = candidates.iter().filter_map(|c| {
1889            if let ProjectionCandidate { idx, kind } = c.candidate {
1890                Some((idx, kind))
1891            } else {
1892                None
1893            }
1894        });
1895        // Extract non-nested alias bound candidates, will be preferred over where bounds if
1896        // we're proving an auto-trait, sizedness trait or default trait.
1897        if matches!(candidate_preference_mode, CandidatePreferenceMode::Marker) {
1898            match alias_bounds
1899                .clone()
1900                .filter_map(|(idx, kind)| (kind == AliasBoundKind::SelfBounds).then_some(idx))
1901                .try_reduce(|c1, c2| if has_non_region_infer { None } else { Some(c1.min(c2)) })
1902            {
1903                Some(Some(idx)) => {
1904                    return Some(ProjectionCandidate { idx, kind: AliasBoundKind::SelfBounds });
1905                }
1906                Some(None) => {}
1907                None => return None,
1908            }
1909        }
1910
1911        // The next highest priority is for non-global where-bounds. However, while we don't
1912        // prefer global where-clauses here, we do bail with ambiguity when encountering both
1913        // a global and a non-global where-clause.
1914        //
1915        // Our handling of where-bounds is generally fairly messy but necessary for backwards
1916        // compatibility, see #50825 for why we need to handle global where-bounds like this.
1917        let is_global = |c: ty::PolyTraitPredicate<'tcx>| c.is_global() && !c.has_bound_vars();
1918        let param_candidates = candidates
1919            .iter()
1920            .filter_map(|c| if let ParamCandidate(p) = c.candidate { Some(p) } else { None });
1921        let mut has_global_bounds = false;
1922        let mut param_candidate = None;
1923        for c in param_candidates {
1924            if is_global(c) {
1925                has_global_bounds = true;
1926            } else if param_candidate.replace(c).is_some() {
1927                // Ambiguity, two potentially different where-clauses
1928                return None;
1929            }
1930        }
1931        if let Some(predicate) = param_candidate {
1932            // Ambiguity, a global and a non-global where-bound.
1933            if has_global_bounds {
1934                return None;
1935            } else {
1936                return Some(ParamCandidate(predicate));
1937            }
1938        }
1939
1940        // Prefer alias-bounds over blanket impls for rigid associated types. This is
1941        // fairly arbitrary but once again necessary for backwards compatibility.
1942        // If there are multiple applicable candidates which don't affect type inference,
1943        // choose the one with the lowest index.
1944        match alias_bounds.try_reduce(|(c1, k1), (c2, k2)| {
1945            if has_non_region_infer {
1946                None
1947            } else if c1 < c2 {
1948                Some((c1, k1))
1949            } else {
1950                Some((c2, k2))
1951            }
1952        }) {
1953            Some(Some((idx, kind))) => return Some(ProjectionCandidate { idx, kind }),
1954            Some(None) => {}
1955            None => return None,
1956        }
1957
1958        // Need to prioritize builtin trait object impls as `<dyn Any as Any>::type_id`
1959        // should use the vtable method and not the method provided by the user-defined
1960        // impl `impl<T: ?Sized> Any for T { .. }`. This really shouldn't exist but is
1961        // necessary due to #57893. We again arbitrarily prefer the applicable candidate
1962        // with the lowest index.
1963        //
1964        // We do not want to use these impls to guide inference in case a user-written impl
1965        // may also apply.
1966        let object_bound = candidates
1967            .iter()
1968            .filter_map(|c| if let ObjectCandidate(i) = c.candidate { Some(i) } else { None })
1969            .try_reduce(|c1, c2| if has_non_region_infer { None } else { Some(c1.min(c2)) });
1970        match object_bound {
1971            Some(Some(index)) => {
1972                return if has_non_region_infer
1973                    && candidates.iter().any(|c| matches!(c.candidate, ImplCandidate(_)))
1974                {
1975                    None
1976                } else {
1977                    Some(ObjectCandidate(index))
1978                };
1979            }
1980            Some(None) => {}
1981            None => return None,
1982        }
1983        // Same for upcasting.
1984        let upcast_bound = candidates
1985            .iter()
1986            .filter_map(|c| {
1987                if let TraitUpcastingUnsizeCandidate(i) = c.candidate { Some(i) } else { None }
1988            })
1989            .try_reduce(|c1, c2| if has_non_region_infer { None } else { Some(c1.min(c2)) });
1990        match upcast_bound {
1991            Some(Some(index)) => return Some(TraitUpcastingUnsizeCandidate(index)),
1992            Some(None) => {}
1993            None => return None,
1994        }
1995
1996        // Finally, handle overlapping user-written impls.
1997        let impls = candidates.iter().filter_map(|c| {
1998            if let ImplCandidate(def_id) = c.candidate {
1999                Some((def_id, c.evaluation))
2000            } else {
2001                None
2002            }
2003        });
2004        let mut impl_candidate = None;
2005        for c in impls {
2006            if let Some(prev) = impl_candidate.replace(c) {
2007                if self.prefer_lhs_over_victim(has_non_region_infer, c, prev.0) {
2008                    // Ok, prefer `c` over the previous entry
2009                } else if self.prefer_lhs_over_victim(has_non_region_infer, prev, c.0) {
2010                    // Ok, keep `prev` instead of the new entry
2011                    impl_candidate = Some(prev);
2012                } else {
2013                    // Ambiguity, two potentially different where-clauses
2014                    return None;
2015                }
2016            }
2017        }
2018        if let Some((def_id, _evaluation)) = impl_candidate {
2019            // Don't use impl candidates which overlap with other candidates.
2020            // This should pretty much only ever happen with malformed impls.
2021            if candidates.iter().all(|c| match c.candidate {
2022                SizedCandidate
2023                | BuiltinCandidate
2024                | TransmutabilityCandidate
2025                | AutoImplCandidate
2026                | ClosureCandidate { .. }
2027                | AsyncClosureCandidate
2028                | AsyncFnKindHelperCandidate
2029                | CoroutineCandidate
2030                | FutureCandidate
2031                | IteratorCandidate
2032                | AsyncIteratorCandidate
2033                | FnPointerCandidate
2034                | TraitAliasCandidate
2035                | TraitUpcastingUnsizeCandidate(_)
2036                | BuiltinObjectCandidate
2037                | BuiltinUnsizeCandidate
2038                | PointerLikeCandidate
2039                | BikeshedGuaranteedNoDropCandidate => false,
2040                // Non-global param candidates have already been handled, global
2041                // where-bounds get ignored.
2042                ParamCandidate(_) | ImplCandidate(_) => true,
2043                ProjectionCandidate { .. } | ObjectCandidate(_) => unreachable!(),
2044            }) {
2045                return Some(ImplCandidate(def_id));
2046            } else {
2047                return None;
2048            }
2049        }
2050
2051        if candidates.len() == 1 {
2052            Some(candidates.pop().unwrap().candidate)
2053        } else {
2054            // Also try ignoring all global where-bounds and check whether we end
2055            // with a unique candidate in this case.
2056            let mut not_a_global_where_bound = candidates
2057                .into_iter()
2058                .filter(|c| !matches!(c.candidate, ParamCandidate(p) if is_global(p)));
2059            not_a_global_where_bound
2060                .next()
2061                .map(|c| c.candidate)
2062                .filter(|_| not_a_global_where_bound.next().is_none())
2063        }
2064    }
2065
2066    fn prefer_lhs_over_victim(
2067        &self,
2068        has_non_region_infer: bool,
2069        (lhs, lhs_evaluation): (DefId, EvaluationResult),
2070        victim: DefId,
2071    ) -> bool {
2072        let tcx = self.tcx();
2073        // See if we can toss out `victim` based on specialization.
2074        //
2075        // While this requires us to know *for sure* that the `lhs` impl applies
2076        // we still use modulo regions here. This is fine as specialization currently
2077        // assumes that specializing impls have to be always applicable, meaning that
2078        // the only allowed region constraints may be constraints also present on the default impl.
2079        if lhs_evaluation.must_apply_modulo_regions() {
2080            if tcx.specializes((lhs, victim)) {
2081                return true;
2082            }
2083        }
2084
2085        match tcx.impls_are_allowed_to_overlap(lhs, victim) {
2086            // For candidates which already reference errors it doesn't really
2087            // matter what we do 🤷
2088            Some(ty::ImplOverlapKind::Permitted { marker: false }) => {
2089                lhs_evaluation.must_apply_considering_regions()
2090            }
2091            Some(ty::ImplOverlapKind::Permitted { marker: true }) => {
2092                // Subtle: If the predicate we are evaluating has inference
2093                // variables, do *not* allow discarding candidates due to
2094                // marker trait impls.
2095                //
2096                // Without this restriction, we could end up accidentally
2097                // constraining inference variables based on an arbitrarily
2098                // chosen trait impl.
2099                //
2100                // Imagine we have the following code:
2101                //
2102                // ```rust
2103                // #[marker] trait MyTrait {}
2104                // impl MyTrait for u8 {}
2105                // impl MyTrait for bool {}
2106                // ```
2107                //
2108                // And we are evaluating the predicate `<_#0t as MyTrait>`.
2109                //
2110                // During selection, we will end up with one candidate for each
2111                // impl of `MyTrait`. If we were to discard one impl in favor
2112                // of the other, we would be left with one candidate, causing
2113                // us to "successfully" select the predicate, unifying
2114                // _#0t with (for example) `u8`.
2115                //
2116                // However, we have no reason to believe that this unification
2117                // is correct - we've essentially just picked an arbitrary
2118                // *possibility* for _#0t, and required that this be the *only*
2119                // possibility.
2120                //
2121                // Eventually, we will either:
2122                // 1) Unify all inference variables in the predicate through
2123                // some other means (e.g. type-checking of a function). We will
2124                // then be in a position to drop marker trait candidates
2125                // without constraining inference variables (since there are
2126                // none left to constrain)
2127                // 2) Be left with some unconstrained inference variables. We
2128                // will then correctly report an inference error, since the
2129                // existence of multiple marker trait impls tells us nothing
2130                // about which one should actually apply.
2131                !has_non_region_infer && lhs_evaluation.must_apply_considering_regions()
2132            }
2133            None => false,
2134        }
2135    }
2136}
2137
2138impl<'tcx> SelectionContext<'_, 'tcx> {
2139    fn sizedness_conditions(
2140        &mut self,
2141        self_ty: Ty<'tcx>,
2142        sizedness: SizedTraitKind,
2143    ) -> ty::Binder<'tcx, Vec<Ty<'tcx>>> {
2144        match self_ty.kind() {
2145            ty::Infer(ty::IntVar(_) | ty::FloatVar(_))
2146            | ty::Uint(_)
2147            | ty::Int(_)
2148            | ty::Bool
2149            | ty::Float(_)
2150            | ty::FnDef(..)
2151            | ty::FnPtr(..)
2152            | ty::RawPtr(..)
2153            | ty::Char
2154            | ty::Ref(..)
2155            | ty::Coroutine(..)
2156            | ty::CoroutineWitness(..)
2157            | ty::Array(..)
2158            | ty::Closure(..)
2159            | ty::CoroutineClosure(..)
2160            | ty::Never
2161            | ty::Error(_) => ty::Binder::dummy(::alloc::vec::Vec::new()vec![]),
2162
2163            ty::Str | ty::Slice(_) | ty::Dynamic(..) => match sizedness {
2164                SizedTraitKind::Sized => {
    ::core::panicking::panic_fmt(format_args!("internal error: entered unreachable code: {0}",
            format_args!("tried to assemble `Sized` for unsized type")));
}unreachable!("tried to assemble `Sized` for unsized type"),
2165                SizedTraitKind::MetaSized => ty::Binder::dummy(::alloc::vec::Vec::new()vec![]),
2166            },
2167
2168            ty::Foreign(..) => {
    ::core::panicking::panic_fmt(format_args!("internal error: entered unreachable code: {0}",
            format_args!("tried to assemble `Sized` for unsized type")));
}unreachable!("tried to assemble `Sized` for unsized type"),
2169
2170            ty::Tuple(tys) => {
2171                ty::Binder::dummy(tys.last().map_or_else(Vec::new, |&last| ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
        [last]))vec![last]))
2172            }
2173
2174            ty::Pat(ty, _) => ty::Binder::dummy(::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
        [*ty]))vec![*ty]),
2175
2176            ty::Adt(def, args) => {
2177                if let Some(crit) = def.sizedness_constraint(self.tcx(), sizedness) {
2178                    ty::Binder::dummy(::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
        [crit.instantiate(self.tcx(), args)]))vec![crit.instantiate(self.tcx(), args)])
2179                } else {
2180                    ty::Binder::dummy(::alloc::vec::Vec::new()vec![])
2181                }
2182            }
2183
2184            ty::UnsafeBinder(binder_ty) => binder_ty.map_bound(|ty| ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
        [ty]))vec![ty]),
2185
2186            ty::Alias(..)
2187            | ty::Param(_)
2188            | ty::Placeholder(..)
2189            | ty::Infer(ty::TyVar(_) | ty::FreshTy(_) | ty::FreshIntTy(_) | ty::FreshFloatTy(_))
2190            | ty::Bound(..) => {
2191                ::rustc_middle::util::bug::bug_fmt(format_args!("asked to assemble `Sized` of unexpected type: {0:?}",
        self_ty));bug!("asked to assemble `Sized` of unexpected type: {:?}", self_ty);
2192            }
2193        }
2194    }
2195
2196    fn copy_clone_conditions(&mut self, self_ty: Ty<'tcx>) -> ty::Binder<'tcx, Vec<Ty<'tcx>>> {
2197        match *self_ty.kind() {
2198            ty::FnDef(..) | ty::FnPtr(..) | ty::Error(_) => ty::Binder::dummy(::alloc::vec::Vec::new()vec![]),
2199
2200            ty::Uint(_)
2201            | ty::Int(_)
2202            | ty::Infer(ty::IntVar(_) | ty::FloatVar(_))
2203            | ty::Bool
2204            | ty::Float(_)
2205            | ty::Char
2206            | ty::RawPtr(..)
2207            | ty::Never
2208            | ty::Ref(_, _, hir::Mutability::Not)
2209            | ty::Array(..) => {
2210                {
    ::core::panicking::panic_fmt(format_args!("internal error: entered unreachable code: {0}",
            format_args!("tried to assemble `Sized` for type with libcore-provided impl")));
}unreachable!("tried to assemble `Sized` for type with libcore-provided impl")
2211            }
2212
2213            // FIXME(unsafe_binder): Should we conditionally
2214            // (i.e. universally) implement copy/clone?
2215            ty::UnsafeBinder(_) => {
    ::core::panicking::panic_fmt(format_args!("internal error: entered unreachable code: {0}",
            format_args!("tried to assemble `Sized` for unsafe binder")));
}unreachable!("tried to assemble `Sized` for unsafe binder"),
2216
2217            ty::Tuple(tys) => {
2218                // (*) binder moved here
2219                ty::Binder::dummy(tys.iter().collect())
2220            }
2221
2222            ty::Pat(ty, _) => {
2223                // (*) binder moved here
2224                ty::Binder::dummy(::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
        [ty]))vec![ty])
2225            }
2226
2227            ty::Coroutine(def_id, args) => match self.tcx().coroutine_movability(def_id) {
2228                hir::Movability::Static => {
2229                    {
    ::core::panicking::panic_fmt(format_args!("internal error: entered unreachable code: {0}",
            format_args!("tried to assemble `Clone` for static coroutine")));
}unreachable!("tried to assemble `Clone` for static coroutine")
2230                }
2231                hir::Movability::Movable => {
2232                    if self.tcx().features().coroutine_clone() {
2233                        ty::Binder::dummy(::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
        [args.as_coroutine().tupled_upvars_ty(),
                Ty::new_coroutine_witness_for_coroutine(self.tcx(), def_id,
                    args)]))vec![
2234                            args.as_coroutine().tupled_upvars_ty(),
2235                            Ty::new_coroutine_witness_for_coroutine(self.tcx(), def_id, args),
2236                        ])
2237                    } else {
2238                        {
    ::core::panicking::panic_fmt(format_args!("internal error: entered unreachable code: {0}",
            format_args!("tried to assemble `Clone` for coroutine without enabled feature")));
}unreachable!(
2239                            "tried to assemble `Clone` for coroutine without enabled feature"
2240                        )
2241                    }
2242                }
2243            },
2244
2245            ty::CoroutineWitness(def_id, args) => self
2246                .infcx
2247                .tcx
2248                .coroutine_hidden_types(def_id)
2249                .instantiate(self.infcx.tcx, args)
2250                .map_bound(|witness| witness.types.to_vec()),
2251
2252            ty::Closure(_, args) => ty::Binder::dummy(args.as_closure().upvar_tys().to_vec()),
2253
2254            ty::CoroutineClosure(_, args) => {
2255                ty::Binder::dummy(args.as_coroutine_closure().upvar_tys().to_vec())
2256            }
2257
2258            ty::Foreign(..)
2259            | ty::Str
2260            | ty::Slice(_)
2261            | ty::Dynamic(..)
2262            | ty::Adt(..)
2263            | ty::Alias(..)
2264            | ty::Param(..)
2265            | ty::Placeholder(..)
2266            | ty::Bound(..)
2267            | ty::Ref(_, _, ty::Mutability::Mut)
2268            | ty::Infer(ty::TyVar(_) | ty::FreshTy(_) | ty::FreshIntTy(_) | ty::FreshFloatTy(_)) => {
2269                ::rustc_middle::util::bug::bug_fmt(format_args!("asked to assemble builtin bounds of unexpected type: {0:?}",
        self_ty));bug!("asked to assemble builtin bounds of unexpected type: {:?}", self_ty);
2270            }
2271        }
2272    }
2273
2274    fn coroutine_is_gen(&mut self, self_ty: Ty<'tcx>) -> bool {
2275        #[allow(non_exhaustive_omitted_patterns)] match *self_ty.kind() {
    ty::Coroutine(did, ..) if self.tcx().coroutine_is_gen(did) => true,
    _ => false,
}matches!(*self_ty.kind(), ty::Coroutine(did, ..)
2276            if self.tcx().coroutine_is_gen(did))
2277    }
2278
2279    /// For default impls, we need to break apart a type into its
2280    /// "constituent types" -- meaning, the types that it contains.
2281    ///
2282    /// Here are some (simple) examples:
2283    ///
2284    /// ```ignore (illustrative)
2285    /// (i32, u32) -> [i32, u32]
2286    /// Foo where struct Foo { x: i32, y: u32 } -> [i32, u32]
2287    /// Bar<i32> where struct Bar<T> { x: T, y: u32 } -> [i32, u32]
2288    /// Zed<i32> where enum Zed { A(T), B(u32) } -> [i32, u32]
2289    /// ```
2290    x;#[instrument(level = "debug", skip(self), ret)]
2291    fn constituent_types_for_auto_trait(
2292        &self,
2293        t: Ty<'tcx>,
2294    ) -> Result<ty::Binder<'tcx, AutoImplConstituents<'tcx>>, SelectionError<'tcx>> {
2295        Ok(match *t.kind() {
2296            ty::Uint(_)
2297            | ty::Int(_)
2298            | ty::Bool
2299            | ty::Float(_)
2300            | ty::FnDef(..)
2301            | ty::FnPtr(..)
2302            | ty::Error(_)
2303            | ty::Infer(ty::IntVar(_) | ty::FloatVar(_))
2304            | ty::Never
2305            | ty::Char => {
2306                ty::Binder::dummy(AutoImplConstituents { types: vec![], assumptions: vec![] })
2307            }
2308
2309            // This branch is only for `experimental_default_bounds`.
2310            // Other foreign types were rejected earlier in
2311            // `assemble_candidates_from_auto_impls`.
2312            ty::Foreign(..) => {
2313                ty::Binder::dummy(AutoImplConstituents { types: vec![], assumptions: vec![] })
2314            }
2315
2316            ty::UnsafeBinder(ty) => {
2317                ty.map_bound(|ty| AutoImplConstituents { types: vec![ty], assumptions: vec![] })
2318            }
2319
2320            // Treat this like `struct str([u8]);`
2321            ty::Str => ty::Binder::dummy(AutoImplConstituents {
2322                types: vec![Ty::new_slice(self.tcx(), self.tcx().types.u8)],
2323                assumptions: vec![],
2324            }),
2325
2326            ty::Placeholder(..)
2327            | ty::Dynamic(..)
2328            | ty::Param(..)
2329            | ty::Alias(ty::Projection | ty::Inherent | ty::Free, ..)
2330            | ty::Bound(..)
2331            | ty::Infer(ty::TyVar(_) | ty::FreshTy(_) | ty::FreshIntTy(_) | ty::FreshFloatTy(_)) => {
2332                bug!("asked to assemble constituent types of unexpected type: {:?}", t);
2333            }
2334
2335            ty::RawPtr(element_ty, _) | ty::Ref(_, element_ty, _) => {
2336                ty::Binder::dummy(AutoImplConstituents {
2337                    types: vec![element_ty],
2338                    assumptions: vec![],
2339                })
2340            }
2341
2342            ty::Pat(ty, _) | ty::Array(ty, _) | ty::Slice(ty) => {
2343                ty::Binder::dummy(AutoImplConstituents { types: vec![ty], assumptions: vec![] })
2344            }
2345
2346            ty::Tuple(tys) => {
2347                // (T1, ..., Tn) -- meets any bound that all of T1...Tn meet
2348                ty::Binder::dummy(AutoImplConstituents {
2349                    types: tys.iter().collect(),
2350                    assumptions: vec![],
2351                })
2352            }
2353
2354            ty::Closure(_, args) => {
2355                let ty = self.infcx.shallow_resolve(args.as_closure().tupled_upvars_ty());
2356                ty::Binder::dummy(AutoImplConstituents { types: vec![ty], assumptions: vec![] })
2357            }
2358
2359            ty::CoroutineClosure(_, args) => {
2360                let ty = self.infcx.shallow_resolve(args.as_coroutine_closure().tupled_upvars_ty());
2361                ty::Binder::dummy(AutoImplConstituents { types: vec![ty], assumptions: vec![] })
2362            }
2363
2364            ty::Coroutine(def_id, args) => {
2365                let ty = self.infcx.shallow_resolve(args.as_coroutine().tupled_upvars_ty());
2366                let tcx = self.tcx();
2367                let witness = Ty::new_coroutine_witness_for_coroutine(tcx, def_id, args);
2368                ty::Binder::dummy(AutoImplConstituents {
2369                    types: vec![ty, witness],
2370                    assumptions: vec![],
2371                })
2372            }
2373
2374            ty::CoroutineWitness(def_id, args) => self
2375                .infcx
2376                .tcx
2377                .coroutine_hidden_types(def_id)
2378                .instantiate(self.infcx.tcx, args)
2379                .map_bound(|witness| AutoImplConstituents {
2380                    types: witness.types.to_vec(),
2381                    assumptions: witness.assumptions.to_vec(),
2382                }),
2383
2384            // For `PhantomData<T>`, we pass `T`.
2385            ty::Adt(def, args) if def.is_phantom_data() => {
2386                ty::Binder::dummy(AutoImplConstituents {
2387                    types: args.types().collect(),
2388                    assumptions: vec![],
2389                })
2390            }
2391
2392            ty::Adt(def, args) => ty::Binder::dummy(AutoImplConstituents {
2393                types: def.all_fields().map(|f| f.ty(self.tcx(), args)).collect(),
2394                assumptions: vec![],
2395            }),
2396
2397            ty::Alias(ty::Opaque, ty::AliasTy { def_id, args, .. }) => {
2398                if self.infcx.can_define_opaque_ty(def_id) {
2399                    unreachable!()
2400                } else {
2401                    // We can resolve the opaque type to its hidden type,
2402                    // which enforces a DAG between the functions requiring
2403                    // the auto trait bounds in question.
2404                    match self.tcx().type_of_opaque(def_id) {
2405                        Ok(ty) => ty::Binder::dummy(AutoImplConstituents {
2406                            types: vec![ty.instantiate(self.tcx(), args)],
2407                            assumptions: vec![],
2408                        }),
2409                        Err(_) => {
2410                            return Err(SelectionError::OpaqueTypeAutoTraitLeakageUnknown(def_id));
2411                        }
2412                    }
2413                }
2414            }
2415        })
2416    }
2417
2418    fn collect_predicates_for_types(
2419        &mut self,
2420        param_env: ty::ParamEnv<'tcx>,
2421        cause: ObligationCause<'tcx>,
2422        recursion_depth: usize,
2423        trait_def_id: DefId,
2424        types: Vec<Ty<'tcx>>,
2425    ) -> PredicateObligations<'tcx> {
2426        // Because the types were potentially derived from
2427        // higher-ranked obligations they may reference late-bound
2428        // regions. For example, `for<'a> Foo<&'a i32> : Copy` would
2429        // yield a type like `for<'a> &'a i32`. In general, we
2430        // maintain the invariant that we never manipulate bound
2431        // regions, so we have to process these bound regions somehow.
2432        //
2433        // The strategy is to:
2434        //
2435        // 1. Instantiate those regions to placeholder regions (e.g.,
2436        //    `for<'a> &'a i32` becomes `&0 i32`.
2437        // 2. Produce something like `&'0 i32 : Copy`
2438        // 3. Re-bind the regions back to `for<'a> &'a i32 : Copy`
2439
2440        types
2441            .into_iter()
2442            .flat_map(|placeholder_ty| {
2443                let Normalized { value: normalized_ty, mut obligations } =
2444                    ensure_sufficient_stack(|| {
2445                        normalize_with_depth(
2446                            self,
2447                            param_env,
2448                            cause.clone(),
2449                            recursion_depth,
2450                            placeholder_ty,
2451                        )
2452                    });
2453
2454                let tcx = self.tcx();
2455                let trait_ref = if tcx.generics_of(trait_def_id).own_params.len() == 1 {
2456                    ty::TraitRef::new(tcx, trait_def_id, [normalized_ty])
2457                } else {
2458                    // If this is an ill-formed auto/built-in trait, then synthesize
2459                    // new error args for the missing generics.
2460                    let err_args = ty::GenericArgs::extend_with_error(
2461                        tcx,
2462                        trait_def_id,
2463                        &[normalized_ty.into()],
2464                    );
2465                    ty::TraitRef::new_from_args(tcx, trait_def_id, err_args)
2466                };
2467
2468                let obligation = Obligation::new(self.tcx(), cause.clone(), param_env, trait_ref);
2469                obligations.push(obligation);
2470                obligations
2471            })
2472            .collect()
2473    }
2474
2475    ///////////////////////////////////////////////////////////////////////////
2476    // Matching
2477    //
2478    // Matching is a common path used for both evaluation and
2479    // confirmation. It basically unifies types that appear in impls
2480    // and traits. This does affect the surrounding environment;
2481    // therefore, when used during evaluation, match routines must be
2482    // run inside of a `probe()` so that their side-effects are
2483    // contained.
2484
2485    fn rematch_impl(
2486        &mut self,
2487        impl_def_id: DefId,
2488        obligation: &PolyTraitObligation<'tcx>,
2489    ) -> Normalized<'tcx, GenericArgsRef<'tcx>> {
2490        let impl_trait_header = self.tcx().impl_trait_header(impl_def_id);
2491        match self.match_impl(impl_def_id, impl_trait_header, obligation) {
2492            Ok(args) => args,
2493            Err(()) => {
2494                let predicate = self.infcx.resolve_vars_if_possible(obligation.predicate);
2495                ::rustc_middle::util::bug::bug_fmt(format_args!("impl {0:?} was matchable against {1:?} but now is not",
        impl_def_id, predicate))bug!("impl {impl_def_id:?} was matchable against {predicate:?} but now is not")
2496            }
2497        }
2498    }
2499
2500    x;#[instrument(level = "debug", skip(self), ret)]
2501    fn match_impl(
2502        &mut self,
2503        impl_def_id: DefId,
2504        impl_trait_header: ty::ImplTraitHeader<'tcx>,
2505        obligation: &PolyTraitObligation<'tcx>,
2506    ) -> Result<Normalized<'tcx, GenericArgsRef<'tcx>>, ()> {
2507        let placeholder_obligation =
2508            self.infcx.enter_forall_and_leak_universe(obligation.predicate);
2509        let placeholder_obligation_trait_ref = placeholder_obligation.trait_ref;
2510
2511        let impl_args = self.infcx.fresh_args_for_item(obligation.cause.span, impl_def_id);
2512
2513        let trait_ref = impl_trait_header.trait_ref.instantiate(self.tcx(), impl_args);
2514        debug!(?impl_trait_header);
2515
2516        let Normalized { value: impl_trait_ref, obligations: mut nested_obligations } =
2517            ensure_sufficient_stack(|| {
2518                normalize_with_depth(
2519                    self,
2520                    obligation.param_env,
2521                    obligation.cause.clone(),
2522                    obligation.recursion_depth + 1,
2523                    trait_ref,
2524                )
2525            });
2526
2527        debug!(?impl_trait_ref, ?placeholder_obligation_trait_ref);
2528
2529        let cause = ObligationCause::new(
2530            obligation.cause.span,
2531            obligation.cause.body_id,
2532            ObligationCauseCode::MatchImpl(obligation.cause.clone(), impl_def_id),
2533        );
2534
2535        let InferOk { obligations, .. } = self
2536            .infcx
2537            .at(&cause, obligation.param_env)
2538            .eq(DefineOpaqueTypes::No, placeholder_obligation_trait_ref, impl_trait_ref)
2539            .map_err(|e| {
2540                debug!("match_impl: failed eq_trait_refs due to `{}`", e.to_string(self.tcx()))
2541            })?;
2542        nested_obligations.extend(obligations);
2543
2544        if impl_trait_header.polarity == ty::ImplPolarity::Reservation
2545            && !matches!(self.infcx.typing_mode(), TypingMode::Coherence)
2546        {
2547            debug!("reservation impls only apply in intercrate mode");
2548            return Err(());
2549        }
2550
2551        Ok(Normalized { value: impl_args, obligations: nested_obligations })
2552    }
2553
2554    fn match_upcast_principal(
2555        &mut self,
2556        obligation: &PolyTraitObligation<'tcx>,
2557        unnormalized_upcast_principal: ty::PolyTraitRef<'tcx>,
2558        a_data: &'tcx ty::List<ty::PolyExistentialPredicate<'tcx>>,
2559        b_data: &'tcx ty::List<ty::PolyExistentialPredicate<'tcx>>,
2560        a_region: ty::Region<'tcx>,
2561        b_region: ty::Region<'tcx>,
2562    ) -> SelectionResult<'tcx, PredicateObligations<'tcx>> {
2563        let tcx = self.tcx();
2564        let mut nested = PredicateObligations::new();
2565
2566        // We may upcast to auto traits that are either explicitly listed in
2567        // the object type's bounds, or implied by the principal trait ref's
2568        // supertraits.
2569        let a_auto_traits: FxIndexSet<DefId> = a_data
2570            .auto_traits()
2571            .chain(a_data.principal_def_id().into_iter().flat_map(|principal_def_id| {
2572                elaborate::supertrait_def_ids(tcx, principal_def_id)
2573                    .filter(|def_id| tcx.trait_is_auto(*def_id))
2574            }))
2575            .collect();
2576
2577        let upcast_principal = normalize_with_depth_to(
2578            self,
2579            obligation.param_env,
2580            obligation.cause.clone(),
2581            obligation.recursion_depth + 1,
2582            unnormalized_upcast_principal,
2583            &mut nested,
2584        );
2585
2586        for bound in b_data {
2587            match bound.skip_binder() {
2588                // Check that a_ty's supertrait (upcast_principal) is compatible
2589                // with the target (b_ty).
2590                ty::ExistentialPredicate::Trait(target_principal) => {
2591                    let hr_source_principal = upcast_principal.map_bound(|trait_ref| {
2592                        ty::ExistentialTraitRef::erase_self_ty(tcx, trait_ref)
2593                    });
2594                    let hr_target_principal = bound.rebind(target_principal);
2595
2596                    nested.extend(
2597                        self.infcx
2598                            .enter_forall(hr_target_principal, |target_principal| {
2599                                let source_principal =
2600                                    self.infcx.instantiate_binder_with_fresh_vars(
2601                                        obligation.cause.span,
2602                                        HigherRankedType,
2603                                        hr_source_principal,
2604                                    );
2605                                self.infcx.at(&obligation.cause, obligation.param_env).eq_trace(
2606                                    DefineOpaqueTypes::Yes,
2607                                    ToTrace::to_trace(
2608                                        &obligation.cause,
2609                                        hr_target_principal,
2610                                        hr_source_principal,
2611                                    ),
2612                                    target_principal,
2613                                    source_principal,
2614                                )
2615                            })
2616                            .map_err(|_| SelectionError::Unimplemented)?
2617                            .into_obligations(),
2618                    );
2619                }
2620                // Check that b_ty's projection is satisfied by exactly one of
2621                // a_ty's projections. First, we look through the list to see if
2622                // any match. If not, error. Then, if *more* than one matches, we
2623                // return ambiguity. Otherwise, if exactly one matches, equate
2624                // it with b_ty's projection.
2625                ty::ExistentialPredicate::Projection(target_projection) => {
2626                    let hr_target_projection = bound.rebind(target_projection);
2627
2628                    let mut matching_projections =
2629                        a_data.projection_bounds().filter(|&hr_source_projection| {
2630                            // Eager normalization means that we can just use can_eq
2631                            // here instead of equating and processing obligations.
2632                            hr_source_projection.item_def_id() == hr_target_projection.item_def_id()
2633                                && self.infcx.probe(|_| {
2634                                    self.infcx
2635                                        .enter_forall(hr_target_projection, |target_projection| {
2636                                            let source_projection =
2637                                                self.infcx.instantiate_binder_with_fresh_vars(
2638                                                    obligation.cause.span,
2639                                                    HigherRankedType,
2640                                                    hr_source_projection,
2641                                                );
2642                                            self.infcx
2643                                                .at(&obligation.cause, obligation.param_env)
2644                                                .eq_trace(
2645                                                    DefineOpaqueTypes::Yes,
2646                                                    ToTrace::to_trace(
2647                                                        &obligation.cause,
2648                                                        hr_target_projection,
2649                                                        hr_source_projection,
2650                                                    ),
2651                                                    target_projection,
2652                                                    source_projection,
2653                                                )
2654                                        })
2655                                        .is_ok()
2656                                })
2657                        });
2658
2659                    let Some(hr_source_projection) = matching_projections.next() else {
2660                        return Err(SelectionError::Unimplemented);
2661                    };
2662                    if matching_projections.next().is_some() {
2663                        return Ok(None);
2664                    }
2665                    nested.extend(
2666                        self.infcx
2667                            .enter_forall(hr_target_projection, |target_projection| {
2668                                let source_projection =
2669                                    self.infcx.instantiate_binder_with_fresh_vars(
2670                                        obligation.cause.span,
2671                                        HigherRankedType,
2672                                        hr_source_projection,
2673                                    );
2674                                self.infcx.at(&obligation.cause, obligation.param_env).eq_trace(
2675                                    DefineOpaqueTypes::Yes,
2676                                    ToTrace::to_trace(
2677                                        &obligation.cause,
2678                                        hr_target_projection,
2679                                        hr_source_projection,
2680                                    ),
2681                                    target_projection,
2682                                    source_projection,
2683                                )
2684                            })
2685                            .map_err(|_| SelectionError::Unimplemented)?
2686                            .into_obligations(),
2687                    );
2688                }
2689                // Check that b_ty's auto traits are present in a_ty's bounds.
2690                ty::ExistentialPredicate::AutoTrait(def_id) => {
2691                    if !a_auto_traits.contains(&def_id) {
2692                        return Err(SelectionError::Unimplemented);
2693                    }
2694                }
2695            }
2696        }
2697
2698        nested.push(Obligation::with_depth(
2699            tcx,
2700            obligation.cause.clone(),
2701            obligation.recursion_depth + 1,
2702            obligation.param_env,
2703            ty::Binder::dummy(ty::OutlivesPredicate(a_region, b_region)),
2704        ));
2705
2706        Ok(Some(nested))
2707    }
2708
2709    /// Normalize `where_clause_trait_ref` and try to match it against
2710    /// `obligation`. If successful, return any predicates that
2711    /// result from the normalization.
2712    fn match_where_clause_trait_ref(
2713        &mut self,
2714        obligation: &PolyTraitObligation<'tcx>,
2715        where_clause_trait_ref: ty::PolyTraitRef<'tcx>,
2716    ) -> Result<PredicateObligations<'tcx>, ()> {
2717        self.match_poly_trait_ref(obligation, where_clause_trait_ref)
2718    }
2719
2720    /// Returns `Ok` if `poly_trait_ref` being true implies that the
2721    /// obligation is satisfied.
2722    #[allow(clippy :: suspicious_else_formatting)]
{
    let __tracing_attr_span;
    let __tracing_attr_guard;
    if ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() ||
            { false } {
        __tracing_attr_span =
            {
                use ::tracing::__macro_support::Callsite as _;
                static __CALLSITE: ::tracing::callsite::DefaultCallsite =
                    {
                        static META: ::tracing::Metadata<'static> =
                            {
                                ::tracing_core::metadata::Metadata::new("match_poly_trait_ref",
                                    "rustc_trait_selection::traits::select",
                                    ::tracing::Level::DEBUG,
                                    ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
                                    ::tracing_core::__macro_support::Option::Some(2722u32),
                                    ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
                                    ::tracing_core::field::FieldSet::new(&["obligation",
                                                    "poly_trait_ref"],
                                        ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                    ::tracing::metadata::Kind::SPAN)
                            };
                        ::tracing::callsite::DefaultCallsite::new(&META)
                    };
                let mut interest = ::tracing::subscriber::Interest::never();
                if ::tracing::Level::DEBUG <=
                                    ::tracing::level_filters::STATIC_MAX_LEVEL &&
                                ::tracing::Level::DEBUG <=
                                    ::tracing::level_filters::LevelFilter::current() &&
                            { interest = __CALLSITE.interest(); !interest.is_never() }
                        &&
                        ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                            interest) {
                    let meta = __CALLSITE.metadata();
                    ::tracing::Span::new(meta,
                        &{
                                #[allow(unused_imports)]
                                use ::tracing::field::{debug, display, Value};
                                let mut iter = meta.fields().iter();
                                meta.fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&::tracing::field::debug(&obligation)
                                                            as &dyn Value)),
                                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&::tracing::field::debug(&poly_trait_ref)
                                                            as &dyn Value))])
                            })
                } else {
                    let span =
                        ::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
                    {};
                    span
                }
            };
        __tracing_attr_guard = __tracing_attr_span.enter();
    }

    #[warn(clippy :: suspicious_else_formatting)]
    {

        #[allow(unknown_lints, unreachable_code, clippy ::
        diverging_sub_expression, clippy :: empty_loop, clippy ::
        let_unit_value, clippy :: let_with_type_underscore, clippy ::
        needless_return, clippy :: unreachable)]
        if false {
            let __tracing_attr_fake_return:
                    Result<PredicateObligations<'tcx>, ()> = loop {};
            return __tracing_attr_fake_return;
        }
        {
            let predicate =
                self.infcx.enter_forall_and_leak_universe(obligation.predicate);
            let trait_ref =
                self.infcx.instantiate_binder_with_fresh_vars(obligation.cause.span,
                    HigherRankedType, poly_trait_ref);
            self.infcx.at(&obligation.cause,
                            obligation.param_env).eq(DefineOpaqueTypes::No,
                        predicate.trait_ref,
                        trait_ref).map(|InferOk { obligations, .. }|
                        obligations).map_err(|_| ())
        }
    }
}#[instrument(skip(self), level = "debug")]
2723    fn match_poly_trait_ref(
2724        &mut self,
2725        obligation: &PolyTraitObligation<'tcx>,
2726        poly_trait_ref: ty::PolyTraitRef<'tcx>,
2727    ) -> Result<PredicateObligations<'tcx>, ()> {
2728        let predicate = self.infcx.enter_forall_and_leak_universe(obligation.predicate);
2729        let trait_ref = self.infcx.instantiate_binder_with_fresh_vars(
2730            obligation.cause.span,
2731            HigherRankedType,
2732            poly_trait_ref,
2733        );
2734        self.infcx
2735            .at(&obligation.cause, obligation.param_env)
2736            .eq(DefineOpaqueTypes::No, predicate.trait_ref, trait_ref)
2737            .map(|InferOk { obligations, .. }| obligations)
2738            .map_err(|_| ())
2739    }
2740
2741    ///////////////////////////////////////////////////////////////////////////
2742    // Miscellany
2743
2744    fn match_fresh_trait_preds(
2745        &self,
2746        previous: ty::PolyTraitPredicate<'tcx>,
2747        current: ty::PolyTraitPredicate<'tcx>,
2748    ) -> bool {
2749        let mut matcher = _match::MatchAgainstFreshVars::new(self.tcx());
2750        matcher.relate(previous, current).is_ok()
2751    }
2752
2753    fn push_stack<'o>(
2754        &mut self,
2755        previous_stack: TraitObligationStackList<'o, 'tcx>,
2756        obligation: &'o PolyTraitObligation<'tcx>,
2757    ) -> TraitObligationStack<'o, 'tcx> {
2758        let fresh_trait_pred = obligation.predicate.fold_with(&mut self.freshener);
2759
2760        let dfn = previous_stack.cache.next_dfn();
2761        let depth = previous_stack.depth() + 1;
2762        TraitObligationStack {
2763            obligation,
2764            fresh_trait_pred,
2765            reached_depth: Cell::new(depth),
2766            previous: previous_stack,
2767            dfn,
2768            depth,
2769        }
2770    }
2771
2772    #[allow(clippy :: suspicious_else_formatting)]
{
    let __tracing_attr_span;
    let __tracing_attr_guard;
    if ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() ||
            { false } {
        __tracing_attr_span =
            {
                use ::tracing::__macro_support::Callsite as _;
                static __CALLSITE: ::tracing::callsite::DefaultCallsite =
                    {
                        static META: ::tracing::Metadata<'static> =
                            {
                                ::tracing_core::metadata::Metadata::new("closure_trait_ref_unnormalized",
                                    "rustc_trait_selection::traits::select",
                                    ::tracing::Level::DEBUG,
                                    ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
                                    ::tracing_core::__macro_support::Option::Some(2772u32),
                                    ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
                                    ::tracing_core::field::FieldSet::new(&["self_ty",
                                                    "fn_trait_def_id"],
                                        ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                    ::tracing::metadata::Kind::SPAN)
                            };
                        ::tracing::callsite::DefaultCallsite::new(&META)
                    };
                let mut interest = ::tracing::subscriber::Interest::never();
                if ::tracing::Level::DEBUG <=
                                    ::tracing::level_filters::STATIC_MAX_LEVEL &&
                                ::tracing::Level::DEBUG <=
                                    ::tracing::level_filters::LevelFilter::current() &&
                            { interest = __CALLSITE.interest(); !interest.is_never() }
                        &&
                        ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                            interest) {
                    let meta = __CALLSITE.metadata();
                    ::tracing::Span::new(meta,
                        &{
                                #[allow(unused_imports)]
                                use ::tracing::field::{debug, display, Value};
                                let mut iter = meta.fields().iter();
                                meta.fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&::tracing::field::debug(&self_ty)
                                                            as &dyn Value)),
                                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&::tracing::field::debug(&fn_trait_def_id)
                                                            as &dyn Value))])
                            })
                } else {
                    let span =
                        ::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
                    {};
                    span
                }
            };
        __tracing_attr_guard = __tracing_attr_span.enter();
    }

    #[warn(clippy :: suspicious_else_formatting)]
    {

        #[allow(unknown_lints, unreachable_code, clippy ::
        diverging_sub_expression, clippy :: empty_loop, clippy ::
        let_unit_value, clippy :: let_with_type_underscore, clippy ::
        needless_return, clippy :: unreachable)]
        if false {
            let __tracing_attr_fake_return: ty::PolyTraitRef<'tcx> = loop {};
            return __tracing_attr_fake_return;
        }
        {
            let ty::Closure(_, args) =
                *self_ty.kind() else {
                    ::rustc_middle::util::bug::bug_fmt(format_args!("expected closure, found {0}",
                            self_ty));
                };
            let closure_sig = args.as_closure().sig();
            closure_trait_ref_and_return_type(self.tcx(), fn_trait_def_id,
                    self_ty, closure_sig,
                    util::TupleArgumentsFlag::No).map_bound(|(trait_ref, _)|
                    trait_ref)
        }
    }
}#[instrument(skip(self), level = "debug")]
2773    fn closure_trait_ref_unnormalized(
2774        &mut self,
2775        self_ty: Ty<'tcx>,
2776        fn_trait_def_id: DefId,
2777    ) -> ty::PolyTraitRef<'tcx> {
2778        let ty::Closure(_, args) = *self_ty.kind() else {
2779            bug!("expected closure, found {self_ty}");
2780        };
2781        let closure_sig = args.as_closure().sig();
2782
2783        closure_trait_ref_and_return_type(
2784            self.tcx(),
2785            fn_trait_def_id,
2786            self_ty,
2787            closure_sig,
2788            util::TupleArgumentsFlag::No,
2789        )
2790        .map_bound(|(trait_ref, _)| trait_ref)
2791    }
2792
2793    /// Returns the obligations that are implied by instantiating an
2794    /// impl or trait. The obligations are instantiated and fully
2795    /// normalized. This is used when confirming an impl or default
2796    /// impl.
2797    #[allow(clippy :: suspicious_else_formatting)]
{
    let __tracing_attr_span;
    let __tracing_attr_guard;
    if ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() ||
            { false } {
        __tracing_attr_span =
            {
                use ::tracing::__macro_support::Callsite as _;
                static __CALLSITE: ::tracing::callsite::DefaultCallsite =
                    {
                        static META: ::tracing::Metadata<'static> =
                            {
                                ::tracing_core::metadata::Metadata::new("impl_or_trait_obligations",
                                    "rustc_trait_selection::traits::select",
                                    ::tracing::Level::DEBUG,
                                    ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
                                    ::tracing_core::__macro_support::Option::Some(2797u32),
                                    ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
                                    ::tracing_core::field::FieldSet::new(&["recursion_depth",
                                                    "def_id", "args", "parent_trait_pred"],
                                        ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                    ::tracing::metadata::Kind::SPAN)
                            };
                        ::tracing::callsite::DefaultCallsite::new(&META)
                    };
                let mut interest = ::tracing::subscriber::Interest::never();
                if ::tracing::Level::DEBUG <=
                                    ::tracing::level_filters::STATIC_MAX_LEVEL &&
                                ::tracing::Level::DEBUG <=
                                    ::tracing::level_filters::LevelFilter::current() &&
                            { interest = __CALLSITE.interest(); !interest.is_never() }
                        &&
                        ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                            interest) {
                    let meta = __CALLSITE.metadata();
                    ::tracing::Span::new(meta,
                        &{
                                #[allow(unused_imports)]
                                use ::tracing::field::{debug, display, Value};
                                let mut iter = meta.fields().iter();
                                meta.fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&recursion_depth as
                                                            &dyn Value)),
                                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&::tracing::field::debug(&def_id)
                                                            as &dyn Value)),
                                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&::tracing::field::debug(&args)
                                                            as &dyn Value)),
                                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&::tracing::field::debug(&parent_trait_pred)
                                                            as &dyn Value))])
                            })
                } else {
                    let span =
                        ::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
                    {};
                    span
                }
            };
        __tracing_attr_guard = __tracing_attr_span.enter();
    }

    #[warn(clippy :: suspicious_else_formatting)]
    {

        #[allow(unknown_lints, unreachable_code, clippy ::
        diverging_sub_expression, clippy :: empty_loop, clippy ::
        let_unit_value, clippy :: let_with_type_underscore, clippy ::
        needless_return, clippy :: unreachable)]
        if false {
            let __tracing_attr_fake_return: PredicateObligations<'tcx> =
                loop {};
            return __tracing_attr_fake_return;
        }
        {
            let tcx = self.tcx();
            let predicates = tcx.predicates_of(def_id);
            match (&predicates.parent, &None) {
                (left_val, right_val) => {
                    if !(*left_val == *right_val) {
                        let kind = ::core::panicking::AssertKind::Eq;
                        ::core::panicking::assert_failed(kind, &*left_val,
                            &*right_val, ::core::option::Option::None);
                    }
                }
            };
            let predicates = predicates.instantiate_own(tcx, args);
            let mut obligations =
                PredicateObligations::with_capacity(predicates.len());
            for (index, (predicate, span)) in
                predicates.into_iter().enumerate() {
                let cause =
                    if tcx.is_lang_item(parent_trait_pred.def_id(),
                            LangItem::CoerceUnsized) {
                        cause.clone()
                    } else {
                        cause.clone().derived_cause(parent_trait_pred,
                            |derived|
                                {
                                    ObligationCauseCode::ImplDerived(Box::new(ImplDerivedCause {
                                                derived,
                                                impl_or_alias_def_id: def_id,
                                                impl_def_predicate_index: Some(index),
                                                span,
                                            }))
                                })
                    };
                let clause =
                    normalize_with_depth_to(self, param_env, cause.clone(),
                        recursion_depth, predicate, &mut obligations);
                obligations.push(Obligation {
                        cause,
                        recursion_depth,
                        param_env,
                        predicate: clause.as_predicate(),
                    });
            }
            if tcx.def_kind(def_id) == (DefKind::Impl { of_trait: true }) {
                for clause in
                    tcx.impl_super_outlives(def_id).iter_instantiated(tcx, args)
                    {
                    let clause =
                        normalize_with_depth_to(self, param_env, cause.clone(),
                            recursion_depth, clause, &mut obligations);
                    obligations.push(Obligation {
                            cause: cause.clone(),
                            recursion_depth,
                            param_env,
                            predicate: clause.as_predicate(),
                        });
                }
            }
            obligations
        }
    }
}#[instrument(level = "debug", skip(self, cause, param_env))]
2798    fn impl_or_trait_obligations(
2799        &mut self,
2800        cause: &ObligationCause<'tcx>,
2801        recursion_depth: usize,
2802        param_env: ty::ParamEnv<'tcx>,
2803        def_id: DefId,              // of impl or trait
2804        args: GenericArgsRef<'tcx>, // for impl or trait
2805        parent_trait_pred: ty::Binder<'tcx, ty::TraitPredicate<'tcx>>,
2806    ) -> PredicateObligations<'tcx> {
2807        let tcx = self.tcx();
2808
2809        // To allow for one-pass evaluation of the nested obligation,
2810        // each predicate must be preceded by the obligations required
2811        // to normalize it.
2812        // for example, if we have:
2813        //    impl<U: Iterator<Item: Copy>, V: Iterator<Item = U>> Foo for V
2814        // the impl will have the following predicates:
2815        //    <V as Iterator>::Item = U,
2816        //    U: Iterator, U: Sized,
2817        //    V: Iterator, V: Sized,
2818        //    <U as Iterator>::Item: Copy
2819        // When we instantiate, say, `V => IntoIter<u32>, U => $0`, the last
2820        // obligation will normalize to `<$0 as Iterator>::Item = $1` and
2821        // `$1: Copy`, so we must ensure the obligations are emitted in
2822        // that order.
2823        let predicates = tcx.predicates_of(def_id);
2824        assert_eq!(predicates.parent, None);
2825        let predicates = predicates.instantiate_own(tcx, args);
2826        let mut obligations = PredicateObligations::with_capacity(predicates.len());
2827        for (index, (predicate, span)) in predicates.into_iter().enumerate() {
2828            let cause = if tcx.is_lang_item(parent_trait_pred.def_id(), LangItem::CoerceUnsized) {
2829                cause.clone()
2830            } else {
2831                cause.clone().derived_cause(parent_trait_pred, |derived| {
2832                    ObligationCauseCode::ImplDerived(Box::new(ImplDerivedCause {
2833                        derived,
2834                        impl_or_alias_def_id: def_id,
2835                        impl_def_predicate_index: Some(index),
2836                        span,
2837                    }))
2838                })
2839            };
2840            let clause = normalize_with_depth_to(
2841                self,
2842                param_env,
2843                cause.clone(),
2844                recursion_depth,
2845                predicate,
2846                &mut obligations,
2847            );
2848            obligations.push(Obligation {
2849                cause,
2850                recursion_depth,
2851                param_env,
2852                predicate: clause.as_predicate(),
2853            });
2854        }
2855
2856        // Register any outlives obligations from the trait here, cc #124336.
2857        if tcx.def_kind(def_id) == (DefKind::Impl { of_trait: true }) {
2858            for clause in tcx.impl_super_outlives(def_id).iter_instantiated(tcx, args) {
2859                let clause = normalize_with_depth_to(
2860                    self,
2861                    param_env,
2862                    cause.clone(),
2863                    recursion_depth,
2864                    clause,
2865                    &mut obligations,
2866                );
2867                obligations.push(Obligation {
2868                    cause: cause.clone(),
2869                    recursion_depth,
2870                    param_env,
2871                    predicate: clause.as_predicate(),
2872                });
2873            }
2874        }
2875
2876        obligations
2877    }
2878
2879    pub(super) fn should_stall_coroutine(&self, def_id: DefId) -> bool {
2880        match self.infcx.typing_mode() {
2881            TypingMode::Analysis { defining_opaque_types_and_generators: stalled_generators } => {
2882                def_id.as_local().is_some_and(|def_id| stalled_generators.contains(&def_id))
2883            }
2884            TypingMode::Coherence
2885            | TypingMode::PostAnalysis
2886            | TypingMode::Borrowck { defining_opaque_types: _ }
2887            | TypingMode::PostBorrowckAnalysis { defined_opaque_types: _ } => false,
2888        }
2889    }
2890}
2891
2892impl<'o, 'tcx> TraitObligationStack<'o, 'tcx> {
2893    fn list(&'o self) -> TraitObligationStackList<'o, 'tcx> {
2894        TraitObligationStackList::with(self)
2895    }
2896
2897    fn cache(&self) -> &'o ProvisionalEvaluationCache<'tcx> {
2898        self.previous.cache
2899    }
2900
2901    fn iter(&'o self) -> TraitObligationStackList<'o, 'tcx> {
2902        self.list()
2903    }
2904
2905    /// Indicates that attempting to evaluate this stack entry
2906    /// required accessing something from the stack at depth `reached_depth`.
2907    fn update_reached_depth(&self, reached_depth: usize) {
2908        if !(self.depth >= reached_depth) {
    {
        ::core::panicking::panic_fmt(format_args!("invoked `update_reached_depth` with something under this stack: self.depth={0} reached_depth={1}",
                self.depth, reached_depth));
    }
};assert!(
2909            self.depth >= reached_depth,
2910            "invoked `update_reached_depth` with something under this stack: \
2911             self.depth={} reached_depth={}",
2912            self.depth,
2913            reached_depth,
2914        );
2915        {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/select/mod.rs:2915",
                        "rustc_trait_selection::traits::select",
                        ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
                        ::tracing_core::__macro_support::Option::Some(2915u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
                        ::tracing_core::field::FieldSet::new(&["message",
                                        "reached_depth"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                let mut iter = __CALLSITE.metadata().fields().iter();
                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&format_args!("update_reached_depth")
                                            as &dyn Value)),
                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&reached_depth as
                                            &dyn Value))])
            });
    } else { ; }
};debug!(reached_depth, "update_reached_depth");
2916        let mut p = self;
2917        while reached_depth < p.depth {
2918            {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/select/mod.rs:2918",
                        "rustc_trait_selection::traits::select",
                        ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
                        ::tracing_core::__macro_support::Option::Some(2918u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
                        ::tracing_core::field::FieldSet::new(&["message",
                                        "p.fresh_trait_pred"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                let mut iter = __CALLSITE.metadata().fields().iter();
                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&format_args!("update_reached_depth: marking as cycle participant")
                                            as &dyn Value)),
                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&debug(&p.fresh_trait_pred)
                                            as &dyn Value))])
            });
    } else { ; }
};debug!(?p.fresh_trait_pred, "update_reached_depth: marking as cycle participant");
2919            p.reached_depth.set(p.reached_depth.get().min(reached_depth));
2920            p = p.previous.head.unwrap();
2921        }
2922    }
2923}
2924
2925/// The "provisional evaluation cache" is used to store intermediate cache results
2926/// when solving auto traits. Auto traits are unusual in that they can support
2927/// cycles. So, for example, a "proof tree" like this would be ok:
2928///
2929/// - `Foo<T>: Send` :-
2930///   - `Bar<T>: Send` :-
2931///     - `Foo<T>: Send` -- cycle, but ok
2932///   - `Baz<T>: Send`
2933///
2934/// Here, to prove `Foo<T>: Send`, we have to prove `Bar<T>: Send` and
2935/// `Baz<T>: Send`. Proving `Bar<T>: Send` in turn required `Foo<T>: Send`.
2936/// For non-auto traits, this cycle would be an error, but for auto traits (because
2937/// they are coinductive) it is considered ok.
2938///
2939/// However, there is a complication: at the point where we have
2940/// "proven" `Bar<T>: Send`, we have in fact only proven it
2941/// *provisionally*. In particular, we proved that `Bar<T>: Send`
2942/// *under the assumption* that `Foo<T>: Send`. But what if we later
2943/// find out this assumption is wrong?  Specifically, we could
2944/// encounter some kind of error proving `Baz<T>: Send`. In that case,
2945/// `Bar<T>: Send` didn't turn out to be true.
2946///
2947/// In Issue #60010, we found a bug in rustc where it would cache
2948/// these intermediate results. This was fixed in #60444 by disabling
2949/// *all* caching for things involved in a cycle -- in our example,
2950/// that would mean we don't cache that `Bar<T>: Send`. But this led
2951/// to large slowdowns.
2952///
2953/// Specifically, imagine this scenario, where proving `Baz<T>: Send`
2954/// first requires proving `Bar<T>: Send` (which is true:
2955///
2956/// - `Foo<T>: Send` :-
2957///   - `Bar<T>: Send` :-
2958///     - `Foo<T>: Send` -- cycle, but ok
2959///   - `Baz<T>: Send`
2960///     - `Bar<T>: Send` -- would be nice for this to be a cache hit!
2961///     - `*const T: Send` -- but what if we later encounter an error?
2962///
2963/// The *provisional evaluation cache* resolves this issue. It stores
2964/// cache results that we've proven but which were involved in a cycle
2965/// in some way. We track the minimal stack depth (i.e., the
2966/// farthest from the top of the stack) that we are dependent on.
2967/// The idea is that the cache results within are all valid -- so long as
2968/// none of the nodes in between the current node and the node at that minimum
2969/// depth result in an error (in which case the cached results are just thrown away).
2970///
2971/// During evaluation, we consult this provisional cache and rely on
2972/// it. Accessing a cached value is considered equivalent to accessing
2973/// a result at `reached_depth`, so it marks the *current* solution as
2974/// provisional as well. If an error is encountered, we toss out any
2975/// provisional results added from the subtree that encountered the
2976/// error. When we pop the node at `reached_depth` from the stack, we
2977/// can commit all the things that remain in the provisional cache.
2978struct ProvisionalEvaluationCache<'tcx> {
2979    /// next "depth first number" to issue -- just a counter
2980    dfn: Cell<usize>,
2981
2982    /// Map from cache key to the provisionally evaluated thing.
2983    /// The cache entries contain the result but also the DFN in which they
2984    /// were added. The DFN is used to clear out values on failure.
2985    ///
2986    /// Imagine we have a stack like:
2987    ///
2988    /// - `A B C` and we add a cache for the result of C (DFN 2)
2989    /// - Then we have a stack `A B D` where `D` has DFN 3
2990    /// - We try to solve D by evaluating E: `A B D E` (DFN 4)
2991    /// - `E` generates various cache entries which have cyclic dependencies on `B`
2992    ///   - `A B D E F` and so forth
2993    ///   - the DFN of `F` for example would be 5
2994    /// - then we determine that `E` is in error -- we will then clear
2995    ///   all cache values whose DFN is >= 4 -- in this case, that
2996    ///   means the cached value for `F`.
2997    map: RefCell<FxIndexMap<ty::PolyTraitPredicate<'tcx>, ProvisionalEvaluation>>,
2998
2999    /// The stack of terms that we assume to be well-formed because a `WF(term)` predicate
3000    /// is on the stack above (and because of wellformedness is coinductive).
3001    /// In an "ideal" world, this would share a stack with trait predicates in
3002    /// `TraitObligationStack`. However, trait predicates are *much* hotter than
3003    /// `WellFormed` predicates, and it's very likely that the additional matches
3004    /// will have a perf effect. The value here is the well-formed `GenericArg`
3005    /// and the depth of the trait predicate *above* that well-formed predicate.
3006    wf_args: RefCell<Vec<(ty::Term<'tcx>, usize)>>,
3007}
3008
3009/// A cache value for the provisional cache: contains the depth-first
3010/// number (DFN) and result.
3011#[derive(#[automatically_derived]
impl ::core::marker::Copy for ProvisionalEvaluation { }Copy, #[automatically_derived]
impl ::core::clone::Clone for ProvisionalEvaluation {
    #[inline]
    fn clone(&self) -> ProvisionalEvaluation {
        let _: ::core::clone::AssertParamIsClone<usize>;
        let _: ::core::clone::AssertParamIsClone<EvaluationResult>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for ProvisionalEvaluation {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field3_finish(f,
            "ProvisionalEvaluation", "from_dfn", &self.from_dfn,
            "reached_depth", &self.reached_depth, "result", &&self.result)
    }
}Debug)]
3012struct ProvisionalEvaluation {
3013    from_dfn: usize,
3014    reached_depth: usize,
3015    result: EvaluationResult,
3016}
3017
3018impl<'tcx> Default for ProvisionalEvaluationCache<'tcx> {
3019    fn default() -> Self {
3020        Self { dfn: Cell::new(0), map: Default::default(), wf_args: Default::default() }
3021    }
3022}
3023
3024impl<'tcx> ProvisionalEvaluationCache<'tcx> {
3025    /// Get the next DFN in sequence (basically a counter).
3026    fn next_dfn(&self) -> usize {
3027        let result = self.dfn.get();
3028        self.dfn.set(result + 1);
3029        result
3030    }
3031
3032    /// Check the provisional cache for any result for
3033    /// `fresh_trait_pred`. If there is a hit, then you must consider
3034    /// it an access to the stack slots at depth
3035    /// `reached_depth` (from the returned value).
3036    fn get_provisional(
3037        &self,
3038        fresh_trait_pred: ty::PolyTraitPredicate<'tcx>,
3039    ) -> Option<ProvisionalEvaluation> {
3040        {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/select/mod.rs:3040",
                        "rustc_trait_selection::traits::select",
                        ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
                        ::tracing_core::__macro_support::Option::Some(3040u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
                        ::tracing_core::field::FieldSet::new(&["message",
                                        "fresh_trait_pred"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                let mut iter = __CALLSITE.metadata().fields().iter();
                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&format_args!("get_provisional = {0:#?}",
                                                    self.map.borrow().get(&fresh_trait_pred)) as &dyn Value)),
                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&debug(&fresh_trait_pred)
                                            as &dyn Value))])
            });
    } else { ; }
};debug!(
3041            ?fresh_trait_pred,
3042            "get_provisional = {:#?}",
3043            self.map.borrow().get(&fresh_trait_pred),
3044        );
3045        Some(*self.map.borrow().get(&fresh_trait_pred)?)
3046    }
3047
3048    /// Insert a provisional result into the cache. The result came
3049    /// from the node with the given DFN. It accessed a minimum depth
3050    /// of `reached_depth` to compute. It evaluated `fresh_trait_pred`
3051    /// and resulted in `result`.
3052    fn insert_provisional(
3053        &self,
3054        from_dfn: usize,
3055        reached_depth: usize,
3056        fresh_trait_pred: ty::PolyTraitPredicate<'tcx>,
3057        result: EvaluationResult,
3058    ) {
3059        {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/select/mod.rs:3059",
                        "rustc_trait_selection::traits::select",
                        ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
                        ::tracing_core::__macro_support::Option::Some(3059u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
                        ::tracing_core::field::FieldSet::new(&["message",
                                        "from_dfn", "fresh_trait_pred", "result"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                let mut iter = __CALLSITE.metadata().fields().iter();
                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&format_args!("insert_provisional")
                                            as &dyn Value)),
                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&debug(&from_dfn)
                                            as &dyn Value)),
                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&debug(&fresh_trait_pred)
                                            as &dyn Value)),
                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&debug(&result) as
                                            &dyn Value))])
            });
    } else { ; }
};debug!(?from_dfn, ?fresh_trait_pred, ?result, "insert_provisional");
3060
3061        let mut map = self.map.borrow_mut();
3062
3063        // Subtle: when we complete working on the DFN `from_dfn`, anything
3064        // that remains in the provisional cache must be dependent on some older
3065        // stack entry than `from_dfn`. We have to update their depth with our transitive
3066        // depth in that case or else it would be referring to some popped note.
3067        //
3068        // Example:
3069        // A (reached depth 0)
3070        //   ...
3071        //      B // depth 1 -- reached depth = 0
3072        //          C // depth 2 -- reached depth = 1 (should be 0)
3073        //              B
3074        //          A // depth 0
3075        //   D (reached depth 1)
3076        //      C (cache -- reached depth = 2)
3077        for (_k, v) in &mut *map {
3078            if v.from_dfn >= from_dfn {
3079                v.reached_depth = reached_depth.min(v.reached_depth);
3080            }
3081        }
3082
3083        map.insert(fresh_trait_pred, ProvisionalEvaluation { from_dfn, reached_depth, result });
3084    }
3085
3086    /// Invoked when the node with dfn `dfn` does not get a successful
3087    /// result. This will clear out any provisional cache entries
3088    /// that were added since `dfn` was created. This is because the
3089    /// provisional entries are things which must assume that the
3090    /// things on the stack at the time of their creation succeeded --
3091    /// since the failing node is presently at the top of the stack,
3092    /// these provisional entries must either depend on it or some
3093    /// ancestor of it.
3094    fn on_failure(&self, dfn: usize) {
3095        {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/select/mod.rs:3095",
                        "rustc_trait_selection::traits::select",
                        ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
                        ::tracing_core::__macro_support::Option::Some(3095u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
                        ::tracing_core::field::FieldSet::new(&["message", "dfn"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                let mut iter = __CALLSITE.metadata().fields().iter();
                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&format_args!("on_failure")
                                            as &dyn Value)),
                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&debug(&dfn) as
                                            &dyn Value))])
            });
    } else { ; }
};debug!(?dfn, "on_failure");
3096        self.map.borrow_mut().retain(|key, eval| {
3097            if !eval.from_dfn >= dfn {
3098                {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/select/mod.rs:3098",
                        "rustc_trait_selection::traits::select",
                        ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
                        ::tracing_core::__macro_support::Option::Some(3098u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                let mut iter = __CALLSITE.metadata().fields().iter();
                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&format_args!("on_failure: removing {0:?}",
                                                    key) as &dyn Value))])
            });
    } else { ; }
};debug!("on_failure: removing {:?}", key);
3099                false
3100            } else {
3101                true
3102            }
3103        });
3104    }
3105
3106    /// Invoked when the node at depth `depth` completed without
3107    /// depending on anything higher in the stack (if that completion
3108    /// was a failure, then `on_failure` should have been invoked
3109    /// already).
3110    ///
3111    /// Note that we may still have provisional cache items remaining
3112    /// in the cache when this is done. For example, if there is a
3113    /// cycle:
3114    ///
3115    /// * A depends on...
3116    ///     * B depends on A
3117    ///     * C depends on...
3118    ///         * D depends on C
3119    ///     * ...
3120    ///
3121    /// Then as we complete the C node we will have a provisional cache
3122    /// with results for A, B, C, and D. This method would clear out
3123    /// the C and D results, but leave A and B provisional.
3124    ///
3125    /// This is determined based on the DFN: we remove any provisional
3126    /// results created since `dfn` started (e.g., in our example, dfn
3127    /// would be 2, representing the C node, and hence we would
3128    /// remove the result for D, which has DFN 3, but not the results for
3129    /// A and B, which have DFNs 0 and 1 respectively).
3130    ///
3131    /// Note that we *do not* attempt to cache these cycle participants
3132    /// in the evaluation cache. Doing so would require carefully computing
3133    /// the correct `DepNode` to store in the cache entry:
3134    /// cycle participants may implicitly depend on query results
3135    /// related to other participants in the cycle, due to our logic
3136    /// which examines the evaluation stack.
3137    ///
3138    /// We used to try to perform this caching,
3139    /// but it lead to multiple incremental compilation ICEs
3140    /// (see #92987 and #96319), and was very hard to understand.
3141    /// Fortunately, removing the caching didn't seem to
3142    /// have a performance impact in practice.
3143    fn on_completion(&self, dfn: usize) {
3144        {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/select/mod.rs:3144",
                        "rustc_trait_selection::traits::select",
                        ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
                        ::tracing_core::__macro_support::Option::Some(3144u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
                        ::tracing_core::field::FieldSet::new(&["message", "dfn"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                let mut iter = __CALLSITE.metadata().fields().iter();
                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&format_args!("on_completion")
                                            as &dyn Value)),
                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&debug(&dfn) as
                                            &dyn Value))])
            });
    } else { ; }
};debug!(?dfn, "on_completion");
3145        self.map.borrow_mut().retain(|fresh_trait_pred, eval| {
3146            if eval.from_dfn >= dfn {
3147                {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/select/mod.rs:3147",
                        "rustc_trait_selection::traits::select",
                        ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
                        ::tracing_core::__macro_support::Option::Some(3147u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
                        ::tracing_core::field::FieldSet::new(&["message",
                                        "fresh_trait_pred", "eval"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                let mut iter = __CALLSITE.metadata().fields().iter();
                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&format_args!("on_completion")
                                            as &dyn Value)),
                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&debug(&fresh_trait_pred)
                                            as &dyn Value)),
                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&debug(&eval) as
                                            &dyn Value))])
            });
    } else { ; }
};debug!(?fresh_trait_pred, ?eval, "on_completion");
3148                return false;
3149            }
3150            true
3151        });
3152    }
3153}
3154
3155#[derive(#[automatically_derived]
impl<'o, 'tcx> ::core::marker::Copy for TraitObligationStackList<'o, 'tcx> { }Copy, #[automatically_derived]
impl<'o, 'tcx> ::core::clone::Clone for TraitObligationStackList<'o, 'tcx> {
    #[inline]
    fn clone(&self) -> TraitObligationStackList<'o, 'tcx> {
        let _:
                ::core::clone::AssertParamIsClone<&'o ProvisionalEvaluationCache<'tcx>>;
        let _:
                ::core::clone::AssertParamIsClone<Option<&'o TraitObligationStack<'o,
                'tcx>>>;
        *self
    }
}Clone)]
3156struct TraitObligationStackList<'o, 'tcx> {
3157    cache: &'o ProvisionalEvaluationCache<'tcx>,
3158    head: Option<&'o TraitObligationStack<'o, 'tcx>>,
3159}
3160
3161impl<'o, 'tcx> TraitObligationStackList<'o, 'tcx> {
3162    fn empty(cache: &'o ProvisionalEvaluationCache<'tcx>) -> TraitObligationStackList<'o, 'tcx> {
3163        TraitObligationStackList { cache, head: None }
3164    }
3165
3166    fn with(r: &'o TraitObligationStack<'o, 'tcx>) -> TraitObligationStackList<'o, 'tcx> {
3167        TraitObligationStackList { cache: r.cache(), head: Some(r) }
3168    }
3169
3170    fn head(&self) -> Option<&'o TraitObligationStack<'o, 'tcx>> {
3171        self.head
3172    }
3173
3174    fn depth(&self) -> usize {
3175        if let Some(head) = self.head { head.depth } else { 0 }
3176    }
3177}
3178
3179impl<'o, 'tcx> Iterator for TraitObligationStackList<'o, 'tcx> {
3180    type Item = &'o TraitObligationStack<'o, 'tcx>;
3181
3182    fn next(&mut self) -> Option<&'o TraitObligationStack<'o, 'tcx>> {
3183        let o = self.head?;
3184        *self = o.previous;
3185        Some(o)
3186    }
3187}
3188
3189impl<'o, 'tcx> fmt::Debug for TraitObligationStack<'o, 'tcx> {
3190    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
3191        f.write_fmt(format_args!("TraitObligationStack({0:?})", self.obligation))write!(f, "TraitObligationStack({:?})", self.obligation)
3192    }
3193}
3194
3195pub(crate) enum ProjectionMatchesProjection {
3196    Yes,
3197    Ambiguous,
3198    No,
3199}
3200
3201#[derive(#[automatically_derived]
impl<'tcx> ::core::clone::Clone for AutoImplConstituents<'tcx> {
    #[inline]
    fn clone(&self) -> AutoImplConstituents<'tcx> {
        AutoImplConstituents {
            types: ::core::clone::Clone::clone(&self.types),
            assumptions: ::core::clone::Clone::clone(&self.assumptions),
        }
    }
}Clone, #[automatically_derived]
impl<'tcx> ::core::fmt::Debug for AutoImplConstituents<'tcx> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field2_finish(f,
            "AutoImplConstituents", "types", &self.types, "assumptions",
            &&self.assumptions)
    }
}Debug, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeFoldable<::rustc_middle::ty::TyCtxt<'tcx>>
            for AutoImplConstituents<'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 {
                        AutoImplConstituents {
                            types: __binding_0, assumptions: __binding_1 } => {
                            AutoImplConstituents {
                                types: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                assumptions: ::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 {
                    AutoImplConstituents {
                        types: __binding_0, assumptions: __binding_1 } => {
                        AutoImplConstituents {
                            types: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            assumptions: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
                                __folder),
                        }
                    }
                }
            }
        }
    };TypeFoldable, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeVisitable<::rustc_middle::ty::TyCtxt<'tcx>>
            for AutoImplConstituents<'tcx> {
            fn visit_with<__V: ::rustc_middle::ty::TypeVisitor<::rustc_middle::ty::TyCtxt<'tcx>>>(&self,
                __visitor: &mut __V) -> __V::Result {
                match *self {
                    AutoImplConstituents {
                        types: ref __binding_0, assumptions: 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)]
3202pub(crate) struct AutoImplConstituents<'tcx> {
3203    pub types: Vec<Ty<'tcx>>,
3204    pub assumptions: Vec<ty::ArgOutlivesPredicate<'tcx>>,
3205}