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