Skip to main content

rustc_trait_selection/traits/
coherence.rs

1//! See Rustc Dev Guide chapters on [trait-resolution] and [trait-specialization] for more info on
2//! how this works.
3//!
4//! [trait-resolution]: https://rustc-dev-guide.rust-lang.org/traits/resolution.html
5//! [trait-specialization]: https://rustc-dev-guide.rust-lang.org/traits/specialization.html
6
7use std::fmt::Debug;
8
9use rustc_data_structures::fx::{FxHashSet, FxIndexSet};
10use rustc_errors::{Diag, EmissionGuarantee};
11use rustc_hir::def::DefKind;
12use rustc_hir::def_id::{CRATE_DEF_ID, DefId};
13use rustc_hir::find_attr;
14use rustc_infer::infer::{DefineOpaqueTypes, InferCtxt, TyCtxtInferExt};
15use rustc_infer::traits::PredicateObligations;
16use rustc_macros::{TypeFoldable, TypeVisitable};
17use rustc_middle::bug;
18use rustc_middle::traits::query::NoSolution;
19use rustc_middle::traits::solve::{CandidateSource, Certainty, Goal};
20use rustc_middle::traits::specialization_graph::OverlapMode;
21use rustc_middle::ty::fast_reject::DeepRejectCtxt;
22use rustc_middle::ty::{
23    self, Ty, TyCtxt, TypeSuperVisitable, TypeVisitable, TypeVisitableExt, TypeVisitor, TypingMode,
24};
25pub use rustc_next_trait_solver::coherence::*;
26use rustc_next_trait_solver::solve::SolverDelegateEvalExt;
27use rustc_span::{DUMMY_SP, Span};
28use tracing::{debug, instrument, warn};
29
30use super::ObligationCtxt;
31use crate::error_reporting::traits::suggest_new_overflow_limit;
32use crate::infer::InferOk;
33use crate::solve::inspect::{InferCtxtProofTreeExt, InspectGoal, ProofTreeVisitor};
34use crate::solve::{SolverDelegate, deeply_normalize_for_diagnostics, inspect};
35use crate::traits::query::evaluate_obligation::InferCtxtExt;
36use crate::traits::select::IntercrateAmbiguityCause;
37use crate::traits::{
38    FulfillmentErrorCode, NormalizeExt, Obligation, ObligationCause, PredicateObligation,
39    SelectionContext, SkipLeakCheck, util,
40};
41
42/// The "header" of an impl is everything outside the body: a Self type, a trait
43/// ref (in the case of a trait impl), and a set of predicates (from the
44/// bounds / where-clauses).
45#[derive(#[automatically_derived]
impl<'tcx> ::core::clone::Clone for ImplHeader<'tcx> {
    #[inline]
    fn clone(&self) -> ImplHeader<'tcx> {
        ImplHeader {
            impl_def_id: ::core::clone::Clone::clone(&self.impl_def_id),
            impl_args: ::core::clone::Clone::clone(&self.impl_args),
            self_ty: ::core::clone::Clone::clone(&self.self_ty),
            trait_ref: ::core::clone::Clone::clone(&self.trait_ref),
            predicates: ::core::clone::Clone::clone(&self.predicates),
        }
    }
}Clone, #[automatically_derived]
impl<'tcx> ::core::fmt::Debug for ImplHeader<'tcx> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field5_finish(f, "ImplHeader",
            "impl_def_id", &self.impl_def_id, "impl_args", &self.impl_args,
            "self_ty", &self.self_ty, "trait_ref", &self.trait_ref,
            "predicates", &&self.predicates)
    }
}Debug, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeFoldable<::rustc_middle::ty::TyCtxt<'tcx>>
            for ImplHeader<'tcx> {
            fn try_fold_with<__F: ::rustc_middle::ty::FallibleTypeFolder<::rustc_middle::ty::TyCtxt<'tcx>>>(self,
                __folder: &mut __F) -> Result<Self, __F::Error> {
                Ok(match self {
                        ImplHeader {
                            impl_def_id: __binding_0,
                            impl_args: __binding_1,
                            self_ty: __binding_2,
                            trait_ref: __binding_3,
                            predicates: __binding_4 } => {
                            ImplHeader {
                                impl_def_id: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                impl_args: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?,
                                self_ty: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_2,
                                        __folder)?,
                                trait_ref: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_3,
                                        __folder)?,
                                predicates: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_4,
                                        __folder)?,
                            }
                        }
                    })
            }
            fn fold_with<__F: ::rustc_middle::ty::TypeFolder<::rustc_middle::ty::TyCtxt<'tcx>>>(self,
                __folder: &mut __F) -> Self {
                match self {
                    ImplHeader {
                        impl_def_id: __binding_0,
                        impl_args: __binding_1,
                        self_ty: __binding_2,
                        trait_ref: __binding_3,
                        predicates: __binding_4 } => {
                        ImplHeader {
                            impl_def_id: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            impl_args: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
                                __folder),
                            self_ty: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_2,
                                __folder),
                            trait_ref: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_3,
                                __folder),
                            predicates: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_4,
                                __folder),
                        }
                    }
                }
            }
        }
    };TypeFoldable, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeVisitable<::rustc_middle::ty::TyCtxt<'tcx>>
            for ImplHeader<'tcx> {
            fn visit_with<__V: ::rustc_middle::ty::TypeVisitor<::rustc_middle::ty::TyCtxt<'tcx>>>(&self,
                __visitor: &mut __V) -> __V::Result {
                match *self {
                    ImplHeader {
                        impl_def_id: ref __binding_0,
                        impl_args: ref __binding_1,
                        self_ty: ref __binding_2,
                        trait_ref: ref __binding_3,
                        predicates: ref __binding_4 } => {
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_0,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_1,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_2,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_3,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_4,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                    }
                }
                <__V::Result as ::rustc_middle::ty::VisitorResult>::output()
            }
        }
    };TypeVisitable)]
46pub struct ImplHeader<'tcx> {
47    pub impl_def_id: DefId,
48    pub impl_args: ty::GenericArgsRef<'tcx>,
49    pub self_ty: Ty<'tcx>,
50    pub trait_ref: Option<ty::TraitRef<'tcx>>,
51    pub predicates: Vec<ty::Predicate<'tcx>>,
52}
53
54pub struct OverlapResult<'tcx> {
55    pub impl_header: ImplHeader<'tcx>,
56    pub intercrate_ambiguity_causes: FxIndexSet<IntercrateAmbiguityCause<'tcx>>,
57
58    /// `true` if the overlap might've been permitted before the shift
59    /// to universes.
60    pub involves_placeholder: bool,
61
62    /// Used in the new solver to suggest increasing the recursion limit.
63    pub overflowing_predicates: Vec<ty::Predicate<'tcx>>,
64}
65
66pub fn add_placeholder_note<G: EmissionGuarantee>(err: &mut Diag<'_, G>) {
67    err.note(
68        "this behavior recently changed as a result of a bug fix; \
69         see rust-lang/rust#56105 for details",
70    );
71}
72
73pub(crate) fn suggest_increasing_recursion_limit<'tcx, G: EmissionGuarantee>(
74    tcx: TyCtxt<'tcx>,
75    err: &mut Diag<'_, G>,
76    overflowing_predicates: &[ty::Predicate<'tcx>],
77) {
78    for pred in overflowing_predicates {
79        err.note(::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("overflow evaluating the requirement `{0}`",
                pred))
    })format!("overflow evaluating the requirement `{}`", pred));
