Skip to main content

rustc_trait_selection/traits/
mod.rs

1//! Trait Resolution. See the [rustc dev guide] for more information on how this works.
2//!
3//! [rustc dev guide]: https://rustc-dev-guide.rust-lang.org/traits/resolution.html
4
5pub mod auto_trait;
6pub(crate) mod coherence;
7pub mod const_evaluatable;
8mod dyn_compatibility;
9pub mod effects;
10mod engine;
11mod fulfill;
12pub mod implied_outlives_bounds;
13pub mod misc;
14pub mod normalize;
15pub mod outlives_bounds;
16pub mod outlives_for_liveness;
17pub mod project;
18pub mod query;
19pub mod select;
20pub mod specialize;
21mod structural_normalize;
22pub mod util;
23pub mod vtable;
24pub mod wf;
25
26use std::fmt::Debug;
27use std::ops::ControlFlow;
28
29use rustc_errors::ErrorGuaranteed;
30pub use rustc_infer::traits::*;
31use rustc_macros::TypeVisitable;
32use rustc_middle::query::Providers;
33use rustc_middle::ty::error::{ExpectedFound, TypeError};
34use rustc_middle::ty::{
35    self, BottomUpFolder, Clause, GenericArgs, GenericArgsRef, Ty, TyCtxt, TypeFoldable,
36    TypeFolder, TypeSuperFoldable, TypeSuperVisitable, TypeVisitable, TypeVisitableExt, TypingMode,
37    Unnormalized, Upcast,
38};
39use rustc_span::Span;
40use rustc_span::def_id::DefId;
41use tracing::{debug, instrument};
42
43pub use self::coherence::{
44    InCrate, IsFirstInputType, OrphanCheckErr, OrphanCheckMode, OverlapResult, UncoveredTyParams,
45    add_placeholder_note, orphan_check_trait_ref, overlapping_inherent_impls,
46    overlapping_trait_impls,
47};
48pub use self::dyn_compatibility::{
49    DynCompatibilityViolation, dyn_compatibility_violations_for_assoc_item,
50    hir_ty_lowering_dyn_compatibility_violations, is_vtable_safe_method,
51};
52pub use self::engine::{FulfillmentEngine, ObligationCtxt};
53pub use self::fulfill::{FulfillmentContext, OldSolverError, PendingPredicateObligation};
54pub use self::normalize::NormalizeExt;
55pub use self::project::{normalize_inherent_projection, normalize_projection_term};
56pub use self::select::{
57    EvaluationCache, EvaluationResult, IntercrateAmbiguityCause, OverflowError, SelectionCache,
58    SelectionContext,
59};
60pub use self::specialize::specialization_graph::{
61    FutureCompatOverlapError, FutureCompatOverlapErrorKind,
62};
63pub use self::specialize::{
64    OverlapError, specialization_graph, translate_args, translate_args_with_cause,
65};
66pub use self::structural_normalize::StructurallyNormalizeExt;
67pub use self::util::{
68    BoundVarReplacer, PlaceholderReplacer, elaborate, expand_trait_aliases, impl_item_is_final,
69    sizedness_fast_path, supertrait_def_ids, supertraits, transitive_bounds_that_define_assoc_item,
70    upcast_choices, with_replaced_escaping_bound_vars,
71};
72use crate::error_reporting::InferCtxtErrorExt;
73use crate::infer::outlives::env::OutlivesEnvironment;
74use crate::infer::{InferCtxt, TyCtxtInferExt};
75use crate::regions::InferCtxtRegionExt;
76use crate::traits::query::evaluate_obligation::InferCtxtExt as _;
77
78#[derive(#[automatically_derived]
impl<'tcx> ::core::fmt::Debug for FulfillmentError<'tcx> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field3_finish(f,
            "FulfillmentError", "obligation", &self.obligation, "code",
            &self.code, "root_obligation", &&self.root_obligation)
    }
}Debug, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeVisitable<::rustc_middle::ty::TyCtxt<'tcx>>
            for FulfillmentError<'tcx> {
            fn visit_with<__V: ::rustc_middle::ty::TypeVisitor<::rustc_middle::ty::TyCtxt<'tcx>>>(&self,
                __visitor: &mut __V) -> __V::Result {
                match *self {
                    FulfillmentError {
                        obligation: ref __binding_0,
                        code: ref __binding_1,
                        root_obligation: ref __binding_2 } => {
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_0,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_1,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_2,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                    }
                }
                <__V::Result as ::rustc_middle::ty::VisitorResult>::output()
            }
        }
    };TypeVisitable)]
79pub struct FulfillmentError<'tcx> {
80    pub obligation: PredicateObligation<'tcx>,
81    pub code: FulfillmentErrorCode<'tcx>,
82    /// Diagnostics only: the 'root' obligation which resulted in
83    /// the failure to process `obligation`. This is the obligation
84    /// that was initially passed to `register_predicate_obligation`
85    pub root_obligation: PredicateObligation<'tcx>,
86}
87
88impl<'tcx> FulfillmentError<'tcx> {
89    pub fn new(
90        obligation: PredicateObligation<'tcx>,
91        code: FulfillmentErrorCode<'tcx>,
92        root_obligation: PredicateObligation<'tcx>,
93    ) -> FulfillmentError<'tcx> {
94        FulfillmentError { obligation, code, root_obligation }
95    }
96
97    pub fn is_true_error(&self) -> bool {
98        match self.code {
99            FulfillmentErrorCode::Select(_)
100            | FulfillmentErrorCode::Project(_)
101            | FulfillmentErrorCode::Outlives
102            | FulfillmentErrorCode::Subtype(_, _)
103            | FulfillmentErrorCode::ConstEquate(_, _) => true,
104            FulfillmentErrorCode::Cycle(_) | FulfillmentErrorCode::Ambiguity { overflow: _ } => {
105                false
106            }
107        }
108    }
109}
110
111#[derive(#[automatically_derived]
impl<'tcx> ::core::clone::Clone for FulfillmentErrorCode<'tcx> {
    #[inline]
    fn clone(&self) -> FulfillmentErrorCode<'tcx> {
        match self {
            FulfillmentErrorCode::Cycle(__self_0) =>
                FulfillmentErrorCode::Cycle(::core::clone::Clone::clone(__self_0)),
            FulfillmentErrorCode::Select(__self_0) =>
                FulfillmentErrorCode::Select(::core::clone::Clone::clone(__self_0)),
            FulfillmentErrorCode::Project(__self_0) =>
                FulfillmentErrorCode::Project(::core::clone::Clone::clone(__self_0)),
            FulfillmentErrorCode::Outlives => FulfillmentErrorCode::Outlives,
            FulfillmentErrorCode::Subtype(__self_0, __self_1) =>
                FulfillmentErrorCode::Subtype(::core::clone::Clone::clone(__self_0),
                    ::core::clone::Clone::clone(__self_1)),
            FulfillmentErrorCode::ConstEquate(__self_0, __self_1) =>
                FulfillmentErrorCode::ConstEquate(::core::clone::Clone::clone(__self_0),
                    ::core::clone::Clone::clone(__self_1)),
            FulfillmentErrorCode::Ambiguity { overflow: __self_0 } =>
                FulfillmentErrorCode::Ambiguity {
                    overflow: ::core::clone::Clone::clone(__self_0),
                },
        }
    }
}Clone, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeVisitable<::rustc_middle::ty::TyCtxt<'tcx>>
            for FulfillmentErrorCode<'tcx> {
            fn visit_with<__V: ::rustc_middle::ty::TypeVisitor<::rustc_middle::ty::TyCtxt<'tcx>>>(&self,
                __visitor: &mut __V) -> __V::Result {
                match *self {
                    FulfillmentErrorCode::Cycle(ref __binding_0) => {
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_0,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                    }
                    FulfillmentErrorCode::Select(ref __binding_0) => {
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_0,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                    }
                    FulfillmentErrorCode::Project(ref __binding_0) => {
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_0,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                    }
                    FulfillmentErrorCode::Outlives => {}
                    FulfillmentErrorCode::Subtype(ref __binding_0,
                        ref __binding_1) => {
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_0,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_1,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                    }
                    FulfillmentErrorCode::ConstEquate(ref __binding_0,
                        ref __binding_1) => {
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_0,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_1,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                    }
                    FulfillmentErrorCode::Ambiguity { overflow: ref __binding_0
                        } => {
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_0,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                    }
                }
                <__V::Result as ::rustc_middle::ty::VisitorResult>::output()
            }
        }
    };TypeVisitable)]
