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