Skip to main content

rustc_trait_selection/traits/
fulfill.rs

1use std::marker::PhantomData;
2use std::ops::ControlFlow;
3
4use rustc_data_structures::obligation_forest::{
5    Error, ForestObligation, ObligationForest, ObligationProcessor, Outcome, ProcessResult,
6};
7use rustc_hir::def_id::LocalDefId;
8use rustc_infer::infer::DefineOpaqueTypes;
9use rustc_infer::traits::{
10    FromSolverError, PolyTraitObligation, PredicateObligations, ProjectionCacheKey, SelectionError,
11    TraitEngine,
12};
13use rustc_middle::bug;
14use rustc_middle::ty::abstract_const::NotConstEvaluatable;
15use rustc_middle::ty::error::{ExpectedFound, TypeError};
16use rustc_middle::ty::{
17    self, Binder, Const, DelayedSet, GenericArgsRef, Ty, TyCtxt, TypeSuperVisitable, TypeVisitable,
18    TypeVisitableExt, TypeVisitor, TypingMode, may_use_unstable_feature,
19};
20use thin_vec::{ThinVec, thin_vec};
21use tracing::{debug, debug_span, instrument};
22
23use super::effects::{self, HostEffectObligation};
24use super::project::{self, ProjectAndUnifyResult};
25use super::select::SelectionContext;
26use super::{
27    EvaluationResult, FulfillmentError, FulfillmentErrorCode, PredicateObligation,
28    ScrubbedTraitError, const_evaluatable, wf,
29};
30use crate::error_reporting::InferCtxtErrorExt;
31use crate::infer::{InferCtxt, TyOrConstInferVar};
32use crate::traits::normalize::normalize_with_depth_to;
33use crate::traits::project::{PolyProjectionObligation, ProjectionCacheKeyExt as _};
34use crate::traits::query::evaluate_obligation::InferCtxtExt;
35use crate::traits::{EvaluateConstErr, sizedness_fast_path};
36
37pub(crate) type PendingPredicateObligations<'tcx> = ThinVec<PendingPredicateObligation<'tcx>>;
38
39impl<'tcx> ForestObligation for PendingPredicateObligation<'tcx> {
40    /// Note that we include both the `ParamEnv` and the `Predicate`,
41    /// as the `ParamEnv` can influence whether fulfillment succeeds
42    /// or fails.
43    type CacheKey = ty::ParamEnvAnd<'tcx, ty::Predicate<'tcx>>;
44
45    fn as_cache_key(&self) -> Self::CacheKey {
46        self.obligation.param_env.and(self.obligation.predicate)
47    }
48}
49
50/// The fulfillment context is used to drive trait resolution. It
51/// consists of a list of obligations that must be (eventually)
52/// satisfied. The job is to track which are satisfied, which yielded
53/// errors, and which are still pending. At any point, users can call
54/// `try_evaluate_obligations`, and the fulfillment context will try to do
55/// selection, retaining only those obligations that remain
56/// ambiguous. This may be helpful in pushing type inference
57/// along. Once all type inference constraints have been generated, the
58/// method `evaluate_obligations_error_on_ambiguity` can be used to report any remaining
59/// ambiguous cases as errors.
60pub struct FulfillmentContext<'tcx, E: 'tcx> {
61    /// A list of all obligations that have been registered with this
62    /// fulfillment context.
63    predicates: ObligationForest<PendingPredicateObligation<'tcx>>,
64
65    /// The snapshot in which this context was created. Using the context
66    /// outside of this snapshot leads to subtle bugs if the snapshot
67    /// gets rolled back. Because of this we explicitly check that we only
68    /// use the context in exactly this snapshot.
69    usable_in_snapshot: usize,
70
71    _errors: PhantomData<E>,
72}
73
74#[derive(#[automatically_derived]
impl<'tcx> ::core::clone::Clone for PendingPredicateObligation<'tcx> {
    #[inline]
    fn clone(&self) -> PendingPredicateObligation<'tcx> {
        PendingPredicateObligation {
            obligation: ::core::clone::Clone::clone(&self.obligation),
            stalled_on: ::core::clone::Clone::clone(&self.stalled_on),
        }
    }
}Clone, #[automatically_derived]
impl<'tcx> ::core::fmt::Debug for PendingPredicateObligation<'tcx> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field2_finish(f,
            "PendingPredicateObligation", "obligation", &self.obligation,
            "stalled_on", &&self.stalled_on)
    }
}Debug)]
75pub struct PendingPredicateObligation<'tcx> {
76    pub obligation: PredicateObligation<'tcx>,
77    // This is far more often read than modified, meaning that we
78    // should mostly optimize for reading speed, while modifying is not as relevant.
79    //
80    // For whatever reason using a boxed slice is slower than using a `Vec` here.
81    pub stalled_on: Vec<TyOrConstInferVar>,
82}
83
84// `PendingPredicateObligation` is used a lot. Make sure it doesn't unintentionally get bigger.
85#[cfg(target_pointer_width = "64")]
86const _: [(); 72] =
    [(); ::std::mem::size_of::<PendingPredicateObligation<'_>>()];rustc_data_structures::static_assert_size!(PendingPredicateObligation<'_>, 72);