112pub enum FulfillmentErrorCode<'tcx> {
113    /// Inherently impossible to fulfill; this trait is implemented if and only
114    /// if it is already implemented.
115    Cycle(PredicateObligations<'tcx>),
116    Select(SelectionError<'tcx>),
117    Project(MismatchedProjectionTypes<'tcx>),
118    /// An outlives constraint emitted for `-Zassumptions-on-binders` was unsatisfiable.
119    Outlives,
120    Subtype(ExpectedFound<Ty<'tcx>>, TypeError<'tcx>), // always comes from a SubtypePredicate
121    ConstEquate(ExpectedFound<ty::Const<'tcx>>, TypeError<'tcx>),
122    Ambiguity {
123        /// Overflow is only `Some(suggest_recursion_limit)` when using the next generation
124        /// trait solver `-Znext-solver`. With the old solver overflow is eagerly handled by
125        /// emitting a fatal error instead.
126        overflow: Option<bool>,
127    },
128}
129
130impl<'tcx> Debug for FulfillmentErrorCode<'tcx> {
131    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
132        match *self {
133            FulfillmentErrorCode::Select(ref e) => f.write_fmt(format_args!("{0:?}", e))write!(f, "{e:?}"),
134            FulfillmentErrorCode::Project(ref e) => f.write_fmt(format_args!("{0:?}", e))write!(f, "{e:?}"),
135            FulfillmentErrorCode::Outlives => f.write_fmt(format_args!("CodeOutlivesError"))write!(f, "CodeOutlivesError"),
136            FulfillmentErrorCode::Subtype(ref a, ref b) => {
137                f.write_fmt(format_args!("CodeSubtypeError({0:?}, {1:?})", a, b))write!(f, "CodeSubtypeError({a:?}, {b:?})")
138            }
139            FulfillmentErrorCode::ConstEquate(ref a, ref b) => {
140                f.write_fmt(format_args!("CodeConstEquateError({0:?}, {1:?})", a, b))write!(f, "CodeConstEquateError({a:?}, {b:?})")
141            }
142            FulfillmentErrorCode::Ambiguity { overflow: None } => f.write_fmt(format_args!("Ambiguity"))write!(f, "Ambiguity"),
143            FulfillmentErrorCode::Ambiguity { overflow: Some(suggest_increasing_limit) } => {
144                f.write_fmt(format_args!("Overflow({0})", suggest_increasing_limit))write!(f, "Overflow({suggest_increasing_limit})")
145            }
146            FulfillmentErrorCode::Cycle(ref cycle) => f.write_fmt(format_args!("Cycle({0:?})", cycle))write!(f, "Cycle({cycle:?})"),
147        }
148    }
149}
150
151/// Whether to skip the leak check, as part of a future compatibility warning step.
152///
153/// The "default" for skip-leak-check corresponds to the current
154/// behavior (do not skip the leak check) -- not the behavior we are
155/// transitioning into.
156#[derive(#[automatically_derived]
impl ::core::marker::Copy for SkipLeakCheck { }Copy, #[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for SkipLeakCheck { }
#[automatically_derived]
impl ::core::clone::Clone for SkipLeakCheck {
    #[inline]
    fn clone(&self) -> SkipLeakCheck { *self }
}Clone, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for SkipLeakCheck { }
#[automatically_derived]
impl ::core::cmp::PartialEq for SkipLeakCheck {
    #[inline]
    fn eq(&self, other: &SkipLeakCheck) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for SkipLeakCheck {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {}
}Eq, #[automatically_derived]
impl ::core::fmt::Debug for SkipLeakCheck {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                SkipLeakCheck::Yes => "Yes",
                SkipLeakCheck::No => "No",
            })
    }
}Debug, #[automatically_derived]
impl ::core::default::Default for SkipLeakCheck {
    #[inline]
    fn default() -> SkipLeakCheck { Self::No }
}Default)]
157pub enum SkipLeakCheck {
158    Yes,
159    #[default]
160    No,
161}
162
163impl SkipLeakCheck {
164    fn is_yes(self) -> bool {
165        self == SkipLeakCheck::Yes
166    }
167}
168
169/// The mode that trait queries run in.
170#[derive(#[automatically_derived]
impl ::core::marker::Copy for TraitQueryMode { }Copy, #[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for TraitQueryMode { }
#[automatically_derived]
impl ::core::clone::Clone for TraitQueryMode {
    #[inline]
    fn clone(&self) -> TraitQueryMode { *self }
}Clone, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for TraitQueryMode { }
#[automatically_derived]
impl ::core::cmp::PartialEq for TraitQueryMode {
    #[inline]
    fn eq(&self, other: &TraitQueryMode) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for TraitQueryMode {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {}
}Eq, #[automatically_derived]
impl ::core::fmt::Debug for TraitQueryMode {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                TraitQueryMode::Standard => "Standard",
                TraitQueryMode::Canonical => "Canonical",
            })
    }
}Debug)]
171pub enum TraitQueryMode {
172    /// Standard/un-canonicalized queries get accurate
173    /// spans etc. passed in and hence can do reasonable
174    /// error reporting on their own.
175    Standard,
176    /// Canonical queries get dummy spans and hence
177    /// must generally propagate errors to
178    /// pre-canonicalization callsites.
179    Canonical,
180}
181
182/// Creates predicate obligations from the generic bounds.
183{}
#[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("predicates_for_generics",
                                    "rustc_trait_selection::traits", ::tracing::Level::DEBUG,
                                    ::tracing_core::__macro_support::Option::Some("/rustc-dev/0fc141305da7a8a222f65aef1f1acc739c46282b/compiler/rustc_trait_selection/src/traits/mod.rs"),
                                    ::tracing_core::__macro_support::Option::Some(183u32),
                                    ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
                                    ::tracing_core::field::FieldSet::new(&[{
                                                        const NAME:
                                                            ::tracing::__macro_support::FieldName<{
                                                                ::tracing::__macro_support::FieldName::len("generic_bounds")
                                                            }> =
                                                            ::tracing::__macro_support::FieldName::new("generic_bounds");
                                                        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(&generic_bounds)
                                                            as &dyn ::tracing::field::Value))])
                            })
                } else {
                    let span =
                        ::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
                    {};
                    span
                }
            };
        __tracing_attr_guard = __tracing_attr_span.enter();
    }

    #[warn(clippy :: suspicious_else_formatting)]
    {

        #[allow(unknown_lints, unreachable_code, clippy ::
        diverging_sub_expression, clippy :: empty_loop, clippy ::
        let_unit_value, clippy :: let_with_type_underscore, clippy ::
        needless_return, clippy :: unreachable)]
        if false {
            let __tracing_attr_fake_return: _ = loop {};
            return __tracing_attr_fake_return;
        }
        {
            generic_bounds.into_iter().enumerate().map(move
                    |(idx, (clause, span))|
                    Obligation {
                        cause: cause(idx, span),
                        recursion_depth: 0,
                        param_env,
                        predicate: normalize_clause(clause).as_predicate(),
                    })
        }
    }
}#[instrument(level = "debug", skip(cause, param_env, normalize_clause))]
184pub fn predicates_for_generics<'tcx>(
185    cause: impl Fn(usize, Span) -> ObligationCause<'tcx>,
186    mut normalize_clause: impl FnMut(Unnormalized<'tcx, Clause<'tcx>>) -> Clause<'tcx>,
187    param_env: ty::ParamEnv<'tcx>,
188    generic_bounds: ty::InstantiatedClauses<'tcx>,
189) -> impl Iterator<Item = PredicateObligation<'tcx>> {
190    generic_bounds.into_iter().enumerate().map(move |(idx, (clause, span))| Obligation {
191        cause: cause(idx, span),
192        recursion_depth: 0,
193        param_env,
194        predicate: normalize_clause(clause).as_predicate(),
195    })
196}
197
198/// Determines whether the type `ty` is known to meet `bound` and
199/// returns true if so. Returns false if `ty` either does not meet
200/// `bound` or is not known to meet bound (note that this is
201/// conservative towards *no impl*, which is the opposite of the
202/// `evaluate` methods).
203pub fn type_known_to_meet_bound_modulo_regions<'tcx>(
204    infcx: &InferCtxt<'tcx>,
205    param_env: ty::ParamEnv<'tcx>,
206    ty: Ty<'tcx>,
207    def_id: DefId,
208) -> bool {
209    let trait_ref = ty::TraitRef::new(infcx.tcx, def_id, [ty]);
210    pred_known_to_hold_modulo_regions(infcx, param_env, trait_ref)
211}
212
213/// FIXME(@lcnr): this function doesn't seem right and shouldn't exist?
214///
215/// Ping me on zulip if you want to use this method and need help with finding
216/// an appropriate replacement.
217{}
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("pred_known_to_hold_modulo_regions",
                                "rustc_trait_selection::traits", ::tracing::Level::DEBUG,
                                ::tracing_core::__macro_support::Option::Some("/rustc-dev/0fc141305da7a8a222f65aef1f1acc739c46282b/compiler/rustc_trait_selection/src/traits/mod.rs"),
                                ::tracing_core::__macro_support::Option::Some(217u32),
                                ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
                                ::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();
}
#[allow(clippy :: redundant_closure_call)]
let x =
    (move ||
                {

                    #[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: bool = loop {};
                        return __tracing_attr_fake_return;
                    }
                    {
                        let obligation =
                            Obligation::new(infcx.tcx, ObligationCause::dummy(),
                                param_env, pred);
                        let result =
                            infcx.evaluate_obligation_no_overflow(&obligation);
                        {
                            use ::tracing::__macro_support::Callsite as _;
                            static __CALLSITE: ::tracing::callsite::DefaultCallsite =
                                {
                                    static META: ::tracing::Metadata<'static> =
                                        {
                                            ::tracing_core::metadata::Metadata::new("event /rustc-dev/0fc141305da7a8a222f65aef1f1acc739c46282b/compiler/rustc_trait_selection/src/traits/mod.rs:226",
                                                "rustc_trait_selection::traits", ::tracing::Level::DEBUG,
                                                ::tracing_core::__macro_support::Option::Some("/rustc-dev/0fc141305da7a8a222f65aef1f1acc739c46282b/compiler/rustc_trait_selection/src/traits/mod.rs"),
                                                ::tracing_core::__macro_support::Option::Some(226u32),
                                                ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
                                                ::tracing_core::field::FieldSet::new(&[{
                                                                    const NAME:
                                                                        ::tracing::__macro_support::FieldName<{
                                                                            ::tracing::__macro_support::FieldName::len("result")
                                                                        }> =
                                                                        ::tracing::__macro_support::FieldName::new("result");
                                                                    NAME.as_str()
                                                                }], ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                                ::tracing::metadata::Kind::EVENT)
                                        };
                                    ::tracing::callsite::DefaultCallsite::new(&META)
                                };
                            let enabled =
                                ::tracing::Level::DEBUG <=
                                            ::tracing::level_filters::STATIC_MAX_LEVEL &&
                                        ::tracing::Level::DEBUG <=
                                            ::tracing::level_filters::LevelFilter::current() &&
                                    {
                                        let interest = __CALLSITE.interest();
                                        !interest.is_never() &&
                                            ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                                                interest)
                                    };
                            if enabled {
                                (|value_set: ::tracing::field::ValueSet|
                                            {
                                                let meta = __CALLSITE.metadata();
                                                ::tracing::Event::dispatch(meta, &value_set);
                                                ;
                                            })({
                                        #[allow(unused_imports)]
                                        use ::tracing::field::{debug, display, Value};
                                        __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&result)
                                                                    as &dyn ::tracing::field::Value))])
                                    });
                            } else { ; }
                        };
                        if result.must_apply_modulo_regions() {
                            true
                        } else if result.may_apply() && !infcx.next_trait_solver() {
                            let goal =
                                infcx.deeply_resolve_ignoring_regions((obligation.predicate,
                                        obligation.param_env));
                            infcx.probe(|_|
                                    {
                                        let ocx = ObligationCtxt::new(infcx);
                                        ocx.register_obligation(obligation);
                                        let errors = ocx.evaluate_obligations_error_on_ambiguity();
                                        match errors {
                                            TraitErrors::NoErrors =>
                                                infcx.deeply_resolve_ignoring_regions(goal) == goal,
                                            TraitErrors::HasErrors(errors) => {
                                                {
                                                    use ::tracing::__macro_support::Callsite as _;
                                                    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
                                                        {
                                                            static META: ::tracing::Metadata<'static> =
                                                                {
                                                                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/0fc141305da7a8a222f65aef1f1acc739c46282b/compiler/rustc_trait_selection/src/traits/mod.rs:247",
                                                                        "rustc_trait_selection::traits", ::tracing::Level::DEBUG,
                                                                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/0fc141305da7a8a222f65aef1f1acc739c46282b/compiler/rustc_trait_selection/src/traits/mod.rs"),
                                                                        ::tracing_core::__macro_support::Option::Some(247u32),
                                                                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
                                                                        ::tracing_core::field::FieldSet::new(&[{
                                                                                            const NAME:
                                                                                                ::tracing::__macro_support::FieldName<{
                                                                                                    ::tracing::__macro_support::FieldName::len("errors")
                                                                                                }> =
                                                                                                ::tracing::__macro_support::FieldName::new("errors");
                                                                                            NAME.as_str()
                                                                                        }], ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                                                        ::tracing::metadata::Kind::EVENT)
                                                                };
                                                            ::tracing::callsite::DefaultCallsite::new(&META)
                                                        };
                                                    let enabled =
                                                        ::tracing::Level::DEBUG <=
                                                                    ::tracing::level_filters::STATIC_MAX_LEVEL &&
                                                                ::tracing::Level::DEBUG <=
                                                                    ::tracing::level_filters::LevelFilter::current() &&
                                                            {
                                                                let interest = __CALLSITE.interest();
                                                                !interest.is_never() &&
                                                                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                                                                        interest)
                                                            };
                                                    if enabled {
                                                        (|value_set: ::tracing::field::ValueSet|
                                                                    {
                                                                        let meta = __CALLSITE.metadata();
                                                                        ::tracing::Event::dispatch(meta, &value_set);
                                                                        ;
                                                                    })({
                                                                #[allow(unused_imports)]
                                                                use ::tracing::field::{debug, display, Value};
                                                                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&errors)
                                                                                            as &dyn ::tracing::field::Value))])
                                                            });
                                                    } else { ; }
                                                };
                                                false
                                            }
                                        }
                                    })
                        } else { false }
                    }
                })();
{
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/0fc141305da7a8a222f65aef1f1acc739c46282b/compiler/rustc_trait_selection/src/traits/mod.rs:217",
                        "rustc_trait_selection::traits", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/0fc141305da7a8a222f65aef1f1acc739c46282b/compiler/rustc_trait_selection/src/traits/mod.rs"),
                        ::tracing_core::__macro_support::Option::Some(217u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
                        ::tracing_core::field::FieldSet::new(&[{
                                            const NAME:
                                                ::tracing::__macro_support::FieldName<{
                                                    ::tracing::__macro_support::FieldName::len("return")
                                                }> =
                                                ::tracing::__macro_support::FieldName::new("return");
                                            NAME.as_str()
                                        }], ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&x)
                                            as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};
x;#[instrument(level = "debug", skip(infcx, param_env, pred), ret)]
218fn pred_known_to_hold_modulo_regions<'tcx>(
219    infcx: &InferCtxt<'tcx>,
220    param_env: ty::ParamEnv<'tcx>,
221    pred: impl Upcast<TyCtxt<'tcx>, ty::Predicate<'tcx>>,
222) -> bool {
223    let obligation = Obligation::new(infcx.tcx, ObligationCause::dummy(), param_env, pred);
224
225    let result = infcx.evaluate_obligation_no_overflow(&obligation);
226    debug!(?result);
227
228    if result.must_apply_modulo_regions() {
229        true
230    } else if result.may_apply() && !infcx.next_trait_solver() {
231        // Sometimes obligations are ambiguous because the recursive evaluator
232        // is not smart enough, so we fall back to fulfillment when we're not certain
233        // that an obligation holds or not. Even still, we must make sure that
234        // the we do no inference in the process of checking this obligation.
235        let goal =
236            infcx.deeply_resolve_ignoring_regions((obligation.predicate, obligation.param_env));
237        infcx.probe(|_| {
238            let ocx = ObligationCtxt::new(infcx);
239            ocx.register_obligation(obligation);
240
241            let errors = ocx.evaluate_obligations_error_on_ambiguity();
242            match errors {
243                // Only known to hold if we did no inference.
244                TraitErrors::NoErrors => infcx.deeply_resolve_ignoring_regions(goal) == goal,
245
246                TraitErrors::HasErrors(errors) => {
247                    debug!(?errors);
248                    false
249                }
250            }
251        })
252    } else {
253        false
254    }
255}
256
257fn set_projection_term_to_non_rigid<'tcx>(
258    tcx: TyCtxt<'tcx>,
259    predicates: impl IntoIterator<Item = ty::Clause<'tcx>>,
260) -> impl Iterator<Item = ty::Clause<'tcx>> {
261    predicates.into_iter().map(move |clause| {
262        if let ty::ClauseKind::Projection(projection_pred) = clause.kind().skip_binder() {
263            clause
264                .kind()
265                .rebind(ty::ProjectionClause {
266                    projection_term: projection_pred.projection_term,
267                    term: ty::set_aliases_to_non_rigid(tcx, projection_pred.term).skip_norm_wip(),
268                })
269                .upcast(tcx)
270        } else {
271            clause
272        }
273    })
274}
275
276enum ReplaceRegions {
277    Yes,
278    No,
279}
280
281fn replace_infer_and_non_rigid_alias_with_error<'tcx, T>(
282    infcx: &InferCtxt<'tcx>,
283    value: T,
284    guar: ErrorGuaranteed,
285    replace_regions: ReplaceRegions,
286) -> T
287where
288    T: TypeFoldable<TyCtxt<'tcx>>,
289{
290    let tcx = infcx.tcx;
291    value.fold_with(&mut BottomUpFolder {
292        tcx,
293        ty_op: |ty| {
294            let ty = infcx.shallow_resolve(ty);
295            match ty.kind() {
296                ty::Infer(ty::TyVar(_) | ty::IntVar(_) | ty::FloatVar(_)) => {
297                    Ty::new_error(tcx, guar)
298                }
299                ty::Alias(ty::IsRigid::No, _) if tcx.next_trait_solver_globally() => {
300                    Ty::new_error(tcx, guar)
301                }
302                _ => ty,
303            }
304        },
305        lt_op: |lt| match replace_regions {
306            // We can't resolve regions using lexical resolution here since
307            // that's private. It probably doesn't matter since we already
308            // got more severe error.
309            ReplaceRegions::Yes => match lt.kind() {
310                ty::ReVar(_) => ty::Region::new_error(tcx, guar),
311                _ => lt,
312            },
313            ReplaceRegions::No => lt,
314        },
315        ct_op: |ct| {
316            let ct = infcx.shallow_resolve_const(ct);
317            match ct.kind() {
318                ty::ConstKind::Infer(ty::InferConst::Var(_)) => ty::Const::new_error(tcx, guar),
319                ty::ConstKind::Alias(ty::IsRigid::No, _) if tcx.next_trait_solver_globally() => {
320                    ty::Const::new_error(tcx, guar)
321                }
322                _ => ct,
323            }
324        },
325    })
326}
327
328{}
#[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("do_normalize_clauses",
                                    "rustc_trait_selection::traits", ::tracing::Level::DEBUG,
                                    ::tracing_core::__macro_support::Option::Some("/rustc-dev/0fc141305da7a8a222f65aef1f1acc739c46282b/compiler/rustc_trait_selection/src/traits/mod.rs"),
                                    ::tracing_core::__macro_support::Option::Some(328u32),
                                    ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
                                    ::tracing_core::field::FieldSet::new(&[{
                                                        const NAME:
                                                            ::tracing::__macro_support::FieldName<{
                                                                ::tracing::__macro_support::FieldName::len("cause")
                                                            }> =
                                                            ::tracing::__macro_support::FieldName::new("cause");
                                                        NAME.as_str()
                                                    },
                                                    {
                                                        const NAME:
                                                            ::tracing::__macro_support::FieldName<{
                                                                ::tracing::__macro_support::FieldName::len("clauses")
                                                            }> =
                                                            ::tracing::__macro_support::FieldName::new("clauses");
                                                        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(&cause)
                                                            as &dyn ::tracing::field::Value)),
                                                (::tracing::__macro_support::Option::Some(&::tracing::field::debug(&clauses)
                                                            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: Vec<ty::Clause<'tcx>> = loop {};
            return __tracing_attr_fake_return;
        }
        {
            let infcx =
                tcx.infer_ctxt().ignoring_regions().build(TypingMode::non_body_analysis());
            let ocx = ObligationCtxt::new_with_diagnostics(&infcx);
            let elaborated_env =
                if tcx.next_trait_solver_globally() &&
                        !tcx.disable_param_env_normalization_hack() {
                    let elaborated_env =
                        ty::set_type_aliases_to_rigid(tcx, elaborated_env);
                    let elaborated_env =
                        set_projection_term_to_non_rigid(tcx,
                            elaborated_env.caller_bounds());
                    ty::ParamEnv::new(tcx, elaborated_env)
                } else { elaborated_env };
            let clauses =
                ocx.normalize(&cause, elaborated_env,
                    Unnormalized::new_wip(clauses));
            let clauses =
                if tcx.next_trait_solver_globally() {
                    if !tcx.disable_param_env_normalization_hack() {
                        let clauses: Vec<_> =
                            set_projection_term_to_non_rigid(tcx, clauses).collect();
                        ty::set_opaques_to_non_rigid(tcx, clauses).skip_norm_wip()
                    } else {
                        ty::set_aliases_to_non_rigid(tcx, clauses).skip_norm_wip()
                    }
                } else { clauses };
            let errors = ocx.evaluate_obligations_error_on_ambiguity();
            let clauses =
                if let TraitErrors::HasErrors(errors) = errors {
                    {
                        use ::tracing::__macro_support::Callsite as _;
                        static __CALLSITE: ::tracing::callsite::DefaultCallsite =
                            {
                                static META: ::tracing::Metadata<'static> =
                                    {
                                        ::tracing_core::metadata::Metadata::new("event /rustc-dev/0fc141305da7a8a222f65aef1f1acc739c46282b/compiler/rustc_trait_selection/src/traits/mod.rs:383",
                                            "rustc_trait_selection::traits", ::tracing::Level::DEBUG,
                                            ::tracing_core::__macro_support::Option::Some("/rustc-dev/0fc141305da7a8a222f65aef1f1acc739c46282b/compiler/rustc_trait_selection/src/traits/mod.rs"),
                                            ::tracing_core::__macro_support::Option::Some(383u32),
                                            ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
                                            ::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!("do_normalize_clauses: failed to normalize clauses")
                                                                as &dyn ::tracing::field::Value))])
                                });
                        } else { ; }
                    };
                    let guar =
                        infcx.err_ctxt().report_fulfillment_errors(errors);
                    replace_infer_and_non_rigid_alias_with_error(&infcx,
                        clauses, guar, ReplaceRegions::No)
                } else { clauses };
            {
                use ::tracing::__macro_support::Callsite as _;
                static __CALLSITE: ::tracing::callsite::DefaultCallsite =
                    {
                        static META: ::tracing::Metadata<'static> =
                            {
                                ::tracing_core::metadata::Metadata::new("event /rustc-dev/0fc141305da7a8a222f65aef1f1acc739c46282b/compiler/rustc_trait_selection/src/traits/mod.rs:390",
                                    "rustc_trait_selection::traits", ::tracing::Level::DEBUG,
                                    ::tracing_core::__macro_support::Option::Some("/rustc-dev/0fc141305da7a8a222f65aef1f1acc739c46282b/compiler/rustc_trait_selection/src/traits/mod.rs"),
                                    ::tracing_core::__macro_support::Option::Some(390u32),
                                    ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
                                    ::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!("do_normalize_clauses: normalized clauses = {0:?}",
                                                                clauses) as &dyn ::tracing::field::Value))])
                        });
                } else { ; }
            };
            let normalized_env =
                ty::ParamEnv::new(tcx, clauses.iter().copied());
            let _errors =
                infcx.resolve_regions(cause.body_def_id, normalized_env, []);
            match infcx.deeply_resolve_via_region_graph(clauses.clone()) {
                Ok(clauses) => clauses,
                Err(fixup_err) => {
                    let guar =
                        tcx.dcx().span_delayed_bug(cause.span,
                            ::alloc::__export::must_use({
                                    ::alloc::fmt::format(format_args!("inference variables in normalized parameter environment: {0}",
                                            fixup_err))
                                }));
                    replace_infer_and_non_rigid_alias_with_error(&infcx,
                        clauses, guar, ReplaceRegions::Yes)
                }
            }
        }
    }
}#[instrument(level = "debug", skip(tcx, elaborated_env))]
329fn do_normalize_clauses<'tcx>(
330    tcx: TyCtxt<'tcx>,
331    cause: ObligationCause<'tcx>,
332    elaborated_env: ty::ParamEnv<'tcx>,
333    clauses: Vec<ty::Clause<'tcx>>,
334) -> Vec<ty::Clause<'tcx>> {
335    // FIXME. We should really... do something with these region
336    // obligations. But this call just continues the older
337    // behavior (i.e., doesn't cause any new bugs), and it would
338    // take some further refactoring to actually solve them. In
339    // particular, we would have to handle implied bounds
340    // properly, and that code is currently largely confined to
341    // regionck (though I made some efforts to extract it
342    // out). -nmatsakis
343    //
344    // @arielby: In any case, these obligations are checked
345    // by wfcheck anyway, so I'm not sure we have to check
346    // them here too, and we will remove this function when
347    // we move over to lazy normalization *anyway*.
348    let infcx = tcx.infer_ctxt().ignoring_regions().build(TypingMode::non_body_analysis());
349    let ocx = ObligationCtxt::new_with_diagnostics(&infcx);
350    // FIXME: `elaborated_env` is not really rigid. We do this to be
351    // consistent with the old solver.
352    let elaborated_env = if tcx.next_trait_solver_globally()
353        && !tcx.disable_param_env_normalization_hack()
354    {
355        let elaborated_env = ty::set_type_aliases_to_rigid(tcx, elaborated_env);
356        let elaborated_env = set_projection_term_to_non_rigid(tcx, elaborated_env.caller_bounds());
357        ty::ParamEnv::new(tcx, elaborated_env)
358    } else {
359        elaborated_env
360    };
361    let clauses = ocx.normalize(&cause, elaborated_env, Unnormalized::new_wip(clauses));
362    let clauses = if tcx.next_trait_solver_globally() {
363        if !tcx.disable_param_env_normalization_hack() {
364            let clauses: Vec<_> = set_projection_term_to_non_rigid(tcx, clauses).collect();
365            // FIXME(type_alias_impl_trait): opaque types in param env might be
366            // in defining scope but we're using non body analysis here.
367            // So the rigidness marker is wrong.
368            ty::set_opaques_to_non_rigid(tcx, clauses).skip_norm_wip()
369        } else {
370            // Param env is used in different typing modes but itself
371            // is normalized in `non_body_analysis`.
372            // That not only makes the rigidness of opaques types wrong,
373            // other aliases can be indirectly affected as well.
374            // So we conservatively set everything to be non-rigid.
375            ty::set_aliases_to_non_rigid(tcx, clauses).skip_norm_wip()
376        }
377    } else {
378        clauses
379    };
380
381    let errors = ocx.evaluate_obligations_error_on_ambiguity();
382    let clauses = if let TraitErrors::HasErrors(errors) = errors {
383        debug!("do_normalize_clauses: failed to normalize clauses");
384        let guar = infcx.err_ctxt().report_fulfillment_errors(errors);
385        replace_infer_and_non_rigid_alias_with_error(&infcx, clauses, guar, ReplaceRegions::No)
386    } else {
387        clauses
388    };
389
390    debug!("do_normalize_clauses: normalized clauses = {:?}", clauses);
391
392    // FIXME: It's very weird that we ignore region obligations but apparently
393    // still need to use `resolve_regions` as we need the resolved regions in
394    // the normalized clauses.
395    //
396    // FIXME(-Zhigher-ranked-assumptions): We're ignoring region errors for now.
397    // There're placeholder constraints `leaking` out. This is a hack to work around
398    // the fact that we don't support placeholder assumptions right now and is necessary
399    // for `compare_method_clause_entailment`. We should remove this once we have proper
400    // support for implied bounds on binders.
401    //
402    // This ignoring is required by trait-system-refactor-initiative#166. The new solver encounters
403    // this more frequently as we entirely ignore outlives clauses with the old solver.
404    //
405    // FIXME: We should avoid interning clauses both here and at the
406    // caller sites. We should also avoid cloning if possible.
407    let normalized_env = ty::ParamEnv::new(tcx, clauses.iter().copied());
408    let _errors = infcx.resolve_regions(cause.body_def_id, normalized_env, []);
409    match infcx.deeply_resolve_via_region_graph(clauses.clone()) {
410        Ok(clauses) => clauses,
411        Err(fixup_err) => {
412            // The first folder only replaces infers from normalization failure. We might not have
413            // normalization failure and have unconstrained ty/const vars from ill-formed impls.
414            // See `tests/ui/traits/normalize/self-referential-param-env-normalization.rs`.
415            //
416            // We delay a bug here instead of immediately ICEing and let type checking report the
417            // actual user-facing errors.
418            let guar = tcx.dcx().span_delayed_bug(
419                cause.span,
420                format!("inference variables in normalized parameter environment: {fixup_err}"),
421            );
422
423            // This is slightly wrong as we replace opaques with errors.
424            //
425            // We still need to replace regions because `fully_resolve` eagerly returns `Err` if
426            // it encounters unconstrained ty/const var. Thus region vars might not get replaced.
427            replace_infer_and_non_rigid_alias_with_error(&infcx, clauses, guar, ReplaceRegions::Yes)
428        }
429    }
430}
431
432// FIXME: this is gonna need to be removed ...
433/// Normalizes the parameter environment, reporting errors if they occur.
434{}
#[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("normalize_param_env_or_error",
                                    "rustc_trait_selection::traits", ::tracing::Level::DEBUG,
                                    ::tracing_core::__macro_support::Option::Some("/rustc-dev/0fc141305da7a8a222f65aef1f1acc739c46282b/compiler/rustc_trait_selection/src/traits/mod.rs"),
                                    ::tracing_core::__macro_support::Option::Some(434u32),
                                    ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
                                    ::tracing_core::field::FieldSet::new(&[{
                                                        const NAME:
                                                            ::tracing::__macro_support::FieldName<{
                                                                ::tracing::__macro_support::FieldName::len("unnormalized_env")
                                                            }> =
                                                            ::tracing::__macro_support::FieldName::new("unnormalized_env");
                                                        NAME.as_str()
                                                    },
                                                    {
                                                        const NAME:
                                                            ::tracing::__macro_support::FieldName<{
                                                                ::tracing::__macro_support::FieldName::len("cause")
                                                            }> =
                                                            ::tracing::__macro_support::FieldName::new("cause");
                                                        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(&unnormalized_env)
                                                            as &dyn ::tracing::field::Value)),
                                                (::tracing::__macro_support::Option::Some(&::tracing::field::debug(&cause)
                                                            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: ty::ParamEnv<'tcx> = loop {};
            return __tracing_attr_fake_return;
        }
        {
            let mut clauses: Vec<_> =
                util::elaborate(tcx,
                        unnormalized_env.caller_bounds().into_iter().map(|clause|
                                {
                                    if tcx.features().generic_const_exprs() ||
                                            tcx.next_trait_solver_globally() {
                                        return clause;
                                    }
                                    struct ConstNormalizer<'tcx>(TyCtxt<'tcx>);
                                    impl<'tcx> TypeFolder<TyCtxt<'tcx>> for
                                        ConstNormalizer<'tcx> {
                                        fn cx(&self) -> TyCtxt<'tcx> { self.0 }
                                        fn fold_const(&mut self, c: ty::Const<'tcx>)
                                            -> ty::Const<'tcx> {
                                            if c.has_escaping_bound_vars() {
                                                return ty::Const::new_misc_error(self.0);
                                            }
                                            if let ty::ConstKind::Alias(_, alias_const) = c.kind() &&
                                                    #[allow(non_exhaustive_omitted_patterns)] match alias_const.kind
                                                        {
                                                        ty::AliasConstKind::Anon { .. } => true,
                                                        _ => false,
                                                    } {
                                                let infcx =
                                                    self.0.infer_ctxt().build(TypingMode::non_body_analysis());
                                                let c = evaluate_const(&infcx, c, ty::ParamEnv::empty());
                                                if !(!c.has_infer() && !c.has_placeholders()) {
                                                    ::core::panicking::panic("assertion failed: !c.has_infer() && !c.has_placeholders()")
                                                };
                                                return c;
                                            }
                                            c
                                        }
                                    }
                                    clause.fold_with(&mut ConstNormalizer(tcx))
                                })).collect();
            {
                use ::tracing::__macro_support::Callsite as _;
                static __CALLSITE: ::tracing::callsite::DefaultCallsite =
                    {
                        static META: ::tracing::Metadata<'static> =
                            {
                                ::tracing_core::metadata::Metadata::new("event /rustc-dev/0fc141305da7a8a222f65aef1f1acc739c46282b/compiler/rustc_trait_selection/src/traits/mod.rs:527",
                                    "rustc_trait_selection::traits", ::tracing::Level::DEBUG,
                                    ::tracing_core::__macro_support::Option::Some("/rustc-dev/0fc141305da7a8a222f65aef1f1acc739c46282b/compiler/rustc_trait_selection/src/traits/mod.rs"),
                                    ::tracing_core::__macro_support::Option::Some(527u32),
                                    ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
                                    ::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!("normalize_param_env_or_error: elaborated-clauses={0:?}",
                                                                clauses) as &dyn ::tracing::field::Value))])
                        });
                } else { ; }
            };
            let elaborated_env =
                ty::ParamEnv::new(tcx, clauses.iter().copied());
            if !elaborated_env.has_aliases() { return elaborated_env; }
            let outlives_clauses: Vec<_> =
                clauses.extract_if(..,
                        |clause|
                            {

                                #[allow(non_exhaustive_omitted_patterns)]
                                match clause.kind().skip_binder() {
                                    ty::ClauseKind::TypeOutlives(..) => true,
                                    _ => false,
                                }
                            }).collect();
            {
                use ::tracing::__macro_support::Callsite as _;
                static __CALLSITE: ::tracing::callsite::DefaultCallsite =
                    {
                        static META: ::tracing::Metadata<'static> =
                            {
                                ::tracing_core::metadata::Metadata::new("event /rustc-dev/0fc141305da7a8a222f65aef1f1acc739c46282b/compiler/rustc_trait_selection/src/traits/mod.rs:558",
                                    "rustc_trait_selection::traits", ::tracing::Level::DEBUG,
                                    ::tracing_core::__macro_support::Option::Some("/rustc-dev/0fc141305da7a8a222f65aef1f1acc739c46282b/compiler/rustc_trait_selection/src/traits/mod.rs"),
                                    ::tracing_core::__macro_support::Option::Some(558u32),
                                    ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
                                    ::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!("normalize_param_env_or_error: clauses=(non-outlives={0:?}, outlives={1:?})",
                                                                clauses, outlives_clauses) as
                                                        &dyn ::tracing::field::Value))])
                        });
                } else { ; }
            };
            let non_outlives_clauses =
                do_normalize_clauses(tcx, cause.clone(), elaborated_env,
                    clauses);
            {
                use ::tracing::__macro_support::Callsite as _;
                static __CALLSITE: ::tracing::callsite::DefaultCallsite =
                    {
                        static META: ::tracing::Metadata<'static> =
                            {
                                ::tracing_core::metadata::Metadata::new("event /rustc-dev/0fc141305da7a8a222f65aef1f1acc739c46282b/compiler/rustc_trait_selection/src/traits/mod.rs:564",
                                    "rustc_trait_selection::traits", ::tracing::Level::DEBUG,
                                    ::tracing_core::__macro_support::Option::Some("/rustc-dev/0fc141305da7a8a222f65aef1f1acc739c46282b/compiler/rustc_trait_selection/src/traits/mod.rs"),
                                    ::tracing_core::__macro_support::Option::Some(564u32),
                                    ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
                                    ::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!("normalize_param_env_or_error: non-outlives clauses={0:?}",
                                                                non_outlives_clauses) as &dyn ::tracing::field::Value))])
                        });
                } else { ; }
            };
            let outlives_env =
                non_outlives_clauses.iter().chain(&outlives_clauses).cloned();
            let outlives_env = ty::ParamEnv::new(tcx, outlives_env);
            let outlives_clauses =
                do_normalize_clauses(tcx, cause, outlives_env,
                    outlives_clauses);
            {
                use ::tracing::__macro_support::Callsite as _;
                static __CALLSITE: ::tracing::callsite::DefaultCallsite =
                    {
                        static META: ::tracing::Metadata<'static> =
                            {
                                ::tracing_core::metadata::Metadata::new("event /rustc-dev/0fc141305da7a8a222f65aef1f1acc739c46282b/compiler/rustc_trait_selection/src/traits/mod.rs:572",
                                    "rustc_trait_selection::traits", ::tracing::Level::DEBUG,
                                    ::tracing_core::__macro_support::Option::Some("/rustc-dev/0fc141305da7a8a222f65aef1f1acc739c46282b/compiler/rustc_trait_selection/src/traits/mod.rs"),
                                    ::tracing_core::__macro_support::Option::Some(572u32),
                                    ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
                                    ::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!("normalize_param_env_or_error: outlives clauses={0:?}",
                                                                outlives_clauses) as &dyn ::tracing::field::Value))])
                        });
                } else { ; }
            };
            let mut clauses = non_outlives_clauses;
            clauses.extend(outlives_clauses);
            {
                use ::tracing::__macro_support::Callsite as _;
                static __CALLSITE: ::tracing::callsite::DefaultCallsite =
                    {
                        static META: ::tracing::Metadata<'static> =
                            {
                                ::tracing_core::metadata::Metadata::new("event /rustc-dev/0fc141305da7a8a222f65aef1f1acc739c46282b/compiler/rustc_trait_selection/src/traits/mod.rs:576",
                                    "rustc_trait_selection::traits", ::tracing::Level::DEBUG,
                                    ::tracing_core::__macro_support::Option::Some("/rustc-dev/0fc141305da7a8a222f65aef1f1acc739c46282b/compiler/rustc_trait_selection/src/traits/mod.rs"),
                                    ::tracing_core::__macro_support::Option::Some(576u32),
                                    ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
                                    ::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!("normalize_param_env_or_error: final clauses={0:?}",
                                                                clauses) as &dyn ::tracing::field::Value))])
                        });
                } else { ; }
            };
            ty::ParamEnv::new(tcx, clauses)
        }
    }
}#[instrument(level = "debug", skip(tcx))]
435pub fn normalize_param_env_or_error<'tcx>(
436    tcx: TyCtxt<'tcx>,
437    unnormalized_env: ty::ParamEnv<'tcx>,
438    cause: ObligationCause<'tcx>,
439) -> ty::ParamEnv<'tcx> {
440    // I'm not wild about reporting errors here; I'd prefer to
441    // have the errors get reported at a defined place (e.g.,
442    // during typeck). Instead I have all parameter
443    // environments, in effect, going through this function
444    // and hence potentially reporting errors. This ensures of
445    // course that we never forget to normalize (the
446    // alternative seemed like it would involve a lot of
447    // manual invocations of this fn -- and then we'd have to
448    // deal with the errors at each of those sites).
449    //
450    // In any case, in practice, typeck constructs all the
451    // parameter environments once for every fn as it goes,
452    // and errors will get reported then; so outside of type inference we
453    // can be sure that no errors should occur.
454    let mut clauses: Vec<_> = util::elaborate(
455        tcx,
456        unnormalized_env.caller_bounds().into_iter().map(|clause| {
457            if tcx.features().generic_const_exprs() || tcx.next_trait_solver_globally() {
458                return clause;
459            }
460
461            struct ConstNormalizer<'tcx>(TyCtxt<'tcx>);
462
463            impl<'tcx> TypeFolder<TyCtxt<'tcx>> for ConstNormalizer<'tcx> {
464                fn cx(&self) -> TyCtxt<'tcx> {
465                    self.0
466                }
467
468                fn fold_const(&mut self, c: ty::Const<'tcx>) -> ty::Const<'tcx> {
469                    // FIXME(return_type_notation): track binders in this normalizer, as
470                    // `ty::Const::normalize` can only work with properly preserved binders.
471
472                    if c.has_escaping_bound_vars() {
473                        return ty::Const::new_misc_error(self.0);
474                    }
475
476                    // While it is pretty sus to be evaluating things with an empty param env, it
477                    // should actually be okay since without `feature(generic_const_exprs)` the only
478                    // const arguments that have a non-empty param env are array repeat counts. These
479                    // do not appear in the type system though.
480                    if let ty::ConstKind::Alias(_, alias_const) = c.kind()
481                        && matches!(alias_const.kind, ty::AliasConstKind::Anon { .. })
482                    {
483                        let infcx = self.0.infer_ctxt().build(TypingMode::non_body_analysis());
484                        let c = evaluate_const(&infcx, c, ty::ParamEnv::empty());
485                        // We should never wind up with any `infcx` local state when normalizing anon consts
486                        // under min const generics.
487                        assert!(!c.has_infer() && !c.has_placeholders());
488                        return c;
489                    }
490
491                    c
492                }
493            }
494
495            // This whole normalization step is a hack to work around the fact that
496            // `normalize_param_env_or_error` is fundamentally broken from using an
497            // unnormalized param env with a trait solver that expects the param env
498            // to be normalized.
499            //
500            // When normalizing the param env we can end up evaluating obligations
501            // that have been normalized but can only be proven via a where clause
502            // which is still in its unnormalized form. example:
503            //
504            // Attempting to prove `T: Trait<<u8 as Identity>::Assoc>` in a param env
505            // with a `T: Trait<<u8 as Identity>::Assoc>` where clause will fail because
506            // we first normalize obligations before proving them so we end up proving
507            // `T: Trait<u8>`. Since lazy normalization is not implemented equating `u8`
508            // with `<u8 as Identity>::Assoc` fails outright so we incorrectly believe that
509            // we cannot prove `T: Trait<u8>`.
510            //
511            // The same thing is true for const generics- attempting to prove
512            // `T: Trait<ConstKind::Alias(...)>` with the same thing as a where clauses
513            // will fail. After normalization we may be attempting to prove `T: Trait<4>` with
514            // the unnormalized where clause `T: Trait<ConstKind::Alias(...)>`. In order
515            // for the obligation to hold `4` must be equal to `ConstKind::Alias(...)`
516            // but as we do not have lazy norm implemented, equating the two consts fails outright.
517            //
518            // Ideally we would not normalize consts here at all but it is required for backwards
519            // compatibility. Eventually when lazy norm is implemented this can just be removed.
520            // We do not normalize types here as there is no backwards compatibility requirement
521            // for us to do so.
522            clause.fold_with(&mut ConstNormalizer(tcx))
523        }),
524    )
525    .collect();
526
527    debug!("normalize_param_env_or_error: elaborated-clauses={:?}", clauses);
528
529    let elaborated_env = ty::ParamEnv::new(tcx, clauses.iter().copied());
530    if !elaborated_env.has_aliases() {
531        return elaborated_env;
532    }
533
534    // HACK: we are trying to normalize the param-env inside *itself*. The problem is that
535    // normalization expects its param-env to be already normalized, which means we have
536    // a circularity.
537    //
538    // The way we handle this is by normalizing the param-env inside an unnormalized version
539    // of the param-env, which means that if the param-env contains unnormalized projections,
540    // we'll have some normalization failures. This is unfortunate.
541    //
542    // Lazy normalization would basically handle this by treating just the
543    // normalizing-a-trait-ref-requires-itself cycles as evaluation failures.
544    //
545    // Inferred outlives bounds can create a lot of `TypeOutlives` predicates for associated
546    // types, so to make the situation less bad, we normalize all the predicates *but*
547    // the `TypeOutlives` predicates first inside the unnormalized parameter environment, and
548    // then we normalize the `TypeOutlives` bounds inside the normalized parameter environment.
549    //
550    // This works fairly well because trait matching does not actually care about param-env
551    // TypeOutlives clauses - these are normally used by regionck.
552    let outlives_clauses: Vec<_> = clauses
553        .extract_if(.., |clause| {
554            matches!(clause.kind().skip_binder(), ty::ClauseKind::TypeOutlives(..))
555        })
556        .collect();
557
558    debug!(
559        "normalize_param_env_or_error: clauses=(non-outlives={:?}, outlives={:?})",
560        clauses, outlives_clauses
561    );
562    let non_outlives_clauses = do_normalize_clauses(tcx, cause.clone(), elaborated_env, clauses);
563
564    debug!("normalize_param_env_or_error: non-outlives clauses={:?}", non_outlives_clauses);
565
566    // Not sure whether it is better to include the unnormalized TypeOutlives clauses
567    // here. I believe they should not matter, because we are ignoring TypeOutlives param-env
568    // clauses here anyway. Keeping them here anyway because it seems safer.
569    let outlives_env = non_outlives_clauses.iter().chain(&outlives_clauses).cloned();
570    let outlives_env = ty::ParamEnv::new(tcx, outlives_env);
571    let outlives_clauses = do_normalize_clauses(tcx, cause, outlives_env, outlives_clauses);
572    debug!("normalize_param_env_or_error: outlives clauses={:?}", outlives_clauses);
573
574    let mut clauses = non_outlives_clauses;
575    clauses.extend(outlives_clauses);
576    debug!("normalize_param_env_or_error: final clauses={:?}", clauses);
577    ty::ParamEnv::new(tcx, clauses)
578}
579
580#[derive(#[automatically_derived]
impl<E: ::core::fmt::Debug> ::core::fmt::Debug for EvaluateConstErr<E> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            EvaluateConstErr::HasGenericsOrInfers =>
                ::core::fmt::Formatter::write_str(f, "HasGenericsOrInfers"),
            EvaluateConstErr::InvalidConstParamTy(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "InvalidConstParamTy", &__self_0),
            EvaluateConstErr::EvaluationFailure(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "EvaluationFailure", &__self_0),
            EvaluateConstErr::FailedNormalization(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "FailedNormalization", &__self_0),
        }
    }
}Debug)]
581pub enum EvaluateConstErr<E> {
582    /// The constant being evaluated was either a generic parameter or inference variable, *or*,
583    /// some alias const with either generic parameters or inference variables in its
584    /// generic arguments.
585    HasGenericsOrInfers,
586    /// The type this constant evaluated to is not valid for use in const generics. This should
587    /// always result in an error when checking the constant is correctly typed for the parameter
588    /// it is an argument to, so a bug is delayed when encountering this.
589    InvalidConstParamTy(ErrorGuaranteed),
590    /// CTFE failed to evaluate the constant in some unrecoverable way (e.g. encountered a `panic!`).
591    /// This is also used when the constant was already tainted by error.
592    EvaluationFailure(ErrorGuaranteed),
593    FailedNormalization(E),
594}
595
596// FIXME(BoxyUwU): Private this once we `generic_const_exprs` isn't doing its own normalization routine
597// FIXME(generic_const_exprs): Consider accepting a `ty::AliasConst` when we are not rolling our own
598// normalization scheme
599/// Evaluates a type system constant returning a `ConstKind::Error` in cases where CTFE failed and
600/// returning the passed in constant if it was not fully concrete (i.e. depended on generic parameters
601/// or inference variables)
602///
603/// You should not call this function unless you are implementing normalization itself. Prefer to use
604/// `normalize_erasing_regions` or the `normalize` functions on `ObligationCtxt`/`FnCtxt`/`InferCtxt`.
605pub fn evaluate_const<'tcx>(
606    infcx: &InferCtxt<'tcx>,
607    ct: ty::Const<'tcx>,
608    param_env: ty::ParamEnv<'tcx>,
609) -> ty::Const<'tcx> {
610    match try_evaluate_const(infcx, ct, param_env, |v| Ok::<_, !>(v.skip_norm_wip())) {
611        Ok(ct) => ct,
612        Err(EvaluateConstErr::EvaluationFailure(e) | EvaluateConstErr::InvalidConstParamTy(e)) => {
613            ty::Const::new_error(infcx.tcx, e)
614        }
615        Err(EvaluateConstErr::HasGenericsOrInfers) => ct,
616    }
617}
618
619// FIXME(BoxyUwU): Private this once we `generic_const_exprs` isn't doing its own normalization routine
620// FIXME(generic_const_exprs): Consider accepting a `ty::AliasConst` when we are not rolling our own
621// normalization scheme
622/// Evaluates a type system constant making sure to not allow constants that depend on generic parameters
623/// or inference variables to succeed in evaluating.
624///
625/// You should not call this function unless you are implementing normalization itself. Prefer to use
626/// `normalize_erasing_regions` or the `normalize` functions on `ObligationCtxt`/`FnCtxt`/`InferCtxt`.
627{}
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("try_evaluate_const",
                                "rustc_trait_selection::traits", ::tracing::Level::DEBUG,
                                ::tracing_core::__macro_support::Option::Some("/rustc-dev/0fc141305da7a8a222f65aef1f1acc739c46282b/compiler/rustc_trait_selection/src/traits/mod.rs"),
                                ::tracing_core::__macro_support::Option::Some(627u32),
                                ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
                                ::tracing_core::field::FieldSet::new(&[{
                                                    const NAME:
                                                        ::tracing::__macro_support::FieldName<{
                                                            ::tracing::__macro_support::FieldName::len("ct")
                                                        }> =
                                                        ::tracing::__macro_support::FieldName::new("ct");
                                                    NAME.as_str()
                                                },
                                                {
                                                    const NAME:
                                                        ::tracing::__macro_support::FieldName<{
                                                            ::tracing::__macro_support::FieldName::len("param_env")
                                                        }> =
                                                        ::tracing::__macro_support::FieldName::new("param_env");
                                                    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(&ct)
                                                        as &dyn ::tracing::field::Value)),
                                            (::tracing::__macro_support::Option::Some(&::tracing::field::debug(&param_env)
                                                        as &dyn ::tracing::field::Value))])
                        })
            } else {
                let span =
                    ::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
                {};
                span
            }
        };
    __tracing_attr_guard = __tracing_attr_span.enter();
}
#[allow(clippy :: redundant_closure_call)]
let x =
    (move ||
                {

                    #[allow(unknown_lints, unreachable_code, clippy ::
                    diverging_sub_expression, clippy :: empty_loop, clippy ::
                    let_unit_value, clippy :: let_with_type_underscore, clippy
                    :: needless_return, clippy :: unreachable)]
                    if false {
                        let __tracing_attr_fake_return:
                                Result<ty::Const<'tcx>, EvaluateConstErr<E>> = loop {};
                        return __tracing_attr_fake_return;
                    }
                    {
                        let tcx = infcx.tcx;
                        let ct = infcx.deeply_resolve_ignoring_regions(ct);
                        {
                            use ::tracing::__macro_support::Callsite as _;
                            static __CALLSITE: ::tracing::callsite::DefaultCallsite =
                                {
                                    static META: ::tracing::Metadata<'static> =
                                        {
                                            ::tracing_core::metadata::Metadata::new("event /rustc-dev/0fc141305da7a8a222f65aef1f1acc739c46282b/compiler/rustc_trait_selection/src/traits/mod.rs:636",
                                                "rustc_trait_selection::traits", ::tracing::Level::DEBUG,
                                                ::tracing_core::__macro_support::Option::Some("/rustc-dev/0fc141305da7a8a222f65aef1f1acc739c46282b/compiler/rustc_trait_selection/src/traits/mod.rs"),
                                                ::tracing_core::__macro_support::Option::Some(636u32),
                                                ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
                                                ::tracing_core::field::FieldSet::new(&[{
                                                                    const NAME:
                                                                        ::tracing::__macro_support::FieldName<{
                                                                            ::tracing::__macro_support::FieldName::len("ct")
                                                                        }> =
                                                                        ::tracing::__macro_support::FieldName::new("ct");
                                                                    NAME.as_str()
                                                                }], ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                                ::tracing::metadata::Kind::EVENT)
                                        };
                                    ::tracing::callsite::DefaultCallsite::new(&META)
                                };
                            let enabled =
                                ::tracing::Level::DEBUG <=
                                            ::tracing::level_filters::STATIC_MAX_LEVEL &&
                                        ::tracing::Level::DEBUG <=
                                            ::tracing::level_filters::LevelFilter::current() &&
                                    {
                                        let interest = __CALLSITE.interest();
                                        !interest.is_never() &&
                                            ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                                                interest)
                                    };
                            if enabled {
                                (|value_set: ::tracing::field::ValueSet|
                                            {
                                                let meta = __CALLSITE.metadata();
                                                ::tracing::Event::dispatch(meta, &value_set);
                                                ;
                                            })({
                                        #[allow(unused_imports)]
                                        use ::tracing::field::{debug, display, Value};
                                        __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&ct)
                                                                    as &dyn ::tracing::field::Value))])
                                    });
                            } else { ; }
                        };
                        match ct.kind() {
                            ty::ConstKind::Value(..) => Ok(ct),
                            ty::ConstKind::Error(e) =>
                                Err(EvaluateConstErr::EvaluationFailure(e)),
                            ty::ConstKind::Param(_) | ty::ConstKind::Infer(_) |
                                ty::ConstKind::Bound(_, _) | ty::ConstKind::Placeholder(_) |
                                ty::ConstKind::Expr(_) =>
                                Err(EvaluateConstErr::HasGenericsOrInfers),
                            ty::ConstKind::Alias(_, alias_const) => {
                                let opt_anon_const_kind =
                                    match alias_const.kind {
                                        ty::AliasConstKind::Anon { def_id } =>
                                            Some((def_id, tcx.anon_const_kind(def_id))),
                                        _ => None,
                                    };
                                let (args, typing_env) =
                                    match opt_anon_const_kind {
                                        Some((def_id, ty::AnonConstKind::GCE)) => {
                                            if alias_const.has_non_region_infer() ||
                                                    alias_const.has_non_region_param() {
                                                match tcx.thir_abstract_const(def_id) {
                                                    Ok(Some(ct)) => {
                                                        let ct =
                                                            tcx.expand_abstract_consts(ct.instantiate(tcx,
                                                                        alias_const.args).skip_norm_wip());
                                                        if let Err(e) = ct.error_reported() {
                                                            return Err(EvaluateConstErr::EvaluationFailure(e));
                                                        } else if ct.has_non_region_infer() ||
                                                                ct.has_non_region_param() {
                                                            return Err(EvaluateConstErr::HasGenericsOrInfers);
                                                        } else {
                                                            let args =
                                                                replace_param_and_infer_args_with_placeholder(tcx,
                                                                    alias_const.args);
                                                            let typing_env =
                                                                infcx.typing_env(tcx.erase_and_anonymize_regions(param_env)).with_post_analysis_normalized(tcx);
                                                            (args, typing_env)
                                                        }
                                                    }
                                                    Err(_) | Ok(None) => {
                                                        let args = GenericArgs::identity_for_item(tcx, def_id);
                                                        let typing_env = ty::TypingEnv::post_analysis(tcx, def_id);
                                                        (args, typing_env)
                                                    }
                                                }
                                            } else {
                                                let typing_env =
                                                    infcx.typing_env(tcx.erase_and_anonymize_regions(param_env)).with_post_analysis_normalized(tcx);
                                                (alias_const.args, typing_env)
                                            }
                                        }
                                        Some((def_id, ty::AnonConstKind::RepeatExprCount)) => {
                                            if alias_const.has_non_region_infer() {
                                                tcx.dcx().delayed_bug("AnonConst with infer args but no error reported");
                                            }
                                            let args = GenericArgs::identity_for_item(tcx, def_id);
                                            let typing_env = ty::TypingEnv::post_analysis(tcx, def_id);
                                            (args, typing_env)
                                        }
                                        Some((_,
                                            ty::AnonConstKind::MCG |
                                            ty::AnonConstKind::NonTypeSystemAnon |
                                            ty::AnonConstKind::NonTypeSystemInline)) | None => {
                                            if alias_const.args.has_non_region_param() ||
                                                        alias_const.args.has_non_region_infer() ||
                                                    alias_const.args.has_non_region_placeholders() {
                                                return Err(EvaluateConstErr::HasGenericsOrInfers);
                                            }
                                            let typing_env = ty::TypingEnv::fully_monomorphized();
                                            (alias_const.args, typing_env)
                                        }
                                    };
                                let alias_const =
                                    ty::AliasConst::new(tcx, alias_const.kind, args);
                                let erased_alias_const =
                                    tcx.erase_and_anonymize_regions(alias_const);
                                use rustc_middle::mir::interpret::ErrorHandled;
                                let span = alias_const.kind.def_span(tcx);
                                match tcx.const_eval_resolve_for_typeck(typing_env,
                                        erased_alias_const, span) {
                                    Ok(Ok(val)) => {
                                        let ty =
                                            normalize_ty(alias_const.type_of(tcx)).map_err(EvaluateConstErr::FailedNormalization)?;
                                        Ok(ty::Const::new_value(tcx, val, ty))
                                    }
                                    Ok(Err(_)) => {
                                        let e =
                                            tcx.dcx().delayed_bug("Type system constant with non valtree'able type evaluated but no error emitted");
                                        Err(EvaluateConstErr::InvalidConstParamTy(e))
                                    }
                                    Err(ErrorHandled::Reported(info, _)) => {
                                        Err(EvaluateConstErr::EvaluationFailure(info.into()))
                                    }
                                    Err(ErrorHandled::TooGeneric(_)) =>
                                        Err(EvaluateConstErr::HasGenericsOrInfers),
                                }
                            }
                        }
                    }
                })();
{
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/0fc141305da7a8a222f65aef1f1acc739c46282b/compiler/rustc_trait_selection/src/traits/mod.rs:627",
                        "rustc_trait_selection::traits", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/0fc141305da7a8a222f65aef1f1acc739c46282b/compiler/rustc_trait_selection/src/traits/mod.rs"),
                        ::tracing_core::__macro_support::Option::Some(627u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
                        ::tracing_core::field::FieldSet::new(&[{
                                            const NAME:
                                                ::tracing::__macro_support::FieldName<{
                                                    ::tracing::__macro_support::FieldName::len("return")
                                                }> =
                                                ::tracing::__macro_support::FieldName::new("return");
                                            NAME.as_str()
                                        }], ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&x)
                                            as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};
x;#[instrument(level = "debug", skip(infcx, normalize_ty), ret)]
628pub fn try_evaluate_const<'tcx, E: Debug>(
629    infcx: &InferCtxt<'tcx>,
630    ct: ty::Const<'tcx>,
631    param_env: ty::ParamEnv<'tcx>,
632    normalize_ty: impl FnOnce(Unnormalized<'tcx, Ty<'tcx>>) -> Result<Ty<'tcx>, E>,
633) -> Result<ty::Const<'tcx>, EvaluateConstErr<E>> {
634    let tcx = infcx.tcx;
635    let ct = infcx.deeply_resolve_ignoring_regions(ct);
636    debug!(?ct);
637
638    match ct.kind() {
639        ty::ConstKind::Value(..) => Ok(ct),
640        ty::ConstKind::Error(e) => Err(EvaluateConstErr::EvaluationFailure(e)),
641        ty::ConstKind::Param(_)
642        | ty::ConstKind::Infer(_)
643        | ty::ConstKind::Bound(_, _)
644        | ty::ConstKind::Placeholder(_)
645        | ty::ConstKind::Expr(_) => Err(EvaluateConstErr::HasGenericsOrInfers),
646        ty::ConstKind::Alias(_, alias_const) => {
647            let opt_anon_const_kind = match alias_const.kind {
648                ty::AliasConstKind::Anon { def_id } => Some((def_id, tcx.anon_const_kind(def_id))),
649                _ => None,
650            };
651
652            // Postpone evaluation of constants that depend on generic parameters or
653            // inference variables.
654            //
655            // We use `TypingMode::PostAnalysis` here which is not *technically* correct
656            // to be revealing opaque types here as borrowcheck has not run yet. However,
657            // CTFE itself uses `TypingMode::PostAnalysis` unconditionally even during
658            // typeck and not doing so has a lot of (undesirable) fallout (#101478, #119821).
659            // As a result we always use a revealed env when resolving the instance to evaluate.
660            //
661            // FIXME: `const_eval_resolve_for_typeck` should probably just modify the env itself
662            // instead of having this logic here
663            let (args, typing_env) = match opt_anon_const_kind {
664                // We handle `generic_const_exprs` separately as reasonable ways of handling constants in the type system
665                // completely fall apart under `generic_const_exprs` and makes this whole function Really hard to reason
666                // about if you have to consider gce whatsoever.
667                Some((def_id, ty::AnonConstKind::GCE)) => {
668                    if alias_const.has_non_region_infer() || alias_const.has_non_region_param() {
669                        // `feature(generic_const_exprs)` causes anon consts to inherit all parent generics. This can cause
670                        // inference variables and generic parameters to show up in `ty::Const` even though the anon const
671                        // does not actually make use of them. We handle this case specially and attempt to evaluate anyway.
672                        match tcx.thir_abstract_const(def_id) {
673                            Ok(Some(ct)) => {
674                                let ct = tcx.expand_abstract_consts(
675                                    ct.instantiate(tcx, alias_const.args).skip_norm_wip(),
676                                );
677                                if let Err(e) = ct.error_reported() {
678                                    return Err(EvaluateConstErr::EvaluationFailure(e));
679                                } else if ct.has_non_region_infer() || ct.has_non_region_param() {
680                                    // If the anon const *does* actually use generic parameters or inference variables from
681                                    // the generic arguments provided for it, then we should *not* attempt to evaluate it.
682                                    return Err(EvaluateConstErr::HasGenericsOrInfers);
683                                } else {
684                                    let args = replace_param_and_infer_args_with_placeholder(
685                                        tcx,
686                                        alias_const.args,
687                                    );
688                                    let typing_env = infcx
689                                        .typing_env(tcx.erase_and_anonymize_regions(param_env))
690                                        .with_post_analysis_normalized(tcx);
691                                    (args, typing_env)
692                                }
693                            }
694                            Err(_) | Ok(None) => {
695                                let args = GenericArgs::identity_for_item(tcx, def_id);
696                                let typing_env = ty::TypingEnv::post_analysis(tcx, def_id);
697                                (args, typing_env)
698                            }
699                        }
700                    } else {
701                        let typing_env = infcx
702                            .typing_env(tcx.erase_and_anonymize_regions(param_env))
703                            .with_post_analysis_normalized(tcx);
704                        (alias_const.args, typing_env)
705                    }
706                }
707                Some((def_id, ty::AnonConstKind::RepeatExprCount)) => {
708                    if alias_const.has_non_region_infer() {
709                        // Diagnostics will sometimes replace the identity args of anon consts in
710                        // array repeat expr counts with inference variables so we have to handle this
711                        // even though it is not something we should ever actually encounter.
712                        //
713                        // Array repeat expr counts are allowed to syntactically use generic parameters
714                        // but must not actually depend on them in order to evalaute successfully. This means
715                        // that it is actually fine to evalaute them in their own environment rather than with
716                        // the actually provided generic arguments.
717                        tcx.dcx().delayed_bug("AnonConst with infer args but no error reported");
718                    }
719
720                    // The generic args of repeat expr counts under `min_const_generics` are not supposed to
721                    // affect evaluation of the constant as this would make it a "truly" generic const arg.
722                    // To prevent this we discard all the generic arguments and evalaute with identity args
723                    // and in its own environment instead of the current environment we are normalizing in.
724                    let args = GenericArgs::identity_for_item(tcx, def_id);
725                    let typing_env = ty::TypingEnv::post_analysis(tcx, def_id);
726
727                    (args, typing_env)
728                }
729                Some((
730                    _,
731                    ty::AnonConstKind::MCG
732                    | ty::AnonConstKind::NonTypeSystemAnon
733                    | ty::AnonConstKind::NonTypeSystemInline,
734                ))
735                | None => {
736                    // We are only dealing with "truly" generic/uninferred constants here:
737                    // - GCEConsts have been handled separately
738                    // - Repeat expr count back compat consts have also been handled separately
739                    // So we are free to simply defer evaluation here.
740                    //
741                    // FIXME: This assumes that `args` are normalized which is not necessarily true
742                    //
743                    // Const patterns are converted to type system constants before being
744                    // evaluated. However, we don't care about them here as pattern evaluation
745                    // logic does not go through type system normalization. If it did this would
746                    // be a backwards compatibility problem as we do not enforce "syntactic" non-
747                    // usage of generic parameters like we do here.
748                    if alias_const.args.has_non_region_param()
749                        || alias_const.args.has_non_region_infer()
750                        || alias_const.args.has_non_region_placeholders()
751                    {
752                        return Err(EvaluateConstErr::HasGenericsOrInfers);
753                    }
754
755                    // Since there is no generic parameter, we can just drop the environment
756                    // to prevent query cycle.
757                    let typing_env = ty::TypingEnv::fully_monomorphized();
758
759                    (alias_const.args, typing_env)
760                }
761            };
762
763            let alias_const = ty::AliasConst::new(tcx, alias_const.kind, args);
764            let erased_alias_const = tcx.erase_and_anonymize_regions(alias_const);
765
766            use rustc_middle::mir::interpret::ErrorHandled;
767            // FIXME: `def_span` will point at the definition of this const; ideally, we'd point at
768            // where it gets used as a const generic.
769            let span = alias_const.kind.def_span(tcx);
770            match tcx.const_eval_resolve_for_typeck(typing_env, erased_alias_const, span) {
771                Ok(Ok(val)) => {
772                    let ty = normalize_ty(alias_const.type_of(tcx))
773                        .map_err(EvaluateConstErr::FailedNormalization)?;
774                    Ok(ty::Const::new_value(tcx, val, ty))
775                }
776                Ok(Err(_)) => {
777                    let e = tcx.dcx().delayed_bug(
778                        "Type system constant with non valtree'able type evaluated but no error emitted",
779                    );
780                    Err(EvaluateConstErr::InvalidConstParamTy(e))
781                }
782                Err(ErrorHandled::Reported(info, _)) => {
783                    Err(EvaluateConstErr::EvaluationFailure(info.into()))
784                }
785                Err(ErrorHandled::TooGeneric(_)) => Err(EvaluateConstErr::HasGenericsOrInfers),
786            }
787        }
788    }
789}
790
791/// Replaces args that reference param or infer variables with suitable
792/// placeholders. This function is meant to remove these param and infer
793/// args when they're not actually needed to evaluate a constant.
794fn replace_param_and_infer_args_with_placeholder<'tcx>(
795    tcx: TyCtxt<'tcx>,
796    args: GenericArgsRef<'tcx>,
797) -> GenericArgsRef<'tcx> {
798    struct ReplaceParamAndInferWithPlaceholder<'tcx> {
799        tcx: TyCtxt<'tcx>,
800        idx: ty::BoundVar,
801    }
802
803    impl<'tcx> TypeFolder<TyCtxt<'tcx>> for ReplaceParamAndInferWithPlaceholder<'tcx> {
804        fn cx(&self) -> TyCtxt<'tcx> {
805            self.tcx
806        }
807
808        fn fold_ty(&mut self, t: Ty<'tcx>) -> Ty<'tcx> {
809            if let ty::Infer(_) = t.kind() {
810                let idx = self.idx;
811                self.idx += 1;
812                Ty::new_placeholder(
813                    self.tcx,
814                    ty::PlaceholderType::new(
815                        ty::UniverseIndex::ROOT,
816                        ty::BoundTy { var: idx, kind: ty::BoundTyKind::Anon },
817                    ),
818                )
819            } else {
820                t.super_fold_with(self)
821            }
822        }
823
824        fn fold_const(&mut self, c: ty::Const<'tcx>) -> ty::Const<'tcx> {
825            if let ty::ConstKind::Infer(_) = c.kind() {
826                let idx = self.idx;
827                self.idx += 1;
828                ty::Const::new_placeholder(
829                    self.tcx,
830                    ty::PlaceholderConst::new(ty::UniverseIndex::ROOT, ty::BoundConst::new(idx)),
831                )
832            } else {
833                c.super_fold_with(self)
834            }
835        }
836    }
837
838    args.fold_with(&mut ReplaceParamAndInferWithPlaceholder { tcx, idx: ty::BoundVar::ZERO })
839}
840
841/// Normalizes the clauses and checks whether they hold in an empty environment. If this
842/// returns true, then either normalize encountered an error or one of the clauses did not
843/// hold. Used when creating vtables to check for unsatisfiable methods. This should not be
844/// used during analysis.
845pub fn impossible_clauses<'tcx>(tcx: TyCtxt<'tcx>, clauses: Vec<ty::Clause<'tcx>>) -> bool {
846    {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/0fc141305da7a8a222f65aef1f1acc739c46282b/compiler/rustc_trait_selection/src/traits/mod.rs:846",
                        "rustc_trait_selection::traits", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/0fc141305da7a8a222f65aef1f1acc739c46282b/compiler/rustc_trait_selection/src/traits/mod.rs"),
                        ::tracing_core::__macro_support::Option::Some(846u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
                        ::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!("impossible_clauses(clauses={0:?})",
                                                    clauses) as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!("impossible_clauses(clauses={:?})", clauses);
847    let (infcx, param_env) = tcx
848        .infer_ctxt()
849        .with_next_trait_solver(true)
850        .enable_next_solver_overflow_fcw(false)
851        .build_with_typing_env(ty::TypingEnv::fully_monomorphized());
852
853    let ocx = ObligationCtxt::new(&infcx);
854    let clauses =
855        ocx.normalize(&ObligationCause::dummy(), param_env, Unnormalized::new_wip(clauses));
856    for clause in clauses {
857        let obligation = Obligation::new(tcx, ObligationCause::dummy(), param_env, clause);
858        ocx.register_obligation(obligation);
859    }
860
861    // Use `try_evaluate_obligations` to only return impossible for true errors,
862    // and not ambiguities or overflows. Since the new trait solver forces
863    // some currently undetected overlap between `dyn Trait: Trait` built-in
864    // vs user-written impls to AMBIGUOUS, this may return ambiguity even
865    // with no infer vars. There may also be ways to encounter ambiguity due
866    // to post-mono overflow.
867    !ocx.try_evaluate_obligations().no_errors()
868}
869
870fn instantiate_and_check_impossible_clauses<'tcx>(
871    tcx: TyCtxt<'tcx>,
872    key: (DefId, GenericArgsRef<'tcx>),
873) -> bool {
874    {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/0fc141305da7a8a222f65aef1f1acc739c46282b/compiler/rustc_trait_selection/src/traits/mod.rs:874",
                        "rustc_trait_selection::traits", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/0fc141305da7a8a222f65aef1f1acc739c46282b/compiler/rustc_trait_selection/src/traits/mod.rs"),
                        ::tracing_core::__macro_support::Option::Some(874u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
                        ::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!("instantiate_and_check_impossible_clauses(key={0:?})",
                                                    key) as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!("instantiate_and_check_impossible_clauses(key={:?})", key);
875
876    let mut clauses: Vec<_> = tcx
877        .clauses_of(key.0)
878        .instantiate(tcx, key.1)
879        .clauses
880        .into_iter()
881        .map(Unnormalized::skip_norm_wip)
882        .collect();
883
884    // Specifically check trait fulfillment to avoid an error when trying to resolve
885    // associated items.
886    if let Some(trait_def_id) = tcx.trait_of_assoc(key.0) {
887        let trait_ref = ty::TraitRef::from_assoc(tcx, trait_def_id, key.1);
888        clauses.push(trait_ref.upcast(tcx));
889    }
890
891    clauses.retain(|clause| !clause.has_param());
892    let result = impossible_clauses(tcx, clauses);
893
894    {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/0fc141305da7a8a222f65aef1f1acc739c46282b/compiler/rustc_trait_selection/src/traits/mod.rs:894",
                        "rustc_trait_selection::traits", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/0fc141305da7a8a222f65aef1f1acc739c46282b/compiler/rustc_trait_selection/src/traits/mod.rs"),
                        ::tracing_core::__macro_support::Option::Some(894u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits"),
                        ::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!("instantiate_and_check_impossible_clauses(key={0:?}) = {1:?}",
                                                    key, result) as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!("instantiate_and_check_impossible_clauses(key={:?}) = {:?}", key, result);
895    result
896}
897
898/// Checks whether a trait's associated item is impossible to reference on a given impl.
899///
900/// This only considers predicates that reference the impl's generics, and not
901/// those that reference the method's generics.
902fn is_impossible_associated_item(
903    tcx: TyCtxt<'_>,
904    (impl_def_id, trait_item_def_id): (DefId, DefId),
905) -> bool {
906    struct ReferencesOnlyParentGenerics<'tcx> {
907        tcx: TyCtxt<'tcx>,
908        generics: &'tcx ty::Generics,
909        trait_item_def_id: DefId,
910    }
911    impl<'tcx> ty::TypeVisitor<TyCtxt<'tcx>> for ReferencesOnlyParentGenerics<'tcx> {
912        type Result = ControlFlow<()>;
913        fn visit_ty(&mut self, t: Ty<'tcx>) -> Self::Result {
914            // If this is a parameter from the trait item's own generics, then bail
915            if let ty::Param(param) = *t.kind()
916                && let param_def_id = self.generics.type_param(param, self.tcx).def_id
917                && self.tcx.parent(param_def_id) == self.trait_item_def_id
918            {
919                return ControlFlow::Break(());
920            }
921            t.super_visit_with(self)
922        }
923        fn visit_region(&mut self, r: ty::Region<'tcx>) -> Self::Result {
924            if let ty::ReEarlyParam(param) = r.kind()
925                && let param_def_id = self.generics.region_param(param, self.tcx).def_id
926                && self.tcx.parent(param_def_id) == self.trait_item_def_id
927            {
928                return ControlFlow::Break(());
929            }
930            ControlFlow::Continue(())
931        }
932        fn visit_const(&mut self, ct: ty::Const<'tcx>) -> Self::Result {
933            if let ty::ConstKind::Param(param) = ct.kind()
934                && let param_def_id = self.generics.const_param(param, self.tcx).def_id
935                && self.tcx.parent(param_def_id) == self.trait_item_def_id
936            {
937                return ControlFlow::Break(());
938            }
939            ct.super_visit_with(self)
940        }
941    }
942
943    let generics = tcx.generics_of(trait_item_def_id);
944    let gen_clauses = tcx.clauses_of(trait_item_def_id);
945
946    // Be conservative in cases where we have `W<T: ?Sized>` and a method like `Self: Sized`,
947    // since that method *may* have some substitutions where the predicates hold.
948    //
949    // This replicates the logic we use in coherence.
950    let infcx = tcx
951        .infer_ctxt()
952        .ignoring_regions()
953        .with_next_trait_solver(true)
954        .enable_next_solver_overflow_fcw(false)
955        .build(TypingMode::Coherence);
956    let param_env = ty::ParamEnv::empty();
957    let fresh_args = infcx.fresh_args_for_item(tcx.def_span(impl_def_id), impl_def_id);
958
959    let impl_trait_ref =
960        tcx.impl_trait_ref(impl_def_id).instantiate(tcx, fresh_args).skip_norm_wip();
961
962    let mut visitor = ReferencesOnlyParentGenerics { tcx, generics, trait_item_def_id };
963    let predicates_for_trait = gen_clauses.clauses.iter().filter_map(|(clause, span)| {
964        clause.visit_with(&mut visitor).is_continue().then(|| {
965            Obligation::new(
966                tcx,
967                ObligationCause::dummy_with_span(*span),
968                param_env,
969                ty::EarlyBinder::bind(tcx, *clause)
970                    .instantiate(tcx, impl_trait_ref.args)
971                    .skip_norm_wip(),
972            )
973        })
974    });
975
976    let ocx = ObligationCtxt::new(&infcx);
977    ocx.register_obligations(predicates_for_trait);
978    !ocx.try_evaluate_obligations().no_errors()
979}
980
981pub fn provide(providers: &mut Providers) {
982    dyn_compatibility::provide(providers);
983    vtable::provide(providers);
984    *providers = Providers {
985        specialization_graph_of: specialize::specialization_graph_provider,
986        specializes: specialize::specializes,
987        specialization_enabled_in: specialize::specialization_enabled_in,
988        instantiate_and_check_impossible_clauses,
989        is_impossible_associated_item,
990        live_args_for_alias_from_outlives_bounds:
991            outlives_for_liveness::live_args_for_alias_from_outlives_bounds,
992        args_known_to_outlive_alias_params:
993            outlives_for_liveness::args_known_to_outlive_alias_params,
994        ..*providers
995    };
996}