1use 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#[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 pub involves_placeholder: bool,
61
62 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#[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 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 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#[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 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 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 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#[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 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 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 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 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#[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 overflowing_predicates: Vec<ty::Predicate<'tcx>>,
380 },
381}
382
383x;#[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 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 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 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 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 Err(_overflow) => {}
469 }
470 }
471
472 IntersectionHasImpossibleObligations::No { overflowing_predicates: Vec::new() }
473 }
474}
475
476fn 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 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 param_env =
508 ty::EarlyBinder::bind(tcx.param_env(impl1_def_id)).instantiate(tcx, impl1_header.impl_args);
509
510 let impl2_header = fresh_impl_header(infcx, impl2_def_id, is_of_trait);
511
512 let Some(equate_obligations) =
515 equate_impl_headers(infcx, param_env, &impl1_header, &impl2_header)
516 else {
517 return false;
518 };
519
520 drop(equate_obligations);
524 drop(infcx.take_registered_region_obligations());
525 drop(infcx.take_registered_region_assumptions());
526 drop(infcx.take_and_reset_region_constraints());
527
528 plug_infer_with_placeholders(
529 infcx,
530 root_universe,
531 (impl1_header.impl_args, impl2_header.impl_args),
532 );
533 let param_env = infcx.resolve_vars_if_possible(param_env);
534
535 util::elaborate(tcx, tcx.predicates_of(impl2_def_id).instantiate(tcx, impl2_header.impl_args))
536 .elaborate_sized()
537 .any(|(clause, _)| try_prove_negated_where_clause(infcx, clause, param_env))
538}
539
540fn plug_infer_with_placeholders<'tcx>(
541 infcx: &InferCtxt<'tcx>,
542 universe: ty::UniverseIndex,
543 value: impl TypeVisitable<TyCtxt<'tcx>>,
544) {
545 struct PlugInferWithPlaceholder<'a, 'tcx> {
546 infcx: &'a InferCtxt<'tcx>,
547 universe: ty::UniverseIndex,
548 var: ty::BoundVar,
549 }
550
551 impl<'tcx> PlugInferWithPlaceholder<'_, 'tcx> {
552 fn next_var(&mut self) -> ty::BoundVar {
553 let var = self.var;
554 self.var = self.var + 1;
555 var
556 }
557 }
558
559 impl<'tcx> TypeVisitor<TyCtxt<'tcx>> for PlugInferWithPlaceholder<'_, 'tcx> {
560 fn visit_ty(&mut self, ty: Ty<'tcx>) {
561 let ty = self.infcx.shallow_resolve(ty);
562 if ty.is_ty_var() {
563 let Ok(InferOk { value: (), obligations }) =
564 self.infcx.at(&ObligationCause::dummy(), ty::ParamEnv::empty()).eq(
565 DefineOpaqueTypes::Yes,
567 ty,
568 Ty::new_placeholder(
569 self.infcx.tcx,
570 ty::PlaceholderType::new(
571 self.universe,
572 ty::BoundTy { var: self.next_var(), kind: ty::BoundTyKind::Anon },
573 ),
574 ),
575 )
576 else {
577 ::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")
578 };
579 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);
580 } else {
581 ty.super_visit_with(self);
582 }
583 }
584
585 fn visit_const(&mut self, ct: ty::Const<'tcx>) {
586 let ct = self.infcx.shallow_resolve_const(ct);
587 if ct.is_ct_infer() {
588 let Ok(InferOk { value: (), obligations }) =
589 self.infcx.at(&ObligationCause::dummy(), ty::ParamEnv::empty()).eq(
590 DefineOpaqueTypes::Yes,
593 ct,
594 ty::Const::new_placeholder(
595 self.infcx.tcx,
596 ty::PlaceholderConst::new(
597 self.universe,
598 ty::BoundConst::new(self.next_var()),
599 ),
600 ),
601 )
602 else {
603 ::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")
604 };
605 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);
606 } else {
607 ct.super_visit_with(self);
608 }
609 }
610
611 fn visit_region(&mut self, r: ty::Region<'tcx>) {
612 if let ty::ReVar(vid) = r.kind() {
613 let r = self
614 .infcx
615 .inner
616 .borrow_mut()
617 .unwrap_region_constraints()
618 .opportunistic_resolve_var(self.infcx.tcx, vid);
619 if r.is_var() {
620 let Ok(InferOk { value: (), obligations }) =
621 self.infcx.at(&ObligationCause::dummy(), ty::ParamEnv::empty()).eq(
622 DefineOpaqueTypes::Yes,
624 r,
625 ty::Region::new_placeholder(
626 self.infcx.tcx,
627 ty::PlaceholderRegion::new(
628 self.universe,
629 ty::BoundRegion {
630 var: self.next_var(),
631 kind: ty::BoundRegionKind::Anon,
632 },
633 ),
634 ),
635 )
636 else {
637 ::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")
638 };
639 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);
640 }
641 }
642 }
643 }
644
645 value.visit_with(&mut PlugInferWithPlaceholder { infcx, universe, var: ty::BoundVar::ZERO });
646}
647
648fn try_prove_negated_where_clause<'tcx>(
649 root_infcx: &InferCtxt<'tcx>,
650 clause: ty::Clause<'tcx>,
651 param_env: ty::ParamEnv<'tcx>,
652) -> bool {
653 let Some(negative_predicate) = clause.as_predicate().flip_polarity(root_infcx.tcx) else {
654 return false;
655 };
656
657 let ref infcx = root_infcx.fork_with_typing_mode(TypingMode::non_body_analysis());
664 let ocx = ObligationCtxt::new(infcx);
665 ocx.register_obligation(Obligation::new(
666 infcx.tcx,
667 ObligationCause::dummy(),
668 param_env,
669 negative_predicate,
670 ));
671 if !ocx.evaluate_obligations_error_on_ambiguity().is_empty() {
672 return false;
673 }
674
675 let errors = ocx.resolve_regions(CRATE_DEF_ID, param_env, []);
679 if !errors.is_empty() {
680 return false;
681 }
682
683 true
684}
685
686fn compute_intercrate_ambiguity_causes<'tcx>(
694 infcx: &InferCtxt<'tcx>,
695 obligations: &[PredicateObligation<'tcx>],
696) -> FxIndexSet<IntercrateAmbiguityCause<'tcx>> {
697 let mut causes: FxIndexSet<IntercrateAmbiguityCause<'tcx>> = Default::default();
698
699 for obligation in obligations {
700 search_ambiguity_causes(infcx, obligation.as_goal(), &mut causes);
701 }
702
703 causes
704}
705
706struct AmbiguityCausesVisitor<'a, 'tcx> {
707 cache: FxHashSet<Goal<'tcx, ty::Predicate<'tcx>>>,
708 causes: &'a mut FxIndexSet<IntercrateAmbiguityCause<'tcx>>,
709}
710
711impl<'a, 'tcx> ProofTreeVisitor<'tcx> for AmbiguityCausesVisitor<'a, 'tcx> {
712 fn span(&self) -> Span {
713 DUMMY_SP
714 }
715
716 fn visit_goal(&mut self, goal: &InspectGoal<'_, 'tcx>) {
717 if !self.cache.insert(goal.goal()) {
718 return;
719 }
720
721 let infcx = goal.infcx();
722 for cand in goal.candidates() {
723 cand.visit_nested_in_probe(self);
724 }
725 match goal.result() {
729 Ok(Certainty::Yes) | Err(NoSolution) => return,
730 Ok(Certainty::Maybe { .. }) => {}
731 }
732
733 let Goal { param_env, predicate } = goal.goal();
736 let predicate_kind = goal.infcx().enter_forall_and_leak_universe(predicate.kind());
737 let trait_ref = match predicate_kind {
738 ty::PredicateKind::Clause(ty::ClauseKind::Trait(tr)) => tr.trait_ref,
739 ty::PredicateKind::Clause(ty::ClauseKind::Projection(proj))
740 if #[allow(non_exhaustive_omitted_patterns)] match infcx.tcx.def_kind(proj.projection_term.def_id)
{
DefKind::AssocTy | DefKind::AssocConst => true,
_ => false,
}matches!(
741 infcx.tcx.def_kind(proj.projection_term.def_id),
742 DefKind::AssocTy | DefKind::AssocConst
743 ) =>
744 {
745 proj.projection_term.trait_ref(infcx.tcx)
746 }
747 _ => return,
748 };
749
750 if trait_ref.references_error() {
751 return;
752 }
753
754 let mut candidates = goal.candidates();
755 for cand in goal.candidates() {
756 if let inspect::ProbeKind::TraitCandidate {
757 source: CandidateSource::Impl(def_id),
758 result: Ok(_),
759 } = cand.kind()
760 && let ty::ImplPolarity::Reservation = infcx.tcx.impl_polarity(def_id)
761 {
762 if let Some(message) =
763 {
#[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)
764 {
765 self.causes.insert(IntercrateAmbiguityCause::ReservationImpl { message });
766 }
767 }
768 }
769
770 let Some(cand) = candidates.pop() else {
773 return;
774 };
775
776 let inspect::ProbeKind::TraitCandidate {
777 source: CandidateSource::CoherenceUnknowable,
778 result: Ok(_),
779 } = cand.kind()
780 else {
781 return;
782 };
783
784 let lazily_normalize_ty = |mut ty: Ty<'tcx>| {
785 if #[allow(non_exhaustive_omitted_patterns)] match ty.kind() {
ty::Alias(..) => true,
_ => false,
}matches!(ty.kind(), ty::Alias(..)) {
786 let ocx = ObligationCtxt::new(infcx);
787 ty = ocx
788 .structurally_normalize_ty(&ObligationCause::dummy(), param_env, ty)
789 .map_err(|_| ())?;
790 if !ocx.try_evaluate_obligations().is_empty() {
791 return Err(());
792 }
793 }
794 Ok(ty)
795 };
796
797 infcx.probe(|_| {
798 let conflict = match trait_ref_is_knowable(infcx, trait_ref, lazily_normalize_ty) {
799 Err(()) => return,
800 Ok(Ok(())) => {
801 {
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:801",
"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(801u32),
::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:?}");
802 return;
803 }
804 Ok(Err(conflict)) => conflict,
805 };
806
807 let non_intercrate_infcx = infcx.fork_with_typing_mode(TypingMode::non_body_analysis());
813 if non_intercrate_infcx.predicate_may_hold(&Obligation::new(
814 infcx.tcx,
815 ObligationCause::dummy(),
816 param_env,
817 predicate,
818 )) {
819 return;
820 }
821
822 let trait_ref = deeply_normalize_for_diagnostics(infcx, param_env, trait_ref);
824 let self_ty = trait_ref.self_ty();
825 let self_ty = self_ty.has_concrete_skeleton().then(|| self_ty);
826 self.causes.insert(match conflict {
827 Conflict::Upstream => {
828 IntercrateAmbiguityCause::UpstreamCrateUpdate { trait_ref, self_ty }
829 }
830 Conflict::Downstream => {
831 IntercrateAmbiguityCause::DownstreamCrate { trait_ref, self_ty }
832 }
833 });
834 });
835 }
836}
837
838fn search_ambiguity_causes<'tcx>(
839 infcx: &InferCtxt<'tcx>,
840 goal: Goal<'tcx, ty::Predicate<'tcx>>,
841 causes: &mut FxIndexSet<IntercrateAmbiguityCause<'tcx>>,
842) {
843 infcx.probe(|_| {
844 infcx.visit_proof_tree(
845 goal,
846 &mut AmbiguityCausesVisitor { cache: Default::default(), causes },
847 )
848 });
849}