Skip to main content

rustc_trait_selection/traits/specialize/
mod.rs

1//! Logic and data structures related to impl specialization, explained in
2//! greater detail below.
3//!
4//! At the moment, this implementation support only the simple "chain" rule:
5//! If any two impls overlap, one must be a strict subset of the other.
6//!
7//! See the [rustc dev guide] for a bit more detail on how specialization
8//! fits together with the rest of the trait machinery.
9//!
10//! [rustc dev guide]: https://rustc-dev-guide.rust-lang.org/traits/specialization.html
11
12pub mod specialization_graph;
13
14use rustc_data_structures::fx::FxIndexSet;
15use rustc_errors::codes::*;
16use rustc_errors::{Diag, EmissionGuarantee};
17use rustc_hir::def_id::{DefId, LocalDefId};
18use rustc_infer::traits::Obligation;
19use rustc_middle::bug;
20use rustc_middle::query::LocalCrate;
21use rustc_middle::traits::query::NoSolution;
22use rustc_middle::ty::print::PrintTraitRefExt as _;
23use rustc_middle::ty::{
24    self, GenericArgsRef, Ty, TyCtxt, TypeVisitableExt, TypingMode, Unnormalized,
25};
26use rustc_session::lint::builtin::COHERENCE_LEAK_CHECK;
27use rustc_span::{DUMMY_SP, ErrorGuaranteed, Span, sym};
28use specialization_graph::GraphExt;
29use tracing::{debug, instrument};
30
31use crate::diagnostics::NegativePositiveConflict;
32use crate::error_reporting::traits::to_pretty_impl_header;
33use crate::infer::{InferCtxt, TyCtxtInferExt};
34use crate::traits::select::IntercrateAmbiguityCause;
35use crate::traits::{
36    FutureCompatOverlapErrorKind, ObligationCause, ObligationCtxt, coherence,
37    predicates_for_generics,
38};
39
40/// Information pertinent to an overlapping impl error.
41#[derive(#[automatically_derived]
impl<'tcx> ::core::fmt::Debug for OverlapError<'tcx> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        let names: &'static _ =
            &["with_impl", "trait_ref", "self_ty",
                        "intercrate_ambiguity_causes", "involves_placeholder",
                        "overflowing_predicates"];
        let values: &[&dyn ::core::fmt::Debug] =
            &[&self.with_impl, &self.trait_ref, &self.self_ty,
                        &self.intercrate_ambiguity_causes,
                        &self.involves_placeholder, &&self.overflowing_predicates];
        ::core::fmt::Formatter::debug_struct_fields_finish(f, "OverlapError",
            names, values)
    }
}Debug)]
42pub struct OverlapError<'tcx> {
43    pub with_impl: DefId,
44    pub trait_ref: ty::TraitRef<'tcx>,
45    pub self_ty: Option<Ty<'tcx>>,
46    pub intercrate_ambiguity_causes: FxIndexSet<IntercrateAmbiguityCause<'tcx>>,
47    pub involves_placeholder: bool,
48    pub overflowing_predicates: Vec<ty::Predicate<'tcx>>,
49}
50
51/// Given the generic parameters for the requested impl, translate it to the generic parameters
52/// appropriate for the actual item definition (whether it be in that impl,
53/// a parent impl, or the trait).
54///
55/// When we have selected one impl, but are actually using item definitions from
56/// a parent impl providing a default, we need a way to translate between the
57/// type parameters of the two impls. Here the `source_impl` is the one we've
58/// selected, and `source_args` is its generic parameters.
59/// And `target_node` is the impl/trait we're actually going to get the
60/// definition from. The resulting instantiation will map from `target_node`'s
61/// generics to `source_impl`'s generics as instantiated by `source_args`.
62///
63/// For example, consider the following scenario:
64///
65/// ```ignore (illustrative)
66/// trait Foo { ... }
67/// impl<T, U> Foo for (T, U) { ... }  // target impl
68/// impl<V> Foo for (V, V) { ... }     // source impl
69/// ```
70///
71/// Suppose we have selected "source impl" with `V` instantiated with `u32`.
72/// This function will produce an instantiation with `T` and `U` both mapping to `u32`.
73///
74/// where-clauses add some trickiness here, because they can be used to "define"
75/// an argument indirectly:
76///
77/// ```ignore (illustrative)
78/// impl<'a, I, T: 'a> Iterator for Cloned<I>
79///    where I: Iterator<Item = &'a T>, T: Clone
80/// ```
81///
82/// In a case like this, the instantiation for `T` is determined indirectly,
83/// through associated type projection. We deal with such cases by using
84/// *fulfillment* to relate the two impls, requiring that all projections are
85/// resolved.
86pub fn translate_args<'tcx>(
87    infcx: &InferCtxt<'tcx>,
88    param_env: ty::ParamEnv<'tcx>,
89    source_impl: DefId,
90    source_args: GenericArgsRef<'tcx>,
91    target_node: specialization_graph::Node,
92) -> GenericArgsRef<'tcx> {
93    translate_args_with_cause(
94        infcx,
95        param_env,
96        source_impl,
97        source_args,
98        target_node,
99        &ObligationCause::dummy(),
100    )
101}
102
103/// Like [translate_args], but obligations from the parent implementation
104/// are registered with the provided `ObligationCause`.
105///
106/// This is for reporting *region* errors from those bounds. Type errors should
107/// not happen because the specialization graph already checks for those, and
108/// will result in an ICE.
109pub fn translate_args_with_cause<'tcx>(
110    infcx: &InferCtxt<'tcx>,
111    param_env: ty::ParamEnv<'tcx>,
112    source_impl: DefId,
113    source_args: GenericArgsRef<'tcx>,
114    target_node: specialization_graph::Node,
115    cause: &ObligationCause<'tcx>,
116) -> GenericArgsRef<'tcx> {
117    {
    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/specialize/mod.rs:117",
                        "rustc_trait_selection::traits::specialize",
                        ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/specialize/mod.rs"),
                        ::tracing_core::__macro_support::Option::Some(117u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::specialize"),
                        ::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!("translate_args({0:?}, {1:?}, {2:?}, {3:?})",
                                                    param_env, source_impl, source_args, target_node) as
                                            &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!(
118        "translate_args({:?}, {:?}, {:?}, {:?})",
119        param_env, source_impl, source_args, target_node
120    );
121    let source_trait_ref =
122        infcx.tcx.impl_trait_ref(source_impl).instantiate(infcx.tcx, source_args).skip_norm_wip();
123
124    // translate the Self and Param parts of the generic parameters, since those
125    // vary across impls
126    let target_args = match target_node {
127        specialization_graph::Node::Impl(target_impl) => {
128            // no need to translate if we're targeting the impl we started with
129            if source_impl == target_impl {
130                return source_args;
131            }
132
133            fulfill_implication(infcx, param_env, source_trait_ref, source_impl, target_impl, cause)
134                .unwrap_or_else(|_| {
135                    ::rustc_middle::util::bug::bug_fmt(format_args!("When translating generic parameters from {0:?} to {1:?}, the expected specialization failed to hold",
        source_impl, target_impl))bug!(
136                        "When translating generic parameters from {source_impl:?} to \
137                        {target_impl:?}, the expected specialization failed to hold"
138                    )
139                })
140        }
141        specialization_graph::Node::Trait(..) => source_trait_ref.args,
142    };
143
144    // directly inherent the method generics, since those do not vary across impls
145    source_args.rebase_onto(infcx.tcx, source_impl, target_args)
146}
147
148/// Attempt to fulfill all obligations of `target_impl` after unification with
149/// `source_trait_ref`. If successful, returns the generic parameters for *all* the
150/// generics of `target_impl`, including both those needed to unify with
151/// `source_trait_ref` and those whose identity is determined via a where
152/// clause in the impl.
153fn fulfill_implication<'tcx>(
154    infcx: &InferCtxt<'tcx>,
155    param_env: ty::ParamEnv<'tcx>,
156    source_trait_ref: ty::TraitRef<'tcx>,
157    source_impl: DefId,
158    target_impl: DefId,
159    cause: &ObligationCause<'tcx>,
160) -> Result<GenericArgsRef<'tcx>, NoSolution> {
161    {
    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/specialize/mod.rs:161",
                        "rustc_trait_selection::traits::specialize",
                        ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/specialize/mod.rs"),
                        ::tracing_core::__macro_support::Option::Some(161u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::specialize"),
                        ::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!("fulfill_implication({0:?}, trait_ref={1:?} |- {2:?} applies)",
                                                    param_env, source_trait_ref, target_impl) as
                                            &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!(
162        "fulfill_implication({:?}, trait_ref={:?} |- {:?} applies)",
163        param_env, source_trait_ref, target_impl
164    );
165
166    let ocx = ObligationCtxt::new(infcx);
167    let source_trait_ref = ocx.normalize(cause, param_env, Unnormalized::new_wip(source_trait_ref));
168
169    if !ocx.evaluate_obligations_error_on_ambiguity().is_empty() {
170        infcx.dcx().span_delayed_bug(
171            infcx.tcx.def_span(source_impl),
172            ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("failed to fully normalize {0}",
                source_trait_ref))
    })format!("failed to fully normalize {source_trait_ref}"),
173        );
174        return Err(NoSolution);
175    }
176
177    let target_args = infcx.fresh_args_for_item(DUMMY_SP, target_impl);
178    let target_trait_ref = ocx.normalize(
179        cause,
180        param_env,
181        infcx.tcx.impl_trait_ref(target_impl).instantiate(infcx.tcx, target_args),
182    );
183
184    // do the impls unify? If not, no specialization.
185    ocx.eq(cause, param_env, source_trait_ref, target_trait_ref)?;
186
187    // Now check that the source trait ref satisfies all the where clauses of the target impl.
188    // This is not just for correctness; we also need this to constrain any params that may
189    // only be referenced via projection predicates.
190    let clauses = infcx.tcx.clauses_of(target_impl).instantiate(infcx.tcx, target_args);
191    let obligations = predicates_for_generics(
192        |_, _| cause.clone(),
193        |clause| ocx.normalize(cause, param_env, clause),
194        param_env,
195        clauses,
196    );
197    ocx.register_obligations(obligations);
198
199    let errors = ocx.evaluate_obligations_error_on_ambiguity();
200    if !errors.is_empty() {
201        // no dice!
202        {
    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/specialize/mod.rs:202",
                        "rustc_trait_selection::traits::specialize",
                        ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/specialize/mod.rs"),
                        ::tracing_core::__macro_support::Option::Some(202u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::specialize"),
                        ::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!("fulfill_implication: for impls on {0:?} and {1:?}, could not fulfill: {2:?} given {3:?}",
                                                    source_trait_ref, target_trait_ref, errors,
                                                    param_env.caller_bounds()) as
                                            &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!(
203            "fulfill_implication: for impls on {:?} and {:?}, \
204                 could not fulfill: {:?} given {:?}",
205            source_trait_ref,
206            target_trait_ref,
207            errors,
208            param_env.caller_bounds()
209        );
210        return Err(NoSolution);
211    }
212
213    {
    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/specialize/mod.rs:213",
                        "rustc_trait_selection::traits::specialize",
                        ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/specialize/mod.rs"),
                        ::tracing_core::__macro_support::Option::Some(213u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::specialize"),
                        ::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!("fulfill_implication: an impl for {0:?} specializes {1:?}",
                                                    source_trait_ref, target_trait_ref) as
                                            &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!(
214        "fulfill_implication: an impl for {:?} specializes {:?}",
215        source_trait_ref, target_trait_ref
216    );
217
218    // Now resolve the *generic parameters* we built for the target earlier, replacing
219    // the inference variables inside with whatever we got from fulfillment.
220    Ok(infcx.resolve_vars_if_possible(target_args))
221}
222
223pub(super) fn specialization_enabled_in(tcx: TyCtxt<'_>, _: LocalCrate) -> bool {
224    tcx.features().specialization() || tcx.features().min_specialization()
225}
226
227/// Is `specializing_impl_def_id` a specialization of `parent_impl_def_id`?
228///
229/// For every type that could apply to `specializing_impl_def_id`, we prove that
230/// the `parent_impl_def_id` also applies (i.e. it has a valid impl header and
231/// its where-clauses hold).
232///
233/// For the purposes of const traits, we also check that the specializing
234/// impl is not more restrictive than the parent impl. That is, if the
235/// `parent_impl_def_id` is a const impl (conditionally based off of some `[const]`
236/// bounds), then `specializing_impl_def_id` must also be const for the same
237/// set of types.
238#[allow(clippy :: suspicious_else_formatting)]
{
    let __tracing_attr_span;
    let __tracing_attr_guard;
    if ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() ||
            { false } {
        __tracing_attr_span =
            {
                use ::tracing::__macro_support::Callsite as _;
                static __CALLSITE: ::tracing::callsite::DefaultCallsite =
                    {
                        static META: ::tracing::Metadata<'static> =
                            {
                                ::tracing_core::metadata::Metadata::new("specializes",
                                    "rustc_trait_selection::traits::specialize",
                                    ::tracing::Level::DEBUG,
                                    ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/specialize/mod.rs"),
                                    ::tracing_core::__macro_support::Option::Some(238u32),
                                    ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::specialize"),
                                    ::tracing_core::field::FieldSet::new(&[{
                                                        const NAME:
                                                            ::tracing::__macro_support::FieldName<{
                                                                ::tracing::__macro_support::FieldName::len("specializing_impl_def_id")
                                                            }> =
                                                            ::tracing::__macro_support::FieldName::new("specializing_impl_def_id");
                                                        NAME.as_str()
                                                    },
                                                    {
                                                        const NAME:
                                                            ::tracing::__macro_support::FieldName<{
                                                                ::tracing::__macro_support::FieldName::len("parent_impl_def_id")
                                                            }> =
                                                            ::tracing::__macro_support::FieldName::new("parent_impl_def_id");
                                                        NAME.as_str()
                                                    }], ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                    ::tracing::metadata::Kind::SPAN)
                            };
                        ::tracing::callsite::DefaultCallsite::new(&META)
                    };
                let mut interest = ::tracing::subscriber::Interest::never();
                if ::tracing::Level::DEBUG <=
                                    ::tracing::level_filters::STATIC_MAX_LEVEL &&
                                ::tracing::Level::DEBUG <=
                                    ::tracing::level_filters::LevelFilter::current() &&
                            { interest = __CALLSITE.interest(); !interest.is_never() }
                        &&
                        ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                            interest) {
                    let meta = __CALLSITE.metadata();
                    ::tracing::Span::new(meta,
                        &{
                                #[allow(unused_imports)]
                                use ::tracing::field::{debug, display, Value};
                                meta.fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&specializing_impl_def_id)
                                                            as &dyn ::tracing::field::Value)),
                                                (::tracing::__macro_support::Option::Some(&::tracing::field::debug(&parent_impl_def_id)
                                                            as &dyn ::tracing::field::Value))])
                            })
                } else {
                    let span =
                        ::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
                    {};
                    span
                }
            };
        __tracing_attr_guard = __tracing_attr_span.enter();
    }

    #[warn(clippy :: suspicious_else_formatting)]
    {

        #[allow(unknown_lints, unreachable_code, clippy ::
        diverging_sub_expression, clippy :: empty_loop, clippy ::
        let_unit_value, clippy :: let_with_type_underscore, clippy ::
        needless_return, clippy :: unreachable)]
        if false {
            let __tracing_attr_fake_return: bool = loop {};
            return __tracing_attr_fake_return;
        }
        {
            if !tcx.specialization_enabled_in(specializing_impl_def_id.krate)
                {
                let span = tcx.def_span(specializing_impl_def_id);
                if !span.allows_unstable(sym::specialization) &&
                        !span.allows_unstable(sym::min_specialization) {
                    return false;
                }
            }
            let specializing_impl_trait_header =
                tcx.impl_trait_header(specializing_impl_def_id);
            if specializing_impl_trait_header.polarity !=
                    tcx.impl_polarity(parent_impl_def_id) {
                return false;
            }
            let param_env = tcx.param_env(specializing_impl_def_id);
            let infcx =
                tcx.infer_ctxt().build(TypingMode::non_body_analysis());
            let specializing_impl_trait_ref =
                specializing_impl_trait_header.trait_ref.instantiate_identity();
            let cause = &ObligationCause::dummy();
            {
                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/specialize/mod.rs:287",
                                    "rustc_trait_selection::traits::specialize",
                                    ::tracing::Level::DEBUG,
                                    ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/specialize/mod.rs"),
                                    ::tracing_core::__macro_support::Option::Some(287u32),
                                    ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::specialize"),
                                    ::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!("fulfill_implication({0:?}, trait_ref={1:?} |- {2:?} applies)",
                                                                param_env, specializing_impl_trait_ref, parent_impl_def_id)
                                                        as &dyn ::tracing::field::Value))])
                        });
                } else { ; }
            };
            let ocx = ObligationCtxt::new(&infcx);
            let specializing_impl_trait_ref =
                ocx.normalize(cause, param_env, specializing_impl_trait_ref);
            if !ocx.evaluate_obligations_error_on_ambiguity().is_empty() {
                infcx.dcx().span_delayed_bug(infcx.tcx.def_span(specializing_impl_def_id),
                    ::alloc::__export::must_use({
                            ::alloc::fmt::format(format_args!("failed to fully normalize {0}",
                                    specializing_impl_trait_ref))
                        }));
                return false;
            }
            let parent_args =
                infcx.fresh_args_for_item(DUMMY_SP, parent_impl_def_id);
            let parent_impl_trait_ref =
                ocx.normalize(cause, param_env,
                    infcx.tcx.impl_trait_ref(parent_impl_def_id).instantiate(infcx.tcx,
                        parent_args));
            let Ok(()) =
                ocx.eq(cause, param_env, specializing_impl_trait_ref,
                    parent_impl_trait_ref) else { return false; };
            let clauses =
                infcx.tcx.clauses_of(parent_impl_def_id).instantiate(infcx.tcx,
                    parent_args);
            let obligations =
                predicates_for_generics(|_, _| cause.clone(),
                    |clause| ocx.normalize(cause, param_env, clause), param_env,
                    clauses);
            ocx.register_obligations(obligations);
            let errors = ocx.evaluate_obligations_error_on_ambiguity();
            if !errors.is_empty() {
                {
                    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/specialize/mod.rs:333",
                                        "rustc_trait_selection::traits::specialize",
                                        ::tracing::Level::DEBUG,
                                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/specialize/mod.rs"),
                                        ::tracing_core::__macro_support::Option::Some(333u32),
                                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::specialize"),
                                        ::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!("fulfill_implication: for impls on {0:?} and {1:?}, could not fulfill: {2:?} given {3:?}",
                                                                    specializing_impl_trait_ref, parent_impl_trait_ref, errors,
                                                                    param_env.caller_bounds()) as
                                                            &dyn ::tracing::field::Value))])
                            });
                    } else { ; }
                };
                return false;
            }
            if tcx.is_conditionally_const(parent_impl_def_id) {
                if !tcx.is_conditionally_const(specializing_impl_def_id) {
                    return false;
                }
                let const_conditions =
                    infcx.tcx.const_conditions(parent_impl_def_id).instantiate(infcx.tcx,
                        parent_args);
                let const_conditions =
                    const_conditions.into_iter().map(|(trait_ref, span)|
                            (ocx.normalize(cause, param_env, trait_ref), span));
                ocx.register_obligations(const_conditions.into_iter().map(|(trait_ref,
                                _)|
                            {
                                Obligation::new(infcx.tcx, cause.clone(), param_env,
                                    trait_ref.to_host_effect_clause(infcx.tcx,
                                        ty::BoundConstness::Maybe))
                            }));
                let errors = ocx.evaluate_obligations_error_on_ambiguity();
                if !errors.is_empty() {
                    {
                        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/specialize/mod.rs:369",
                                            "rustc_trait_selection::traits::specialize",
                                            ::tracing::Level::DEBUG,
                                            ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/specialize/mod.rs"),
                                            ::tracing_core::__macro_support::Option::Some(369u32),
                                            ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::specialize"),
                                            ::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!("fulfill_implication: for impls on {0:?} and {1:?}, could not fulfill: {2:?} given {3:?}",
                                                                        specializing_impl_trait_ref, parent_impl_trait_ref, errors,
                                                                        param_env.caller_bounds()) as
                                                                &dyn ::tracing::field::Value))])
                                });
                        } else { ; }
                    };
                    return false;
                }
            }
            {
                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/specialize/mod.rs:381",
                                    "rustc_trait_selection::traits::specialize",
                                    ::tracing::Level::DEBUG,
                                    ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/specialize/mod.rs"),
                                    ::tracing_core::__macro_support::Option::Some(381u32),
                                    ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::specialize"),
                                    ::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!("fulfill_implication: an impl for {0:?} specializes {1:?}",
                                                                specializing_impl_trait_ref, parent_impl_trait_ref) as
                                                        &dyn ::tracing::field::Value))])
                        });
                } else { ; }
            };
            true
        }
    }
}#[instrument(skip(tcx), level = "debug")]
239pub(super) fn specializes(
240    tcx: TyCtxt<'_>,
241    (specializing_impl_def_id, parent_impl_def_id): (DefId, DefId),
242) -> bool {
243    // We check that the specializing impl comes from a crate that has specialization enabled,
244    // or if the specializing impl is marked with `allow_internal_unstable`.
245    //
246    // We don't really care if the specialized impl (the parent) is in a crate that has
247    // specialization enabled, since it's not being specialized, and it's already been checked
248    // for coherence.
249    if !tcx.specialization_enabled_in(specializing_impl_def_id.krate) {
250        let span = tcx.def_span(specializing_impl_def_id);
251        if !span.allows_unstable(sym::specialization)
252            && !span.allows_unstable(sym::min_specialization)
253        {
254            return false;
255        }
256    }
257
258    let specializing_impl_trait_header = tcx.impl_trait_header(specializing_impl_def_id);
259
260    // We determine whether there's a subset relationship by:
261    //
262    // - replacing bound vars with placeholders in impl1,
263    // - assuming the where clauses for impl1,
264    // - instantiating impl2 with fresh inference variables,
265    // - unifying,
266    // - attempting to prove the where clauses for impl2
267    //
268    // The last three steps are encapsulated in `fulfill_implication`.
269    //
270    // See RFC 1210 for more details and justification.
271
272    // Currently we do not allow e.g., a negative impl to specialize a positive one
273    if specializing_impl_trait_header.polarity != tcx.impl_polarity(parent_impl_def_id) {
274        return false;
275    }
276
277    // create a parameter environment corresponding to an identity instantiation of the specializing impl,
278    // i.e. the most generic instantiation of the specializing impl.
279    let param_env = tcx.param_env(specializing_impl_def_id);
280
281    // Create an infcx, taking the predicates of the specializing impl as assumptions:
282    let infcx = tcx.infer_ctxt().build(TypingMode::non_body_analysis());
283
284    let specializing_impl_trait_ref =
285        specializing_impl_trait_header.trait_ref.instantiate_identity();
286    let cause = &ObligationCause::dummy();
287    debug!(
288        "fulfill_implication({:?}, trait_ref={:?} |- {:?} applies)",
289        param_env, specializing_impl_trait_ref, parent_impl_def_id
290    );
291
292    // Attempt to prove that the parent impl applies, given all of the above.
293
294    let ocx = ObligationCtxt::new(&infcx);
295    let specializing_impl_trait_ref = ocx.normalize(cause, param_env, specializing_impl_trait_ref);
296
297    if !ocx.evaluate_obligations_error_on_ambiguity().is_empty() {
298        infcx.dcx().span_delayed_bug(
299            infcx.tcx.def_span(specializing_impl_def_id),
300            format!("failed to fully normalize {specializing_impl_trait_ref}"),
301        );
302        return false;
303    }
304
305    let parent_args = infcx.fresh_args_for_item(DUMMY_SP, parent_impl_def_id);
306    let parent_impl_trait_ref = ocx.normalize(
307        cause,
308        param_env,
309        infcx.tcx.impl_trait_ref(parent_impl_def_id).instantiate(infcx.tcx, parent_args),
310    );
311
312    // do the impls unify? If not, no specialization.
313    let Ok(()) = ocx.eq(cause, param_env, specializing_impl_trait_ref, parent_impl_trait_ref)
314    else {
315        return false;
316    };
317
318    // Now check that the source trait ref satisfies all the where clauses of the target impl.
319    // This is not just for correctness; we also need this to constrain any params that may
320    // only be referenced via projection predicates.
321    let clauses = infcx.tcx.clauses_of(parent_impl_def_id).instantiate(infcx.tcx, parent_args);
322    let obligations = predicates_for_generics(
323        |_, _| cause.clone(),
324        |clause| ocx.normalize(cause, param_env, clause),
325        param_env,
326        clauses,
327    );
328    ocx.register_obligations(obligations);
329
330    let errors = ocx.evaluate_obligations_error_on_ambiguity();
331    if !errors.is_empty() {
332        // no dice!
333        debug!(
334            "fulfill_implication: for impls on {:?} and {:?}, \
335                 could not fulfill: {:?} given {:?}",
336            specializing_impl_trait_ref,
337            parent_impl_trait_ref,
338            errors,
339            param_env.caller_bounds()
340        );
341        return false;
342    }
343
344    // If the parent impl is const, then the specializing impl must be const,
345    // and it must not be *more restrictive* than the parent impl (that is,
346    // it cannot be const in fewer cases than the parent impl).
347    if tcx.is_conditionally_const(parent_impl_def_id) {
348        if !tcx.is_conditionally_const(specializing_impl_def_id) {
349            return false;
350        }
351
352        let const_conditions =
353            infcx.tcx.const_conditions(parent_impl_def_id).instantiate(infcx.tcx, parent_args);
354        let const_conditions = const_conditions
355            .into_iter()
356            .map(|(trait_ref, span)| (ocx.normalize(cause, param_env, trait_ref), span));
357        ocx.register_obligations(const_conditions.into_iter().map(|(trait_ref, _)| {
358            Obligation::new(
359                infcx.tcx,
360                cause.clone(),
361                param_env,
362                trait_ref.to_host_effect_clause(infcx.tcx, ty::BoundConstness::Maybe),
363            )
364        }));
365
366        let errors = ocx.evaluate_obligations_error_on_ambiguity();
367        if !errors.is_empty() {
368            // no dice!
369            debug!(
370                "fulfill_implication: for impls on {:?} and {:?}, \
371                 could not fulfill: {:?} given {:?}",
372                specializing_impl_trait_ref,
373                parent_impl_trait_ref,
374                errors,
375                param_env.caller_bounds()
376            );
377            return false;
378        }
379    }
380
381    debug!(
382        "fulfill_implication: an impl for {:?} specializes {:?}",
383        specializing_impl_trait_ref, parent_impl_trait_ref
384    );
385
386    true
387}
388
389/// Query provider for `specialization_graph_of`.
390pub(super) fn specialization_graph_provider(
391    tcx: TyCtxt<'_>,
392    trait_id: DefId,
393) -> Result<&'_ specialization_graph::Graph, ErrorGuaranteed> {
394    let mut sg = specialization_graph::Graph::new();
395    let overlap_mode = specialization_graph::OverlapMode::get(tcx, trait_id);
396
397    let mut trait_impls: Vec<_> = tcx.all_impls(trait_id).collect();
398
399    // The coherence checking implementation seems to rely on impls being
400    // iterated over (roughly) in definition order, so we are sorting by
401    // negated `CrateNum` (so remote definitions are visited first) and then
402    // by a flattened version of the `DefIndex`.
403    trait_impls
404        .sort_unstable_by_key(|def_id| (-(def_id.krate.as_u32() as i64), def_id.index.index()));
405
406    let mut errored = Ok(());
407
408    for impl_def_id in trait_impls {
409        if let Some(impl_def_id) = impl_def_id.as_local() {
410            // This is where impl overlap checking happens:
411            let insert_result = sg.insert(tcx, impl_def_id.to_def_id(), overlap_mode);
412            // Report error if there was one.
413            let (overlap, used_to_be_allowed) = match insert_result {
414                Err(overlap) => (Some(overlap), None),
415                Ok(Some(overlap)) => (Some(overlap.error), Some(overlap.kind)),
416                Ok(None) => (None, None),
417            };
418
419            if let Some(overlap) = overlap {
420                errored = errored.and(report_overlap_conflict(
421                    tcx,
422                    overlap,
423                    impl_def_id,
424                    used_to_be_allowed,
425                ));
426            }
427        } else {
428            let parent = tcx.impl_parent(impl_def_id).unwrap_or(trait_id);
429            sg.record_impl_from_cstore(tcx, parent, impl_def_id)
430        }
431    }
432    errored?;
433
434    Ok(tcx.arena.alloc(sg))
435}
436
437// This function is only used when
438// encountering errors and inlining
439// it negatively impacts perf.
440#[cold]
441#[inline(never)]
442fn report_overlap_conflict<'tcx>(
443    tcx: TyCtxt<'tcx>,
444    overlap: OverlapError<'tcx>,
445    impl_def_id: LocalDefId,
446    used_to_be_allowed: Option<FutureCompatOverlapErrorKind>,
447) -> Result<(), ErrorGuaranteed> {
448    let impl_polarity = tcx.impl_polarity(impl_def_id.to_def_id());
449    let other_polarity = tcx.impl_polarity(overlap.with_impl);
450    match (impl_polarity, other_polarity) {
451        (ty::ImplPolarity::Negative, ty::ImplPolarity::Positive) => {
452            Err(report_negative_positive_conflict(
453                tcx,
454                &overlap,
455                impl_def_id,
456                impl_def_id.to_def_id(),
457                overlap.with_impl,
458            ))
459        }
460
461        (ty::ImplPolarity::Positive, ty::ImplPolarity::Negative) => {
462            Err(report_negative_positive_conflict(
463                tcx,
464                &overlap,
465                impl_def_id,
466                overlap.with_impl,
467                impl_def_id.to_def_id(),
468            ))
469        }
470
471        _ => report_conflicting_impls(tcx, overlap, impl_def_id, used_to_be_allowed),
472    }
473}
474
475fn report_negative_positive_conflict<'tcx>(
476    tcx: TyCtxt<'tcx>,
477    overlap: &OverlapError<'tcx>,
478    local_impl_def_id: LocalDefId,
479    negative_impl_def_id: DefId,
480    positive_impl_def_id: DefId,
481) -> ErrorGuaranteed {
482    let mut diag = tcx.dcx().create_err(NegativePositiveConflict {
483        impl_span: tcx.def_span(local_impl_def_id),
484        trait_desc: overlap.trait_ref,
485        self_ty: overlap.self_ty,
486        negative_impl_span: tcx.span_of_impl(negative_impl_def_id),
487        positive_impl_span: tcx.span_of_impl(positive_impl_def_id),
488    });
489
490    for cause in &overlap.intercrate_ambiguity_causes {
491        cause.add_intercrate_ambiguity_hint(&mut diag);
492    }
493
494    diag.emit()
495}
496
497fn report_conflicting_impls<'tcx>(
498    tcx: TyCtxt<'tcx>,
499    overlap: OverlapError<'tcx>,
500    impl_def_id: LocalDefId,
501    used_to_be_allowed: Option<FutureCompatOverlapErrorKind>,
502) -> Result<(), ErrorGuaranteed> {
503    let impl_span = tcx.def_span(impl_def_id);
504
505    // Work to be done after we've built the Diag. We have to define it now
506    // because the lint emit methods don't return back the Diag that's passed
507    // in.
508    fn decorate<'tcx, G: EmissionGuarantee>(
509        tcx: TyCtxt<'tcx>,
510        overlap: &OverlapError<'tcx>,
511        impl_span: Span,
512        err: &mut Diag<'_, G>,
513    ) {
514        match tcx.span_of_impl(overlap.with_impl) {
515            Ok(span) => {
516                err.span_label(span, "first implementation here");
517
518                err.span_label(
519                    impl_span,
520                    ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("conflicting implementation{0}",
                overlap.self_ty.map_or_else(String::new,
                    |ty|
                        ::alloc::__export::must_use({
                                ::alloc::fmt::format(format_args!(" for `{0}`", ty))
                            }))))
    })format!(
521                        "conflicting implementation{}",
522                        overlap.self_ty.map_or_else(String::new, |ty| format!(" for `{ty}`"))
523                    ),
524                );
525            }
526            Err(cname) => {
527                let msg = match to_pretty_impl_header(tcx, overlap.with_impl) {
528                    Some(s) => {
529                        ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("conflicting implementation in crate `{0}`:\n- {1}",
                cname, s))
    })format!("conflicting implementation in crate `{cname}`:\n- {s}")