87
88impl<'tcx, E> FulfillmentContext<'tcx, E>
89where
90    E: FromSolverError<'tcx, OldSolverError<'tcx>>,
91{
92    /// Creates a new fulfillment context.
93    pub(super) fn new(infcx: &InferCtxt<'tcx>) -> FulfillmentContext<'tcx, E> {
94        if !!infcx.next_trait_solver() {
    {
        ::core::panicking::panic_fmt(format_args!("old trait solver fulfillment context created when infcx is set up for new trait solver"));
    }
};assert!(
95            !infcx.next_trait_solver(),
96            "old trait solver fulfillment context created when \
97            infcx is set up for new trait solver"
98        );
99        FulfillmentContext {
100            predicates: ObligationForest::new(),
101            usable_in_snapshot: infcx.num_open_snapshots(),
102            _errors: PhantomData,
103        }
104    }
105
106    /// Attempts to select obligations using `selcx`.
107    fn select(&mut self, selcx: SelectionContext<'_, 'tcx>) -> Vec<E> {
108        let span = {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("select",
                        "rustc_trait_selection::traits::fulfill",
                        ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/fulfill.rs"),
                        ::tracing_core::__macro_support::Option::Some(108u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::fulfill"),
                        ::tracing_core::field::FieldSet::new(&[{
                                            const NAME:
                                                ::tracing::__macro_support::FieldName<{
                                                    ::tracing::__macro_support::FieldName::len("obligation_forest_size")
                                                }> =
                                                ::tracing::__macro_support::FieldName::new("obligation_forest_size");
                                            NAME.as_str()
                                        }], ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::SPAN)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let mut interest = ::tracing::subscriber::Interest::never();
    if ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                    &&
                    ::tracing::Level::DEBUG <=
                        ::tracing::level_filters::LevelFilter::current() &&
                { interest = __CALLSITE.interest(); !interest.is_never() } &&
            ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                interest) {
        let meta = __CALLSITE.metadata();
        ::tracing::Span::new(meta,
            &{
                    #[allow(unused_imports)]
                    use ::tracing::field::{debug, display, Value};
                    meta.fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&self.predicates.len())
                                                as &dyn ::tracing::field::Value))])
                })
    } else {
        let span =
            ::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
        {};
        span
    }
}debug_span!("select", obligation_forest_size = ?self.predicates.len());
109        let _enter = span.enter();
110        let infcx = selcx.infcx;
111
112        // Process pending obligations.
113        let outcome: Outcome<_, _> =
114            self.predicates.process_obligations(&mut FulfillProcessor { selcx });
115
116        // FIXME: if we kept the original cache key, we could mark projection
117        // obligations as complete for the projection cache here.
118
119        let errors: Vec<E> = outcome
120            .errors
121            .into_iter()
122            .map(|err| E::from_solver_error(infcx, OldSolverError(err)))
123            .collect();
124
125        {
    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/fulfill.rs:125",
                        "rustc_trait_selection::traits::fulfill",
                        ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/fulfill.rs"),
                        ::tracing_core::__macro_support::Option::Some(125u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::fulfill"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("select({0} predicates remaining, {1} errors) done",
                                                    self.predicates.len(), errors.len()) as
                                            &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!(
126            "select({} predicates remaining, {} errors) done",
127            self.predicates.len(),
128            errors.len()
129        );
130
131        errors
132    }
133}
134
135impl<'tcx, E> TraitEngine<'tcx, E> for FulfillmentContext<'tcx, E>
136where
137    E: FromSolverError<'tcx, OldSolverError<'tcx>>,
138{
139    #[inline]
140    fn register_predicate_obligation(
141        &mut self,
142        infcx: &InferCtxt<'tcx>,
143        mut obligation: PredicateObligation<'tcx>,
144    ) {
145        {
    match (&self.usable_in_snapshot, &infcx.num_open_snapshots()) {
        (left_val, right_val) => {
            if !(*left_val == *right_val) {
                let kind = ::core::panicking::AssertKind::Eq;
                ::core::panicking::assert_failed(kind, &*left_val,
                    &*right_val, ::core::option::Option::None);
            }
        }
    }
};assert_eq!(self.usable_in_snapshot, infcx.num_open_snapshots());
146        // this helps to reduce duplicate errors, as well as making
147        // debug output much nicer to read and so on.
148        if true {
    if !!obligation.param_env.has_non_region_infer() {
        ::core::panicking::panic("assertion failed: !obligation.param_env.has_non_region_infer()")
    };
};debug_assert!(!obligation.param_env.has_non_region_infer());
149        obligation.predicate = infcx.resolve_vars_if_possible(obligation.predicate);
150
151        {
    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/fulfill.rs:151",
                        "rustc_trait_selection::traits::fulfill",
                        ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/fulfill.rs"),
                        ::tracing_core::__macro_support::Option::Some(151u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::fulfill"),
                        ::tracing_core::field::FieldSet::new(&["message",
                                        {
                                            const NAME:
                                                ::tracing::__macro_support::FieldName<{
                                                    ::tracing::__macro_support::FieldName::len("obligation")
                                                }> =
                                                ::tracing::__macro_support::FieldName::new("obligation");
                                            NAME.as_str()
                                        }], ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("register_predicate_obligation")
                                            as &dyn ::tracing::field::Value)),
                                (::tracing::__macro_support::Option::Some(&::tracing::field::debug(&obligation)
                                            as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!(?obligation, "register_predicate_obligation");
152
153        self.predicates
154            .register_obligation(PendingPredicateObligation { obligation, stalled_on: ::alloc::vec::Vec::new()vec![] });
155    }
156
157    fn collect_remaining_errors(&mut self, infcx: &InferCtxt<'tcx>) -> Vec<E> {
158        self.predicates
159            .to_errors(FulfillmentErrorCode::Ambiguity { overflow: None })
160            .into_iter()
161            .map(|err| E::from_solver_error(infcx, OldSolverError(err)))
162            .collect()
163    }
164
165    fn try_evaluate_obligations(&mut self, infcx: &InferCtxt<'tcx>) -> Vec<E> {
166        let selcx = SelectionContext::new(infcx);
167        self.select(selcx)
168    }
169
170    fn drain_stalled_obligations_for_coroutines(
171        &mut self,
172        infcx: &InferCtxt<'tcx>,
173    ) -> PredicateObligations<'tcx> {
174        let stalled_coroutines = match infcx.typing_mode_raw().assert_not_erased() {
175            TypingMode::Typeck { defining_opaque_types_and_generators } => {
176                defining_opaque_types_and_generators
177            }
178            TypingMode::Coherence
179            | TypingMode::PostTypeckUntilBorrowck { defining_opaque_types: _ }
180            | TypingMode::PostBorrowck { defined_opaque_types: _ }
181            | TypingMode::Reflection
182            | TypingMode::PostAnalysis
183            | TypingMode::Codegen => return Default::default(),
184        };
185
186        if stalled_coroutines.is_empty() {
187            return Default::default();
188        }
189
190        let mut processor = DrainProcessor {
191            infcx,
192            removed_predicates: PredicateObligations::new(),
193            stalled_coroutines,
194        };
195        let outcome: Outcome<_, _> = self.predicates.process_obligations(&mut processor);
196        if !outcome.errors.is_empty() {
    ::core::panicking::panic("assertion failed: outcome.errors.is_empty()")
};assert!(outcome.errors.is_empty());
197        return processor.removed_predicates;
198
199        struct DrainProcessor<'a, 'tcx> {
200            infcx: &'a InferCtxt<'tcx>,
201            removed_predicates: PredicateObligations<'tcx>,
202            stalled_coroutines: &'tcx ty::List<LocalDefId>,
203        }
204
205        impl<'tcx> ObligationProcessor for DrainProcessor<'_, 'tcx> {
206            type Obligation = PendingPredicateObligation<'tcx>;
207            type Error = !;
208            type OUT = Outcome<Self::Obligation, Self::Error>;
209
210            fn needs_process_obligation(&self, pending_obligation: &Self::Obligation) -> bool {
211                struct StalledOnCoroutines<'tcx> {
212                    pub stalled_coroutines: &'tcx ty::List<LocalDefId>,
213                    pub cache: DelayedSet<Ty<'tcx>>,
214                }
215
216                impl<'tcx> TypeVisitor<TyCtxt<'tcx>> for StalledOnCoroutines<'tcx> {
217                    type Result = ControlFlow<()>;
218
219                    fn visit_ty(&mut self, ty: Ty<'tcx>) -> Self::Result {
220                        if !self.cache.insert(ty) {
221                            return ControlFlow::Continue(());
222                        }
223
224                        if let ty::Coroutine(def_id, _) = ty.kind()
225                            && def_id
226                                .as_local()
227                                .is_some_and(|def_id| self.stalled_coroutines.contains(&def_id))
228                        {
229                            ControlFlow::Break(())
230                        } else if ty.has_coroutines() {
231                            ty.super_visit_with(self)
232                        } else {
233                            ControlFlow::Continue(())
234                        }
235                    }
236                }
237
238                self.infcx
239                    .resolve_vars_if_possible(pending_obligation.obligation.predicate)
240                    .visit_with(&mut StalledOnCoroutines {
241                        stalled_coroutines: self.stalled_coroutines,
242                        cache: Default::default(),
243                    })
244                    .is_break()
245            }
246
247            fn process_obligation(
248                &mut self,
249                pending_obligation: &mut PendingPredicateObligation<'tcx>,
250            ) -> ProcessResult<PendingPredicateObligation<'tcx>, !> {
251                if !self.needs_process_obligation(pending_obligation) {
    ::core::panicking::panic("assertion failed: self.needs_process_obligation(pending_obligation)")
};assert!(self.needs_process_obligation(pending_obligation));
252                self.removed_predicates.push(pending_obligation.obligation.clone());
253                ProcessResult::Changed(Default::default())
254            }
255
256            fn process_backedge<'c, I>(
257                &mut self,
258                cycle: I,
259                _marker: PhantomData<&'c PendingPredicateObligation<'tcx>>,
260            ) -> Result<(), !>
261            where
262                I: Clone + Iterator<Item = &'c PendingPredicateObligation<'tcx>>,
263            {
264                self.removed_predicates.extend(cycle.map(|c| c.obligation.clone()));
265                Ok(())
266            }
267        }
268    }
269
270    fn has_pending_obligations(&self) -> bool {
271        self.predicates.has_pending_obligations()
272    }
273
274    fn pending_obligations(&self) -> PredicateObligations<'tcx> {
275        self.predicates.map_pending_obligations(|o| o.obligation.clone())
276    }
277}
278
279struct FulfillProcessor<'a, 'tcx> {
280    selcx: SelectionContext<'a, 'tcx>,
281}
282
283fn mk_pending<'tcx>(
284    parent: &PredicateObligation<'tcx>,
285    os: PredicateObligations<'tcx>,
286) -> PendingPredicateObligations<'tcx> {
287    os.into_iter()
288        .map(|mut o| {
289            o.set_depth_from_parent(parent.recursion_depth);
290            PendingPredicateObligation { obligation: o, stalled_on: ::alloc::vec::Vec::new()vec![] }
291        })
292        .collect()
293}
294
295impl<'a, 'tcx> ObligationProcessor for FulfillProcessor<'a, 'tcx> {
296    type Obligation = PendingPredicateObligation<'tcx>;
297    type Error = FulfillmentErrorCode<'tcx>;
298    type OUT = Outcome<Self::Obligation, Self::Error>;
299
300    /// Compared to `needs_process_obligation` this and its callees
301    /// contain some optimizations that come at the price of false negatives.
302    ///
303    /// They
304    /// - reduce branching by covering only the most common case
305    /// - take a read-only view of the unification tables which allows skipping undo_log
306    ///   construction.
307    /// - bail out on value-cache misses in ena to avoid pointer chasing
308    /// - hoist RefCell locking out of the loop
309    #[inline]
310    fn skippable_obligations<'b>(
311        &'b self,
312        it: impl Iterator<Item = &'b Self::Obligation>,
313    ) -> usize {
314        let is_unchanged = self.selcx.infcx.is_ty_infer_var_definitely_unchanged();
315
316        it.take_while(|o| match o.stalled_on.as_slice() {
317            [o] => is_unchanged(*o),
318            _ => false,
319        })
320        .count()
321    }
322
323    /// Identifies whether a predicate obligation needs processing.
324    ///
325    /// This is always inlined because it has a single callsite and it is
326    /// called *very* frequently. Be careful modifying this code! Several
327    /// compile-time benchmarks are very sensitive to even small changes.
328    #[inline(always)]
329    fn needs_process_obligation(&self, pending_obligation: &Self::Obligation) -> bool {
330        if self.selcx.infcx.disable_trait_solver_fast_paths() {
331            return true;
332        }
333
334        // If we were stalled on some unresolved variables, first check whether
335        // any of them have been resolved; if not, don't bother doing more work
336        // yet.
337        let stalled_on = &pending_obligation.stalled_on;
338        match stalled_on.len() {
339            // This case is the hottest most of the time, being hit up to 99%
340            // of the time. `keccak` and `cranelift-codegen-0.82.1` are
341            // benchmarks that particularly stress this path.
342            1 => self.selcx.infcx.ty_or_const_infer_var_changed(stalled_on[0]),
343
344            // In this case we haven't changed, but wish to make a change. Note
345            // that this is a special case, and is not equivalent to the `_`
346            // case below, which would return `false` for an empty `stalled_on`
347            // vector.
348            //
349            // This case is usually hit only 1% of the time or less, though it
350            // reaches 20% in `wasmparser-0.101.0`.
351            0 => true,
352
353            // This case is usually hit only 1% of the time or less, though it
354            // reaches 95% in `mime-0.3.16`, 64% in `wast-54.0.0`, and 12% in
355            // `inflate-0.4.5`.
356            //
357            // The obvious way of writing this, with a call to `any()` and no
358            // closure, is currently slower than this version.
359            _ => (|| {
360                for &infer_var in stalled_on {
361                    if self.selcx.infcx.ty_or_const_infer_var_changed(infer_var) {
362                        return true;
363                    }
364                }
365                false
366            })(),
367        }
368    }
369
370    /// Processes a predicate obligation and returns either:
371    /// - `Changed(v)` if the predicate is true, presuming that `v` are also true
372    /// - `Unchanged` if we don't have enough info to be sure
373    /// - `Error(e)` if the predicate does not hold
374    ///
375    /// This is called much less often than `needs_process_obligation`, so we
376    /// never inline it.
377    #[inline(never)]
378    #[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("process_obligation",
                                    "rustc_trait_selection::traits::fulfill",
                                    ::tracing::Level::DEBUG,
                                    ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/fulfill.rs"),
                                    ::tracing_core::__macro_support::Option::Some(378u32),
                                    ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::fulfill"),
                                    ::tracing_core::field::FieldSet::new(&[],
                                        ::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,
                        &{ meta.fields().value_set_all(&[]) })
                } 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:
                    ProcessResult<PendingPredicateObligation<'tcx>,
                    FulfillmentErrorCode<'tcx>> = loop {};
            return __tracing_attr_fake_return;
        }
        {
            pending_obligation.stalled_on.clear();
            let obligation = &mut pending_obligation.obligation;
            {
                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/fulfill.rs:387",
                                    "rustc_trait_selection::traits::fulfill",
                                    ::tracing::Level::DEBUG,
                                    ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/fulfill.rs"),
                                    ::tracing_core::__macro_support::Option::Some(387u32),
                                    ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::fulfill"),
                                    ::tracing_core::field::FieldSet::new(&["message",
                                                    {
                                                        const NAME:
                                                            ::tracing::__macro_support::FieldName<{
                                                                ::tracing::__macro_support::FieldName::len("obligation")
                                                            }> =
                                                            ::tracing::__macro_support::FieldName::new("obligation");
                                                        NAME.as_str()
                                                    }], ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                    ::tracing::metadata::Kind::EVENT)
                            };
                        ::tracing::callsite::DefaultCallsite::new(&META)
                    };
                let enabled =
                    ::tracing::Level::DEBUG <=
                                ::tracing::level_filters::STATIC_MAX_LEVEL &&
                            ::tracing::Level::DEBUG <=
                                ::tracing::level_filters::LevelFilter::current() &&
                        {
                            let interest = __CALLSITE.interest();
                            !interest.is_never() &&
                                ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                                    interest)
                        };
                if enabled {
                    (|value_set: ::tracing::field::ValueSet|
                                {
                                    let meta = __CALLSITE.metadata();
                                    ::tracing::Event::dispatch(meta, &value_set);
                                    ;
                                })({
                            #[allow(unused_imports)]
                            use ::tracing::field::{debug, display, Value};
                            __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("pre-resolve")
                                                        as &dyn ::tracing::field::Value)),
                                            (::tracing::__macro_support::Option::Some(&::tracing::field::debug(&obligation)
                                                        as &dyn ::tracing::field::Value))])
                        });
                } else { ; }
            };
            if obligation.predicate.has_non_region_infer() {
                obligation.predicate =
                    self.selcx.infcx.resolve_vars_if_possible(obligation.predicate);
            }
            let obligation = &pending_obligation.obligation;
            let infcx = self.selcx.infcx;
            if !infcx.disable_trait_solver_fast_paths() &&
                    sizedness_fast_path(infcx.tcx, obligation.predicate,
                        obligation.param_env) {
                return ProcessResult::Changed(::thin_vec::ThinVec::new());
            }
            if obligation.predicate.has_aliases() {
                let mut obligations = PredicateObligations::new();
                let predicate =
                    normalize_with_depth_to(&mut self.selcx,
                        obligation.param_env, obligation.cause.clone(),
                        obligation.recursion_depth + 1,
                        ty::Unnormalized::new_wip(obligation.predicate),
                        &mut obligations);
                if predicate != obligation.predicate {
                    obligations.push(obligation.with(infcx.tcx, predicate));
                    return ProcessResult::Changed(mk_pending(obligation,
                                obligations));
                }
            }
            let binder = obligation.predicate.kind();
            match binder.no_bound_vars() {
                None =>
                    match binder.skip_binder() {
                        ty::PredicateKind::Clause(ty::ClauseKind::Trait(trait_ref))
                            => {
                            let trait_obligation =
                                obligation.with(infcx.tcx, binder.rebind(trait_ref));
                            self.process_trait_obligation(obligation, trait_obligation,
                                &mut pending_obligation.stalled_on)
                        }
                        ty::PredicateKind::Clause(ty::ClauseKind::Projection(data))
                            => {
                            let project_obligation =
                                obligation.with(infcx.tcx, binder.rebind(data));
                            self.process_projection_obligation(obligation,
                                project_obligation, &mut pending_obligation.stalled_on)
                        }
                        ty::PredicateKind::Clause(ty::ClauseKind::RegionOutlives(_))
                            | ty::PredicateKind::Clause(ty::ClauseKind::TypeOutlives(_))
                            |
                            ty::PredicateKind::Clause(ty::ClauseKind::ConstArgHasType(..))
                            | ty::PredicateKind::Clause(ty::ClauseKind::WellFormed(_)) |
                            ty::PredicateKind::DynCompatible(_) |
                            ty::PredicateKind::Subtype(_) | ty::PredicateKind::Coerce(_)
                            |
                            ty::PredicateKind::Clause(ty::ClauseKind::ConstEvaluatable(..))
                            | ty::PredicateKind::ConstEquate(..) |
                            ty::PredicateKind::Clause(ty::ClauseKind::HostEffect(..)) =>
                            {
                            let pred =
                                ty::Binder::dummy(infcx.enter_forall_and_leak_universe(binder));
                            let mut obligations =
                                PredicateObligations::with_capacity(1);
                            obligations.push(obligation.with(infcx.tcx, pred));
                            ProcessResult::Changed(mk_pending(obligation, obligations))
                        }
                        ty::PredicateKind::Ambiguous => ProcessResult::Unchanged,
                        ty::PredicateKind::NormalizesTo(..) => {
                            ::rustc_middle::util::bug::bug_fmt(format_args!("NormalizesTo is only used by the new solver"))
                        }
                        ty::PredicateKind::Clause(ty::ClauseKind::UnstableFeature(_))
                            => {
                            {
                                ::core::panicking::panic_fmt(format_args!("internal error: entered unreachable code: {0}",
                                        format_args!("unexpected higher ranked `UnstableFeature` goal")));
                            }
                        }
                    },
                Some(pred) =>
                    match pred {
                        ty::PredicateKind::Clause(ty::ClauseKind::Trait(data)) => {
                            let trait_obligation =
                                obligation.with(infcx.tcx, Binder::dummy(data));
                            self.process_trait_obligation(obligation, trait_obligation,
                                &mut pending_obligation.stalled_on)
                        }
                        ty::PredicateKind::Clause(ty::ClauseKind::HostEffect(data))
                            => {
                            let host_obligation = obligation.with(infcx.tcx, data);
                            self.process_host_obligation(obligation, host_obligation,
                                &mut pending_obligation.stalled_on)
                        }
                        ty::PredicateKind::Clause(ty::ClauseKind::RegionOutlives(data))
                            => {
                            if infcx.considering_regions {
                                infcx.register_region_outlives_constraint(data,
                                    ty::VisibleForLeakCheck::Yes, &obligation.cause);
                            }
                            ProcessResult::Changed(Default::default())
                        }
                        ty::PredicateKind::Clause(ty::ClauseKind::TypeOutlives(ty::OutlivesPredicate(t_a,
                            r_b))) => {
                            if infcx.considering_regions {
                                infcx.register_type_outlives_constraint(t_a, r_b,
                                    &obligation.cause);
                            }
                            ProcessResult::Changed(Default::default())
                        }
                        ty::PredicateKind::Clause(ty::ClauseKind::Projection(ref data))
                            => {
                            let project_obligation =
                                obligation.with(infcx.tcx, Binder::dummy(*data));
                            self.process_projection_obligation(obligation,
                                project_obligation, &mut pending_obligation.stalled_on)
                        }
                        ty::PredicateKind::DynCompatible(trait_def_id) => {
                            if !self.selcx.tcx().is_dyn_compatible(trait_def_id) {
                                ProcessResult::Error(FulfillmentErrorCode::Select(SelectionError::Unimplemented))
                            } else { ProcessResult::Changed(Default::default()) }
                        }
                        ty::PredicateKind::Ambiguous => ProcessResult::Unchanged,
                        ty::PredicateKind::NormalizesTo(..) => {
                            ::rustc_middle::util::bug::bug_fmt(format_args!("NormalizesTo is only used by the new solver"))
                        }
                        ty::PredicateKind::Clause(ty::ClauseKind::ConstArgHasType(ct,
                            ty)) => {
                            let ct = infcx.shallow_resolve_const(ct);
                            let ct_ty =
                                match ct.kind() {
                                    ty::ConstKind::Infer(var) => {
                                        let var =
                                            match var {
                                                ty::InferConst::Var(vid) => TyOrConstInferVar::Const(vid),
                                                ty::InferConst::Fresh(_) => {
                                                    ::rustc_middle::util::bug::bug_fmt(format_args!("encountered fresh const in fulfill"))
                                                }
                                            };
                                        pending_obligation.stalled_on.clear();
                                        pending_obligation.stalled_on.extend([var]);
                                        return ProcessResult::Unchanged;
                                    }
                                    ty::ConstKind::Error(_) => {
                                        return ProcessResult::Changed(PendingPredicateObligations::new());
                                    }
                                    ty::ConstKind::Value(cv) => cv.ty,
                                    ty::ConstKind::Alias(_, alias_const) => {
                                        alias_const.type_of(infcx.tcx).skip_norm_wip()
                                    }
                                    ty::ConstKind::Expr(_) => {
                                        return ProcessResult::Changed(mk_pending(obligation,
                                                    PredicateObligations::new()));
                                    }
                                    ty::ConstKind::Placeholder(_) => {
                                        ::rustc_middle::util::bug::bug_fmt(format_args!("placeholder const {0:?} in old solver",
                                                ct))
                                    }
                                    ty::ConstKind::Bound(_, _) =>
                                        ::rustc_middle::util::bug::bug_fmt(format_args!("escaping bound vars in {0:?}",
                                                ct)),
                                    ty::ConstKind::Param(param_ct) => {
                                        param_ct.find_const_ty_from_env(obligation.param_env)
                                    }
                                };
                            match infcx.at(&obligation.cause,
                                        obligation.param_env).eq(DefineOpaqueTypes::Yes, ct_ty, ty)
                                {
                                Ok(inf_ok) =>
                                    ProcessResult::Changed(mk_pending(obligation,
                                            inf_ok.into_obligations())),
                                Err(_) =>
                                    ProcessResult::Error(FulfillmentErrorCode::Select(SelectionError::ConstArgHasWrongType {
                                                ct,
                                                ct_ty,
                                                expected_ty: ty,
                                            })),
                            }
                        }
                        _ if
                            !self.selcx.tcx().recursion_limit().value_within_limit(obligation.recursion_depth)
                            => {
                            self.selcx.infcx.err_ctxt().report_overflow_obligation(&obligation,
                                false);
                        }
                        ty::PredicateKind::Clause(ty::ClauseKind::WellFormed(term))
                            => {
                            if term.is_trivially_wf(self.selcx.tcx()) {
                                return ProcessResult::Changed(::thin_vec::ThinVec::new());
                            }
                            match wf::obligations(self.selcx.infcx,
                                    obligation.param_env, obligation.cause.body_def_id,
                                    obligation.recursion_depth + 1, term, obligation.cause.span)
                                {
                                None => {
                                    pending_obligation.stalled_on =
                                        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                                                [TyOrConstInferVar::maybe_from_term(term).unwrap()]));
                                    ProcessResult::Unchanged
                                }
                                Some(os) =>
                                    ProcessResult::Changed(mk_pending(obligation, os)),
                            }
                        }
                        ty::PredicateKind::Subtype(subtype) => {
                            match self.selcx.infcx.subtype_predicate(&obligation.cause,
                                    obligation.param_env, Binder::dummy(subtype)) {
                                Err((a, b)) => {
                                    pending_obligation.stalled_on =
                                        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                                                [TyOrConstInferVar::Ty(a), TyOrConstInferVar::Ty(b)]));
                                    ProcessResult::Unchanged
                                }
                                Ok(Ok(ok)) => {
                                    ProcessResult::Changed(mk_pending(obligation,
                                            ok.obligations))
                                }
                                Ok(Err(err)) => {
                                    let expected_found =
                                        if subtype.a_is_expected {
                                            ExpectedFound::new(subtype.a, subtype.b)
                                        } else { ExpectedFound::new(subtype.b, subtype.a) };
                                    ProcessResult::Error(FulfillmentErrorCode::Subtype(expected_found,
                                            err))
                                }
                            }
                        }
                        ty::PredicateKind::Coerce(coerce) => {
                            match self.selcx.infcx.coerce_predicate(&obligation.cause,
                                    obligation.param_env, Binder::dummy(coerce)) {
                                Err((a, b)) => {
                                    pending_obligation.stalled_on =
                                        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
                                                [TyOrConstInferVar::Ty(a), TyOrConstInferVar::Ty(b)]));
                                    ProcessResult::Unchanged
                                }
                                Ok(Ok(ok)) => {
                                    ProcessResult::Changed(mk_pending(obligation,
                                            ok.obligations))
                                }
                                Ok(Err(err)) => {
                                    let expected_found = ExpectedFound::new(coerce.b, coerce.a);
                                    ProcessResult::Error(FulfillmentErrorCode::Subtype(expected_found,
                                            err))
                                }
                            }
                        }
                        ty::PredicateKind::Clause(ty::ClauseKind::ConstEvaluatable(alias_const))
                            => {
                            match const_evaluatable::is_const_evaluatable(self.selcx.infcx,
                                    alias_const, obligation.param_env, obligation.cause.span) {
                                Ok(()) => ProcessResult::Changed(Default::default()),
                                Err(NotConstEvaluatable::MentionsInfer) => {
                                    pending_obligation.stalled_on.clear();
                                    pending_obligation.stalled_on.extend(alias_const.walk().filter_map(TyOrConstInferVar::maybe_from_generic_arg));
                                    ProcessResult::Unchanged
                                }
                                Err(e @ NotConstEvaluatable::MentionsParam | e @
                                    NotConstEvaluatable::Error(_)) =>
                                    ProcessResult::Error(FulfillmentErrorCode::Select(SelectionError::NotConstEvaluatable(e))),
                            }
                        }
                        ty::PredicateKind::ConstEquate(c1, c2) => {
                            let tcx = self.selcx.tcx();
                            if !tcx.features().generic_const_exprs() {
                                {
                                    ::core::panicking::panic_fmt(format_args!("`ConstEquate` without a feature gate: {0:?} {1:?}",
                                            c1, c2));
                                }
                            };
                            {
                                let c1 = tcx.expand_abstract_consts(c1);
                                let c2 = tcx.expand_abstract_consts(c2);
                                {
                                    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/fulfill.rs:716",
                                                        "rustc_trait_selection::traits::fulfill",
                                                        ::tracing::Level::DEBUG,
                                                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/fulfill.rs"),
                                                        ::tracing_core::__macro_support::Option::Some(716u32),
                                                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::fulfill"),
                                                        ::tracing_core::field::FieldSet::new(&["message"],
                                                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                                        ::tracing::metadata::Kind::EVENT)
                                                };
                                            ::tracing::callsite::DefaultCallsite::new(&META)
                                        };
                                    let enabled =
                                        ::tracing::Level::DEBUG <=
                                                    ::tracing::level_filters::STATIC_MAX_LEVEL &&
                                                ::tracing::Level::DEBUG <=
                                                    ::tracing::level_filters::LevelFilter::current() &&
                                            {
                                                let interest = __CALLSITE.interest();
                                                !interest.is_never() &&
                                                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                                                        interest)
                                            };
                                    if enabled {
                                        (|value_set: ::tracing::field::ValueSet|
                                                    {
                                                        let meta = __CALLSITE.metadata();
                                                        ::tracing::Event::dispatch(meta, &value_set);
                                                        ;
                                                    })({
                                                #[allow(unused_imports)]
                                                use ::tracing::field::{debug, display, Value};
                                                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("equating consts:\nc1= {0:?}\nc2= {1:?}",
                                                                                    c1, c2) as &dyn ::tracing::field::Value))])
                                            });
                                    } else { ; }
                                };
                                match (c1.kind(), c2.kind()) {
                                    (ty::ConstKind::Alias(_, a), ty::ConstKind::Alias(_, b)) if
                                        a.kind == b.kind &&
                                            #[allow(non_exhaustive_omitted_patterns)] match a.kind {
                                                ty::AliasConstKind::Projection { .. } |
                                                    ty::AliasConstKind::Inherent { .. } => true,
                                                _ => false,
                                            } => {
                                        if let Ok(new_obligations) =
                                                infcx.at(&obligation.cause,
                                                        obligation.param_env).eq(DefineOpaqueTypes::Yes,
                                                    ty::AliasTerm::from(a), ty::AliasTerm::from(b)) {
                                            return ProcessResult::Changed(mk_pending(obligation,
                                                        new_obligations.into_obligations()));
                                        }
                                    }
                                    (_, ty::ConstKind::Alias(_, _)) |
                                        (ty::ConstKind::Alias(_, _), _) => (),
                                    (_, _) => {
                                        if let Ok(new_obligations) =
                                                infcx.at(&obligation.cause,
                                                        obligation.param_env).eq(DefineOpaqueTypes::Yes, c1, c2) {
                                            return ProcessResult::Changed(mk_pending(obligation,
                                                        new_obligations.into_obligations()));
                                        }
                                    }
                                }
                            }
                            let stalled_on = &mut pending_obligation.stalled_on;
                            let mut evaluate =
                                |c: Const<'tcx>|
                                    {
                                        if let ty::ConstKind::Alias(_, alias_const) = c.kind() {
                                            match super::try_evaluate_const(self.selcx.infcx, c,
                                                    obligation.param_env) {
                                                Ok(val) => Ok(val),
                                                e @ Err(EvaluateConstErr::HasGenericsOrInfers) => {
                                                    stalled_on.extend(alias_const.args.iter().filter_map(TyOrConstInferVar::maybe_from_generic_arg));
                                                    e
                                                }
                                                e @
                                                    Err(EvaluateConstErr::EvaluationFailure(_) |
                                                    EvaluateConstErr::InvalidConstParamTy(_)) => e,
                                            }
                                        } else { Ok(c) }
                                    };
                            match (evaluate(c1), evaluate(c2)) {
                                (Ok(c1), Ok(c2)) => {
                                    match self.selcx.infcx.at(&obligation.cause,
                                                obligation.param_env).eq(DefineOpaqueTypes::Yes, c1, c2) {
                                        Ok(inf_ok) =>
                                            ProcessResult::Changed(mk_pending(obligation,
                                                    inf_ok.into_obligations())),
                                        Err(err) => {
                                            ProcessResult::Error(FulfillmentErrorCode::ConstEquate(ExpectedFound::new(c1,
                                                        c2), err))
                                        }
                                    }
                                }
                                (Err(EvaluateConstErr::InvalidConstParamTy(e)), _) |
                                    (_, Err(EvaluateConstErr::InvalidConstParamTy(e))) => {
                                    ProcessResult::Error(FulfillmentErrorCode::Select(SelectionError::NotConstEvaluatable(NotConstEvaluatable::Error(e))))
                                }
                                (Err(EvaluateConstErr::EvaluationFailure(e)), _) |
                                    (_, Err(EvaluateConstErr::EvaluationFailure(e))) => {
                                    ProcessResult::Error(FulfillmentErrorCode::Select(SelectionError::NotConstEvaluatable(NotConstEvaluatable::Error(e))))
                                }
                                (Err(EvaluateConstErr::HasGenericsOrInfers), _) |
                                    (_, Err(EvaluateConstErr::HasGenericsOrInfers)) => {
                                    if c1.has_non_region_infer() || c2.has_non_region_infer() {
                                        ProcessResult::Unchanged
                                    } else {
                                        let expected_found = ExpectedFound::new(c1, c2);
                                        ProcessResult::Error(FulfillmentErrorCode::ConstEquate(expected_found,
                                                TypeError::ConstMismatch(expected_found)))
                                    }
                                }
                            }
                        }
                        ty::PredicateKind::Clause(ty::ClauseKind::UnstableFeature(symbol))
                            => {
                            if may_use_unstable_feature(self.selcx.infcx,
                                    obligation.param_env, symbol) {
                                ProcessResult::Changed(Default::default())
                            } else { ProcessResult::Unchanged }
                        }
                    },
            }
        }
    }
}#[instrument(level = "debug", skip(self, pending_obligation))]
379    fn process_obligation(
380        &mut self,
381        pending_obligation: &mut PendingPredicateObligation<'tcx>,
382    ) -> ProcessResult<PendingPredicateObligation<'tcx>, FulfillmentErrorCode<'tcx>> {
383        pending_obligation.stalled_on.clear();
384
385        let obligation = &mut pending_obligation.obligation;
386
387        debug!(?obligation, "pre-resolve");
388
389        if obligation.predicate.has_non_region_infer() {
390            obligation.predicate = self.selcx.infcx.resolve_vars_if_possible(obligation.predicate);
391        }
392
393        let obligation = &pending_obligation.obligation;
394
395        let infcx = self.selcx.infcx;
396
397        if !infcx.disable_trait_solver_fast_paths()
398            && sizedness_fast_path(infcx.tcx, obligation.predicate, obligation.param_env)
399        {
400            return ProcessResult::Changed(thin_vec![]);
401        }
402
403        if obligation.predicate.has_aliases() {
404            let mut obligations = PredicateObligations::new();
405            let predicate = normalize_with_depth_to(
406                &mut self.selcx,
407                obligation.param_env,
408                obligation.cause.clone(),
409                obligation.recursion_depth + 1,
410                ty::Unnormalized::new_wip(obligation.predicate),
411                &mut obligations,
412            );
413            if predicate != obligation.predicate {
414                obligations.push(obligation.with(infcx.tcx, predicate));
415                return ProcessResult::Changed(mk_pending(obligation, obligations));
416            }
417        }
418        let binder = obligation.predicate.kind();
419        match binder.no_bound_vars() {
420            None => match binder.skip_binder() {
421                // Evaluation will discard candidates using the leak check.
422                // This means we need to pass it the bound version of our
423                // predicate.
424                ty::PredicateKind::Clause(ty::ClauseKind::Trait(trait_ref)) => {
425                    let trait_obligation = obligation.with(infcx.tcx, binder.rebind(trait_ref));
426
427                    self.process_trait_obligation(
428                        obligation,
429                        trait_obligation,
430                        &mut pending_obligation.stalled_on,
431                    )
432                }
433                ty::PredicateKind::Clause(ty::ClauseKind::Projection(data)) => {
434                    let project_obligation = obligation.with(infcx.tcx, binder.rebind(data));
435
436                    self.process_projection_obligation(
437                        obligation,
438                        project_obligation,
439                        &mut pending_obligation.stalled_on,
440                    )
441                }
442                ty::PredicateKind::Clause(ty::ClauseKind::RegionOutlives(_))
443                | ty::PredicateKind::Clause(ty::ClauseKind::TypeOutlives(_))
444                | ty::PredicateKind::Clause(ty::ClauseKind::ConstArgHasType(..))
445                | ty::PredicateKind::Clause(ty::ClauseKind::WellFormed(_))
446                | ty::PredicateKind::DynCompatible(_)
447                | ty::PredicateKind::Subtype(_)
448                | ty::PredicateKind::Coerce(_)
449                | ty::PredicateKind::Clause(ty::ClauseKind::ConstEvaluatable(..))
450                | ty::PredicateKind::ConstEquate(..)
451                // FIXME(const_trait_impl): We may need to do this using the higher-ranked
452                // pred instead of just instantiating it with placeholders b/c of
453                // higher-ranked implied bound issues in the old solver.
454                | ty::PredicateKind::Clause(ty::ClauseKind::HostEffect(..)) => {
455                    let pred = ty::Binder::dummy(infcx.enter_forall_and_leak_universe(binder));
456                    let mut obligations = PredicateObligations::with_capacity(1);
457                    obligations.push(obligation.with(infcx.tcx, pred));
458
459                    ProcessResult::Changed(mk_pending(obligation, obligations))
460                }
461                ty::PredicateKind::Ambiguous => ProcessResult::Unchanged,
462                ty::PredicateKind::NormalizesTo(..) => {
463                    bug!("NormalizesTo is only used by the new solver")
464                }
465                ty::PredicateKind::Clause(ty::ClauseKind::UnstableFeature(_)) => {
466                    unreachable!("unexpected higher ranked `UnstableFeature` goal")
467                }
468            },
469            Some(pred) => match pred {
470                ty::PredicateKind::Clause(ty::ClauseKind::Trait(data)) => {
471                    let trait_obligation = obligation.with(infcx.tcx, Binder::dummy(data));
472
473                    self.process_trait_obligation(
474                        obligation,
475                        trait_obligation,
476                        &mut pending_obligation.stalled_on,
477                    )
478                }
479
480                ty::PredicateKind::Clause(ty::ClauseKind::HostEffect(data)) => {
481                    let host_obligation = obligation.with(infcx.tcx, data);
482
483                    self.process_host_obligation(
484                        obligation,
485                        host_obligation,
486                        &mut pending_obligation.stalled_on,
487                    )
488                }
489
490                ty::PredicateKind::Clause(ty::ClauseKind::RegionOutlives(data)) => {
491                    if infcx.considering_regions {
492                        infcx.register_region_outlives_constraint(
493                            data,
494                            ty::VisibleForLeakCheck::Yes,
495                            &obligation.cause,
496                        );
497                    }
498
499                    ProcessResult::Changed(Default::default())
500                }
501
502                ty::PredicateKind::Clause(ty::ClauseKind::TypeOutlives(ty::OutlivesPredicate(
503                    t_a,
504                    r_b,
505                ))) => {
506                    if infcx.considering_regions {
507                        infcx.register_type_outlives_constraint(t_a, r_b, &obligation.cause);
508                    }
509                    ProcessResult::Changed(Default::default())
510                }
511
512                ty::PredicateKind::Clause(ty::ClauseKind::Projection(ref data)) => {
513                    let project_obligation = obligation.with(infcx.tcx, Binder::dummy(*data));
514
515                    self.process_projection_obligation(
516                        obligation,
517                        project_obligation,
518                        &mut pending_obligation.stalled_on,
519                    )
520                }
521
522                ty::PredicateKind::DynCompatible(trait_def_id) => {
523                    if !self.selcx.tcx().is_dyn_compatible(trait_def_id) {
524                        ProcessResult::Error(FulfillmentErrorCode::Select(
525                            SelectionError::Unimplemented,
526                        ))
527                    } else {
528                        ProcessResult::Changed(Default::default())
529                    }
530                }
531
532                ty::PredicateKind::Ambiguous => ProcessResult::Unchanged,
533                ty::PredicateKind::NormalizesTo(..) => {
534                    bug!("NormalizesTo is only used by the new solver")
535                }
536                // Compute `ConstArgHasType` above the overflow check below.
537                // This is because this is not ever a useful obligation to report
538                // as the cause of an overflow.
539                ty::PredicateKind::Clause(ty::ClauseKind::ConstArgHasType(ct, ty)) => {
540                    let ct = infcx.shallow_resolve_const(ct);
541                    let ct_ty = match ct.kind() {
542                        ty::ConstKind::Infer(var) => {
543                            let var = match var {
544                                ty::InferConst::Var(vid) => TyOrConstInferVar::Const(vid),
545                                ty::InferConst::Fresh(_) => {
546                                    bug!("encountered fresh const in fulfill")
547                                }
548                            };
549                            pending_obligation.stalled_on.clear();
550                            pending_obligation.stalled_on.extend([var]);
551                            return ProcessResult::Unchanged;
552                        }
553                        ty::ConstKind::Error(_) => {
554                            return ProcessResult::Changed(PendingPredicateObligations::new());
555                        }
556                        ty::ConstKind::Value(cv) => cv.ty,
557                        ty::ConstKind::Alias(_, alias_const) => {
558                            alias_const.type_of(infcx.tcx).skip_norm_wip()
559                        }
560                        // FIXME(generic_const_exprs): we should construct an alias like
561                        // `<lhs_ty as Add<rhs_ty>>::Output` when this is an `Expr` representing
562                        // `lhs + rhs`.
563                        ty::ConstKind::Expr(_) => {
564                            return ProcessResult::Changed(mk_pending(
565                                obligation,
566                                PredicateObligations::new(),
567                            ));
568                        }
569                        ty::ConstKind::Placeholder(_) => {
570                            bug!("placeholder const {:?} in old solver", ct)
571                        }
572                        ty::ConstKind::Bound(_, _) => bug!("escaping bound vars in {:?}", ct),
573                        ty::ConstKind::Param(param_ct) => {
574                            param_ct.find_const_ty_from_env(obligation.param_env)
575                        }
576                    };
577
578                    match infcx.at(&obligation.cause, obligation.param_env).eq(
579                        // Only really exercised by generic_const_exprs
580                        DefineOpaqueTypes::Yes,
581                        ct_ty,
582                        ty,
583                    ) {
584                        Ok(inf_ok) => ProcessResult::Changed(mk_pending(
585                            obligation,
586                            inf_ok.into_obligations(),
587                        )),
588                        Err(_) => ProcessResult::Error(FulfillmentErrorCode::Select(
589                            SelectionError::ConstArgHasWrongType { ct, ct_ty, expected_ty: ty },
590                        )),
591                    }
592                }
593
594                // General case overflow check. Allow `process_trait_obligation`
595                // and `process_projection_obligation` to handle checking for
596                // the recursion limit themselves. Also don't check some
597                // predicate kinds that don't give further obligations.
598                _ if !self
599                    .selcx
600                    .tcx()
601                    .recursion_limit()
602                    .value_within_limit(obligation.recursion_depth) =>
603                {
604                    self.selcx.infcx.err_ctxt().report_overflow_obligation(&obligation, false);
605                }
606
607                ty::PredicateKind::Clause(ty::ClauseKind::WellFormed(term)) => {
608                    if term.is_trivially_wf(self.selcx.tcx()) {
609                        return ProcessResult::Changed(thin_vec![]);
610                    }
611
612                    match wf::obligations(
613                        self.selcx.infcx,
614                        obligation.param_env,
615                        obligation.cause.body_def_id,
616                        obligation.recursion_depth + 1,
617                        term,
618                        obligation.cause.span,
619                    ) {
620                        None => {
621                            pending_obligation.stalled_on =
622                                vec![TyOrConstInferVar::maybe_from_term(term).unwrap()];
623                            ProcessResult::Unchanged
624                        }
625                        Some(os) => ProcessResult::Changed(mk_pending(obligation, os)),
626                    }
627                }
628
629                ty::PredicateKind::Subtype(subtype) => {
630                    match self.selcx.infcx.subtype_predicate(
631                        &obligation.cause,
632                        obligation.param_env,
633                        Binder::dummy(subtype),
634                    ) {
635                        Err((a, b)) => {
636                            // None means that both are unresolved.
637                            pending_obligation.stalled_on =
638                                vec![TyOrConstInferVar::Ty(a), TyOrConstInferVar::Ty(b)];
639                            ProcessResult::Unchanged
640                        }
641                        Ok(Ok(ok)) => {
642                            ProcessResult::Changed(mk_pending(obligation, ok.obligations))
643                        }
644                        Ok(Err(err)) => {
645                            let expected_found = if subtype.a_is_expected {
646                                ExpectedFound::new(subtype.a, subtype.b)
647                            } else {
648                                ExpectedFound::new(subtype.b, subtype.a)
649                            };
650                            ProcessResult::Error(FulfillmentErrorCode::Subtype(expected_found, err))
651                        }
652                    }
653                }
654
655                ty::PredicateKind::Coerce(coerce) => {
656                    match self.selcx.infcx.coerce_predicate(
657                        &obligation.cause,
658                        obligation.param_env,
659                        Binder::dummy(coerce),
660                    ) {
661                        Err((a, b)) => {
662                            // None means that both are unresolved.
663                            pending_obligation.stalled_on =
664                                vec![TyOrConstInferVar::Ty(a), TyOrConstInferVar::Ty(b)];
665                            ProcessResult::Unchanged
666                        }
667                        Ok(Ok(ok)) => {
668                            ProcessResult::Changed(mk_pending(obligation, ok.obligations))
669                        }
670                        Ok(Err(err)) => {
671                            let expected_found = ExpectedFound::new(coerce.b, coerce.a);
672                            ProcessResult::Error(FulfillmentErrorCode::Subtype(expected_found, err))
673                        }
674                    }
675                }
676
677                ty::PredicateKind::Clause(ty::ClauseKind::ConstEvaluatable(alias_const)) => {
678                    match const_evaluatable::is_const_evaluatable(
679                        self.selcx.infcx,
680                        alias_const,
681                        obligation.param_env,
682                        obligation.cause.span,
683                    ) {
684                        Ok(()) => ProcessResult::Changed(Default::default()),
685                        Err(NotConstEvaluatable::MentionsInfer) => {
686                            pending_obligation.stalled_on.clear();
687                            pending_obligation.stalled_on.extend(
688                                alias_const
689                                    .walk()
690                                    .filter_map(TyOrConstInferVar::maybe_from_generic_arg),
691                            );
692                            ProcessResult::Unchanged
693                        }
694                        Err(
695                            e @ NotConstEvaluatable::MentionsParam
696                            | e @ NotConstEvaluatable::Error(_),
697                        ) => ProcessResult::Error(FulfillmentErrorCode::Select(
698                            SelectionError::NotConstEvaluatable(e),
699                        )),
700                    }
701                }
702
703                ty::PredicateKind::ConstEquate(c1, c2) => {
704                    let tcx = self.selcx.tcx();
705                    assert!(
706                        tcx.features().generic_const_exprs(),
707                        "`ConstEquate` without a feature gate: {c1:?} {c2:?}",
708                    );
709                    // FIXME: we probably should only try to unify abstract constants
710                    // if the constants depend on generic parameters.
711                    //
712                    // Let's just see where this breaks :shrug:
713                    {
714                        let c1 = tcx.expand_abstract_consts(c1);
715                        let c2 = tcx.expand_abstract_consts(c2);
716                        debug!("equating consts:\nc1= {:?}\nc2= {:?}", c1, c2);
717
718                        match (c1.kind(), c2.kind()) {
719                            (ty::ConstKind::Alias(_, a), ty::ConstKind::Alias(_, b))
720                                if a.kind == b.kind
721                                    && matches!(
722                                        a.kind,
723                                        ty::AliasConstKind::Projection { .. }
724                                            | ty::AliasConstKind::Inherent { .. }
725                                    ) =>
726                            {
727                                if let Ok(new_obligations) = infcx
728                                    .at(&obligation.cause, obligation.param_env)
729                                    // Can define opaque types as this is only reachable with
730                                    // `generic_const_exprs`
731                                    .eq(
732                                        DefineOpaqueTypes::Yes,
733                                        ty::AliasTerm::from(a),
734                                        ty::AliasTerm::from(b),
735                                    )
736                                {
737                                    return ProcessResult::Changed(mk_pending(
738                                        obligation,
739                                        new_obligations.into_obligations(),
740                                    ));
741                                }
742                            }
743                            (_, ty::ConstKind::Alias(_, _)) | (ty::ConstKind::Alias(_, _), _) => (),
744                            (_, _) => {
745                                if let Ok(new_obligations) = infcx
746                                    .at(&obligation.cause, obligation.param_env)
747                                    // Can define opaque types as this is only reachable with
748                                    // `generic_const_exprs`
749                                    .eq(DefineOpaqueTypes::Yes, c1, c2)
750                                {
751                                    return ProcessResult::Changed(mk_pending(
752                                        obligation,
753                                        new_obligations.into_obligations(),
754                                    ));
755                                }
756                            }
757                        }
758                    }
759
760                    let stalled_on = &mut pending_obligation.stalled_on;
761
762                    let mut evaluate = |c: Const<'tcx>| {
763                        if let ty::ConstKind::Alias(_, alias_const) = c.kind() {
764                            match super::try_evaluate_const(
765                                self.selcx.infcx,
766                                c,
767                                obligation.param_env,
768                            ) {
769                                Ok(val) => Ok(val),
770                                e @ Err(EvaluateConstErr::HasGenericsOrInfers) => {
771                                    stalled_on.extend(
772                                        alias_const
773                                            .args
774                                            .iter()
775                                            .filter_map(TyOrConstInferVar::maybe_from_generic_arg),
776                                    );
777                                    e
778                                }
779                                e @ Err(
780                                    EvaluateConstErr::EvaluationFailure(_)
781                                    | EvaluateConstErr::InvalidConstParamTy(_),
782                                ) => e,
783                            }
784                        } else {
785                            Ok(c)
786                        }
787                    };
788
789                    match (evaluate(c1), evaluate(c2)) {
790                        (Ok(c1), Ok(c2)) => {
791                            match self.selcx.infcx.at(&obligation.cause, obligation.param_env).eq(
792                                // Can define opaque types as this is only reachable with
793                                // `generic_const_exprs`
794                                DefineOpaqueTypes::Yes,
795                                c1,
796                                c2,
797                            ) {
798                                Ok(inf_ok) => ProcessResult::Changed(mk_pending(
799                                    obligation,
800                                    inf_ok.into_obligations(),
801                                )),
802                                Err(err) => {
803                                    ProcessResult::Error(FulfillmentErrorCode::ConstEquate(
804                                        ExpectedFound::new(c1, c2),
805                                        err,
806                                    ))
807                                }
808                            }
809                        }
810                        (Err(EvaluateConstErr::InvalidConstParamTy(e)), _)
811                        | (_, Err(EvaluateConstErr::InvalidConstParamTy(e))) => {
812                            ProcessResult::Error(FulfillmentErrorCode::Select(
813                                SelectionError::NotConstEvaluatable(NotConstEvaluatable::Error(e)),
814                            ))
815                        }
816                        (Err(EvaluateConstErr::EvaluationFailure(e)), _)
817                        | (_, Err(EvaluateConstErr::EvaluationFailure(e))) => {
818                            ProcessResult::Error(FulfillmentErrorCode::Select(
819                                SelectionError::NotConstEvaluatable(NotConstEvaluatable::Error(e)),
820                            ))
821                        }
822                        (Err(EvaluateConstErr::HasGenericsOrInfers), _)
823                        | (_, Err(EvaluateConstErr::HasGenericsOrInfers)) => {
824                            if c1.has_non_region_infer() || c2.has_non_region_infer() {
825                                ProcessResult::Unchanged
826                            } else {
827                                // Two different constants using generic parameters ~> error.
828                                let expected_found = ExpectedFound::new(c1, c2);
829                                ProcessResult::Error(FulfillmentErrorCode::ConstEquate(
830                                    expected_found,
831                                    TypeError::ConstMismatch(expected_found),
832                                ))
833                            }
834                        }
835                    }
836                }
837                ty::PredicateKind::Clause(ty::ClauseKind::UnstableFeature(symbol)) => {
838                    if may_use_unstable_feature(self.selcx.infcx, obligation.param_env, symbol) {
839                        ProcessResult::Changed(Default::default())
840                    } else {
841                        ProcessResult::Unchanged
842                    }
843                }
844            },
845        }
846    }
847
848    #[inline(never)]
849    fn process_backedge<'c, I>(
850        &mut self,
851        cycle: I,
852        _marker: PhantomData<&'c PendingPredicateObligation<'tcx>>,
853    ) -> Result<(), FulfillmentErrorCode<'tcx>>
854    where
855        I: Clone + Iterator<Item = &'c PendingPredicateObligation<'tcx>>,
856    {
857        if self.selcx.coinductive_match(cycle.clone().map(|s| s.obligation.predicate)) {
858            {
    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/fulfill.rs:858",
                        "rustc_trait_selection::traits::fulfill",
                        ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/fulfill.rs"),
                        ::tracing_core::__macro_support::Option::Some(858u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::fulfill"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("process_child_obligations: coinductive match")
                                            as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!("process_child_obligations: coinductive match");
859            Ok(())
860        } else {
861            let cycle = cycle.map(|c| c.obligation.clone()).collect();
862            Err(FulfillmentErrorCode::Cycle(cycle))
863        }
864    }
865}
866
867impl<'a, 'tcx> FulfillProcessor<'a, 'tcx> {
868    #[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("process_trait_obligation",
                                    "rustc_trait_selection::traits::fulfill",
                                    ::tracing::Level::DEBUG,
                                    ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/fulfill.rs"),
                                    ::tracing_core::__macro_support::Option::Some(868u32),
                                    ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::fulfill"),
                                    ::tracing_core::field::FieldSet::new(&[{
                                                        const NAME:
                                                            ::tracing::__macro_support::FieldName<{
                                                                ::tracing::__macro_support::FieldName::len("trait_obligation")
                                                            }> =
                                                            ::tracing::__macro_support::FieldName::new("trait_obligation");
                                                        NAME.as_str()
                                                    }], ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                    ::tracing::metadata::Kind::SPAN)
                            };
                        ::tracing::callsite::DefaultCallsite::new(&META)
                    };
                let mut interest = ::tracing::subscriber::Interest::never();
                if ::tracing::Level::DEBUG <=
                                    ::tracing::level_filters::STATIC_MAX_LEVEL &&
                                ::tracing::Level::DEBUG <=
                                    ::tracing::level_filters::LevelFilter::current() &&
                            { interest = __CALLSITE.interest(); !interest.is_never() }
                        &&
                        ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                            interest) {
                    let meta = __CALLSITE.metadata();
                    ::tracing::Span::new(meta,
                        &{
                                #[allow(unused_imports)]
                                use ::tracing::field::{debug, display, Value};
                                meta.fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&trait_obligation)
                                                            as &dyn ::tracing::field::Value))])
                            })
                } else {
                    let span =
                        ::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
                    {};
                    span
                }
            };
        __tracing_attr_guard = __tracing_attr_span.enter();
    }

    #[warn(clippy :: suspicious_else_formatting)]
    {

        #[allow(unknown_lints, unreachable_code, clippy ::
        diverging_sub_expression, clippy :: empty_loop, clippy ::
        let_unit_value, clippy :: let_with_type_underscore, clippy ::
        needless_return, clippy :: unreachable)]
        if false {
            let __tracing_attr_fake_return:
                    ProcessResult<PendingPredicateObligation<'tcx>,
                    FulfillmentErrorCode<'tcx>> = loop {};
            return __tracing_attr_fake_return;
        }
        {
            let infcx = self.selcx.infcx;
            if obligation.predicate.is_global() &&
                    !self.selcx.typing_mode().is_coherence() {
                if infcx.predicate_must_hold_considering_regions(obligation) {
                    {
                        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/fulfill.rs:880",
                                            "rustc_trait_selection::traits::fulfill",
                                            ::tracing::Level::DEBUG,
                                            ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/fulfill.rs"),
                                            ::tracing_core::__macro_support::Option::Some(880u32),
                                            ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::fulfill"),
                                            ::tracing_core::field::FieldSet::new(&["message"],
                                                ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                            ::tracing::metadata::Kind::EVENT)
                                    };
                                ::tracing::callsite::DefaultCallsite::new(&META)
                            };
                        let enabled =
                            ::tracing::Level::DEBUG <=
                                        ::tracing::level_filters::STATIC_MAX_LEVEL &&
                                    ::tracing::Level::DEBUG <=
                                        ::tracing::level_filters::LevelFilter::current() &&
                                {
                                    let interest = __CALLSITE.interest();
                                    !interest.is_never() &&
                                        ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                                            interest)
                                };
                        if enabled {
                            (|value_set: ::tracing::field::ValueSet|
                                        {
                                            let meta = __CALLSITE.metadata();
                                            ::tracing::Event::dispatch(meta, &value_set);
                                            ;
                                        })({
                                    #[allow(unused_imports)]
                                    use ::tracing::field::{debug, display, Value};
                                    __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("selecting trait at depth {0} evaluated to holds",
                                                                        obligation.recursion_depth) as
                                                                &dyn ::tracing::field::Value))])
                                });
                        } else { ; }
                    };
                    return ProcessResult::Changed(Default::default());
                }
            }
            match self.selcx.poly_select(&trait_obligation) {
                Ok(Some(impl_source)) => {
                    {
                        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/fulfill.rs:890",
                                            "rustc_trait_selection::traits::fulfill",
                                            ::tracing::Level::DEBUG,
                                            ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/fulfill.rs"),
                                            ::tracing_core::__macro_support::Option::Some(890u32),
                                            ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::fulfill"),
                                            ::tracing_core::field::FieldSet::new(&["message"],
                                                ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                            ::tracing::metadata::Kind::EVENT)
                                    };
                                ::tracing::callsite::DefaultCallsite::new(&META)
                            };
                        let enabled =
                            ::tracing::Level::DEBUG <=
                                        ::tracing::level_filters::STATIC_MAX_LEVEL &&
                                    ::tracing::Level::DEBUG <=
                                        ::tracing::level_filters::LevelFilter::current() &&
                                {
                                    let interest = __CALLSITE.interest();
                                    !interest.is_never() &&
                                        ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                                            interest)
                                };
                        if enabled {
                            (|value_set: ::tracing::field::ValueSet|
                                        {
                                            let meta = __CALLSITE.metadata();
                                            ::tracing::Event::dispatch(meta, &value_set);
                                            ;
                                        })({
                                    #[allow(unused_imports)]
                                    use ::tracing::field::{debug, display, Value};
                                    __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("selecting trait at depth {0} yielded Ok(Some)",
                                                                        obligation.recursion_depth) as
                                                                &dyn ::tracing::field::Value))])
                                });
                        } else { ; }
                    };
                    ProcessResult::Changed(mk_pending(obligation,
                            impl_source.nested_obligations()))
                }
                Ok(None) => {
                    {
                        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/fulfill.rs:894",
                                            "rustc_trait_selection::traits::fulfill",
                                            ::tracing::Level::DEBUG,
                                            ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/fulfill.rs"),
                                            ::tracing_core::__macro_support::Option::Some(894u32),
                                            ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::fulfill"),
                                            ::tracing_core::field::FieldSet::new(&["message"],
                                                ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                            ::tracing::metadata::Kind::EVENT)
                                    };
                                ::tracing::callsite::DefaultCallsite::new(&META)
                            };
                        let enabled =
                            ::tracing::Level::DEBUG <=
                                        ::tracing::level_filters::STATIC_MAX_LEVEL &&
                                    ::tracing::Level::DEBUG <=
                                        ::tracing::level_filters::LevelFilter::current() &&
                                {
                                    let interest = __CALLSITE.interest();
                                    !interest.is_never() &&
                                        ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                                            interest)
                                };
                        if enabled {
                            (|value_set: ::tracing::field::ValueSet|
                                        {
                                            let meta = __CALLSITE.metadata();
                                            ::tracing::Event::dispatch(meta, &value_set);
                                            ;
                                        })({
                                    #[allow(unused_imports)]
                                    use ::tracing::field::{debug, display, Value};
                                    __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("selecting trait at depth {0} yielded Ok(None)",
                                                                        obligation.recursion_depth) as
                                                                &dyn ::tracing::field::Value))])
                                });
                        } else { ; }
                    };
                    stalled_on.clear();
                    stalled_on.extend(args_infer_vars(&self.selcx,
                            trait_obligation.predicate.map_bound(|pred|
                                    pred.trait_ref.args)));
                    {
                        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/fulfill.rs:906",
                                            "rustc_trait_selection::traits::fulfill",
                                            ::tracing::Level::DEBUG,
                                            ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/fulfill.rs"),
                                            ::tracing_core::__macro_support::Option::Some(906u32),
                                            ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::fulfill"),
                                            ::tracing_core::field::FieldSet::new(&["message"],
                                                ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                            ::tracing::metadata::Kind::EVENT)
                                    };
                                ::tracing::callsite::DefaultCallsite::new(&META)
                            };
                        let enabled =
                            ::tracing::Level::DEBUG <=
                                        ::tracing::level_filters::STATIC_MAX_LEVEL &&
                                    ::tracing::Level::DEBUG <=
                                        ::tracing::level_filters::LevelFilter::current() &&
                                {
                                    let interest = __CALLSITE.interest();
                                    !interest.is_never() &&
                                        ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                                            interest)
                                };
                        if enabled {
                            (|value_set: ::tracing::field::ValueSet|
                                        {
                                            let meta = __CALLSITE.metadata();
                                            ::tracing::Event::dispatch(meta, &value_set);
                                            ;
                                        })({
                                    #[allow(unused_imports)]
                                    use ::tracing::field::{debug, display, Value};
                                    __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("process_predicate: pending obligation {0:?} now stalled on {1:?}",
                                                                        infcx.resolve_vars_if_possible(obligation.clone()),
                                                                        stalled_on) as &dyn ::tracing::field::Value))])
                                });
                        } else { ; }
                    };
                    ProcessResult::Unchanged
                }
                Err(selection_err) => {
                    {
                        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/fulfill.rs:915",
                                            "rustc_trait_selection::traits::fulfill",
                                            ::tracing::Level::DEBUG,
                                            ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/fulfill.rs"),
                                            ::tracing_core::__macro_support::Option::Some(915u32),
                                            ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::fulfill"),
                                            ::tracing_core::field::FieldSet::new(&["message"],
                                                ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                            ::tracing::metadata::Kind::EVENT)
                                    };
                                ::tracing::callsite::DefaultCallsite::new(&META)
                            };
                        let enabled =
                            ::tracing::Level::DEBUG <=
                                        ::tracing::level_filters::STATIC_MAX_LEVEL &&
                                    ::tracing::Level::DEBUG <=
                                        ::tracing::level_filters::LevelFilter::current() &&
                                {
                                    let interest = __CALLSITE.interest();
                                    !interest.is_never() &&
                                        ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                                            interest)
                                };
                        if enabled {
                            (|value_set: ::tracing::field::ValueSet|
                                        {
                                            let meta = __CALLSITE.metadata();
                                            ::tracing::Event::dispatch(meta, &value_set);
                                            ;
                                        })({
                                    #[allow(unused_imports)]
                                    use ::tracing::field::{debug, display, Value};
                                    __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("selecting trait at depth {0} yielded Err",
                                                                        obligation.recursion_depth) as
                                                                &dyn ::tracing::field::Value))])
                                });
                        } else { ; }
                    };
                    ProcessResult::Error(FulfillmentErrorCode::Select(selection_err))
                }
            }
        }
    }
}#[instrument(level = "debug", skip(self, obligation, stalled_on))]
869    fn process_trait_obligation(
870        &mut self,
871        obligation: &PredicateObligation<'tcx>,
872        trait_obligation: PolyTraitObligation<'tcx>,
873        stalled_on: &mut Vec<TyOrConstInferVar>,
874    ) -> ProcessResult<PendingPredicateObligation<'tcx>, FulfillmentErrorCode<'tcx>> {
875        let infcx = self.selcx.infcx;
876        if obligation.predicate.is_global() && !self.selcx.typing_mode().is_coherence() {
877            // no type variables present, can use evaluation for better caching.
878            // FIXME: consider caching errors too.
879            if infcx.predicate_must_hold_considering_regions(obligation) {
880                debug!(
881                    "selecting trait at depth {} evaluated to holds",
882                    obligation.recursion_depth
883                );
884                return ProcessResult::Changed(Default::default());
885            }
886        }
887
888        match self.selcx.poly_select(&trait_obligation) {
889            Ok(Some(impl_source)) => {
890                debug!("selecting trait at depth {} yielded Ok(Some)", obligation.recursion_depth);
891                ProcessResult::Changed(mk_pending(obligation, impl_source.nested_obligations()))
892            }
893            Ok(None) => {
894                debug!("selecting trait at depth {} yielded Ok(None)", obligation.recursion_depth);
895
896                // This is a bit subtle: for the most part, the
897                // only reason we can fail to make progress on
898                // trait selection is because we don't have enough
899                // information about the types in the trait.
900                stalled_on.clear();
901                stalled_on.extend(args_infer_vars(
902                    &self.selcx,
903                    trait_obligation.predicate.map_bound(|pred| pred.trait_ref.args),
904                ));
905
906                debug!(
907                    "process_predicate: pending obligation {:?} now stalled on {:?}",
908                    infcx.resolve_vars_if_possible(obligation.clone()),
909                    stalled_on
910                );
911
912                ProcessResult::Unchanged
913            }
914            Err(selection_err) => {
915                debug!("selecting trait at depth {} yielded Err", obligation.recursion_depth);
916
917                ProcessResult::Error(FulfillmentErrorCode::Select(selection_err))
918            }
919        }
920    }
921
922    fn process_projection_obligation(
923        &mut self,
924        obligation: &PredicateObligation<'tcx>,
925        project_obligation: PolyProjectionObligation<'tcx>,
926        stalled_on: &mut Vec<TyOrConstInferVar>,
927    ) -> ProcessResult<PendingPredicateObligation<'tcx>, FulfillmentErrorCode<'tcx>> {
928        let tcx = self.selcx.tcx();
929        let infcx = self.selcx.infcx;
930        if obligation.predicate.is_global() && !self.selcx.typing_mode().is_coherence() {
931            // no type variables present, can use evaluation for better caching.
932            // FIXME: consider caching errors too.
933            if infcx.predicate_must_hold_considering_regions(obligation) {
934                if let Some(key) = ProjectionCacheKey::from_poly_projection_obligation(
935                    &mut self.selcx,
936                    &project_obligation,
937                ) {
938                    // If `predicate_must_hold_considering_regions` succeeds, then we've
939                    // evaluated all sub-obligations. We can therefore mark the 'root'
940                    // obligation as complete, and skip evaluating sub-obligations.
941                    infcx
942                        .inner
943                        .borrow_mut()
944                        .projection_cache()
945                        .complete(key, EvaluationResult::EvaluatedToOk);
946                }
947                return ProcessResult::Changed(Default::default());
948            } else {
949                {
    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/fulfill.rs:949",
                        "rustc_trait_selection::traits::fulfill",
                        ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/fulfill.rs"),
                        ::tracing_core::__macro_support::Option::Some(949u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::fulfill"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("Does NOT hold: {0:?}",
                                                    obligation) as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!("Does NOT hold: {:?}", obligation);
950            }
951        }
952
953        match project::poly_project_and_unify_term(&mut self.selcx, &project_obligation) {
954            ProjectAndUnifyResult::Holds(os) if os.is_empty() => {
955                ProcessResult::Changed(mk_pending(obligation, os))
956            }
957            ProjectAndUnifyResult::Holds(os) => {
958                let input_projection_term = infcx
959                    .resolve_vars_if_possible(project_obligation.predicate)
960                    .map_bound(|p| p.projection_term);
961                let all_same_projection_term = os.iter().all(|o| {
962                    let Some(proj_clause) = o.predicate.as_projection_clause() else {
963                        return false;
964                    };
965                    infcx.resolve_vars_if_possible(proj_clause).map_bound(|p| p.projection_term)
966                        == input_projection_term
967                });
968                if all_same_projection_term {
969                    // Every nested obligation has the same projection term as the obligation
970                    // we are processing, so registering would make fulfillment process the same
971                    // obligation forever. This happens when unifying the projection with the
972                    // predicate's term spawns a delayed copy of the predicate itself, see
973                    // `InferCtxt::instantiate_var`. E.g. in Issue #159750, processing
974                    // `<_ as Queryable>::Output == ?0` returns `Holds` with the single nested
975                    // obligation `<_ as Queryable>::Output == ?1` where `?1` is merely unioned
976                    // with `?0`.
977                    // Since at this point the code will not compile, error immediately.
978                    ProcessResult::Error(FulfillmentErrorCode::Ambiguity { overflow: None })
979                } else {
980                    ProcessResult::Changed(mk_pending(obligation, os))
981                }
982            }
983            ProjectAndUnifyResult::FailedNormalization => {
984                stalled_on.clear();
985                stalled_on.extend(args_infer_vars(
986                    &self.selcx,
987                    project_obligation.predicate.map_bound(|pred| pred.projection_term.args),
988                ));
989                ProcessResult::Unchanged
990            }
991            // Let the caller handle the recursion
992            ProjectAndUnifyResult::Recursive => {
993                let mut obligations = PredicateObligations::with_capacity(1);
994                obligations.push(project_obligation.with(tcx, project_obligation.predicate));
995
996                ProcessResult::Changed(mk_pending(obligation, obligations))
997            }
998            ProjectAndUnifyResult::MismatchedProjectionTypes(e) => {
999                ProcessResult::Error(FulfillmentErrorCode::Project(e))
1000            }
1001        }
1002    }
1003
1004    fn process_host_obligation(
1005        &mut self,
1006        obligation: &PredicateObligation<'tcx>,
1007        host_obligation: HostEffectObligation<'tcx>,
1008        stalled_on: &mut Vec<TyOrConstInferVar>,
1009    ) -> ProcessResult<PendingPredicateObligation<'tcx>, FulfillmentErrorCode<'tcx>> {
1010        match effects::evaluate_host_effect_obligation(&mut self.selcx, &host_obligation) {
1011            Ok(nested) => ProcessResult::Changed(mk_pending(obligation, nested)),
1012            Err(effects::EvaluationFailure::Ambiguous) => {
1013                stalled_on.clear();
1014                stalled_on.extend(args_infer_vars(
1015                    &self.selcx,
1016                    ty::Binder::dummy(host_obligation.predicate.trait_ref.args),
1017                ));
1018                ProcessResult::Unchanged
1019            }
1020            Err(effects::EvaluationFailure::NoSolution) => {
1021                ProcessResult::Error(FulfillmentErrorCode::Select(SelectionError::Unimplemented))
1022            }
1023        }
1024    }
1025}
1026
1027/// Returns the set of inference variables contained in `args`.
1028fn args_infer_vars<'tcx>(
1029    selcx: &SelectionContext<'_, 'tcx>,
1030    args: ty::Binder<'tcx, GenericArgsRef<'tcx>>,
1031) -> impl Iterator<Item = TyOrConstInferVar> {
1032    selcx
1033        .infcx
1034        .resolve_vars_if_possible(args)
1035        .skip_binder() // ok because this check doesn't care about regions
1036        .iter()
1037        .filter(|arg| arg.has_non_region_infer())
1038        .flat_map(|arg| {
1039            let mut walker = arg.walk();
1040            while let Some(c) = walker.next() {
1041                if !c.has_non_region_infer() {
1042                    walker.visited.remove(&c);
1043                    walker.skip_current_subtree();
1044                }
1045            }
1046            walker.visited.into_iter()
1047        })
1048        .filter_map(TyOrConstInferVar::maybe_from_generic_arg)
1049}
1050
1051#[derive(#[automatically_derived]
impl<'tcx> ::core::fmt::Debug for OldSolverError<'tcx> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_tuple_field1_finish(f, "OldSolverError",
            &&self.0)
    }
}Debug)]
1052pub struct OldSolverError<'tcx>(
1053    Error<PendingPredicateObligation<'tcx>, FulfillmentErrorCode<'tcx>>,
1054);
1055
1056impl<'tcx> FromSolverError<'tcx, OldSolverError<'tcx>> for FulfillmentError<'tcx> {
1057    fn from_solver_error(_infcx: &InferCtxt<'tcx>, error: OldSolverError<'tcx>) -> Self {
1058        let mut iter = error.0.backtrace.into_iter();
1059        let obligation = iter.next().unwrap().obligation;
1060        // The root obligation is the last item in the backtrace - if there's only
1061        // one item, then it's the same as the main obligation
1062        let root_obligation = iter.next_back().map_or_else(|| obligation.clone(), |e| e.obligation);
1063        FulfillmentError::new(obligation, error.0.error, root_obligation)
1064    }
1065}
1066
1067impl<'tcx> FromSolverError<'tcx, OldSolverError<'tcx>> for ScrubbedTraitError<'tcx> {
1068    fn from_solver_error(_infcx: &InferCtxt<'tcx>, error: OldSolverError<'tcx>) -> Self {
1069        match error.0.error {
1070            FulfillmentErrorCode::Select(_)
1071            | FulfillmentErrorCode::Project(_)
1072            | FulfillmentErrorCode::Subtype(_, _)
1073            | FulfillmentErrorCode::ConstEquate(_, _) => ScrubbedTraitError::TrueError,
1074            FulfillmentErrorCode::Ambiguity { overflow: _ } => ScrubbedTraitError::Ambiguity,
1075            FulfillmentErrorCode::Cycle(cycle) => ScrubbedTraitError::Cycle(cycle),
1076        }
1077    }
1078}