Skip to main content

rustc_trait_selection/traits/
auto_trait.rs

1//! Support code for rustdoc and external tools.
2//! You really don't want to be using this unless you need to.
3
4use std::collections::VecDeque;
5use std::iter;
6
7use rustc_data_structures::fx::{FxIndexMap, FxIndexSet, IndexEntry};
8use rustc_data_structures::unord::UnordSet;
9use rustc_hir::def_id::CRATE_DEF_ID;
10use rustc_infer::infer::DefineOpaqueTypes;
11use rustc_middle::ty::{Region, RegionVid};
12use rustc_span::DUMMY_SP;
13use tracing::debug;
14
15use super::*;
16use crate::diagnostics::UnableToConstructConstantValue;
17use crate::infer::TypeFreshener;
18use crate::infer::region_constraints::{ConstraintKind, RegionConstraintData};
19use crate::regions::OutlivesEnvironmentBuildExt;
20use crate::traits::project::ProjectAndUnifyResult;
21
22// FIXME(twk): this is obviously not nice to duplicate like that
23#[derive(#[automatically_derived]
impl<'tcx> ::core::cmp::Eq for RegionTarget<'tcx> {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<Region<'tcx>>;
        let _: ::core::cmp::AssertParamIsEq<RegionVid>;
    }
}Eq, #[automatically_derived]
impl<'tcx> ::core::cmp::PartialEq for RegionTarget<'tcx> {
    #[inline]
    fn eq(&self, other: &RegionTarget<'tcx>) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr &&
            match (self, other) {
                (RegionTarget::Region(__self_0),
                    RegionTarget::Region(__arg1_0)) => __self_0 == __arg1_0,
                (RegionTarget::RegionVid(__self_0),
                    RegionTarget::RegionVid(__arg1_0)) => __self_0 == __arg1_0,
                _ => unsafe { ::core::intrinsics::unreachable() }
            }
    }
}PartialEq, #[automatically_derived]
impl<'tcx> ::core::hash::Hash for RegionTarget<'tcx> {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        ::core::hash::Hash::hash(&__self_discr, state);
        match self {
            RegionTarget::Region(__self_0) =>
                ::core::hash::Hash::hash(__self_0, state),
            RegionTarget::RegionVid(__self_0) =>
                ::core::hash::Hash::hash(__self_0, state),
        }
    }
}Hash, #[automatically_derived]
impl<'tcx> ::core::marker::Copy for RegionTarget<'tcx> { }Copy, #[automatically_derived]
impl<'tcx> ::core::clone::Clone for RegionTarget<'tcx> {
    #[inline]
    fn clone(&self) -> RegionTarget<'tcx> {
        let _: ::core::clone::AssertParamIsClone<Region<'tcx>>;
        let _: ::core::clone::AssertParamIsClone<RegionVid>;
        *self
    }
}Clone, #[automatically_derived]
impl<'tcx> ::core::fmt::Debug for RegionTarget<'tcx> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            RegionTarget::Region(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Region",
                    &__self_0),
            RegionTarget::RegionVid(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "RegionVid", &__self_0),
        }
    }
}Debug)]
24pub enum RegionTarget<'tcx> {
25    Region(Region<'tcx>),
26    RegionVid(RegionVid),
27}
28
29#[derive(#[automatically_derived]
impl<'tcx> ::core::default::Default for RegionDeps<'tcx> {
    #[inline]
    fn default() -> RegionDeps<'tcx> {
        RegionDeps {
            larger: ::core::default::Default::default(),
            smaller: ::core::default::Default::default(),
        }
    }
}Default, #[automatically_derived]
impl<'tcx> ::core::fmt::Debug for RegionDeps<'tcx> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field2_finish(f, "RegionDeps",
            "larger", &self.larger, "smaller", &&self.smaller)
    }
}Debug, #[automatically_derived]
impl<'tcx> ::core::clone::Clone for RegionDeps<'tcx> {
    #[inline]
    fn clone(&self) -> RegionDeps<'tcx> {
        RegionDeps {
            larger: ::core::clone::Clone::clone(&self.larger),
            smaller: ::core::clone::Clone::clone(&self.smaller),
        }
    }
}Clone)]
30pub struct RegionDeps<'tcx> {
31    pub larger: FxIndexSet<RegionTarget<'tcx>>,
32    pub smaller: FxIndexSet<RegionTarget<'tcx>>,
33}
34
35pub enum AutoTraitResult<A> {
36    NoImpl,
37    ExplicitImpl,
38    PositiveImpl(A),
39    NegativeImpl,
40}
41
42pub struct AutoTraitInfo<'cx> {
43    pub full_user_env: ty::ParamEnv<'cx>,
44    pub region_data: RegionConstraintData<'cx>,
45    pub vid_to_region: FxIndexMap<ty::RegionVid, ty::Region<'cx>>,
46}
47
48pub struct AutoTraitFinder<'tcx> {
49    tcx: TyCtxt<'tcx>,
50}
51
52impl<'tcx> AutoTraitFinder<'tcx> {
53    pub fn new(tcx: TyCtxt<'tcx>) -> Self {
54        AutoTraitFinder { tcx }
55    }
56
57    /// Makes a best effort to determine whether and under which conditions an auto trait is
58    /// implemented for a type. For example, if you have
59    ///
60    /// ```
61    /// struct Foo<T> { data: Box<T> }
62    /// ```
63    ///
64    /// then this might return that `Foo<T>: Send` if `T: Send` (encoded in the AutoTraitResult
65    /// type). The analysis attempts to account for custom impls as well as other complex cases.
66    /// This result is intended for use by rustdoc and other such consumers.
67    ///
68    /// (Note that due to the coinductive nature of Send, the full and correct result is actually
69    /// quite simple to generate. That is, when a type has no custom impl, it is Send iff its field
70    /// types are all Send. So, in our example, we might have that `Foo<T>: Send` if `Box<T>: Send`.
71    /// But this is often not the best way to present to the user.)
72    ///
73    /// Warning: The API should be considered highly unstable, and it may be refactored or removed
74    /// in the future.
75    pub fn find_auto_trait_generics<A>(
76        &self,
77        ty: Ty<'tcx>,
78        typing_env: ty::TypingEnv<'tcx>,
79        trait_did: DefId,
80        mut auto_trait_callback: impl FnMut(AutoTraitInfo<'tcx>) -> A,
81    ) -> AutoTraitResult<A> {
82        let tcx = self.tcx;
83
84        if tcx.next_trait_solver_globally() {
85            return self.find_auto_trait_generics_next_solver(
86                ty,
87                typing_env,
88                trait_did,
89                auto_trait_callback,
90            );
91        }
92
93        let trait_ref = ty::TraitRef::new(tcx, trait_did, [ty]);
94
95        let (infcx, orig_env) = tcx.infer_ctxt().build_with_typing_env(typing_env);
96        let mut selcx = SelectionContext::new(&infcx);
97        for polarity in [ty::PredicatePolarity::Positive, ty::PredicatePolarity::Negative] {
98            let result = selcx.select(&Obligation::new(
99                tcx,
100                ObligationCause::dummy(),
101                orig_env,
102                ty::TraitPredicate { trait_ref, polarity },
103            ));
104            if let Ok(Some(ImplSource::UserDefined(_))) = result {
105                {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/auto_trait.rs:105",
                        "rustc_trait_selection::traits::auto_trait",
                        ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/auto_trait.rs"),
                        ::tracing_core::__macro_support::Option::Some(105u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::auto_trait"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                let mut iter = __CALLSITE.metadata().fields().iter();
                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&format_args!("find_auto_trait_generics({0:?}): manual impl found, bailing out",
                                                    trait_ref) as &dyn Value))])
            });
    } else { ; }
};debug!("find_auto_trait_generics({trait_ref:?}): manual impl found, bailing out");
106                // If an explicit impl exists, it always takes priority over an auto impl
107                return AutoTraitResult::ExplicitImpl;
108            }
109        }
110
111        let (infcx, orig_env) = tcx.infer_ctxt().build_with_typing_env(typing_env);
112        let mut fresh_preds = FxIndexSet::default();
113
114        // Due to the way projections are handled by SelectionContext, we need to run
115        // evaluate_predicates twice: once on the original param env, and once on the result of
116        // the first evaluate_predicates call.
117        //
118        // The problem is this: most of rustc, including SelectionContext and traits::project,
119        // are designed to work with a concrete usage of a type (e.g., Vec<u8>
120        // fn<T>() { Vec<T> }. This information will generally never change - given
121        // the 'T' in fn<T>() { ... }, we'll never know anything else about 'T'.
122        // If we're unable to prove that 'T' implements a particular trait, we're done -
123        // there's nothing left to do but error out.
124        //
125        // However, synthesizing an auto trait impl works differently. Here, we start out with
126        // a set of initial conditions - the ParamEnv of the struct/enum/union we're dealing
127        // with - and progressively discover the conditions we need to fulfill for it to
128        // implement a certain auto trait. This ends up breaking two assumptions made by trait
129        // selection and projection:
130        //
131        // * We can always cache the result of a particular trait selection for the lifetime of
132        // an InfCtxt
133        // * Given a projection bound such as '<T as SomeTrait>::SomeItem = K', if 'T:
134        // SomeTrait' doesn't hold, then we don't need to care about the 'SomeItem = K'
135        //
136        // We fix the first assumption by manually clearing out all of the InferCtxt's caches
137        // in between calls to SelectionContext.select. This allows us to keep all of the
138        // intermediate types we create bound to the 'tcx lifetime, rather than needing to lift
139        // them between calls.
140        //
141        // We fix the second assumption by reprocessing the result of our first call to
142        // evaluate_predicates. Using the example of '<T as SomeTrait>::SomeItem = K', our first
143        // pass will pick up 'T: SomeTrait', but not 'SomeItem = K'. On our second pass,
144        // traits::project will see that 'T: SomeTrait' is in our ParamEnv, allowing
145        // SelectionContext to return it back to us.
146
147        let Some((new_env, user_env)) =
148            self.evaluate_predicates(&infcx, trait_did, ty, orig_env, orig_env, &mut fresh_preds)
149        else {
150            return AutoTraitResult::NegativeImpl;
151        };
152
153        let (full_env, full_user_env) = self
154            .evaluate_predicates(&infcx, trait_did, ty, new_env, user_env, &mut fresh_preds)
155            .unwrap_or_else(|| {
156                {
    ::core::panicking::panic_fmt(format_args!("Failed to fully process: {0:?} {1:?} {2:?}",
            ty, trait_did, orig_env));
}panic!("Failed to fully process: {ty:?} {trait_did:?} {orig_env:?}")
157            });
158
159        {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/auto_trait.rs:159",
                        "rustc_trait_selection::traits::auto_trait",
                        ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/auto_trait.rs"),
                        ::tracing_core::__macro_support::Option::Some(159u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::auto_trait"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                let mut iter = __CALLSITE.metadata().fields().iter();
                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&format_args!("find_auto_trait_generics({0:?}): fulfilling with {1:?}",
                                                    trait_ref, full_env) as &dyn Value))])
            });
    } else { ; }
};debug!(
160            "find_auto_trait_generics({:?}): fulfilling \
161             with {:?}",
162            trait_ref, full_env
163        );
164
165        // At this point, we already have all of the bounds we need. FulfillmentContext is used
166        // to store all of the necessary region/lifetime bounds in the InferContext, as well as
167        // an additional sanity check.
168        let ocx = ObligationCtxt::new(&infcx);
169        ocx.register_bound(ObligationCause::dummy(), full_env, ty, trait_did);
170        let errors = ocx.evaluate_obligations_error_on_ambiguity();
171        if !errors.is_empty() {
172            {
    ::core::panicking::panic_fmt(format_args!("Unable to fulfill trait {0:?} for \'{1:?}\': {2:?}",
            trait_did, ty, errors));
};panic!("Unable to fulfill trait {trait_did:?} for '{ty:?}': {errors:?}");
173        }
174
175        let outlives_env = OutlivesEnvironment::new(&infcx, CRATE_DEF_ID, full_env, []);
176        let _ =
177            infcx.process_registered_region_obligations(&outlives_env, |ty, _| Ok(ty), DUMMY_SP);
178
179        let region_data = infcx.inner.borrow_mut().unwrap_region_constraints().data().clone();
180
181        let vid_to_region = self.map_vid_to_region(&region_data);
182
183        let info = AutoTraitInfo { full_user_env, region_data, vid_to_region };
184
185        AutoTraitResult::PositiveImpl(auto_trait_callback(info))
186    }
187
188    fn find_auto_trait_generics_next_solver<A>(
189        &self,
190        ty: Ty<'tcx>,
191        typing_env: ty::TypingEnv<'tcx>,
192        trait_did: DefId,
193        mut auto_trait_callback: impl FnMut(AutoTraitInfo<'tcx>) -> A,
194    ) -> AutoTraitResult<A> {
195        // When the new solver is enabled globally we keep things deliberately
196        // simple. The precise auto-trait synthesis depends on old-solver
197        // internals, so here we only synthesize a simple field-based auto-trait
198        // impl for ADTs.
199        //
200        // If the self type is not an ADT we return `NoImpl` instead of trying
201        // to do anything fancy. To decide whether to emit a negative impl, we
202        // replace the ADT's generic arguments with inference variables and
203        // check whether the auto trait can hold. A true error from that probe
204        // becomes a `NegativeImpl`, otherwise we continue on to emit the
205        // imprecise field-based impl.
206        //
207        // This keeps rustdoc from ICE-ing while `-Znext-solver=globally` is
208        // used for testing, even if the generated synthetic impls are less
209        // precise.
210        let tcx = self.tcx;
211        let ty::Adt(adt_def, args) = *ty.kind() else {
212            return AutoTraitResult::NoImpl;
213        };
214
215        let mut disqualifying_impl = None;
216        tcx.for_each_relevant_impl(trait_did, ty, |impl_def_id| {
217            disqualifying_impl = Some(impl_def_id);
218        });
219        if let Some(impl_def_id) = disqualifying_impl {
220            {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/auto_trait.rs:220",
                        "rustc_trait_selection::traits::auto_trait",
                        ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/auto_trait.rs"),
                        ::tracing_core::__macro_support::Option::Some(220u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::auto_trait"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                let mut iter = __CALLSITE.metadata().fields().iter();
                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&format_args!("find_auto_trait_generics({0:?}): possible manual impl {1:?} found, bailing",
                                                    ty::TraitRef::new(tcx, trait_did, [ty]), impl_def_id) as
                                            &dyn Value))])
            });
    } else { ; }
};debug!(
221                "find_auto_trait_generics({:?}): possible manual impl {impl_def_id:?} found, bailing",
222                ty::TraitRef::new(tcx, trait_did, [ty]),
223            );
224            return AutoTraitResult::ExplicitImpl;
225        }
226
227        let (infcx, orig_env) = tcx.infer_ctxt().build_with_typing_env(typing_env);
228        let field_clauses = adt_def
229            .all_fields()
230            .map(|field| field.ty(tcx, args).skip_norm_wip())
231            .filter(|field_ty| field_ty.has_non_region_param())
232            .map(|field_ty| {
233                ty::TraitPredicate {
234                    trait_ref: ty::TraitRef::new(tcx, trait_did, [field_ty]),
235                    polarity: ty::PredicatePolarity::Positive,
236                }
237                .upcast(tcx)
238            })
239            .collect::<Vec<ty::Clause<'tcx>>>();
240        let full_user_env = ty::ParamEnv::new(
241            tcx.mk_clauses_from_iter(orig_env.caller_bounds().iter().chain(field_clauses)),
242        );
243
244        let fresh_args = infcx.fresh_args_for_item(DUMMY_SP, adt_def.did());
245        let fresh_ty = ty::EarlyBinder::bind(tcx, ty).instantiate(tcx, fresh_args).skip_norm_wip();
246        let ocx = ObligationCtxt::new(&infcx);
247        ocx.register_bound(ObligationCause::dummy(), orig_env, fresh_ty, trait_did);
248        let errors = ocx.try_evaluate_obligations();
249        if !errors.is_empty() {
250            return AutoTraitResult::NegativeImpl;
251        }
252
253        let info = AutoTraitInfo {
254            full_user_env,
255            region_data: RegionConstraintData::default(),
256            vid_to_region: FxIndexMap::default(),
257        };
258        AutoTraitResult::PositiveImpl(auto_trait_callback(info))
259    }
260
261    /// The core logic responsible for computing the bounds for our synthesized impl.
262    ///
263    /// To calculate the bounds, we call `SelectionContext.select` in a loop. Like
264    /// `FulfillmentContext`, we recursively select the nested obligations of predicates we
265    /// encounter. However, whenever we encounter an `UnimplementedError` involving a type
266    /// parameter, we add it to our `ParamEnv`. Since our goal is to determine when a particular
267    /// type implements an auto trait, Unimplemented errors tell us what conditions need to be met.
268    ///
269    /// This method ends up working somewhat similarly to `FulfillmentContext`, but with a few key
270    /// differences. `FulfillmentContext` works under the assumption that it's dealing with concrete
271    /// user code. According, it considers all possible ways that a `Predicate` could be met, which
272    /// isn't always what we want for a synthesized impl. For example, given the predicate `T:
273    /// Iterator`, `FulfillmentContext` can end up reporting an Unimplemented error for `T:
274    /// IntoIterator` -- since there's an implementation of `Iterator` where `T: IntoIterator`,
275    /// `FulfillmentContext` will drive `SelectionContext` to consider that impl before giving up.
276    /// If we were to rely on `FulfillmentContext`s decision, we might end up synthesizing an impl
277    /// like this:
278    /// ```ignore (illustrative)
279    /// impl<T> Send for Foo<T> where T: IntoIterator
280    /// ```
281    /// While it might be technically true that Foo implements Send where `T: IntoIterator`,
282    /// the bound is overly restrictive - it's really only necessary that `T: Iterator`.
283    ///
284    /// For this reason, `evaluate_predicates` handles predicates with type variables specially.
285    /// When we encounter an `Unimplemented` error for a bound such as `T: Iterator`, we immediately
286    /// add it to our `ParamEnv`, and add it to our stack for recursive evaluation. When we later
287    /// select it, we'll pick up any nested bounds, without ever inferring that `T: IntoIterator`
288    /// needs to hold.
289    ///
290    /// One additional consideration is supertrait bounds. Normally, a `ParamEnv` is only ever
291    /// constructed once for a given type. As part of the construction process, the `ParamEnv` will
292    /// have any supertrait bounds normalized -- e.g., if we have a type `struct Foo<T: Copy>`, the
293    /// `ParamEnv` will contain `T: Copy` and `T: Clone`, since `Copy: Clone`. When we construct our
294    /// own `ParamEnv`, we need to do this ourselves, through `traits::elaborate`, or
295    /// else `SelectionContext` will choke on the missing predicates. However, this should never
296    /// show up in the final synthesized generics: we don't want our generated docs page to contain
297    /// something like `T: Copy + Clone`, as that's redundant. Therefore, we keep track of a
298    /// separate `user_env`, which only holds the predicates that will actually be displayed to the
299    /// user.
300    fn evaluate_predicates(
301        &self,
302        infcx: &InferCtxt<'tcx>,
303        trait_did: DefId,
304        ty: Ty<'tcx>,
305        param_env: ty::ParamEnv<'tcx>,
306        user_env: ty::ParamEnv<'tcx>,
307        fresh_preds: &mut FxIndexSet<ty::Predicate<'tcx>>,
308    ) -> Option<(ty::ParamEnv<'tcx>, ty::ParamEnv<'tcx>)> {
309        let tcx = infcx.tcx;
310
311        // Don't try to process any nested obligations involving predicates
312        // that are already in the `ParamEnv` (modulo regions): we already
313        // know that they must hold.
314        for clause in param_env.caller_bounds() {
315            fresh_preds.insert(self.clean_pred(infcx, clause.as_predicate()));
316        }
317
318        let mut select = SelectionContext::new(infcx);
319
320        let mut already_visited = UnordSet::new();
321        let mut predicates = VecDeque::new();
322        predicates.push_back(ty::Binder::dummy(ty::TraitPredicate {
323            trait_ref: ty::TraitRef::new(infcx.tcx, trait_did, [ty]),
324
325            // Auto traits are positive
326            polarity: ty::PredicatePolarity::Positive,
327        }));
328
329        let computed_clauses = param_env.caller_bounds().iter();
330        let mut user_computed_clauses: FxIndexSet<_> = user_env.caller_bounds().iter().collect();
331
332        let mut new_env = param_env;
333        let dummy_cause = ObligationCause::dummy();
334
335        while let Some(pred) = predicates.pop_front() {
336            if !already_visited.insert(pred) {
337                continue;
338            }
339
340            // Call `infcx.resolve_vars_if_possible` to see if we can
341            // get rid of any inference variables.
342            let obligation = infcx.resolve_vars_if_possible(Obligation::new(
343                tcx,
344                dummy_cause.clone(),
345                new_env,
346                pred,
347            ));
348            let result = select.poly_select(&obligation);
349
350            match result {
351                Ok(Some(ref impl_source)) => {
352                    // If we see an explicit negative impl (e.g., `impl !Send for MyStruct`),
353                    // we immediately bail out, since it's impossible for us to continue.
354
355                    if let ImplSource::UserDefined(ImplSourceUserDefinedData {
356                        impl_def_id, ..
357                    }) = impl_source
358                    {
359                        // Blame 'tidy' for the weird bracket placement.
360                        if infcx.tcx.impl_polarity(*impl_def_id) != ty::ImplPolarity::Positive {
361                            {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/auto_trait.rs:361",
                        "rustc_trait_selection::traits::auto_trait",
                        ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/auto_trait.rs"),
                        ::tracing_core::__macro_support::Option::Some(361u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::auto_trait"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                let mut iter = __CALLSITE.metadata().fields().iter();
                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&format_args!("evaluate_nested_obligations: found explicit negative impl{0:?}, bailing out",
                                                    impl_def_id) as &dyn Value))])
            });
    } else { ; }
};debug!(
362                                "evaluate_nested_obligations: found explicit negative impl\
363                                        {:?}, bailing out",
364                                impl_def_id
365                            );
366                            return None;
367                        }
368                    }
369
370                    let obligations = impl_source.borrow_nested_obligations().iter().cloned();
371
372                    if !self.evaluate_nested_obligations(
373                        ty,
374                        obligations,
375                        &mut user_computed_clauses,
376                        fresh_preds,
377                        &mut predicates,
378                        &mut select,
379                    ) {
380                        return None;
381                    }
382                }
383                Ok(None) => {}
384                Err(SelectionError::Unimplemented) => {
385                    if self.is_param_no_infer(pred.skip_binder().trait_ref.args) {
386                        already_visited.remove(&pred);
387                        self.add_user_clause(&mut user_computed_clauses, pred.upcast(self.tcx));
388                        predicates.push_back(pred);
389                    } else {
390                        {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/auto_trait.rs:390",
                        "rustc_trait_selection::traits::auto_trait",
                        ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/auto_trait.rs"),
                        ::tracing_core::__macro_support::Option::Some(390u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::auto_trait"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                let mut iter = __CALLSITE.metadata().fields().iter();
                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&format_args!("evaluate_nested_obligations: `Unimplemented` found, bailing: {0:?} {1:?} {2:?}",
                                                    ty, pred, pred.skip_binder().trait_ref.args) as
                                            &dyn Value))])
            });
    } else { ; }
};debug!(
391                            "evaluate_nested_obligations: `Unimplemented` found, bailing: \
392                             {:?} {:?} {:?}",
393                            ty,
394                            pred,
395                            pred.skip_binder().trait_ref.args
396                        );
397                        return None;
398                    }
399                }
400                _ => {
    ::core::panicking::panic_fmt(format_args!("Unexpected error for \'{0:?}\': {1:?}",
            ty, result));
}panic!("Unexpected error for '{ty:?}': {result:?}"),
401            };
402
403            let normalized_preds = elaborate(
404                tcx,
405                computed_clauses.clone().chain(user_computed_clauses.iter().cloned()),
406            );
407            new_env = ty::ParamEnv::new(tcx.mk_clauses_from_iter(normalized_preds));
408        }
409
410        let final_user_env =
411            ty::ParamEnv::new(tcx.mk_clauses_from_iter(user_computed_clauses.into_iter()));
412        {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/auto_trait.rs:412",
                        "rustc_trait_selection::traits::auto_trait",
                        ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/auto_trait.rs"),
                        ::tracing_core::__macro_support::Option::Some(412u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::auto_trait"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                let mut iter = __CALLSITE.metadata().fields().iter();
                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&format_args!("evaluate_nested_obligations(ty={0:?}, trait_did={1:?}): succeeded with \'{2:?}\' \'{3:?}\'",
                                                    ty, trait_did, new_env, final_user_env) as &dyn Value))])
            });
    } else { ; }
};debug!(
413            "evaluate_nested_obligations(ty={:?}, trait_did={:?}): succeeded with '{:?}' \
414             '{:?}'",
415            ty, trait_did, new_env, final_user_env
416        );
417
418        Some((new_env, final_user_env))
419    }
420
421    /// This method is designed to work around the following issue:
422    /// When we compute auto trait bounds, we repeatedly call `SelectionContext.select`,
423    /// progressively building a `ParamEnv` based on the results we get.
424    /// However, our usage of `SelectionContext` differs from its normal use within the compiler,
425    /// in that we capture and re-reprocess predicates from `Unimplemented` errors.
426    ///
427    /// This can lead to a corner case when dealing with region parameters.
428    /// During our selection loop in `evaluate_predicates`, we might end up with
429    /// two trait predicates that differ only in their region parameters:
430    /// one containing a HRTB lifetime parameter, and one containing a 'normal'
431    /// lifetime parameter. For example:
432    /// ```ignore (illustrative)
433    /// T as MyTrait<'a>
434    /// T as MyTrait<'static>
435    /// ```
436    /// If we put both of these predicates in our computed `ParamEnv`, we'll
437    /// confuse `SelectionContext`, since it will (correctly) view both as being applicable.
438    ///
439    /// To solve this, we pick the 'more strict' lifetime bound -- i.e., the HRTB
440    /// Our end goal is to generate a user-visible description of the conditions
441    /// under which a type implements an auto trait. A trait predicate involving
442    /// a HRTB means that the type needs to work with any choice of lifetime,
443    /// not just one specific lifetime (e.g., `'static`).
444    fn add_user_clause(
445        &self,
446        user_computed_clauses: &mut FxIndexSet<ty::Clause<'tcx>>,
447        new_clause: ty::Clause<'tcx>,
448    ) {
449        let mut should_add_new = true;
450        user_computed_clauses.retain(|&old_clause| {
451            if let (ty::ClauseKind::Trait(new_trait), ty::ClauseKind::Trait(old_trait)) =
452                (new_clause.kind().skip_binder(), old_clause.kind().skip_binder())
453            {
454                if new_trait.def_id() == old_trait.def_id() {
455                    let new_args = new_trait.trait_ref.args;
456                    let old_args = old_trait.trait_ref.args;
457
458                    if !new_args.types().eq(old_args.types()) {
459                        // We can't compare lifetimes if the types are different,
460                        // so skip checking `old_clause`.
461                        return true;
462                    }
463
464                    for (new_region, old_region) in
465                        iter::zip(new_args.regions(), old_args.regions())
466                    {
467                        match (new_region.kind(), old_region.kind()) {
468                            // If both predicates have an `ReBound` (a HRTB) in the
469                            // same spot, we do nothing.
470                            (ty::ReBound(_, _), ty::ReBound(_, _)) => {}
471
472                            (ty::ReBound(_, _), _) | (_, ty::ReVar(_)) => {
473                                // One of these is true:
474                                // The new predicate has a HRTB in a spot where the old
475                                // predicate does not (if they both had a HRTB, the previous
476                                // match arm would have executed). A HRBT is a 'stricter'
477                                // bound than anything else, so we want to keep the newer
478                                // predicate (with the HRBT) in place of the old predicate.
479                                //
480                                // OR
481                                //
482                                // The old predicate has a region variable where the new
483                                // predicate has some other kind of region. An region
484                                // variable isn't something we can actually display to a user,
485                                // so we choose their new predicate (which doesn't have a region
486                                // variable).
487                                //
488                                // In both cases, we want to remove the old predicate,
489                                // from `user_computed_clauses`, and replace it with the new
490                                // one. Having both the old and the new
491                                // predicate in a `ParamEnv` would confuse `SelectionContext`.
492                                //
493                                // We're currently in the predicate passed to 'retain',
494                                // so we return `false` to remove the old predicate from
495                                // `user_computed_clauses`.
496                                return false;
497                            }
498                            (_, ty::ReBound(_, _)) | (ty::ReVar(_), _) => {
499                                // This is the opposite situation as the previous arm.
500                                // One of these is true:
501                                //
502                                // The old predicate has a HRTB lifetime in a place where the
503                                // new predicate does not.
504                                //
505                                // OR
506                                //
507                                // The new predicate has a region variable where the old
508                                // predicate has some other type of region.
509                                //
510                                // We want to leave the old
511                                // predicate in `user_computed_clauses`, and skip adding
512                                // new_clause to `user_computed_params`.
513                                should_add_new = false
514                            }
515                            _ => {}
516                        }
517                    }
518                }
519            }
520            true
521        });
522
523        if should_add_new {
524            user_computed_clauses.insert(new_clause);
525        }
526    }
527
528    /// This is very similar to `handle_lifetimes`. However, instead of matching `ty::Region`s
529    /// to each other, we match `ty::RegionVid`s to `ty::Region`s.
530    fn map_vid_to_region<'cx>(
531        &self,
532        regions: &RegionConstraintData<'cx>,
533    ) -> FxIndexMap<ty::RegionVid, ty::Region<'cx>> {
534        let mut vid_map = FxIndexMap::<RegionTarget<'cx>, RegionDeps<'cx>>::default();
535        let mut finished_map = FxIndexMap::default();
536
537        for c in regions.constraints.iter().flat_map(|(c, _)| c.iter_outlives()) {
538            match c.kind {
539                ConstraintKind::VarSubVar => {
540                    let sub_vid = c.sub.as_var();
541                    let sup_vid = c.sup.as_var();
542                    {
543                        let deps1 = vid_map.entry(RegionTarget::RegionVid(sub_vid)).or_default();
544                        deps1.larger.insert(RegionTarget::RegionVid(sup_vid));
545                    }
546
547                    let deps2 = vid_map.entry(RegionTarget::RegionVid(sup_vid)).or_default();
548                    deps2.smaller.insert(RegionTarget::RegionVid(sub_vid));
549                }
550                ConstraintKind::RegSubVar => {
551                    let sup_vid = c.sup.as_var();
552                    {
553                        let deps1 = vid_map.entry(RegionTarget::Region(c.sub)).or_default();
554                        deps1.larger.insert(RegionTarget::RegionVid(sup_vid));
555                    }
556
557                    let deps2 = vid_map.entry(RegionTarget::RegionVid(sup_vid)).or_default();
558                    deps2.smaller.insert(RegionTarget::Region(c.sub));
559                }
560                ConstraintKind::VarSubReg => {
561                    let sub_vid = c.sub.as_var();
562                    finished_map.insert(sub_vid, c.sup);
563                }
564                ConstraintKind::RegSubReg => {
565                    {
566                        let deps1 = vid_map.entry(RegionTarget::Region(c.sub)).or_default();
567                        deps1.larger.insert(RegionTarget::Region(c.sup));
568                    }
569
570                    let deps2 = vid_map.entry(RegionTarget::Region(c.sup)).or_default();
571                    deps2.smaller.insert(RegionTarget::Region(c.sub));
572                }
573
574                ConstraintKind::VarEqVar | ConstraintKind::VarEqReg | ConstraintKind::RegEqReg => {
575                    ::core::panicking::panic("internal error: entered unreachable code")unreachable!()
576                }
577            }
578        }
579
580        while !vid_map.is_empty() {
581            let target = *vid_map.keys().next().unwrap();
582            let deps = vid_map.swap_remove(&target).unwrap();
583
584            for smaller in deps.smaller.iter() {
585                for larger in deps.larger.iter() {
586                    match (smaller, larger) {
587                        (&RegionTarget::Region(_), &RegionTarget::Region(_)) => {
588                            if let IndexEntry::Occupied(v) = vid_map.entry(*smaller) {
589                                let smaller_deps = v.into_mut();
590                                smaller_deps.larger.insert(*larger);
591                                smaller_deps.larger.swap_remove(&target);
592                            }
593
594                            if let IndexEntry::Occupied(v) = vid_map.entry(*larger) {
595                                let larger_deps = v.into_mut();
596                                larger_deps.smaller.insert(*smaller);
597                                larger_deps.smaller.swap_remove(&target);
598                            }
599                        }
600                        (&RegionTarget::RegionVid(v1), &RegionTarget::Region(r1)) => {
601                            finished_map.insert(v1, r1);
602                        }
603                        (&RegionTarget::Region(_), &RegionTarget::RegionVid(_)) => {
604                            // Do nothing; we don't care about regions that are smaller than vids.
605                        }
606                        (&RegionTarget::RegionVid(_), &RegionTarget::RegionVid(_)) => {
607                            if let IndexEntry::Occupied(v) = vid_map.entry(*smaller) {
608                                let smaller_deps = v.into_mut();
609                                smaller_deps.larger.insert(*larger);
610                                smaller_deps.larger.swap_remove(&target);
611                            }
612
613                            if let IndexEntry::Occupied(v) = vid_map.entry(*larger) {
614                                let larger_deps = v.into_mut();
615                                larger_deps.smaller.insert(*smaller);
616                                larger_deps.smaller.swap_remove(&target);
617                            }
618                        }
619                    }
620                }
621            }
622        }
623
624        finished_map
625    }
626
627    fn is_param_no_infer(&self, args: GenericArgsRef<'tcx>) -> bool {
628        self.is_of_param(args.type_at(0)) && !args.types().any(|t| t.has_infer_types())
629    }
630
631    pub fn is_of_param(&self, ty: Ty<'tcx>) -> bool {
632        match ty.kind() {
633            ty::Param(_) => true,
634            ty::Alias(_, p @ ty::AliasTy { kind: ty::Projection { .. }, .. }) => {
635                self.is_of_param(p.self_ty())
636            }
637            _ => false,
638        }
639    }
640
641    fn is_self_referential_projection(&self, p: ty::PolyProjectionPredicate<'tcx>) -> bool {
642        if let Some(ty) = p.term().skip_binder().as_type() {
643            #[allow(non_exhaustive_omitted_patterns)] match ty.kind() {
    ty::Alias(_, proj @ ty::AliasTy { kind: ty::Projection { .. }, .. }) if
        proj == &p.skip_binder().projection_term.expect_ty() => true,
    _ => false,
}matches!(ty.kind(), ty::Alias(_, proj @ ty::AliasTy { kind: ty::Projection { .. }, .. }) if proj == &p.skip_binder().projection_term.expect_ty())
644        } else {
645            false
646        }
647    }
648
649    fn evaluate_nested_obligations(
650        &self,
651        ty: Ty<'_>,
652        nested: impl Iterator<Item = PredicateObligation<'tcx>>,
653        computed_clauses: &mut FxIndexSet<ty::Clause<'tcx>>,
654        fresh_preds: &mut FxIndexSet<ty::Predicate<'tcx>>,
655        predicates: &mut VecDeque<ty::PolyTraitPredicate<'tcx>>,
656        selcx: &mut SelectionContext<'_, 'tcx>,
657    ) -> bool {
658        let dummy_cause = ObligationCause::dummy();
659
660        for obligation in nested {
661            let is_new_pred =
662                fresh_preds.insert(self.clean_pred(selcx.infcx, obligation.predicate));
663
664            // Resolve any inference variables that we can, to help selection succeed
665            let predicate = selcx.infcx.resolve_vars_if_possible(obligation.predicate);
666
667            // We only add a predicate as a user-displayable bound if
668            // it involves a generic parameter, and doesn't contain
669            // any inference variables.
670            //
671            // Displaying a bound involving a concrete type (instead of a generic
672            // parameter) would be pointless, since it's always true
673            // (e.g. u8: Copy)
674            // Displaying an inference variable is impossible, since they're
675            // an internal compiler detail without a defined visual representation
676            //
677            // We check this by calling is_of_param on the relevant types
678            // from the various possible predicates
679
680            let bound_predicate = predicate.kind();
681            match bound_predicate.skip_binder() {
682                ty::PredicateKind::Clause(ty::ClauseKind::Trait(p)) => {
683                    // Add this to `predicates` so that we end up calling `select`
684                    // with it. If this predicate ends up being unimplemented,
685                    // then `evaluate_predicates` will handle adding it the `ParamEnv`
686                    // if possible.
687                    predicates.push_back(bound_predicate.rebind(p));
688                }
689                ty::PredicateKind::Clause(ty::ClauseKind::HostEffect(p)) => {
690                    let p = bound_predicate.rebind(p);
691                    if self.is_param_no_infer(p.skip_binder().trait_ref.args) && is_new_pred {
692                        self.add_user_clause(computed_clauses, predicate.expect_clause());
693                    }
694                }
695                ty::PredicateKind::Clause(ty::ClauseKind::Projection(p)) => {
696                    let p = bound_predicate.rebind(p);
697                    {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/auto_trait.rs:697",
                        "rustc_trait_selection::traits::auto_trait",
                        ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/auto_trait.rs"),
                        ::tracing_core::__macro_support::Option::Some(697u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::auto_trait"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                let mut iter = __CALLSITE.metadata().fields().iter();
                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&format_args!("evaluate_nested_obligations: examining projection predicate {0:?}",
                                                    predicate) as &dyn Value))])
            });
    } else { ; }
};debug!(
698                        "evaluate_nested_obligations: examining projection predicate {:?}",
699                        predicate
700                    );
701
702                    // As described above, we only want to display
703                    // bounds which include a generic parameter but don't include
704                    // an inference variable.
705                    // Additionally, we check if we've seen this predicate before,
706                    // to avoid rendering duplicate bounds to the user.
707                    if self.is_param_no_infer(p.skip_binder().projection_term.args)
708                        && !p.term().skip_binder().has_infer_types()
709                        && is_new_pred
710                    {
711                        {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/auto_trait.rs:711",
                        "rustc_trait_selection::traits::auto_trait",
                        ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/auto_trait.rs"),
                        ::tracing_core::__macro_support::Option::Some(711u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::auto_trait"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                let mut iter = __CALLSITE.metadata().fields().iter();
                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&format_args!("evaluate_nested_obligations: adding projection predicate to computed_clauses: {0:?}",
                                                    predicate) as &dyn Value))])
            });
    } else { ; }
};debug!(
712                            "evaluate_nested_obligations: adding projection predicate \
713                            to computed_clauses: {:?}",
714                            predicate
715                        );
716
717                        // Under unusual circumstances, we can end up with a self-referential
718                        // projection predicate. For example:
719                        // <T as MyType>::Value == <T as MyType>::Value
720                        // Not only is displaying this to the user pointless,
721                        // having it in the ParamEnv will cause an issue if we try to call
722                        // poly_project_and_unify_type on the predicate, since this kind of
723                        // predicate will normally never end up in a ParamEnv.
724                        //
725                        // For these reasons, we ignore these weird predicates,
726                        // ensuring that we're able to properly synthesize an auto trait impl
727                        if self.is_self_referential_projection(p) {
728                            {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/auto_trait.rs:728",
                        "rustc_trait_selection::traits::auto_trait",
                        ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/auto_trait.rs"),
                        ::tracing_core::__macro_support::Option::Some(728u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::auto_trait"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                let mut iter = __CALLSITE.metadata().fields().iter();
                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&format_args!("evaluate_nested_obligations: encountered a projection\n                                 predicate equating a type with itself! Skipping")
                                            as &dyn Value))])
            });
    } else { ; }
};debug!(
729                                "evaluate_nested_obligations: encountered a projection
730                                 predicate equating a type with itself! Skipping"
731                            );
732                        } else {
733                            self.add_user_clause(computed_clauses, predicate.expect_clause());
734                        }
735                    }
736
737                    // There are three possible cases when we project a predicate:
738                    //
739                    // 1. We encounter an error. This means that it's impossible for
740                    // our current type to implement the auto trait - there's bound
741                    // that we could add to our ParamEnv that would 'fix' this kind
742                    // of error, as it's not caused by an unimplemented type.
743                    //
744                    // 2. We successfully project the predicate (Ok(Some(_))), generating
745                    //  some subobligations. We then process these subobligations
746                    //  like any other generated sub-obligations.
747                    //
748                    // 3. We receive an 'ambiguous' result (Ok(None))
749                    // If we were actually trying to compile a crate,
750                    // we would need to re-process this obligation later.
751                    // However, all we care about is finding out what bounds
752                    // are needed for our type to implement a particular auto trait.
753                    // We've already added this obligation to our computed ParamEnv
754                    // above (if it was necessary). Therefore, we don't need
755                    // to do any further processing of the obligation.
756                    //
757                    // Note that we *must* try to project *all* projection predicates
758                    // we encounter, even ones without inference variable.
759                    // This ensures that we detect any projection errors,
760                    // which indicate that our type can *never* implement the given
761                    // auto trait. In that case, we will generate an explicit negative
762                    // impl (e.g. 'impl !Send for MyType'). However, we don't
763                    // try to process any of the generated subobligations -
764                    // they contain no new information, since we already know
765                    // that our type implements the projected-through trait,
766                    // and can lead to weird region issues.
767                    //
768                    // Normally, we'll generate a negative impl as a result of encountering
769                    // a type with an explicit negative impl of an auto trait
770                    // (for example, raw pointers have !Send and !Sync impls)
771                    // However, through some **interesting** manipulations of the type
772                    // system, it's actually possible to write a type that never
773                    // implements an auto trait due to a projection error, not a normal
774                    // negative impl error. To properly handle this case, we need
775                    // to ensure that we catch any potential projection errors,
776                    // and turn them into an explicit negative impl for our type.
777                    {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/auto_trait.rs:777",
                        "rustc_trait_selection::traits::auto_trait",
                        ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/auto_trait.rs"),
                        ::tracing_core::__macro_support::Option::Some(777u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::auto_trait"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                let mut iter = __CALLSITE.metadata().fields().iter();
                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&format_args!("Projecting and unifying projection predicate {0:?}",
                                                    predicate) as &dyn Value))])
            });
    } else { ; }
};debug!("Projecting and unifying projection predicate {:?}", predicate);
778
779                    match project::poly_project_and_unify_term(selcx, &obligation.with(self.tcx, p))
780                    {
781                        ProjectAndUnifyResult::MismatchedProjectionTypes(e) => {
782                            {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/auto_trait.rs:782",
                        "rustc_trait_selection::traits::auto_trait",
                        ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/auto_trait.rs"),
                        ::tracing_core::__macro_support::Option::Some(782u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::auto_trait"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                let mut iter = __CALLSITE.metadata().fields().iter();
                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&format_args!("evaluate_nested_obligations: Unable to unify predicate \'{0:?}\' \'{1:?}\', bailing out",
                                                    ty, e) as &dyn Value))])
            });
    } else { ; }
};debug!(
783                                "evaluate_nested_obligations: Unable to unify predicate \
784                                 '{:?}' '{:?}', bailing out",
785                                ty, e
786                            );
787                            return false;
788                        }
789                        ProjectAndUnifyResult::Recursive => {
790                            {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/auto_trait.rs:790",
                        "rustc_trait_selection::traits::auto_trait",
                        ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/auto_trait.rs"),
                        ::tracing_core::__macro_support::Option::Some(790u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::auto_trait"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                let mut iter = __CALLSITE.metadata().fields().iter();
                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&format_args!("evaluate_nested_obligations: recursive projection predicate")
                                            as &dyn Value))])
            });
    } else { ; }
};debug!("evaluate_nested_obligations: recursive projection predicate");
791                            return false;
792                        }
793                        ProjectAndUnifyResult::Holds(v) => {
794                            // We only care about sub-obligations
795                            // when we started out trying to unify
796                            // some inference variables. See the comment above
797                            // for more information
798                            if p.term().skip_binder().has_infer_types() {
799                                if !self.evaluate_nested_obligations(
800                                    ty,
801                                    v.into_iter(),
802                                    computed_clauses,
803                                    fresh_preds,
804                                    predicates,
805                                    selcx,
806                                ) {
807                                    return false;
808                                }
809                            }
810                        }
811                        ProjectAndUnifyResult::FailedNormalization => {
812                            // It's ok not to make progress when have no inference variables -
813                            // in that case, we were only performing unification to check if an
814                            // error occurred (which would indicate that it's impossible for our
815                            // type to implement the auto trait).
816                            // However, we should always make progress (either by generating
817                            // subobligations or getting an error) when we started off with
818                            // inference variables
819                            if p.term().skip_binder().has_infer_types() {
820                                {
    ::core::panicking::panic_fmt(format_args!("Unexpected result when selecting {0:?} {1:?}",
            ty, obligation));
}panic!("Unexpected result when selecting {ty:?} {obligation:?}")
821                            }
822                        }
823                    }
824                }
825                ty::PredicateKind::Clause(ty::ClauseKind::RegionOutlives(binder)) => {
826                    let binder = bound_predicate.rebind(binder);
827                    selcx.infcx.enter_forall(binder, |pred| {
828                        selcx.infcx.register_region_outlives_constraint(
829                            pred,
830                            ty::VisibleForLeakCheck::Yes,
831                            &dummy_cause,
832                        );
833                    });
834                }
835                ty::PredicateKind::Clause(ty::ClauseKind::TypeOutlives(binder)) => {
836                    let binder = bound_predicate.rebind(binder);
837                    match (
838                        binder.no_bound_vars(),
839                        binder.map_bound_ref(|pred| pred.0).no_bound_vars(),
840                    ) {
841                        (None, Some(t_a)) => {
842                            selcx.infcx.register_type_outlives_constraint(
843                                t_a,
844                                selcx.infcx.tcx.lifetimes.re_static,
845                                &dummy_cause,
846                            );
847                        }
848                        (Some(ty::OutlivesPredicate(t_a, r_b)), _) => {
849                            selcx.infcx.register_type_outlives_constraint(t_a, r_b, &dummy_cause);
850                        }
851                        _ => {}
852                    };
853                }
854                ty::PredicateKind::ConstEquate(c1, c2) => {
855                    let evaluate = |c: ty::Const<'tcx>| {
856                        if let ty::ConstKind::Alias(_, alias_const) = c.kind() {
857                            let ct =
858                                super::try_evaluate_const(selcx.infcx, c, obligation.param_env);
859
860                            if let Err(EvaluateConstErr::InvalidConstParamTy(_)) = ct {
861                                let span = alias_const.kind.def_span(self.tcx);
862                                self.tcx
863                                    .dcx()
864                                    .emit_err(UnableToConstructConstantValue { span, alias_const });
865                            }
866
867                            ct
868                        } else {
869                            Ok(c)
870                        }
871                    };
872
873                    match (evaluate(c1), evaluate(c2)) {
874                        (Ok(c1), Ok(c2)) => {
875                            match selcx.infcx.at(&obligation.cause, obligation.param_env).eq(
876                                DefineOpaqueTypes::Yes,
877                                c1,
878                                c2,
879                            ) {
880                                Ok(_) => (),
881                                Err(_) => return false,
882                            }
883                        }
884                        _ => return false,
885                    }
886                }
887
888                // There's not really much we can do with these predicates -
889                // we start out with a `ParamEnv` with no inference variables,
890                // and these don't correspond to adding any new bounds to
891                // the `ParamEnv`.
892                ty::PredicateKind::Clause(ty::ClauseKind::WellFormed(..))
893                | ty::PredicateKind::Clause(ty::ClauseKind::ConstArgHasType(..))
894                | ty::PredicateKind::NormalizesTo(..)
895                | ty::PredicateKind::DynCompatible(..)
896                | ty::PredicateKind::Subtype(..)
897                | ty::PredicateKind::Coerce(..)
898                | ty::PredicateKind::Clause(ty::ClauseKind::UnstableFeature(_)) => {}
899                ty::PredicateKind::Ambiguous => return false,
900
901                // FIXME(generic_const_exprs): you can absolutely add this as a where clauses
902                ty::PredicateKind::Clause(ty::ClauseKind::ConstEvaluatable(..)) => return false,
903            };
904        }
905        true
906    }
907
908    pub fn clean_pred(
909        &self,
910        infcx: &InferCtxt<'tcx>,
911        p: ty::Predicate<'tcx>,
912    ) -> ty::Predicate<'tcx> {
913        p.fold_with(&mut TypeFreshener::new(infcx))
914    }
915}