]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_trait_selection/src/traits/select/mod.rs
Move ty::print methods to Drop-based scope guards
[rust.git] / compiler / rustc_trait_selection / src / traits / select / mod.rs
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
4
5 use self::EvaluationResult::*;
6 use self::SelectionCandidate::*;
7
8 use super::coherence::{self, Conflict};
9 use super::const_evaluatable;
10 use super::project;
11 use super::project::normalize_with_depth_to;
12 use super::project::ProjectionTyObligation;
13 use super::util;
14 use super::util::{closure_trait_ref_and_return_type, predicate_for_trait_def};
15 use super::wf;
16 use super::DerivedObligationCause;
17 use super::Normalized;
18 use super::Obligation;
19 use super::ObligationCauseCode;
20 use super::Selection;
21 use super::SelectionResult;
22 use super::TraitQueryMode;
23 use super::{ErrorReporting, Overflow, SelectionError};
24 use super::{ObligationCause, PredicateObligation, TraitObligation};
25
26 use crate::infer::{InferCtxt, InferOk, TypeFreshener};
27 use crate::traits::error_reporting::InferCtxtExt;
28 use crate::traits::project::ProjectionCacheKeyExt;
29 use crate::traits::ProjectionCacheKey;
30 use rustc_data_structures::fx::{FxHashMap, FxHashSet};
31 use rustc_data_structures::stack::ensure_sufficient_stack;
32 use rustc_errors::ErrorReported;
33 use rustc_hir as hir;
34 use rustc_hir::def_id::DefId;
35 use rustc_infer::infer::LateBoundRegionConversionTime;
36 use rustc_middle::dep_graph::{DepKind, DepNodeIndex};
37 use rustc_middle::mir::interpret::ErrorHandled;
38 use rustc_middle::thir::abstract_const::NotConstEvaluatable;
39 use rustc_middle::ty::fast_reject::{self, SimplifyParams};
40 use rustc_middle::ty::print::with_no_trimmed_paths;
41 use rustc_middle::ty::relate::TypeRelation;
42 use rustc_middle::ty::subst::{GenericArgKind, Subst, SubstsRef};
43 use rustc_middle::ty::{self, PolyProjectionPredicate, ToPolyTraitRef, ToPredicate};
44 use rustc_middle::ty::{Ty, TyCtxt, TypeFoldable};
45 use rustc_span::symbol::sym;
46
47 use std::cell::{Cell, RefCell};
48 use std::cmp;
49 use std::fmt::{self, Display};
50 use std::iter;
51
52 pub use rustc_middle::traits::select::*;
53
54 mod candidate_assembly;
55 mod confirmation;
56
57 #[derive(Clone, Debug)]
58 pub enum IntercrateAmbiguityCause {
59     DownstreamCrate { trait_desc: String, self_desc: Option<String> },
60     UpstreamCrateUpdate { trait_desc: String, self_desc: Option<String> },
61     ReservationImpl { message: String },
62 }
63
64 impl IntercrateAmbiguityCause {
65     /// Emits notes when the overlap is caused by complex intercrate ambiguities.
66     /// See #23980 for details.
67     pub fn add_intercrate_ambiguity_hint(&self, err: &mut rustc_errors::DiagnosticBuilder<'_>) {
68         err.note(&self.intercrate_ambiguity_hint());
69     }
70
71     pub fn intercrate_ambiguity_hint(&self) -> String {
72         match self {
73             IntercrateAmbiguityCause::DownstreamCrate { trait_desc, self_desc } => {
74                 let self_desc = if let Some(ty) = self_desc {
75                     format!(" for type `{}`", ty)
76                 } else {
77                     String::new()
78                 };
79                 format!("downstream crates may implement trait `{}`{}", trait_desc, self_desc)
80             }
81             IntercrateAmbiguityCause::UpstreamCrateUpdate { trait_desc, self_desc } => {
82                 let self_desc = if let Some(ty) = self_desc {
83                     format!(" for type `{}`", ty)
84                 } else {
85                     String::new()
86                 };
87                 format!(
88                     "upstream crates may add a new impl of trait `{}`{} \
89                      in future versions",
90                     trait_desc, self_desc
91                 )
92             }
93             IntercrateAmbiguityCause::ReservationImpl { message } => message.clone(),
94         }
95     }
96 }
97
98 pub struct SelectionContext<'cx, 'tcx> {
99     infcx: &'cx InferCtxt<'cx, 'tcx>,
100
101     /// Freshener used specifically for entries on the obligation
102     /// stack. This ensures that all entries on the stack at one time
103     /// will have the same set of placeholder entries, which is
104     /// important for checking for trait bounds that recursively
105     /// require themselves.
106     freshener: TypeFreshener<'cx, 'tcx>,
107
108     /// If `true`, indicates that the evaluation should be conservative
109     /// and consider the possibility of types outside this crate.
110     /// This comes up primarily when resolving ambiguity. Imagine
111     /// there is some trait reference `$0: Bar` where `$0` is an
112     /// inference variable. If `intercrate` is true, then we can never
113     /// say for sure that this reference is not implemented, even if
114     /// there are *no impls at all for `Bar`*, because `$0` could be
115     /// bound to some type that in a downstream crate that implements
116     /// `Bar`. This is the suitable mode for coherence. Elsewhere,
117     /// though, we set this to false, because we are only interested
118     /// in types that the user could actually have written --- in
119     /// other words, we consider `$0: Bar` to be unimplemented if
120     /// there is no type that the user could *actually name* that
121     /// would satisfy it. This avoids crippling inference, basically.
122     intercrate: bool,
123
124     intercrate_ambiguity_causes: Option<Vec<IntercrateAmbiguityCause>>,
125
126     /// Controls whether or not to filter out negative impls when selecting.
127     /// This is used in librustdoc to distinguish between the lack of an impl
128     /// and a negative impl
129     allow_negative_impls: bool,
130
131     /// The mode that trait queries run in, which informs our error handling
132     /// policy. In essence, canonicalized queries need their errors propagated
133     /// rather than immediately reported because we do not have accurate spans.
134     query_mode: TraitQueryMode,
135 }
136
137 // A stack that walks back up the stack frame.
138 struct TraitObligationStack<'prev, 'tcx> {
139     obligation: &'prev TraitObligation<'tcx>,
140
141     /// The trait predicate from `obligation` but "freshened" with the
142     /// selection-context's freshener. Used to check for recursion.
143     fresh_trait_pred: ty::PolyTraitPredicate<'tcx>,
144
145     /// Starts out equal to `depth` -- if, during evaluation, we
146     /// encounter a cycle, then we will set this flag to the minimum
147     /// depth of that cycle for all participants in the cycle. These
148     /// participants will then forego caching their results. This is
149     /// not the most efficient solution, but it addresses #60010. The
150     /// problem we are trying to prevent:
151     ///
152     /// - If you have `A: AutoTrait` requires `B: AutoTrait` and `C: NonAutoTrait`
153     /// - `B: AutoTrait` requires `A: AutoTrait` (coinductive cycle, ok)
154     /// - `C: NonAutoTrait` requires `A: AutoTrait` (non-coinductive cycle, not ok)
155     ///
156     /// you don't want to cache that `B: AutoTrait` or `A: AutoTrait`
157     /// is `EvaluatedToOk`; this is because they were only considered
158     /// ok on the premise that if `A: AutoTrait` held, but we indeed
159     /// encountered a problem (later on) with `A: AutoTrait. So we
160     /// currently set a flag on the stack node for `B: AutoTrait` (as
161     /// well as the second instance of `A: AutoTrait`) to suppress
162     /// caching.
163     ///
164     /// This is a simple, targeted fix. A more-performant fix requires
165     /// deeper changes, but would permit more caching: we could
166     /// basically defer caching until we have fully evaluated the
167     /// tree, and then cache the entire tree at once. In any case, the
168     /// performance impact here shouldn't be so horrible: every time
169     /// this is hit, we do cache at least one trait, so we only
170     /// evaluate each member of a cycle up to N times, where N is the
171     /// length of the cycle. This means the performance impact is
172     /// bounded and we shouldn't have any terrible worst-cases.
173     reached_depth: Cell<usize>,
174
175     previous: TraitObligationStackList<'prev, 'tcx>,
176
177     /// The number of parent frames plus one (thus, the topmost frame has depth 1).
178     depth: usize,
179
180     /// The depth-first number of this node in the search graph -- a
181     /// pre-order index. Basically, a freshly incremented counter.
182     dfn: usize,
183 }
184
185 struct SelectionCandidateSet<'tcx> {
186     // A list of candidates that definitely apply to the current
187     // obligation (meaning: types unify).
188     vec: Vec<SelectionCandidate<'tcx>>,
189
190     // If `true`, then there were candidates that might or might
191     // not have applied, but we couldn't tell. This occurs when some
192     // of the input types are type variables, in which case there are
193     // various "builtin" rules that might or might not trigger.
194     ambiguous: bool,
195 }
196
197 #[derive(PartialEq, Eq, Debug, Clone)]
198 struct EvaluatedCandidate<'tcx> {
199     candidate: SelectionCandidate<'tcx>,
200     evaluation: EvaluationResult,
201 }
202
203 /// When does the builtin impl for `T: Trait` apply?
204 #[derive(Debug)]
205 enum BuiltinImplConditions<'tcx> {
206     /// The impl is conditional on `T1, T2, ...: Trait`.
207     Where(ty::Binder<'tcx, Vec<Ty<'tcx>>>),
208     /// There is no built-in impl. There may be some other
209     /// candidate (a where-clause or user-defined impl).
210     None,
211     /// It is unknown whether there is an impl.
212     Ambiguous,
213 }
214
215 impl<'cx, 'tcx> SelectionContext<'cx, 'tcx> {
216     pub fn new(infcx: &'cx InferCtxt<'cx, 'tcx>) -> SelectionContext<'cx, 'tcx> {
217         SelectionContext {
218             infcx,
219             freshener: infcx.freshener_keep_static(),
220             intercrate: false,
221             intercrate_ambiguity_causes: None,
222             allow_negative_impls: false,
223             query_mode: TraitQueryMode::Standard,
224         }
225     }
226
227     pub fn intercrate(infcx: &'cx InferCtxt<'cx, 'tcx>) -> SelectionContext<'cx, 'tcx> {
228         SelectionContext {
229             infcx,
230             freshener: infcx.freshener_keep_static(),
231             intercrate: true,
232             intercrate_ambiguity_causes: None,
233             allow_negative_impls: false,
234             query_mode: TraitQueryMode::Standard,
235         }
236     }
237
238     pub fn with_negative(
239         infcx: &'cx InferCtxt<'cx, 'tcx>,
240         allow_negative_impls: bool,
241     ) -> SelectionContext<'cx, 'tcx> {
242         debug!(?allow_negative_impls, "with_negative");
243         SelectionContext {
244             infcx,
245             freshener: infcx.freshener_keep_static(),
246             intercrate: false,
247             intercrate_ambiguity_causes: None,
248             allow_negative_impls,
249             query_mode: TraitQueryMode::Standard,
250         }
251     }
252
253     pub fn with_query_mode(
254         infcx: &'cx InferCtxt<'cx, 'tcx>,
255         query_mode: TraitQueryMode,
256     ) -> SelectionContext<'cx, 'tcx> {
257         debug!(?query_mode, "with_query_mode");
258         SelectionContext {
259             infcx,
260             freshener: infcx.freshener_keep_static(),
261             intercrate: false,
262             intercrate_ambiguity_causes: None,
263             allow_negative_impls: false,
264             query_mode,
265         }
266     }
267
268     /// Enables tracking of intercrate ambiguity causes. These are
269     /// used in coherence to give improved diagnostics. We don't do
270     /// this until we detect a coherence error because it can lead to
271     /// false overflow results (#47139) and because it costs
272     /// computation time.
273     pub fn enable_tracking_intercrate_ambiguity_causes(&mut self) {
274         assert!(self.intercrate);
275         assert!(self.intercrate_ambiguity_causes.is_none());
276         self.intercrate_ambiguity_causes = Some(vec![]);
277         debug!("selcx: enable_tracking_intercrate_ambiguity_causes");
278     }
279
280     /// Gets the intercrate ambiguity causes collected since tracking
281     /// was enabled and disables tracking at the same time. If
282     /// tracking is not enabled, just returns an empty vector.
283     pub fn take_intercrate_ambiguity_causes(&mut self) -> Vec<IntercrateAmbiguityCause> {
284         assert!(self.intercrate);
285         self.intercrate_ambiguity_causes.take().unwrap_or_default()
286     }
287
288     pub fn infcx(&self) -> &'cx InferCtxt<'cx, 'tcx> {
289         self.infcx
290     }
291
292     pub fn tcx(&self) -> TyCtxt<'tcx> {
293         self.infcx.tcx
294     }
295
296     pub fn is_intercrate(&self) -> bool {
297         self.intercrate
298     }
299
300     ///////////////////////////////////////////////////////////////////////////
301     // Selection
302     //
303     // The selection phase tries to identify *how* an obligation will
304     // be resolved. For example, it will identify which impl or
305     // parameter bound is to be used. The process can be inconclusive
306     // if the self type in the obligation is not fully inferred. Selection
307     // can result in an error in one of two ways:
308     //
309     // 1. If no applicable impl or parameter bound can be found.
310     // 2. If the output type parameters in the obligation do not match
311     //    those specified by the impl/bound. For example, if the obligation
312     //    is `Vec<Foo>: Iterable<Bar>`, but the impl specifies
313     //    `impl<T> Iterable<T> for Vec<T>`, than an error would result.
314
315     /// Attempts to satisfy the obligation. If successful, this will affect the surrounding
316     /// type environment by performing unification.
317     #[instrument(level = "debug", skip(self))]
318     pub fn select(
319         &mut self,
320         obligation: &TraitObligation<'tcx>,
321     ) -> SelectionResult<'tcx, Selection<'tcx>> {
322         let candidate = match self.select_from_obligation(obligation) {
323             Err(SelectionError::Overflow) => {
324                 // In standard mode, overflow must have been caught and reported
325                 // earlier.
326                 assert!(self.query_mode == TraitQueryMode::Canonical);
327                 return Err(SelectionError::Overflow);
328             }
329             Err(SelectionError::Ambiguous(_)) => {
330                 return Ok(None);
331             }
332             Err(e) => {
333                 return Err(e);
334             }
335             Ok(None) => {
336                 return Ok(None);
337             }
338             Ok(Some(candidate)) => candidate,
339         };
340
341         match self.confirm_candidate(obligation, candidate) {
342             Err(SelectionError::Overflow) => {
343                 assert!(self.query_mode == TraitQueryMode::Canonical);
344                 Err(SelectionError::Overflow)
345             }
346             Err(e) => Err(e),
347             Ok(candidate) => {
348                 debug!(?candidate, "confirmed");
349                 Ok(Some(candidate))
350             }
351         }
352     }
353
354     crate fn select_from_obligation(
355         &mut self,
356         obligation: &TraitObligation<'tcx>,
357     ) -> SelectionResult<'tcx, SelectionCandidate<'tcx>> {
358         debug_assert!(!obligation.predicate.has_escaping_bound_vars());
359
360         let pec = &ProvisionalEvaluationCache::default();
361         let stack = self.push_stack(TraitObligationStackList::empty(pec), obligation);
362
363         self.candidate_from_obligation(&stack)
364     }
365
366     ///////////////////////////////////////////////////////////////////////////
367     // EVALUATION
368     //
369     // Tests whether an obligation can be selected or whether an impl
370     // can be applied to particular types. It skips the "confirmation"
371     // step and hence completely ignores output type parameters.
372     //
373     // The result is "true" if the obligation *may* hold and "false" if
374     // we can be sure it does not.
375
376     /// Evaluates whether the obligation `obligation` can be satisfied (by any means).
377     pub fn predicate_may_hold_fatal(&mut self, obligation: &PredicateObligation<'tcx>) -> bool {
378         debug!(?obligation, "predicate_may_hold_fatal");
379
380         // This fatal query is a stopgap that should only be used in standard mode,
381         // where we do not expect overflow to be propagated.
382         assert!(self.query_mode == TraitQueryMode::Standard);
383
384         self.evaluate_root_obligation(obligation)
385             .expect("Overflow should be caught earlier in standard query mode")
386             .may_apply()
387     }
388
389     /// Evaluates whether the obligation `obligation` can be satisfied
390     /// and returns an `EvaluationResult`. This is meant for the
391     /// *initial* call.
392     pub fn evaluate_root_obligation(
393         &mut self,
394         obligation: &PredicateObligation<'tcx>,
395     ) -> Result<EvaluationResult, OverflowError> {
396         self.evaluation_probe(|this| {
397             this.evaluate_predicate_recursively(
398                 TraitObligationStackList::empty(&ProvisionalEvaluationCache::default()),
399                 obligation.clone(),
400             )
401         })
402     }
403
404     fn evaluation_probe(
405         &mut self,
406         op: impl FnOnce(&mut Self) -> Result<EvaluationResult, OverflowError>,
407     ) -> Result<EvaluationResult, OverflowError> {
408         self.infcx.probe(|snapshot| -> Result<EvaluationResult, OverflowError> {
409             let result = op(self)?;
410
411             match self.infcx.leak_check(true, snapshot) {
412                 Ok(()) => {}
413                 Err(_) => return Ok(EvaluatedToErr),
414             }
415
416             match self.infcx.region_constraints_added_in_snapshot(snapshot) {
417                 None => Ok(result),
418                 Some(_) => Ok(result.max(EvaluatedToOkModuloRegions)),
419             }
420         })
421     }
422
423     /// Evaluates the predicates in `predicates` recursively. Note that
424     /// this applies projections in the predicates, and therefore
425     /// is run within an inference probe.
426     #[instrument(skip(self, stack), level = "debug")]
427     fn evaluate_predicates_recursively<'o, I>(
428         &mut self,
429         stack: TraitObligationStackList<'o, 'tcx>,
430         predicates: I,
431     ) -> Result<EvaluationResult, OverflowError>
432     where
433         I: IntoIterator<Item = PredicateObligation<'tcx>> + std::fmt::Debug,
434     {
435         let mut result = EvaluatedToOk;
436         for obligation in predicates {
437             let eval = self.evaluate_predicate_recursively(stack, obligation.clone())?;
438             if let EvaluatedToErr = eval {
439                 // fast-path - EvaluatedToErr is the top of the lattice,
440                 // so we don't need to look on the other predicates.
441                 return Ok(EvaluatedToErr);
442             } else {
443                 result = cmp::max(result, eval);
444             }
445         }
446         Ok(result)
447     }
448
449     #[instrument(
450         level = "debug",
451         skip(self, previous_stack),
452         fields(previous_stack = ?previous_stack.head())
453     )]
454     fn evaluate_predicate_recursively<'o>(
455         &mut self,
456         previous_stack: TraitObligationStackList<'o, 'tcx>,
457         obligation: PredicateObligation<'tcx>,
458     ) -> Result<EvaluationResult, OverflowError> {
459         // `previous_stack` stores a `TraitObligation`, while `obligation` is
460         // a `PredicateObligation`. These are distinct types, so we can't
461         // use any `Option` combinator method that would force them to be
462         // the same.
463         match previous_stack.head() {
464             Some(h) => self.check_recursion_limit(&obligation, h.obligation)?,
465             None => self.check_recursion_limit(&obligation, &obligation)?,
466         }
467
468         let result = ensure_sufficient_stack(|| {
469             let bound_predicate = obligation.predicate.kind();
470             match bound_predicate.skip_binder() {
471                 ty::PredicateKind::Trait(t) => {
472                     let t = bound_predicate.rebind(t);
473                     debug_assert!(!t.has_escaping_bound_vars());
474                     let obligation = obligation.with(t);
475                     self.evaluate_trait_predicate_recursively(previous_stack, obligation)
476                 }
477
478                 ty::PredicateKind::Subtype(p) => {
479                     let p = bound_predicate.rebind(p);
480                     // Does this code ever run?
481                     match self.infcx.subtype_predicate(&obligation.cause, obligation.param_env, p) {
482                         Some(Ok(InferOk { mut obligations, .. })) => {
483                             self.add_depth(obligations.iter_mut(), obligation.recursion_depth);
484                             self.evaluate_predicates_recursively(
485                                 previous_stack,
486                                 obligations.into_iter(),
487                             )
488                         }
489                         Some(Err(_)) => Ok(EvaluatedToErr),
490                         None => Ok(EvaluatedToAmbig),
491                     }
492                 }
493
494                 ty::PredicateKind::Coerce(p) => {
495                     let p = bound_predicate.rebind(p);
496                     // Does this code ever run?
497                     match self.infcx.coerce_predicate(&obligation.cause, obligation.param_env, p) {
498                         Some(Ok(InferOk { mut obligations, .. })) => {
499                             self.add_depth(obligations.iter_mut(), obligation.recursion_depth);
500                             self.evaluate_predicates_recursively(
501                                 previous_stack,
502                                 obligations.into_iter(),
503                             )
504                         }
505                         Some(Err(_)) => Ok(EvaluatedToErr),
506                         None => Ok(EvaluatedToAmbig),
507                     }
508                 }
509
510                 ty::PredicateKind::WellFormed(arg) => match wf::obligations(
511                     self.infcx,
512                     obligation.param_env,
513                     obligation.cause.body_id,
514                     obligation.recursion_depth + 1,
515                     arg,
516                     obligation.cause.span,
517                 ) {
518                     Some(mut obligations) => {
519                         self.add_depth(obligations.iter_mut(), obligation.recursion_depth);
520                         self.evaluate_predicates_recursively(previous_stack, obligations)
521                     }
522                     None => Ok(EvaluatedToAmbig),
523                 },
524
525                 ty::PredicateKind::TypeOutlives(pred) => {
526                     // A global type with no late-bound regions can only
527                     // contain the "'static" lifetime (any other lifetime
528                     // would either be late-bound or local), so it is guaranteed
529                     // to outlive any other lifetime
530                     if pred.0.is_global() && !pred.0.has_late_bound_regions() {
531                         Ok(EvaluatedToOk)
532                     } else {
533                         Ok(EvaluatedToOkModuloRegions)
534                     }
535                 }
536
537                 ty::PredicateKind::RegionOutlives(..) => {
538                     // We do not consider region relationships when evaluating trait matches.
539                     Ok(EvaluatedToOkModuloRegions)
540                 }
541
542                 ty::PredicateKind::ObjectSafe(trait_def_id) => {
543                     if self.tcx().is_object_safe(trait_def_id) {
544                         Ok(EvaluatedToOk)
545                     } else {
546                         Ok(EvaluatedToErr)
547                     }
548                 }
549
550                 ty::PredicateKind::Projection(data) => {
551                     let data = bound_predicate.rebind(data);
552                     let project_obligation = obligation.with(data);
553                     match project::poly_project_and_unify_type(self, &project_obligation) {
554                         Ok(Ok(Some(mut subobligations))) => {
555                             'compute_res: {
556                                 // If we've previously marked this projection as 'complete', thne
557                                 // use the final cached result (either `EvaluatedToOk` or
558                                 // `EvaluatedToOkModuloRegions`), and skip re-evaluating the
559                                 // sub-obligations.
560                                 if let Some(key) =
561                                     ProjectionCacheKey::from_poly_projection_predicate(self, data)
562                                 {
563                                     if let Some(cached_res) = self
564                                         .infcx
565                                         .inner
566                                         .borrow_mut()
567                                         .projection_cache()
568                                         .is_complete(key)
569                                     {
570                                         break 'compute_res Ok(cached_res);
571                                     }
572                                 }
573
574                                 self.add_depth(
575                                     subobligations.iter_mut(),
576                                     obligation.recursion_depth,
577                                 );
578                                 let res = self.evaluate_predicates_recursively(
579                                     previous_stack,
580                                     subobligations,
581                                 );
582                                 if let Ok(res) = res {
583                                     if res == EvaluatedToOk || res == EvaluatedToOkModuloRegions {
584                                         if let Some(key) =
585                                             ProjectionCacheKey::from_poly_projection_predicate(
586                                                 self, data,
587                                             )
588                                         {
589                                             // If the result is something that we can cache, then mark this
590                                             // entry as 'complete'. This will allow us to skip evaluating the
591                                             // suboligations at all the next time we evaluate the projection
592                                             // predicate.
593                                             self.infcx
594                                                 .inner
595                                                 .borrow_mut()
596                                                 .projection_cache()
597                                                 .complete(key, res);
598                                         }
599                                     }
600                                 }
601                                 res
602                             }
603                         }
604                         Ok(Ok(None)) => Ok(EvaluatedToAmbig),
605                         Ok(Err(project::InProgress)) => Ok(EvaluatedToRecur),
606                         Err(_) => Ok(EvaluatedToErr),
607                     }
608                 }
609
610                 ty::PredicateKind::ClosureKind(_, closure_substs, kind) => {
611                     match self.infcx.closure_kind(closure_substs) {
612                         Some(closure_kind) => {
613                             if closure_kind.extends(kind) {
614                                 Ok(EvaluatedToOk)
615                             } else {
616                                 Ok(EvaluatedToErr)
617                             }
618                         }
619                         None => Ok(EvaluatedToAmbig),
620                     }
621                 }
622
623                 ty::PredicateKind::ConstEvaluatable(uv) => {
624                     match const_evaluatable::is_const_evaluatable(
625                         self.infcx,
626                         uv,
627                         obligation.param_env,
628                         obligation.cause.span,
629                     ) {
630                         Ok(()) => Ok(EvaluatedToOk),
631                         Err(NotConstEvaluatable::MentionsInfer) => Ok(EvaluatedToAmbig),
632                         Err(NotConstEvaluatable::MentionsParam) => Ok(EvaluatedToErr),
633                         Err(_) => Ok(EvaluatedToErr),
634                     }
635                 }
636
637                 ty::PredicateKind::ConstEquate(c1, c2) => {
638                     debug!(?c1, ?c2, "evaluate_predicate_recursively: equating consts");
639
640                     if self.tcx().features().generic_const_exprs {
641                         // FIXME: we probably should only try to unify abstract constants
642                         // if the constants depend on generic parameters.
643                         //
644                         // Let's just see where this breaks :shrug:
645                         if let (ty::ConstKind::Unevaluated(a), ty::ConstKind::Unevaluated(b)) =
646                             (c1.val(), c2.val())
647                         {
648                             if self.infcx.try_unify_abstract_consts(a.shrink(), b.shrink()) {
649                                 return Ok(EvaluatedToOk);
650                             }
651                         }
652                     }
653
654                     let evaluate = |c: ty::Const<'tcx>| {
655                         if let ty::ConstKind::Unevaluated(unevaluated) = c.val() {
656                             self.infcx
657                                 .const_eval_resolve(
658                                     obligation.param_env,
659                                     unevaluated,
660                                     Some(obligation.cause.span),
661                                 )
662                                 .map(|val| ty::Const::from_value(self.tcx(), val, c.ty()))
663                         } else {
664                             Ok(c)
665                         }
666                     };
667
668                     match (evaluate(c1), evaluate(c2)) {
669                         (Ok(c1), Ok(c2)) => {
670                             match self
671                                 .infcx()
672                                 .at(&obligation.cause, obligation.param_env)
673                                 .eq(c1, c2)
674                             {
675                                 Ok(_) => Ok(EvaluatedToOk),
676                                 Err(_) => Ok(EvaluatedToErr),
677                             }
678                         }
679                         (Err(ErrorHandled::Reported(ErrorReported)), _)
680                         | (_, Err(ErrorHandled::Reported(ErrorReported))) => Ok(EvaluatedToErr),
681                         (Err(ErrorHandled::Linted), _) | (_, Err(ErrorHandled::Linted)) => {
682                             span_bug!(
683                                 obligation.cause.span(self.tcx()),
684                                 "ConstEquate: const_eval_resolve returned an unexpected error"
685                             )
686                         }
687                         (Err(ErrorHandled::TooGeneric), _) | (_, Err(ErrorHandled::TooGeneric)) => {
688                             if c1.has_infer_types_or_consts() || c2.has_infer_types_or_consts() {
689                                 Ok(EvaluatedToAmbig)
690                             } else {
691                                 // Two different constants using generic parameters ~> error.
692                                 Ok(EvaluatedToErr)
693                             }
694                         }
695                     }
696                 }
697                 ty::PredicateKind::TypeWellFormedFromEnv(..) => {
698                     bug!("TypeWellFormedFromEnv is only used for chalk")
699                 }
700             }
701         });
702
703         debug!("finished: {:?} from {:?}", result, obligation);
704
705         result
706     }
707
708     #[instrument(skip(self, previous_stack), level = "debug")]
709     fn evaluate_trait_predicate_recursively<'o>(
710         &mut self,
711         previous_stack: TraitObligationStackList<'o, 'tcx>,
712         mut obligation: TraitObligation<'tcx>,
713     ) -> Result<EvaluationResult, OverflowError> {
714         if !self.intercrate
715             && obligation.is_global()
716             && obligation.param_env.caller_bounds().iter().all(|bound| bound.needs_subst())
717         {
718             // If a param env has no global bounds, global obligations do not
719             // depend on its particular value in order to work, so we can clear
720             // out the param env and get better caching.
721             debug!("in global");
722             obligation.param_env = obligation.param_env.without_caller_bounds();
723         }
724
725         let stack = self.push_stack(previous_stack, &obligation);
726         let mut fresh_trait_pred = stack.fresh_trait_pred;
727         let mut param_env = obligation.param_env;
728
729         fresh_trait_pred = fresh_trait_pred.map_bound(|mut pred| {
730             pred.remap_constness(self.tcx(), &mut param_env);
731             pred
732         });
733
734         debug!(?fresh_trait_pred);
735
736         if let Some(result) = self.check_evaluation_cache(param_env, fresh_trait_pred) {
737             debug!(?result, "CACHE HIT");
738             return Ok(result);
739         }
740
741         if let Some(result) = stack.cache().get_provisional(fresh_trait_pred) {
742             debug!(?result, "PROVISIONAL CACHE HIT");
743             stack.update_reached_depth(result.reached_depth);
744             return Ok(result.result);
745         }
746
747         // Check if this is a match for something already on the
748         // stack. If so, we don't want to insert the result into the
749         // main cache (it is cycle dependent) nor the provisional
750         // cache (which is meant for things that have completed but
751         // for a "backedge" -- this result *is* the backedge).
752         if let Some(cycle_result) = self.check_evaluation_cycle(&stack) {
753             return Ok(cycle_result);
754         }
755
756         let (result, dep_node) = self.in_task(|this| this.evaluate_stack(&stack));
757         let result = result?;
758
759         if !result.must_apply_modulo_regions() {
760             stack.cache().on_failure(stack.dfn);
761         }
762
763         let reached_depth = stack.reached_depth.get();
764         if reached_depth >= stack.depth {
765             debug!(?result, "CACHE MISS");
766             self.insert_evaluation_cache(param_env, fresh_trait_pred, dep_node, result);
767
768             stack.cache().on_completion(
769                 stack.dfn,
770                 |fresh_trait_pred, provisional_result, provisional_dep_node| {
771                     // Create a new `DepNode` that has dependencies on:
772                     // * The `DepNode` for the original evaluation that resulted in a provisional cache
773                     // entry being crated
774                     // * The `DepNode` for the *current* evaluation, which resulted in us completing
775                     // provisional caches entries and inserting them into the evaluation cache
776                     //
777                     // This ensures that when a query reads this entry from the evaluation cache,
778                     // it will end up (transitively) dependening on all of the incr-comp dependencies
779                     // created during the evaluation of this trait. For example, evaluating a trait
780                     // will usually require us to invoke `type_of(field_def_id)` to determine the
781                     // constituent types, and we want any queries reading from this evaluation
782                     // cache entry to end up with a transitive `type_of(field_def_id`)` dependency.
783                     //
784                     // By using `in_task`, we're also creating an edge from the *current* query
785                     // to the newly-created `combined_dep_node`. This is probably redundant,
786                     // but it's better to add too many dep graph edges than to add too few
787                     // dep graph edges.
788                     let ((), combined_dep_node) = self.in_task(|this| {
789                         this.tcx().dep_graph.read_index(provisional_dep_node);
790                         this.tcx().dep_graph.read_index(dep_node);
791                     });
792                     self.insert_evaluation_cache(
793                         param_env,
794                         fresh_trait_pred,
795                         combined_dep_node,
796                         provisional_result.max(result),
797                     );
798                 },
799             );
800         } else {
801             debug!(?result, "PROVISIONAL");
802             debug!(
803                 "caching provisionally because {:?} \
804                  is a cycle participant (at depth {}, reached depth {})",
805                 fresh_trait_pred, stack.depth, reached_depth,
806             );
807
808             stack.cache().insert_provisional(
809                 stack.dfn,
810                 reached_depth,
811                 fresh_trait_pred,
812                 result,
813                 dep_node,
814             );
815         }
816
817         Ok(result)
818     }
819
820     /// If there is any previous entry on the stack that precisely
821     /// matches this obligation, then we can assume that the
822     /// obligation is satisfied for now (still all other conditions
823     /// must be met of course). One obvious case this comes up is
824     /// marker traits like `Send`. Think of a linked list:
825     ///
826     ///    struct List<T> { data: T, next: Option<Box<List<T>>> }
827     ///
828     /// `Box<List<T>>` will be `Send` if `T` is `Send` and
829     /// `Option<Box<List<T>>>` is `Send`, and in turn
830     /// `Option<Box<List<T>>>` is `Send` if `Box<List<T>>` is
831     /// `Send`.
832     ///
833     /// Note that we do this comparison using the `fresh_trait_ref`
834     /// fields. Because these have all been freshened using
835     /// `self.freshener`, we can be sure that (a) this will not
836     /// affect the inferencer state and (b) that if we see two
837     /// fresh regions with the same index, they refer to the same
838     /// unbound type variable.
839     fn check_evaluation_cycle(
840         &mut self,
841         stack: &TraitObligationStack<'_, 'tcx>,
842     ) -> Option<EvaluationResult> {
843         if let Some(cycle_depth) = stack
844             .iter()
845             .skip(1) // Skip top-most frame.
846             .find(|prev| {
847                 stack.obligation.param_env == prev.obligation.param_env
848                     && stack.fresh_trait_pred == prev.fresh_trait_pred
849             })
850             .map(|stack| stack.depth)
851         {
852             debug!("evaluate_stack --> recursive at depth {}", cycle_depth);
853
854             // If we have a stack like `A B C D E A`, where the top of
855             // the stack is the final `A`, then this will iterate over
856             // `A, E, D, C, B` -- i.e., all the participants apart
857             // from the cycle head. We mark them as participating in a
858             // cycle. This suppresses caching for those nodes. See
859             // `in_cycle` field for more details.
860             stack.update_reached_depth(cycle_depth);
861
862             // Subtle: when checking for a coinductive cycle, we do
863             // not compare using the "freshened trait refs" (which
864             // have erased regions) but rather the fully explicit
865             // trait refs. This is important because it's only a cycle
866             // if the regions match exactly.
867             let cycle = stack.iter().skip(1).take_while(|s| s.depth >= cycle_depth);
868             let tcx = self.tcx();
869             let cycle = cycle.map(|stack| stack.obligation.predicate.to_predicate(tcx));
870             if self.coinductive_match(cycle) {
871                 debug!("evaluate_stack --> recursive, coinductive");
872                 Some(EvaluatedToOk)
873             } else {
874                 debug!("evaluate_stack --> recursive, inductive");
875                 Some(EvaluatedToRecur)
876             }
877         } else {
878             None
879         }
880     }
881
882     fn evaluate_stack<'o>(
883         &mut self,
884         stack: &TraitObligationStack<'o, 'tcx>,
885     ) -> Result<EvaluationResult, OverflowError> {
886         // In intercrate mode, whenever any of the generics are unbound,
887         // there can always be an impl. Even if there are no impls in
888         // this crate, perhaps the type would be unified with
889         // something from another crate that does provide an impl.
890         //
891         // In intra mode, we must still be conservative. The reason is
892         // that we want to avoid cycles. Imagine an impl like:
893         //
894         //     impl<T:Eq> Eq for Vec<T>
895         //
896         // and a trait reference like `$0 : Eq` where `$0` is an
897         // unbound variable. When we evaluate this trait-reference, we
898         // will unify `$0` with `Vec<$1>` (for some fresh variable
899         // `$1`), on the condition that `$1 : Eq`. We will then wind
900         // up with many candidates (since that are other `Eq` impls
901         // that apply) and try to winnow things down. This results in
902         // a recursive evaluation that `$1 : Eq` -- as you can
903         // imagine, this is just where we started. To avoid that, we
904         // check for unbound variables and return an ambiguous (hence possible)
905         // match if we've seen this trait before.
906         //
907         // This suffices to allow chains like `FnMut` implemented in
908         // terms of `Fn` etc, but we could probably make this more
909         // precise still.
910         let unbound_input_types =
911             stack.fresh_trait_pred.skip_binder().trait_ref.substs.types().any(|ty| ty.is_fresh());
912
913         if stack.obligation.polarity() != ty::ImplPolarity::Negative {
914             // This check was an imperfect workaround for a bug in the old
915             // intercrate mode; it should be removed when that goes away.
916             if unbound_input_types && self.intercrate {
917                 debug!("evaluate_stack --> unbound argument, intercrate -->  ambiguous",);
918                 // Heuristics: show the diagnostics when there are no candidates in crate.
919                 if self.intercrate_ambiguity_causes.is_some() {
920                     debug!("evaluate_stack: intercrate_ambiguity_causes is some");
921                     if let Ok(candidate_set) = self.assemble_candidates(stack) {
922                         if !candidate_set.ambiguous && candidate_set.vec.is_empty() {
923                             let trait_ref = stack.obligation.predicate.skip_binder().trait_ref;
924                             let self_ty = trait_ref.self_ty();
925                             let cause = with_no_trimmed_paths!({
926                                 IntercrateAmbiguityCause::DownstreamCrate {
927                                     trait_desc: trait_ref.print_only_trait_path().to_string(),
928                                     self_desc: if self_ty.has_concrete_skeleton() {
929                                         Some(self_ty.to_string())
930                                     } else {
931                                         None
932                                     },
933                                 }
934                             });
935
936                             debug!(?cause, "evaluate_stack: pushing cause");
937                             self.intercrate_ambiguity_causes.as_mut().unwrap().push(cause);
938                         }
939                     }
940                 }
941                 return Ok(EvaluatedToAmbig);
942             }
943         }
944
945         if unbound_input_types
946             && stack.iter().skip(1).any(|prev| {
947                 stack.obligation.param_env == prev.obligation.param_env
948                     && self.match_fresh_trait_refs(
949                         stack.fresh_trait_pred,
950                         prev.fresh_trait_pred,
951                         prev.obligation.param_env,
952                     )
953             })
954         {
955             debug!("evaluate_stack --> unbound argument, recursive --> giving up",);
956             return Ok(EvaluatedToUnknown);
957         }
958
959         match self.candidate_from_obligation(stack) {
960             Ok(Some(c)) => self.evaluate_candidate(stack, &c),
961             Err(SelectionError::Ambiguous(_)) => Ok(EvaluatedToAmbig),
962             Ok(None) => Ok(EvaluatedToAmbig),
963             Err(Overflow) => Err(OverflowError::Canonical),
964             Err(ErrorReporting) => Err(OverflowError::ErrorReporting),
965             Err(..) => Ok(EvaluatedToErr),
966         }
967     }
968
969     /// For defaulted traits, we use a co-inductive strategy to solve, so
970     /// that recursion is ok. This routine returns `true` if the top of the
971     /// stack (`cycle[0]`):
972     ///
973     /// - is a defaulted trait,
974     /// - it also appears in the backtrace at some position `X`,
975     /// - all the predicates at positions `X..` between `X` and the top are
976     ///   also defaulted traits.
977     pub fn coinductive_match<I>(&mut self, mut cycle: I) -> bool
978     where
979         I: Iterator<Item = ty::Predicate<'tcx>>,
980     {
981         cycle.all(|predicate| self.coinductive_predicate(predicate))
982     }
983
984     fn coinductive_predicate(&self, predicate: ty::Predicate<'tcx>) -> bool {
985         let result = match predicate.kind().skip_binder() {
986             ty::PredicateKind::Trait(ref data) => self.tcx().trait_is_auto(data.def_id()),
987             _ => false,
988         };
989         debug!(?predicate, ?result, "coinductive_predicate");
990         result
991     }
992
993     /// Further evaluates `candidate` to decide whether all type parameters match and whether nested
994     /// obligations are met. Returns whether `candidate` remains viable after this further
995     /// scrutiny.
996     #[instrument(
997         level = "debug",
998         skip(self, stack),
999         fields(depth = stack.obligation.recursion_depth)
1000     )]
1001     fn evaluate_candidate<'o>(
1002         &mut self,
1003         stack: &TraitObligationStack<'o, 'tcx>,
1004         candidate: &SelectionCandidate<'tcx>,
1005     ) -> Result<EvaluationResult, OverflowError> {
1006         let mut result = self.evaluation_probe(|this| {
1007             let candidate = (*candidate).clone();
1008             match this.confirm_candidate(stack.obligation, candidate) {
1009                 Ok(selection) => {
1010                     debug!(?selection);
1011                     this.evaluate_predicates_recursively(
1012                         stack.list(),
1013                         selection.nested_obligations().into_iter(),
1014                     )
1015                 }
1016                 Err(..) => Ok(EvaluatedToErr),
1017             }
1018         })?;
1019
1020         // If we erased any lifetimes, then we want to use
1021         // `EvaluatedToOkModuloRegions` instead of `EvaluatedToOk`
1022         // as your final result. The result will be cached using
1023         // the freshened trait predicate as a key, so we need
1024         // our result to be correct by *any* choice of original lifetimes,
1025         // not just the lifetime choice for this particular (non-erased)
1026         // predicate.
1027         // See issue #80691
1028         if stack.fresh_trait_pred.has_erased_regions() {
1029             result = result.max(EvaluatedToOkModuloRegions);
1030         }
1031
1032         debug!(?result);
1033         Ok(result)
1034     }
1035
1036     fn check_evaluation_cache(
1037         &self,
1038         param_env: ty::ParamEnv<'tcx>,
1039         trait_pred: ty::PolyTraitPredicate<'tcx>,
1040     ) -> Option<EvaluationResult> {
1041         // Neither the global nor local cache is aware of intercrate
1042         // mode, so don't do any caching. In particular, we might
1043         // re-use the same `InferCtxt` with both an intercrate
1044         // and non-intercrate `SelectionContext`
1045         if self.intercrate {
1046             return None;
1047         }
1048
1049         let tcx = self.tcx();
1050         if self.can_use_global_caches(param_env) {
1051             if let Some(res) = tcx.evaluation_cache.get(&param_env.and(trait_pred), tcx) {
1052                 return Some(res);
1053             }
1054         }
1055         self.infcx.evaluation_cache.get(&param_env.and(trait_pred), tcx)
1056     }
1057
1058     fn insert_evaluation_cache(
1059         &mut self,
1060         param_env: ty::ParamEnv<'tcx>,
1061         trait_pred: ty::PolyTraitPredicate<'tcx>,
1062         dep_node: DepNodeIndex,
1063         result: EvaluationResult,
1064     ) {
1065         // Avoid caching results that depend on more than just the trait-ref
1066         // - the stack can create recursion.
1067         if result.is_stack_dependent() {
1068             return;
1069         }
1070
1071         // Neither the global nor local cache is aware of intercrate
1072         // mode, so don't do any caching. In particular, we might
1073         // re-use the same `InferCtxt` with both an intercrate
1074         // and non-intercrate `SelectionContext`
1075         if self.intercrate {
1076             return;
1077         }
1078
1079         if self.can_use_global_caches(param_env) {
1080             if !trait_pred.needs_infer() {
1081                 debug!(?trait_pred, ?result, "insert_evaluation_cache global");
1082                 // This may overwrite the cache with the same value
1083                 // FIXME: Due to #50507 this overwrites the different values
1084                 // This should be changed to use HashMapExt::insert_same
1085                 // when that is fixed
1086                 self.tcx().evaluation_cache.insert(param_env.and(trait_pred), dep_node, result);
1087                 return;
1088             }
1089         }
1090
1091         debug!(?trait_pred, ?result, "insert_evaluation_cache");
1092         self.infcx.evaluation_cache.insert(param_env.and(trait_pred), dep_node, result);
1093     }
1094
1095     /// For various reasons, it's possible for a subobligation
1096     /// to have a *lower* recursion_depth than the obligation used to create it.
1097     /// Projection sub-obligations may be returned from the projection cache,
1098     /// which results in obligations with an 'old' `recursion_depth`.
1099     /// Additionally, methods like `InferCtxt.subtype_predicate` produce
1100     /// subobligations without taking in a 'parent' depth, causing the
1101     /// generated subobligations to have a `recursion_depth` of `0`.
1102     ///
1103     /// To ensure that obligation_depth never decreases, we force all subobligations
1104     /// to have at least the depth of the original obligation.
1105     fn add_depth<T: 'cx, I: Iterator<Item = &'cx mut Obligation<'tcx, T>>>(
1106         &self,
1107         it: I,
1108         min_depth: usize,
1109     ) {
1110         it.for_each(|o| o.recursion_depth = cmp::max(min_depth, o.recursion_depth) + 1);
1111     }
1112
1113     fn check_recursion_depth<T: Display + TypeFoldable<'tcx>>(
1114         &self,
1115         depth: usize,
1116         error_obligation: &Obligation<'tcx, T>,
1117     ) -> Result<(), OverflowError> {
1118         if !self.infcx.tcx.recursion_limit().value_within_limit(depth) {
1119             match self.query_mode {
1120                 TraitQueryMode::Standard => {
1121                     if self.infcx.is_tainted_by_errors() {
1122                         return Err(OverflowError::ErrorReporting);
1123                     }
1124                     self.infcx.report_overflow_error(error_obligation, true);
1125                 }
1126                 TraitQueryMode::Canonical => {
1127                     return Err(OverflowError::Canonical);
1128                 }
1129             }
1130         }
1131         Ok(())
1132     }
1133
1134     /// Checks that the recursion limit has not been exceeded.
1135     ///
1136     /// The weird return type of this function allows it to be used with the `try` (`?`)
1137     /// operator within certain functions.
1138     #[inline(always)]
1139     fn check_recursion_limit<T: Display + TypeFoldable<'tcx>, V: Display + TypeFoldable<'tcx>>(
1140         &self,
1141         obligation: &Obligation<'tcx, T>,
1142         error_obligation: &Obligation<'tcx, V>,
1143     ) -> Result<(), OverflowError> {
1144         self.check_recursion_depth(obligation.recursion_depth, error_obligation)
1145     }
1146
1147     fn in_task<OP, R>(&mut self, op: OP) -> (R, DepNodeIndex)
1148     where
1149         OP: FnOnce(&mut Self) -> R,
1150     {
1151         let (result, dep_node) =
1152             self.tcx().dep_graph.with_anon_task(self.tcx(), DepKind::TraitSelect, || op(self));
1153         self.tcx().dep_graph.read_index(dep_node);
1154         (result, dep_node)
1155     }
1156
1157     /// filter_impls filters constant trait obligations and candidates that have a positive impl
1158     /// for a negative goal and a negative impl for a positive goal
1159     #[instrument(level = "debug", skip(self))]
1160     fn filter_impls(
1161         &mut self,
1162         candidates: Vec<SelectionCandidate<'tcx>>,
1163         obligation: &TraitObligation<'tcx>,
1164     ) -> Vec<SelectionCandidate<'tcx>> {
1165         let tcx = self.tcx();
1166         let mut result = Vec::with_capacity(candidates.len());
1167
1168         for candidate in candidates {
1169             // Respect const trait obligations
1170             if obligation.is_const() {
1171                 match candidate {
1172                     // const impl
1173                     ImplCandidate(def_id)
1174                         if tcx.impl_constness(def_id) == hir::Constness::Const => {}
1175                     // const param
1176                     ParamCandidate(trait_pred) if trait_pred.is_const_if_const() => {}
1177                     // auto trait impl
1178                     AutoImplCandidate(..) => {}
1179                     // generator, this will raise error in other places
1180                     // or ignore error with const_async_blocks feature
1181                     GeneratorCandidate => {}
1182                     // FnDef where the function is const
1183                     FnPointerCandidate { is_const: true } => {}
1184                     ConstDropCandidate(_) => {}
1185                     _ => {
1186                         // reject all other types of candidates
1187                         continue;
1188                     }
1189                 }
1190             }
1191
1192             if let ImplCandidate(def_id) = candidate {
1193                 if ty::ImplPolarity::Reservation == tcx.impl_polarity(def_id)
1194                     || obligation.polarity() == tcx.impl_polarity(def_id)
1195                     || self.allow_negative_impls
1196                 {
1197                     result.push(candidate);
1198                 }
1199             } else {
1200                 result.push(candidate);
1201             }
1202         }
1203
1204         result
1205     }
1206
1207     /// filter_reservation_impls filter reservation impl for any goal as ambiguous
1208     #[instrument(level = "debug", skip(self))]
1209     fn filter_reservation_impls(
1210         &mut self,
1211         candidate: SelectionCandidate<'tcx>,
1212         obligation: &TraitObligation<'tcx>,
1213     ) -> SelectionResult<'tcx, SelectionCandidate<'tcx>> {
1214         let tcx = self.tcx();
1215         // Treat reservation impls as ambiguity.
1216         if let ImplCandidate(def_id) = candidate {
1217             if let ty::ImplPolarity::Reservation = tcx.impl_polarity(def_id) {
1218                 if let Some(intercrate_ambiguity_clauses) = &mut self.intercrate_ambiguity_causes {
1219                     let attrs = tcx.get_attrs(def_id);
1220                     let attr = tcx.sess.find_by_name(&attrs, sym::rustc_reservation_impl);
1221                     let value = attr.and_then(|a| a.value_str());
1222                     if let Some(value) = value {
1223                         debug!(
1224                             "filter_reservation_impls: \
1225                                  reservation impl ambiguity on {:?}",
1226                             def_id
1227                         );
1228                         intercrate_ambiguity_clauses.push(
1229                             IntercrateAmbiguityCause::ReservationImpl {
1230                                 message: value.to_string(),
1231                             },
1232                         );
1233                     }
1234                 }
1235                 return Ok(None);
1236             }
1237         }
1238         Ok(Some(candidate))
1239     }
1240
1241     fn is_knowable<'o>(&mut self, stack: &TraitObligationStack<'o, 'tcx>) -> Option<Conflict> {
1242         debug!("is_knowable(intercrate={:?})", self.intercrate);
1243
1244         if !self.intercrate || stack.obligation.polarity() == ty::ImplPolarity::Negative {
1245             return None;
1246         }
1247
1248         let obligation = &stack.obligation;
1249         let predicate = self.infcx().resolve_vars_if_possible(obligation.predicate);
1250
1251         // Okay to skip binder because of the nature of the
1252         // trait-ref-is-knowable check, which does not care about
1253         // bound regions.
1254         let trait_ref = predicate.skip_binder().trait_ref;
1255
1256         coherence::trait_ref_is_knowable(self.tcx(), trait_ref)
1257     }
1258
1259     /// Returns `true` if the global caches can be used.
1260     fn can_use_global_caches(&self, param_env: ty::ParamEnv<'tcx>) -> bool {
1261         // If there are any inference variables in the `ParamEnv`, then we
1262         // always use a cache local to this particular scope. Otherwise, we
1263         // switch to a global cache.
1264         if param_env.needs_infer() {
1265             return false;
1266         }
1267
1268         // Avoid using the master cache during coherence and just rely
1269         // on the local cache. This effectively disables caching
1270         // during coherence. It is really just a simplification to
1271         // avoid us having to fear that coherence results "pollute"
1272         // the master cache. Since coherence executes pretty quickly,
1273         // it's not worth going to more trouble to increase the
1274         // hit-rate, I don't think.
1275         if self.intercrate {
1276             return false;
1277         }
1278
1279         // Otherwise, we can use the global cache.
1280         true
1281     }
1282
1283     fn check_candidate_cache(
1284         &mut self,
1285         mut param_env: ty::ParamEnv<'tcx>,
1286         cache_fresh_trait_pred: ty::PolyTraitPredicate<'tcx>,
1287     ) -> Option<SelectionResult<'tcx, SelectionCandidate<'tcx>>> {
1288         // Neither the global nor local cache is aware of intercrate
1289         // mode, so don't do any caching. In particular, we might
1290         // re-use the same `InferCtxt` with both an intercrate
1291         // and non-intercrate `SelectionContext`
1292         if self.intercrate {
1293             return None;
1294         }
1295         let tcx = self.tcx();
1296         let mut pred = cache_fresh_trait_pred.skip_binder();
1297         pred.remap_constness(tcx, &mut param_env);
1298
1299         if self.can_use_global_caches(param_env) {
1300             if let Some(res) = tcx.selection_cache.get(&param_env.and(pred), tcx) {
1301                 return Some(res);
1302             }
1303         }
1304         self.infcx.selection_cache.get(&param_env.and(pred), tcx)
1305     }
1306
1307     /// Determines whether can we safely cache the result
1308     /// of selecting an obligation. This is almost always `true`,
1309     /// except when dealing with certain `ParamCandidate`s.
1310     ///
1311     /// Ordinarily, a `ParamCandidate` will contain no inference variables,
1312     /// since it was usually produced directly from a `DefId`. However,
1313     /// certain cases (currently only librustdoc's blanket impl finder),
1314     /// a `ParamEnv` may be explicitly constructed with inference types.
1315     /// When this is the case, we do *not* want to cache the resulting selection
1316     /// candidate. This is due to the fact that it might not always be possible
1317     /// to equate the obligation's trait ref and the candidate's trait ref,
1318     /// if more constraints end up getting added to an inference variable.
1319     ///
1320     /// Because of this, we always want to re-run the full selection
1321     /// process for our obligation the next time we see it, since
1322     /// we might end up picking a different `SelectionCandidate` (or none at all).
1323     fn can_cache_candidate(
1324         &self,
1325         result: &SelectionResult<'tcx, SelectionCandidate<'tcx>>,
1326     ) -> bool {
1327         // Neither the global nor local cache is aware of intercrate
1328         // mode, so don't do any caching. In particular, we might
1329         // re-use the same `InferCtxt` with both an intercrate
1330         // and non-intercrate `SelectionContext`
1331         if self.intercrate {
1332             return false;
1333         }
1334         match result {
1335             Ok(Some(SelectionCandidate::ParamCandidate(trait_ref))) => !trait_ref.needs_infer(),
1336             _ => true,
1337         }
1338     }
1339
1340     fn insert_candidate_cache(
1341         &mut self,
1342         mut param_env: ty::ParamEnv<'tcx>,
1343         cache_fresh_trait_pred: ty::PolyTraitPredicate<'tcx>,
1344         dep_node: DepNodeIndex,
1345         candidate: SelectionResult<'tcx, SelectionCandidate<'tcx>>,
1346     ) {
1347         let tcx = self.tcx();
1348         let mut pred = cache_fresh_trait_pred.skip_binder();
1349
1350         pred.remap_constness(tcx, &mut param_env);
1351
1352         if !self.can_cache_candidate(&candidate) {
1353             debug!(?pred, ?candidate, "insert_candidate_cache - candidate is not cacheable");
1354             return;
1355         }
1356
1357         if self.can_use_global_caches(param_env) {
1358             if let Err(Overflow) = candidate {
1359                 // Don't cache overflow globally; we only produce this in certain modes.
1360             } else if !pred.needs_infer() {
1361                 if !candidate.needs_infer() {
1362                     debug!(?pred, ?candidate, "insert_candidate_cache global");
1363                     // This may overwrite the cache with the same value.
1364                     tcx.selection_cache.insert(param_env.and(pred), dep_node, candidate);
1365                     return;
1366                 }
1367             }
1368         }
1369
1370         debug!(?pred, ?candidate, "insert_candidate_cache local");
1371         self.infcx.selection_cache.insert(param_env.and(pred), dep_node, candidate);
1372     }
1373
1374     /// Matches a predicate against the bounds of its self type.
1375     ///
1376     /// Given an obligation like `<T as Foo>::Bar: Baz` where the self type is
1377     /// a projection, look at the bounds of `T::Bar`, see if we can find a
1378     /// `Baz` bound. We return indexes into the list returned by
1379     /// `tcx.item_bounds` for any applicable bounds.
1380     fn match_projection_obligation_against_definition_bounds(
1381         &mut self,
1382         obligation: &TraitObligation<'tcx>,
1383     ) -> smallvec::SmallVec<[usize; 2]> {
1384         let poly_trait_predicate = self.infcx().resolve_vars_if_possible(obligation.predicate);
1385         let placeholder_trait_predicate =
1386             self.infcx().replace_bound_vars_with_placeholders(poly_trait_predicate);
1387         debug!(
1388             ?placeholder_trait_predicate,
1389             "match_projection_obligation_against_definition_bounds"
1390         );
1391
1392         let tcx = self.infcx.tcx;
1393         let (def_id, substs) = match *placeholder_trait_predicate.trait_ref.self_ty().kind() {
1394             ty::Projection(ref data) => (data.item_def_id, data.substs),
1395             ty::Opaque(def_id, substs) => (def_id, substs),
1396             _ => {
1397                 span_bug!(
1398                     obligation.cause.span,
1399                     "match_projection_obligation_against_definition_bounds() called \
1400                      but self-ty is not a projection: {:?}",
1401                     placeholder_trait_predicate.trait_ref.self_ty()
1402                 );
1403             }
1404         };
1405         let bounds = tcx.item_bounds(def_id).subst(tcx, substs);
1406
1407         // The bounds returned by `item_bounds` may contain duplicates after
1408         // normalization, so try to deduplicate when possible to avoid
1409         // unnecessary ambiguity.
1410         let mut distinct_normalized_bounds = FxHashSet::default();
1411
1412         let matching_bounds = bounds
1413             .iter()
1414             .enumerate()
1415             .filter_map(|(idx, bound)| {
1416                 let bound_predicate = bound.kind();
1417                 if let ty::PredicateKind::Trait(pred) = bound_predicate.skip_binder() {
1418                     let bound = bound_predicate.rebind(pred.trait_ref);
1419                     if self.infcx.probe(|_| {
1420                         match self.match_normalize_trait_ref(
1421                             obligation,
1422                             bound,
1423                             placeholder_trait_predicate.trait_ref,
1424                         ) {
1425                             Ok(None) => true,
1426                             Ok(Some(normalized_trait))
1427                                 if distinct_normalized_bounds.insert(normalized_trait) =>
1428                             {
1429                                 true
1430                             }
1431                             _ => false,
1432                         }
1433                     }) {
1434                         return Some(idx);
1435                     }
1436                 }
1437                 None
1438             })
1439             .collect();
1440
1441         debug!(?matching_bounds, "match_projection_obligation_against_definition_bounds");
1442         matching_bounds
1443     }
1444
1445     /// Equates the trait in `obligation` with trait bound. If the two traits
1446     /// can be equated and the normalized trait bound doesn't contain inference
1447     /// variables or placeholders, the normalized bound is returned.
1448     fn match_normalize_trait_ref(
1449         &mut self,
1450         obligation: &TraitObligation<'tcx>,
1451         trait_bound: ty::PolyTraitRef<'tcx>,
1452         placeholder_trait_ref: ty::TraitRef<'tcx>,
1453     ) -> Result<Option<ty::PolyTraitRef<'tcx>>, ()> {
1454         debug_assert!(!placeholder_trait_ref.has_escaping_bound_vars());
1455         if placeholder_trait_ref.def_id != trait_bound.def_id() {
1456             // Avoid unnecessary normalization
1457             return Err(());
1458         }
1459
1460         let Normalized { value: trait_bound, obligations: _ } = ensure_sufficient_stack(|| {
1461             project::normalize_with_depth(
1462                 self,
1463                 obligation.param_env,
1464                 obligation.cause.clone(),
1465                 obligation.recursion_depth + 1,
1466                 trait_bound,
1467             )
1468         });
1469         self.infcx
1470             .at(&obligation.cause, obligation.param_env)
1471             .sup(ty::Binder::dummy(placeholder_trait_ref), trait_bound)
1472             .map(|InferOk { obligations: _, value: () }| {
1473                 // This method is called within a probe, so we can't have
1474                 // inference variables and placeholders escape.
1475                 if !trait_bound.needs_infer() && !trait_bound.has_placeholders() {
1476                     Some(trait_bound)
1477                 } else {
1478                     None
1479                 }
1480             })
1481             .map_err(|_| ())
1482     }
1483
1484     fn evaluate_where_clause<'o>(
1485         &mut self,
1486         stack: &TraitObligationStack<'o, 'tcx>,
1487         where_clause_trait_ref: ty::PolyTraitRef<'tcx>,
1488     ) -> Result<EvaluationResult, OverflowError> {
1489         self.evaluation_probe(|this| {
1490             match this.match_where_clause_trait_ref(stack.obligation, where_clause_trait_ref) {
1491                 Ok(obligations) => this.evaluate_predicates_recursively(stack.list(), obligations),
1492                 Err(()) => Ok(EvaluatedToErr),
1493             }
1494         })
1495     }
1496
1497     pub(super) fn match_projection_projections(
1498         &mut self,
1499         obligation: &ProjectionTyObligation<'tcx>,
1500         env_predicate: PolyProjectionPredicate<'tcx>,
1501         potentially_unnormalized_candidates: bool,
1502     ) -> bool {
1503         let mut nested_obligations = Vec::new();
1504         let (infer_predicate, _) = self.infcx.replace_bound_vars_with_fresh_vars(
1505             obligation.cause.span,
1506             LateBoundRegionConversionTime::HigherRankedType,
1507             env_predicate,
1508         );
1509         let infer_projection = if potentially_unnormalized_candidates {
1510             ensure_sufficient_stack(|| {
1511                 project::normalize_with_depth_to(
1512                     self,
1513                     obligation.param_env,
1514                     obligation.cause.clone(),
1515                     obligation.recursion_depth + 1,
1516                     infer_predicate.projection_ty,
1517                     &mut nested_obligations,
1518                 )
1519             })
1520         } else {
1521             infer_predicate.projection_ty
1522         };
1523
1524         self.infcx
1525             .at(&obligation.cause, obligation.param_env)
1526             .sup(obligation.predicate, infer_projection)
1527             .map_or(false, |InferOk { obligations, value: () }| {
1528                 self.evaluate_predicates_recursively(
1529                     TraitObligationStackList::empty(&ProvisionalEvaluationCache::default()),
1530                     nested_obligations.into_iter().chain(obligations),
1531                 )
1532                 .map_or(false, |res| res.may_apply())
1533             })
1534     }
1535
1536     ///////////////////////////////////////////////////////////////////////////
1537     // WINNOW
1538     //
1539     // Winnowing is the process of attempting to resolve ambiguity by
1540     // probing further. During the winnowing process, we unify all
1541     // type variables and then we also attempt to evaluate recursive
1542     // bounds to see if they are satisfied.
1543
1544     /// Returns `true` if `victim` should be dropped in favor of
1545     /// `other`. Generally speaking we will drop duplicate
1546     /// candidates and prefer where-clause candidates.
1547     ///
1548     /// See the comment for "SelectionCandidate" for more details.
1549     fn candidate_should_be_dropped_in_favor_of(
1550         &mut self,
1551         sized_predicate: bool,
1552         victim: &EvaluatedCandidate<'tcx>,
1553         other: &EvaluatedCandidate<'tcx>,
1554         needs_infer: bool,
1555     ) -> bool {
1556         if victim.candidate == other.candidate {
1557             return true;
1558         }
1559
1560         // Check if a bound would previously have been removed when normalizing
1561         // the param_env so that it can be given the lowest priority. See
1562         // #50825 for the motivation for this.
1563         let is_global = |cand: &ty::PolyTraitPredicate<'tcx>| {
1564             cand.is_global() && !cand.has_late_bound_regions()
1565         };
1566
1567         // (*) Prefer `BuiltinCandidate { has_nested: false }`, `PointeeCandidate`,
1568         // `DiscriminantKindCandidate`, and `ConstDropCandidate` to anything else.
1569         //
1570         // This is a fix for #53123 and prevents winnowing from accidentally extending the
1571         // lifetime of a variable.
1572         match (&other.candidate, &victim.candidate) {
1573             (_, AutoImplCandidate(..)) | (AutoImplCandidate(..), _) => {
1574                 bug!(
1575                     "default implementations shouldn't be recorded \
1576                     when there are other valid candidates"
1577                 );
1578             }
1579
1580             // (*)
1581             (
1582                 BuiltinCandidate { has_nested: false }
1583                 | DiscriminantKindCandidate
1584                 | PointeeCandidate
1585                 | ConstDropCandidate(_),
1586                 _,
1587             ) => true,
1588             (
1589                 _,
1590                 BuiltinCandidate { has_nested: false }
1591                 | DiscriminantKindCandidate
1592                 | PointeeCandidate
1593                 | ConstDropCandidate(_),
1594             ) => false,
1595
1596             (ParamCandidate(other), ParamCandidate(victim)) => {
1597                 let same_except_bound_vars = other.skip_binder().trait_ref
1598                     == victim.skip_binder().trait_ref
1599                     && other.skip_binder().constness == victim.skip_binder().constness
1600                     && other.skip_binder().polarity == victim.skip_binder().polarity
1601                     && !other.skip_binder().trait_ref.has_escaping_bound_vars();
1602                 if same_except_bound_vars {
1603                     // See issue #84398. In short, we can generate multiple ParamCandidates which are
1604                     // the same except for unused bound vars. Just pick the one with the fewest bound vars
1605                     // or the current one if tied (they should both evaluate to the same answer). This is
1606                     // probably best characterized as a "hack", since we might prefer to just do our
1607                     // best to *not* create essentially duplicate candidates in the first place.
1608                     other.bound_vars().len() <= victim.bound_vars().len()
1609                 } else if other.skip_binder().trait_ref == victim.skip_binder().trait_ref
1610                     && victim.skip_binder().constness == ty::BoundConstness::NotConst
1611                     && other.skip_binder().polarity == victim.skip_binder().polarity
1612                 {
1613                     // Drop otherwise equivalent non-const candidates in favor of const candidates.
1614                     true
1615                 } else {
1616                     false
1617                 }
1618             }
1619
1620             // Drop otherwise equivalent non-const fn pointer candidates
1621             (FnPointerCandidate { .. }, FnPointerCandidate { is_const: false }) => true,
1622
1623             // If obligation is a sized predicate or the where-clause bound is
1624             // global, prefer the projection or object candidate. See issue
1625             // #50825 and #89352.
1626             (ObjectCandidate(_) | ProjectionCandidate(_), ParamCandidate(ref cand)) => {
1627                 sized_predicate || is_global(cand)
1628             }
1629             (ParamCandidate(ref cand), ObjectCandidate(_) | ProjectionCandidate(_)) => {
1630                 !(sized_predicate || is_global(cand))
1631             }
1632
1633             // Global bounds from the where clause should be ignored
1634             // here (see issue #50825). Otherwise, we have a where
1635             // clause so don't go around looking for impls.
1636             // Arbitrarily give param candidates priority
1637             // over projection and object candidates.
1638             (
1639                 ParamCandidate(ref cand),
1640                 ImplCandidate(..)
1641                 | ClosureCandidate
1642                 | GeneratorCandidate
1643                 | FnPointerCandidate { .. }
1644                 | BuiltinObjectCandidate
1645                 | BuiltinUnsizeCandidate
1646                 | TraitUpcastingUnsizeCandidate(_)
1647                 | BuiltinCandidate { .. }
1648                 | TraitAliasCandidate(..),
1649             ) => !is_global(cand),
1650             (
1651                 ImplCandidate(_)
1652                 | ClosureCandidate
1653                 | GeneratorCandidate
1654                 | FnPointerCandidate { .. }
1655                 | BuiltinObjectCandidate
1656                 | BuiltinUnsizeCandidate
1657                 | TraitUpcastingUnsizeCandidate(_)
1658                 | BuiltinCandidate { has_nested: true }
1659                 | TraitAliasCandidate(..),
1660                 ParamCandidate(ref cand),
1661             ) => {
1662                 // Prefer these to a global where-clause bound
1663                 // (see issue #50825).
1664                 is_global(cand) && other.evaluation.must_apply_modulo_regions()
1665             }
1666
1667             (ProjectionCandidate(i), ProjectionCandidate(j))
1668             | (ObjectCandidate(i), ObjectCandidate(j)) => {
1669                 // Arbitrarily pick the lower numbered candidate for backwards
1670                 // compatibility reasons. Don't let this affect inference.
1671                 i < j && !needs_infer
1672             }
1673             (ObjectCandidate(_), ProjectionCandidate(_))
1674             | (ProjectionCandidate(_), ObjectCandidate(_)) => {
1675                 bug!("Have both object and projection candidate")
1676             }
1677
1678             // Arbitrarily give projection and object candidates priority.
1679             (
1680                 ObjectCandidate(_) | ProjectionCandidate(_),
1681                 ImplCandidate(..)
1682                 | ClosureCandidate
1683                 | GeneratorCandidate
1684                 | FnPointerCandidate { .. }
1685                 | BuiltinObjectCandidate
1686                 | BuiltinUnsizeCandidate
1687                 | TraitUpcastingUnsizeCandidate(_)
1688                 | BuiltinCandidate { .. }
1689                 | TraitAliasCandidate(..),
1690             ) => true,
1691
1692             (
1693                 ImplCandidate(..)
1694                 | ClosureCandidate
1695                 | GeneratorCandidate
1696                 | FnPointerCandidate { .. }
1697                 | BuiltinObjectCandidate
1698                 | BuiltinUnsizeCandidate
1699                 | TraitUpcastingUnsizeCandidate(_)
1700                 | BuiltinCandidate { .. }
1701                 | TraitAliasCandidate(..),
1702                 ObjectCandidate(_) | ProjectionCandidate(_),
1703             ) => false,
1704
1705             (&ImplCandidate(other_def), &ImplCandidate(victim_def)) => {
1706                 // See if we can toss out `victim` based on specialization.
1707                 // This requires us to know *for sure* that the `other` impl applies
1708                 // i.e., `EvaluatedToOk`.
1709                 //
1710                 // FIXME(@lcnr): Using `modulo_regions` here seems kind of scary
1711                 // to me but is required for `std` to compile, so I didn't change it
1712                 // for now.
1713                 let tcx = self.tcx();
1714                 if other.evaluation.must_apply_modulo_regions() {
1715                     if tcx.specializes((other_def, victim_def)) {
1716                         return true;
1717                     }
1718                 }
1719
1720                 if other.evaluation.must_apply_considering_regions() {
1721                     match tcx.impls_are_allowed_to_overlap(other_def, victim_def) {
1722                         Some(ty::ImplOverlapKind::Permitted { marker: true }) => {
1723                             // Subtle: If the predicate we are evaluating has inference
1724                             // variables, do *not* allow discarding candidates due to
1725                             // marker trait impls.
1726                             //
1727                             // Without this restriction, we could end up accidentally
1728                             // constrainting inference variables based on an arbitrarily
1729                             // chosen trait impl.
1730                             //
1731                             // Imagine we have the following code:
1732                             //
1733                             // ```rust
1734                             // #[marker] trait MyTrait {}
1735                             // impl MyTrait for u8 {}
1736                             // impl MyTrait for bool {}
1737                             // ```
1738                             //
1739                             // And we are evaluating the predicate `<_#0t as MyTrait>`.
1740                             //
1741                             // During selection, we will end up with one candidate for each
1742                             // impl of `MyTrait`. If we were to discard one impl in favor
1743                             // of the other, we would be left with one candidate, causing
1744                             // us to "successfully" select the predicate, unifying
1745                             // _#0t with (for example) `u8`.
1746                             //
1747                             // However, we have no reason to believe that this unification
1748                             // is correct - we've essentially just picked an arbitrary
1749                             // *possibility* for _#0t, and required that this be the *only*
1750                             // possibility.
1751                             //
1752                             // Eventually, we will either:
1753                             // 1) Unify all inference variables in the predicate through
1754                             // some other means (e.g. type-checking of a function). We will
1755                             // then be in a position to drop marker trait candidates
1756                             // without constraining inference variables (since there are
1757                             // none left to constrin)
1758                             // 2) Be left with some unconstrained inference variables. We
1759                             // will then correctly report an inference error, since the
1760                             // existence of multiple marker trait impls tells us nothing
1761                             // about which one should actually apply.
1762                             !needs_infer
1763                         }
1764                         Some(_) => true,
1765                         None => false,
1766                     }
1767                 } else {
1768                     false
1769                 }
1770             }
1771
1772             // Everything else is ambiguous
1773             (
1774                 ImplCandidate(_)
1775                 | ClosureCandidate
1776                 | GeneratorCandidate
1777                 | FnPointerCandidate { .. }
1778                 | BuiltinObjectCandidate
1779                 | BuiltinUnsizeCandidate
1780                 | TraitUpcastingUnsizeCandidate(_)
1781                 | BuiltinCandidate { has_nested: true }
1782                 | TraitAliasCandidate(..),
1783                 ImplCandidate(_)
1784                 | ClosureCandidate
1785                 | GeneratorCandidate
1786                 | FnPointerCandidate { .. }
1787                 | BuiltinObjectCandidate
1788                 | BuiltinUnsizeCandidate
1789                 | TraitUpcastingUnsizeCandidate(_)
1790                 | BuiltinCandidate { has_nested: true }
1791                 | TraitAliasCandidate(..),
1792             ) => false,
1793         }
1794     }
1795
1796     fn sized_conditions(
1797         &mut self,
1798         obligation: &TraitObligation<'tcx>,
1799     ) -> BuiltinImplConditions<'tcx> {
1800         use self::BuiltinImplConditions::{Ambiguous, None, Where};
1801
1802         // NOTE: binder moved to (*)
1803         let self_ty = self.infcx.shallow_resolve(obligation.predicate.skip_binder().self_ty());
1804
1805         match self_ty.kind() {
1806             ty::Infer(ty::IntVar(_) | ty::FloatVar(_))
1807             | ty::Uint(_)
1808             | ty::Int(_)
1809             | ty::Bool
1810             | ty::Float(_)
1811             | ty::FnDef(..)
1812             | ty::FnPtr(_)
1813             | ty::RawPtr(..)
1814             | ty::Char
1815             | ty::Ref(..)
1816             | ty::Generator(..)
1817             | ty::GeneratorWitness(..)
1818             | ty::Array(..)
1819             | ty::Closure(..)
1820             | ty::Never
1821             | ty::Error(_) => {
1822                 // safe for everything
1823                 Where(ty::Binder::dummy(Vec::new()))
1824             }
1825
1826             ty::Str | ty::Slice(_) | ty::Dynamic(..) | ty::Foreign(..) => None,
1827
1828             ty::Tuple(tys) => Where(
1829                 obligation
1830                     .predicate
1831                     .rebind(tys.last().into_iter().map(|k| k.expect_ty()).collect()),
1832             ),
1833
1834             ty::Adt(def, substs) => {
1835                 let sized_crit = def.sized_constraint(self.tcx());
1836                 // (*) binder moved here
1837                 Where(
1838                     obligation.predicate.rebind({
1839                         sized_crit.iter().map(|ty| ty.subst(self.tcx(), substs)).collect()
1840                     }),
1841                 )
1842             }
1843
1844             ty::Projection(_) | ty::Param(_) | ty::Opaque(..) => None,
1845             ty::Infer(ty::TyVar(_)) => Ambiguous,
1846
1847             ty::Placeholder(..)
1848             | ty::Bound(..)
1849             | ty::Infer(ty::FreshTy(_) | ty::FreshIntTy(_) | ty::FreshFloatTy(_)) => {
1850                 bug!("asked to assemble builtin bounds of unexpected type: {:?}", self_ty);
1851             }
1852         }
1853     }
1854
1855     fn copy_clone_conditions(
1856         &mut self,
1857         obligation: &TraitObligation<'tcx>,
1858     ) -> BuiltinImplConditions<'tcx> {
1859         // NOTE: binder moved to (*)
1860         let self_ty = self.infcx.shallow_resolve(obligation.predicate.skip_binder().self_ty());
1861
1862         use self::BuiltinImplConditions::{Ambiguous, None, Where};
1863
1864         match *self_ty.kind() {
1865             ty::Infer(ty::IntVar(_))
1866             | ty::Infer(ty::FloatVar(_))
1867             | ty::FnDef(..)
1868             | ty::FnPtr(_)
1869             | ty::Error(_) => Where(ty::Binder::dummy(Vec::new())),
1870
1871             ty::Uint(_)
1872             | ty::Int(_)
1873             | ty::Bool
1874             | ty::Float(_)
1875             | ty::Char
1876             | ty::RawPtr(..)
1877             | ty::Never
1878             | ty::Ref(_, _, hir::Mutability::Not)
1879             | ty::Array(..) => {
1880                 // Implementations provided in libcore
1881                 None
1882             }
1883
1884             ty::Dynamic(..)
1885             | ty::Str
1886             | ty::Slice(..)
1887             | ty::Generator(..)
1888             | ty::GeneratorWitness(..)
1889             | ty::Foreign(..)
1890             | ty::Ref(_, _, hir::Mutability::Mut) => None,
1891
1892             ty::Tuple(tys) => {
1893                 // (*) binder moved here
1894                 Where(obligation.predicate.rebind(tys.iter().map(|k| k.expect_ty()).collect()))
1895             }
1896
1897             ty::Closure(_, substs) => {
1898                 // (*) binder moved here
1899                 let ty = self.infcx.shallow_resolve(substs.as_closure().tupled_upvars_ty());
1900                 if let ty::Infer(ty::TyVar(_)) = ty.kind() {
1901                     // Not yet resolved.
1902                     Ambiguous
1903                 } else {
1904                     Where(obligation.predicate.rebind(substs.as_closure().upvar_tys().collect()))
1905                 }
1906             }
1907
1908             ty::Adt(..) | ty::Projection(..) | ty::Param(..) | ty::Opaque(..) => {
1909                 // Fallback to whatever user-defined impls exist in this case.
1910                 None
1911             }
1912
1913             ty::Infer(ty::TyVar(_)) => {
1914                 // Unbound type variable. Might or might not have
1915                 // applicable impls and so forth, depending on what
1916                 // those type variables wind up being bound to.
1917                 Ambiguous
1918             }
1919
1920             ty::Placeholder(..)
1921             | ty::Bound(..)
1922             | ty::Infer(ty::FreshTy(_) | ty::FreshIntTy(_) | ty::FreshFloatTy(_)) => {
1923                 bug!("asked to assemble builtin bounds of unexpected type: {:?}", self_ty);
1924             }
1925         }
1926     }
1927
1928     /// For default impls, we need to break apart a type into its
1929     /// "constituent types" -- meaning, the types that it contains.
1930     ///
1931     /// Here are some (simple) examples:
1932     ///
1933     /// ```
1934     /// (i32, u32) -> [i32, u32]
1935     /// Foo where struct Foo { x: i32, y: u32 } -> [i32, u32]
1936     /// Bar<i32> where struct Bar<T> { x: T, y: u32 } -> [i32, u32]
1937     /// Zed<i32> where enum Zed { A(T), B(u32) } -> [i32, u32]
1938     /// ```
1939     fn constituent_types_for_ty(
1940         &self,
1941         t: ty::Binder<'tcx, Ty<'tcx>>,
1942     ) -> ty::Binder<'tcx, Vec<Ty<'tcx>>> {
1943         match *t.skip_binder().kind() {
1944             ty::Uint(_)
1945             | ty::Int(_)
1946             | ty::Bool
1947             | ty::Float(_)
1948             | ty::FnDef(..)
1949             | ty::FnPtr(_)
1950             | ty::Str
1951             | ty::Error(_)
1952             | ty::Infer(ty::IntVar(_) | ty::FloatVar(_))
1953             | ty::Never
1954             | ty::Char => ty::Binder::dummy(Vec::new()),
1955
1956             ty::Placeholder(..)
1957             | ty::Dynamic(..)
1958             | ty::Param(..)
1959             | ty::Foreign(..)
1960             | ty::Projection(..)
1961             | ty::Bound(..)
1962             | ty::Infer(ty::TyVar(_) | ty::FreshTy(_) | ty::FreshIntTy(_) | ty::FreshFloatTy(_)) => {
1963                 bug!("asked to assemble constituent types of unexpected type: {:?}", t);
1964             }
1965
1966             ty::RawPtr(ty::TypeAndMut { ty: element_ty, .. }) | ty::Ref(_, element_ty, _) => {
1967                 t.rebind(vec![element_ty])
1968             }
1969
1970             ty::Array(element_ty, _) | ty::Slice(element_ty) => t.rebind(vec![element_ty]),
1971
1972             ty::Tuple(ref tys) => {
1973                 // (T1, ..., Tn) -- meets any bound that all of T1...Tn meet
1974                 t.rebind(tys.iter().map(|k| k.expect_ty()).collect())
1975             }
1976
1977             ty::Closure(_, ref substs) => {
1978                 let ty = self.infcx.shallow_resolve(substs.as_closure().tupled_upvars_ty());
1979                 t.rebind(vec![ty])
1980             }
1981
1982             ty::Generator(_, ref substs, _) => {
1983                 let ty = self.infcx.shallow_resolve(substs.as_generator().tupled_upvars_ty());
1984                 let witness = substs.as_generator().witness();
1985                 t.rebind([ty].into_iter().chain(iter::once(witness)).collect())
1986             }
1987
1988             ty::GeneratorWitness(types) => {
1989                 debug_assert!(!types.has_escaping_bound_vars());
1990                 types.map_bound(|types| types.to_vec())
1991             }
1992
1993             // For `PhantomData<T>`, we pass `T`.
1994             ty::Adt(def, substs) if def.is_phantom_data() => t.rebind(substs.types().collect()),
1995
1996             ty::Adt(def, substs) => {
1997                 t.rebind(def.all_fields().map(|f| f.ty(self.tcx(), substs)).collect())
1998             }
1999
2000             ty::Opaque(def_id, substs) => {
2001                 // We can resolve the `impl Trait` to its concrete type,
2002                 // which enforces a DAG between the functions requiring
2003                 // the auto trait bounds in question.
2004                 t.rebind(vec![self.tcx().type_of(def_id).subst(self.tcx(), substs)])
2005             }
2006         }
2007     }
2008
2009     fn collect_predicates_for_types(
2010         &mut self,
2011         param_env: ty::ParamEnv<'tcx>,
2012         cause: ObligationCause<'tcx>,
2013         recursion_depth: usize,
2014         trait_def_id: DefId,
2015         types: ty::Binder<'tcx, Vec<Ty<'tcx>>>,
2016     ) -> Vec<PredicateObligation<'tcx>> {
2017         // Because the types were potentially derived from
2018         // higher-ranked obligations they may reference late-bound
2019         // regions. For example, `for<'a> Foo<&'a i32> : Copy` would
2020         // yield a type like `for<'a> &'a i32`. In general, we
2021         // maintain the invariant that we never manipulate bound
2022         // regions, so we have to process these bound regions somehow.
2023         //
2024         // The strategy is to:
2025         //
2026         // 1. Instantiate those regions to placeholder regions (e.g.,
2027         //    `for<'a> &'a i32` becomes `&0 i32`.
2028         // 2. Produce something like `&'0 i32 : Copy`
2029         // 3. Re-bind the regions back to `for<'a> &'a i32 : Copy`
2030
2031         types
2032             .as_ref()
2033             .skip_binder() // binder moved -\
2034             .iter()
2035             .flat_map(|ty| {
2036                 let ty: ty::Binder<'tcx, Ty<'tcx>> = types.rebind(*ty); // <----/
2037
2038                 self.infcx.commit_unconditionally(|_| {
2039                     let placeholder_ty = self.infcx.replace_bound_vars_with_placeholders(ty);
2040                     let Normalized { value: normalized_ty, mut obligations } =
2041                         ensure_sufficient_stack(|| {
2042                             project::normalize_with_depth(
2043                                 self,
2044                                 param_env,
2045                                 cause.clone(),
2046                                 recursion_depth,
2047                                 placeholder_ty,
2048                             )
2049                         });
2050                     let placeholder_obligation = predicate_for_trait_def(
2051                         self.tcx(),
2052                         param_env,
2053                         cause.clone(),
2054                         trait_def_id,
2055                         recursion_depth,
2056                         normalized_ty,
2057                         &[],
2058                     );
2059                     obligations.push(placeholder_obligation);
2060                     obligations
2061                 })
2062             })
2063             .collect()
2064     }
2065
2066     ///////////////////////////////////////////////////////////////////////////
2067     // Matching
2068     //
2069     // Matching is a common path used for both evaluation and
2070     // confirmation.  It basically unifies types that appear in impls
2071     // and traits. This does affect the surrounding environment;
2072     // therefore, when used during evaluation, match routines must be
2073     // run inside of a `probe()` so that their side-effects are
2074     // contained.
2075
2076     fn rematch_impl(
2077         &mut self,
2078         impl_def_id: DefId,
2079         obligation: &TraitObligation<'tcx>,
2080     ) -> Normalized<'tcx, SubstsRef<'tcx>> {
2081         match self.match_impl(impl_def_id, obligation) {
2082             Ok(substs) => substs,
2083             Err(()) => {
2084                 bug!(
2085                     "Impl {:?} was matchable against {:?} but now is not",
2086                     impl_def_id,
2087                     obligation
2088                 );
2089             }
2090         }
2091     }
2092
2093     #[tracing::instrument(level = "debug", skip(self))]
2094     fn match_impl(
2095         &mut self,
2096         impl_def_id: DefId,
2097         obligation: &TraitObligation<'tcx>,
2098     ) -> Result<Normalized<'tcx, SubstsRef<'tcx>>, ()> {
2099         let impl_trait_ref = self.tcx().impl_trait_ref(impl_def_id).unwrap();
2100
2101         // Before we create the substitutions and everything, first
2102         // consider a "quick reject". This avoids creating more types
2103         // and so forth that we need to.
2104         if self.fast_reject_trait_refs(obligation, &impl_trait_ref) {
2105             return Err(());
2106         }
2107
2108         let placeholder_obligation =
2109             self.infcx().replace_bound_vars_with_placeholders(obligation.predicate);
2110         let placeholder_obligation_trait_ref = placeholder_obligation.trait_ref;
2111
2112         let impl_substs = self.infcx.fresh_substs_for_item(obligation.cause.span, impl_def_id);
2113
2114         let impl_trait_ref = impl_trait_ref.subst(self.tcx(), impl_substs);
2115
2116         debug!(?impl_trait_ref);
2117
2118         let Normalized { value: impl_trait_ref, obligations: mut nested_obligations } =
2119             ensure_sufficient_stack(|| {
2120                 project::normalize_with_depth(
2121                     self,
2122                     obligation.param_env,
2123                     obligation.cause.clone(),
2124                     obligation.recursion_depth + 1,
2125                     impl_trait_ref,
2126                 )
2127             });
2128
2129         debug!(?impl_trait_ref, ?placeholder_obligation_trait_ref);
2130
2131         let cause = ObligationCause::new(
2132             obligation.cause.span,
2133             obligation.cause.body_id,
2134             ObligationCauseCode::MatchImpl(obligation.cause.clone(), impl_def_id),
2135         );
2136
2137         let InferOk { obligations, .. } = self
2138             .infcx
2139             .at(&cause, obligation.param_env)
2140             .eq(placeholder_obligation_trait_ref, impl_trait_ref)
2141             .map_err(|e| debug!("match_impl: failed eq_trait_refs due to `{}`", e))?;
2142         nested_obligations.extend(obligations);
2143
2144         if !self.intercrate
2145             && self.tcx().impl_polarity(impl_def_id) == ty::ImplPolarity::Reservation
2146         {
2147             debug!("match_impl: reservation impls only apply in intercrate mode");
2148             return Err(());
2149         }
2150
2151         debug!(?impl_substs, ?nested_obligations, "match_impl: success");
2152         Ok(Normalized { value: impl_substs, obligations: nested_obligations })
2153     }
2154
2155     fn fast_reject_trait_refs(
2156         &mut self,
2157         obligation: &TraitObligation<'_>,
2158         impl_trait_ref: &ty::TraitRef<'_>,
2159     ) -> bool {
2160         // We can avoid creating type variables and doing the full
2161         // substitution if we find that any of the input types, when
2162         // simplified, do not match.
2163
2164         iter::zip(obligation.predicate.skip_binder().trait_ref.substs, impl_trait_ref.substs).any(
2165             |(obligation_arg, impl_arg)| {
2166                 match (obligation_arg.unpack(), impl_arg.unpack()) {
2167                     (GenericArgKind::Type(obligation_ty), GenericArgKind::Type(impl_ty)) => {
2168                         // Note, we simplify parameters for the obligation but not the
2169                         // impl so that we do not reject a blanket impl but do reject
2170                         // more concrete impls if we're searching for `T: Trait`.
2171                         let simplified_obligation_ty = fast_reject::simplify_type(
2172                             self.tcx(),
2173                             obligation_ty,
2174                             SimplifyParams::Yes,
2175                         );
2176                         let simplified_impl_ty =
2177                             fast_reject::simplify_type(self.tcx(), impl_ty, SimplifyParams::No);
2178
2179                         simplified_obligation_ty.is_some()
2180                             && simplified_impl_ty.is_some()
2181                             && simplified_obligation_ty != simplified_impl_ty
2182                     }
2183                     (GenericArgKind::Lifetime(_), GenericArgKind::Lifetime(_)) => {
2184                         // Lifetimes can never cause a rejection.
2185                         false
2186                     }
2187                     (GenericArgKind::Const(_), GenericArgKind::Const(_)) => {
2188                         // Conservatively ignore consts (i.e. assume they might
2189                         // unify later) until we have `fast_reject` support for
2190                         // them (if we'll ever need it, even).
2191                         false
2192                     }
2193                     _ => unreachable!(),
2194                 }
2195             },
2196         )
2197     }
2198
2199     /// Normalize `where_clause_trait_ref` and try to match it against
2200     /// `obligation`. If successful, return any predicates that
2201     /// result from the normalization.
2202     fn match_where_clause_trait_ref(
2203         &mut self,
2204         obligation: &TraitObligation<'tcx>,
2205         where_clause_trait_ref: ty::PolyTraitRef<'tcx>,
2206     ) -> Result<Vec<PredicateObligation<'tcx>>, ()> {
2207         self.match_poly_trait_ref(obligation, where_clause_trait_ref)
2208     }
2209
2210     /// Returns `Ok` if `poly_trait_ref` being true implies that the
2211     /// obligation is satisfied.
2212     #[instrument(skip(self), level = "debug")]
2213     fn match_poly_trait_ref(
2214         &mut self,
2215         obligation: &TraitObligation<'tcx>,
2216         poly_trait_ref: ty::PolyTraitRef<'tcx>,
2217     ) -> Result<Vec<PredicateObligation<'tcx>>, ()> {
2218         self.infcx
2219             .at(&obligation.cause, obligation.param_env)
2220             .sup(obligation.predicate.to_poly_trait_ref(), poly_trait_ref)
2221             .map(|InferOk { obligations, .. }| obligations)
2222             .map_err(|_| ())
2223     }
2224
2225     ///////////////////////////////////////////////////////////////////////////
2226     // Miscellany
2227
2228     fn match_fresh_trait_refs(
2229         &self,
2230         previous: ty::PolyTraitPredicate<'tcx>,
2231         current: ty::PolyTraitPredicate<'tcx>,
2232         param_env: ty::ParamEnv<'tcx>,
2233     ) -> bool {
2234         let mut matcher = ty::_match::Match::new(self.tcx(), param_env);
2235         matcher.relate(previous, current).is_ok()
2236     }
2237
2238     fn push_stack<'o>(
2239         &mut self,
2240         previous_stack: TraitObligationStackList<'o, 'tcx>,
2241         obligation: &'o TraitObligation<'tcx>,
2242     ) -> TraitObligationStack<'o, 'tcx> {
2243         let fresh_trait_pred = obligation.predicate.fold_with(&mut self.freshener);
2244
2245         let dfn = previous_stack.cache.next_dfn();
2246         let depth = previous_stack.depth() + 1;
2247         TraitObligationStack {
2248             obligation,
2249             fresh_trait_pred,
2250             reached_depth: Cell::new(depth),
2251             previous: previous_stack,
2252             dfn,
2253             depth,
2254         }
2255     }
2256
2257     #[instrument(skip(self), level = "debug")]
2258     fn closure_trait_ref_unnormalized(
2259         &mut self,
2260         obligation: &TraitObligation<'tcx>,
2261         substs: SubstsRef<'tcx>,
2262     ) -> ty::PolyTraitRef<'tcx> {
2263         let closure_sig = substs.as_closure().sig();
2264
2265         debug!(?closure_sig);
2266
2267         // (1) Feels icky to skip the binder here, but OTOH we know
2268         // that the self-type is an unboxed closure type and hence is
2269         // in fact unparameterized (or at least does not reference any
2270         // regions bound in the obligation). Still probably some
2271         // refactoring could make this nicer.
2272         closure_trait_ref_and_return_type(
2273             self.tcx(),
2274             obligation.predicate.def_id(),
2275             obligation.predicate.skip_binder().self_ty(), // (1)
2276             closure_sig,
2277             util::TupleArgumentsFlag::No,
2278         )
2279         .map_bound(|(trait_ref, _)| trait_ref)
2280     }
2281
2282     fn generator_trait_ref_unnormalized(
2283         &mut self,
2284         obligation: &TraitObligation<'tcx>,
2285         substs: SubstsRef<'tcx>,
2286     ) -> ty::PolyTraitRef<'tcx> {
2287         let gen_sig = substs.as_generator().poly_sig();
2288
2289         // (1) Feels icky to skip the binder here, but OTOH we know
2290         // that the self-type is an generator type and hence is
2291         // in fact unparameterized (or at least does not reference any
2292         // regions bound in the obligation). Still probably some
2293         // refactoring could make this nicer.
2294
2295         super::util::generator_trait_ref_and_outputs(
2296             self.tcx(),
2297             obligation.predicate.def_id(),
2298             obligation.predicate.skip_binder().self_ty(), // (1)
2299             gen_sig,
2300         )
2301         .map_bound(|(trait_ref, ..)| trait_ref)
2302     }
2303
2304     /// Returns the obligations that are implied by instantiating an
2305     /// impl or trait. The obligations are substituted and fully
2306     /// normalized. This is used when confirming an impl or default
2307     /// impl.
2308     #[tracing::instrument(level = "debug", skip(self, cause, param_env))]
2309     fn impl_or_trait_obligations(
2310         &mut self,
2311         cause: ObligationCause<'tcx>,
2312         recursion_depth: usize,
2313         param_env: ty::ParamEnv<'tcx>,
2314         def_id: DefId,           // of impl or trait
2315         substs: SubstsRef<'tcx>, // for impl or trait
2316     ) -> Vec<PredicateObligation<'tcx>> {
2317         let tcx = self.tcx();
2318
2319         // To allow for one-pass evaluation of the nested obligation,
2320         // each predicate must be preceded by the obligations required
2321         // to normalize it.
2322         // for example, if we have:
2323         //    impl<U: Iterator<Item: Copy>, V: Iterator<Item = U>> Foo for V
2324         // the impl will have the following predicates:
2325         //    <V as Iterator>::Item = U,
2326         //    U: Iterator, U: Sized,
2327         //    V: Iterator, V: Sized,
2328         //    <U as Iterator>::Item: Copy
2329         // When we substitute, say, `V => IntoIter<u32>, U => $0`, the last
2330         // obligation will normalize to `<$0 as Iterator>::Item = $1` and
2331         // `$1: Copy`, so we must ensure the obligations are emitted in
2332         // that order.
2333         let predicates = tcx.predicates_of(def_id);
2334         debug!(?predicates);
2335         assert_eq!(predicates.parent, None);
2336         let mut obligations = Vec::with_capacity(predicates.predicates.len());
2337         for (predicate, _) in predicates.predicates {
2338             debug!(?predicate);
2339             let predicate = normalize_with_depth_to(
2340                 self,
2341                 param_env,
2342                 cause.clone(),
2343                 recursion_depth,
2344                 predicate.subst(tcx, substs),
2345                 &mut obligations,
2346             );
2347             obligations.push(Obligation {
2348                 cause: cause.clone(),
2349                 recursion_depth,
2350                 param_env,
2351                 predicate,
2352             });
2353         }
2354
2355         // We are performing deduplication here to avoid exponential blowups
2356         // (#38528) from happening, but the real cause of the duplication is
2357         // unknown. What we know is that the deduplication avoids exponential
2358         // amount of predicates being propagated when processing deeply nested
2359         // types.
2360         //
2361         // This code is hot enough that it's worth avoiding the allocation
2362         // required for the FxHashSet when possible. Special-casing lengths 0,
2363         // 1 and 2 covers roughly 75-80% of the cases.
2364         if obligations.len() <= 1 {
2365             // No possibility of duplicates.
2366         } else if obligations.len() == 2 {
2367             // Only two elements. Drop the second if they are equal.
2368             if obligations[0] == obligations[1] {
2369                 obligations.truncate(1);
2370             }
2371         } else {
2372             // Three or more elements. Use a general deduplication process.
2373             let mut seen = FxHashSet::default();
2374             obligations.retain(|i| seen.insert(i.clone()));
2375         }
2376
2377         obligations
2378     }
2379 }
2380
2381 trait TraitObligationExt<'tcx> {
2382     fn derived_cause(
2383         &self,
2384         variant: fn(DerivedObligationCause<'tcx>) -> ObligationCauseCode<'tcx>,
2385     ) -> ObligationCause<'tcx>;
2386 }
2387
2388 impl<'tcx> TraitObligationExt<'tcx> for TraitObligation<'tcx> {
2389     fn derived_cause(
2390         &self,
2391         variant: fn(DerivedObligationCause<'tcx>) -> ObligationCauseCode<'tcx>,
2392     ) -> ObligationCause<'tcx> {
2393         /*!
2394          * Creates a cause for obligations that are derived from
2395          * `obligation` by a recursive search (e.g., for a builtin
2396          * bound, or eventually a `auto trait Foo`). If `obligation`
2397          * is itself a derived obligation, this is just a clone, but
2398          * otherwise we create a "derived obligation" cause so as to
2399          * keep track of the original root obligation for error
2400          * reporting.
2401          */
2402
2403         let obligation = self;
2404
2405         // NOTE(flaper87): As of now, it keeps track of the whole error
2406         // chain. Ideally, we should have a way to configure this either
2407         // by using -Z verbose or just a CLI argument.
2408         let derived_cause = DerivedObligationCause {
2409             parent_trait_pred: obligation.predicate,
2410             parent_code: obligation.cause.clone_code(),
2411         };
2412         let derived_code = variant(derived_cause);
2413         ObligationCause::new(obligation.cause.span, obligation.cause.body_id, derived_code)
2414     }
2415 }
2416
2417 impl<'o, 'tcx> TraitObligationStack<'o, 'tcx> {
2418     fn list(&'o self) -> TraitObligationStackList<'o, 'tcx> {
2419         TraitObligationStackList::with(self)
2420     }
2421
2422     fn cache(&self) -> &'o ProvisionalEvaluationCache<'tcx> {
2423         self.previous.cache
2424     }
2425
2426     fn iter(&'o self) -> TraitObligationStackList<'o, 'tcx> {
2427         self.list()
2428     }
2429
2430     /// Indicates that attempting to evaluate this stack entry
2431     /// required accessing something from the stack at depth `reached_depth`.
2432     fn update_reached_depth(&self, reached_depth: usize) {
2433         assert!(
2434             self.depth >= reached_depth,
2435             "invoked `update_reached_depth` with something under this stack: \
2436              self.depth={} reached_depth={}",
2437             self.depth,
2438             reached_depth,
2439         );
2440         debug!(reached_depth, "update_reached_depth");
2441         let mut p = self;
2442         while reached_depth < p.depth {
2443             debug!(?p.fresh_trait_pred, "update_reached_depth: marking as cycle participant");
2444             p.reached_depth.set(p.reached_depth.get().min(reached_depth));
2445             p = p.previous.head.unwrap();
2446         }
2447     }
2448 }
2449
2450 /// The "provisional evaluation cache" is used to store intermediate cache results
2451 /// when solving auto traits. Auto traits are unusual in that they can support
2452 /// cycles. So, for example, a "proof tree" like this would be ok:
2453 ///
2454 /// - `Foo<T>: Send` :-
2455 ///   - `Bar<T>: Send` :-
2456 ///     - `Foo<T>: Send` -- cycle, but ok
2457 ///   - `Baz<T>: Send`
2458 ///
2459 /// Here, to prove `Foo<T>: Send`, we have to prove `Bar<T>: Send` and
2460 /// `Baz<T>: Send`. Proving `Bar<T>: Send` in turn required `Foo<T>: Send`.
2461 /// For non-auto traits, this cycle would be an error, but for auto traits (because
2462 /// they are coinductive) it is considered ok.
2463 ///
2464 /// However, there is a complication: at the point where we have
2465 /// "proven" `Bar<T>: Send`, we have in fact only proven it
2466 /// *provisionally*. In particular, we proved that `Bar<T>: Send`
2467 /// *under the assumption* that `Foo<T>: Send`. But what if we later
2468 /// find out this assumption is wrong?  Specifically, we could
2469 /// encounter some kind of error proving `Baz<T>: Send`. In that case,
2470 /// `Bar<T>: Send` didn't turn out to be true.
2471 ///
2472 /// In Issue #60010, we found a bug in rustc where it would cache
2473 /// these intermediate results. This was fixed in #60444 by disabling
2474 /// *all* caching for things involved in a cycle -- in our example,
2475 /// that would mean we don't cache that `Bar<T>: Send`.  But this led
2476 /// to large slowdowns.
2477 ///
2478 /// Specifically, imagine this scenario, where proving `Baz<T>: Send`
2479 /// first requires proving `Bar<T>: Send` (which is true:
2480 ///
2481 /// - `Foo<T>: Send` :-
2482 ///   - `Bar<T>: Send` :-
2483 ///     - `Foo<T>: Send` -- cycle, but ok
2484 ///   - `Baz<T>: Send`
2485 ///     - `Bar<T>: Send` -- would be nice for this to be a cache hit!
2486 ///     - `*const T: Send` -- but what if we later encounter an error?
2487 ///
2488 /// The *provisional evaluation cache* resolves this issue. It stores
2489 /// cache results that we've proven but which were involved in a cycle
2490 /// in some way. We track the minimal stack depth (i.e., the
2491 /// farthest from the top of the stack) that we are dependent on.
2492 /// The idea is that the cache results within are all valid -- so long as
2493 /// none of the nodes in between the current node and the node at that minimum
2494 /// depth result in an error (in which case the cached results are just thrown away).
2495 ///
2496 /// During evaluation, we consult this provisional cache and rely on
2497 /// it. Accessing a cached value is considered equivalent to accessing
2498 /// a result at `reached_depth`, so it marks the *current* solution as
2499 /// provisional as well. If an error is encountered, we toss out any
2500 /// provisional results added from the subtree that encountered the
2501 /// error.  When we pop the node at `reached_depth` from the stack, we
2502 /// can commit all the things that remain in the provisional cache.
2503 struct ProvisionalEvaluationCache<'tcx> {
2504     /// next "depth first number" to issue -- just a counter
2505     dfn: Cell<usize>,
2506
2507     /// Map from cache key to the provisionally evaluated thing.
2508     /// The cache entries contain the result but also the DFN in which they
2509     /// were added. The DFN is used to clear out values on failure.
2510     ///
2511     /// Imagine we have a stack like:
2512     ///
2513     /// - `A B C` and we add a cache for the result of C (DFN 2)
2514     /// - Then we have a stack `A B D` where `D` has DFN 3
2515     /// - We try to solve D by evaluating E: `A B D E` (DFN 4)
2516     /// - `E` generates various cache entries which have cyclic dependices on `B`
2517     ///   - `A B D E F` and so forth
2518     ///   - the DFN of `F` for example would be 5
2519     /// - then we determine that `E` is in error -- we will then clear
2520     ///   all cache values whose DFN is >= 4 -- in this case, that
2521     ///   means the cached value for `F`.
2522     map: RefCell<FxHashMap<ty::PolyTraitPredicate<'tcx>, ProvisionalEvaluation>>,
2523 }
2524
2525 /// A cache value for the provisional cache: contains the depth-first
2526 /// number (DFN) and result.
2527 #[derive(Copy, Clone, Debug)]
2528 struct ProvisionalEvaluation {
2529     from_dfn: usize,
2530     reached_depth: usize,
2531     result: EvaluationResult,
2532     /// The `DepNodeIndex` created for the `evaluate_stack` call for this provisional
2533     /// evaluation. When we create an entry in the evaluation cache using this provisional
2534     /// cache entry (see `on_completion`), we use this `dep_node` to ensure that future reads from
2535     /// the cache will have all of the necessary incr comp dependencies tracked.
2536     dep_node: DepNodeIndex,
2537 }
2538
2539 impl<'tcx> Default for ProvisionalEvaluationCache<'tcx> {
2540     fn default() -> Self {
2541         Self { dfn: Cell::new(0), map: Default::default() }
2542     }
2543 }
2544
2545 impl<'tcx> ProvisionalEvaluationCache<'tcx> {
2546     /// Get the next DFN in sequence (basically a counter).
2547     fn next_dfn(&self) -> usize {
2548         let result = self.dfn.get();
2549         self.dfn.set(result + 1);
2550         result
2551     }
2552
2553     /// Check the provisional cache for any result for
2554     /// `fresh_trait_ref`. If there is a hit, then you must consider
2555     /// it an access to the stack slots at depth
2556     /// `reached_depth` (from the returned value).
2557     fn get_provisional(
2558         &self,
2559         fresh_trait_pred: ty::PolyTraitPredicate<'tcx>,
2560     ) -> Option<ProvisionalEvaluation> {
2561         debug!(
2562             ?fresh_trait_pred,
2563             "get_provisional = {:#?}",
2564             self.map.borrow().get(&fresh_trait_pred),
2565         );
2566         Some(*self.map.borrow().get(&fresh_trait_pred)?)
2567     }
2568
2569     /// Insert a provisional result into the cache. The result came
2570     /// from the node with the given DFN. It accessed a minimum depth
2571     /// of `reached_depth` to compute. It evaluated `fresh_trait_pred`
2572     /// and resulted in `result`.
2573     fn insert_provisional(
2574         &self,
2575         from_dfn: usize,
2576         reached_depth: usize,
2577         fresh_trait_pred: ty::PolyTraitPredicate<'tcx>,
2578         result: EvaluationResult,
2579         dep_node: DepNodeIndex,
2580     ) {
2581         debug!(?from_dfn, ?fresh_trait_pred, ?result, "insert_provisional");
2582
2583         let mut map = self.map.borrow_mut();
2584
2585         // Subtle: when we complete working on the DFN `from_dfn`, anything
2586         // that remains in the provisional cache must be dependent on some older
2587         // stack entry than `from_dfn`. We have to update their depth with our transitive
2588         // depth in that case or else it would be referring to some popped note.
2589         //
2590         // Example:
2591         // A (reached depth 0)
2592         //   ...
2593         //      B // depth 1 -- reached depth = 0
2594         //          C // depth 2 -- reached depth = 1 (should be 0)
2595         //              B
2596         //          A // depth 0
2597         //   D (reached depth 1)
2598         //      C (cache -- reached depth = 2)
2599         for (_k, v) in &mut *map {
2600             if v.from_dfn >= from_dfn {
2601                 v.reached_depth = reached_depth.min(v.reached_depth);
2602             }
2603         }
2604
2605         map.insert(
2606             fresh_trait_pred,
2607             ProvisionalEvaluation { from_dfn, reached_depth, result, dep_node },
2608         );
2609     }
2610
2611     /// Invoked when the node with dfn `dfn` does not get a successful
2612     /// result.  This will clear out any provisional cache entries
2613     /// that were added since `dfn` was created. This is because the
2614     /// provisional entries are things which must assume that the
2615     /// things on the stack at the time of their creation succeeded --
2616     /// since the failing node is presently at the top of the stack,
2617     /// these provisional entries must either depend on it or some
2618     /// ancestor of it.
2619     fn on_failure(&self, dfn: usize) {
2620         debug!(?dfn, "on_failure");
2621         self.map.borrow_mut().retain(|key, eval| {
2622             if !eval.from_dfn >= dfn {
2623                 debug!("on_failure: removing {:?}", key);
2624                 false
2625             } else {
2626                 true
2627             }
2628         });
2629     }
2630
2631     /// Invoked when the node at depth `depth` completed without
2632     /// depending on anything higher in the stack (if that completion
2633     /// was a failure, then `on_failure` should have been invoked
2634     /// already). The callback `op` will be invoked for each
2635     /// provisional entry that we can now confirm.
2636     ///
2637     /// Note that we may still have provisional cache items remaining
2638     /// in the cache when this is done. For example, if there is a
2639     /// cycle:
2640     ///
2641     /// * A depends on...
2642     ///     * B depends on A
2643     ///     * C depends on...
2644     ///         * D depends on C
2645     ///     * ...
2646     ///
2647     /// Then as we complete the C node we will have a provisional cache
2648     /// with results for A, B, C, and D. This method would clear out
2649     /// the C and D results, but leave A and B provisional.
2650     ///
2651     /// This is determined based on the DFN: we remove any provisional
2652     /// results created since `dfn` started (e.g., in our example, dfn
2653     /// would be 2, representing the C node, and hence we would
2654     /// remove the result for D, which has DFN 3, but not the results for
2655     /// A and B, which have DFNs 0 and 1 respectively).
2656     fn on_completion(
2657         &self,
2658         dfn: usize,
2659         mut op: impl FnMut(ty::PolyTraitPredicate<'tcx>, EvaluationResult, DepNodeIndex),
2660     ) {
2661         debug!(?dfn, "on_completion");
2662
2663         for (fresh_trait_pred, eval) in
2664             self.map.borrow_mut().drain_filter(|_k, eval| eval.from_dfn >= dfn)
2665         {
2666             debug!(?fresh_trait_pred, ?eval, "on_completion");
2667
2668             op(fresh_trait_pred, eval.result, eval.dep_node);
2669         }
2670     }
2671 }
2672
2673 #[derive(Copy, Clone)]
2674 struct TraitObligationStackList<'o, 'tcx> {
2675     cache: &'o ProvisionalEvaluationCache<'tcx>,
2676     head: Option<&'o TraitObligationStack<'o, 'tcx>>,
2677 }
2678
2679 impl<'o, 'tcx> TraitObligationStackList<'o, 'tcx> {
2680     fn empty(cache: &'o ProvisionalEvaluationCache<'tcx>) -> TraitObligationStackList<'o, 'tcx> {
2681         TraitObligationStackList { cache, head: None }
2682     }
2683
2684     fn with(r: &'o TraitObligationStack<'o, 'tcx>) -> TraitObligationStackList<'o, 'tcx> {
2685         TraitObligationStackList { cache: r.cache(), head: Some(r) }
2686     }
2687
2688     fn head(&self) -> Option<&'o TraitObligationStack<'o, 'tcx>> {
2689         self.head
2690     }
2691
2692     fn depth(&self) -> usize {
2693         if let Some(head) = self.head { head.depth } else { 0 }
2694     }
2695 }
2696
2697 impl<'o, 'tcx> Iterator for TraitObligationStackList<'o, 'tcx> {
2698     type Item = &'o TraitObligationStack<'o, 'tcx>;
2699
2700     fn next(&mut self) -> Option<&'o TraitObligationStack<'o, 'tcx>> {
2701         let o = self.head?;
2702         *self = o.previous;
2703         Some(o)
2704     }
2705 }
2706
2707 impl<'o, 'tcx> fmt::Debug for TraitObligationStack<'o, 'tcx> {
2708     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
2709         write!(f, "TraitObligationStack({:?})", self.obligation)
2710     }
2711 }