1//! Candidate selection. See the [rustc dev guide] for more information on how this works.
2//!
3//! [rustc dev guide]: https://rustc-dev-guide.rust-lang.org/traits/resolution.html#selection
45use std::cell::{Cell, RefCell};
6use std::cmp;
7use std::fmt::{self, Display};
8use std::ops::ControlFlow;
910use hir::def::DefKind;
11use rustc_data_structures::fx::{FxIndexMap, FxIndexSet};
12use rustc_data_structures::stack::ensure_sufficient_stack;
13use rustc_errors::{Diag, EmissionGuarantee};
14use rustc_hir::def_id::DefId;
15use rustc_hir::{selfas hir, LangItem, find_attr};
16use rustc_infer::infer::BoundRegionConversionTime::{self, HigherRankedType};
17use rustc_infer::infer::DefineOpaqueTypes;
18use rustc_infer::infer::at::ToTrace;
19use rustc_infer::infer::relate::TypeRelation;
20use rustc_infer::traits::{PredicateObligations, TraitObligation};
21use rustc_macros::{TypeFoldable, TypeVisitable};
22use rustc_middle::bug;
23use rustc_middle::dep_graph::{DepKind, DepNodeIndex};
24pub use rustc_middle::traits::select::*;
25use rustc_middle::ty::abstract_const::NotConstEvaluatable;
26use rustc_middle::ty::error::TypeErrorToStringExt;
27use rustc_middle::ty::print::{PrintTraitRefExtas _, with_no_trimmed_paths};
28use rustc_middle::ty::{
29self, CandidatePreferenceMode, CantBeErased, DeepRejectCtxt, GenericArgsRef,
30PolyProjectionPredicate, SizedTraitKind, Ty, TyCtxt, TypeFoldable, TypeVisitableExt,
31TypingMode, Unnormalized, Upcast, elaborate, may_use_unstable_feature,
32};
33use rustc_next_trait_solver::solve::AliasBoundKind;
34use rustc_span::Symbol;
35use tracing::{debug, instrument, trace};
3637use self::EvaluationResult::*;
38use self::SelectionCandidate::*;
39use super::coherence::{self, Conflict};
40use super::project::ProjectionTermObligation;
41use super::util::closure_trait_ref_and_return_type;
42use super::{
43ImplDerivedCause, Normalized, Obligation, ObligationCause, ObligationCauseCode,
44PolyTraitObligation, PredicateObligation, Selection, SelectionError, SelectionResult,
45TraitQueryMode, const_evaluatable, project, util, wf,
46};
47use crate::error_reporting::InferCtxtErrorExt;
48use crate::infer::{InferCtxt, InferOk, TypeFreshener};
49use crate::solve::InferCtxtSelectExtas _;
50use crate::traits::normalize::{normalize_with_depth, normalize_with_depth_to};
51use crate::traits::project::{ProjectAndUnifyResult, ProjectionCacheKeyExt};
52use crate::traits::{EvaluateConstErr, ProjectionCacheKey, effects, sizedness_fast_path};
5354mod _match;
55mod candidate_assembly;
56mod confirmation;
5758#[derive(#[automatically_derived]
impl<'tcx> ::core::clone::Clone for IntercrateAmbiguityCause<'tcx> {
#[inline]
fn clone(&self) -> IntercrateAmbiguityCause<'tcx> {
match self {
IntercrateAmbiguityCause::DownstreamCrate {
trait_ref: __self_0, self_ty: __self_1 } =>
IntercrateAmbiguityCause::DownstreamCrate {
trait_ref: ::core::clone::Clone::clone(__self_0),
self_ty: ::core::clone::Clone::clone(__self_1),
},
IntercrateAmbiguityCause::UpstreamCrateUpdate {
trait_ref: __self_0, self_ty: __self_1 } =>
IntercrateAmbiguityCause::UpstreamCrateUpdate {
trait_ref: ::core::clone::Clone::clone(__self_0),
self_ty: ::core::clone::Clone::clone(__self_1),
},
IntercrateAmbiguityCause::ReservationImpl { message: __self_0 } =>
IntercrateAmbiguityCause::ReservationImpl {
message: ::core::clone::Clone::clone(__self_0),
},
}
}
}Clone, #[automatically_derived]
impl<'tcx> ::core::fmt::Debug for IntercrateAmbiguityCause<'tcx> {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
match self {
IntercrateAmbiguityCause::DownstreamCrate {
trait_ref: __self_0, self_ty: __self_1 } =>
::core::fmt::Formatter::debug_struct_field2_finish(f,
"DownstreamCrate", "trait_ref", __self_0, "self_ty",
&__self_1),
IntercrateAmbiguityCause::UpstreamCrateUpdate {
trait_ref: __self_0, self_ty: __self_1 } =>
::core::fmt::Formatter::debug_struct_field2_finish(f,
"UpstreamCrateUpdate", "trait_ref", __self_0, "self_ty",
&__self_1),
IntercrateAmbiguityCause::ReservationImpl { message: __self_0 } =>
::core::fmt::Formatter::debug_struct_field1_finish(f,
"ReservationImpl", "message", &__self_0),
}
}
}Debug, #[automatically_derived]
impl<'tcx> ::core::cmp::Eq for IntercrateAmbiguityCause<'tcx> {
#[inline]
#[doc(hidden)]
#[coverage(off)]
fn assert_fields_are_eq(&self) {
let _: ::core::cmp::AssertParamIsEq<ty::TraitRef<'tcx>>;
let _: ::core::cmp::AssertParamIsEq<Option<Ty<'tcx>>>;
let _: ::core::cmp::AssertParamIsEq<ty::TraitRef<'tcx>>;
let _: ::core::cmp::AssertParamIsEq<Option<Ty<'tcx>>>;
let _: ::core::cmp::AssertParamIsEq<Symbol>;
}
}Eq, #[automatically_derived]
impl<'tcx> ::core::cmp::PartialEq for IntercrateAmbiguityCause<'tcx> {
#[inline]
fn eq(&self, other: &IntercrateAmbiguityCause<'tcx>) -> bool {
let __self_discr = ::core::intrinsics::discriminant_value(self);
let __arg1_discr = ::core::intrinsics::discriminant_value(other);
__self_discr == __arg1_discr &&
match (self, other) {
(IntercrateAmbiguityCause::DownstreamCrate {
trait_ref: __self_0, self_ty: __self_1 },
IntercrateAmbiguityCause::DownstreamCrate {
trait_ref: __arg1_0, self_ty: __arg1_1 }) =>
__self_0 == __arg1_0 && __self_1 == __arg1_1,
(IntercrateAmbiguityCause::UpstreamCrateUpdate {
trait_ref: __self_0, self_ty: __self_1 },
IntercrateAmbiguityCause::UpstreamCrateUpdate {
trait_ref: __arg1_0, self_ty: __arg1_1 }) =>
__self_0 == __arg1_0 && __self_1 == __arg1_1,
(IntercrateAmbiguityCause::ReservationImpl { message: __self_0
}, IntercrateAmbiguityCause::ReservationImpl {
message: __arg1_0 }) => __self_0 == __arg1_0,
_ => unsafe { ::core::intrinsics::unreachable() }
}
}
}PartialEq, #[automatically_derived]
impl<'tcx> ::core::hash::Hash for IntercrateAmbiguityCause<'tcx> {
#[inline]
fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
let __self_discr = ::core::intrinsics::discriminant_value(self);
::core::hash::Hash::hash(&__self_discr, state);
match self {
IntercrateAmbiguityCause::DownstreamCrate {
trait_ref: __self_0, self_ty: __self_1 } => {
::core::hash::Hash::hash(__self_0, state);
::core::hash::Hash::hash(__self_1, state)
}
IntercrateAmbiguityCause::UpstreamCrateUpdate {
trait_ref: __self_0, self_ty: __self_1 } => {
::core::hash::Hash::hash(__self_0, state);
::core::hash::Hash::hash(__self_1, state)
}
IntercrateAmbiguityCause::ReservationImpl { message: __self_0 } =>
::core::hash::Hash::hash(__self_0, state),
}
}
}Hash)]
59pub enum IntercrateAmbiguityCause<'tcx> {
60 DownstreamCrate { trait_ref: ty::TraitRef<'tcx>, self_ty: Option<Ty<'tcx>> },
61 UpstreamCrateUpdate { trait_ref: ty::TraitRef<'tcx>, self_ty: Option<Ty<'tcx>> },
62 ReservationImpl { message: Symbol },
63}
6465impl<'tcx> IntercrateAmbiguityCause<'tcx> {
66/// Emits notes when the overlap is caused by complex intercrate ambiguities.
67 /// See #23980 for details.
68pub fn add_intercrate_ambiguity_hint<G: EmissionGuarantee>(&self, err: &mut Diag<'_, G>) {
69err.note(self.intercrate_ambiguity_hint());
70 }
7172pub fn intercrate_ambiguity_hint(&self) -> String {
73{
let _guard = NoTrimmedGuard::new();
match self {
IntercrateAmbiguityCause::DownstreamCrate { trait_ref, self_ty } => {
::alloc::__export::must_use({
::alloc::fmt::format(format_args!("downstream crates may implement trait `{0}`{1}",
trait_ref.print_trait_sugared(),
if let Some(self_ty) = self_ty {
::alloc::__export::must_use({
::alloc::fmt::format(format_args!(" for type `{0}`",
self_ty))
})
} else { String::new() }))
})
}
IntercrateAmbiguityCause::UpstreamCrateUpdate { trait_ref, self_ty }
=> {
::alloc::__export::must_use({
::alloc::fmt::format(format_args!("upstream crates may add a new impl of trait `{0}`{1} in future versions",
trait_ref.print_trait_sugared(),
if let Some(self_ty) = self_ty {
::alloc::__export::must_use({
::alloc::fmt::format(format_args!(" for type `{0}`",
self_ty))
})
} else { String::new() }))
})
}
IntercrateAmbiguityCause::ReservationImpl { message } =>
message.to_string(),
}
}with_no_trimmed_paths!(match self {
74 IntercrateAmbiguityCause::DownstreamCrate { trait_ref, self_ty } => {
75format!(
76"downstream crates may implement trait `{trait_desc}`{self_desc}",
77 trait_desc = trait_ref.print_trait_sugared(),
78 self_desc = if let Some(self_ty) = self_ty {
79format!(" for type `{self_ty}`")
80 } else {
81 String::new()
82 }
83 )
84 }
85 IntercrateAmbiguityCause::UpstreamCrateUpdate { trait_ref, self_ty } => {
86format!(
87"upstream crates may add a new impl of trait `{trait_desc}`{self_desc} \
88 in future versions",
89 trait_desc = trait_ref.print_trait_sugared(),
90 self_desc = if let Some(self_ty) = self_ty {
91format!(" for type `{self_ty}`")
92 } else {
93 String::new()
94 }
95 )
96 }
97 IntercrateAmbiguityCause::ReservationImpl { message } => message.to_string(),
98 })99 }
100}
101102pub struct SelectionContext<'cx, 'tcx> {
103pub infcx: &'cx InferCtxt<'tcx>,
104105/// Freshener used specifically for entries on the obligation
106 /// stack. This ensures that all entries on the stack at one time
107 /// will have the same set of placeholder entries, which is
108 /// important for checking for trait bounds that recursively
109 /// require themselves.
110freshener: TypeFreshener<'cx, 'tcx>,
111112/// If `intercrate` is set, we remember predicates which were
113 /// considered ambiguous because of impls potentially added in other crates.
114 /// This is used in coherence to give improved diagnostics.
115 /// We don't do his until we detect a coherence error because it can
116 /// lead to false overflow results (#47139) and because always
117 /// computing it may negatively impact performance.
118intercrate_ambiguity_causes: Option<FxIndexSet<IntercrateAmbiguityCause<'tcx>>>,
119120/// The mode that trait queries run in, which informs our error handling
121 /// policy. In essence, canonicalized queries need their errors propagated
122 /// rather than immediately reported because we do not have accurate spans.
123query_mode: TraitQueryMode,
124}
125126// A stack that walks back up the stack frame.
127struct TraitObligationStack<'prev, 'tcx> {
128 obligation: &'prev PolyTraitObligation<'tcx>,
129130/// The trait predicate from `obligation` but "freshened" with the
131 /// selection-context's freshener. Used to check for recursion.
132fresh_trait_pred: ty::PolyTraitPredicate<'tcx>,
133134/// Starts out equal to `depth` -- if, during evaluation, we
135 /// encounter a cycle, then we will set this flag to the minimum
136 /// depth of that cycle for all participants in the cycle. These
137 /// participants will then forego caching their results. This is
138 /// not the most efficient solution, but it addresses #60010. The
139 /// problem we are trying to prevent:
140 ///
141 /// - If you have `A: AutoTrait` requires `B: AutoTrait` and `C: NonAutoTrait`
142 /// - `B: AutoTrait` requires `A: AutoTrait` (coinductive cycle, ok)
143 /// - `C: NonAutoTrait` requires `A: AutoTrait` (non-coinductive cycle, not ok)
144 ///
145 /// you don't want to cache that `B: AutoTrait` or `A: AutoTrait`
146 /// is `EvaluatedToOk`; this is because they were only considered
147 /// ok on the premise that if `A: AutoTrait` held, but we indeed
148 /// encountered a problem (later on) with `A: AutoTrait`. So we
149 /// currently set a flag on the stack node for `B: AutoTrait` (as
150 /// well as the second instance of `A: AutoTrait`) to suppress
151 /// caching.
152 ///
153 /// This is a simple, targeted fix. A more-performant fix requires
154 /// deeper changes, but would permit more caching: we could
155 /// basically defer caching until we have fully evaluated the
156 /// tree, and then cache the entire tree at once. In any case, the
157 /// performance impact here shouldn't be so horrible: every time
158 /// this is hit, we do cache at least one trait, so we only
159 /// evaluate each member of a cycle up to N times, where N is the
160 /// length of the cycle. This means the performance impact is
161 /// bounded and we shouldn't have any terrible worst-cases.
162reached_depth: Cell<usize>,
163164 previous: TraitObligationStackList<'prev, 'tcx>,
165166/// The number of parent frames plus one (thus, the topmost frame has depth 1).
167depth: usize,
168169/// The depth-first number of this node in the search graph -- a
170 /// pre-order index. Basically, a freshly incremented counter.
171dfn: usize,
172}
173174struct SelectionCandidateSet<'tcx> {
175/// A list of candidates that definitely apply to the current
176 /// obligation (meaning: types unify).
177vec: Vec<SelectionCandidate<'tcx>>,
178179/// If `true`, then there were candidates that might or might
180 /// not have applied, but we couldn't tell. This occurs when some
181 /// of the input types are type variables, in which case there are
182 /// various "builtin" rules that might or might not trigger.
183ambiguous: bool,
184}
185186#[derive(#[automatically_derived]
impl<'tcx> ::core::cmp::PartialEq for EvaluatedCandidate<'tcx> {
#[inline]
fn eq(&self, other: &EvaluatedCandidate<'tcx>) -> bool {
self.candidate == other.candidate &&
self.evaluation == other.evaluation
}
}PartialEq, #[automatically_derived]
impl<'tcx> ::core::cmp::Eq for EvaluatedCandidate<'tcx> {
#[inline]
#[doc(hidden)]
#[coverage(off)]
fn assert_fields_are_eq(&self) {
let _: ::core::cmp::AssertParamIsEq<SelectionCandidate<'tcx>>;
let _: ::core::cmp::AssertParamIsEq<EvaluationResult>;
}
}Eq, #[automatically_derived]
impl<'tcx> ::core::fmt::Debug for EvaluatedCandidate<'tcx> {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
::core::fmt::Formatter::debug_struct_field2_finish(f,
"EvaluatedCandidate", "candidate", &self.candidate, "evaluation",
&&self.evaluation)
}
}Debug, #[automatically_derived]
impl<'tcx> ::core::clone::Clone for EvaluatedCandidate<'tcx> {
#[inline]
fn clone(&self) -> EvaluatedCandidate<'tcx> {
EvaluatedCandidate {
candidate: ::core::clone::Clone::clone(&self.candidate),
evaluation: ::core::clone::Clone::clone(&self.evaluation),
}
}
}Clone)]
187struct EvaluatedCandidate<'tcx> {
188 candidate: SelectionCandidate<'tcx>,
189 evaluation: EvaluationResult,
190}
191192impl<'cx, 'tcx> SelectionContext<'cx, 'tcx> {
193pub fn new(infcx: &'cx InferCtxt<'tcx>) -> SelectionContext<'cx, 'tcx> {
194SelectionContext {
195infcx,
196 freshener: TypeFreshener::new(infcx),
197 intercrate_ambiguity_causes: None,
198 query_mode: TraitQueryMode::Standard,
199 }
200 }
201202pub fn typing_mode(&self) -> TypingMode<'tcx, CantBeErased> {
203self.infcx.typing_mode_raw().assert_not_erased()
204 }
205206pub fn with_query_mode(
207 infcx: &'cx InferCtxt<'tcx>,
208 query_mode: TraitQueryMode,
209 ) -> SelectionContext<'cx, 'tcx> {
210{
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/select/mod.rs:210",
"rustc_trait_selection::traits::select",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
::tracing_core::__macro_support::Option::Some(210u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
::tracing_core::field::FieldSet::new(&["message",
"query_mode"],
::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!("with_query_mode")
as &dyn Value)),
(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&debug(&query_mode)
as &dyn Value))])
});
} else { ; }
};debug!(?query_mode, "with_query_mode");
211SelectionContext { query_mode, ..SelectionContext::new(infcx) }
212 }
213214/// Enables tracking of intercrate ambiguity causes. See
215 /// the documentation of [`Self::intercrate_ambiguity_causes`] for more.
216pub fn enable_tracking_intercrate_ambiguity_causes(&mut self) {
217if !self.typing_mode().is_coherence() {
::core::panicking::panic("assertion failed: self.typing_mode().is_coherence()")
};assert!(self.typing_mode().is_coherence());
218if !self.intercrate_ambiguity_causes.is_none() {
::core::panicking::panic("assertion failed: self.intercrate_ambiguity_causes.is_none()")
};assert!(self.intercrate_ambiguity_causes.is_none());
219220self.intercrate_ambiguity_causes = Some(FxIndexSet::default());
221{
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/select/mod.rs:221",
"rustc_trait_selection::traits::select",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
::tracing_core::__macro_support::Option::Some(221u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
::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!("selcx: enable_tracking_intercrate_ambiguity_causes")
as &dyn Value))])
});
} else { ; }
};debug!("selcx: enable_tracking_intercrate_ambiguity_causes");
222 }
223224/// Gets the intercrate ambiguity causes collected since tracking
225 /// was enabled and disables tracking at the same time. If
226 /// tracking is not enabled, just returns an empty vector.
227pub fn take_intercrate_ambiguity_causes(
228&mut self,
229 ) -> FxIndexSet<IntercrateAmbiguityCause<'tcx>> {
230if !self.typing_mode().is_coherence() {
::core::panicking::panic("assertion failed: self.typing_mode().is_coherence()")
};assert!(self.typing_mode().is_coherence());
231232self.intercrate_ambiguity_causes.take().unwrap_or_default()
233 }
234235pub fn tcx(&self) -> TyCtxt<'tcx> {
236self.infcx.tcx
237 }
238239///////////////////////////////////////////////////////////////////////////
240 // Selection
241 //
242 // The selection phase tries to identify *how* an obligation will
243 // be resolved. For example, it will identify which impl or
244 // parameter bound is to be used. The process can be inconclusive
245 // if the self type in the obligation is not fully inferred. Selection
246 // can result in an error in one of two ways:
247 //
248 // 1. If no applicable impl or parameter bound can be found.
249 // 2. If the output type parameters in the obligation do not match
250 // those specified by the impl/bound. For example, if the obligation
251 // is `Vec<Foo>: Iterable<Bar>`, but the impl specifies
252 // `impl<T> Iterable<T> for Vec<T>`, than an error would result.
253254/// Attempts to satisfy the obligation. If successful, this will affect the surrounding
255 /// type environment by performing unification.
256x;#[instrument(level = "debug", skip(self), ret)]257pub fn poly_select(
258&mut self,
259 obligation: &PolyTraitObligation<'tcx>,
260 ) -> SelectionResult<'tcx, Selection<'tcx>> {
261assert!(!self.infcx.next_trait_solver());
262263let candidate = match self.select_from_obligation(obligation) {
264Err(SelectionError::Overflow(OverflowError::Canonical)) => {
265// In standard mode, overflow must have been caught and reported
266 // earlier.
267assert!(self.query_mode == TraitQueryMode::Canonical);
268return Err(SelectionError::Overflow(OverflowError::Canonical));
269 }
270Err(e) => {
271return Err(e);
272 }
273Ok(None) => {
274return Ok(None);
275 }
276Ok(Some(candidate)) => candidate,
277 };
278279match self.confirm_candidate(obligation, candidate) {
280Err(SelectionError::Overflow(OverflowError::Canonical)) => {
281assert!(self.query_mode == TraitQueryMode::Canonical);
282Err(SelectionError::Overflow(OverflowError::Canonical))
283 }
284Err(e) => Err(e),
285Ok(candidate) => Ok(Some(candidate)),
286 }
287 }
288289pub fn select(
290&mut self,
291 obligation: &TraitObligation<'tcx>,
292 ) -> SelectionResult<'tcx, Selection<'tcx>> {
293if self.infcx.next_trait_solver() {
294return self.infcx.select_in_new_trait_solver(obligation);
295 }
296297self.poly_select(&Obligation {
298 cause: obligation.cause.clone(),
299 param_env: obligation.param_env,
300 predicate: ty::Binder::dummy(obligation.predicate),
301 recursion_depth: obligation.recursion_depth,
302 })
303 }
304305fn select_from_obligation(
306&mut self,
307 obligation: &PolyTraitObligation<'tcx>,
308 ) -> SelectionResult<'tcx, SelectionCandidate<'tcx>> {
309if true {
if !!obligation.predicate.has_escaping_bound_vars() {
::core::panicking::panic("assertion failed: !obligation.predicate.has_escaping_bound_vars()")
};
};debug_assert!(!obligation.predicate.has_escaping_bound_vars());
310311let pec = &ProvisionalEvaluationCache::default();
312let stack = self.push_stack(TraitObligationStackList::empty(pec), obligation);
313314self.candidate_from_obligation(&stack)
315 }
316317x;#[instrument(level = "debug", skip(self), ret)]318fn candidate_from_obligation<'o>(
319&mut self,
320 stack: &TraitObligationStack<'o, 'tcx>,
321 ) -> SelectionResult<'tcx, SelectionCandidate<'tcx>> {
322debug_assert!(!self.infcx.next_trait_solver());
323// Watch out for overflow. This intentionally bypasses (and does
324 // not update) the cache.
325self.check_recursion_limit(stack.obligation, stack.obligation)?;
326327// Check the cache. Note that we freshen the trait-ref
328 // separately rather than using `stack.fresh_trait_pred` --
329 // this is because we want the unbound variables to be
330 // replaced with fresh types starting from index 0.
331let cache_fresh_trait_pred =
332 stack.obligation.predicate.fold_with(&mut TypeFreshener::new(self.infcx));
333debug!(?cache_fresh_trait_pred);
334debug_assert!(!stack.obligation.predicate.has_escaping_bound_vars());
335336if let Some(c) =
337self.check_candidate_cache(stack.obligation.param_env, cache_fresh_trait_pred)
338 {
339debug!("CACHE HIT");
340return c;
341 }
342343// If no match, compute result and insert into cache.
344 //
345 // FIXME(nikomatsakis) -- this cache is not taking into
346 // account cycles that may have occurred in forming the
347 // candidate. I don't know of any specific problems that
348 // result but it seems awfully suspicious.
349let (candidate, dep_node) =
350self.in_task(|this| this.candidate_from_obligation_no_cache(stack));
351352debug!("CACHE MISS");
353self.insert_candidate_cache(
354 stack.obligation.param_env,
355 cache_fresh_trait_pred,
356 dep_node,
357 candidate.clone(),
358 );
359 candidate
360 }
361362fn candidate_from_obligation_no_cache<'o>(
363&mut self,
364 stack: &TraitObligationStack<'o, 'tcx>,
365 ) -> SelectionResult<'tcx, SelectionCandidate<'tcx>> {
366if let Err(conflict) = self.is_knowable(stack) {
367{
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/select/mod.rs:367",
"rustc_trait_selection::traits::select",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
::tracing_core::__macro_support::Option::Some(367u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
::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!("coherence stage: not knowable")
as &dyn Value))])
});
} else { ; }
};debug!("coherence stage: not knowable");
368if self.intercrate_ambiguity_causes.is_some() {
369{
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/select/mod.rs:369",
"rustc_trait_selection::traits::select",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
::tracing_core::__macro_support::Option::Some(369u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
::tracing_core::field::FieldSet::new(&["message"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
let mut iter = __CALLSITE.metadata().fields().iter();
__CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&format_args!("evaluate_stack: intercrate_ambiguity_causes is some")
as &dyn Value))])
});
} else { ; }
};debug!("evaluate_stack: intercrate_ambiguity_causes is some");
370// Heuristics: show the diagnostics when there are no candidates in crate.
371if let Ok(candidate_set) = self.assemble_candidates(stack) {
372let mut no_candidates_apply = true;
373374for c in candidate_set.vec.iter() {
375if self.evaluate_candidate(stack, c)?.may_apply() {
376 no_candidates_apply = false;
377break;
378 }
379 }
380381if !candidate_set.ambiguous && no_candidates_apply {
382let trait_ref = self.infcx.resolve_vars_if_possible(
383stack.obligation.predicate.skip_binder().trait_ref,
384 );
385if !trait_ref.references_error() {
386let self_ty = trait_ref.self_ty();
387let self_ty = self_ty.has_concrete_skeleton().then(|| self_ty);
388let cause = if let Conflict::Upstream = conflict {
389 IntercrateAmbiguityCause::UpstreamCrateUpdate { trait_ref, self_ty }
390 } else {
391 IntercrateAmbiguityCause::DownstreamCrate { trait_ref, self_ty }
392 };
393{
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/select/mod.rs:393",
"rustc_trait_selection::traits::select",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
::tracing_core::__macro_support::Option::Some(393u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
::tracing_core::field::FieldSet::new(&["message", "cause"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
let mut iter = __CALLSITE.metadata().fields().iter();
__CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&format_args!("evaluate_stack: pushing cause")
as &dyn Value)),
(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&debug(&cause) as
&dyn Value))])
});
} else { ; }
};debug!(?cause, "evaluate_stack: pushing cause");
394self.intercrate_ambiguity_causes.as_mut().unwrap().insert(cause);
395 }
396 }
397 }
398 }
399return Ok(None);
400 }
401402let candidate_set = self.assemble_candidates(stack)?;
403404if candidate_set.ambiguous {
405{
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/select/mod.rs:405",
"rustc_trait_selection::traits::select",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
::tracing_core::__macro_support::Option::Some(405u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
::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!("candidate set contains ambig")
as &dyn Value))])
});
} else { ; }
};debug!("candidate set contains ambig");
406return Ok(None);
407 }
408409let candidates = candidate_set.vec;
410411{
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/select/mod.rs:411",
"rustc_trait_selection::traits::select",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
::tracing_core::__macro_support::Option::Some(411u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
::tracing_core::field::FieldSet::new(&["message", "stack",
"candidates"],
::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!("assembled {0} candidates",
candidates.len()) as &dyn Value)),
(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&debug(&stack) as
&dyn Value)),
(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&debug(&candidates)
as &dyn Value))])
});
} else { ; }
};debug!(?stack, ?candidates, "assembled {} candidates", candidates.len());
412413// At this point, we know that each of the entries in the
414 // candidate set is *individually* applicable. Now we have to
415 // figure out if they contain mutual incompatibilities. This
416 // frequently arises if we have an unconstrained input type --
417 // for example, we are looking for `$0: Eq` where `$0` is some
418 // unconstrained type variable. In that case, we'll get a
419 // candidate which assumes $0 == int, one that assumes `$0 ==
420 // usize`, etc. This spells an ambiguity.
421422let mut candidates = self.filter_impls(candidates, stack.obligation);
423424// If there is more than one candidate, first winnow them down
425 // by considering extra conditions (nested obligations and so
426 // forth). We don't winnow if there is exactly one
427 // candidate. This is a relatively minor distinction but it
428 // can lead to better inference and error-reporting. An
429 // example would be if there was an impl:
430 //
431 // impl<T:Clone> Vec<T> { fn push_clone(...) { ... } }
432 //
433 // and we were to see some code `foo.push_clone()` where `boo`
434 // is a `Vec<Bar>` and `Bar` does not implement `Clone`. If
435 // we were to winnow, we'd wind up with zero candidates.
436 // Instead, we select the right impl now but report "`Bar` does
437 // not implement `Clone`".
438if candidates.len() == 1 {
439return self.filter_reservation_impls(candidates.pop().unwrap());
440 }
441442// Winnow, but record the exact outcome of evaluation, which
443 // is needed for specialization. Propagate overflow if it occurs.
444let candidates = candidates
445 .into_iter()
446 .map(|c| match self.evaluate_candidate(stack, &c) {
447Ok(eval) if eval.may_apply() => {
448Ok(Some(EvaluatedCandidate { candidate: c, evaluation: eval }))
449 }
450Ok(_) => Ok(None),
451Err(OverflowError::Canonical) => {
452Err(SelectionError::Overflow(OverflowError::Canonical))
453 }
454Err(OverflowError::Error(e)) => {
455Err(SelectionError::Overflow(OverflowError::Error(e)))
456 }
457 })
458 .flat_map(Result::transpose)
459 .collect::<Result<Vec<_>, _>>()?;
460461{
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/select/mod.rs:461",
"rustc_trait_selection::traits::select",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
::tracing_core::__macro_support::Option::Some(461u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
::tracing_core::field::FieldSet::new(&["message", "stack",
"candidates"],
::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!("{0} potentially applicable candidates",
candidates.len()) as &dyn Value)),
(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&debug(&stack) as
&dyn Value)),
(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&debug(&candidates)
as &dyn Value))])
});
} else { ; }
};debug!(?stack, ?candidates, "{} potentially applicable candidates", candidates.len());
462// If there are *NO* candidates, then there are no impls --
463 // that we know of, anyway. Note that in the case where there
464 // are unbound type variables within the obligation, it might
465 // be the case that you could still satisfy the obligation
466 // from another crate by instantiating the type variables with
467 // a type from another crate that does have an impl. This case
468 // is checked for in `evaluate_stack` (and hence users
469 // who might care about this case, like coherence, should use
470 // that function).
471if candidates.is_empty() {
472// If there's an error type, 'downgrade' our result from
473 // `Err(Unimplemented)` to `Ok(None)`. This helps us avoid
474 // emitting additional spurious errors, since we're guaranteed
475 // to have emitted at least one.
476if stack.obligation.predicate.references_error() {
477{
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/select/mod.rs:477",
"rustc_trait_selection::traits::select",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
::tracing_core::__macro_support::Option::Some(477u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
::tracing_core::field::FieldSet::new(&["message",
"stack.obligation.predicate"],
::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!("found error type in predicate, treating as ambiguous")
as &dyn Value)),
(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&debug(&stack.obligation.predicate)
as &dyn Value))])
});
} else { ; }
};debug!(?stack.obligation.predicate, "found error type in predicate, treating as ambiguous");
478Ok(None)
479 } else {
480Err(SelectionError::Unimplemented)
481 }
482 } else {
483let has_non_region_infer = stack.obligation.predicate.has_non_region_infer();
484let candidate_preference_mode =
485CandidatePreferenceMode::compute(self.tcx(), stack.obligation.predicate.def_id());
486if let Some(candidate) =
487self.winnow_candidates(has_non_region_infer, candidate_preference_mode, candidates)
488 {
489self.filter_reservation_impls(candidate)
490 } else {
491Ok(None)
492 }
493 }
494 }
495496///////////////////////////////////////////////////////////////////////////
497 // EVALUATION
498 //
499 // Tests whether an obligation can be selected or whether an impl
500 // can be applied to particular types. It skips the "confirmation"
501 // step and hence completely ignores output type parameters.
502 //
503 // The result is "true" if the obligation *may* hold and "false" if
504 // we can be sure it does not.
505506/// Evaluates whether the obligation `obligation` can be satisfied
507 /// and returns an `EvaluationResult`. This is meant for the
508 /// *initial* call.
509 ///
510 /// Do not use this directly, use `infcx.evaluate_obligation` instead.
511pub fn evaluate_root_obligation(
512&mut self,
513 obligation: &PredicateObligation<'tcx>,
514 ) -> Result<EvaluationResult, OverflowError> {
515if true {
if !!self.infcx.next_trait_solver() {
::core::panicking::panic("assertion failed: !self.infcx.next_trait_solver()")
};
};debug_assert!(!self.infcx.next_trait_solver());
516self.evaluation_probe(|this| {
517let goal =
518this.infcx.resolve_vars_if_possible((obligation.predicate, obligation.param_env));
519let mut result = this.evaluate_predicate_recursively(
520 TraitObligationStackList::empty(&ProvisionalEvaluationCache::default()),
521 obligation.clone(),
522 )?;
523// If the predicate has done any inference, then downgrade the
524 // result to ambiguous.
525if this.infcx.resolve_vars_if_possible(goal) != goal {
526result = result.max(EvaluatedToAmbig);
527 }
528Ok(result)
529 })
530 }
531532/// Computes the evaluation result of `op`, discarding any constraints.
533 ///
534 /// This also runs for leak check to allow higher ranked region errors to impact
535 /// selection. By default it checks for leaks from all universes created inside of
536 /// `op`, but this can be overwritten if necessary.
537fn evaluation_probe(
538&mut self,
539 op: impl FnOnce(&mut Self) -> Result<EvaluationResult, OverflowError>,
540 ) -> Result<EvaluationResult, OverflowError> {
541self.infcx.probe(|snapshot| -> Result<EvaluationResult, OverflowError> {
542let outer_universe = self.infcx.universe();
543let result = op(self)?;
544545match self.infcx.leak_check(outer_universe, Some(snapshot)) {
546Ok(()) => {}
547Err(_) => return Ok(EvaluatedToErr),
548 }
549550if self.infcx.opaque_types_added_in_snapshot(snapshot) {
551return Ok(result.max(EvaluatedToOkModuloOpaqueTypes));
552 }
553554if self.infcx.region_constraints_added_in_snapshot(snapshot) {
555Ok(result.max(EvaluatedToOkModuloRegions))
556 } else {
557Ok(result)
558 }
559 })
560 }
561562/// Evaluates the predicates in `predicates` recursively. This may
563 /// guide inference. If this is not desired, run it inside of a
564 /// is run within an inference probe.
565 /// `probe`.
566#[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("evaluate_predicates_recursively",
"rustc_trait_selection::traits::select",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
::tracing_core::__macro_support::Option::Some(566u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
::tracing_core::field::FieldSet::new(&["predicates"],
::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(&predicates)
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:
Result<EvaluationResult, OverflowError> = loop {};
return __tracing_attr_fake_return;
}
{
let mut result = EvaluatedToOk;
for mut obligation in predicates {
obligation.set_depth_from_parent(stack.depth());
let eval =
self.evaluate_predicate_recursively(stack,
obligation.clone())?;
if let EvaluatedToErr = eval {
return Ok(EvaluatedToErr);
} else { result = cmp::max(result, eval); }
}
Ok(result)
}
}
}#[instrument(skip(self, stack), level = "debug")]567fn evaluate_predicates_recursively<'o, I>(
568&mut self,
569 stack: TraitObligationStackList<'o, 'tcx>,
570 predicates: I,
571 ) -> Result<EvaluationResult, OverflowError>
572where
573I: IntoIterator<Item = PredicateObligation<'tcx>> + std::fmt::Debug,
574 {
575let mut result = EvaluatedToOk;
576for mut obligation in predicates {
577 obligation.set_depth_from_parent(stack.depth());
578let eval = self.evaluate_predicate_recursively(stack, obligation.clone())?;
579if let EvaluatedToErr = eval {
580// fast-path - EvaluatedToErr is the top of the lattice,
581 // so we don't need to look on the other predicates.
582return Ok(EvaluatedToErr);
583 } else {
584 result = cmp::max(result, eval);
585 }
586 }
587Ok(result)
588 }
589590x;#[instrument(
591 level = "debug",
592 skip(self, previous_stack),
593 fields(previous_stack = ?previous_stack.head())
594 ret,
595 )]596fn evaluate_predicate_recursively<'o>(
597&mut self,
598 previous_stack: TraitObligationStackList<'o, 'tcx>,
599 obligation: PredicateObligation<'tcx>,
600 ) -> Result<EvaluationResult, OverflowError> {
601debug_assert!(!self.infcx.next_trait_solver());
602// `previous_stack` stores a `PolyTraitObligation`, while `obligation` is
603 // a `PredicateObligation`. These are distinct types, so we can't
604 // use any `Option` combinator method that would force them to be
605 // the same.
606match previous_stack.head() {
607Some(h) => self.check_recursion_limit(&obligation, h.obligation)?,
608None => self.check_recursion_limit(&obligation, &obligation)?,
609 }
610611if !self.infcx.disable_trait_solver_fast_paths()
612 && sizedness_fast_path(self.tcx(), obligation.predicate, obligation.param_env)
613 {
614return Ok(EvaluatedToOk);
615 }
616617 ensure_sufficient_stack(|| {
618let bound_predicate = obligation.predicate.kind();
619match bound_predicate.skip_binder() {
620 ty::PredicateKind::Clause(ty::ClauseKind::Trait(t)) => {
621let t = bound_predicate.rebind(t);
622debug_assert!(!t.has_escaping_bound_vars());
623let obligation = obligation.with(self.tcx(), t);
624self.evaluate_trait_predicate_recursively(previous_stack, obligation)
625 }
626627 ty::PredicateKind::Clause(ty::ClauseKind::HostEffect(data)) => {
628self.infcx.enter_forall(bound_predicate.rebind(data), |data| {
629match effects::evaluate_host_effect_obligation(
630self,
631&obligation.with(self.tcx(), data),
632 ) {
633Ok(nested) => {
634self.evaluate_predicates_recursively(previous_stack, nested)
635 }
636Err(effects::EvaluationFailure::Ambiguous) => Ok(EvaluatedToAmbig),
637Err(effects::EvaluationFailure::NoSolution) => Ok(EvaluatedToErr),
638 }
639 })
640 }
641642 ty::PredicateKind::Subtype(p) => {
643let p = bound_predicate.rebind(p);
644// Does this code ever run?
645match self.infcx.subtype_predicate(&obligation.cause, obligation.param_env, p) {
646Ok(Ok(InferOk { obligations, .. })) => {
647self.evaluate_predicates_recursively(previous_stack, obligations)
648 }
649Ok(Err(_)) => Ok(EvaluatedToErr),
650Err(..) => Ok(EvaluatedToAmbig),
651 }
652 }
653654 ty::PredicateKind::Coerce(p) => {
655let p = bound_predicate.rebind(p);
656// Does this code ever run?
657match self.infcx.coerce_predicate(&obligation.cause, obligation.param_env, p) {
658Ok(Ok(InferOk { obligations, .. })) => {
659self.evaluate_predicates_recursively(previous_stack, obligations)
660 }
661Ok(Err(_)) => Ok(EvaluatedToErr),
662Err(..) => Ok(EvaluatedToAmbig),
663 }
664 }
665666 ty::PredicateKind::Clause(ty::ClauseKind::WellFormed(term)) => {
667if term.is_trivially_wf(self.tcx()) {
668return Ok(EvaluatedToOk);
669 }
670671// So, there is a bit going on here. First, `WellFormed` predicates
672 // are coinductive, like trait predicates with auto traits.
673 // This means that we need to detect if we have recursively
674 // evaluated `WellFormed(X)`. Otherwise, we would run into
675 // a "natural" overflow error.
676 //
677 // Now, the next question is whether we need to do anything
678 // special with caching. Considering the following tree:
679 // - `WF(Foo<T>)`
680 // - `Bar<T>: Send`
681 // - `WF(Foo<T>)`
682 // - `Foo<T>: Trait`
683 // In this case, the innermost `WF(Foo<T>)` should return
684 // `EvaluatedToOk`, since it's coinductive. Then if
685 // `Bar<T>: Send` is resolved to `EvaluatedToOk`, it can be
686 // inserted into a cache (because without thinking about `WF`
687 // goals, it isn't in a cycle). If `Foo<T>: Trait` later doesn't
688 // hold, then `Bar<T>: Send` shouldn't hold. Therefore, we
689 // *do* need to keep track of coinductive cycles.
690691let cache = previous_stack.cache;
692let dfn = cache.next_dfn();
693694for stack_term in previous_stack.cache.wf_args.borrow().iter().rev() {
695if stack_term.0 != term {
696continue;
697 }
698debug!("WellFormed({:?}) on stack", term);
699if let Some(stack) = previous_stack.head {
700// Okay, let's imagine we have two different stacks:
701 // `T: NonAutoTrait -> WF(T) -> T: NonAutoTrait`
702 // `WF(T) -> T: NonAutoTrait -> WF(T)`
703 // Because of this, we need to check that all
704 // predicates between the WF goals are coinductive.
705 // Otherwise, we can say that `T: NonAutoTrait` is
706 // true.
707 // Let's imagine we have a predicate stack like
708 // `Foo: Bar -> WF(T) -> T: NonAutoTrait -> T: Auto`
709 // depth ^1 ^2 ^3
710 // and the current predicate is `WF(T)`. `wf_args`
711 // would contain `(T, 1)`. We want to check all
712 // trait predicates greater than `1`. The previous
713 // stack would be `T: Auto`.
714let cycle = stack.iter().take_while(|s| s.depth > stack_term.1);
715let tcx = self.tcx();
716let cycle = cycle.map(|stack| stack.obligation.predicate.upcast(tcx));
717if self.coinductive_match(cycle) {
718 stack.update_reached_depth(stack_term.1);
719return Ok(EvaluatedToOk);
720 } else {
721return Ok(EvaluatedToAmbigStackDependent);
722 }
723 }
724return Ok(EvaluatedToOk);
725 }
726727match wf::obligations(
728self.infcx,
729 obligation.param_env,
730 obligation.cause.body_id,
731 obligation.recursion_depth + 1,
732 term,
733 obligation.cause.span,
734 ) {
735Some(obligations) => {
736 cache.wf_args.borrow_mut().push((term, previous_stack.depth()));
737let result =
738self.evaluate_predicates_recursively(previous_stack, obligations);
739 cache.wf_args.borrow_mut().pop();
740741let result = result?;
742743if !result.must_apply_modulo_regions() {
744 cache.on_failure(dfn);
745 }
746747 cache.on_completion(dfn);
748749Ok(result)
750 }
751None => Ok(EvaluatedToAmbig),
752 }
753 }
754755 ty::PredicateKind::Clause(ty::ClauseKind::TypeOutlives(pred)) => {
756// A global type with no free lifetimes or generic parameters
757 // outlives anything.
758if pred.0.has_free_regions()
759 || pred.0.has_bound_regions()
760 || pred.0.has_non_region_infer()
761 || pred.0.has_non_region_param()
762 {
763Ok(EvaluatedToOkModuloRegions)
764 } else {
765Ok(EvaluatedToOk)
766 }
767 }
768769 ty::PredicateKind::Clause(ty::ClauseKind::RegionOutlives(..)) => {
770// We do not consider region relationships when evaluating trait matches.
771Ok(EvaluatedToOkModuloRegions)
772 }
773774 ty::PredicateKind::DynCompatible(trait_def_id) => {
775if self.tcx().is_dyn_compatible(trait_def_id) {
776Ok(EvaluatedToOk)
777 } else {
778Ok(EvaluatedToErr)
779 }
780 }
781782 ty::PredicateKind::Clause(ty::ClauseKind::Projection(data)) => {
783let data = bound_predicate.rebind(data);
784let project_obligation = obligation.with(self.tcx(), data);
785match project::poly_project_and_unify_term(self, &project_obligation) {
786 ProjectAndUnifyResult::Holds(mut subobligations) => {
787'compute_res: {
788// If we've previously marked this projection as 'complete', then
789 // use the final cached result (either `EvaluatedToOk` or
790 // `EvaluatedToOkModuloRegions`), and skip re-evaluating the
791 // sub-obligations.
792if let Some(key) =
793 ProjectionCacheKey::from_poly_projection_obligation(
794self,
795&project_obligation,
796 )
797 && let Some(cached_res) = self
798.infcx
799 .inner
800 .borrow_mut()
801 .projection_cache()
802 .is_complete(key)
803 {
804break 'compute_res Ok(cached_res);
805 }
806807// Need to explicitly set the depth of nested goals here as
808 // projection obligations can cycle by themselves and in
809 // `evaluate_predicates_recursively` we only add the depth
810 // for parent trait goals because only these get added to the
811 // `TraitObligationStackList`.
812for subobligation in subobligations.iter_mut() {
813 subobligation.set_depth_from_parent(obligation.recursion_depth);
814 }
815let res = self.evaluate_predicates_recursively(
816 previous_stack,
817 subobligations,
818 );
819if let Ok(eval_rslt) = res
820 && (eval_rslt == EvaluatedToOk
821 || eval_rslt == EvaluatedToOkModuloRegions)
822 && let Some(key) =
823 ProjectionCacheKey::from_poly_projection_obligation(
824self,
825&project_obligation,
826 )
827 {
828// If the result is something that we can cache, then mark this
829 // entry as 'complete'. This will allow us to skip evaluating the
830 // subobligations at all the next time we evaluate the projection
831 // predicate.
832self.infcx
833 .inner
834 .borrow_mut()
835 .projection_cache()
836 .complete(key, eval_rslt);
837 }
838 res
839 }
840 }
841 ProjectAndUnifyResult::FailedNormalization => Ok(EvaluatedToAmbig),
842 ProjectAndUnifyResult::Recursive => Ok(EvaluatedToAmbigStackDependent),
843 ProjectAndUnifyResult::MismatchedProjectionTypes(_) => Ok(EvaluatedToErr),
844 }
845 }
846847 ty::PredicateKind::Clause(ty::ClauseKind::UnstableFeature(symbol)) => {
848if may_use_unstable_feature(self.infcx, obligation.param_env, symbol) {
849Ok(EvaluatedToOk)
850 } else {
851Ok(EvaluatedToAmbig)
852 }
853 }
854855 ty::PredicateKind::Clause(ty::ClauseKind::ConstEvaluatable(uv)) => {
856match const_evaluatable::is_const_evaluatable(
857self.infcx,
858 uv,
859 obligation.param_env,
860 obligation.cause.span,
861 ) {
862Ok(()) => Ok(EvaluatedToOk),
863Err(NotConstEvaluatable::MentionsInfer) => Ok(EvaluatedToAmbig),
864Err(NotConstEvaluatable::MentionsParam) => Ok(EvaluatedToErr),
865Err(_) => Ok(EvaluatedToErr),
866 }
867 }
868869 ty::PredicateKind::ConstEquate(c1, c2) => {
870let tcx = self.tcx();
871assert!(
872 tcx.features().generic_const_exprs(),
873"`ConstEquate` without a feature gate: {c1:?} {c2:?}",
874 );
875876 {
877let c1 = tcx.expand_abstract_consts(c1);
878let c2 = tcx.expand_abstract_consts(c2);
879debug!(
880"evaluate_predicate_recursively: equating consts:\nc1= {:?}\nc2= {:?}",
881 c1, c2
882 );
883884match (c1.kind(), c2.kind()) {
885 (ty::ConstKind::Unevaluated(a), ty::ConstKind::Unevaluated(b))
886if a.kind == b.kind
887 && matches!(
888 a.kind,
889 ty::UnevaluatedConstKind::Projection { .. }
890 | ty::UnevaluatedConstKind::Inherent { .. }
891 ) =>
892 {
893if let Ok(InferOk { obligations, value: () }) = self
894.infcx
895 .at(&obligation.cause, obligation.param_env)
896// Can define opaque types as this is only reachable with
897 // `generic_const_exprs`
898.eq(
899 DefineOpaqueTypes::Yes,
900 ty::AliasTerm::from(a),
901 ty::AliasTerm::from(b),
902 )
903 {
904return self.evaluate_predicates_recursively(
905 previous_stack,
906 obligations,
907 );
908 }
909 }
910 (_, ty::ConstKind::Unevaluated(_))
911 | (ty::ConstKind::Unevaluated(_), _) => (),
912 (_, _) => {
913if let Ok(InferOk { obligations, value: () }) = self
914.infcx
915 .at(&obligation.cause, obligation.param_env)
916// Can define opaque types as this is only reachable with
917 // `generic_const_exprs`
918.eq(DefineOpaqueTypes::Yes, c1, c2)
919 {
920return self.evaluate_predicates_recursively(
921 previous_stack,
922 obligations,
923 );
924 }
925 }
926 }
927 }
928929let evaluate = |c: ty::Const<'tcx>| {
930if let ty::ConstKind::Unevaluated(_) = c.kind() {
931match crate::traits::try_evaluate_const(
932self.infcx,
933 c,
934 obligation.param_env,
935 ) {
936Ok(val) => Ok(val),
937Err(e) => Err(e),
938 }
939 } else {
940Ok(c)
941 }
942 };
943944match (evaluate(c1), evaluate(c2)) {
945 (Ok(c1), Ok(c2)) => {
946match self.infcx.at(&obligation.cause, obligation.param_env).eq(
947// Can define opaque types as this is only reachable with
948 // `generic_const_exprs`
949DefineOpaqueTypes::Yes,
950 c1,
951 c2,
952 ) {
953Ok(inf_ok) => self.evaluate_predicates_recursively(
954 previous_stack,
955 inf_ok.into_obligations(),
956 ),
957Err(_) => Ok(EvaluatedToErr),
958 }
959 }
960 (Err(EvaluateConstErr::InvalidConstParamTy(..)), _)
961 | (_, Err(EvaluateConstErr::InvalidConstParamTy(..))) => Ok(EvaluatedToErr),
962 (Err(EvaluateConstErr::EvaluationFailure(..)), _)
963 | (_, Err(EvaluateConstErr::EvaluationFailure(..))) => Ok(EvaluatedToErr),
964 (Err(EvaluateConstErr::HasGenericsOrInfers), _)
965 | (_, Err(EvaluateConstErr::HasGenericsOrInfers)) => {
966if c1.has_non_region_infer() || c2.has_non_region_infer() {
967Ok(EvaluatedToAmbig)
968 } else {
969// Two different constants using generic parameters ~> error.
970Ok(EvaluatedToErr)
971 }
972 }
973 }
974 }
975 ty::PredicateKind::NormalizesTo(..) => {
976bug!("NormalizesTo is only used by the new solver")
977 }
978 ty::PredicateKind::AliasRelate(..) => {
979bug!("AliasRelate is only used by the new solver")
980 }
981 ty::PredicateKind::Ambiguous => Ok(EvaluatedToAmbig),
982 ty::PredicateKind::Clause(ty::ClauseKind::ConstArgHasType(ct, ty)) => {
983let ct = self.infcx.shallow_resolve_const(ct);
984let ct_ty = match ct.kind() {
985 ty::ConstKind::Infer(_) => {
986return Ok(EvaluatedToAmbig);
987 }
988 ty::ConstKind::Error(_) => return Ok(EvaluatedToOk),
989 ty::ConstKind::Value(cv) => cv.ty,
990 ty::ConstKind::Unevaluated(uv) => uv.type_of(self.tcx()).skip_norm_wip(),
991// FIXME(generic_const_exprs): See comment in `fulfill.rs`
992ty::ConstKind::Expr(_) => return Ok(EvaluatedToOk),
993 ty::ConstKind::Placeholder(_) => {
994bug!("placeholder const {:?} in old solver", ct)
995 }
996 ty::ConstKind::Bound(_, _) => bug!("escaping bound vars in {:?}", ct),
997 ty::ConstKind::Param(param_ct) => {
998 param_ct.find_const_ty_from_env(obligation.param_env)
999 }
1000 };
10011002match self.infcx.at(&obligation.cause, obligation.param_env).eq(
1003// Only really exercised by generic_const_exprs
1004DefineOpaqueTypes::Yes,
1005 ct_ty,
1006 ty,
1007 ) {
1008Ok(inf_ok) => self.evaluate_predicates_recursively(
1009 previous_stack,
1010 inf_ok.into_obligations(),
1011 ),
1012Err(_) => Ok(EvaluatedToErr),
1013 }
1014 }
1015 }
1016 })
1017 }
10181019x;#[instrument(skip(self, previous_stack), level = "debug", ret)]1020fn evaluate_trait_predicate_recursively<'o>(
1021&mut self,
1022 previous_stack: TraitObligationStackList<'o, 'tcx>,
1023mut obligation: PolyTraitObligation<'tcx>,
1024 ) -> Result<EvaluationResult, OverflowError> {
1025if !self.typing_mode().is_coherence()
1026 && obligation.is_global()
1027 && obligation.param_env.caller_bounds().iter().all(|bound| bound.has_param())
1028 {
1029// If a param env has no global bounds, global obligations do not
1030 // depend on its particular value in order to work, so we can clear
1031 // out the param env and get better caching.
1032debug!("in global");
1033 obligation.param_env = ty::ParamEnv::empty();
1034 }
10351036let stack = self.push_stack(previous_stack, &obligation);
1037let fresh_trait_pred = stack.fresh_trait_pred;
1038let param_env = obligation.param_env;
10391040debug!(?fresh_trait_pred);
10411042// If a trait predicate is in the (local or global) evaluation cache,
1043 // then we know it holds without cycles.
1044if let Some(result) = self.check_evaluation_cache(param_env, fresh_trait_pred) {
1045debug!("CACHE HIT");
1046return Ok(result);
1047 }
10481049if let Some(result) = stack.cache().get_provisional(fresh_trait_pred) {
1050debug!("PROVISIONAL CACHE HIT");
1051 stack.update_reached_depth(result.reached_depth);
1052return Ok(result.result);
1053 }
10541055// Check if this is a match for something already on the
1056 // stack. If so, we don't want to insert the result into the
1057 // main cache (it is cycle dependent) nor the provisional
1058 // cache (which is meant for things that have completed but
1059 // for a "backedge" -- this result *is* the backedge).
1060if let Some(cycle_result) = self.check_evaluation_cycle(&stack) {
1061return Ok(cycle_result);
1062 }
10631064let (result, dep_node) = self.in_task(|this| {
1065let mut result = this.evaluate_stack(&stack)?;
10661067// fix issue #103563, we don't normalize
1068 // nested obligations which produced by `TraitDef` candidate
1069 // (i.e. using bounds on assoc items as assumptions).
1070 // because we don't have enough information to
1071 // normalize these obligations before evaluating.
1072 // so we will try to normalize the obligation and evaluate again.
1073 // we will replace it with new solver in the future.
1074if EvaluationResult::EvaluatedToErr == result
1075 && fresh_trait_pred.has_aliases()
1076 && fresh_trait_pred.is_global()
1077 {
1078let mut nested_obligations = PredicateObligations::new();
1079let predicate = normalize_with_depth_to(
1080 this,
1081 param_env,
1082 obligation.cause.clone(),
1083 obligation.recursion_depth + 1,
1084 obligation.predicate,
1085&mut nested_obligations,
1086 );
1087if predicate != obligation.predicate {
1088let mut nested_result = EvaluationResult::EvaluatedToOk;
1089for obligation in nested_obligations {
1090 nested_result = cmp::max(
1091 this.evaluate_predicate_recursively(previous_stack, obligation)?,
1092 nested_result,
1093 );
1094 }
10951096if nested_result.must_apply_modulo_regions() {
1097let obligation = obligation.with(this.tcx(), predicate);
1098 result = cmp::max(
1099 nested_result,
1100 this.evaluate_trait_predicate_recursively(previous_stack, obligation)?,
1101 );
1102 }
1103 }
1104 }
11051106Ok::<_, OverflowError>(result)
1107 });
11081109let result = result?;
11101111if !result.must_apply_modulo_regions() {
1112 stack.cache().on_failure(stack.dfn);
1113 }
11141115let reached_depth = stack.reached_depth.get();
1116if reached_depth >= stack.depth {
1117debug!("CACHE MISS");
1118self.insert_evaluation_cache(param_env, fresh_trait_pred, dep_node, result);
1119 stack.cache().on_completion(stack.dfn);
1120 } else if let Some(_guar) = self.infcx.tainted_by_errors() {
1121// When an error has occurred, we allow global caching of results even if they
1122 // appear stack-dependent. This prevents exponential re-evaluation of cycles
1123 // in the presence of errors, avoiding compiler hangs like #150907.
1124 // This is safe because compilation will fail anyway.
1125debug!("CACHE MISS (tainted by errors)");
1126self.insert_evaluation_cache(param_env, fresh_trait_pred, dep_node, result);
1127 stack.cache().on_completion(stack.dfn);
1128 } else {
1129debug!("PROVISIONAL");
1130debug!(
1131"caching provisionally because {:?} \
1132 is a cycle participant (at depth {}, reached depth {})",
1133 fresh_trait_pred, stack.depth, reached_depth,
1134 );
11351136 stack.cache().insert_provisional(stack.dfn, reached_depth, fresh_trait_pred, result);
1137 }
11381139Ok(result)
1140 }
11411142/// If there is any previous entry on the stack that precisely
1143 /// matches this obligation, then we can assume that the
1144 /// obligation is satisfied for now (still all other conditions
1145 /// must be met of course). One obvious case this comes up is
1146 /// marker traits like `Send`. Think of a linked list:
1147 ///
1148 /// struct List<T> { data: T, next: Option<Box<List<T>>> }
1149 ///
1150 /// `Box<List<T>>` will be `Send` if `T` is `Send` and
1151 /// `Option<Box<List<T>>>` is `Send`, and in turn
1152 /// `Option<Box<List<T>>>` is `Send` if `Box<List<T>>` is
1153 /// `Send`.
1154 ///
1155 /// Note that we do this comparison using the `fresh_trait_pred`
1156 /// fields. Because these have all been freshened using
1157 /// `self.freshener`, we can be sure that (a) this will not
1158 /// affect the inferencer state and (b) that if we see two
1159 /// fresh regions with the same index, they refer to the same
1160 /// unbound type variable.
1161fn check_evaluation_cycle(
1162&mut self,
1163 stack: &TraitObligationStack<'_, 'tcx>,
1164 ) -> Option<EvaluationResult> {
1165if let Some(cycle_depth) = stack1166 .iter()
1167 .skip(1) // Skip top-most frame.
1168.find(|prev| {
1169stack.obligation.param_env == prev.obligation.param_env
1170 && stack.fresh_trait_pred == prev.fresh_trait_pred
1171 })
1172 .map(|stack| stack.depth)
1173 {
1174{
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/select/mod.rs:1174",
"rustc_trait_selection::traits::select",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
::tracing_core::__macro_support::Option::Some(1174u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
::tracing_core::field::FieldSet::new(&["message"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
let mut iter = __CALLSITE.metadata().fields().iter();
__CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&format_args!("evaluate_stack --> recursive at depth {0}",
cycle_depth) as &dyn Value))])
});
} else { ; }
};debug!("evaluate_stack --> recursive at depth {}", cycle_depth);
11751176// If we have a stack like `A B C D E A`, where the top of
1177 // the stack is the final `A`, then this will iterate over
1178 // `A, E, D, C, B` -- i.e., all the participants apart
1179 // from the cycle head. We mark them as participating in a
1180 // cycle. This suppresses caching for those nodes. See
1181 // `in_cycle` field for more details.
1182stack.update_reached_depth(cycle_depth);
11831184// Subtle: when checking for a coinductive cycle, we do
1185 // not compare using the "freshened trait refs" (which
1186 // have erased regions) but rather the fully explicit
1187 // trait refs. This is important because it's only a cycle
1188 // if the regions match exactly.
1189let cycle = stack.iter().skip(1).take_while(|s| s.depth >= cycle_depth);
1190let tcx = self.tcx();
1191let cycle = cycle.map(|stack| stack.obligation.predicate.upcast(tcx));
1192if self.coinductive_match(cycle) {
1193{
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/select/mod.rs:1193",
"rustc_trait_selection::traits::select",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
::tracing_core::__macro_support::Option::Some(1193u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
::tracing_core::field::FieldSet::new(&["message"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
let mut iter = __CALLSITE.metadata().fields().iter();
__CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&format_args!("evaluate_stack --> recursive, coinductive")
as &dyn Value))])
});
} else { ; }
};debug!("evaluate_stack --> recursive, coinductive");
1194Some(EvaluatedToOk)
1195 } else {
1196{
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/select/mod.rs:1196",
"rustc_trait_selection::traits::select",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
::tracing_core::__macro_support::Option::Some(1196u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
::tracing_core::field::FieldSet::new(&["message"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
let mut iter = __CALLSITE.metadata().fields().iter();
__CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&format_args!("evaluate_stack --> recursive, inductive")
as &dyn Value))])
});
} else { ; }
};debug!("evaluate_stack --> recursive, inductive");
1197Some(EvaluatedToAmbigStackDependent)
1198 }
1199 } else {
1200None1201 }
1202 }
12031204fn evaluate_stack<'o>(
1205&mut self,
1206 stack: &TraitObligationStack<'o, 'tcx>,
1207 ) -> Result<EvaluationResult, OverflowError> {
1208if true {
if !!self.infcx.next_trait_solver() {
::core::panicking::panic("assertion failed: !self.infcx.next_trait_solver()")
};
};debug_assert!(!self.infcx.next_trait_solver());
1209// In intercrate mode, whenever any of the generics are unbound,
1210 // there can always be an impl. Even if there are no impls in
1211 // this crate, perhaps the type would be unified with
1212 // something from another crate that does provide an impl.
1213 //
1214 // In intra mode, we must still be conservative. The reason is
1215 // that we want to avoid cycles. Imagine an impl like:
1216 //
1217 // impl<T:Eq> Eq for Vec<T>
1218 //
1219 // and a trait reference like `$0 : Eq` where `$0` is an
1220 // unbound variable. When we evaluate this trait-reference, we
1221 // will unify `$0` with `Vec<$1>` (for some fresh variable
1222 // `$1`), on the condition that `$1 : Eq`. We will then wind
1223 // up with many candidates (since that are other `Eq` impls
1224 // that apply) and try to winnow things down. This results in
1225 // a recursive evaluation that `$1 : Eq` -- as you can
1226 // imagine, this is just where we started. To avoid that, we
1227 // check for unbound variables and return an ambiguous (hence possible)
1228 // match if we've seen this trait before.
1229 //
1230 // This suffices to allow chains like `FnMut` implemented in
1231 // terms of `Fn` etc, but we could probably make this more
1232 // precise still.
1233let unbound_input_types =
1234stack.fresh_trait_pred.skip_binder().trait_ref.args.types().any(|ty| ty.is_fresh());
12351236if unbound_input_types1237 && stack.iter().skip(1).any(|prev| {
1238stack.obligation.param_env == prev.obligation.param_env
1239 && self.match_fresh_trait_preds(stack.fresh_trait_pred, prev.fresh_trait_pred)
1240 })
1241 {
1242{
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/select/mod.rs:1242",
"rustc_trait_selection::traits::select",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
::tracing_core::__macro_support::Option::Some(1242u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
::tracing_core::field::FieldSet::new(&["message"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
let mut iter = __CALLSITE.metadata().fields().iter();
__CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&format_args!("evaluate_stack --> unbound argument, recursive --> giving up")
as &dyn Value))])
});
} else { ; }
};debug!("evaluate_stack --> unbound argument, recursive --> giving up");
1243return Ok(EvaluatedToAmbigStackDependent);
1244 }
12451246match self.candidate_from_obligation(stack) {
1247Ok(Some(c)) => self.evaluate_candidate(stack, &c),
1248Ok(None) => Ok(EvaluatedToAmbig),
1249Err(SelectionError::Overflow(OverflowError::Canonical)) => {
1250Err(OverflowError::Canonical)
1251 }
1252Err(..) => Ok(EvaluatedToErr),
1253 }
1254 }
12551256/// For defaulted traits, we use a co-inductive strategy to solve, so
1257 /// that recursion is ok. This routine returns `true` if the top of the
1258 /// stack (`cycle[0]`):
1259 ///
1260 /// - is a coinductive trait: an auto-trait or `Sized`,
1261 /// - it also appears in the backtrace at some position `X`,
1262 /// - all the predicates at positions `X..` between `X` and the top are
1263 /// also coinductive traits.
1264pub(crate) fn coinductive_match<I>(&mut self, mut cycle: I) -> bool1265where
1266I: Iterator<Item = ty::Predicate<'tcx>>,
1267 {
1268cycle.all(|p| match p.kind().skip_binder() {
1269 ty::PredicateKind::Clause(ty::ClauseKind::Trait(data)) => {
1270self.infcx.tcx.trait_is_coinductive(data.def_id())
1271 }
1272 ty::PredicateKind::Clause(ty::ClauseKind::WellFormed(_)) => {
1273// FIXME(generic_const_exprs): GCE needs well-formedness predicates to be
1274 // coinductive, but GCE is on the way out anyways, so this should eventually
1275 // be replaced with `false`.
1276self.infcx.tcx.features().generic_const_exprs()
1277 }
1278_ => false,
1279 })
1280 }
12811282/// Further evaluates `candidate` to decide whether all type parameters match and whether nested
1283 /// obligations are met. Returns whether `candidate` remains viable after this further
1284 /// scrutiny.
1285x;#[instrument(
1286 level = "debug",
1287 skip(self, stack),
1288 fields(depth = stack.obligation.recursion_depth),
1289 ret
1290 )]1291fn evaluate_candidate<'o>(
1292&mut self,
1293 stack: &TraitObligationStack<'o, 'tcx>,
1294 candidate: &SelectionCandidate<'tcx>,
1295 ) -> Result<EvaluationResult, OverflowError> {
1296let mut result = self.evaluation_probe(|this| {
1297match this.confirm_candidate(stack.obligation, candidate.clone()) {
1298Ok(selection) => {
1299debug!(?selection);
1300 this.evaluate_predicates_recursively(
1301 stack.list(),
1302 selection.nested_obligations().into_iter(),
1303 )
1304 }
1305Err(..) => Ok(EvaluatedToErr),
1306 }
1307 })?;
13081309// If we erased any lifetimes, then we want to use
1310 // `EvaluatedToOkModuloRegions` instead of `EvaluatedToOk`
1311 // as your final result. The result will be cached using
1312 // the freshened trait predicate as a key, so we need
1313 // our result to be correct by *any* choice of original lifetimes,
1314 // not just the lifetime choice for this particular (non-erased)
1315 // predicate.
1316 // See issue #80691
1317if stack.fresh_trait_pred.has_erased_regions() {
1318 result = result.max(EvaluatedToOkModuloRegions);
1319 }
13201321Ok(result)
1322 }
13231324fn check_evaluation_cache(
1325&self,
1326 param_env: ty::ParamEnv<'tcx>,
1327 trait_pred: ty::PolyTraitPredicate<'tcx>,
1328 ) -> Option<EvaluationResult> {
1329let infcx = self.infcx;
1330let tcx = infcx.tcx;
1331if self.can_use_global_caches(param_env, trait_pred) {
1332let key = (infcx.typing_env(param_env), trait_pred);
1333if let Some(res) = tcx.evaluation_cache.get(&key, tcx) {
1334Some(res)
1335 } else {
1336if true {
match (&infcx.evaluation_cache.get(&(param_env, trait_pred), tcx), &None)
{
(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);
}
}
};
};debug_assert_eq!(infcx.evaluation_cache.get(&(param_env, trait_pred), tcx), None);
1337None1338 }
1339 } else {
1340self.infcx.evaluation_cache.get(&(param_env, trait_pred), tcx)
1341 }
1342 }
13431344fn insert_evaluation_cache(
1345&mut self,
1346 param_env: ty::ParamEnv<'tcx>,
1347 trait_pred: ty::PolyTraitPredicate<'tcx>,
1348 dep_node: DepNodeIndex,
1349 result: EvaluationResult,
1350 ) {
1351// Avoid caching results that depend on more than just the trait-ref
1352 // - the stack can create recursion.
1353if result.is_stack_dependent() {
1354return;
1355 }
13561357let infcx = self.infcx;
1358let tcx = infcx.tcx;
1359if self.can_use_global_caches(param_env, trait_pred) {
1360{
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/select/mod.rs:1360",
"rustc_trait_selection::traits::select",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
::tracing_core::__macro_support::Option::Some(1360u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
::tracing_core::field::FieldSet::new(&["message",
"trait_pred", "result"],
::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!("insert_evaluation_cache global")
as &dyn Value)),
(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&debug(&trait_pred)
as &dyn Value)),
(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&debug(&result) as
&dyn Value))])
});
} else { ; }
};debug!(?trait_pred, ?result, "insert_evaluation_cache global");
1361// This may overwrite the cache with the same value
1362tcx.evaluation_cache.insert(
1363 (infcx.typing_env(param_env), trait_pred),
1364dep_node,
1365result,
1366 );
1367return;
1368 } else {
1369{
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/select/mod.rs:1369",
"rustc_trait_selection::traits::select",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
::tracing_core::__macro_support::Option::Some(1369u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
::tracing_core::field::FieldSet::new(&["message",
"trait_pred", "result"],
::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!("insert_evaluation_cache local")
as &dyn Value)),
(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&debug(&trait_pred)
as &dyn Value)),
(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&debug(&result) as
&dyn Value))])
});
} else { ; }
};debug!(?trait_pred, ?result, "insert_evaluation_cache local");
1370self.infcx.evaluation_cache.insert((param_env, trait_pred), dep_node, result);
1371 }
1372 }
13731374fn check_recursion_depth<T>(
1375&self,
1376 depth: usize,
1377 error_obligation: &Obligation<'tcx, T>,
1378 ) -> Result<(), OverflowError>
1379where
1380T: Upcast<TyCtxt<'tcx>, ty::Predicate<'tcx>> + Clone,
1381 {
1382if !self.infcx.tcx.recursion_limit().value_within_limit(depth) {
1383match self.query_mode {
1384 TraitQueryMode::Standard => {
1385if let Some(e) = self.infcx.tainted_by_errors() {
1386return Err(OverflowError::Error(e));
1387 }
1388self.infcx.err_ctxt().report_overflow_obligation(error_obligation, true);
1389 }
1390 TraitQueryMode::Canonical => {
1391return Err(OverflowError::Canonical);
1392 }
1393 }
1394 }
1395Ok(())
1396 }
13971398/// Checks that the recursion limit has not been exceeded.
1399 ///
1400 /// The weird return type of this function allows it to be used with the `try` (`?`)
1401 /// operator within certain functions.
1402#[inline(always)]
1403fn check_recursion_limit<T: Display + TypeFoldable<TyCtxt<'tcx>>, V>(
1404&self,
1405 obligation: &Obligation<'tcx, T>,
1406 error_obligation: &Obligation<'tcx, V>,
1407 ) -> Result<(), OverflowError>
1408where
1409V: Upcast<TyCtxt<'tcx>, ty::Predicate<'tcx>> + Clone,
1410 {
1411self.check_recursion_depth(obligation.recursion_depth, error_obligation)
1412 }
14131414fn in_task<OP, R>(&mut self, op: OP) -> (R, DepNodeIndex)
1415where
1416OP: FnOnce(&mut Self) -> R,
1417 {
1418self.tcx().dep_graph.with_anon_task(self.tcx(), DepKind::TraitSelect, || op(self))
1419 }
14201421/// filter_impls filters candidates that have a positive impl for a negative
1422 /// goal and a negative impl for a positive goal
1423#[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("filter_impls",
"rustc_trait_selection::traits::select",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
::tracing_core::__macro_support::Option::Some(1423u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
::tracing_core::field::FieldSet::new(&["obligation"],
::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(&obligation)
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: Vec<SelectionCandidate<'tcx>> =
loop {};
return __tracing_attr_fake_return;
}
{
{
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/select/mod.rs:1429",
"rustc_trait_selection::traits::select",
::tracing::Level::TRACE,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
::tracing_core::__macro_support::Option::Some(1429u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
::tracing_core::field::FieldSet::new(&["message"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::TRACE <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::TRACE <=
::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!("{0:#?}",
candidates) as &dyn Value))])
});
} else { ; }
};
let tcx = self.tcx();
let mut result = Vec::with_capacity(candidates.len());
for candidate in candidates {
if let ImplCandidate(def_id) = candidate {
match (tcx.impl_polarity(def_id), obligation.polarity()) {
(ty::ImplPolarity::Reservation, _) |
(ty::ImplPolarity::Positive,
ty::PredicatePolarity::Positive) |
(ty::ImplPolarity::Negative,
ty::PredicatePolarity::Negative) => {
result.push(candidate);
}
_ => {}
}
} else { result.push(candidate); }
}
{
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/select/mod.rs:1448",
"rustc_trait_selection::traits::select",
::tracing::Level::TRACE,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
::tracing_core::__macro_support::Option::Some(1448u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
::tracing_core::field::FieldSet::new(&["message"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::TRACE <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::TRACE <=
::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!("{0:#?}",
result) as &dyn Value))])
});
} else { ; }
};
result
}
}
}#[instrument(level = "debug", skip(self, candidates))]1424fn filter_impls(
1425&mut self,
1426 candidates: Vec<SelectionCandidate<'tcx>>,
1427 obligation: &PolyTraitObligation<'tcx>,
1428 ) -> Vec<SelectionCandidate<'tcx>> {
1429trace!("{candidates:#?}");
1430let tcx = self.tcx();
1431let mut result = Vec::with_capacity(candidates.len());
14321433for candidate in candidates {
1434if let ImplCandidate(def_id) = candidate {
1435match (tcx.impl_polarity(def_id), obligation.polarity()) {
1436 (ty::ImplPolarity::Reservation, _)
1437 | (ty::ImplPolarity::Positive, ty::PredicatePolarity::Positive)
1438 | (ty::ImplPolarity::Negative, ty::PredicatePolarity::Negative) => {
1439 result.push(candidate);
1440 }
1441_ => {}
1442 }
1443 } else {
1444 result.push(candidate);
1445 }
1446 }
14471448trace!("{result:#?}");
1449 result
1450 }
14511452/// filter_reservation_impls filter reservation impl for any goal as ambiguous
1453#[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("filter_reservation_impls",
"rustc_trait_selection::traits::select",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
::tracing_core::__macro_support::Option::Some(1453u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
::tracing_core::field::FieldSet::new(&["candidate"],
::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(&candidate)
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:
SelectionResult<'tcx, SelectionCandidate<'tcx>> = loop {};
return __tracing_attr_fake_return;
}
{
let tcx = self.tcx();
if let ImplCandidate(def_id) = candidate &&
let ty::ImplPolarity::Reservation =
tcx.impl_polarity(def_id) {
if let Some(intercrate_ambiguity_clauses) =
&mut self.intercrate_ambiguity_causes {
let message =
{
{
'done:
{
for i in
::rustc_hir::attrs::HasAttrs::get_attrs(def_id, &tcx) {
#[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
}
}
};
if let Some(message) = message {
{
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/select/mod.rs:1466",
"rustc_trait_selection::traits::select",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
::tracing_core::__macro_support::Option::Some(1466u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
::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!("filter_reservation_impls: reservation impl ambiguity on {0:?}",
def_id) as &dyn Value))])
});
} else { ; }
};
intercrate_ambiguity_clauses.insert(IntercrateAmbiguityCause::ReservationImpl {
message,
});
}
}
return Ok(None);
}
Ok(Some(candidate))
}
}
}#[instrument(level = "debug", skip(self))]1454fn filter_reservation_impls(
1455&mut self,
1456 candidate: SelectionCandidate<'tcx>,
1457 ) -> SelectionResult<'tcx, SelectionCandidate<'tcx>> {
1458let tcx = self.tcx();
1459// Treat reservation impls as ambiguity.
1460if let ImplCandidate(def_id) = candidate
1461 && let ty::ImplPolarity::Reservation = tcx.impl_polarity(def_id)
1462 {
1463if let Some(intercrate_ambiguity_clauses) = &mut self.intercrate_ambiguity_causes {
1464let message = find_attr!(tcx, def_id, RustcReservationImpl(message) => *message);
1465if let Some(message) = message {
1466debug!(
1467"filter_reservation_impls: \
1468 reservation impl ambiguity on {:?}",
1469 def_id
1470 );
1471 intercrate_ambiguity_clauses
1472 .insert(IntercrateAmbiguityCause::ReservationImpl { message });
1473 }
1474 }
1475return Ok(None);
1476 }
1477Ok(Some(candidate))
1478 }
14791480fn is_knowable<'o>(&mut self, stack: &TraitObligationStack<'o, 'tcx>) -> Result<(), Conflict> {
1481let obligation = &stack.obligation;
1482match self.typing_mode() {
1483TypingMode::Coherence => {}
1484TypingMode::Typeck { .. }
1485 | TypingMode::PostTypeckUntilBorrowck { .. }
1486 | TypingMode::PostBorrowck { .. }
1487 | TypingMode::PostAnalysis1488 | TypingMode::Codegen => return Ok(()),
1489 }
14901491{
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/select/mod.rs:1491",
"rustc_trait_selection::traits::select",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
::tracing_core::__macro_support::Option::Some(1491u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
::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!("is_knowable()")
as &dyn Value))])
});
} else { ; }
};debug!("is_knowable()");
14921493let predicate = self.infcx.resolve_vars_if_possible(obligation.predicate);
14941495// Okay to skip binder because of the nature of the
1496 // trait-ref-is-knowable check, which does not care about
1497 // bound regions.
1498let trait_ref = predicate.skip_binder().trait_ref;
14991500 coherence::trait_ref_is_knowable(self.infcx, trait_ref, |ty| Ok::<_, !>(ty)).into_ok()
1501 }
15021503/// Returns `true` if the global caches can be used.
1504fn can_use_global_caches(
1505&self,
1506 param_env: ty::ParamEnv<'tcx>,
1507 pred: ty::PolyTraitPredicate<'tcx>,
1508 ) -> bool {
1509// If there are any inference variables in the `ParamEnv`, then we
1510 // always use a cache local to this particular scope. Otherwise, we
1511 // switch to a global cache.
1512if param_env.has_infer() || pred.has_infer() {
1513return false;
1514 }
15151516match self.typing_mode() {
1517// Avoid using the global cache during coherence and just rely
1518 // on the local cache. It is really just a simplification to
1519 // avoid us having to fear that coherence results "pollute"
1520 // the master cache. Since coherence executes pretty quickly,
1521 // it's not worth going to more trouble to increase the
1522 // hit-rate, I don't think.
1523TypingMode::Coherence => false,
1524// Avoid using the global cache when we're defining opaque types
1525 // as their hidden type may impact the result of candidate selection.
1526 //
1527 // HACK: This is still theoretically unsound. Goals can indirectly rely
1528 // on opaques in the defining scope, and it's easier to do so with TAIT.
1529 // However, if we disqualify *all* goals from being cached, perf suffers.
1530 // This is likely fixed by better caching in general in the new solver.
1531 // See: <https://github.com/rust-lang/rust/issues/132064>.
1532TypingMode::Typeck { defining_opaque_types_and_generators: defining_opaque_types }
1533 | TypingMode::PostTypeckUntilBorrowck { defining_opaque_types } => {
1534defining_opaque_types.is_empty()
1535 || (!pred.has_opaque_types() && !pred.has_coroutines())
1536 }
1537// The hidden types of `defined_opaque_types` is not local to the current
1538 // inference context, so we can freely move this to the global cache.
1539TypingMode::PostBorrowck { .. } => true,
1540// The global cache is only used if there are no opaque types in
1541 // the defining scope or we're outside of analysis.
1542 //
1543 // FIXME(#132279): This is still incorrect as we treat opaque types
1544 // and default associated items differently between these two modes.
1545TypingMode::PostAnalysis | TypingMode::Codegen => true,
1546 }
1547 }
15481549fn check_candidate_cache(
1550&mut self,
1551 param_env: ty::ParamEnv<'tcx>,
1552 cache_fresh_trait_pred: ty::PolyTraitPredicate<'tcx>,
1553 ) -> Option<SelectionResult<'tcx, SelectionCandidate<'tcx>>> {
1554let infcx = self.infcx;
1555let tcx = infcx.tcx;
1556let pred = cache_fresh_trait_pred.skip_binder();
15571558if self.can_use_global_caches(param_env, cache_fresh_trait_pred) {
1559if let Some(res) = tcx.selection_cache.get(&(infcx.typing_env(param_env), pred), tcx) {
1560return Some(res);
1561 } else if truecfg!(debug_assertions) {
1562match infcx.selection_cache.get(&(param_env, pred), tcx) {
1563None | Some(Err(SelectionError::Overflow(OverflowError::Canonical))) => {}
1564 res => ::rustc_middle::util::bug::bug_fmt(format_args!("unexpected local cache result: {0:?}",
res))bug!("unexpected local cache result: {res:?}"),
1565 }
1566 }
1567 }
15681569// Subtle: we need to check the local cache even if we're able to use the
1570 // global cache as we don't cache overflow in the global cache but need to
1571 // cache it as otherwise rustdoc hangs when compiling diesel.
1572infcx.selection_cache.get(&(param_env, pred), tcx)
1573 }
15741575/// Determines whether can we safely cache the result
1576 /// of selecting an obligation. This is almost always `true`,
1577 /// except when dealing with certain `ParamCandidate`s.
1578 ///
1579 /// Ordinarily, a `ParamCandidate` will contain no inference variables,
1580 /// since it was usually produced directly from a `DefId`. However,
1581 /// certain cases (currently only librustdoc's blanket impl finder),
1582 /// a `ParamEnv` may be explicitly constructed with inference types.
1583 /// When this is the case, we do *not* want to cache the resulting selection
1584 /// candidate. This is due to the fact that it might not always be possible
1585 /// to equate the obligation's trait ref and the candidate's trait ref,
1586 /// if more constraints end up getting added to an inference variable.
1587 ///
1588 /// Because of this, we always want to re-run the full selection
1589 /// process for our obligation the next time we see it, since
1590 /// we might end up picking a different `SelectionCandidate` (or none at all).
1591fn can_cache_candidate(
1592&self,
1593 result: &SelectionResult<'tcx, SelectionCandidate<'tcx>>,
1594 ) -> bool {
1595match result {
1596Ok(Some(SelectionCandidate::ParamCandidate(trait_ref))) => !trait_ref.has_infer(),
1597_ => true,
1598 }
1599 }
16001601#[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("insert_candidate_cache",
"rustc_trait_selection::traits::select",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
::tracing_core::__macro_support::Option::Some(1601u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
::tracing_core::field::FieldSet::new(&["candidate"],
::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(&candidate)
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: () = loop {};
return __tracing_attr_fake_return;
}
{
let infcx = self.infcx;
let tcx = infcx.tcx;
let pred = cache_fresh_trait_pred.skip_binder();
if !self.can_cache_candidate(&candidate) {
{
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/select/mod.rs:1614",
"rustc_trait_selection::traits::select",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
::tracing_core::__macro_support::Option::Some(1614u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
::tracing_core::field::FieldSet::new(&["message", "pred",
"candidate"],
::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!("insert_candidate_cache - candidate is not cacheable")
as &dyn Value)),
(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&debug(&pred) as
&dyn Value)),
(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&debug(&candidate)
as &dyn Value))])
});
} else { ; }
};
return;
}
if self.can_use_global_caches(param_env, cache_fresh_trait_pred) {
if let Err(SelectionError::Overflow(OverflowError::Canonical))
= candidate
{} else {
{
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/select/mod.rs:1622",
"rustc_trait_selection::traits::select",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
::tracing_core::__macro_support::Option::Some(1622u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
::tracing_core::field::FieldSet::new(&["message", "pred",
"candidate"],
::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!("insert_candidate_cache global")
as &dyn Value)),
(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&debug(&pred) as
&dyn Value)),
(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&debug(&candidate)
as &dyn Value))])
});
} else { ; }
};
if true {
if !!candidate.has_infer() {
::core::panicking::panic("assertion failed: !candidate.has_infer()")
};
};
tcx.selection_cache.insert((infcx.typing_env(param_env),
pred), dep_node, candidate);
return;
}
}
{
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/select/mod.rs:1635",
"rustc_trait_selection::traits::select",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
::tracing_core::__macro_support::Option::Some(1635u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
::tracing_core::field::FieldSet::new(&["message", "pred",
"candidate"],
::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!("insert_candidate_cache local")
as &dyn Value)),
(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&debug(&pred) as
&dyn Value)),
(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&debug(&candidate)
as &dyn Value))])
});
} else { ; }
};
self.infcx.selection_cache.insert((param_env, pred), dep_node,
candidate);
}
}
}#[instrument(skip(self, param_env, cache_fresh_trait_pred, dep_node), level = "debug")]1602fn insert_candidate_cache(
1603&mut self,
1604 param_env: ty::ParamEnv<'tcx>,
1605 cache_fresh_trait_pred: ty::PolyTraitPredicate<'tcx>,
1606 dep_node: DepNodeIndex,
1607 candidate: SelectionResult<'tcx, SelectionCandidate<'tcx>>,
1608 ) {
1609let infcx = self.infcx;
1610let tcx = infcx.tcx;
1611let pred = cache_fresh_trait_pred.skip_binder();
16121613if !self.can_cache_candidate(&candidate) {
1614debug!(?pred, ?candidate, "insert_candidate_cache - candidate is not cacheable");
1615return;
1616 }
16171618if self.can_use_global_caches(param_env, cache_fresh_trait_pred) {
1619if let Err(SelectionError::Overflow(OverflowError::Canonical)) = candidate {
1620// Don't cache overflow globally; we only produce this in certain modes.
1621} else {
1622debug!(?pred, ?candidate, "insert_candidate_cache global");
1623debug_assert!(!candidate.has_infer());
16241625// This may overwrite the cache with the same value.
1626tcx.selection_cache.insert(
1627 (infcx.typing_env(param_env), pred),
1628 dep_node,
1629 candidate,
1630 );
1631return;
1632 }
1633 }
16341635debug!(?pred, ?candidate, "insert_candidate_cache local");
1636self.infcx.selection_cache.insert((param_env, pred), dep_node, candidate);
1637 }
16381639/// Looks at the item bounds of the projection or opaque type.
1640 /// If this is a nested rigid projection, such as
1641 /// `<<T as Tr1>::Assoc as Tr2>::Assoc`, consider the item bounds
1642 /// on both `Tr1::Assoc` and `Tr2::Assoc`, since we may encounter
1643 /// relative bounds on both via the `associated_type_bounds` feature.
1644pub(super) fn for_each_item_bound<T>(
1645&mut self,
1646mut self_ty: Ty<'tcx>,
1647mut for_each: impl FnMut(
1648&mut Self,
1649 ty::Clause<'tcx>,
1650usize,
1651AliasBoundKind,
1652 ) -> ControlFlow<T, ()>,
1653 on_ambiguity: impl FnOnce(),
1654 ) -> ControlFlow<T, ()> {
1655let mut idx = 0;
1656let mut alias_bound_kind = AliasBoundKind::SelfBounds;
16571658loop {
1659let (alias_ty, def_id) = match *self_ty.kind() {
1660 ty::Alias(
1661 alias_ty @ ty::AliasTy {
1662 kind: ty::Projection { def_id } | ty::Opaque { def_id },
1663 ..
1664 },
1665 ) => (alias_ty, def_id),
1666 ty::Infer(ty::TyVar(_)) => {
1667on_ambiguity();
1668return ControlFlow::Continue(());
1669 }
1670_ => return ControlFlow::Continue(()),
1671 };
16721673// HACK: On subsequent recursions, we only care about bounds that don't
1674 // share the same type as `self_ty`. This is because for truly rigid
1675 // projections, we will never be able to equate, e.g. `<T as Tr>::A`
1676 // with `<<T as Tr>::A as Tr>::A`.
1677let relevant_bounds = if alias_bound_kind == AliasBoundKind::NonSelfBounds {
1678self.tcx().item_non_self_bounds(def_id)
1679 } else {
1680self.tcx().item_self_bounds(def_id)
1681 };
16821683for bound in relevant_bounds.instantiate(self.tcx(), alias_ty.args).skip_norm_wip() {
1684 for_each(self, bound, idx, alias_bound_kind)?;
1685 idx += 1;
1686 }
16871688if #[allow(non_exhaustive_omitted_patterns)] match alias_ty.kind {
ty::Projection { .. } => true,
_ => false,
}matches!(alias_ty.kind, ty::Projection { .. }) {
1689self_ty = alias_ty.self_ty();
1690 } else {
1691return ControlFlow::Continue(());
1692 }
16931694alias_bound_kind = AliasBoundKind::NonSelfBounds;
1695 }
1696 }
16971698/// Equates the trait in `obligation` with trait bound. If the two traits
1699 /// can be equated and the normalized trait bound doesn't contain inference
1700 /// variables or placeholders, the normalized bound is returned.
1701fn match_normalize_trait_ref(
1702&mut self,
1703 obligation: &PolyTraitObligation<'tcx>,
1704 placeholder_trait_ref: ty::TraitRef<'tcx>,
1705 trait_bound: ty::PolyTraitRef<'tcx>,
1706 ) -> Result<Option<ty::TraitRef<'tcx>>, ()> {
1707if true {
if !!placeholder_trait_ref.has_escaping_bound_vars() {
::core::panicking::panic("assertion failed: !placeholder_trait_ref.has_escaping_bound_vars()")
};
};debug_assert!(!placeholder_trait_ref.has_escaping_bound_vars());
1708if placeholder_trait_ref.def_id != trait_bound.def_id() {
1709// Avoid unnecessary normalization
1710return Err(());
1711 }
17121713let drcx = DeepRejectCtxt::relate_rigid_rigid(self.infcx.tcx);
1714let obligation_args = obligation.predicate.skip_binder().trait_ref.args;
1715if !drcx.args_may_unify(obligation_args, trait_bound.skip_binder().args) {
1716return Err(());
1717 }
17181719let trait_bound = self.infcx.instantiate_binder_with_fresh_vars(
1720obligation.cause.span,
1721HigherRankedType,
1722trait_bound,
1723 );
1724let Normalized { value: trait_bound, obligations: _ } = ensure_sufficient_stack(|| {
1725normalize_with_depth(
1726self,
1727obligation.param_env,
1728obligation.cause.clone(),
1729obligation.recursion_depth + 1,
1730trait_bound,
1731 )
1732 });
1733self.infcx
1734 .at(&obligation.cause, obligation.param_env)
1735 .eq(DefineOpaqueTypes::No, placeholder_trait_ref, trait_bound)
1736 .map(|InferOk { obligations: _, value: () }| {
1737// This method is called within a probe, so we can't have
1738 // inference variables and placeholders escape.
1739if !trait_bound.has_infer() && !trait_bound.has_placeholders() {
1740Some(trait_bound)
1741 } else {
1742None1743 }
1744 })
1745 .map_err(|_| ())
1746 }
17471748fn where_clause_may_apply<'o>(
1749&mut self,
1750 stack: &TraitObligationStack<'o, 'tcx>,
1751 where_clause_trait_ref: ty::PolyTraitRef<'tcx>,
1752 ) -> Result<EvaluationResult, OverflowError> {
1753self.evaluation_probe(|this| {
1754match this.match_where_clause_trait_ref(stack.obligation, where_clause_trait_ref) {
1755Ok(obligations) => this.evaluate_predicates_recursively(stack.list(), obligations),
1756Err(()) => Ok(EvaluatedToErr),
1757 }
1758 })
1759 }
17601761/// Return `Yes` if the obligation's predicate type applies to the env_predicate, and
1762 /// `No` if it does not. Return `Ambiguous` in the case that the projection type is a GAT,
1763 /// and applying this env_predicate constrains any of the obligation's GAT parameters.
1764 ///
1765 /// This behavior is a somewhat of a hack to prevent over-constraining inference variables
1766 /// in cases like #91762.
1767pub(super) fn match_projection_projections(
1768&mut self,
1769 obligation: &ProjectionTermObligation<'tcx>,
1770 env_predicate: PolyProjectionPredicate<'tcx>,
1771 potentially_unnormalized_candidates: bool,
1772 ) -> ProjectionMatchesProjection {
1773let def_id = obligation.predicate.expect_projection_def_id();
1774if true {
match (&def_id, &env_predicate.item_def_id()) {
(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);
}
}
};
};debug_assert_eq!(def_id, env_predicate.item_def_id());
17751776let mut nested_obligations = PredicateObligations::new();
1777let infer_predicate = self.infcx.instantiate_binder_with_fresh_vars(
1778obligation.cause.span,
1779 BoundRegionConversionTime::HigherRankedType,
1780env_predicate,
1781 );
1782let infer_projection = if potentially_unnormalized_candidates {
1783ensure_sufficient_stack(|| {
1784normalize_with_depth_to(
1785self,
1786obligation.param_env,
1787obligation.cause.clone(),
1788obligation.recursion_depth + 1,
1789infer_predicate.projection_term,
1790&mut nested_obligations,
1791 )
1792 })
1793 } else {
1794infer_predicate.projection_term
1795 };
17961797let is_match = self1798 .infcx
1799 .at(&obligation.cause, obligation.param_env)
1800 .eq(DefineOpaqueTypes::No, obligation.predicate, infer_projection)
1801 .is_ok_and(|InferOk { obligations, value: () }| {
1802self.evaluate_predicates_recursively(
1803TraitObligationStackList::empty(&ProvisionalEvaluationCache::default()),
1804nested_obligations.into_iter().chain(obligations),
1805 )
1806 .is_ok_and(|res| res.may_apply())
1807 });
18081809if is_match {
1810let generics = self.tcx().generics_of(def_id);
1811// FIXME(generic_associated_types): Addresses aggressive inference in #92917.
1812 // If this type is a GAT, and of the GAT args resolve to something new,
1813 // that means that we must have newly inferred something about the GAT.
1814 // We should give up in that case.
1815 //
1816 // This only detects one layer of inference, which is probably not what we actually
1817 // want, but fixing it causes some ambiguity:
1818 // <https://github.com/rust-lang/rust/issues/125196>.
1819if !generics.is_own_empty()
1820 && obligation.predicate.args[generics.parent_count..].iter().any(|&p| {
1821p.has_non_region_infer()
1822 && match p.kind() {
1823 ty::GenericArgKind::Const(ct) => {
1824self.infcx.shallow_resolve_const(ct) != ct1825 }
1826 ty::GenericArgKind::Type(ty) => self.infcx.shallow_resolve(ty) != ty,
1827 ty::GenericArgKind::Lifetime(_) => false,
1828 }
1829 })
1830 {
1831 ProjectionMatchesProjection::Ambiguous1832 } else {
1833 ProjectionMatchesProjection::Yes1834 }
1835 } else {
1836 ProjectionMatchesProjection::No1837 }
1838 }
1839}
18401841/// ## Winnowing
1842///
1843/// Winnowing is the process of attempting to resolve ambiguity by
1844/// probing further. During the winnowing process, we unify all
1845/// type variables and then we also attempt to evaluate recursive
1846/// bounds to see if they are satisfied.
1847impl<'tcx> SelectionContext<'_, 'tcx> {
1848/// If there are multiple ways to prove a trait goal, we make some
1849 /// *fairly arbitrary* choices about which candidate is actually used.
1850 ///
1851 /// For more details, look at the implementation of this method :)
1852x;#[instrument(level = "debug", skip(self), ret)]1853fn winnow_candidates(
1854&mut self,
1855 has_non_region_infer: bool,
1856 candidate_preference_mode: CandidatePreferenceMode,
1857mut candidates: Vec<EvaluatedCandidate<'tcx>>,
1858 ) -> Option<SelectionCandidate<'tcx>> {
1859if candidates.len() == 1 {
1860return Some(candidates.pop().unwrap().candidate);
1861 }
18621863// We prefer `Sized` candidates over everything.
1864let mut sized_candidates =
1865 candidates.iter().filter(|c| matches!(c.candidate, SizedCandidate));
1866if let Some(sized_candidate) = sized_candidates.next() {
1867// There should only ever be a single sized candidate
1868 // as they would otherwise overlap.
1869debug_assert_eq!(sized_candidates.next(), None);
1870// Only prefer the built-in `Sized` candidate if its nested goals are certain.
1871 // Otherwise, we may encounter failure later on if inference causes this candidate
1872 // to not hold, but a where clause would've applied instead.
1873if sized_candidate.evaluation.must_apply_modulo_regions() {
1874return Some(sized_candidate.candidate.clone());
1875 } else {
1876return None;
1877 }
1878 }
18791880// Before we consider where-bounds, we have to deduplicate them here and also
1881 // drop where-bounds in case the same where-bound exists without bound vars.
1882 // This is necessary as elaborating super-trait bounds may result in duplicates.
1883'search_victim: loop {
1884for (i, this) in candidates.iter().enumerate() {
1885let ParamCandidate(this) = this.candidate else { continue };
1886for (j, other) in candidates.iter().enumerate() {
1887if i == j {
1888continue;
1889 }
18901891let ParamCandidate(other) = other.candidate else { continue };
1892if this == other {
1893 candidates.remove(j);
1894continue 'search_victim;
1895 }
18961897if this.skip_binder().trait_ref == other.skip_binder().trait_ref
1898 && this.skip_binder().polarity == other.skip_binder().polarity
1899 && !this.skip_binder().trait_ref.has_escaping_bound_vars()
1900 {
1901 candidates.remove(j);
1902continue 'search_victim;
1903 }
1904 }
1905 }
19061907break;
1908 }
19091910let mut alias_bounds = candidates.iter().filter_map(|c| {
1911if let ProjectionCandidate { idx, kind } = c.candidate {
1912Some((idx, kind))
1913 } else {
1914None
1915}
1916 });
1917// Extract non-nested alias bound candidates, will be preferred over where bounds if
1918 // we're proving an auto-trait, sizedness trait or default trait.
1919if matches!(candidate_preference_mode, CandidatePreferenceMode::Marker) {
1920match alias_bounds
1921 .clone()
1922 .filter_map(|(idx, kind)| (kind == AliasBoundKind::SelfBounds).then_some(idx))
1923 .try_reduce(|c1, c2| if has_non_region_infer { None } else { Some(c1.min(c2)) })
1924 {
1925Some(Some(idx)) => {
1926return Some(ProjectionCandidate { idx, kind: AliasBoundKind::SelfBounds });
1927 }
1928Some(None) => {}
1929None => return None,
1930 }
1931 }
19321933// The next highest priority is for non-global where-bounds. However, while we don't
1934 // prefer global where-clauses here, we do bail with ambiguity when encountering both
1935 // a global and a non-global where-clause.
1936 //
1937 // Our handling of where-bounds is generally fairly messy but necessary for backwards
1938 // compatibility, see #50825 for why we need to handle global where-bounds like this.
1939let is_global = |c: ty::PolyTraitPredicate<'tcx>| c.is_global() && !c.has_bound_vars();
1940let param_candidates = candidates
1941 .iter()
1942 .filter_map(|c| if let ParamCandidate(p) = c.candidate { Some(p) } else { None });
1943let mut has_global_bounds = false;
1944let mut param_candidate = None;
1945for c in param_candidates {
1946if is_global(c) {
1947 has_global_bounds = true;
1948 } else if param_candidate.replace(c).is_some() {
1949// Ambiguity, two potentially different where-clauses
1950return None;
1951 }
1952 }
1953if let Some(predicate) = param_candidate {
1954// Ambiguity, a global and a non-global where-bound.
1955if has_global_bounds {
1956return None;
1957 } else {
1958return Some(ParamCandidate(predicate));
1959 }
1960 }
19611962// Prefer alias-bounds over blanket impls for rigid associated types. This is
1963 // fairly arbitrary but once again necessary for backwards compatibility.
1964 // If there are multiple applicable candidates which don't affect type inference,
1965 // choose the one with the lowest index.
1966match alias_bounds.try_reduce(|(c1, k1), (c2, k2)| {
1967if has_non_region_infer {
1968None
1969} else if c1 < c2 {
1970Some((c1, k1))
1971 } else {
1972Some((c2, k2))
1973 }
1974 }) {
1975Some(Some((idx, kind))) => return Some(ProjectionCandidate { idx, kind }),
1976Some(None) => {}
1977None => return None,
1978 }
19791980// Need to prioritize builtin trait object impls as `<dyn Any as Any>::type_id`
1981 // should use the vtable method and not the method provided by the user-defined
1982 // impl `impl<T: ?Sized> Any for T { .. }`. This really shouldn't exist but is
1983 // necessary due to #57893. We again arbitrarily prefer the applicable candidate
1984 // with the lowest index.
1985 //
1986 // We do not want to use these impls to guide inference in case a user-written impl
1987 // may also apply.
1988let object_bound = candidates
1989 .iter()
1990 .filter_map(|c| if let ObjectCandidate(i) = c.candidate { Some(i) } else { None })
1991 .try_reduce(|c1, c2| if has_non_region_infer { None } else { Some(c1.min(c2)) });
1992match object_bound {
1993Some(Some(index)) => {
1994return if has_non_region_infer
1995 && candidates.iter().any(|c| matches!(c.candidate, ImplCandidate(_)))
1996 {
1997None
1998} else {
1999Some(ObjectCandidate(index))
2000 };
2001 }
2002Some(None) => {}
2003None => return None,
2004 }
2005// Same for upcasting.
2006let upcast_bound = candidates
2007 .iter()
2008 .filter_map(|c| {
2009if let TraitUpcastingUnsizeCandidate(i) = c.candidate { Some(i) } else { None }
2010 })
2011 .try_reduce(|c1, c2| if has_non_region_infer { None } else { Some(c1.min(c2)) });
2012match upcast_bound {
2013Some(Some(index)) => return Some(TraitUpcastingUnsizeCandidate(index)),
2014Some(None) => {}
2015None => return None,
2016 }
20172018// Finally, handle overlapping user-written impls.
2019let impls = candidates.iter().filter_map(|c| {
2020if let ImplCandidate(def_id) = c.candidate {
2021Some((def_id, c.evaluation))
2022 } else {
2023None
2024}
2025 });
2026let mut impl_candidate = None;
2027for c in impls {
2028if let Some(prev) = impl_candidate.replace(c) {
2029if self.prefer_lhs_over_victim(has_non_region_infer, c, prev.0) {
2030// Ok, prefer `c` over the previous entry
2031} else if self.prefer_lhs_over_victim(has_non_region_infer, prev, c.0) {
2032// Ok, keep `prev` instead of the new entry
2033impl_candidate = Some(prev);
2034 } else {
2035// Ambiguity, two potentially different where-clauses
2036return None;
2037 }
2038 }
2039 }
2040if let Some((def_id, _evaluation)) = impl_candidate {
2041// Don't use impl candidates which overlap with other candidates.
2042 // This should pretty much only ever happen with malformed impls.
2043if candidates.iter().all(|c| match c.candidate {
2044 SizedCandidate
2045 | BuiltinCandidate
2046 | TransmutabilityCandidate
2047 | AutoImplCandidate
2048 | ClosureCandidate { .. }
2049 | AsyncClosureCandidate
2050 | AsyncFnKindHelperCandidate
2051 | CoroutineCandidate
2052 | FutureCandidate
2053 | IteratorCandidate
2054 | AsyncIteratorCandidate
2055 | FnPointerCandidate
2056 | TraitAliasCandidate
2057 | TraitUpcastingUnsizeCandidate(_)
2058 | BuiltinObjectCandidate
2059 | BuiltinUnsizeCandidate
2060 | BikeshedGuaranteedNoDropCandidate => false,
2061// Non-global param candidates have already been handled, global
2062 // where-bounds get ignored.
2063ParamCandidate(_) | ImplCandidate(_) => true,
2064 ProjectionCandidate { .. } | ObjectCandidate(_) => unreachable!(),
2065 }) {
2066return Some(ImplCandidate(def_id));
2067 } else {
2068return None;
2069 }
2070 }
20712072if candidates.len() == 1 {
2073Some(candidates.pop().unwrap().candidate)
2074 } else {
2075// Also try ignoring all global where-bounds and check whether we end
2076 // with a unique candidate in this case.
2077let mut not_a_global_where_bound = candidates
2078 .into_iter()
2079 .filter(|c| !matches!(c.candidate, ParamCandidate(p) if is_global(p)));
2080 not_a_global_where_bound
2081 .next()
2082 .map(|c| c.candidate)
2083 .filter(|_| not_a_global_where_bound.next().is_none())
2084 }
2085 }
20862087fn prefer_lhs_over_victim(
2088&self,
2089 has_non_region_infer: bool,
2090 (lhs, lhs_evaluation): (DefId, EvaluationResult),
2091 victim: DefId,
2092 ) -> bool {
2093let tcx = self.tcx();
2094// See if we can toss out `victim` based on specialization.
2095 //
2096 // While this requires us to know *for sure* that the `lhs` impl applies
2097 // we still use modulo regions here. This is fine as specialization currently
2098 // assumes that specializing impls have to be always applicable, meaning that
2099 // the only allowed region constraints may be constraints also present on the default impl.
2100if lhs_evaluation.must_apply_modulo_regions() {
2101if tcx.specializes((lhs, victim)) {
2102return true;
2103 }
2104 }
21052106match tcx.impls_are_allowed_to_overlap(lhs, victim) {
2107// For candidates which already reference errors it doesn't really
2108 // matter what we do 🤷
2109Some(ty::ImplOverlapKind::Permitted { marker: false }) => {
2110lhs_evaluation.must_apply_considering_regions()
2111 }
2112Some(ty::ImplOverlapKind::Permitted { marker: true }) => {
2113// Subtle: If the predicate we are evaluating has inference
2114 // variables, do *not* allow discarding candidates due to
2115 // marker trait impls.
2116 //
2117 // Without this restriction, we could end up accidentally
2118 // constraining inference variables based on an arbitrarily
2119 // chosen trait impl.
2120 //
2121 // Imagine we have the following code:
2122 //
2123 // ```rust
2124 // #[marker] trait MyTrait {}
2125 // impl MyTrait for u8 {}
2126 // impl MyTrait for bool {}
2127 // ```
2128 //
2129 // And we are evaluating the predicate `<_#0t as MyTrait>`.
2130 //
2131 // During selection, we will end up with one candidate for each
2132 // impl of `MyTrait`. If we were to discard one impl in favor
2133 // of the other, we would be left with one candidate, causing
2134 // us to "successfully" select the predicate, unifying
2135 // _#0t with (for example) `u8`.
2136 //
2137 // However, we have no reason to believe that this unification
2138 // is correct - we've essentially just picked an arbitrary
2139 // *possibility* for _#0t, and required that this be the *only*
2140 // possibility.
2141 //
2142 // Eventually, we will either:
2143 // 1) Unify all inference variables in the predicate through
2144 // some other means (e.g. type-checking of a function). We will
2145 // then be in a position to drop marker trait candidates
2146 // without constraining inference variables (since there are
2147 // none left to constrain)
2148 // 2) Be left with some unconstrained inference variables. We
2149 // will then correctly report an inference error, since the
2150 // existence of multiple marker trait impls tells us nothing
2151 // about which one should actually apply.
2152!has_non_region_infer && lhs_evaluation.must_apply_considering_regions()
2153 }
2154None => false,
2155 }
2156 }
2157}
21582159impl<'tcx> SelectionContext<'_, 'tcx> {
2160fn sizedness_conditions(
2161&mut self,
2162 self_ty: Ty<'tcx>,
2163 sizedness: SizedTraitKind,
2164 ) -> ty::Binder<'tcx, Vec<Ty<'tcx>>> {
2165match self_ty.kind() {
2166 ty::Infer(ty::IntVar(_) | ty::FloatVar(_))
2167 | ty::Uint(_)
2168 | ty::Int(_)
2169 | ty::Bool2170 | ty::Float(_)
2171 | ty::FnDef(..)
2172 | ty::FnPtr(..)
2173 | ty::RawPtr(..)
2174 | ty::Char2175 | ty::Ref(..)
2176 | ty::Coroutine(..)
2177 | ty::CoroutineWitness(..)
2178 | ty::Array(..)
2179 | ty::Closure(..)
2180 | ty::CoroutineClosure(..)
2181 | ty::Never2182 | ty::Error(_) => ty::Binder::dummy(::alloc::vec::Vec::new()vec![]),
21832184 ty::Str | ty::Slice(_) | ty::Dynamic(..) => match sizedness {
2185 SizedTraitKind::Sized => {
::core::panicking::panic_fmt(format_args!("internal error: entered unreachable code: {0}",
format_args!("tried to assemble `Sized` for unsized type")));
}unreachable!("tried to assemble `Sized` for unsized type"),
2186 SizedTraitKind::MetaSized => ty::Binder::dummy(::alloc::vec::Vec::new()vec![]),
2187 },
21882189 ty::Foreign(..) => {
::core::panicking::panic_fmt(format_args!("internal error: entered unreachable code: {0}",
format_args!("tried to assemble `Sized` for unsized type")));
}unreachable!("tried to assemble `Sized` for unsized type"),
21902191 ty::Tuple(tys) => {
2192 ty::Binder::dummy(tys.last().map_or_else(Vec::new, |&last| ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
[last]))vec![last]))
2193 }
21942195 ty::Pat(ty, _) => ty::Binder::dummy(::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
[*ty]))vec![*ty]),
21962197 ty::Adt(def, args) => {
2198if let Some(crit) = def.sizedness_constraint(self.tcx(), sizedness) {
2199 ty::Binder::dummy(::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
[crit.instantiate(self.tcx(), args).skip_norm_wip()]))vec![crit.instantiate(self.tcx(), args).skip_norm_wip()])
2200 } else {
2201 ty::Binder::dummy(::alloc::vec::Vec::new()vec![])
2202 }
2203 }
22042205 ty::UnsafeBinder(binder_ty) => binder_ty.map_bound(|ty| ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
[ty]))vec![ty]),
22062207 ty::Alias(..)
2208 | ty::Param(_)
2209 | ty::Placeholder(..)
2210 | ty::Infer(ty::TyVar(_) | ty::FreshTy(_) | ty::FreshIntTy(_) | ty::FreshFloatTy(_))
2211 | ty::Bound(..) => {
2212::rustc_middle::util::bug::bug_fmt(format_args!("asked to assemble `Sized` of unexpected type: {0:?}",
self_ty));bug!("asked to assemble `Sized` of unexpected type: {:?}", self_ty);
2213 }
2214 }
2215 }
22162217fn copy_clone_conditions(&mut self, self_ty: Ty<'tcx>) -> ty::Binder<'tcx, Vec<Ty<'tcx>>> {
2218match *self_ty.kind() {
2219 ty::FnDef(..) | ty::FnPtr(..) | ty::Error(_) => ty::Binder::dummy(::alloc::vec::Vec::new()vec![]),
22202221 ty::Uint(_)
2222 | ty::Int(_)
2223 | ty::Infer(ty::IntVar(_) | ty::FloatVar(_))
2224 | ty::Bool2225 | ty::Float(_)
2226 | ty::Char2227 | ty::RawPtr(..)
2228 | ty::Never2229 | ty::Ref(_, _, hir::Mutability::Not)
2230 | ty::Array(..) => {
2231{
::core::panicking::panic_fmt(format_args!("internal error: entered unreachable code: {0}",
format_args!("tried to assemble `Sized` for type with libcore-provided impl")));
}unreachable!("tried to assemble `Sized` for type with libcore-provided impl")2232 }
22332234// FIXME(unsafe_binder): Should we conditionally
2235 // (i.e. universally) implement copy/clone?
2236 ty::UnsafeBinder(_) => {
::core::panicking::panic_fmt(format_args!("internal error: entered unreachable code: {0}",
format_args!("tried to assemble `Sized` for unsafe binder")));
}unreachable!("tried to assemble `Sized` for unsafe binder"),
22372238 ty::Tuple(tys) => {
2239// (*) binder moved here
2240ty::Binder::dummy(tys.iter().collect())
2241 }
22422243 ty::Pat(ty, _) => {
2244// (*) binder moved here
2245 ty::Binder::dummy(::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
[ty]))vec![ty])
2246 }
22472248 ty::Coroutine(def_id, args) => match self.tcx().coroutine_movability(def_id) {
2249 hir::Movability::Static => {
2250{
::core::panicking::panic_fmt(format_args!("internal error: entered unreachable code: {0}",
format_args!("tried to assemble `Clone` for static coroutine")));
}unreachable!("tried to assemble `Clone` for static coroutine")2251 }
2252 hir::Movability::Movable => {
2253if self.tcx().features().coroutine_clone() {
2254 ty::Binder::dummy(::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
[args.as_coroutine().tupled_upvars_ty(),
Ty::new_coroutine_witness_for_coroutine(self.tcx(), def_id,
args)]))vec![
2255 args.as_coroutine().tupled_upvars_ty(),
2256 Ty::new_coroutine_witness_for_coroutine(self.tcx(), def_id, args),
2257 ])
2258 } else {
2259{
::core::panicking::panic_fmt(format_args!("internal error: entered unreachable code: {0}",
format_args!("tried to assemble `Clone` for coroutine without enabled feature")));
}unreachable!(
2260"tried to assemble `Clone` for coroutine without enabled feature"
2261)2262 }
2263 }
2264 },
22652266 ty::CoroutineWitness(def_id, args) => self2267 .infcx
2268 .tcx
2269 .coroutine_hidden_types(def_id)
2270 .instantiate(self.infcx.tcx, args)
2271 .skip_norm_wip()
2272 .map_bound(|witness| witness.types.to_vec()),
22732274 ty::Closure(_, args) => ty::Binder::dummy(args.as_closure().upvar_tys().to_vec()),
22752276 ty::CoroutineClosure(_, args) => {
2277 ty::Binder::dummy(args.as_coroutine_closure().upvar_tys().to_vec())
2278 }
22792280 ty::Foreign(..)
2281 | ty::Str2282 | ty::Slice(_)
2283 | ty::Dynamic(..)
2284 | ty::Adt(..)
2285 | ty::Alias(..)
2286 | ty::Param(..)
2287 | ty::Placeholder(..)
2288 | ty::Bound(..)
2289 | ty::Ref(_, _, ty::Mutability::Mut)
2290 | ty::Infer(ty::TyVar(_) | ty::FreshTy(_) | ty::FreshIntTy(_) | ty::FreshFloatTy(_)) => {
2291::rustc_middle::util::bug::bug_fmt(format_args!("asked to assemble builtin bounds of unexpected type: {0:?}",
self_ty));bug!("asked to assemble builtin bounds of unexpected type: {:?}", self_ty);
2292 }
2293 }
2294 }
22952296fn coroutine_is_gen(&mut self, self_ty: Ty<'tcx>) -> bool {
2297#[allow(non_exhaustive_omitted_patterns)] match *self_ty.kind() {
ty::Coroutine(did, ..) if self.tcx().coroutine_is_gen(did) => true,
_ => false,
}matches!(*self_ty.kind(), ty::Coroutine(did, ..)
2298if self.tcx().coroutine_is_gen(did))2299 }
23002301/// For default impls, we need to break apart a type into its
2302 /// "constituent types" -- meaning, the types that it contains.
2303 ///
2304 /// Here are some (simple) examples:
2305 ///
2306 /// ```ignore (illustrative)
2307 /// (i32, u32) -> [i32, u32]
2308 /// Foo where struct Foo { x: i32, y: u32 } -> [i32, u32]
2309 /// Bar<i32> where struct Bar<T> { x: T, y: u32 } -> [i32, u32]
2310 /// Zed<i32> where enum Zed { A(T), B(u32) } -> [i32, u32]
2311 /// ```
2312x;#[instrument(level = "debug", skip(self), ret)]2313fn constituent_types_for_auto_trait(
2314&self,
2315 t: Ty<'tcx>,
2316 ) -> Result<ty::Binder<'tcx, AutoImplConstituents<'tcx>>, SelectionError<'tcx>> {
2317Ok(match *t.kind() {
2318 ty::Uint(_)
2319 | ty::Int(_)
2320 | ty::Bool
2321 | ty::Float(_)
2322 | ty::FnDef(..)
2323 | ty::FnPtr(..)
2324 | ty::Error(_)
2325 | ty::Infer(ty::IntVar(_) | ty::FloatVar(_))
2326 | ty::Never
2327 | ty::Char => {
2328 ty::Binder::dummy(AutoImplConstituents { types: vec![], assumptions: vec![] })
2329 }
23302331// This branch is only for `experimental_default_bounds`.
2332 // Other foreign types were rejected earlier in
2333 // `assemble_candidates_from_auto_impls`.
2334ty::Foreign(..) => {
2335 ty::Binder::dummy(AutoImplConstituents { types: vec![], assumptions: vec![] })
2336 }
23372338 ty::UnsafeBinder(ty) => {
2339 ty.map_bound(|ty| AutoImplConstituents { types: vec![ty], assumptions: vec![] })
2340 }
23412342// Treat this like `struct str([u8]);`
2343ty::Str => ty::Binder::dummy(AutoImplConstituents {
2344 types: vec![Ty::new_slice(self.tcx(), self.tcx().types.u8)],
2345 assumptions: vec![],
2346 }),
23472348 ty::Placeholder(..)
2349 | ty::Dynamic(..)
2350 | ty::Param(..)
2351 | ty::Alias(ty::AliasTy {
2352 kind: ty::Projection { .. } | ty::Inherent { .. } | ty::Free { .. },
2353 ..
2354 })
2355 | ty::Bound(..)
2356 | ty::Infer(ty::TyVar(_) | ty::FreshTy(_) | ty::FreshIntTy(_) | ty::FreshFloatTy(_)) => {
2357bug!("asked to assemble constituent types of unexpected type: {:?}", t);
2358 }
23592360 ty::RawPtr(element_ty, _) | ty::Ref(_, element_ty, _) => {
2361 ty::Binder::dummy(AutoImplConstituents {
2362 types: vec![element_ty],
2363 assumptions: vec![],
2364 })
2365 }
23662367 ty::Pat(ty, _) | ty::Array(ty, _) | ty::Slice(ty) => {
2368 ty::Binder::dummy(AutoImplConstituents { types: vec![ty], assumptions: vec![] })
2369 }
23702371 ty::Tuple(tys) => {
2372// (T1, ..., Tn) -- meets any bound that all of T1...Tn meet
2373ty::Binder::dummy(AutoImplConstituents {
2374 types: tys.iter().collect(),
2375 assumptions: vec![],
2376 })
2377 }
23782379 ty::Closure(_, args) => {
2380let ty = self.infcx.shallow_resolve(args.as_closure().tupled_upvars_ty());
2381 ty::Binder::dummy(AutoImplConstituents { types: vec![ty], assumptions: vec![] })
2382 }
23832384 ty::CoroutineClosure(_, args) => {
2385let ty = self.infcx.shallow_resolve(args.as_coroutine_closure().tupled_upvars_ty());
2386 ty::Binder::dummy(AutoImplConstituents { types: vec![ty], assumptions: vec![] })
2387 }
23882389 ty::Coroutine(def_id, args) => {
2390let ty = self.infcx.shallow_resolve(args.as_coroutine().tupled_upvars_ty());
2391let tcx = self.tcx();
2392let witness = Ty::new_coroutine_witness_for_coroutine(tcx, def_id, args);
2393 ty::Binder::dummy(AutoImplConstituents {
2394 types: vec![ty, witness],
2395 assumptions: vec![],
2396 })
2397 }
23982399 ty::CoroutineWitness(def_id, args) => self
2400.infcx
2401 .tcx
2402 .coroutine_hidden_types(def_id)
2403 .instantiate(self.infcx.tcx, args)
2404 .skip_norm_wip()
2405 .map_bound(|witness| AutoImplConstituents {
2406 types: witness.types.to_vec(),
2407 assumptions: witness.assumptions.to_vec(),
2408 }),
24092410// For `PhantomData<T>`, we pass `T`.
2411ty::Adt(def, args) if def.is_phantom_data() => {
2412 ty::Binder::dummy(AutoImplConstituents {
2413 types: args.types().collect(),
2414 assumptions: vec![],
2415 })
2416 }
24172418 ty::Adt(def, args) => ty::Binder::dummy(AutoImplConstituents {
2419 types: def.all_fields().map(|f| f.ty(self.tcx(), args).skip_norm_wip()).collect(),
2420 assumptions: vec![],
2421 }),
24222423 ty::Alias(ty::AliasTy { kind: ty::Opaque { def_id }, args, .. }) => {
2424if self.infcx.can_define_opaque_ty(def_id) {
2425unreachable!()
2426 } else {
2427// We can resolve the opaque type to its hidden type,
2428 // which enforces a DAG between the functions requiring
2429 // the auto trait bounds in question.
2430let ty = self.tcx().type_of_opaque(def_id);
2431 ty::Binder::dummy(AutoImplConstituents {
2432 types: vec![ty.instantiate(self.tcx(), args).skip_norm_wip()],
2433 assumptions: vec![],
2434 })
2435 }
2436 }
2437 })
2438 }
24392440fn collect_predicates_for_types(
2441&mut self,
2442 param_env: ty::ParamEnv<'tcx>,
2443 cause: ObligationCause<'tcx>,
2444 recursion_depth: usize,
2445 trait_def_id: DefId,
2446 types: Vec<Ty<'tcx>>,
2447 ) -> PredicateObligations<'tcx> {
2448// Because the types were potentially derived from
2449 // higher-ranked obligations they may reference late-bound
2450 // regions. For example, `for<'a> Foo<&'a i32> : Copy` would
2451 // yield a type like `for<'a> &'a i32`. In general, we
2452 // maintain the invariant that we never manipulate bound
2453 // regions, so we have to process these bound regions somehow.
2454 //
2455 // The strategy is to:
2456 //
2457 // 1. Instantiate those regions to placeholder regions (e.g.,
2458 // `for<'a> &'a i32` becomes `&0 i32`.
2459 // 2. Produce something like `&'0 i32 : Copy`
2460 // 3. Re-bind the regions back to `for<'a> &'a i32 : Copy`
24612462types2463 .into_iter()
2464 .flat_map(|placeholder_ty| {
2465let Normalized { value: normalized_ty, mut obligations } =
2466ensure_sufficient_stack(|| {
2467normalize_with_depth(
2468self,
2469param_env,
2470cause.clone(),
2471recursion_depth,
2472placeholder_ty,
2473 )
2474 });
24752476let tcx = self.tcx();
2477let trait_ref = if tcx.generics_of(trait_def_id).own_params.len() == 1 {
2478 ty::TraitRef::new(tcx, trait_def_id, [normalized_ty])
2479 } else {
2480// If this is an ill-formed auto/built-in trait, then synthesize
2481 // new error args for the missing generics.
2482let err_args = ty::GenericArgs::extend_with_error(
2483tcx,
2484trait_def_id,
2485&[normalized_ty.into()],
2486 );
2487 ty::TraitRef::new_from_args(tcx, trait_def_id, err_args)
2488 };
24892490let obligation = Obligation::new(self.tcx(), cause.clone(), param_env, trait_ref);
2491obligations.push(obligation);
2492obligations2493 })
2494 .collect()
2495 }
24962497///////////////////////////////////////////////////////////////////////////
2498 // Matching
2499 //
2500 // Matching is a common path used for both evaluation and
2501 // confirmation. It basically unifies types that appear in impls
2502 // and traits. This does affect the surrounding environment;
2503 // therefore, when used during evaluation, match routines must be
2504 // run inside of a `probe()` so that their side-effects are
2505 // contained.
25062507fn rematch_impl(
2508&mut self,
2509 impl_def_id: DefId,
2510 obligation: &PolyTraitObligation<'tcx>,
2511 ) -> Normalized<'tcx, GenericArgsRef<'tcx>> {
2512let impl_trait_header = self.tcx().impl_trait_header(impl_def_id);
2513match self.match_impl(impl_def_id, impl_trait_header, obligation) {
2514Ok(args) => args,
2515Err(()) => {
2516let predicate = self.infcx.resolve_vars_if_possible(obligation.predicate);
2517::rustc_middle::util::bug::bug_fmt(format_args!("impl {0:?} was matchable against {1:?} but now is not",
impl_def_id, predicate))bug!("impl {impl_def_id:?} was matchable against {predicate:?} but now is not")2518 }
2519 }
2520 }
25212522x;#[instrument(level = "debug", skip(self), ret)]2523fn match_impl(
2524&mut self,
2525 impl_def_id: DefId,
2526 impl_trait_header: ty::ImplTraitHeader<'tcx>,
2527 obligation: &PolyTraitObligation<'tcx>,
2528 ) -> Result<Normalized<'tcx, GenericArgsRef<'tcx>>, ()> {
2529let placeholder_obligation =
2530self.infcx.enter_forall_and_leak_universe(obligation.predicate);
2531let placeholder_obligation_trait_ref = placeholder_obligation.trait_ref;
25322533let impl_args = self.infcx.fresh_args_for_item(obligation.cause.span, impl_def_id);
25342535let trait_ref =
2536 impl_trait_header.trait_ref.instantiate(self.tcx(), impl_args).skip_norm_wip();
2537debug!(?impl_trait_header);
25382539let Normalized { value: impl_trait_ref, obligations: mut nested_obligations } =
2540 ensure_sufficient_stack(|| {
2541 normalize_with_depth(
2542self,
2543 obligation.param_env,
2544 obligation.cause.clone(),
2545 obligation.recursion_depth + 1,
2546 trait_ref,
2547 )
2548 });
25492550debug!(?impl_trait_ref, ?placeholder_obligation_trait_ref);
25512552let cause = ObligationCause::new(
2553 obligation.cause.span,
2554 obligation.cause.body_id,
2555 ObligationCauseCode::MatchImpl(obligation.cause.clone(), impl_def_id),
2556 );
25572558let InferOk { obligations, .. } = self
2559.infcx
2560 .at(&cause, obligation.param_env)
2561 .eq(DefineOpaqueTypes::No, placeholder_obligation_trait_ref, impl_trait_ref)
2562 .map_err(|e| {
2563debug!("match_impl: failed eq_trait_refs due to `{}`", e.to_string(self.tcx()))
2564 })?;
2565 nested_obligations.extend(obligations);
25662567if impl_trait_header.polarity == ty::ImplPolarity::Reservation
2568 && !self.typing_mode().is_coherence()
2569 {
2570debug!("reservation impls only apply in intercrate mode");
2571return Err(());
2572 }
25732574Ok(Normalized { value: impl_args, obligations: nested_obligations })
2575 }
25762577fn match_upcast_principal(
2578&mut self,
2579 obligation: &PolyTraitObligation<'tcx>,
2580 unnormalized_upcast_principal: ty::PolyTraitRef<'tcx>,
2581 a_data: &'tcx ty::List<ty::PolyExistentialPredicate<'tcx>>,
2582 b_data: &'tcx ty::List<ty::PolyExistentialPredicate<'tcx>>,
2583 a_region: ty::Region<'tcx>,
2584 b_region: ty::Region<'tcx>,
2585 ) -> SelectionResult<'tcx, PredicateObligations<'tcx>> {
2586let tcx = self.tcx();
2587let mut nested = PredicateObligations::new();
25882589// We may upcast to auto traits that are either explicitly listed in
2590 // the object type's bounds, or implied by the principal trait ref's
2591 // supertraits.
2592let a_auto_traits: FxIndexSet<DefId> = a_data2593 .auto_traits()
2594 .chain(a_data.principal_def_id().into_iter().flat_map(|principal_def_id| {
2595 elaborate::supertrait_def_ids(tcx, principal_def_id)
2596 .filter(|def_id| tcx.trait_is_auto(*def_id))
2597 }))
2598 .collect();
25992600let upcast_principal = normalize_with_depth_to(
2601self,
2602obligation.param_env,
2603obligation.cause.clone(),
2604obligation.recursion_depth + 1,
2605unnormalized_upcast_principal,
2606&mut nested,
2607 );
26082609for bound in b_data {
2610match bound.skip_binder() {
2611// Check that a_ty's supertrait (upcast_principal) is compatible
2612 // with the target (b_ty).
2613ty::ExistentialPredicate::Trait(target_principal) => {
2614let hr_source_principal = upcast_principal.map_bound(|trait_ref| {
2615 ty::ExistentialTraitRef::erase_self_ty(tcx, trait_ref)
2616 });
2617let hr_target_principal = bound.rebind(target_principal);
26182619 nested.extend(
2620self.infcx
2621 .enter_forall(hr_target_principal, |target_principal| {
2622let source_principal =
2623self.infcx.instantiate_binder_with_fresh_vars(
2624 obligation.cause.span,
2625 HigherRankedType,
2626 hr_source_principal,
2627 );
2628self.infcx.at(&obligation.cause, obligation.param_env).eq_trace(
2629 DefineOpaqueTypes::Yes,
2630 ToTrace::to_trace(
2631&obligation.cause,
2632 hr_target_principal,
2633 hr_source_principal,
2634 ),
2635 target_principal,
2636 source_principal,
2637 )
2638 })
2639 .map_err(|_| SelectionError::Unimplemented)?
2640.into_obligations(),
2641 );
2642 }
2643// Check that b_ty's projection is satisfied by exactly one of
2644 // a_ty's projections. First, we look through the list to see if
2645 // any match. If not, error. Then, if *more* than one matches, we
2646 // return ambiguity. Otherwise, if exactly one matches, equate
2647 // it with b_ty's projection.
2648ty::ExistentialPredicate::Projection(target_projection) => {
2649let hr_target_projection = bound.rebind(target_projection);
26502651let mut matching_projections =
2652 a_data.projection_bounds().filter(|&hr_source_projection| {
2653// Eager normalization means that we can just use can_eq
2654 // here instead of equating and processing obligations.
2655hr_source_projection.item_def_id() == hr_target_projection.item_def_id()
2656 && self.infcx.probe(|_| {
2657self.infcx
2658 .enter_forall(hr_target_projection, |target_projection| {
2659let source_projection =
2660self.infcx.instantiate_binder_with_fresh_vars(
2661 obligation.cause.span,
2662 HigherRankedType,
2663 hr_source_projection,
2664 );
2665self.infcx
2666 .at(&obligation.cause, obligation.param_env)
2667 .eq_trace(
2668 DefineOpaqueTypes::Yes,
2669 ToTrace::to_trace(
2670&obligation.cause,
2671 hr_target_projection,
2672 hr_source_projection,
2673 ),
2674 target_projection,
2675 source_projection,
2676 )
2677 })
2678 .is_ok()
2679 })
2680 });
26812682let Some(hr_source_projection) = matching_projections.next() else {
2683return Err(SelectionError::Unimplemented);
2684 };
2685if matching_projections.next().is_some() {
2686return Ok(None);
2687 }
2688 nested.extend(
2689self.infcx
2690 .enter_forall(hr_target_projection, |target_projection| {
2691let source_projection =
2692self.infcx.instantiate_binder_with_fresh_vars(
2693 obligation.cause.span,
2694 HigherRankedType,
2695 hr_source_projection,
2696 );
2697self.infcx.at(&obligation.cause, obligation.param_env).eq_trace(
2698 DefineOpaqueTypes::Yes,
2699 ToTrace::to_trace(
2700&obligation.cause,
2701 hr_target_projection,
2702 hr_source_projection,
2703 ),
2704 target_projection,
2705 source_projection,
2706 )
2707 })
2708 .map_err(|_| SelectionError::Unimplemented)?
2709.into_obligations(),
2710 );
2711 }
2712// Check that b_ty's auto traits are present in a_ty's bounds.
2713ty::ExistentialPredicate::AutoTrait(def_id) => {
2714if !a_auto_traits.contains(&def_id) {
2715return Err(SelectionError::Unimplemented);
2716 }
2717 }
2718 }
2719 }
27202721nested.push(Obligation::with_depth(
2722tcx,
2723obligation.cause.clone(),
2724obligation.recursion_depth + 1,
2725obligation.param_env,
2726 ty::Binder::dummy(ty::OutlivesPredicate(a_region, b_region)),
2727 ));
27282729Ok(Some(nested))
2730 }
27312732/// Normalize `where_clause_trait_ref` and try to match it against
2733 /// `obligation`. If successful, return any predicates that
2734 /// result from the normalization.
2735fn match_where_clause_trait_ref(
2736&mut self,
2737 obligation: &PolyTraitObligation<'tcx>,
2738 where_clause_trait_ref: ty::PolyTraitRef<'tcx>,
2739 ) -> Result<PredicateObligations<'tcx>, ()> {
2740self.match_poly_trait_ref(obligation, where_clause_trait_ref)
2741 }
27422743/// Returns `Ok` if `poly_trait_ref` being true implies that the
2744 /// obligation is satisfied.
2745#[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("match_poly_trait_ref",
"rustc_trait_selection::traits::select",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
::tracing_core::__macro_support::Option::Some(2745u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
::tracing_core::field::FieldSet::new(&["obligation",
"poly_trait_ref"],
::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(&obligation)
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(&poly_trait_ref)
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:
Result<PredicateObligations<'tcx>, ()> = loop {};
return __tracing_attr_fake_return;
}
{
let predicate =
self.infcx.enter_forall_and_leak_universe(obligation.predicate);
let trait_ref =
self.infcx.instantiate_binder_with_fresh_vars(obligation.cause.span,
HigherRankedType, poly_trait_ref);
self.infcx.at(&obligation.cause,
obligation.param_env).eq(DefineOpaqueTypes::No,
predicate.trait_ref,
trait_ref).map(|InferOk { obligations, .. }|
obligations).map_err(|_| ())
}
}
}#[instrument(skip(self), level = "debug")]2746fn match_poly_trait_ref(
2747&mut self,
2748 obligation: &PolyTraitObligation<'tcx>,
2749 poly_trait_ref: ty::PolyTraitRef<'tcx>,
2750 ) -> Result<PredicateObligations<'tcx>, ()> {
2751let predicate = self.infcx.enter_forall_and_leak_universe(obligation.predicate);
2752let trait_ref = self.infcx.instantiate_binder_with_fresh_vars(
2753 obligation.cause.span,
2754 HigherRankedType,
2755 poly_trait_ref,
2756 );
2757self.infcx
2758 .at(&obligation.cause, obligation.param_env)
2759 .eq(DefineOpaqueTypes::No, predicate.trait_ref, trait_ref)
2760 .map(|InferOk { obligations, .. }| obligations)
2761 .map_err(|_| ())
2762 }
27632764///////////////////////////////////////////////////////////////////////////
2765 // Miscellany
27662767fn match_fresh_trait_preds(
2768&self,
2769 previous: ty::PolyTraitPredicate<'tcx>,
2770 current: ty::PolyTraitPredicate<'tcx>,
2771 ) -> bool {
2772let mut matcher = _match::MatchAgainstFreshVars::new(self.tcx());
2773matcher.relate(previous, current).is_ok()
2774 }
27752776fn push_stack<'o>(
2777&mut self,
2778 previous_stack: TraitObligationStackList<'o, 'tcx>,
2779 obligation: &'o PolyTraitObligation<'tcx>,
2780 ) -> TraitObligationStack<'o, 'tcx> {
2781let fresh_trait_pred = obligation.predicate.fold_with(&mut self.freshener);
27822783let dfn = previous_stack.cache.next_dfn();
2784let depth = previous_stack.depth() + 1;
2785TraitObligationStack {
2786obligation,
2787fresh_trait_pred,
2788 reached_depth: Cell::new(depth),
2789 previous: previous_stack,
2790dfn,
2791depth,
2792 }
2793 }
27942795#[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("closure_trait_ref_unnormalized",
"rustc_trait_selection::traits::select",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
::tracing_core::__macro_support::Option::Some(2795u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
::tracing_core::field::FieldSet::new(&["self_ty",
"fn_trait_def_id"],
::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(&self_ty)
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(&fn_trait_def_id)
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: ty::PolyTraitRef<'tcx> = loop {};
return __tracing_attr_fake_return;
}
{
let ty::Closure(_, args) =
*self_ty.kind() else {
::rustc_middle::util::bug::bug_fmt(format_args!("expected closure, found {0}",
self_ty));
};
let closure_sig = args.as_closure().sig();
closure_trait_ref_and_return_type(self.tcx(), fn_trait_def_id,
self_ty, closure_sig,
util::TupleArgumentsFlag::No).map_bound(|(trait_ref, _)|
trait_ref)
}
}
}#[instrument(skip(self), level = "debug")]2796fn closure_trait_ref_unnormalized(
2797&mut self,
2798 self_ty: Ty<'tcx>,
2799 fn_trait_def_id: DefId,
2800 ) -> ty::PolyTraitRef<'tcx> {
2801let ty::Closure(_, args) = *self_ty.kind() else {
2802bug!("expected closure, found {self_ty}");
2803 };
2804let closure_sig = args.as_closure().sig();
28052806 closure_trait_ref_and_return_type(
2807self.tcx(),
2808 fn_trait_def_id,
2809 self_ty,
2810 closure_sig,
2811 util::TupleArgumentsFlag::No,
2812 )
2813 .map_bound(|(trait_ref, _)| trait_ref)
2814 }
28152816/// Returns the obligations that are implied by instantiating an
2817 /// impl or trait. The obligations are instantiated and fully
2818 /// normalized. This is used when confirming an impl or default
2819 /// impl.
2820#[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("impl_or_trait_obligations",
"rustc_trait_selection::traits::select",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
::tracing_core::__macro_support::Option::Some(2820u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
::tracing_core::field::FieldSet::new(&["recursion_depth",
"def_id", "args", "parent_trait_pred"],
::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(&recursion_depth 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(&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(&args)
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(&parent_trait_pred)
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: PredicateObligations<'tcx> =
loop {};
return __tracing_attr_fake_return;
}
{
let tcx = self.tcx();
let predicates = tcx.predicates_of(def_id);
match (&predicates.parent, &None) {
(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);
}
}
};
let predicates = predicates.instantiate_own(tcx, args);
let mut obligations =
PredicateObligations::with_capacity(predicates.len());
for (index, (predicate, span)) in
predicates.into_iter().enumerate() {
let cause =
if tcx.is_lang_item(parent_trait_pred.def_id(),
LangItem::CoerceUnsized) {
cause.clone()
} else {
cause.clone().derived_cause(parent_trait_pred,
|derived|
{
ObligationCauseCode::ImplDerived(Box::new(ImplDerivedCause {
derived,
impl_or_alias_def_id: def_id,
impl_def_predicate_index: Some(index),
span,
}))
})
};
let clause =
normalize_with_depth_to(self, param_env, cause.clone(),
recursion_depth, predicate.skip_norm_wip(),
&mut obligations);
obligations.push(Obligation {
cause,
recursion_depth,
param_env,
predicate: clause.as_predicate(),
});
}
if tcx.def_kind(def_id) == (DefKind::Impl { of_trait: true }) {
for clause in
tcx.impl_super_outlives(def_id).iter_instantiated(tcx,
args).map(Unnormalized::skip_norm_wip) {
let clause =
normalize_with_depth_to(self, param_env, cause.clone(),
recursion_depth, clause, &mut obligations);
obligations.push(Obligation {
cause: cause.clone(),
recursion_depth,
param_env,
predicate: clause.as_predicate(),
});
}
}
obligations
}
}
}#[instrument(level = "debug", skip(self, cause, param_env))]2821fn impl_or_trait_obligations(
2822&mut self,
2823 cause: &ObligationCause<'tcx>,
2824 recursion_depth: usize,
2825 param_env: ty::ParamEnv<'tcx>,
2826 def_id: DefId, // of impl or trait
2827args: GenericArgsRef<'tcx>, // for impl or trait
2828parent_trait_pred: ty::Binder<'tcx, ty::TraitPredicate<'tcx>>,
2829 ) -> PredicateObligations<'tcx> {
2830let tcx = self.tcx();
28312832// To allow for one-pass evaluation of the nested obligation,
2833 // each predicate must be preceded by the obligations required
2834 // to normalize it.
2835 // for example, if we have:
2836 // impl<U: Iterator<Item: Copy>, V: Iterator<Item = U>> Foo for V
2837 // the impl will have the following predicates:
2838 // <V as Iterator>::Item = U,
2839 // U: Iterator, U: Sized,
2840 // V: Iterator, V: Sized,
2841 // <U as Iterator>::Item: Copy
2842 // When we instantiate, say, `V => IntoIter<u32>, U => $0`, the last
2843 // obligation will normalize to `<$0 as Iterator>::Item = $1` and
2844 // `$1: Copy`, so we must ensure the obligations are emitted in
2845 // that order.
2846let predicates = tcx.predicates_of(def_id);
2847assert_eq!(predicates.parent, None);
2848let predicates = predicates.instantiate_own(tcx, args);
2849let mut obligations = PredicateObligations::with_capacity(predicates.len());
2850for (index, (predicate, span)) in predicates.into_iter().enumerate() {
2851let cause = if tcx.is_lang_item(parent_trait_pred.def_id(), LangItem::CoerceUnsized) {
2852 cause.clone()
2853 } else {
2854 cause.clone().derived_cause(parent_trait_pred, |derived| {
2855 ObligationCauseCode::ImplDerived(Box::new(ImplDerivedCause {
2856 derived,
2857 impl_or_alias_def_id: def_id,
2858 impl_def_predicate_index: Some(index),
2859 span,
2860 }))
2861 })
2862 };
2863let clause = normalize_with_depth_to(
2864self,
2865 param_env,
2866 cause.clone(),
2867 recursion_depth,
2868 predicate.skip_norm_wip(),
2869&mut obligations,
2870 );
2871 obligations.push(Obligation {
2872 cause,
2873 recursion_depth,
2874 param_env,
2875 predicate: clause.as_predicate(),
2876 });
2877 }
28782879// Register any outlives obligations from the trait here, cc #124336.
2880if tcx.def_kind(def_id) == (DefKind::Impl { of_trait: true }) {
2881for clause in tcx
2882 .impl_super_outlives(def_id)
2883 .iter_instantiated(tcx, args)
2884 .map(Unnormalized::skip_norm_wip)
2885 {
2886let clause = normalize_with_depth_to(
2887self,
2888 param_env,
2889 cause.clone(),
2890 recursion_depth,
2891 clause,
2892&mut obligations,
2893 );
2894 obligations.push(Obligation {
2895 cause: cause.clone(),
2896 recursion_depth,
2897 param_env,
2898 predicate: clause.as_predicate(),
2899 });
2900 }
2901 }
29022903 obligations
2904 }
29052906pub(super) fn should_stall_coroutine(&self, def_id: DefId) -> bool {
2907match self.typing_mode() {
2908TypingMode::Typeck { defining_opaque_types_and_generators: stalled_generators } => {
2909def_id.as_local().is_some_and(|def_id| stalled_generators.contains(&def_id))
2910 }
2911TypingMode::Coherence2912 | TypingMode::PostAnalysis2913 | TypingMode::Codegen2914 | TypingMode::PostTypeckUntilBorrowck { defining_opaque_types: _ }
2915 | TypingMode::PostBorrowck { defined_opaque_types: _ } => false,
2916 }
2917 }
2918}
29192920impl<'o, 'tcx> TraitObligationStack<'o, 'tcx> {
2921fn list(&'o self) -> TraitObligationStackList<'o, 'tcx> {
2922TraitObligationStackList::with(self)
2923 }
29242925fn cache(&self) -> &'o ProvisionalEvaluationCache<'tcx> {
2926self.previous.cache
2927 }
29282929fn iter(&'o self) -> TraitObligationStackList<'o, 'tcx> {
2930self.list()
2931 }
29322933/// Indicates that attempting to evaluate this stack entry
2934 /// required accessing something from the stack at depth `reached_depth`.
2935fn update_reached_depth(&self, reached_depth: usize) {
2936if !(self.depth >= reached_depth) {
{
::core::panicking::panic_fmt(format_args!("invoked `update_reached_depth` with something under this stack: self.depth={0} reached_depth={1}",
self.depth, reached_depth));
}
};assert!(
2937self.depth >= reached_depth,
2938"invoked `update_reached_depth` with something under this stack: \
2939 self.depth={} reached_depth={}",
2940self.depth,
2941 reached_depth,
2942 );
2943{
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/select/mod.rs:2943",
"rustc_trait_selection::traits::select",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
::tracing_core::__macro_support::Option::Some(2943u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
::tracing_core::field::FieldSet::new(&["message",
"reached_depth"],
::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!("update_reached_depth")
as &dyn Value)),
(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&reached_depth as
&dyn Value))])
});
} else { ; }
};debug!(reached_depth, "update_reached_depth");
2944let mut p = self;
2945while reached_depth < p.depth {
2946{
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/select/mod.rs:2946",
"rustc_trait_selection::traits::select",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
::tracing_core::__macro_support::Option::Some(2946u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
::tracing_core::field::FieldSet::new(&["message",
"p.fresh_trait_pred"],
::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!("update_reached_depth: marking as cycle participant")
as &dyn Value)),
(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&debug(&p.fresh_trait_pred)
as &dyn Value))])
});
} else { ; }
};debug!(?p.fresh_trait_pred, "update_reached_depth: marking as cycle participant");
2947 p.reached_depth.set(p.reached_depth.get().min(reached_depth));
2948 p = p.previous.head.unwrap();
2949 }
2950 }
2951}
29522953/// The "provisional evaluation cache" is used to store intermediate cache results
2954/// when solving auto traits. Auto traits are unusual in that they can support
2955/// cycles. So, for example, a "proof tree" like this would be ok:
2956///
2957/// - `Foo<T>: Send` :-
2958/// - `Bar<T>: Send` :-
2959/// - `Foo<T>: Send` -- cycle, but ok
2960/// - `Baz<T>: Send`
2961///
2962/// Here, to prove `Foo<T>: Send`, we have to prove `Bar<T>: Send` and
2963/// `Baz<T>: Send`. Proving `Bar<T>: Send` in turn required `Foo<T>: Send`.
2964/// For non-auto traits, this cycle would be an error, but for auto traits (because
2965/// they are coinductive) it is considered ok.
2966///
2967/// However, there is a complication: at the point where we have
2968/// "proven" `Bar<T>: Send`, we have in fact only proven it
2969/// *provisionally*. In particular, we proved that `Bar<T>: Send`
2970/// *under the assumption* that `Foo<T>: Send`. But what if we later
2971/// find out this assumption is wrong? Specifically, we could
2972/// encounter some kind of error proving `Baz<T>: Send`. In that case,
2973/// `Bar<T>: Send` didn't turn out to be true.
2974///
2975/// In Issue #60010, we found a bug in rustc where it would cache
2976/// these intermediate results. This was fixed in #60444 by disabling
2977/// *all* caching for things involved in a cycle -- in our example,
2978/// that would mean we don't cache that `Bar<T>: Send`. But this led
2979/// to large slowdowns.
2980///
2981/// Specifically, imagine this scenario, where proving `Baz<T>: Send`
2982/// first requires proving `Bar<T>: Send` (which is true:
2983///
2984/// - `Foo<T>: Send` :-
2985/// - `Bar<T>: Send` :-
2986/// - `Foo<T>: Send` -- cycle, but ok
2987/// - `Baz<T>: Send`
2988/// - `Bar<T>: Send` -- would be nice for this to be a cache hit!
2989/// - `*const T: Send` -- but what if we later encounter an error?
2990///
2991/// The *provisional evaluation cache* resolves this issue. It stores
2992/// cache results that we've proven but which were involved in a cycle
2993/// in some way. We track the minimal stack depth (i.e., the
2994/// farthest from the top of the stack) that we are dependent on.
2995/// The idea is that the cache results within are all valid -- so long as
2996/// none of the nodes in between the current node and the node at that minimum
2997/// depth result in an error (in which case the cached results are just thrown away).
2998///
2999/// During evaluation, we consult this provisional cache and rely on
3000/// it. Accessing a cached value is considered equivalent to accessing
3001/// a result at `reached_depth`, so it marks the *current* solution as
3002/// provisional as well. If an error is encountered, we toss out any
3003/// provisional results added from the subtree that encountered the
3004/// error. When we pop the node at `reached_depth` from the stack, we
3005/// can commit all the things that remain in the provisional cache.
3006struct ProvisionalEvaluationCache<'tcx> {
3007/// next "depth first number" to issue -- just a counter
3008dfn: Cell<usize>,
30093010/// Map from cache key to the provisionally evaluated thing.
3011 /// The cache entries contain the result but also the DFN in which they
3012 /// were added. The DFN is used to clear out values on failure.
3013 ///
3014 /// Imagine we have a stack like:
3015 ///
3016 /// - `A B C` and we add a cache for the result of C (DFN 2)
3017 /// - Then we have a stack `A B D` where `D` has DFN 3
3018 /// - We try to solve D by evaluating E: `A B D E` (DFN 4)
3019 /// - `E` generates various cache entries which have cyclic dependencies on `B`
3020 /// - `A B D E F` and so forth
3021 /// - the DFN of `F` for example would be 5
3022 /// - then we determine that `E` is in error -- we will then clear
3023 /// all cache values whose DFN is >= 4 -- in this case, that
3024 /// means the cached value for `F`.
3025map: RefCell<FxIndexMap<ty::PolyTraitPredicate<'tcx>, ProvisionalEvaluation>>,
30263027/// The stack of terms that we assume to be well-formed because a `WF(term)` predicate
3028 /// is on the stack above (and because of wellformedness is coinductive).
3029 /// In an "ideal" world, this would share a stack with trait predicates in
3030 /// `TraitObligationStack`. However, trait predicates are *much* hotter than
3031 /// `WellFormed` predicates, and it's very likely that the additional matches
3032 /// will have a perf effect. The value here is the well-formed `GenericArg`
3033 /// and the depth of the trait predicate *above* that well-formed predicate.
3034wf_args: RefCell<Vec<(ty::Term<'tcx>, usize)>>,
3035}
30363037/// A cache value for the provisional cache: contains the depth-first
3038/// number (DFN) and result.
3039#[derive(#[automatically_derived]
impl ::core::marker::Copy for ProvisionalEvaluation { }Copy, #[automatically_derived]
impl ::core::clone::Clone for ProvisionalEvaluation {
#[inline]
fn clone(&self) -> ProvisionalEvaluation {
let _: ::core::clone::AssertParamIsClone<usize>;
let _: ::core::clone::AssertParamIsClone<EvaluationResult>;
*self
}
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for ProvisionalEvaluation {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
::core::fmt::Formatter::debug_struct_field3_finish(f,
"ProvisionalEvaluation", "from_dfn", &self.from_dfn,
"reached_depth", &self.reached_depth, "result", &&self.result)
}
}Debug)]
3040struct ProvisionalEvaluation {
3041 from_dfn: usize,
3042 reached_depth: usize,
3043 result: EvaluationResult,
3044}
30453046impl<'tcx> Defaultfor ProvisionalEvaluationCache<'tcx> {
3047fn default() -> Self {
3048Self { dfn: Cell::new(0), map: Default::default(), wf_args: Default::default() }
3049 }
3050}
30513052impl<'tcx> ProvisionalEvaluationCache<'tcx> {
3053/// Get the next DFN in sequence (basically a counter).
3054fn next_dfn(&self) -> usize {
3055let result = self.dfn.get();
3056self.dfn.set(result + 1);
3057result3058 }
30593060/// Check the provisional cache for any result for
3061 /// `fresh_trait_pred`. If there is a hit, then you must consider
3062 /// it an access to the stack slots at depth
3063 /// `reached_depth` (from the returned value).
3064fn get_provisional(
3065&self,
3066 fresh_trait_pred: ty::PolyTraitPredicate<'tcx>,
3067 ) -> Option<ProvisionalEvaluation> {
3068{
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/select/mod.rs:3068",
"rustc_trait_selection::traits::select",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
::tracing_core::__macro_support::Option::Some(3068u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
::tracing_core::field::FieldSet::new(&["message",
"fresh_trait_pred"],
::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!("get_provisional = {0:#?}",
self.map.borrow().get(&fresh_trait_pred)) as &dyn Value)),
(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&debug(&fresh_trait_pred)
as &dyn Value))])
});
} else { ; }
};debug!(
3069?fresh_trait_pred,
3070"get_provisional = {:#?}",
3071self.map.borrow().get(&fresh_trait_pred),
3072 );
3073Some(*self.map.borrow().get(&fresh_trait_pred)?)
3074 }
30753076/// Insert a provisional result into the cache. The result came
3077 /// from the node with the given DFN. It accessed a minimum depth
3078 /// of `reached_depth` to compute. It evaluated `fresh_trait_pred`
3079 /// and resulted in `result`.
3080fn insert_provisional(
3081&self,
3082 from_dfn: usize,
3083 reached_depth: usize,
3084 fresh_trait_pred: ty::PolyTraitPredicate<'tcx>,
3085 result: EvaluationResult,
3086 ) {
3087{
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/select/mod.rs:3087",
"rustc_trait_selection::traits::select",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
::tracing_core::__macro_support::Option::Some(3087u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
::tracing_core::field::FieldSet::new(&["message",
"from_dfn", "fresh_trait_pred", "result"],
::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!("insert_provisional")
as &dyn Value)),
(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&debug(&from_dfn)
as &dyn Value)),
(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&debug(&fresh_trait_pred)
as &dyn Value)),
(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&debug(&result) as
&dyn Value))])
});
} else { ; }
};debug!(?from_dfn, ?fresh_trait_pred, ?result, "insert_provisional");
30883089let mut map = self.map.borrow_mut();
30903091// Subtle: when we complete working on the DFN `from_dfn`, anything
3092 // that remains in the provisional cache must be dependent on some older
3093 // stack entry than `from_dfn`. We have to update their depth with our transitive
3094 // depth in that case or else it would be referring to some popped note.
3095 //
3096 // Example:
3097 // A (reached depth 0)
3098 // ...
3099 // B // depth 1 -- reached depth = 0
3100 // C // depth 2 -- reached depth = 1 (should be 0)
3101 // B
3102 // A // depth 0
3103 // D (reached depth 1)
3104 // C (cache -- reached depth = 2)
3105for (_k, v) in &mut *map {
3106if v.from_dfn >= from_dfn {
3107 v.reached_depth = reached_depth.min(v.reached_depth);
3108 }
3109 }
31103111map.insert(fresh_trait_pred, ProvisionalEvaluation { from_dfn, reached_depth, result });
3112 }
31133114/// Invoked when the node with dfn `dfn` does not get a successful
3115 /// result. This will clear out any provisional cache entries
3116 /// that were added since `dfn` was created. This is because the
3117 /// provisional entries are things which must assume that the
3118 /// things on the stack at the time of their creation succeeded --
3119 /// since the failing node is presently at the top of the stack,
3120 /// these provisional entries must either depend on it or some
3121 /// ancestor of it.
3122fn on_failure(&self, dfn: usize) {
3123{
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/select/mod.rs:3123",
"rustc_trait_selection::traits::select",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
::tracing_core::__macro_support::Option::Some(3123u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
::tracing_core::field::FieldSet::new(&["message", "dfn"],
::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!("on_failure")
as &dyn Value)),
(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&debug(&dfn) as
&dyn Value))])
});
} else { ; }
};debug!(?dfn, "on_failure");
3124self.map.borrow_mut().retain(|key, eval| {
3125if !eval.from_dfn >= dfn {
3126{
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/select/mod.rs:3126",
"rustc_trait_selection::traits::select",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
::tracing_core::__macro_support::Option::Some(3126u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
::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!("on_failure: removing {0:?}",
key) as &dyn Value))])
});
} else { ; }
};debug!("on_failure: removing {:?}", key);
3127false
3128} else {
3129true
3130}
3131 });
3132 }
31333134/// Invoked when the node at depth `depth` completed without
3135 /// depending on anything higher in the stack (if that completion
3136 /// was a failure, then `on_failure` should have been invoked
3137 /// already).
3138 ///
3139 /// Note that we may still have provisional cache items remaining
3140 /// in the cache when this is done. For example, if there is a
3141 /// cycle:
3142 ///
3143 /// * A depends on...
3144 /// * B depends on A
3145 /// * C depends on...
3146 /// * D depends on C
3147 /// * ...
3148 ///
3149 /// Then as we complete the C node we will have a provisional cache
3150 /// with results for A, B, C, and D. This method would clear out
3151 /// the C and D results, but leave A and B provisional.
3152 ///
3153 /// This is determined based on the DFN: we remove any provisional
3154 /// results created since `dfn` started (e.g., in our example, dfn
3155 /// would be 2, representing the C node, and hence we would
3156 /// remove the result for D, which has DFN 3, but not the results for
3157 /// A and B, which have DFNs 0 and 1 respectively).
3158 ///
3159 /// Note that we *do not* attempt to cache these cycle participants
3160 /// in the evaluation cache. Doing so would require carefully computing
3161 /// the correct `DepNode` to store in the cache entry:
3162 /// cycle participants may implicitly depend on query results
3163 /// related to other participants in the cycle, due to our logic
3164 /// which examines the evaluation stack.
3165 ///
3166 /// We used to try to perform this caching,
3167 /// but it lead to multiple incremental compilation ICEs
3168 /// (see #92987 and #96319), and was very hard to understand.
3169 /// Fortunately, removing the caching didn't seem to
3170 /// have a performance impact in practice.
3171fn on_completion(&self, dfn: usize) {
3172{
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/select/mod.rs:3172",
"rustc_trait_selection::traits::select",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
::tracing_core::__macro_support::Option::Some(3172u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
::tracing_core::field::FieldSet::new(&["message", "dfn"],
::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!("on_completion")
as &dyn Value)),
(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&debug(&dfn) as
&dyn Value))])
});
} else { ; }
};debug!(?dfn, "on_completion");
3173self.map.borrow_mut().retain(|fresh_trait_pred, eval| {
3174if eval.from_dfn >= dfn {
3175{
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/select/mod.rs:3175",
"rustc_trait_selection::traits::select",
::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_trait_selection/src/traits/select/mod.rs"),
::tracing_core::__macro_support::Option::Some(3175u32),
::tracing_core::__macro_support::Option::Some("rustc_trait_selection::traits::select"),
::tracing_core::field::FieldSet::new(&["message",
"fresh_trait_pred", "eval"],
::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!("on_completion")
as &dyn Value)),
(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&debug(&fresh_trait_pred)
as &dyn Value)),
(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&debug(&eval) as
&dyn Value))])
});
} else { ; }
};debug!(?fresh_trait_pred, ?eval, "on_completion");
3176return false;
3177 }
3178true
3179});
3180 }
3181}
31823183#[derive(#[automatically_derived]
impl<'o, 'tcx> ::core::marker::Copy for TraitObligationStackList<'o, 'tcx> { }Copy, #[automatically_derived]
impl<'o, 'tcx> ::core::clone::Clone for TraitObligationStackList<'o, 'tcx> {
#[inline]
fn clone(&self) -> TraitObligationStackList<'o, 'tcx> {
let _:
::core::clone::AssertParamIsClone<&'o ProvisionalEvaluationCache<'tcx>>;
let _:
::core::clone::AssertParamIsClone<Option<&'o TraitObligationStack<'o,
'tcx>>>;
*self
}
}Clone)]
3184struct TraitObligationStackList<'o, 'tcx> {
3185 cache: &'o ProvisionalEvaluationCache<'tcx>,
3186 head: Option<&'o TraitObligationStack<'o, 'tcx>>,
3187}
31883189impl<'o, 'tcx> TraitObligationStackList<'o, 'tcx> {
3190fn empty(cache: &'o ProvisionalEvaluationCache<'tcx>) -> TraitObligationStackList<'o, 'tcx> {
3191TraitObligationStackList { cache, head: None }
3192 }
31933194fn with(r: &'o TraitObligationStack<'o, 'tcx>) -> TraitObligationStackList<'o, 'tcx> {
3195TraitObligationStackList { cache: r.cache(), head: Some(r) }
3196 }
31973198fn head(&self) -> Option<&'o TraitObligationStack<'o, 'tcx>> {
3199self.head
3200 }
32013202fn depth(&self) -> usize {
3203if let Some(head) = self.head { head.depth } else { 0 }
3204 }
3205}
32063207impl<'o, 'tcx> Iteratorfor TraitObligationStackList<'o, 'tcx> {
3208type Item = &'o TraitObligationStack<'o, 'tcx>;
32093210fn next(&mut self) -> Option<&'o TraitObligationStack<'o, 'tcx>> {
3211let o = self.head?;
3212*self = o.previous;
3213Some(o)
3214 }
3215}
32163217impl<'o, 'tcx> fmt::Debugfor TraitObligationStack<'o, 'tcx> {
3218fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
3219f.write_fmt(format_args!("TraitObligationStack({0:?})", self.obligation))write!(f, "TraitObligationStack({:?})", self.obligation)3220 }
3221}
32223223pub(crate) enum ProjectionMatchesProjection {
3224 Yes,
3225 Ambiguous,
3226 No,
3227}
32283229#[derive(#[automatically_derived]
impl<'tcx> ::core::clone::Clone for AutoImplConstituents<'tcx> {
#[inline]
fn clone(&self) -> AutoImplConstituents<'tcx> {
AutoImplConstituents {
types: ::core::clone::Clone::clone(&self.types),
assumptions: ::core::clone::Clone::clone(&self.assumptions),
}
}
}Clone, #[automatically_derived]
impl<'tcx> ::core::fmt::Debug for AutoImplConstituents<'tcx> {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
::core::fmt::Formatter::debug_struct_field2_finish(f,
"AutoImplConstituents", "types", &self.types, "assumptions",
&&self.assumptions)
}
}Debug, const _: () =
{
impl<'tcx>
::rustc_middle::ty::TypeFoldable<::rustc_middle::ty::TyCtxt<'tcx>>
for AutoImplConstituents<'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 {
AutoImplConstituents {
types: __binding_0, assumptions: __binding_1 } => {
AutoImplConstituents {
types: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
__folder)?,
assumptions: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_1,
__folder)?,
}
}
})
}
fn fold_with<__F: ::rustc_middle::ty::TypeFolder<::rustc_middle::ty::TyCtxt<'tcx>>>(self,
__folder: &mut __F) -> Self {
match self {
AutoImplConstituents {
types: __binding_0, assumptions: __binding_1 } => {
AutoImplConstituents {
types: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
__folder),
assumptions: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
__folder),
}
}
}
}
}
};TypeFoldable, const _: () =
{
impl<'tcx>
::rustc_middle::ty::TypeVisitable<::rustc_middle::ty::TyCtxt<'tcx>>
for AutoImplConstituents<'tcx> {
fn visit_with<__V: ::rustc_middle::ty::TypeVisitor<::rustc_middle::ty::TyCtxt<'tcx>>>(&self,
__visitor: &mut __V) -> __V::Result {
match *self {
AutoImplConstituents {
types: ref __binding_0, assumptions: ref __binding_1 } => {
{
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);
}
}
}
}
}
<__V::Result as ::rustc_middle::ty::VisitorResult>::output()
}
}
};TypeVisitable)]
3230pub(crate) struct AutoImplConstituents<'tcx> {
3231pub types: Vec<Ty<'tcx>>,
3232pub assumptions: Vec<ty::ArgOutlivesPredicate<'tcx>>,
3233}