]> git.lizzy.rs Git - rust.git/blob - src/librustc_typeck/check/method/probe.rs
eb8f76687174e90a5b4614bbd119da19e5910e57
[rust.git] / src / librustc_typeck / check / method / probe.rs
1 use super::suggest;
2 use super::MethodError;
3 use super::NoMatchData;
4 use super::{CandidateSource, ImplSource, TraitSource};
5
6 use crate::check::autoderef::{self, Autoderef};
7 use crate::check::FnCtxt;
8 use crate::hir::def::DefKind;
9 use crate::hir::def_id::DefId;
10
11 use rustc_ast::ast;
12 use rustc_ast::util::lev_distance::{find_best_match_for_name, lev_distance};
13 use rustc_data_structures::fx::FxHashSet;
14 use rustc_data_structures::sync::Lrc;
15 use rustc_errors::struct_span_err;
16 use rustc_hir as hir;
17 use rustc_hir::def::Namespace;
18 use rustc_infer::infer::canonical::OriginalQueryValues;
19 use rustc_infer::infer::canonical::{Canonical, QueryResponse};
20 use rustc_infer::infer::type_variable::{TypeVariableOrigin, TypeVariableOriginKind};
21 use rustc_infer::infer::unify_key::{ConstVariableOrigin, ConstVariableOriginKind};
22 use rustc_infer::infer::{self, InferOk, TyCtxtInferExt};
23 use rustc_middle::middle::stability;
24 use rustc_middle::ty::subst::{InternalSubsts, Subst, SubstsRef};
25 use rustc_middle::ty::GenericParamDefKind;
26 use rustc_middle::ty::{
27     self, ParamEnvAnd, ToPolyTraitRef, ToPredicate, Ty, TyCtxt, TypeFoldable, WithConstness,
28 };
29 use rustc_session::config::nightly_options;
30 use rustc_session::lint;
31 use rustc_span::def_id::LocalDefId;
32 use rustc_span::{symbol::Ident, Span, Symbol, DUMMY_SP};
33 use rustc_trait_selection::traits::query::evaluate_obligation::InferCtxtExt;
34 use rustc_trait_selection::traits::query::method_autoderef::MethodAutoderefBadTy;
35 use rustc_trait_selection::traits::query::method_autoderef::{
36     CandidateStep, MethodAutoderefStepsResult,
37 };
38 use rustc_trait_selection::traits::query::CanonicalTyGoal;
39 use rustc_trait_selection::traits::{self, ObligationCause};
40 use std::cmp::max;
41 use std::iter;
42 use std::mem;
43 use std::ops::Deref;
44
45 use smallvec::{smallvec, SmallVec};
46
47 use self::CandidateKind::*;
48 pub use self::PickKind::*;
49
50 /// Boolean flag used to indicate if this search is for a suggestion
51 /// or not. If true, we can allow ambiguity and so forth.
52 #[derive(Clone, Copy)]
53 pub struct IsSuggestion(pub bool);
54
55 struct ProbeContext<'a, 'tcx> {
56     fcx: &'a FnCtxt<'a, 'tcx>,
57     span: Span,
58     mode: Mode,
59     method_name: Option<Ident>,
60     return_type: Option<Ty<'tcx>>,
61
62     /// This is the OriginalQueryValues for the steps queries
63     /// that are answered in steps.
64     orig_steps_var_values: OriginalQueryValues<'tcx>,
65     steps: Lrc<Vec<CandidateStep<'tcx>>>,
66
67     inherent_candidates: Vec<Candidate<'tcx>>,
68     extension_candidates: Vec<Candidate<'tcx>>,
69     impl_dups: FxHashSet<DefId>,
70
71     /// Collects near misses when the candidate functions are missing a `self` keyword and is only
72     /// used for error reporting
73     static_candidates: Vec<CandidateSource>,
74
75     /// When probing for names, include names that are close to the
76     /// requested name (by Levensthein distance)
77     allow_similar_names: bool,
78
79     /// Some(candidate) if there is a private candidate
80     private_candidate: Option<(DefKind, DefId)>,
81
82     /// Collects near misses when trait bounds for type parameters are unsatisfied and is only used
83     /// for error reporting
84     unsatisfied_predicates: Vec<(ty::Predicate<'tcx>, Option<ty::Predicate<'tcx>>)>,
85
86     is_suggestion: IsSuggestion,
87 }
88
89 impl<'a, 'tcx> Deref for ProbeContext<'a, 'tcx> {
90     type Target = FnCtxt<'a, 'tcx>;
91     fn deref(&self) -> &Self::Target {
92         &self.fcx
93     }
94 }
95
96 #[derive(Debug)]
97 struct Candidate<'tcx> {
98     // Candidates are (I'm not quite sure, but they are mostly) basically
99     // some metadata on top of a `ty::AssocItem` (without substs).
100     //
101     // However, method probing wants to be able to evaluate the predicates
102     // for a function with the substs applied - for example, if a function
103     // has `where Self: Sized`, we don't want to consider it unless `Self`
104     // is actually `Sized`, and similarly, return-type suggestions want
105     // to consider the "actual" return type.
106     //
107     // The way this is handled is through `xform_self_ty`. It contains
108     // the receiver type of this candidate, but `xform_self_ty`,
109     // `xform_ret_ty` and `kind` (which contains the predicates) have the
110     // generic parameters of this candidate substituted with the *same set*
111     // of inference variables, which acts as some weird sort of "query".
112     //
113     // When we check out a candidate, we require `xform_self_ty` to be
114     // a subtype of the passed-in self-type, and this equates the type
115     // variables in the rest of the fields.
116     //
117     // For example, if we have this candidate:
118     // ```
119     //    trait Foo {
120     //        fn foo(&self) where Self: Sized;
121     //    }
122     // ```
123     //
124     // Then `xform_self_ty` will be `&'erased ?X` and `kind` will contain
125     // the predicate `?X: Sized`, so if we are evaluating `Foo` for a
126     // the receiver `&T`, we'll do the subtyping which will make `?X`
127     // get the right value, then when we evaluate the predicate we'll check
128     // if `T: Sized`.
129     xform_self_ty: Ty<'tcx>,
130     xform_ret_ty: Option<Ty<'tcx>>,
131     item: ty::AssocItem,
132     kind: CandidateKind<'tcx>,
133     import_ids: SmallVec<[LocalDefId; 1]>,
134 }
135
136 #[derive(Debug)]
137 enum CandidateKind<'tcx> {
138     InherentImplCandidate(
139         SubstsRef<'tcx>,
140         // Normalize obligations
141         Vec<traits::PredicateObligation<'tcx>>,
142     ),
143     ObjectCandidate,
144     TraitCandidate(ty::TraitRef<'tcx>),
145     WhereClauseCandidate(
146         // Trait
147         ty::PolyTraitRef<'tcx>,
148     ),
149 }
150
151 #[derive(Debug, PartialEq, Eq, Copy, Clone)]
152 enum ProbeResult {
153     NoMatch,
154     BadReturnType,
155     Match,
156 }
157
158 #[derive(Debug, PartialEq, Clone)]
159 pub struct Pick<'tcx> {
160     pub item: ty::AssocItem,
161     pub kind: PickKind<'tcx>,
162     pub import_ids: SmallVec<[LocalDefId; 1]>,
163
164     // Indicates that the source expression should be autoderef'd N times
165     //
166     // A = expr | *expr | **expr | ...
167     pub autoderefs: usize,
168
169     // Indicates that an autoref is applied after the optional autoderefs
170     //
171     // B = A | &A | &mut A
172     pub autoref: Option<hir::Mutability>,
173
174     // Indicates that the source expression should be "unsized" to a
175     // target type. This should probably eventually go away in favor
176     // of just coercing method receivers.
177     //
178     // C = B | unsize(B)
179     pub unsize: Option<Ty<'tcx>>,
180 }
181
182 #[derive(Clone, Debug, PartialEq, Eq)]
183 pub enum PickKind<'tcx> {
184     InherentImplPick,
185     ObjectPick,
186     TraitPick,
187     WhereClausePick(
188         // Trait
189         ty::PolyTraitRef<'tcx>,
190     ),
191 }
192
193 pub type PickResult<'tcx> = Result<Pick<'tcx>, MethodError<'tcx>>;
194
195 #[derive(PartialEq, Eq, Copy, Clone, Debug)]
196 pub enum Mode {
197     // An expression of the form `receiver.method_name(...)`.
198     // Autoderefs are performed on `receiver`, lookup is done based on the
199     // `self` argument  of the method, and static methods aren't considered.
200     MethodCall,
201     // An expression of the form `Type::item` or `<T>::item`.
202     // No autoderefs are performed, lookup is done based on the type each
203     // implementation is for, and static methods are included.
204     Path,
205 }
206
207 #[derive(PartialEq, Eq, Copy, Clone, Debug)]
208 pub enum ProbeScope {
209     // Assemble candidates coming only from traits in scope.
210     TraitsInScope,
211
212     // Assemble candidates coming from all traits.
213     AllTraits,
214 }
215
216 impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
217     /// This is used to offer suggestions to users. It returns methods
218     /// that could have been called which have the desired return
219     /// type. Some effort is made to rule out methods that, if called,
220     /// would result in an error (basically, the same criteria we
221     /// would use to decide if a method is a plausible fit for
222     /// ambiguity purposes).
223     pub fn probe_for_return_type(
224         &self,
225         span: Span,
226         mode: Mode,
227         return_type: Ty<'tcx>,
228         self_ty: Ty<'tcx>,
229         scope_expr_id: hir::HirId,
230     ) -> Vec<ty::AssocItem> {
231         debug!(
232             "probe(self_ty={:?}, return_type={}, scope_expr_id={})",
233             self_ty, return_type, scope_expr_id
234         );
235         let method_names = self
236             .probe_op(
237                 span,
238                 mode,
239                 None,
240                 Some(return_type),
241                 IsSuggestion(true),
242                 self_ty,
243                 scope_expr_id,
244                 ProbeScope::AllTraits,
245                 |probe_cx| Ok(probe_cx.candidate_method_names()),
246             )
247             .unwrap_or(vec![]);
248         method_names
249             .iter()
250             .flat_map(|&method_name| {
251                 self.probe_op(
252                     span,
253                     mode,
254                     Some(method_name),
255                     Some(return_type),
256                     IsSuggestion(true),
257                     self_ty,
258                     scope_expr_id,
259                     ProbeScope::AllTraits,
260                     |probe_cx| probe_cx.pick(),
261                 )
262                 .ok()
263                 .map(|pick| pick.item)
264             })
265             .collect()
266     }
267
268     pub fn probe_for_name(
269         &self,
270         span: Span,
271         mode: Mode,
272         item_name: Ident,
273         is_suggestion: IsSuggestion,
274         self_ty: Ty<'tcx>,
275         scope_expr_id: hir::HirId,
276         scope: ProbeScope,
277     ) -> PickResult<'tcx> {
278         debug!(
279             "probe(self_ty={:?}, item_name={}, scope_expr_id={})",
280             self_ty, item_name, scope_expr_id
281         );
282         self.probe_op(
283             span,
284             mode,
285             Some(item_name),
286             None,
287             is_suggestion,
288             self_ty,
289             scope_expr_id,
290             scope,
291             |probe_cx| probe_cx.pick(),
292         )
293     }
294
295     fn probe_op<OP, R>(
296         &'a self,
297         span: Span,
298         mode: Mode,
299         method_name: Option<Ident>,
300         return_type: Option<Ty<'tcx>>,
301         is_suggestion: IsSuggestion,
302         self_ty: Ty<'tcx>,
303         scope_expr_id: hir::HirId,
304         scope: ProbeScope,
305         op: OP,
306     ) -> Result<R, MethodError<'tcx>>
307     where
308         OP: FnOnce(ProbeContext<'a, 'tcx>) -> Result<R, MethodError<'tcx>>,
309     {
310         let mut orig_values = OriginalQueryValues::default();
311         let param_env_and_self_ty = self.infcx.canonicalize_query(
312             &ParamEnvAnd { param_env: self.param_env, value: self_ty },
313             &mut orig_values,
314         );
315
316         let steps = if mode == Mode::MethodCall {
317             self.tcx.method_autoderef_steps(param_env_and_self_ty)
318         } else {
319             self.infcx.probe(|_| {
320                 // Mode::Path - the deref steps is "trivial". This turns
321                 // our CanonicalQuery into a "trivial" QueryResponse. This
322                 // is a bit inefficient, but I don't think that writing
323                 // special handling for this "trivial case" is a good idea.
324
325                 let infcx = &self.infcx;
326                 let (ParamEnvAnd { param_env: _, value: self_ty }, canonical_inference_vars) =
327                     infcx.instantiate_canonical_with_fresh_inference_vars(
328                         span,
329                         &param_env_and_self_ty,
330                     );
331                 debug!(
332                     "probe_op: Mode::Path, param_env_and_self_ty={:?} self_ty={:?}",
333                     param_env_and_self_ty, self_ty
334                 );
335                 MethodAutoderefStepsResult {
336                     steps: Lrc::new(vec![CandidateStep {
337                         self_ty: self.make_query_response_ignoring_pending_obligations(
338                             canonical_inference_vars,
339                             self_ty,
340                         ),
341                         autoderefs: 0,
342                         from_unsafe_deref: false,
343                         unsize: false,
344                     }]),
345                     opt_bad_ty: None,
346                     reached_recursion_limit: false,
347                 }
348             })
349         };
350
351         // If our autoderef loop had reached the recursion limit,
352         // report an overflow error, but continue going on with
353         // the truncated autoderef list.
354         if steps.reached_recursion_limit {
355             self.probe(|_| {
356                 let ty = &steps
357                     .steps
358                     .last()
359                     .unwrap_or_else(|| span_bug!(span, "reached the recursion limit in 0 steps?"))
360                     .self_ty;
361                 let ty = self
362                     .probe_instantiate_query_response(span, &orig_values, ty)
363                     .unwrap_or_else(|_| span_bug!(span, "instantiating {:?} failed?", ty));
364                 autoderef::report_autoderef_recursion_limit_error(self.tcx, span, ty.value);
365             });
366         }
367
368         // If we encountered an `_` type or an error type during autoderef, this is
369         // ambiguous.
370         if let Some(bad_ty) = &steps.opt_bad_ty {
371             if is_suggestion.0 {
372                 // Ambiguity was encountered during a suggestion. Just keep going.
373                 debug!("ProbeContext: encountered ambiguity in suggestion");
374             } else if bad_ty.reached_raw_pointer && !self.tcx.features().arbitrary_self_types {
375                 // this case used to be allowed by the compiler,
376                 // so we do a future-compat lint here for the 2015 edition
377                 // (see https://github.com/rust-lang/rust/issues/46906)
378                 if self.tcx.sess.rust_2018() {
379                     struct_span_err!(
380                         self.tcx.sess,
381                         span,
382                         E0699,
383                         "the type of this value must be known \
384                                to call a method on a raw pointer on it"
385                     )
386                     .emit();
387                 } else {
388                     self.tcx.struct_span_lint_hir(
389                         lint::builtin::TYVAR_BEHIND_RAW_POINTER,
390                         scope_expr_id,
391                         span,
392                         |lint| lint.build("type annotations needed").emit(),
393                     );
394                 }
395             } else {
396                 // Encountered a real ambiguity, so abort the lookup. If `ty` is not
397                 // an `Err`, report the right "type annotations needed" error pointing
398                 // to it.
399                 let ty = &bad_ty.ty;
400                 let ty = self
401                     .probe_instantiate_query_response(span, &orig_values, ty)
402                     .unwrap_or_else(|_| span_bug!(span, "instantiating {:?} failed?", ty));
403                 let ty = self.structurally_resolved_type(span, ty.value);
404                 assert!(matches!(ty.kind, ty::Error(_)));
405                 return Err(MethodError::NoMatch(NoMatchData::new(
406                     Vec::new(),
407                     Vec::new(),
408                     Vec::new(),
409                     None,
410                     mode,
411                 )));
412             }
413         }
414
415         debug!("ProbeContext: steps for self_ty={:?} are {:?}", self_ty, steps);
416
417         // this creates one big transaction so that all type variables etc
418         // that we create during the probe process are removed later
419         self.probe(|_| {
420             let mut probe_cx = ProbeContext::new(
421                 self,
422                 span,
423                 mode,
424                 method_name,
425                 return_type,
426                 orig_values,
427                 steps.steps,
428                 is_suggestion,
429             );
430
431             probe_cx.assemble_inherent_candidates();
432             match scope {
433                 ProbeScope::TraitsInScope => {
434                     probe_cx.assemble_extension_candidates_for_traits_in_scope(scope_expr_id)?
435                 }
436                 ProbeScope::AllTraits => probe_cx.assemble_extension_candidates_for_all_traits()?,
437             };
438             op(probe_cx)
439         })
440     }
441 }
442
443 pub fn provide(providers: &mut ty::query::Providers<'_>) {
444     providers.method_autoderef_steps = method_autoderef_steps;
445 }
446
447 fn method_autoderef_steps<'tcx>(
448     tcx: TyCtxt<'tcx>,
449     goal: CanonicalTyGoal<'tcx>,
450 ) -> MethodAutoderefStepsResult<'tcx> {
451     debug!("method_autoderef_steps({:?})", goal);
452
453     tcx.infer_ctxt().enter_with_canonical(DUMMY_SP, &goal, |ref infcx, goal, inference_vars| {
454         let ParamEnvAnd { param_env, value: self_ty } = goal;
455
456         let mut autoderef = Autoderef::new(infcx, param_env, hir::CRATE_HIR_ID, DUMMY_SP, self_ty)
457             .include_raw_pointers()
458             .silence_errors();
459         let mut reached_raw_pointer = false;
460         let mut steps: Vec<_> = autoderef
461             .by_ref()
462             .map(|(ty, d)| {
463                 let step = CandidateStep {
464                     self_ty: infcx.make_query_response_ignoring_pending_obligations(
465                         inference_vars.clone(),
466                         ty,
467                     ),
468                     autoderefs: d,
469                     from_unsafe_deref: reached_raw_pointer,
470                     unsize: false,
471                 };
472                 if let ty::RawPtr(_) = ty.kind {
473                     // all the subsequent steps will be from_unsafe_deref
474                     reached_raw_pointer = true;
475                 }
476                 step
477             })
478             .collect();
479
480         let final_ty = autoderef.maybe_ambiguous_final_ty();
481         let opt_bad_ty = match final_ty.kind {
482             ty::Infer(ty::TyVar(_)) | ty::Error(_) => Some(MethodAutoderefBadTy {
483                 reached_raw_pointer,
484                 ty: infcx
485                     .make_query_response_ignoring_pending_obligations(inference_vars, final_ty),
486             }),
487             ty::Array(elem_ty, _) => {
488                 let dereferences = steps.len() - 1;
489
490                 steps.push(CandidateStep {
491                     self_ty: infcx.make_query_response_ignoring_pending_obligations(
492                         inference_vars,
493                         infcx.tcx.mk_slice(elem_ty),
494                     ),
495                     autoderefs: dereferences,
496                     // this could be from an unsafe deref if we had
497                     // a *mut/const [T; N]
498                     from_unsafe_deref: reached_raw_pointer,
499                     unsize: true,
500                 });
501
502                 None
503             }
504             _ => None,
505         };
506
507         debug!("method_autoderef_steps: steps={:?} opt_bad_ty={:?}", steps, opt_bad_ty);
508
509         MethodAutoderefStepsResult {
510             steps: Lrc::new(steps),
511             opt_bad_ty: opt_bad_ty.map(Lrc::new),
512             reached_recursion_limit: autoderef.reached_recursion_limit(),
513         }
514     })
515 }
516
517 impl<'a, 'tcx> ProbeContext<'a, 'tcx> {
518     fn new(
519         fcx: &'a FnCtxt<'a, 'tcx>,
520         span: Span,
521         mode: Mode,
522         method_name: Option<Ident>,
523         return_type: Option<Ty<'tcx>>,
524         orig_steps_var_values: OriginalQueryValues<'tcx>,
525         steps: Lrc<Vec<CandidateStep<'tcx>>>,
526         is_suggestion: IsSuggestion,
527     ) -> ProbeContext<'a, 'tcx> {
528         ProbeContext {
529             fcx,
530             span,
531             mode,
532             method_name,
533             return_type,
534             inherent_candidates: Vec::new(),
535             extension_candidates: Vec::new(),
536             impl_dups: FxHashSet::default(),
537             orig_steps_var_values,
538             steps,
539             static_candidates: Vec::new(),
540             allow_similar_names: false,
541             private_candidate: None,
542             unsatisfied_predicates: Vec::new(),
543             is_suggestion,
544         }
545     }
546
547     fn reset(&mut self) {
548         self.inherent_candidates.clear();
549         self.extension_candidates.clear();
550         self.impl_dups.clear();
551         self.static_candidates.clear();
552         self.private_candidate = None;
553     }
554
555     ///////////////////////////////////////////////////////////////////////////
556     // CANDIDATE ASSEMBLY
557
558     fn push_candidate(&mut self, candidate: Candidate<'tcx>, is_inherent: bool) {
559         let is_accessible = if let Some(name) = self.method_name {
560             let item = candidate.item;
561             let def_scope =
562                 self.tcx.adjust_ident_and_get_scope(name, item.container.id(), self.body_id).1;
563             item.vis.is_accessible_from(def_scope, self.tcx)
564         } else {
565             true
566         };
567         if is_accessible {
568             if is_inherent {
569                 self.inherent_candidates.push(candidate);
570             } else {
571                 self.extension_candidates.push(candidate);
572             }
573         } else if self.private_candidate.is_none() {
574             self.private_candidate =
575                 Some((candidate.item.kind.as_def_kind(), candidate.item.def_id));
576         }
577     }
578
579     fn assemble_inherent_candidates(&mut self) {
580         let steps = Lrc::clone(&self.steps);
581         for step in steps.iter() {
582             self.assemble_probe(&step.self_ty);
583         }
584     }
585
586     fn assemble_probe(&mut self, self_ty: &Canonical<'tcx, QueryResponse<'tcx, Ty<'tcx>>>) {
587         debug!("assemble_probe: self_ty={:?}", self_ty);
588         let lang_items = self.tcx.lang_items();
589
590         match self_ty.value.value.kind {
591             ty::Dynamic(ref data, ..) => {
592                 if let Some(p) = data.principal() {
593                     // Subtle: we can't use `instantiate_query_response` here: using it will
594                     // commit to all of the type equalities assumed by inference going through
595                     // autoderef (see the `method-probe-no-guessing` test).
596                     //
597                     // However, in this code, it is OK if we end up with an object type that is
598                     // "more general" than the object type that we are evaluating. For *every*
599                     // object type `MY_OBJECT`, a function call that goes through a trait-ref
600                     // of the form `<MY_OBJECT as SuperTraitOf(MY_OBJECT)>::func` is a valid
601                     // `ObjectCandidate`, and it should be discoverable "exactly" through one
602                     // of the iterations in the autoderef loop, so there is no problem with it
603                     // being discoverable in another one of these iterations.
604                     //
605                     // Using `instantiate_canonical_with_fresh_inference_vars` on our
606                     // `Canonical<QueryResponse<Ty<'tcx>>>` and then *throwing away* the
607                     // `CanonicalVarValues` will exactly give us such a generalization - it
608                     // will still match the original object type, but it won't pollute our
609                     // type variables in any form, so just do that!
610                     let (QueryResponse { value: generalized_self_ty, .. }, _ignored_var_values) =
611                         self.fcx
612                             .instantiate_canonical_with_fresh_inference_vars(self.span, &self_ty);
613
614                     self.assemble_inherent_candidates_from_object(generalized_self_ty);
615                     self.assemble_inherent_impl_candidates_for_type(p.def_id());
616                 }
617             }
618             ty::Adt(def, _) => {
619                 self.assemble_inherent_impl_candidates_for_type(def.did);
620             }
621             ty::Foreign(did) => {
622                 self.assemble_inherent_impl_candidates_for_type(did);
623             }
624             ty::Param(p) => {
625                 self.assemble_inherent_candidates_from_param(p);
626             }
627             ty::Bool => {
628                 let lang_def_id = lang_items.bool_impl();
629                 self.assemble_inherent_impl_for_primitive(lang_def_id);
630             }
631             ty::Char => {
632                 let lang_def_id = lang_items.char_impl();
633                 self.assemble_inherent_impl_for_primitive(lang_def_id);
634             }
635             ty::Str => {
636                 let lang_def_id = lang_items.str_impl();
637                 self.assemble_inherent_impl_for_primitive(lang_def_id);
638
639                 let lang_def_id = lang_items.str_alloc_impl();
640                 self.assemble_inherent_impl_for_primitive(lang_def_id);
641             }
642             ty::Slice(_) => {
643                 for &lang_def_id in &[
644                     lang_items.slice_impl(),
645                     lang_items.slice_u8_impl(),
646                     lang_items.slice_alloc_impl(),
647                     lang_items.slice_u8_alloc_impl(),
648                 ] {
649                     self.assemble_inherent_impl_for_primitive(lang_def_id);
650                 }
651             }
652             ty::RawPtr(ty::TypeAndMut { ty: _, mutbl }) => {
653                 let (lang_def_id1, lang_def_id2) = match mutbl {
654                     hir::Mutability::Not => {
655                         (lang_items.const_ptr_impl(), lang_items.const_slice_ptr_impl())
656                     }
657                     hir::Mutability::Mut => {
658                         (lang_items.mut_ptr_impl(), lang_items.mut_slice_ptr_impl())
659                     }
660                 };
661                 self.assemble_inherent_impl_for_primitive(lang_def_id1);
662                 self.assemble_inherent_impl_for_primitive(lang_def_id2);
663             }
664             ty::Int(i) => {
665                 let lang_def_id = match i {
666                     ast::IntTy::I8 => lang_items.i8_impl(),
667                     ast::IntTy::I16 => lang_items.i16_impl(),
668                     ast::IntTy::I32 => lang_items.i32_impl(),
669                     ast::IntTy::I64 => lang_items.i64_impl(),
670                     ast::IntTy::I128 => lang_items.i128_impl(),
671                     ast::IntTy::Isize => lang_items.isize_impl(),
672                 };
673                 self.assemble_inherent_impl_for_primitive(lang_def_id);
674             }
675             ty::Uint(i) => {
676                 let lang_def_id = match i {
677                     ast::UintTy::U8 => lang_items.u8_impl(),
678                     ast::UintTy::U16 => lang_items.u16_impl(),
679                     ast::UintTy::U32 => lang_items.u32_impl(),
680                     ast::UintTy::U64 => lang_items.u64_impl(),
681                     ast::UintTy::U128 => lang_items.u128_impl(),
682                     ast::UintTy::Usize => lang_items.usize_impl(),
683                 };
684                 self.assemble_inherent_impl_for_primitive(lang_def_id);
685             }
686             ty::Float(f) => {
687                 let (lang_def_id1, lang_def_id2) = match f {
688                     ast::FloatTy::F32 => (lang_items.f32_impl(), lang_items.f32_runtime_impl()),
689                     ast::FloatTy::F64 => (lang_items.f64_impl(), lang_items.f64_runtime_impl()),
690                 };
691                 self.assemble_inherent_impl_for_primitive(lang_def_id1);
692                 self.assemble_inherent_impl_for_primitive(lang_def_id2);
693             }
694             _ => {}
695         }
696     }
697
698     fn assemble_inherent_impl_for_primitive(&mut self, lang_def_id: Option<DefId>) {
699         if let Some(impl_def_id) = lang_def_id {
700             self.assemble_inherent_impl_probe(impl_def_id);
701         }
702     }
703
704     fn assemble_inherent_impl_candidates_for_type(&mut self, def_id: DefId) {
705         let impl_def_ids = self.tcx.at(self.span).inherent_impls(def_id);
706         for &impl_def_id in impl_def_ids.iter() {
707             self.assemble_inherent_impl_probe(impl_def_id);
708         }
709     }
710
711     fn assemble_inherent_impl_probe(&mut self, impl_def_id: DefId) {
712         if !self.impl_dups.insert(impl_def_id) {
713             return; // already visited
714         }
715
716         debug!("assemble_inherent_impl_probe {:?}", impl_def_id);
717
718         for item in self.impl_or_trait_item(impl_def_id) {
719             if !self.has_applicable_self(&item) {
720                 // No receiver declared. Not a candidate.
721                 self.record_static_candidate(ImplSource(impl_def_id));
722                 continue;
723             }
724
725             let (impl_ty, impl_substs) = self.impl_ty_and_substs(impl_def_id);
726             let impl_ty = impl_ty.subst(self.tcx, impl_substs);
727
728             // Determine the receiver type that the method itself expects.
729             let xform_tys = self.xform_self_ty(&item, impl_ty, impl_substs);
730
731             // We can't use normalize_associated_types_in as it will pollute the
732             // fcx's fulfillment context after this probe is over.
733             let cause = traits::ObligationCause::misc(self.span, self.body_id);
734             let selcx = &mut traits::SelectionContext::new(self.fcx);
735             let traits::Normalized { value: (xform_self_ty, xform_ret_ty), obligations } =
736                 traits::normalize(selcx, self.param_env, cause, &xform_tys);
737             debug!(
738                 "assemble_inherent_impl_probe: xform_self_ty = {:?}/{:?}",
739                 xform_self_ty, xform_ret_ty
740             );
741
742             self.push_candidate(
743                 Candidate {
744                     xform_self_ty,
745                     xform_ret_ty,
746                     item,
747                     kind: InherentImplCandidate(impl_substs, obligations),
748                     import_ids: smallvec![],
749                 },
750                 true,
751             );
752         }
753     }
754
755     fn assemble_inherent_candidates_from_object(&mut self, self_ty: Ty<'tcx>) {
756         debug!("assemble_inherent_candidates_from_object(self_ty={:?})", self_ty);
757
758         let principal = match self_ty.kind {
759             ty::Dynamic(ref data, ..) => Some(data),
760             _ => None,
761         }
762         .and_then(|data| data.principal())
763         .unwrap_or_else(|| {
764             span_bug!(
765                 self.span,
766                 "non-object {:?} in assemble_inherent_candidates_from_object",
767                 self_ty
768             )
769         });
770
771         // It is illegal to invoke a method on a trait instance that
772         // refers to the `Self` type. An error will be reported by
773         // `enforce_object_limitations()` if the method refers to the
774         // `Self` type anywhere other than the receiver. Here, we use
775         // a substitution that replaces `Self` with the object type
776         // itself. Hence, a `&self` method will wind up with an
777         // argument type like `&Trait`.
778         let trait_ref = principal.with_self_ty(self.tcx, self_ty);
779         self.elaborate_bounds(iter::once(trait_ref), |this, new_trait_ref, item| {
780             let new_trait_ref = this.erase_late_bound_regions(&new_trait_ref);
781
782             let (xform_self_ty, xform_ret_ty) =
783                 this.xform_self_ty(&item, new_trait_ref.self_ty(), new_trait_ref.substs);
784             this.push_candidate(
785                 Candidate {
786                     xform_self_ty,
787                     xform_ret_ty,
788                     item,
789                     kind: ObjectCandidate,
790                     import_ids: smallvec![],
791                 },
792                 true,
793             );
794         });
795     }
796
797     fn assemble_inherent_candidates_from_param(&mut self, param_ty: ty::ParamTy) {
798         // FIXME: do we want to commit to this behavior for param bounds?
799         debug!("assemble_inherent_candidates_from_param(param_ty={:?})", param_ty);
800
801         let bounds =
802             self.param_env.caller_bounds.iter().filter_map(|predicate| match predicate.kind() {
803                 ty::PredicateKind::Trait(ref trait_predicate, _) => {
804                     match trait_predicate.skip_binder().trait_ref.self_ty().kind {
805                         ty::Param(ref p) if *p == param_ty => {
806                             Some(trait_predicate.to_poly_trait_ref())
807                         }
808                         _ => None,
809                     }
810                 }
811                 ty::PredicateKind::Subtype(..)
812                 | ty::PredicateKind::Projection(..)
813                 | ty::PredicateKind::RegionOutlives(..)
814                 | ty::PredicateKind::WellFormed(..)
815                 | ty::PredicateKind::ObjectSafe(..)
816                 | ty::PredicateKind::ClosureKind(..)
817                 | ty::PredicateKind::TypeOutlives(..)
818                 | ty::PredicateKind::ConstEvaluatable(..)
819                 | ty::PredicateKind::ConstEquate(..) => None,
820             });
821
822         self.elaborate_bounds(bounds, |this, poly_trait_ref, item| {
823             let trait_ref = this.erase_late_bound_regions(&poly_trait_ref);
824
825             let (xform_self_ty, xform_ret_ty) =
826                 this.xform_self_ty(&item, trait_ref.self_ty(), trait_ref.substs);
827
828             // Because this trait derives from a where-clause, it
829             // should not contain any inference variables or other
830             // artifacts. This means it is safe to put into the
831             // `WhereClauseCandidate` and (eventually) into the
832             // `WhereClausePick`.
833             assert!(!trait_ref.substs.needs_infer());
834
835             this.push_candidate(
836                 Candidate {
837                     xform_self_ty,
838                     xform_ret_ty,
839                     item,
840                     kind: WhereClauseCandidate(poly_trait_ref),
841                     import_ids: smallvec![],
842                 },
843                 true,
844             );
845         });
846     }
847
848     // Do a search through a list of bounds, using a callback to actually
849     // create the candidates.
850     fn elaborate_bounds<F>(
851         &mut self,
852         bounds: impl Iterator<Item = ty::PolyTraitRef<'tcx>>,
853         mut mk_cand: F,
854     ) where
855         F: for<'b> FnMut(&mut ProbeContext<'b, 'tcx>, ty::PolyTraitRef<'tcx>, ty::AssocItem),
856     {
857         let tcx = self.tcx;
858         for bound_trait_ref in traits::transitive_bounds(tcx, bounds) {
859             debug!("elaborate_bounds(bound_trait_ref={:?})", bound_trait_ref);
860             for item in self.impl_or_trait_item(bound_trait_ref.def_id()) {
861                 if !self.has_applicable_self(&item) {
862                     self.record_static_candidate(TraitSource(bound_trait_ref.def_id()));
863                 } else {
864                     mk_cand(self, bound_trait_ref, item);
865                 }
866             }
867         }
868     }
869
870     fn assemble_extension_candidates_for_traits_in_scope(
871         &mut self,
872         expr_hir_id: hir::HirId,
873     ) -> Result<(), MethodError<'tcx>> {
874         let mut duplicates = FxHashSet::default();
875         let opt_applicable_traits = self.tcx.in_scope_traits(expr_hir_id);
876         if let Some(applicable_traits) = opt_applicable_traits {
877             for trait_candidate in applicable_traits.iter() {
878                 let trait_did = trait_candidate.def_id;
879                 if duplicates.insert(trait_did) {
880                     let result = self.assemble_extension_candidates_for_trait(
881                         &trait_candidate.import_ids,
882                         trait_did,
883                     );
884                     result?;
885                 }
886             }
887         }
888         Ok(())
889     }
890
891     fn assemble_extension_candidates_for_all_traits(&mut self) -> Result<(), MethodError<'tcx>> {
892         let mut duplicates = FxHashSet::default();
893         for trait_info in suggest::all_traits(self.tcx) {
894             if duplicates.insert(trait_info.def_id) {
895                 self.assemble_extension_candidates_for_trait(&smallvec![], trait_info.def_id)?;
896             }
897         }
898         Ok(())
899     }
900
901     pub fn matches_return_type(
902         &self,
903         method: &ty::AssocItem,
904         self_ty: Option<Ty<'tcx>>,
905         expected: Ty<'tcx>,
906     ) -> bool {
907         match method.kind {
908             ty::AssocKind::Fn => {
909                 let fty = self.tcx.fn_sig(method.def_id);
910                 self.probe(|_| {
911                     let substs = self.fresh_substs_for_item(self.span, method.def_id);
912                     let fty = fty.subst(self.tcx, substs);
913                     let (fty, _) =
914                         self.replace_bound_vars_with_fresh_vars(self.span, infer::FnCall, &fty);
915
916                     if let Some(self_ty) = self_ty {
917                         if self
918                             .at(&ObligationCause::dummy(), self.param_env)
919                             .sup(fty.inputs()[0], self_ty)
920                             .is_err()
921                         {
922                             return false;
923                         }
924                     }
925                     self.can_sub(self.param_env, fty.output(), expected).is_ok()
926                 })
927             }
928             _ => false,
929         }
930     }
931
932     fn assemble_extension_candidates_for_trait(
933         &mut self,
934         import_ids: &SmallVec<[LocalDefId; 1]>,
935         trait_def_id: DefId,
936     ) -> Result<(), MethodError<'tcx>> {
937         debug!("assemble_extension_candidates_for_trait(trait_def_id={:?})", trait_def_id);
938         let trait_substs = self.fresh_item_substs(trait_def_id);
939         let trait_ref = ty::TraitRef::new(trait_def_id, trait_substs);
940
941         if self.tcx.is_trait_alias(trait_def_id) {
942             // For trait aliases, assume all super-traits are relevant.
943             let bounds = iter::once(trait_ref.to_poly_trait_ref());
944             self.elaborate_bounds(bounds, |this, new_trait_ref, item| {
945                 let new_trait_ref = this.erase_late_bound_regions(&new_trait_ref);
946
947                 let (xform_self_ty, xform_ret_ty) =
948                     this.xform_self_ty(&item, new_trait_ref.self_ty(), new_trait_ref.substs);
949                 this.push_candidate(
950                     Candidate {
951                         xform_self_ty,
952                         xform_ret_ty,
953                         item,
954                         import_ids: import_ids.clone(),
955                         kind: TraitCandidate(new_trait_ref),
956                     },
957                     false,
958                 );
959             });
960         } else {
961             debug_assert!(self.tcx.is_trait(trait_def_id));
962             for item in self.impl_or_trait_item(trait_def_id) {
963                 // Check whether `trait_def_id` defines a method with suitable name.
964                 if !self.has_applicable_self(&item) {
965                     debug!("method has inapplicable self");
966                     self.record_static_candidate(TraitSource(trait_def_id));
967                     continue;
968                 }
969
970                 let (xform_self_ty, xform_ret_ty) =
971                     self.xform_self_ty(&item, trait_ref.self_ty(), trait_substs);
972                 self.push_candidate(
973                     Candidate {
974                         xform_self_ty,
975                         xform_ret_ty,
976                         item,
977                         import_ids: import_ids.clone(),
978                         kind: TraitCandidate(trait_ref),
979                     },
980                     false,
981                 );
982             }
983         }
984         Ok(())
985     }
986
987     fn candidate_method_names(&self) -> Vec<Ident> {
988         let mut set = FxHashSet::default();
989         let mut names: Vec<_> = self
990             .inherent_candidates
991             .iter()
992             .chain(&self.extension_candidates)
993             .filter(|candidate| {
994                 if let Some(return_ty) = self.return_type {
995                     self.matches_return_type(&candidate.item, None, return_ty)
996                 } else {
997                     true
998                 }
999             })
1000             .map(|candidate| candidate.item.ident)
1001             .filter(|&name| set.insert(name))
1002             .collect();
1003
1004         // Sort them by the name so we have a stable result.
1005         names.sort_by_cached_key(|n| n.as_str());
1006         names
1007     }
1008
1009     ///////////////////////////////////////////////////////////////////////////
1010     // THE ACTUAL SEARCH
1011
1012     fn pick(mut self) -> PickResult<'tcx> {
1013         assert!(self.method_name.is_some());
1014
1015         if let Some(r) = self.pick_core() {
1016             return r;
1017         }
1018
1019         debug!("pick: actual search failed, assemble diagnostics");
1020
1021         let static_candidates = mem::take(&mut self.static_candidates);
1022         let private_candidate = self.private_candidate.take();
1023         let unsatisfied_predicates = mem::take(&mut self.unsatisfied_predicates);
1024
1025         // things failed, so lets look at all traits, for diagnostic purposes now:
1026         self.reset();
1027
1028         let span = self.span;
1029         let tcx = self.tcx;
1030
1031         self.assemble_extension_candidates_for_all_traits()?;
1032
1033         let out_of_scope_traits = match self.pick_core() {
1034             Some(Ok(p)) => vec![p.item.container.id()],
1035             //Some(Ok(p)) => p.iter().map(|p| p.item.container().id()).collect(),
1036             Some(Err(MethodError::Ambiguity(v))) => v
1037                 .into_iter()
1038                 .map(|source| match source {
1039                     TraitSource(id) => id,
1040                     ImplSource(impl_id) => match tcx.trait_id_of_impl(impl_id) {
1041                         Some(id) => id,
1042                         None => span_bug!(span, "found inherent method when looking at traits"),
1043                     },
1044                 })
1045                 .collect(),
1046             Some(Err(MethodError::NoMatch(NoMatchData {
1047                 out_of_scope_traits: others, ..
1048             }))) => {
1049                 assert!(others.is_empty());
1050                 vec![]
1051             }
1052             _ => vec![],
1053         };
1054
1055         if let Some((kind, def_id)) = private_candidate {
1056             return Err(MethodError::PrivateMatch(kind, def_id, out_of_scope_traits));
1057         }
1058         let lev_candidate = self.probe_for_lev_candidate()?;
1059
1060         Err(MethodError::NoMatch(NoMatchData::new(
1061             static_candidates,
1062             unsatisfied_predicates,
1063             out_of_scope_traits,
1064             lev_candidate,
1065             self.mode,
1066         )))
1067     }
1068
1069     fn pick_core(&mut self) -> Option<PickResult<'tcx>> {
1070         let steps = self.steps.clone();
1071
1072         // find the first step that works
1073         steps
1074             .iter()
1075             .filter(|step| {
1076                 debug!("pick_core: step={:?}", step);
1077                 // skip types that are from a type error or that would require dereferencing
1078                 // a raw pointer
1079                 !step.self_ty.references_error() && !step.from_unsafe_deref
1080             })
1081             .flat_map(|step| {
1082                 let InferOk { value: self_ty, obligations: _ } = self
1083                     .fcx
1084                     .probe_instantiate_query_response(
1085                         self.span,
1086                         &self.orig_steps_var_values,
1087                         &step.self_ty,
1088                     )
1089                     .unwrap_or_else(|_| {
1090                         span_bug!(self.span, "{:?} was applicable but now isn't?", step.self_ty)
1091                     });
1092                 self.pick_by_value_method(step, self_ty).or_else(|| {
1093                     self.pick_autorefd_method(step, self_ty, hir::Mutability::Not)
1094                         .or_else(|| self.pick_autorefd_method(step, self_ty, hir::Mutability::Mut))
1095                 })
1096             })
1097             .next()
1098     }
1099
1100     fn pick_by_value_method(
1101         &mut self,
1102         step: &CandidateStep<'tcx>,
1103         self_ty: Ty<'tcx>,
1104     ) -> Option<PickResult<'tcx>> {
1105         //! For each type `T` in the step list, this attempts to find a
1106         //! method where the (transformed) self type is exactly `T`. We
1107         //! do however do one transformation on the adjustment: if we
1108         //! are passing a region pointer in, we will potentially
1109         //! *reborrow* it to a shorter lifetime. This allows us to
1110         //! transparently pass `&mut` pointers, in particular, without
1111         //! consuming them for their entire lifetime.
1112
1113         if step.unsize {
1114             return None;
1115         }
1116
1117         self.pick_method(self_ty).map(|r| {
1118             r.map(|mut pick| {
1119                 pick.autoderefs = step.autoderefs;
1120
1121                 // Insert a `&*` or `&mut *` if this is a reference type:
1122                 if let ty::Ref(_, _, mutbl) = step.self_ty.value.value.kind {
1123                     pick.autoderefs += 1;
1124                     pick.autoref = Some(mutbl);
1125                 }
1126
1127                 pick
1128             })
1129         })
1130     }
1131
1132     fn pick_autorefd_method(
1133         &mut self,
1134         step: &CandidateStep<'tcx>,
1135         self_ty: Ty<'tcx>,
1136         mutbl: hir::Mutability,
1137     ) -> Option<PickResult<'tcx>> {
1138         let tcx = self.tcx;
1139
1140         // In general, during probing we erase regions.
1141         let region = tcx.lifetimes.re_erased;
1142
1143         let autoref_ty = tcx.mk_ref(region, ty::TypeAndMut { ty: self_ty, mutbl });
1144         self.pick_method(autoref_ty).map(|r| {
1145             r.map(|mut pick| {
1146                 pick.autoderefs = step.autoderefs;
1147                 pick.autoref = Some(mutbl);
1148                 pick.unsize = step.unsize.then_some(self_ty);
1149                 pick
1150             })
1151         })
1152     }
1153
1154     fn pick_method(&mut self, self_ty: Ty<'tcx>) -> Option<PickResult<'tcx>> {
1155         debug!("pick_method(self_ty={})", self.ty_to_string(self_ty));
1156
1157         let mut possibly_unsatisfied_predicates = Vec::new();
1158         let mut unstable_candidates = Vec::new();
1159
1160         for (kind, candidates) in
1161             &[("inherent", &self.inherent_candidates), ("extension", &self.extension_candidates)]
1162         {
1163             debug!("searching {} candidates", kind);
1164             let res = self.consider_candidates(
1165                 self_ty,
1166                 candidates.iter(),
1167                 &mut possibly_unsatisfied_predicates,
1168                 Some(&mut unstable_candidates),
1169             );
1170             if let Some(pick) = res {
1171                 if !self.is_suggestion.0 && !unstable_candidates.is_empty() {
1172                     if let Ok(p) = &pick {
1173                         // Emit a lint if there are unstable candidates alongside the stable ones.
1174                         //
1175                         // We suppress warning if we're picking the method only because it is a
1176                         // suggestion.
1177                         self.emit_unstable_name_collision_hint(p, &unstable_candidates);
1178                     }
1179                 }
1180                 return Some(pick);
1181             }
1182         }
1183
1184         debug!("searching unstable candidates");
1185         let res = self.consider_candidates(
1186             self_ty,
1187             unstable_candidates.into_iter().map(|(c, _)| c),
1188             &mut possibly_unsatisfied_predicates,
1189             None,
1190         );
1191         if res.is_none() {
1192             self.unsatisfied_predicates.extend(possibly_unsatisfied_predicates);
1193         }
1194         res
1195     }
1196
1197     fn consider_candidates<'b, ProbesIter>(
1198         &self,
1199         self_ty: Ty<'tcx>,
1200         probes: ProbesIter,
1201         possibly_unsatisfied_predicates: &mut Vec<(
1202             ty::Predicate<'tcx>,
1203             Option<ty::Predicate<'tcx>>,
1204         )>,
1205         unstable_candidates: Option<&mut Vec<(&'b Candidate<'tcx>, Symbol)>>,
1206     ) -> Option<PickResult<'tcx>>
1207     where
1208         ProbesIter: Iterator<Item = &'b Candidate<'tcx>> + Clone,
1209     {
1210         let mut applicable_candidates: Vec<_> = probes
1211             .clone()
1212             .map(|probe| {
1213                 (probe, self.consider_probe(self_ty, probe, possibly_unsatisfied_predicates))
1214             })
1215             .filter(|&(_, status)| status != ProbeResult::NoMatch)
1216             .collect();
1217
1218         debug!("applicable_candidates: {:?}", applicable_candidates);
1219
1220         if applicable_candidates.len() > 1 {
1221             if let Some(pick) = self.collapse_candidates_to_trait_pick(&applicable_candidates[..]) {
1222                 return Some(Ok(pick));
1223             }
1224         }
1225
1226         if let Some(uc) = unstable_candidates {
1227             applicable_candidates.retain(|&(p, _)| {
1228                 if let stability::EvalResult::Deny { feature, .. } =
1229                     self.tcx.eval_stability(p.item.def_id, None, self.span)
1230                 {
1231                     uc.push((p, feature));
1232                     return false;
1233                 }
1234                 true
1235             });
1236         }
1237
1238         if applicable_candidates.len() > 1 {
1239             let sources = probes.map(|p| self.candidate_source(p, self_ty)).collect();
1240             return Some(Err(MethodError::Ambiguity(sources)));
1241         }
1242
1243         applicable_candidates.pop().map(|(probe, status)| {
1244             if status == ProbeResult::Match {
1245                 Ok(probe.to_unadjusted_pick())
1246             } else {
1247                 Err(MethodError::BadReturnType)
1248             }
1249         })
1250     }
1251
1252     fn emit_unstable_name_collision_hint(
1253         &self,
1254         stable_pick: &Pick<'_>,
1255         unstable_candidates: &[(&Candidate<'tcx>, Symbol)],
1256     ) {
1257         self.tcx.struct_span_lint_hir(
1258             lint::builtin::UNSTABLE_NAME_COLLISIONS,
1259             self.fcx.body_id,
1260             self.span,
1261             |lint| {
1262                 let mut diag = lint.build(
1263                     "a method with this name may be added to the standard library in the future",
1264                 );
1265                 // FIXME: This should be a `span_suggestion` instead of `help`
1266                 // However `self.span` only
1267                 // highlights the method name, so we can't use it. Also consider reusing the code from
1268                 // `report_method_error()`.
1269                 diag.help(&format!(
1270                     "call with fully qualified syntax `{}(...)` to keep using the current method",
1271                     self.tcx.def_path_str(stable_pick.item.def_id),
1272                 ));
1273
1274                 if nightly_options::is_nightly_build() {
1275                     for (candidate, feature) in unstable_candidates {
1276                         diag.help(&format!(
1277                             "add `#![feature({})]` to the crate attributes to enable `{}`",
1278                             feature,
1279                             self.tcx.def_path_str(candidate.item.def_id),
1280                         ));
1281                     }
1282                 }
1283
1284                 diag.emit();
1285             },
1286         );
1287     }
1288
1289     fn select_trait_candidate(
1290         &self,
1291         trait_ref: ty::TraitRef<'tcx>,
1292     ) -> traits::SelectionResult<'tcx, traits::Selection<'tcx>> {
1293         let cause = traits::ObligationCause::misc(self.span, self.body_id);
1294         let predicate = trait_ref.to_poly_trait_ref().to_poly_trait_predicate();
1295         let obligation = traits::Obligation::new(cause, self.param_env, predicate);
1296         traits::SelectionContext::new(self).select(&obligation)
1297     }
1298
1299     fn candidate_source(&self, candidate: &Candidate<'tcx>, self_ty: Ty<'tcx>) -> CandidateSource {
1300         match candidate.kind {
1301             InherentImplCandidate(..) => ImplSource(candidate.item.container.id()),
1302             ObjectCandidate | WhereClauseCandidate(_) => TraitSource(candidate.item.container.id()),
1303             TraitCandidate(trait_ref) => self.probe(|_| {
1304                 let _ = self
1305                     .at(&ObligationCause::dummy(), self.param_env)
1306                     .sup(candidate.xform_self_ty, self_ty);
1307                 match self.select_trait_candidate(trait_ref) {
1308                     Ok(Some(traits::ImplSource::ImplSourceUserDefined(ref impl_data))) => {
1309                         // If only a single impl matches, make the error message point
1310                         // to that impl.
1311                         ImplSource(impl_data.impl_def_id)
1312                     }
1313                     _ => TraitSource(candidate.item.container.id()),
1314                 }
1315             }),
1316         }
1317     }
1318
1319     fn consider_probe(
1320         &self,
1321         self_ty: Ty<'tcx>,
1322         probe: &Candidate<'tcx>,
1323         possibly_unsatisfied_predicates: &mut Vec<(
1324             ty::Predicate<'tcx>,
1325             Option<ty::Predicate<'tcx>>,
1326         )>,
1327     ) -> ProbeResult {
1328         debug!("consider_probe: self_ty={:?} probe={:?}", self_ty, probe);
1329
1330         self.probe(|_| {
1331             // First check that the self type can be related.
1332             let sub_obligations = match self
1333                 .at(&ObligationCause::dummy(), self.param_env)
1334                 .sup(probe.xform_self_ty, self_ty)
1335             {
1336                 Ok(InferOk { obligations, value: () }) => obligations,
1337                 Err(_) => {
1338                     debug!("--> cannot relate self-types");
1339                     return ProbeResult::NoMatch;
1340                 }
1341             };
1342
1343             let mut result = ProbeResult::Match;
1344             let selcx = &mut traits::SelectionContext::new(self);
1345             let cause = traits::ObligationCause::misc(self.span, self.body_id);
1346
1347             // If so, impls may carry other conditions (e.g., where
1348             // clauses) that must be considered. Make sure that those
1349             // match as well (or at least may match, sometimes we
1350             // don't have enough information to fully evaluate).
1351             match probe.kind {
1352                 InherentImplCandidate(ref substs, ref ref_obligations) => {
1353                     // Check whether the impl imposes obligations we have to worry about.
1354                     let impl_def_id = probe.item.container.id();
1355                     let impl_bounds = self.tcx.predicates_of(impl_def_id);
1356                     let impl_bounds = impl_bounds.instantiate(self.tcx, substs);
1357                     let traits::Normalized { value: impl_bounds, obligations: norm_obligations } =
1358                         traits::normalize(selcx, self.param_env, cause.clone(), &impl_bounds);
1359
1360                     // Convert the bounds into obligations.
1361                     let impl_obligations =
1362                         traits::predicates_for_generics(cause, self.param_env, impl_bounds);
1363
1364                     let candidate_obligations = impl_obligations
1365                         .chain(norm_obligations.into_iter())
1366                         .chain(ref_obligations.iter().cloned());
1367                     // Evaluate those obligations to see if they might possibly hold.
1368                     for o in candidate_obligations {
1369                         let o = self.resolve_vars_if_possible(&o);
1370                         if !self.predicate_may_hold(&o) {
1371                             result = ProbeResult::NoMatch;
1372                             possibly_unsatisfied_predicates.push((o.predicate, None));
1373                         }
1374                     }
1375                 }
1376
1377                 ObjectCandidate | WhereClauseCandidate(..) => {
1378                     // These have no additional conditions to check.
1379                 }
1380
1381                 TraitCandidate(trait_ref) => {
1382                     let predicate = trait_ref.without_const().to_predicate(self.tcx);
1383                     let obligation = traits::Obligation::new(cause, self.param_env, predicate);
1384                     if !self.predicate_may_hold(&obligation) {
1385                         result = ProbeResult::NoMatch;
1386                         if self.probe(|_| {
1387                             match self.select_trait_candidate(trait_ref) {
1388                                 Err(_) => return true,
1389                                 Ok(Some(impl_source))
1390                                     if !impl_source.borrow_nested_obligations().is_empty() =>
1391                                 {
1392                                     for obligation in impl_source.borrow_nested_obligations() {
1393                                         // Determine exactly which obligation wasn't met, so
1394                                         // that we can give more context in the error.
1395                                         if !self.predicate_may_hold(&obligation) {
1396                                             let o = self.resolve_vars_if_possible(obligation);
1397                                             let predicate =
1398                                                 self.resolve_vars_if_possible(&predicate);
1399                                             let p = if predicate == o.predicate {
1400                                                 // Avoid "`MyStruct: Foo` which is required by
1401                                                 // `MyStruct: Foo`" in E0599.
1402                                                 None
1403                                             } else {
1404                                                 Some(predicate)
1405                                             };
1406                                             possibly_unsatisfied_predicates.push((o.predicate, p));
1407                                         }
1408                                     }
1409                                 }
1410                                 _ => {
1411                                     // Some nested subobligation of this predicate
1412                                     // failed.
1413                                     let predicate = self.resolve_vars_if_possible(&predicate);
1414                                     possibly_unsatisfied_predicates.push((predicate, None));
1415                                 }
1416                             }
1417                             false
1418                         }) {
1419                             // This candidate's primary obligation doesn't even
1420                             // select - don't bother registering anything in
1421                             // `potentially_unsatisfied_predicates`.
1422                             return ProbeResult::NoMatch;
1423                         }
1424                     }
1425                 }
1426             }
1427
1428             // Evaluate those obligations to see if they might possibly hold.
1429             for o in sub_obligations {
1430                 let o = self.resolve_vars_if_possible(&o);
1431                 if !self.predicate_may_hold(&o) {
1432                     result = ProbeResult::NoMatch;
1433                     possibly_unsatisfied_predicates.push((o.predicate, None));
1434                 }
1435             }
1436
1437             if let ProbeResult::Match = result {
1438                 if let (Some(return_ty), Some(xform_ret_ty)) =
1439                     (self.return_type, probe.xform_ret_ty)
1440                 {
1441                     let xform_ret_ty = self.resolve_vars_if_possible(&xform_ret_ty);
1442                     debug!(
1443                         "comparing return_ty {:?} with xform ret ty {:?}",
1444                         return_ty, probe.xform_ret_ty
1445                     );
1446                     if self
1447                         .at(&ObligationCause::dummy(), self.param_env)
1448                         .sup(return_ty, xform_ret_ty)
1449                         .is_err()
1450                     {
1451                         return ProbeResult::BadReturnType;
1452                     }
1453                 }
1454             }
1455
1456             result
1457         })
1458     }
1459
1460     /// Sometimes we get in a situation where we have multiple probes that are all impls of the
1461     /// same trait, but we don't know which impl to use. In this case, since in all cases the
1462     /// external interface of the method can be determined from the trait, it's ok not to decide.
1463     /// We can basically just collapse all of the probes for various impls into one where-clause
1464     /// probe. This will result in a pending obligation so when more type-info is available we can
1465     /// make the final decision.
1466     ///
1467     /// Example (`src/test/ui/method-two-trait-defer-resolution-1.rs`):
1468     ///
1469     /// ```
1470     /// trait Foo { ... }
1471     /// impl Foo for Vec<int> { ... }
1472     /// impl Foo for Vec<usize> { ... }
1473     /// ```
1474     ///
1475     /// Now imagine the receiver is `Vec<_>`. It doesn't really matter at this time which impl we
1476     /// use, so it's ok to just commit to "using the method from the trait Foo".
1477     fn collapse_candidates_to_trait_pick(
1478         &self,
1479         probes: &[(&Candidate<'tcx>, ProbeResult)],
1480     ) -> Option<Pick<'tcx>> {
1481         // Do all probes correspond to the same trait?
1482         let container = probes[0].0.item.container;
1483         if let ty::ImplContainer(_) = container {
1484             return None;
1485         }
1486         if probes[1..].iter().any(|&(p, _)| p.item.container != container) {
1487             return None;
1488         }
1489
1490         // FIXME: check the return type here somehow.
1491         // If so, just use this trait and call it a day.
1492         Some(Pick {
1493             item: probes[0].0.item,
1494             kind: TraitPick,
1495             import_ids: probes[0].0.import_ids.clone(),
1496             autoderefs: 0,
1497             autoref: None,
1498             unsize: None,
1499         })
1500     }
1501
1502     /// Similarly to `probe_for_return_type`, this method attempts to find the best matching
1503     /// candidate method where the method name may have been misspelt. Similarly to other
1504     /// Levenshtein based suggestions, we provide at most one such suggestion.
1505     fn probe_for_lev_candidate(&mut self) -> Result<Option<ty::AssocItem>, MethodError<'tcx>> {
1506         debug!("probing for method names similar to {:?}", self.method_name);
1507
1508         let steps = self.steps.clone();
1509         self.probe(|_| {
1510             let mut pcx = ProbeContext::new(
1511                 self.fcx,
1512                 self.span,
1513                 self.mode,
1514                 self.method_name,
1515                 self.return_type,
1516                 self.orig_steps_var_values.clone(),
1517                 steps,
1518                 IsSuggestion(true),
1519             );
1520             pcx.allow_similar_names = true;
1521             pcx.assemble_inherent_candidates();
1522
1523             let method_names = pcx.candidate_method_names();
1524             pcx.allow_similar_names = false;
1525             let applicable_close_candidates: Vec<ty::AssocItem> = method_names
1526                 .iter()
1527                 .filter_map(|&method_name| {
1528                     pcx.reset();
1529                     pcx.method_name = Some(method_name);
1530                     pcx.assemble_inherent_candidates();
1531                     pcx.pick_core().and_then(|pick| pick.ok()).map(|pick| pick.item)
1532                 })
1533                 .collect();
1534
1535             if applicable_close_candidates.is_empty() {
1536                 Ok(None)
1537             } else {
1538                 let best_name = {
1539                     let names = applicable_close_candidates.iter().map(|cand| &cand.ident.name);
1540                     find_best_match_for_name(names, &self.method_name.unwrap().as_str(), None)
1541                 }
1542                 .unwrap();
1543                 Ok(applicable_close_candidates
1544                     .into_iter()
1545                     .find(|method| method.ident.name == best_name))
1546             }
1547         })
1548     }
1549
1550     ///////////////////////////////////////////////////////////////////////////
1551     // MISCELLANY
1552     fn has_applicable_self(&self, item: &ty::AssocItem) -> bool {
1553         // "Fast track" -- check for usage of sugar when in method call
1554         // mode.
1555         //
1556         // In Path mode (i.e., resolving a value like `T::next`), consider any
1557         // associated value (i.e., methods, constants) but not types.
1558         match self.mode {
1559             Mode::MethodCall => item.fn_has_self_parameter,
1560             Mode::Path => match item.kind {
1561                 ty::AssocKind::Type => false,
1562                 ty::AssocKind::Fn | ty::AssocKind::Const => true,
1563             },
1564         }
1565         // FIXME -- check for types that deref to `Self`,
1566         // like `Rc<Self>` and so on.
1567         //
1568         // Note also that the current code will break if this type
1569         // includes any of the type parameters defined on the method
1570         // -- but this could be overcome.
1571     }
1572
1573     fn record_static_candidate(&mut self, source: CandidateSource) {
1574         self.static_candidates.push(source);
1575     }
1576
1577     fn xform_self_ty(
1578         &self,
1579         item: &ty::AssocItem,
1580         impl_ty: Ty<'tcx>,
1581         substs: SubstsRef<'tcx>,
1582     ) -> (Ty<'tcx>, Option<Ty<'tcx>>) {
1583         if item.kind == ty::AssocKind::Fn && self.mode == Mode::MethodCall {
1584             let sig = self.xform_method_sig(item.def_id, substs);
1585             (sig.inputs()[0], Some(sig.output()))
1586         } else {
1587             (impl_ty, None)
1588         }
1589     }
1590
1591     fn xform_method_sig(&self, method: DefId, substs: SubstsRef<'tcx>) -> ty::FnSig<'tcx> {
1592         let fn_sig = self.tcx.fn_sig(method);
1593         debug!("xform_self_ty(fn_sig={:?}, substs={:?})", fn_sig, substs);
1594
1595         assert!(!substs.has_escaping_bound_vars());
1596
1597         // It is possible for type parameters or early-bound lifetimes
1598         // to appear in the signature of `self`. The substitutions we
1599         // are given do not include type/lifetime parameters for the
1600         // method yet. So create fresh variables here for those too,
1601         // if there are any.
1602         let generics = self.tcx.generics_of(method);
1603         assert_eq!(substs.len(), generics.parent_count as usize);
1604
1605         // Erase any late-bound regions from the method and substitute
1606         // in the values from the substitution.
1607         let xform_fn_sig = self.erase_late_bound_regions(&fn_sig);
1608
1609         if generics.params.is_empty() {
1610             xform_fn_sig.subst(self.tcx, substs)
1611         } else {
1612             let substs = InternalSubsts::for_item(self.tcx, method, |param, _| {
1613                 let i = param.index as usize;
1614                 if i < substs.len() {
1615                     substs[i]
1616                 } else {
1617                     match param.kind {
1618                         GenericParamDefKind::Lifetime => {
1619                             // In general, during probe we erase regions.
1620                             self.tcx.lifetimes.re_erased.into()
1621                         }
1622                         GenericParamDefKind::Type { .. } | GenericParamDefKind::Const => {
1623                             self.var_for_def(self.span, param)
1624                         }
1625                     }
1626                 }
1627             });
1628             xform_fn_sig.subst(self.tcx, substs)
1629         }
1630     }
1631
1632     /// Gets the type of an impl and generate substitutions with placeholders.
1633     fn impl_ty_and_substs(&self, impl_def_id: DefId) -> (Ty<'tcx>, SubstsRef<'tcx>) {
1634         (self.tcx.type_of(impl_def_id), self.fresh_item_substs(impl_def_id))
1635     }
1636
1637     fn fresh_item_substs(&self, def_id: DefId) -> SubstsRef<'tcx> {
1638         InternalSubsts::for_item(self.tcx, def_id, |param, _| match param.kind {
1639             GenericParamDefKind::Lifetime => self.tcx.lifetimes.re_erased.into(),
1640             GenericParamDefKind::Type { .. } => self
1641                 .next_ty_var(TypeVariableOrigin {
1642                     kind: TypeVariableOriginKind::SubstitutionPlaceholder,
1643                     span: self.tcx.def_span(def_id),
1644                 })
1645                 .into(),
1646             GenericParamDefKind::Const { .. } => {
1647                 let span = self.tcx.def_span(def_id);
1648                 let origin = ConstVariableOrigin {
1649                     kind: ConstVariableOriginKind::SubstitutionPlaceholder,
1650                     span,
1651                 };
1652                 self.next_const_var(self.tcx.type_of(param.def_id), origin).into()
1653             }
1654         })
1655     }
1656
1657     /// Replaces late-bound-regions bound by `value` with `'static` using
1658     /// `ty::erase_late_bound_regions`.
1659     ///
1660     /// This is only a reasonable thing to do during the *probe* phase, not the *confirm* phase, of
1661     /// method matching. It is reasonable during the probe phase because we don't consider region
1662     /// relationships at all. Therefore, we can just replace all the region variables with 'static
1663     /// rather than creating fresh region variables. This is nice for two reasons:
1664     ///
1665     /// 1. Because the numbers of the region variables would otherwise be fairly unique to this
1666     ///    particular method call, it winds up creating fewer types overall, which helps for memory
1667     ///    usage. (Admittedly, this is a rather small effect, though measurable.)
1668     ///
1669     /// 2. It makes it easier to deal with higher-ranked trait bounds, because we can replace any
1670     ///    late-bound regions with 'static. Otherwise, if we were going to replace late-bound
1671     ///    regions with actual region variables as is proper, we'd have to ensure that the same
1672     ///    region got replaced with the same variable, which requires a bit more coordination
1673     ///    and/or tracking the substitution and
1674     ///    so forth.
1675     fn erase_late_bound_regions<T>(&self, value: &ty::Binder<T>) -> T
1676     where
1677         T: TypeFoldable<'tcx>,
1678     {
1679         self.tcx.erase_late_bound_regions(value)
1680     }
1681
1682     /// Finds the method with the appropriate name (or return type, as the case may be). If
1683     /// `allow_similar_names` is set, find methods with close-matching names.
1684     fn impl_or_trait_item(&self, def_id: DefId) -> Vec<ty::AssocItem> {
1685         if let Some(name) = self.method_name {
1686             if self.allow_similar_names {
1687                 let max_dist = max(name.as_str().len(), 3) / 3;
1688                 self.tcx
1689                     .associated_items(def_id)
1690                     .in_definition_order()
1691                     .filter(|x| {
1692                         let dist = lev_distance(&*name.as_str(), &x.ident.as_str());
1693                         x.kind.namespace() == Namespace::ValueNS && dist > 0 && dist <= max_dist
1694                     })
1695                     .copied()
1696                     .collect()
1697             } else {
1698                 self.fcx
1699                     .associated_item(def_id, name, Namespace::ValueNS)
1700                     .map_or(Vec::new(), |x| vec![x])
1701             }
1702         } else {
1703             self.tcx.associated_items(def_id).in_definition_order().copied().collect()
1704         }
1705     }
1706 }
1707
1708 impl<'tcx> Candidate<'tcx> {
1709     fn to_unadjusted_pick(&self) -> Pick<'tcx> {
1710         Pick {
1711             item: self.item,
1712             kind: match self.kind {
1713                 InherentImplCandidate(..) => InherentImplPick,
1714                 ObjectCandidate => ObjectPick,
1715                 TraitCandidate(_) => TraitPick,
1716                 WhereClauseCandidate(ref trait_ref) => {
1717                     // Only trait derived from where-clauses should
1718                     // appear here, so they should not contain any
1719                     // inference variables or other artifacts. This
1720                     // means they are safe to put into the
1721                     // `WhereClausePick`.
1722                     assert!(
1723                         !trait_ref.skip_binder().substs.needs_infer()
1724                             && !trait_ref.skip_binder().substs.has_placeholders()
1725                     );
1726
1727                     WhereClausePick(*trait_ref)
1728                 }
1729             },
1730             import_ids: self.import_ids.clone(),
1731             autoderefs: 0,
1732             autoref: None,
1733             unsize: None,
1734         }
1735     }
1736 }