80    }
81
82    suggest_new_overflow_limit(tcx, err);
83}
84
85#[derive(#[automatically_derived]
impl ::core::fmt::Debug for TrackAmbiguityCauses {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                TrackAmbiguityCauses::Yes => "Yes",
                TrackAmbiguityCauses::No => "No",
            })
    }
}Debug, #[automatically_derived]
impl ::core::clone::Clone for TrackAmbiguityCauses {
    #[inline]
    fn clone(&self) -> TrackAmbiguityCauses { *self }
}Clone, #[automatically_derived]
impl ::core::marker::Copy for TrackAmbiguityCauses { }Copy)]
86enum TrackAmbiguityCauses {
87    Yes,
88    No,
89}
90
91impl TrackAmbiguityCauses {
92    fn is_yes(self) -> bool {
93        match self {
94            TrackAmbiguityCauses::Yes => true,
95            TrackAmbiguityCauses::No => false,
96        }
97    }
98}
99
100/// If there are types that satisfy both impls, returns `Some`
101/// with a suitably-freshened `ImplHeader` with those types
102/// instantiated. Otherwise, returns `None`.
103#[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("overlapping_inherent_impls",
                                    "rustc_trait_selection::traits::coherence",
                                    ::tracing::Level::DEBUG,
                                    ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/coherence.rs"),
                                    ::tracing_core::__macro_support::Option::Some(103u32),
                                    ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::coherence"),
                                    ::tracing_core::field::FieldSet::new(&["impl1_def_id",
                                                    "impl2_def_id", "overlap_mode"],
                                        ::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};
                                let mut iter = meta.fields().iter();
                                meta.fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&::tracing::field::debug(&impl1_def_id)
                                                            as &dyn Value)),
                                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&::tracing::field::debug(&impl2_def_id)
                                                            as &dyn Value)),
                                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&::tracing::field::debug(&overlap_mode)
                                                            as &dyn 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: Option<OverlapResult<'_>> =
                loop {};
            return __tracing_attr_fake_return;
        }
        {
            let self_ty1 = tcx.type_of(impl1_def_id).skip_binder();
            let self_ty2 = tcx.type_of(impl2_def_id).skip_binder();
            let may_overlap =
                DeepRejectCtxt::relate_infer_infer(tcx).types_may_unify(self_ty1,
                    self_ty2);
            if !may_overlap {
                {
                    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/coherence.rs:120",
                                        "rustc_trait_selection::traits::coherence",
                                        ::tracing::Level::DEBUG,
                                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/coherence.rs"),
                                        ::tracing_core::__macro_support::Option::Some(120u32),
                                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::coherence"),
                                        ::tracing_core::field::FieldSet::new(&["message"],
                                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                        ::tracing::metadata::Kind::EVENT)
                                };
                            ::tracing::callsite::DefaultCallsite::new(&META)
                        };
                    let enabled =
                        ::tracing::Level::DEBUG <=
                                    ::tracing::level_filters::STATIC_MAX_LEVEL &&
                                ::tracing::Level::DEBUG <=
                                    ::tracing::level_filters::LevelFilter::current() &&
                            {
                                let interest = __CALLSITE.interest();
                                !interest.is_never() &&
                                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                                        interest)
                            };
                    if enabled {
                        (|value_set: ::tracing::field::ValueSet|
                                    {
                                        let meta = __CALLSITE.metadata();
                                        ::tracing::Event::dispatch(meta, &value_set);
                                        ;
                                    })({
                                #[allow(unused_imports)]
                                use ::tracing::field::{debug, display, Value};
                                let mut iter = __CALLSITE.metadata().fields().iter();
                                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&format_args!("overlapping_inherent_impls: fast_reject early-exit")
                                                            as &dyn Value))])
                            });
                    } else { ; }
                };
                return None;
            }
            overlapping_impls(tcx, impl1_def_id, impl2_def_id,
                skip_leak_check, overlap_mode, false)
        }
    }
}#[instrument(skip(tcx, skip_leak_check), level = "debug")]
104pub fn overlapping_inherent_impls(
105    tcx: TyCtxt<'_>,
106    impl1_def_id: DefId,
107    impl2_def_id: DefId,
108    skip_leak_check: SkipLeakCheck,
109    overlap_mode: OverlapMode,
110) -> Option<OverlapResult<'_>> {
111    // Before doing expensive operations like entering an inference context, do
112    // a quick check via fast_reject to tell if the impl headers could possibly
113    // unify.
114    let self_ty1 = tcx.type_of(impl1_def_id).skip_binder();
115    let self_ty2 = tcx.type_of(impl2_def_id).skip_binder();
116    let may_overlap = DeepRejectCtxt::relate_infer_infer(tcx).types_may_unify(self_ty1, self_ty2);
117
118    if !may_overlap {
119        // Some types involved are definitely different, so the impls couldn't possibly overlap.
120        debug!("overlapping_inherent_impls: fast_reject early-exit");
121        return None;
122    }
123
124    overlapping_impls(tcx, impl1_def_id, impl2_def_id, skip_leak_check, overlap_mode, false)
125}
126
127/// If there are types that satisfy both impls, returns `Some`
128/// with a suitably-freshened `ImplHeader` with those types
129/// instantiated. Otherwise, returns `None`.
130#[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("overlapping_trait_impls",
                                    "rustc_trait_selection::traits::coherence",
                                    ::tracing::Level::DEBUG,
                                    ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/coherence.rs"),
                                    ::tracing_core::__macro_support::Option::Some(130u32),
                                    ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::coherence"),
                                    ::tracing_core::field::FieldSet::new(&["impl1_def_id",
                                                    "impl2_def_id", "overlap_mode"],
                                        ::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};
                                let mut iter = meta.fields().iter();
                                meta.fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&::tracing::field::debug(&impl1_def_id)
                                                            as &dyn Value)),
                                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&::tracing::field::debug(&impl2_def_id)
                                                            as &dyn Value)),
                                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&::tracing::field::debug(&overlap_mode)
                                                            as &dyn 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: Option<OverlapResult<'_>> =
                loop {};
            return __tracing_attr_fake_return;
        }
        {
            let impl1_args =
                tcx.impl_trait_ref(impl1_def_id).skip_binder().args;
            let impl2_args =
                tcx.impl_trait_ref(impl2_def_id).skip_binder().args;
            let may_overlap =
                DeepRejectCtxt::relate_infer_infer(tcx).args_may_unify(impl1_args,
                    impl2_args);
            if !may_overlap {
                {
                    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/coherence.rs:148",
                                        "rustc_trait_selection::traits::coherence",
                                        ::tracing::Level::DEBUG,
                                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/coherence.rs"),
                                        ::tracing_core::__macro_support::Option::Some(148u32),
                                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::coherence"),
                                        ::tracing_core::field::FieldSet::new(&["message"],
                                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                        ::tracing::metadata::Kind::EVENT)
                                };
                            ::tracing::callsite::DefaultCallsite::new(&META)
                        };
                    let enabled =
                        ::tracing::Level::DEBUG <=
                                    ::tracing::level_filters::STATIC_MAX_LEVEL &&
                                ::tracing::Level::DEBUG <=
                                    ::tracing::level_filters::LevelFilter::current() &&
                            {
                                let interest = __CALLSITE.interest();
                                !interest.is_never() &&
                                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                                        interest)
                            };
                    if enabled {
                        (|value_set: ::tracing::field::ValueSet|
                                    {
                                        let meta = __CALLSITE.metadata();
                                        ::tracing::Event::dispatch(meta, &value_set);
                                        ;
                                    })({
                                #[allow(unused_imports)]
                                use ::tracing::field::{debug, display, Value};
                                let mut iter = __CALLSITE.metadata().fields().iter();
                                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&format_args!("overlapping_impls: fast_reject early-exit")
                                                            as &dyn Value))])
                            });
                    } else { ; }
                };
                return None;
            }
            overlapping_impls(tcx, impl1_def_id, impl2_def_id,
                skip_leak_check, overlap_mode, true)
        }
    }
}#[instrument(skip(tcx, skip_leak_check), level = "debug")]
131pub fn overlapping_trait_impls(
132    tcx: TyCtxt<'_>,
133    impl1_def_id: DefId,
134    impl2_def_id: DefId,
135    skip_leak_check: SkipLeakCheck,
136    overlap_mode: OverlapMode,
137) -> Option<OverlapResult<'_>> {
138    // Before doing expensive operations like entering an inference context, do
139    // a quick check via fast_reject to tell if the impl headers could possibly
140    // unify.
141    let impl1_args = tcx.impl_trait_ref(impl1_def_id).skip_binder().args;
142    let impl2_args = tcx.impl_trait_ref(impl2_def_id).skip_binder().args;
143    let may_overlap =
144        DeepRejectCtxt::relate_infer_infer(tcx).args_may_unify(impl1_args, impl2_args);
145
146    if !may_overlap {
147        // Some types involved are definitely different, so the impls couldn't possibly overlap.
148        debug!("overlapping_impls: fast_reject early-exit");
149        return None;
150    }
151
152    overlapping_impls(tcx, impl1_def_id, impl2_def_id, skip_leak_check, overlap_mode, true)
153}
154
155fn overlapping_impls(
156    tcx: TyCtxt<'_>,
157    impl1_def_id: DefId,
158    impl2_def_id: DefId,
159    skip_leak_check: SkipLeakCheck,
160    overlap_mode: OverlapMode,
161    is_of_trait: bool,
162) -> Option<OverlapResult<'_>> {
163    if tcx.next_trait_solver_in_coherence() {
164        overlap(
165            tcx,
166            TrackAmbiguityCauses::Yes,
167            skip_leak_check,
168            impl1_def_id,
169            impl2_def_id,
170            overlap_mode,
171            is_of_trait,
172        )
173    } else {
174        let _overlap_with_bad_diagnostics = overlap(
175            tcx,
176            TrackAmbiguityCauses::No,
177            skip_leak_check,
178            impl1_def_id,
179            impl2_def_id,
180            overlap_mode,
181            is_of_trait,
182        )?;
183
184        // In the case where we detect an error, run the check again, but
185        // this time tracking intercrate ambiguity causes for better
186        // diagnostics. (These take time and can lead to false errors.)
187        let overlap = overlap(
188            tcx,
189            TrackAmbiguityCauses::Yes,
190            skip_leak_check,
191            impl1_def_id,
192            impl2_def_id,
193            overlap_mode,
194            is_of_trait,
195        )
196        .unwrap();
197        Some(overlap)
198    }
199}
200
201fn fresh_impl_header<'tcx>(
202    infcx: &InferCtxt<'tcx>,
203    impl_def_id: DefId,
204    is_of_trait: bool,
205) -> ImplHeader<'tcx> {
206    let tcx = infcx.tcx;
207    let impl_args = infcx.fresh_args_for_item(DUMMY_SP, impl_def_id);
208
209    ImplHeader {
210        impl_def_id,
211        impl_args,
212        self_ty: tcx.type_of(impl_def_id).instantiate(tcx, impl_args),
213        trait_ref: is_of_trait.then(|| tcx.impl_trait_ref(impl_def_id).instantiate(tcx, impl_args)),
214        predicates: tcx
215            .predicates_of(impl_def_id)
216            .instantiate(tcx, impl_args)
217            .iter()
218            .map(|(c, _)| c.as_predicate())
219            .collect(),
220    }
221}
222
223fn fresh_impl_header_normalized<'tcx>(
224    infcx: &InferCtxt<'tcx>,
225    param_env: ty::ParamEnv<'tcx>,
226    impl_def_id: DefId,
227    is_of_trait: bool,
228) -> ImplHeader<'tcx> {
229    let header = fresh_impl_header(infcx, impl_def_id, is_of_trait);
230
231    let InferOk { value: mut header, obligations } =
232        infcx.at(&ObligationCause::dummy(), param_env).normalize(header);
233
234    header.predicates.extend(obligations.into_iter().map(|o| o.predicate));
235    header
236}
237
238/// Can both impl `a` and impl `b` be satisfied by a common type (including
239/// where-clauses)? If so, returns an `ImplHeader` that unifies the two impls.
240#[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("overlap",
                                    "rustc_trait_selection::traits::coherence",
                                    ::tracing::Level::DEBUG,
                                    ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/coherence.rs"),
                                    ::tracing_core::__macro_support::Option::Some(240u32),
                                    ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::coherence"),
                                    ::tracing_core::field::FieldSet::new(&["track_ambiguity_causes",
                                                    "skip_leak_check", "impl1_def_id", "impl2_def_id",
                                                    "overlap_mode", "is_of_trait"],
                                        ::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};
                                let mut iter = meta.fields().iter();
                                meta.fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&::tracing::field::debug(&track_ambiguity_causes)
                                                            as &dyn Value)),
                                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&::tracing::field::debug(&skip_leak_check)
                                                            as &dyn Value)),
                                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&::tracing::field::debug(&impl1_def_id)
                                                            as &dyn Value)),
                                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&::tracing::field::debug(&impl2_def_id)
                                                            as &dyn Value)),
                                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&::tracing::field::debug(&overlap_mode)
                                                            as &dyn Value)),
                                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&is_of_trait as
                                                            &dyn 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: Option<OverlapResult<'tcx>> =
                loop {};
            return __tracing_attr_fake_return;
        }
        {
            if overlap_mode.use_negative_impl() {
                if impl_intersection_has_negative_obligation(tcx,
                            impl1_def_id, impl2_def_id, is_of_trait) ||
                        impl_intersection_has_negative_obligation(tcx, impl2_def_id,
                            impl1_def_id, is_of_trait) {
                    return None;
                }
            }
            let infcx =
                tcx.infer_ctxt().skip_leak_check(skip_leak_check.is_yes()).with_next_trait_solver(tcx.next_trait_solver_in_coherence()).build(TypingMode::Coherence);
            let selcx = &mut SelectionContext::new(&infcx);
            if track_ambiguity_causes.is_yes() {
                selcx.enable_tracking_intercrate_ambiguity_causes();
            }
            let param_env = ty::ParamEnv::empty();
            let impl1_header =
                fresh_impl_header_normalized(selcx.infcx, param_env,
                    impl1_def_id, is_of_trait);
            let impl2_header =
                fresh_impl_header_normalized(selcx.infcx, param_env,
                    impl2_def_id, is_of_trait);
            let mut obligations =
                equate_impl_headers(selcx.infcx, param_env, &impl1_header,
                        &impl2_header)?;
            {
                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/coherence.rs:288",
                                    "rustc_trait_selection::traits::coherence",
                                    ::tracing::Level::DEBUG,
                                    ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/coherence.rs"),
                                    ::tracing_core::__macro_support::Option::Some(288u32),
                                    ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::coherence"),
                                    ::tracing_core::field::FieldSet::new(&["message"],
                                        ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                    ::tracing::metadata::Kind::EVENT)
                            };
                        ::tracing::callsite::DefaultCallsite::new(&META)
                    };
                let enabled =
                    ::tracing::Level::DEBUG <=
                                ::tracing::level_filters::STATIC_MAX_LEVEL &&
                            ::tracing::Level::DEBUG <=
                                ::tracing::level_filters::LevelFilter::current() &&
                        {
                            let interest = __CALLSITE.interest();
                            !interest.is_never() &&
                                ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                                    interest)
                        };
                if enabled {
                    (|value_set: ::tracing::field::ValueSet|
                                {
                                    let meta = __CALLSITE.metadata();
                                    ::tracing::Event::dispatch(meta, &value_set);
                                    ;
                                })({
                            #[allow(unused_imports)]
                            use ::tracing::field::{debug, display, Value};
                            let mut iter = __CALLSITE.metadata().fields().iter();
                            __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                ::tracing::__macro_support::Option::Some(&format_args!("overlap: unification check succeeded")
                                                        as &dyn Value))])
                        });
                } else { ; }
            };
            obligations.extend([&impl1_header.predicates,
                                    &impl2_header.predicates].into_iter().flatten().map(|&predicate|
                        Obligation::new(infcx.tcx, ObligationCause::dummy(),
                            param_env, predicate)));
            let mut overflowing_predicates = Vec::new();
            if overlap_mode.use_implicit_negative() {
                match impl_intersection_has_impossible_obligation(selcx,
                        &obligations) {
                    IntersectionHasImpossibleObligations::Yes => return None,
                    IntersectionHasImpossibleObligations::No {
                        overflowing_predicates: p } => {
                        overflowing_predicates = p
                    }
                }
            }
            if infcx.leak_check(ty::UniverseIndex::ROOT, None).is_err() {
                {
                    use ::tracing::__macro_support::Callsite as _;
                    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
                        {
                            static META: ::tracing::Metadata<'static> =
                                {
                                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_trait_selection/src/traits/coherence.rs:309",
                                        "rustc_trait_selection::traits::coherence",
                                        ::tracing::Level::DEBUG,
                                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/coherence.rs"),
                                        ::tracing_core::__macro_support::Option::Some(309u32),
                                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::coherence"),
                                        ::tracing_core::field::FieldSet::new(&["message"],
                                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                        ::tracing::metadata::Kind::EVENT)
                                };
                            ::tracing::callsite::DefaultCallsite::new(&META)
                        };
                    let enabled =
                        ::tracing::Level::DEBUG <=
                                    ::tracing::level_filters::STATIC_MAX_LEVEL &&
                                ::tracing::Level::DEBUG <=
                                    ::tracing::level_filters::LevelFilter::current() &&
                            {
                                let interest = __CALLSITE.interest();
                                !interest.is_never() &&
                                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                                        interest)
                            };
                    if enabled {
                        (|value_set: ::tracing::field::ValueSet|
                                    {
                                        let meta = __CALLSITE.metadata();
                                        ::tracing::Event::dispatch(meta, &value_set);
                                        ;
                                    })({
                                #[allow(unused_imports)]
                                use ::tracing::field::{debug, display, Value};
                                let mut iter = __CALLSITE.metadata().fields().iter();
                                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&format_args!("overlap: leak check failed")
                                                            as &dyn Value))])
                            });
                    } else { ; }
                };
                return None;
            }
            let intercrate_ambiguity_causes =
                if !overlap_mode.use_implicit_negative() {
                    Default::default()
                } else if infcx.next_trait_solver() {
                    compute_intercrate_ambiguity_causes(&infcx, &obligations)
                } else { selcx.take_intercrate_ambiguity_causes() };
            {
                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/coherence.rs:321",
                                    "rustc_trait_selection::traits::coherence",
                                    ::tracing::Level::DEBUG,
                                    ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/coherence.rs"),
                                    ::tracing_core::__macro_support::Option::Some(321u32),
                                    ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::coherence"),
                                    ::tracing_core::field::FieldSet::new(&["message"],
                                        ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                    ::tracing::metadata::Kind::EVENT)
                            };
                        ::tracing::callsite::DefaultCallsite::new(&META)
                    };
                let enabled =
                    ::tracing::Level::DEBUG <=
                                ::tracing::level_filters::STATIC_MAX_LEVEL &&
                            ::tracing::Level::DEBUG <=
                                ::tracing::level_filters::LevelFilter::current() &&
                        {
                            let interest = __CALLSITE.interest();
                            !interest.is_never() &&
                                ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                                    interest)
                        };
                if enabled {
                    (|value_set: ::tracing::field::ValueSet|
                                {
                                    let meta = __CALLSITE.metadata();
                                    ::tracing::Event::dispatch(meta, &value_set);
                                    ;
                                })({
                            #[allow(unused_imports)]
                            use ::tracing::field::{debug, display, Value};
                            let mut iter = __CALLSITE.metadata().fields().iter();
                            __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                ::tracing::__macro_support::Option::Some(&format_args!("overlap: intercrate_ambiguity_causes={0:#?}",
                                                                intercrate_ambiguity_causes) as &dyn Value))])
                        });
                } else { ; }
            };
            let involves_placeholder =
                infcx.inner.borrow_mut().unwrap_region_constraints().data().constraints.iter().any(|c|
                        c.0.involves_placeholders());
            let mut impl_header =
                infcx.resolve_vars_if_possible(impl1_header);
            if infcx.next_trait_solver() {
                impl_header =
                    deeply_normalize_for_diagnostics(&infcx, param_env,
                        impl_header);
            }
            Some(OverlapResult {
                    impl_header,
                    intercrate_ambiguity_causes,
                    involves_placeholder,
                    overflowing_predicates,
                })
        }
    }
}#[instrument(level = "debug", skip(tcx))]
241fn overlap<'tcx>(
242    tcx: TyCtxt<'tcx>,
243    track_ambiguity_causes: TrackAmbiguityCauses,
244    skip_leak_check: SkipLeakCheck,
245    impl1_def_id: DefId,
246    impl2_def_id: DefId,
247    overlap_mode: OverlapMode,
248    is_of_trait: bool,
249) -> Option<OverlapResult<'tcx>> {
250    if overlap_mode.use_negative_impl() {
251        if impl_intersection_has_negative_obligation(tcx, impl1_def_id, impl2_def_id, is_of_trait)
252            || impl_intersection_has_negative_obligation(
253                tcx,
254                impl2_def_id,
255                impl1_def_id,
256                is_of_trait,
257            )
258        {
259            return None;
260        }
261    }
262
263    let infcx = tcx
264        .infer_ctxt()
265        .skip_leak_check(skip_leak_check.is_yes())
266        .with_next_trait_solver(tcx.next_trait_solver_in_coherence())
267        .build(TypingMode::Coherence);
268    let selcx = &mut SelectionContext::new(&infcx);
269    if track_ambiguity_causes.is_yes() {
270        selcx.enable_tracking_intercrate_ambiguity_causes();
271    }
272
273    // For the purposes of this check, we don't bring any placeholder
274    // types into scope; instead, we replace the generic types with
275    // fresh type variables, and hence we do our evaluations in an
276    // empty environment.
277    let param_env = ty::ParamEnv::empty();
278
279    let impl1_header =
280        fresh_impl_header_normalized(selcx.infcx, param_env, impl1_def_id, is_of_trait);
281    let impl2_header =
282        fresh_impl_header_normalized(selcx.infcx, param_env, impl2_def_id, is_of_trait);
283
284    // Equate the headers to find their intersection (the general type, with infer vars,
285    // that may apply both impls).
286    let mut obligations =
287        equate_impl_headers(selcx.infcx, param_env, &impl1_header, &impl2_header)?;
288    debug!("overlap: unification check succeeded");
289
290    obligations.extend(
291        [&impl1_header.predicates, &impl2_header.predicates].into_iter().flatten().map(
292            |&predicate| Obligation::new(infcx.tcx, ObligationCause::dummy(), param_env, predicate),
293        ),
294    );
295
296    let mut overflowing_predicates = Vec::new();
297    if overlap_mode.use_implicit_negative() {
298        match impl_intersection_has_impossible_obligation(selcx, &obligations) {
299            IntersectionHasImpossibleObligations::Yes => return None,
300            IntersectionHasImpossibleObligations::No { overflowing_predicates: p } => {
301                overflowing_predicates = p
302            }
303        }
304    }
305
306    // We toggle the `leak_check` by using `skip_leak_check` when constructing the
307    // inference context, so this may be a noop.
308    if infcx.leak_check(ty::UniverseIndex::ROOT, None).is_err() {
309        debug!("overlap: leak check failed");
310        return None;
311    }
312
313    let intercrate_ambiguity_causes = if !overlap_mode.use_implicit_negative() {
314        Default::default()
315    } else if infcx.next_trait_solver() {
316        compute_intercrate_ambiguity_causes(&infcx, &obligations)
317    } else {
318        selcx.take_intercrate_ambiguity_causes()
319    };
320
321    debug!("overlap: intercrate_ambiguity_causes={:#?}", intercrate_ambiguity_causes);
322    let involves_placeholder = infcx
323        .inner
324        .borrow_mut()
325        .unwrap_region_constraints()
326        .data()
327        .constraints
328        .iter()
329        .any(|c| c.0.involves_placeholders());
330
331    let mut impl_header = infcx.resolve_vars_if_possible(impl1_header);
332
333    // Deeply normalize the impl header for diagnostics, ignoring any errors if this fails.
334    if infcx.next_trait_solver() {
335        impl_header = deeply_normalize_for_diagnostics(&infcx, param_env, impl_header);
336    }
337
338    Some(OverlapResult {
339        impl_header,
340        intercrate_ambiguity_causes,
341        involves_placeholder,
342        overflowing_predicates,
343    })
344}
345
346x;#[instrument(level = "debug", skip(infcx), ret)]
347fn equate_impl_headers<'tcx>(
348    infcx: &InferCtxt<'tcx>,
349    param_env: ty::ParamEnv<'tcx>,
350    impl1: &ImplHeader<'tcx>,
351    impl2: &ImplHeader<'tcx>,
352) -> Option<PredicateObligations<'tcx>> {
353    let result =
354        match (impl1.trait_ref, impl2.trait_ref) {
355            (Some(impl1_ref), Some(impl2_ref)) => infcx
356                .at(&ObligationCause::dummy(), param_env)
357                .eq(DefineOpaqueTypes::Yes, impl1_ref, impl2_ref),
358            (None, None) => infcx.at(&ObligationCause::dummy(), param_env).eq(
359                DefineOpaqueTypes::Yes,
360                impl1.self_ty,
361                impl2.self_ty,
362            ),
363            _ => bug!("equate_impl_headers given mismatched impl kinds"),
364        };
365
366    result.map(|infer_ok| infer_ok.obligations).ok()
367}
368
369/// The result of [fn impl_intersection_has_impossible_obligation].
370#[derive(#[automatically_derived]
impl<'tcx> ::core::fmt::Debug for IntersectionHasImpossibleObligations<'tcx> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            IntersectionHasImpossibleObligations::Yes =>
                ::core::fmt::Formatter::write_str(f, "Yes"),
            IntersectionHasImpossibleObligations::No {
                overflowing_predicates: __self_0 } =>
                ::core::fmt::Formatter::debug_struct_field1_finish(f, "No",
                    "overflowing_predicates", &__self_0),
        }
    }
}Debug)]
371enum IntersectionHasImpossibleObligations<'tcx> {
372    Yes,
373    No {
374        /// With `-Znext-solver=coherence`, some obligations may
375        /// fail if only the user increased the recursion limit.
376        ///
377        /// We return those obligations here and mention them in the
378        /// error message.
379        overflowing_predicates: Vec<ty::Predicate<'tcx>>,
380    },
381}
382
383/// Check if both impls can be satisfied by a common type by considering whether
384/// any of either impl's obligations is not known to hold.
385///
386/// For example, given these two impls:
387///     `impl From<MyLocalType> for Box<dyn Error>` (in my crate)
388///     `impl<E> From<E> for Box<dyn Error> where E: Error` (in libstd)
389///
390/// After replacing both impl headers with inference vars (which happens before
391/// this function is called), we get:
392///     `Box<dyn Error>: From<MyLocalType>`
393///     `Box<dyn Error>: From<?E>`
394///
395/// This gives us `?E = MyLocalType`. We then certainly know that `MyLocalType: Error`
396/// never holds in intercrate mode since a local impl does not exist, and a
397/// downstream impl cannot be added -- therefore can consider the intersection
398/// of the two impls above to be empty.
399///
400/// Importantly, this works even if there isn't a `impl !Error for MyLocalType`.
401x;#[instrument(level = "debug", skip(selcx), ret)]
402fn impl_intersection_has_impossible_obligation<'a, 'cx, 'tcx>(
403    selcx: &mut SelectionContext<'cx, 'tcx>,
404    obligations: &'a [PredicateObligation<'tcx>],
405) -> IntersectionHasImpossibleObligations<'tcx> {
406    let infcx = selcx.infcx;
407
408    if infcx.next_trait_solver() {
409        // A fast path optimization, try evaluating all goals with
410        // a very low recursion depth and bail if any of them don't
411        // hold.
412        if !obligations.iter().all(|o| {
413            <&SolverDelegate<'tcx>>::from(infcx)
414                .root_goal_may_hold_with_depth(8, Goal::new(infcx.tcx, o.param_env, o.predicate))
415        }) {
416            return IntersectionHasImpossibleObligations::Yes;
417        }
418
419        let ocx = ObligationCtxt::new(infcx);
420        ocx.register_obligations(obligations.iter().cloned());
421        let hard_errors = ocx.try_evaluate_obligations();
422        if !hard_errors.is_empty() {
423            assert!(
424                hard_errors.iter().all(|e| e.is_true_error()),
425                "should not have detected ambiguity during first pass"
426            );
427            return IntersectionHasImpossibleObligations::Yes;
428        }
429
430        // Make a new `ObligationCtxt` and re-prove the ambiguities with a richer
431        // `FulfillmentError`. This is so that we can detect overflowing obligations
432        // without needing to run the `BestObligation` visitor on true errors.
433        let ambiguities = ocx.into_pending_obligations();
434        let ocx = ObligationCtxt::new_with_diagnostics(infcx);
435        ocx.register_obligations(ambiguities);
436        let errors_and_ambiguities = ocx.evaluate_obligations_error_on_ambiguity();
437        // We only care about the obligations that are *definitely* true errors.
438        // Ambiguities do not prove the disjointness of two impls.
439        let (errors, ambiguities): (Vec<_>, Vec<_>) =
440            errors_and_ambiguities.into_iter().partition(|error| error.is_true_error());
441        assert!(errors.is_empty(), "should not have ambiguities during second pass");
442
443        IntersectionHasImpossibleObligations::No {
444            overflowing_predicates: ambiguities
445                .into_iter()
446                .filter(|error| {
447                    matches!(error.code, FulfillmentErrorCode::Ambiguity { overflow: Some(true) })
448                })
449                .map(|e| infcx.resolve_vars_if_possible(e.obligation.predicate))
450                .collect(),
451        }
452    } else {
453        for obligation in obligations {
454            // We use `evaluate_root_obligation` to correctly track intercrate
455            // ambiguity clauses.
456            let evaluation_result = selcx.evaluate_root_obligation(obligation);
457
458            match evaluation_result {
459                Ok(result) => {
460                    if !result.may_apply() {
461                        return IntersectionHasImpossibleObligations::Yes;
462                    }
463                }
464                // If overflow occurs, we need to conservatively treat the goal as possibly holding,
465                // since there can be instantiations of this goal that don't overflow and result in
466                // success. While this isn't much of a problem in the old solver, since we treat overflow
467                // fatally, this still can be encountered: <https://github.com/rust-lang/rust/issues/105231>.
468                Err(_overflow) => {}
469            }
470        }
471
472        IntersectionHasImpossibleObligations::No { overflowing_predicates: Vec::new() }
473    }
474}
475
476/// Check if both impls can be satisfied by a common type by considering whether
477/// any of first impl's obligations is known not to hold *via a negative predicate*.
478///
479/// For example, given these two impls:
480///     `struct MyCustomBox<T: ?Sized>(Box<T>);`
481///     `impl From<&str> for MyCustomBox<dyn Error>` (in my crate)
482///     `impl<E> From<E> for MyCustomBox<dyn Error> where E: Error` (in my crate)
483///
484/// After replacing the second impl's header with inference vars, we get:
485///     `MyCustomBox<dyn Error>: From<&str>`
486///     `MyCustomBox<dyn Error>: From<?E>`
487///
488/// This gives us `?E = &str`. We then try to prove the first impl's predicates
489/// after negating, giving us `&str: !Error`. This is a negative impl provided by
490/// libstd, and therefore we can guarantee for certain that libstd will never add
491/// a positive impl for `&str: Error` (without it being a breaking change).
492fn impl_intersection_has_negative_obligation(
493    tcx: TyCtxt<'_>,
494    impl1_def_id: DefId,
495    impl2_def_id: DefId,
496    is_of_trait: bool,
497) -> bool {
498    {
    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/coherence.rs:498",
                        "rustc_trait_selection::traits::coherence",
                        ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/coherence.rs"),
                        ::tracing_core::__macro_support::Option::Some(498u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::coherence"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                let mut iter = __CALLSITE.metadata().fields().iter();
                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&format_args!("negative_impl(impl1_def_id={0:?}, impl2_def_id={1:?})",
                                                    impl1_def_id, impl2_def_id) as &dyn Value))])
            });
    } else { ; }
};debug!("negative_impl(impl1_def_id={:?}, impl2_def_id={:?})", impl1_def_id, impl2_def_id);
499
500    // N.B. We need to unify impl headers *with* `TypingMode::Coherence`,
501    // even if proving negative predicates doesn't need `TypingMode::Coherence`.
502    let ref infcx = tcx.infer_ctxt().with_next_trait_solver(true).build(TypingMode::Coherence);
503    let root_universe = infcx.universe();
504    match (&root_universe, &ty::UniverseIndex::ROOT) {
    (left_val, right_val) => {
        if !(*left_val == *right_val) {
            let kind = ::core::panicking::AssertKind::Eq;
            ::core::panicking::assert_failed(kind, &*left_val, &*right_val,
                ::core::option::Option::None);
        }
    }
};assert_eq!(root_universe, ty::UniverseIndex::ROOT);
505
506    let impl1_header = fresh_impl_header(infcx, impl1_def_id, is_of_trait);
507    let impl2_header = fresh_impl_header(infcx, impl2_def_id, is_of_trait);
508
509    // Equate the headers to find their intersection (the general type, with infer vars,
510    // that may apply both impls).
511    let Some(equate_obligations) =
512        equate_impl_headers(infcx, ty::ParamEnv::empty(), &impl1_header, &impl2_header)
513    else {
514        return false;
515    };
516
517    // FIXME(with_negative_coherence): the infcx has constraints from equating
518    // the impl headers. We should use these constraints as assumptions, not as
519    // requirements, when proving the negated where clauses below.
520    drop(equate_obligations);
521    drop(infcx.take_registered_region_obligations());
522    drop(infcx.take_registered_region_assumptions());
523    drop(infcx.take_and_reset_region_constraints());
524
525    plug_infer_with_placeholders(
526        infcx,
527        root_universe,
528        (impl1_header.impl_args, impl2_header.impl_args),
529    );
530
531    // Right above we plug inference variables with placeholders,
532    // this gets us new impl1_header_args with the inference variables actually resolved
533    // to those placeholders.
534    let impl1_header_args = infcx.resolve_vars_if_possible(impl1_header.impl_args);
535    // So there are no infer variables left now, except regions which aren't resolved by `resolve_vars_if_possible`.
536    if !!impl1_header_args.has_non_region_infer() {
    ::core::panicking::panic("assertion failed: !impl1_header_args.has_non_region_infer()")
};assert!(!impl1_header_args.has_non_region_infer());
537
538    let param_env =
539        ty::EarlyBinder::bind(tcx.param_env(impl1_def_id)).instantiate(tcx, impl1_header_args);
540
541    util::elaborate(tcx, tcx.predicates_of(impl2_def_id).instantiate(tcx, impl2_header.impl_args))
542        .elaborate_sized()
543        .any(|(clause, _)| try_prove_negated_where_clause(infcx, clause, param_env))
544}
545
546fn plug_infer_with_placeholders<'tcx>(
547    infcx: &InferCtxt<'tcx>,
548    universe: ty::UniverseIndex,
549    value: impl TypeVisitable<TyCtxt<'tcx>>,
550) {
551    struct PlugInferWithPlaceholder<'a, 'tcx> {
552        infcx: &'a InferCtxt<'tcx>,
553        universe: ty::UniverseIndex,
554        var: ty::BoundVar,
555    }
556
557    impl<'tcx> PlugInferWithPlaceholder<'_, 'tcx> {
558        fn next_var(&mut self) -> ty::BoundVar {
559            let var = self.var;
560            self.var = self.var + 1;
561            var
562        }
563    }
564
565    impl<'tcx> TypeVisitor<TyCtxt<'tcx>> for PlugInferWithPlaceholder<'_, 'tcx> {
566        fn visit_ty(&mut self, ty: Ty<'tcx>) {
567            let ty = self.infcx.shallow_resolve(ty);
568            if ty.is_ty_var() {
569                let Ok(InferOk { value: (), obligations }) =
570                    self.infcx.at(&ObligationCause::dummy(), ty::ParamEnv::empty()).eq(
571                        // Comparing against a type variable never registers hidden types anyway
572                        DefineOpaqueTypes::Yes,
573                        ty,
574                        Ty::new_placeholder(
575                            self.infcx.tcx,
576                            ty::PlaceholderType::new(
577                                self.universe,
578                                ty::BoundTy { var: self.next_var(), kind: ty::BoundTyKind::Anon },
579                            ),
580                        ),
581                    )
582                else {
583                    ::rustc_middle::util::bug::bug_fmt(format_args!("we always expect to be able to plug an infer var with placeholder"))bug!("we always expect to be able to plug an infer var with placeholder")
584                };
585                match (&obligations.len(), &0) {
    (left_val, right_val) => {
        if !(*left_val == *right_val) {
            let kind = ::core::panicking::AssertKind::Eq;
            ::core::panicking::assert_failed(kind, &*left_val, &*right_val,
                ::core::option::Option::None);
        }
    }
};assert_eq!(obligations.len(), 0);
586            } else {
587                ty.super_visit_with(self);
588            }
589        }
590
591        fn visit_const(&mut self, ct: ty::Const<'tcx>) {
592            let ct = self.infcx.shallow_resolve_const(ct);
593            if ct.is_ct_infer() {
594                let Ok(InferOk { value: (), obligations }) =
595                    self.infcx.at(&ObligationCause::dummy(), ty::ParamEnv::empty()).eq(
596                        // The types of the constants are the same, so there is no hidden type
597                        // registration happening anyway.
598                        DefineOpaqueTypes::Yes,
599                        ct,
600                        ty::Const::new_placeholder(
601                            self.infcx.tcx,
602                            ty::PlaceholderConst::new(
603                                self.universe,
604                                ty::BoundConst::new(self.next_var()),
605                            ),
606                        ),
607                    )
608                else {
609                    ::rustc_middle::util::bug::bug_fmt(format_args!("we always expect to be able to plug an infer var with placeholder"))bug!("we always expect to be able to plug an infer var with placeholder")
610                };
611                match (&obligations.len(), &0) {
    (left_val, right_val) => {
        if !(*left_val == *right_val) {
            let kind = ::core::panicking::AssertKind::Eq;
            ::core::panicking::assert_failed(kind, &*left_val, &*right_val,
                ::core::option::Option::None);
        }
    }
};assert_eq!(obligations.len(), 0);
612            } else {
613                ct.super_visit_with(self);
614            }
615        }
616
617        fn visit_region(&mut self, r: ty::Region<'tcx>) {
618            if let ty::ReVar(vid) = r.kind() {
619                let r = self
620                    .infcx
621                    .inner
622                    .borrow_mut()
623                    .unwrap_region_constraints()
624                    .opportunistic_resolve_var(self.infcx.tcx, vid);
625                if r.is_var() {
626                    let Ok(InferOk { value: (), obligations }) =
627                        self.infcx.at(&ObligationCause::dummy(), ty::ParamEnv::empty()).eq(
628                            // Lifetimes don't contain opaque types (or any types for that matter).
629                            DefineOpaqueTypes::Yes,
630                            r,
631                            ty::Region::new_placeholder(
632                                self.infcx.tcx,
633                                ty::PlaceholderRegion::new(
634                                    self.universe,
635                                    ty::BoundRegion {
636                                        var: self.next_var(),
637                                        kind: ty::BoundRegionKind::Anon,
638                                    },
639                                ),
640                            ),
641                        )
642                    else {
643                        ::rustc_middle::util::bug::bug_fmt(format_args!("we always expect to be able to plug an infer var with placeholder"))bug!("we always expect to be able to plug an infer var with placeholder")
644                    };
645                    match (&obligations.len(), &0) {
    (left_val, right_val) => {
        if !(*left_val == *right_val) {
            let kind = ::core::panicking::AssertKind::Eq;
            ::core::panicking::assert_failed(kind, &*left_val, &*right_val,
                ::core::option::Option::None);
        }
    }
};assert_eq!(obligations.len(), 0);
646                }
647            }
648        }
649    }
650
651    value.visit_with(&mut PlugInferWithPlaceholder { infcx, universe, var: ty::BoundVar::ZERO });
652}
653
654fn try_prove_negated_where_clause<'tcx>(
655    root_infcx: &InferCtxt<'tcx>,
656    clause: ty::Clause<'tcx>,
657    param_env: ty::ParamEnv<'tcx>,
658) -> bool {
659    let Some(negative_predicate) = clause.as_predicate().flip_polarity(root_infcx.tcx) else {
660        return false;
661    };
662
663    // N.B. We don't need to use intercrate mode here because we're trying to prove
664    // the *existence* of a negative goal, not the non-existence of a positive goal.
665    // Without this, we over-eagerly register coherence ambiguity candidates when
666    // impl candidates do exist.
667    // FIXME(#132279): `TypingMode::non_body_analysis` is a bit questionable here as it
668    // would cause us to reveal opaque types to leak their auto traits.
669    let ref infcx = root_infcx.fork_with_typing_mode(TypingMode::non_body_analysis());
670    let ocx = ObligationCtxt::new(infcx);
671    ocx.register_obligation(Obligation::new(
672        infcx.tcx,
673        ObligationCause::dummy(),
674        param_env,
675        negative_predicate,
676    ));
677    if !ocx.evaluate_obligations_error_on_ambiguity().is_empty() {
678        return false;
679    }
680
681    // FIXME: We could use the assumed_wf_types from both impls, I think,
682    // if that wasn't implemented just for LocalDefId, and we'd need to do
683    // the normalization ourselves since this is totally fallible...
684    let errors = ocx.resolve_regions(CRATE_DEF_ID, param_env, []);
685    if !errors.is_empty() {
686        return false;
687    }
688
689    true
690}
691
692/// Compute the `intercrate_ambiguity_causes` for the new solver using
693/// "proof trees".
694///
695/// This is a bit scuffed but seems to be good enough, at least
696/// when looking at UI tests. Given that it is only used to improve
697/// diagnostics this is good enough. We can always improve it once there
698/// are test cases where it is currently not enough.
699fn compute_intercrate_ambiguity_causes<'tcx>(
700    infcx: &InferCtxt<'tcx>,
701    obligations: &[PredicateObligation<'tcx>],
702) -> FxIndexSet<IntercrateAmbiguityCause<'tcx>> {
703    let mut causes: FxIndexSet<IntercrateAmbiguityCause<'tcx>> = Default::default();
704
705    for obligation in obligations {
706        search_ambiguity_causes(infcx, obligation.as_goal(), &mut causes);
707    }
708
709    causes
710}
711
712struct AmbiguityCausesVisitor<'a, 'tcx> {
713    cache: FxHashSet<Goal<'tcx, ty::Predicate<'tcx>>>,
714    causes: &'a mut FxIndexSet<IntercrateAmbiguityCause<'tcx>>,
715}
716
717impl<'a, 'tcx> ProofTreeVisitor<'tcx> for AmbiguityCausesVisitor<'a, 'tcx> {
718    fn span(&self) -> Span {
719        DUMMY_SP
720    }
721
722    fn visit_goal(&mut self, goal: &InspectGoal<'_, 'tcx>) {
723        if !self.cache.insert(goal.goal()) {
724            return;
725        }
726
727        let infcx = goal.infcx();
728        for cand in goal.candidates() {
729            cand.visit_nested_in_probe(self);
730        }
731        // When searching for intercrate ambiguity causes, we only need to look
732        // at ambiguous goals, as for others the coherence unknowable candidate
733        // was irrelevant.
734        match goal.result() {
735            Ok(Certainty::Yes) | Err(NoSolution) => return,
736            Ok(Certainty::Maybe { .. }) => {}
737        }
738
739        // For bound predicates we simply call `infcx.enter_forall`
740        // and then prove the resulting predicate as a nested goal.
741        let Goal { param_env, predicate } = goal.goal();
742        let predicate_kind = goal.infcx().enter_forall_and_leak_universe(predicate.kind());
743        let trait_ref = match predicate_kind {
744            ty::PredicateKind::Clause(ty::ClauseKind::Trait(tr)) => tr.trait_ref,
745            ty::PredicateKind::Clause(ty::ClauseKind::Projection(proj))
746                if #[allow(non_exhaustive_omitted_patterns)] match infcx.tcx.def_kind(proj.projection_term.def_id)
    {
    DefKind::AssocTy | DefKind::AssocConst => true,
    _ => false,
}matches!(
747                    infcx.tcx.def_kind(proj.projection_term.def_id),
748                    DefKind::AssocTy | DefKind::AssocConst
749                ) =>
750            {
751                proj.projection_term.trait_ref(infcx.tcx)
752            }
753            _ => return,
754        };
755
756        if trait_ref.references_error() {
757            return;
758        }
759
760        let mut candidates = goal.candidates();
761        for cand in goal.candidates() {
762            if let inspect::ProbeKind::TraitCandidate {
763                source: CandidateSource::Impl(def_id),
764                result: Ok(_),
765            } = cand.kind()
766                && let ty::ImplPolarity::Reservation = infcx.tcx.impl_polarity(def_id)
767            {
768                if let Some(message) =
769                    {

    #[allow(deprecated)]
    {
        {
            'done:
                {
                for i in infcx.tcx.get_all_attrs(def_id) {
                    #[allow(unused_imports)]
                    use rustc_hir::attrs::AttributeKind::*;
                    let i: &rustc_hir::Attribute = i;
                    match i {
                        rustc_hir::Attribute::Parsed(RustcReservationImpl(_,
                            message)) => {
                            break 'done Some(*message);
                        }
                        rustc_hir::Attribute::Unparsed(..) =>
                            {}
                            #[deny(unreachable_patterns)]
                            _ => {}
                    }
                }
                None
            }
        }
    }
}find_attr!(infcx.tcx, def_id, RustcReservationImpl(_, message) => *message)
770                {
771                    self.causes.insert(IntercrateAmbiguityCause::ReservationImpl { message });
772                }
773            }
774        }
775
776        // We also look for unknowable candidates. In case a goal is unknowable, there's
777        // always exactly 1 candidate.
778        let Some(cand) = candidates.pop() else {
779            return;
780        };
781
782        let inspect::ProbeKind::TraitCandidate {
783            source: CandidateSource::CoherenceUnknowable,
784            result: Ok(_),
785        } = cand.kind()
786        else {
787            return;
788        };
789
790        let lazily_normalize_ty = |mut ty: Ty<'tcx>| {
791            if #[allow(non_exhaustive_omitted_patterns)] match ty.kind() {
    ty::Alias(..) => true,
    _ => false,
}matches!(ty.kind(), ty::Alias(..)) {
792                let ocx = ObligationCtxt::new(infcx);
793                ty = ocx
794                    .structurally_normalize_ty(&ObligationCause::dummy(), param_env, ty)
795                    .map_err(|_| ())?;
796                if !ocx.try_evaluate_obligations().is_empty() {
797                    return Err(());
798                }
799            }
800            Ok(ty)
801        };
802
803        infcx.probe(|_| {
804            let conflict = match trait_ref_is_knowable(infcx, trait_ref, lazily_normalize_ty) {
805                Err(()) => return,
806                Ok(Ok(())) => {
807                    {
    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/coherence.rs:807",
                        "rustc_trait_selection::traits::coherence",
                        ::tracing::Level::WARN,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/coherence.rs"),
                        ::tracing_core::__macro_support::Option::Some(807u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::coherence"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::WARN <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::WARN <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                let mut iter = __CALLSITE.metadata().fields().iter();
                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&format_args!("expected an unknowable trait ref: {0:?}",
                                                    trait_ref) as &dyn Value))])
            });
    } else { ; }
};warn!("expected an unknowable trait ref: {trait_ref:?}");
808                    return;
809                }
810                Ok(Err(conflict)) => conflict,
811            };
812
813            // It is only relevant that a goal is unknowable if it would have otherwise
814            // failed.
815            // FIXME(#132279): Forking with `TypingMode::non_body_analysis` is a bit questionable
816            // as it would allow us to reveal opaque types, potentially causing unexpected
817            // cycles.
818            let non_intercrate_infcx = infcx.fork_with_typing_mode(TypingMode::non_body_analysis());
819            if non_intercrate_infcx.predicate_may_hold(&Obligation::new(
820                infcx.tcx,
821                ObligationCause::dummy(),
822                param_env,
823                predicate,
824            )) {
825                return;
826            }
827
828            // Normalize the trait ref for diagnostics, ignoring any errors if this fails.
829            let trait_ref = deeply_normalize_for_diagnostics(infcx, param_env, trait_ref);
830            let self_ty = trait_ref.self_ty();
831            let self_ty = self_ty.has_concrete_skeleton().then(|| self_ty);
832            self.causes.insert(match conflict {
833                Conflict::Upstream => {
834                    IntercrateAmbiguityCause::UpstreamCrateUpdate { trait_ref, self_ty }
835                }
836                Conflict::Downstream => {
837                    IntercrateAmbiguityCause::DownstreamCrate { trait_ref, self_ty }
838                }
839            });
840        });
841    }
842}
843
844fn search_ambiguity_causes<'tcx>(
845    infcx: &InferCtxt<'tcx>,
846    goal: Goal<'tcx, ty::Predicate<'tcx>>,
847    causes: &mut FxIndexSet<IntercrateAmbiguityCause<'tcx>>,
848) {
849    infcx.probe(|_| {
850        infcx.visit_proof_tree(
851            goal,
852            &mut AmbiguityCausesVisitor { cache: Default::default(), causes },
853        )
854    });
855}