530                    }
531                    None => ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("conflicting implementation in crate `{0}`",
                cname))
    })format!("conflicting implementation in crate `{cname}`"),
532                };
533                err.note(msg);
534            }
535        }
536
537        for cause in &overlap.intercrate_ambiguity_causes {
538            cause.add_intercrate_ambiguity_hint(err);
539        }
540
541        if overlap.involves_placeholder {
542            coherence::add_placeholder_note(err);
543        }
544
545        if !overlap.overflowing_predicates.is_empty() {
546            coherence::suggest_increasing_recursion_limit(
547                tcx,
548                err,
549                &overlap.overflowing_predicates,
550            );
551        }
552    }
553
554    let msg = || {
555        ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("conflicting implementations of trait `{0}`{1}",
                overlap.trait_ref.print_trait_sugared(),
                overlap.self_ty.map_or_else(String::new,
                    |ty|
                        ::alloc::__export::must_use({
                                ::alloc::fmt::format(format_args!(" for type `{0}`", ty))
                            }))))
    })format!(
556            "conflicting implementations of trait `{}`{}",
557            overlap.trait_ref.print_trait_sugared(),
558            overlap.self_ty.map_or_else(String::new, |ty| format!(" for type `{ty}`")),
559        )
560    };
561
562    // Don't report overlap errors if the header references error
563    if let Err(err) = (overlap.trait_ref, overlap.self_ty).error_reported() {
564        return Err(err);
565    }
566
567    match used_to_be_allowed {
568        None => {
569            let reported = if overlap.with_impl.is_local()
570                || tcx.ensure_result().orphan_check_impl(impl_def_id).is_ok()
571            {
572                let mut err = tcx.dcx().struct_span_err(impl_span, msg());
573                err.code(E0119);
574                decorate(tcx, &overlap, impl_span, &mut err);
575                err.emit()
576            } else {
577                tcx.dcx().span_delayed_bug(impl_span, "impl should have failed the orphan check")
578            };
579            Err(reported)
580        }
581        Some(kind) => {
582            let lint = match kind {
583                FutureCompatOverlapErrorKind::LeakCheck => COHERENCE_LEAK_CHECK,
584            };
585            tcx.emit_node_span_lint(
586                lint,
587                tcx.local_def_id_to_hir_id(impl_def_id),
588                impl_span,
589                rustc_errors::DiagDecorator(|err| {
590                    err.primary_message(msg());
591                    decorate(tcx, &overlap, impl_span, err);
592                }),
593            );
594            Ok(())
595        }
596    }
597}