]> git.lizzy.rs Git - rust.git/blob - crates/hir_ty/src/method_resolution.rs
Merge #10174
[rust.git] / crates / hir_ty / src / method_resolution.rs
1 //! This module is concerned with finding methods that a given type provides.
2 //! For details about how this works in rustc, see the method lookup page in the
3 //! [rustc guide](https://rust-lang.github.io/rustc-guide/method-lookup.html)
4 //! and the corresponding code mostly in librustc_typeck/check/method/probe.rs.
5 use std::{iter, sync::Arc};
6
7 use arrayvec::ArrayVec;
8 use base_db::{CrateId, Edition};
9 use chalk_ir::{cast::Cast, Mutability, UniverseIndex};
10 use hir_def::{
11     lang_item::LangItemTarget, nameres::DefMap, AssocContainerId, AssocItemId, BlockId, FunctionId,
12     GenericDefId, HasModule, ImplId, Lookup, ModuleId, TraitId,
13 };
14 use hir_expand::name::Name;
15 use rustc_hash::{FxHashMap, FxHashSet};
16
17 use crate::{
18     autoderef,
19     consteval::{self, ConstExt},
20     db::HirDatabase,
21     from_foreign_def_id,
22     primitive::{self, FloatTy, IntTy, UintTy},
23     static_lifetime,
24     utils::all_super_traits,
25     AdtId, Canonical, CanonicalVarKinds, DebruijnIndex, ForeignDefId, InEnvironment, Interner,
26     Scalar, Substitution, TraitEnvironment, TraitRefExt, Ty, TyBuilder, TyExt, TyKind,
27 };
28
29 /// This is used as a key for indexing impls.
30 #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
31 pub enum TyFingerprint {
32     // These are lang item impls:
33     Str,
34     Slice,
35     Array,
36     Never,
37     RawPtr(Mutability),
38     Scalar(Scalar),
39     // These can have user-defined impls:
40     Adt(hir_def::AdtId),
41     Dyn(TraitId),
42     ForeignType(ForeignDefId),
43     // These only exist for trait impls
44     Unit,
45     Unnameable,
46     Function(u32),
47 }
48
49 impl TyFingerprint {
50     /// Creates a TyFingerprint for looking up an inherent impl. Only certain
51     /// types can have inherent impls: if we have some `struct S`, we can have
52     /// an `impl S`, but not `impl &S`. Hence, this will return `None` for
53     /// reference types and such.
54     pub fn for_inherent_impl(ty: &Ty) -> Option<TyFingerprint> {
55         let fp = match ty.kind(&Interner) {
56             TyKind::Str => TyFingerprint::Str,
57             TyKind::Never => TyFingerprint::Never,
58             TyKind::Slice(..) => TyFingerprint::Slice,
59             TyKind::Array(..) => TyFingerprint::Array,
60             TyKind::Scalar(scalar) => TyFingerprint::Scalar(*scalar),
61             TyKind::Adt(AdtId(adt), _) => TyFingerprint::Adt(*adt),
62             TyKind::Raw(mutability, ..) => TyFingerprint::RawPtr(*mutability),
63             TyKind::Foreign(alias_id, ..) => TyFingerprint::ForeignType(*alias_id),
64             TyKind::Dyn(_) => ty.dyn_trait().map(TyFingerprint::Dyn)?,
65             _ => return None,
66         };
67         Some(fp)
68     }
69
70     /// Creates a TyFingerprint for looking up a trait impl.
71     pub fn for_trait_impl(ty: &Ty) -> Option<TyFingerprint> {
72         let fp = match ty.kind(&Interner) {
73             TyKind::Str => TyFingerprint::Str,
74             TyKind::Never => TyFingerprint::Never,
75             TyKind::Slice(..) => TyFingerprint::Slice,
76             TyKind::Array(..) => TyFingerprint::Array,
77             TyKind::Scalar(scalar) => TyFingerprint::Scalar(*scalar),
78             TyKind::Adt(AdtId(adt), _) => TyFingerprint::Adt(*adt),
79             TyKind::Raw(mutability, ..) => TyFingerprint::RawPtr(*mutability),
80             TyKind::Foreign(alias_id, ..) => TyFingerprint::ForeignType(*alias_id),
81             TyKind::Dyn(_) => ty.dyn_trait().map(TyFingerprint::Dyn)?,
82             TyKind::Ref(_, _, ty) => return TyFingerprint::for_trait_impl(ty),
83             TyKind::Tuple(_, subst) => {
84                 let first_ty = subst.interned().get(0).map(|arg| arg.assert_ty_ref(&Interner));
85                 if let Some(ty) = first_ty {
86                     return TyFingerprint::for_trait_impl(ty);
87                 } else {
88                     TyFingerprint::Unit
89                 }
90             }
91             TyKind::AssociatedType(_, _)
92             | TyKind::OpaqueType(_, _)
93             | TyKind::FnDef(_, _)
94             | TyKind::Closure(_, _)
95             | TyKind::Generator(..)
96             | TyKind::GeneratorWitness(..) => TyFingerprint::Unnameable,
97             TyKind::Function(fn_ptr) => {
98                 TyFingerprint::Function(fn_ptr.substitution.0.len(&Interner) as u32)
99             }
100             TyKind::Alias(_)
101             | TyKind::Placeholder(_)
102             | TyKind::BoundVar(_)
103             | TyKind::InferenceVar(_, _)
104             | TyKind::Error => return None,
105         };
106         Some(fp)
107     }
108 }
109
110 pub(crate) const ALL_INT_FPS: [TyFingerprint; 12] = [
111     TyFingerprint::Scalar(Scalar::Int(IntTy::I8)),
112     TyFingerprint::Scalar(Scalar::Int(IntTy::I16)),
113     TyFingerprint::Scalar(Scalar::Int(IntTy::I32)),
114     TyFingerprint::Scalar(Scalar::Int(IntTy::I64)),
115     TyFingerprint::Scalar(Scalar::Int(IntTy::I128)),
116     TyFingerprint::Scalar(Scalar::Int(IntTy::Isize)),
117     TyFingerprint::Scalar(Scalar::Uint(UintTy::U8)),
118     TyFingerprint::Scalar(Scalar::Uint(UintTy::U16)),
119     TyFingerprint::Scalar(Scalar::Uint(UintTy::U32)),
120     TyFingerprint::Scalar(Scalar::Uint(UintTy::U64)),
121     TyFingerprint::Scalar(Scalar::Uint(UintTy::U128)),
122     TyFingerprint::Scalar(Scalar::Uint(UintTy::Usize)),
123 ];
124
125 pub(crate) const ALL_FLOAT_FPS: [TyFingerprint; 2] = [
126     TyFingerprint::Scalar(Scalar::Float(FloatTy::F32)),
127     TyFingerprint::Scalar(Scalar::Float(FloatTy::F64)),
128 ];
129
130 /// Trait impls defined or available in some crate.
131 #[derive(Debug, Eq, PartialEq)]
132 pub struct TraitImpls {
133     // If the `Option<TyFingerprint>` is `None`, the impl may apply to any self type.
134     map: FxHashMap<TraitId, FxHashMap<Option<TyFingerprint>, Vec<ImplId>>>,
135 }
136
137 impl TraitImpls {
138     pub(crate) fn trait_impls_in_crate_query(db: &dyn HirDatabase, krate: CrateId) -> Arc<Self> {
139         let _p = profile::span("trait_impls_in_crate_query");
140         let mut impls = Self { map: FxHashMap::default() };
141
142         let crate_def_map = db.crate_def_map(krate);
143         impls.collect_def_map(db, &crate_def_map);
144
145         Arc::new(impls)
146     }
147
148     pub(crate) fn trait_impls_in_block_query(
149         db: &dyn HirDatabase,
150         block: BlockId,
151     ) -> Option<Arc<Self>> {
152         let _p = profile::span("trait_impls_in_block_query");
153         let mut impls = Self { map: FxHashMap::default() };
154
155         let block_def_map = db.block_def_map(block)?;
156         impls.collect_def_map(db, &block_def_map);
157
158         Some(Arc::new(impls))
159     }
160
161     fn collect_def_map(&mut self, db: &dyn HirDatabase, def_map: &DefMap) {
162         for (_module_id, module_data) in def_map.modules() {
163             for impl_id in module_data.scope.impls() {
164                 let target_trait = match db.impl_trait(impl_id) {
165                     Some(tr) => tr.skip_binders().hir_trait_id(),
166                     None => continue,
167                 };
168                 let self_ty = db.impl_self_ty(impl_id);
169                 let self_ty_fp = TyFingerprint::for_trait_impl(self_ty.skip_binders());
170                 self.map
171                     .entry(target_trait)
172                     .or_default()
173                     .entry(self_ty_fp)
174                     .or_default()
175                     .push(impl_id);
176             }
177
178             // To better support custom derives, collect impls in all unnamed const items.
179             // const _: () = { ... };
180             for konst in module_data.scope.unnamed_consts() {
181                 let body = db.body(konst.into());
182                 for (_, block_def_map) in body.blocks(db.upcast()) {
183                     self.collect_def_map(db, &block_def_map);
184                 }
185             }
186         }
187     }
188
189     pub(crate) fn trait_impls_in_deps_query(db: &dyn HirDatabase, krate: CrateId) -> Arc<Self> {
190         let _p = profile::span("trait_impls_in_deps_query");
191         let crate_graph = db.crate_graph();
192         let mut res = Self { map: FxHashMap::default() };
193
194         for krate in crate_graph.transitive_deps(krate) {
195             res.merge(&db.trait_impls_in_crate(krate));
196         }
197
198         Arc::new(res)
199     }
200
201     fn merge(&mut self, other: &Self) {
202         for (trait_, other_map) in &other.map {
203             let map = self.map.entry(*trait_).or_default();
204             for (fp, impls) in other_map {
205                 let vec = map.entry(*fp).or_default();
206                 vec.extend(impls);
207             }
208         }
209     }
210
211     /// Queries all trait impls for the given type.
212     pub fn for_self_ty_without_blanket_impls(
213         &self,
214         fp: TyFingerprint,
215     ) -> impl Iterator<Item = ImplId> + '_ {
216         self.map
217             .values()
218             .flat_map(move |impls| impls.get(&Some(fp)).into_iter())
219             .flat_map(|it| it.iter().copied())
220     }
221
222     /// Queries all impls of the given trait.
223     pub fn for_trait(&self, trait_: TraitId) -> impl Iterator<Item = ImplId> + '_ {
224         self.map
225             .get(&trait_)
226             .into_iter()
227             .flat_map(|map| map.values().flat_map(|v| v.iter().copied()))
228     }
229
230     /// Queries all impls of `trait_` that may apply to `self_ty`.
231     pub fn for_trait_and_self_ty(
232         &self,
233         trait_: TraitId,
234         self_ty: TyFingerprint,
235     ) -> impl Iterator<Item = ImplId> + '_ {
236         self.map
237             .get(&trait_)
238             .into_iter()
239             .flat_map(move |map| map.get(&None).into_iter().chain(map.get(&Some(self_ty))))
240             .flat_map(|v| v.iter().copied())
241     }
242
243     pub fn all_impls(&self) -> impl Iterator<Item = ImplId> + '_ {
244         self.map.values().flat_map(|map| map.values().flat_map(|v| v.iter().copied()))
245     }
246 }
247
248 /// Inherent impls defined in some crate.
249 ///
250 /// Inherent impls can only be defined in the crate that also defines the self type of the impl
251 /// (note that some primitives are considered to be defined by both libcore and liballoc).
252 ///
253 /// This makes inherent impl lookup easier than trait impl lookup since we only have to consider a
254 /// single crate.
255 #[derive(Debug, Eq, PartialEq)]
256 pub struct InherentImpls {
257     map: FxHashMap<TyFingerprint, Vec<ImplId>>,
258 }
259
260 impl InherentImpls {
261     pub(crate) fn inherent_impls_in_crate_query(db: &dyn HirDatabase, krate: CrateId) -> Arc<Self> {
262         let mut impls = Self { map: FxHashMap::default() };
263
264         let crate_def_map = db.crate_def_map(krate);
265         collect_def_map(db, &crate_def_map, &mut impls);
266
267         return Arc::new(impls);
268
269         fn collect_def_map(db: &dyn HirDatabase, def_map: &DefMap, impls: &mut InherentImpls) {
270             for (_module_id, module_data) in def_map.modules() {
271                 for impl_id in module_data.scope.impls() {
272                     let data = db.impl_data(impl_id);
273                     if data.target_trait.is_some() {
274                         continue;
275                     }
276
277                     let self_ty = db.impl_self_ty(impl_id);
278                     let fp = TyFingerprint::for_inherent_impl(self_ty.skip_binders());
279                     if let Some(fp) = fp {
280                         impls.map.entry(fp).or_default().push(impl_id);
281                     }
282                     // `fp` should only be `None` in error cases (either erroneous code or incomplete name resolution)
283                 }
284
285                 // To better support custom derives, collect impls in all unnamed const items.
286                 // const _: () = { ... };
287                 for konst in module_data.scope.unnamed_consts() {
288                     let body = db.body(konst.into());
289                     for (_, block_def_map) in body.blocks(db.upcast()) {
290                         collect_def_map(db, &block_def_map, impls);
291                     }
292                 }
293             }
294         }
295     }
296
297     pub fn for_self_ty(&self, self_ty: &Ty) -> &[ImplId] {
298         match TyFingerprint::for_inherent_impl(self_ty) {
299             Some(fp) => self.map.get(&fp).map(|vec| vec.as_ref()).unwrap_or(&[]),
300             None => &[],
301         }
302     }
303
304     pub fn all_impls(&self) -> impl Iterator<Item = ImplId> + '_ {
305         self.map.values().flat_map(|v| v.iter().copied())
306     }
307 }
308
309 pub fn def_crates(
310     db: &dyn HirDatabase,
311     ty: &Ty,
312     cur_crate: CrateId,
313 ) -> Option<ArrayVec<CrateId, 2>> {
314     // Types like slice can have inherent impls in several crates, (core and alloc).
315     // The corresponding impls are marked with lang items, so we can use them to find the required crates.
316     macro_rules! lang_item_crate {
317             ($($name:expr),+ $(,)?) => {{
318                 let mut v = ArrayVec::<LangItemTarget, 2>::new();
319                 $(
320                     v.extend(db.lang_item(cur_crate, $name.into()));
321                 )+
322                 v
323             }};
324         }
325
326     let mod_to_crate_ids = |module: ModuleId| Some(std::iter::once(module.krate()).collect());
327
328     let lang_item_targets = match ty.kind(&Interner) {
329         TyKind::Adt(AdtId(def_id), _) => {
330             return mod_to_crate_ids(def_id.module(db.upcast()));
331         }
332         TyKind::Foreign(id) => {
333             return mod_to_crate_ids(
334                 from_foreign_def_id(*id).lookup(db.upcast()).module(db.upcast()),
335             );
336         }
337         TyKind::Scalar(Scalar::Bool) => lang_item_crate!("bool"),
338         TyKind::Scalar(Scalar::Char) => lang_item_crate!("char"),
339         TyKind::Scalar(Scalar::Float(f)) => match f {
340             // There are two lang items: one in libcore (fXX) and one in libstd (fXX_runtime)
341             FloatTy::F32 => lang_item_crate!("f32", "f32_runtime"),
342             FloatTy::F64 => lang_item_crate!("f64", "f64_runtime"),
343         },
344         &TyKind::Scalar(Scalar::Int(t)) => {
345             lang_item_crate!(primitive::int_ty_to_string(t))
346         }
347         &TyKind::Scalar(Scalar::Uint(t)) => {
348             lang_item_crate!(primitive::uint_ty_to_string(t))
349         }
350         TyKind::Str => lang_item_crate!("str_alloc", "str"),
351         TyKind::Slice(_) => lang_item_crate!("slice_alloc", "slice"),
352         TyKind::Array(..) => lang_item_crate!("array"),
353         TyKind::Raw(Mutability::Not, _) => lang_item_crate!("const_ptr"),
354         TyKind::Raw(Mutability::Mut, _) => lang_item_crate!("mut_ptr"),
355         TyKind::Dyn(_) => {
356             return ty.dyn_trait().and_then(|trait_| {
357                 mod_to_crate_ids(GenericDefId::TraitId(trait_).module(db.upcast()))
358             });
359         }
360         _ => return None,
361     };
362     let res = lang_item_targets
363         .into_iter()
364         .filter_map(|it| match it {
365             LangItemTarget::ImplDefId(it) => Some(it),
366             _ => None,
367         })
368         .map(|it| it.lookup(db.upcast()).container.krate())
369         .collect();
370     Some(res)
371 }
372
373 /// Look up the method with the given name, returning the actual autoderefed
374 /// receiver type (but without autoref applied yet).
375 pub(crate) fn lookup_method(
376     ty: &Canonical<Ty>,
377     db: &dyn HirDatabase,
378     env: Arc<TraitEnvironment>,
379     krate: CrateId,
380     traits_in_scope: &FxHashSet<TraitId>,
381     visible_from_module: Option<ModuleId>,
382     name: &Name,
383 ) -> Option<(Ty, FunctionId)> {
384     iterate_method_candidates(
385         ty,
386         db,
387         env,
388         krate,
389         traits_in_scope,
390         visible_from_module,
391         Some(name),
392         LookupMode::MethodCall,
393         |ty, f| match f {
394             AssocItemId::FunctionId(f) => Some((ty.clone(), f)),
395             _ => None,
396         },
397     )
398 }
399
400 /// Whether we're looking up a dotted method call (like `v.len()`) or a path
401 /// (like `Vec::new`).
402 #[derive(Copy, Clone, Debug, PartialEq, Eq)]
403 pub enum LookupMode {
404     /// Looking up a method call like `v.len()`: We only consider candidates
405     /// that have a `self` parameter, and do autoderef.
406     MethodCall,
407     /// Looking up a path like `Vec::new` or `Vec::default`: We consider all
408     /// candidates including associated constants, but don't do autoderef.
409     Path,
410 }
411
412 // This would be nicer if it just returned an iterator, but that runs into
413 // lifetime problems, because we need to borrow temp `CrateImplDefs`.
414 // FIXME add a context type here?
415 pub fn iterate_method_candidates<T>(
416     ty: &Canonical<Ty>,
417     db: &dyn HirDatabase,
418     env: Arc<TraitEnvironment>,
419     krate: CrateId,
420     traits_in_scope: &FxHashSet<TraitId>,
421     visible_from_module: Option<ModuleId>,
422     name: Option<&Name>,
423     mode: LookupMode,
424     mut callback: impl FnMut(&Ty, AssocItemId) -> Option<T>,
425 ) -> Option<T> {
426     let mut slot = None;
427     iterate_method_candidates_dyn(
428         ty,
429         db,
430         env,
431         krate,
432         traits_in_scope,
433         visible_from_module,
434         name,
435         mode,
436         &mut |ty, item| {
437             assert!(slot.is_none());
438             slot = callback(ty, item);
439             slot.is_some()
440         },
441     );
442     slot
443 }
444
445 pub fn iterate_method_candidates_dyn(
446     ty: &Canonical<Ty>,
447     db: &dyn HirDatabase,
448     env: Arc<TraitEnvironment>,
449     krate: CrateId,
450     traits_in_scope: &FxHashSet<TraitId>,
451     visible_from_module: Option<ModuleId>,
452     name: Option<&Name>,
453     mode: LookupMode,
454     callback: &mut dyn FnMut(&Ty, AssocItemId) -> bool,
455 ) -> bool {
456     match mode {
457         LookupMode::MethodCall => {
458             // For method calls, rust first does any number of autoderef, and then one
459             // autoref (i.e. when the method takes &self or &mut self). We just ignore
460             // the autoref currently -- when we find a method matching the given name,
461             // we assume it fits.
462
463             // Also note that when we've got a receiver like &S, even if the method we
464             // find in the end takes &self, we still do the autoderef step (just as
465             // rustc does an autoderef and then autoref again).
466             let ty = InEnvironment { goal: ty.clone(), environment: env.env.clone() };
467
468             // We have to be careful about the order we're looking at candidates
469             // in here. Consider the case where we're resolving `x.clone()`
470             // where `x: &Vec<_>`. This resolves to the clone method with self
471             // type `Vec<_>`, *not* `&_`. I.e. we need to consider methods where
472             // the receiver type exactly matches before cases where we have to
473             // do autoref. But in the autoderef steps, the `&_` self type comes
474             // up *before* the `Vec<_>` self type.
475             //
476             // On the other hand, we don't want to just pick any by-value method
477             // before any by-autoref method; it's just that we need to consider
478             // the methods by autoderef order of *receiver types*, not *self
479             // types*.
480
481             let deref_chain = autoderef_method_receiver(db, krate, ty);
482             for i in 0..deref_chain.len() {
483                 if iterate_method_candidates_with_autoref(
484                     &deref_chain[i..],
485                     db,
486                     env.clone(),
487                     krate,
488                     traits_in_scope,
489                     visible_from_module,
490                     name,
491                     callback,
492                 ) {
493                     return true;
494                 }
495             }
496             false
497         }
498         LookupMode::Path => {
499             // No autoderef for path lookups
500             iterate_method_candidates_for_self_ty(
501                 ty,
502                 db,
503                 env,
504                 krate,
505                 traits_in_scope,
506                 visible_from_module,
507                 name,
508                 callback,
509             )
510         }
511     }
512 }
513
514 fn iterate_method_candidates_with_autoref(
515     deref_chain: &[Canonical<Ty>],
516     db: &dyn HirDatabase,
517     env: Arc<TraitEnvironment>,
518     krate: CrateId,
519     traits_in_scope: &FxHashSet<TraitId>,
520     visible_from_module: Option<ModuleId>,
521     name: Option<&Name>,
522     mut callback: &mut dyn FnMut(&Ty, AssocItemId) -> bool,
523 ) -> bool {
524     if iterate_method_candidates_by_receiver(
525         &deref_chain[0],
526         &deref_chain[1..],
527         db,
528         env.clone(),
529         krate,
530         traits_in_scope,
531         visible_from_module,
532         name,
533         &mut callback,
534     ) {
535         return true;
536     }
537     let refed = Canonical {
538         binders: deref_chain[0].binders.clone(),
539         value: TyKind::Ref(Mutability::Not, static_lifetime(), deref_chain[0].value.clone())
540             .intern(&Interner),
541     };
542     if iterate_method_candidates_by_receiver(
543         &refed,
544         deref_chain,
545         db,
546         env.clone(),
547         krate,
548         traits_in_scope,
549         visible_from_module,
550         name,
551         &mut callback,
552     ) {
553         return true;
554     }
555     let ref_muted = Canonical {
556         binders: deref_chain[0].binders.clone(),
557         value: TyKind::Ref(Mutability::Mut, static_lifetime(), deref_chain[0].value.clone())
558             .intern(&Interner),
559     };
560     if iterate_method_candidates_by_receiver(
561         &ref_muted,
562         deref_chain,
563         db,
564         env,
565         krate,
566         traits_in_scope,
567         visible_from_module,
568         name,
569         &mut callback,
570     ) {
571         return true;
572     }
573     false
574 }
575
576 fn iterate_method_candidates_by_receiver(
577     receiver_ty: &Canonical<Ty>,
578     rest_of_deref_chain: &[Canonical<Ty>],
579     db: &dyn HirDatabase,
580     env: Arc<TraitEnvironment>,
581     krate: CrateId,
582     traits_in_scope: &FxHashSet<TraitId>,
583     visible_from_module: Option<ModuleId>,
584     name: Option<&Name>,
585     mut callback: &mut dyn FnMut(&Ty, AssocItemId) -> bool,
586 ) -> bool {
587     // We're looking for methods with *receiver* type receiver_ty. These could
588     // be found in any of the derefs of receiver_ty, so we have to go through
589     // that.
590     for self_ty in std::iter::once(receiver_ty).chain(rest_of_deref_chain) {
591         if iterate_inherent_methods(
592             self_ty,
593             db,
594             env.clone(),
595             name,
596             Some(receiver_ty),
597             krate,
598             visible_from_module,
599             &mut callback,
600         ) {
601             return true;
602         }
603     }
604     for self_ty in std::iter::once(receiver_ty).chain(rest_of_deref_chain) {
605         if iterate_trait_method_candidates(
606             self_ty,
607             db,
608             env.clone(),
609             krate,
610             traits_in_scope,
611             name,
612             Some(receiver_ty),
613             &mut callback,
614         ) {
615             return true;
616         }
617     }
618     false
619 }
620
621 fn iterate_method_candidates_for_self_ty(
622     self_ty: &Canonical<Ty>,
623     db: &dyn HirDatabase,
624     env: Arc<TraitEnvironment>,
625     krate: CrateId,
626     traits_in_scope: &FxHashSet<TraitId>,
627     visible_from_module: Option<ModuleId>,
628     name: Option<&Name>,
629     mut callback: &mut dyn FnMut(&Ty, AssocItemId) -> bool,
630 ) -> bool {
631     if iterate_inherent_methods(
632         self_ty,
633         db,
634         env.clone(),
635         name,
636         None,
637         krate,
638         visible_from_module,
639         &mut callback,
640     ) {
641         return true;
642     }
643     iterate_trait_method_candidates(self_ty, db, env, krate, traits_in_scope, name, None, callback)
644 }
645
646 fn iterate_trait_method_candidates(
647     self_ty: &Canonical<Ty>,
648     db: &dyn HirDatabase,
649     env: Arc<TraitEnvironment>,
650     krate: CrateId,
651     traits_in_scope: &FxHashSet<TraitId>,
652     name: Option<&Name>,
653     receiver_ty: Option<&Canonical<Ty>>,
654     callback: &mut dyn FnMut(&Ty, AssocItemId) -> bool,
655 ) -> bool {
656     let receiver_is_array = matches!(self_ty.value.kind(&Interner), chalk_ir::TyKind::Array(..));
657     // if ty is `dyn Trait`, the trait doesn't need to be in scope
658     let inherent_trait =
659         self_ty.value.dyn_trait().into_iter().flat_map(|t| all_super_traits(db.upcast(), t));
660     let env_traits = if let TyKind::Placeholder(_) = self_ty.value.kind(&Interner) {
661         // if we have `T: Trait` in the param env, the trait doesn't need to be in scope
662         env.traits_in_scope_from_clauses(&self_ty.value)
663             .flat_map(|t| all_super_traits(db.upcast(), t))
664             .collect()
665     } else {
666         Vec::new()
667     };
668     let traits =
669         inherent_trait.chain(env_traits.into_iter()).chain(traits_in_scope.iter().copied());
670     'traits: for t in traits {
671         let data = db.trait_data(t);
672
673         // Traits annotated with `#[rustc_skip_array_during_method_dispatch]` are skipped during
674         // method resolution, if the receiver is an array, and we're compiling for editions before
675         // 2021.
676         // This is to make `[a].into_iter()` not break code with the new `IntoIterator` impl for
677         // arrays.
678         if data.skip_array_during_method_dispatch && receiver_is_array {
679             // FIXME: this should really be using the edition of the method name's span, in case it
680             // comes from a macro
681             if db.crate_graph()[krate].edition < Edition::Edition2021 {
682                 continue;
683             }
684         }
685
686         // we'll be lazy about checking whether the type implements the
687         // trait, but if we find out it doesn't, we'll skip the rest of the
688         // iteration
689         let mut known_implemented = false;
690         for (_name, item) in data.items.iter() {
691             // Don't pass a `visible_from_module` down to `is_valid_candidate`,
692             // since only inherent methods should be included into visibility checking.
693             if !is_valid_candidate(db, env.clone(), name, receiver_ty, *item, self_ty, None) {
694                 continue;
695             }
696             if !known_implemented {
697                 let goal = generic_implements_goal(db, env.clone(), t, self_ty.clone());
698                 if db.trait_solve(krate, goal.cast(&Interner)).is_none() {
699                     continue 'traits;
700                 }
701             }
702             known_implemented = true;
703             // FIXME: we shouldn't be ignoring the binders here
704             if callback(&self_ty.value, *item) {
705                 return true;
706             }
707         }
708     }
709     false
710 }
711
712 fn filter_inherent_impls_for_self_ty<'i>(
713     impls: &'i InherentImpls,
714     self_ty: &Ty,
715 ) -> impl Iterator<Item = &'i ImplId> {
716     // inherent methods on arrays are fingerprinted as [T; {unknown}], so we must also consider them when
717     // resolving a method call on an array with a known len
718     let array_impls = {
719         if let TyKind::Array(parameters, array_len) = self_ty.kind(&Interner) {
720             if !array_len.is_unknown() {
721                 let unknown_array_len_ty =
722                     TyKind::Array(parameters.clone(), consteval::usize_const(None))
723                         .intern(&Interner);
724
725                 Some(impls.for_self_ty(&unknown_array_len_ty))
726             } else {
727                 None
728             }
729         } else {
730             None
731         }
732     }
733     .into_iter()
734     .flatten();
735
736     impls.for_self_ty(self_ty).iter().chain(array_impls)
737 }
738
739 fn iterate_inherent_methods(
740     self_ty: &Canonical<Ty>,
741     db: &dyn HirDatabase,
742     env: Arc<TraitEnvironment>,
743     name: Option<&Name>,
744     receiver_ty: Option<&Canonical<Ty>>,
745     krate: CrateId,
746     visible_from_module: Option<ModuleId>,
747     callback: &mut dyn FnMut(&Ty, AssocItemId) -> bool,
748 ) -> bool {
749     let def_crates = match def_crates(db, &self_ty.value, krate) {
750         Some(k) => k,
751         None => return false,
752     };
753     for krate in def_crates {
754         let impls = db.inherent_impls_in_crate(krate);
755
756         let impls_for_self_ty = filter_inherent_impls_for_self_ty(&impls, &self_ty.value);
757
758         for &impl_def in impls_for_self_ty {
759             for &item in db.impl_data(impl_def).items.iter() {
760                 if !is_valid_candidate(
761                     db,
762                     env.clone(),
763                     name,
764                     receiver_ty,
765                     item,
766                     self_ty,
767                     visible_from_module,
768                 ) {
769                     continue;
770                 }
771                 // we have to check whether the self type unifies with the type
772                 // that the impl is for. If we have a receiver type, this
773                 // already happens in `is_valid_candidate` above; if not, we
774                 // check it here
775                 if receiver_ty.is_none()
776                     && inherent_impl_substs(db, env.clone(), impl_def, self_ty).is_none()
777                 {
778                     cov_mark::hit!(impl_self_type_match_without_receiver);
779                     continue;
780                 }
781                 let receiver_ty = receiver_ty.map(|x| &x.value).unwrap_or(&self_ty.value);
782                 if callback(receiver_ty, item) {
783                     return true;
784                 }
785             }
786         }
787     }
788     false
789 }
790
791 /// Returns the self type for the index trait call.
792 pub fn resolve_indexing_op(
793     db: &dyn HirDatabase,
794     ty: &Canonical<Ty>,
795     env: Arc<TraitEnvironment>,
796     krate: CrateId,
797     index_trait: TraitId,
798 ) -> Option<Canonical<Ty>> {
799     let ty = InEnvironment { goal: ty.clone(), environment: env.env.clone() };
800     let deref_chain = autoderef_method_receiver(db, krate, ty);
801     for ty in deref_chain {
802         let goal = generic_implements_goal(db, env.clone(), index_trait, ty.clone());
803         if db.trait_solve(krate, goal.cast(&Interner)).is_some() {
804             return Some(ty);
805         }
806     }
807     None
808 }
809
810 fn is_transformed_receiver_ty_equal(transformed_receiver_ty: &Ty, receiver_ty: &Ty) -> bool {
811     if transformed_receiver_ty == receiver_ty {
812         return true;
813     }
814
815     // a transformed receiver may be considered equal (and a valid method call candidate) if it is an array
816     // with an unknown (i.e. generic) length, and the receiver is an array with the same item type but a known len,
817     // this allows inherent methods on arrays to be considered valid resolution candidates
818     match (transformed_receiver_ty.kind(&Interner), receiver_ty.kind(&Interner)) {
819         (
820             TyKind::Array(transformed_array_ty, transformed_array_len),
821             TyKind::Array(receiver_array_ty, receiver_array_len),
822         ) if transformed_array_ty == receiver_array_ty
823             && transformed_array_len.is_unknown()
824             && !receiver_array_len.is_unknown() =>
825         {
826             true
827         }
828         _ => false,
829     }
830 }
831
832 fn is_valid_candidate(
833     db: &dyn HirDatabase,
834     env: Arc<TraitEnvironment>,
835     name: Option<&Name>,
836     receiver_ty: Option<&Canonical<Ty>>,
837     item: AssocItemId,
838     self_ty: &Canonical<Ty>,
839     visible_from_module: Option<ModuleId>,
840 ) -> bool {
841     match item {
842         AssocItemId::FunctionId(m) => {
843             let data = db.function_data(m);
844             if let Some(name) = name {
845                 if &data.name != name {
846                     return false;
847                 }
848             }
849             if let Some(receiver_ty) = receiver_ty {
850                 if !data.has_self_param() {
851                     return false;
852                 }
853                 let transformed_receiver_ty = match transform_receiver_ty(db, env, m, self_ty) {
854                     Some(ty) => ty,
855                     None => return false,
856                 };
857
858                 if !is_transformed_receiver_ty_equal(&transformed_receiver_ty, &receiver_ty.value) {
859                     return false;
860                 }
861             }
862             if let Some(from_module) = visible_from_module {
863                 if !db.function_visibility(m).is_visible_from(db.upcast(), from_module) {
864                     cov_mark::hit!(autoderef_candidate_not_visible);
865                     return false;
866                 }
867             }
868
869             true
870         }
871         AssocItemId::ConstId(c) => {
872             let data = db.const_data(c);
873             name.map_or(true, |name| data.name.as_ref() == Some(name)) && receiver_ty.is_none()
874         }
875         _ => false,
876     }
877 }
878
879 pub(crate) fn inherent_impl_substs(
880     db: &dyn HirDatabase,
881     env: Arc<TraitEnvironment>,
882     impl_id: ImplId,
883     self_ty: &Canonical<Ty>,
884 ) -> Option<Substitution> {
885     // we create a var for each type parameter of the impl; we need to keep in
886     // mind here that `self_ty` might have vars of its own
887     let self_ty_vars = self_ty.binders.len(&Interner);
888     let vars = TyBuilder::subst_for_def(db, impl_id)
889         .fill_with_bound_vars(DebruijnIndex::INNERMOST, self_ty_vars)
890         .build();
891     let self_ty_with_vars = db.impl_self_ty(impl_id).substitute(&Interner, &vars);
892     let mut kinds = self_ty.binders.interned().to_vec();
893     kinds.extend(
894         iter::repeat(chalk_ir::WithKind::new(
895             chalk_ir::VariableKind::Ty(chalk_ir::TyVariableKind::General),
896             UniverseIndex::ROOT,
897         ))
898         .take(vars.len(&Interner)),
899     );
900     let tys = Canonical {
901         binders: CanonicalVarKinds::from_iter(&Interner, kinds),
902         value: (self_ty_with_vars, self_ty.value.clone()),
903     };
904     let substs = super::infer::unify(db, env, &tys)?;
905     // We only want the substs for the vars we added, not the ones from self_ty.
906     // Also, if any of the vars we added are still in there, we replace them by
907     // Unknown. I think this can only really happen if self_ty contained
908     // Unknown, and in that case we want the result to contain Unknown in those
909     // places again.
910     let suffix =
911         Substitution::from_iter(&Interner, substs.iter(&Interner).cloned().skip(self_ty_vars));
912     Some(fallback_bound_vars(suffix, self_ty_vars))
913 }
914
915 /// This replaces any 'free' Bound vars in `s` (i.e. those with indices past
916 /// num_vars_to_keep) by `TyKind::Unknown`.
917 fn fallback_bound_vars(s: Substitution, num_vars_to_keep: usize) -> Substitution {
918     crate::fold_free_vars(s, |bound, binders| {
919         if bound.index >= num_vars_to_keep && bound.debruijn == DebruijnIndex::INNERMOST {
920             TyKind::Error.intern(&Interner)
921         } else {
922             bound.shifted_in_from(binders).to_ty(&Interner)
923         }
924     })
925 }
926
927 fn transform_receiver_ty(
928     db: &dyn HirDatabase,
929     env: Arc<TraitEnvironment>,
930     function_id: FunctionId,
931     self_ty: &Canonical<Ty>,
932 ) -> Option<Ty> {
933     let substs = match function_id.lookup(db.upcast()).container {
934         AssocContainerId::TraitId(_) => TyBuilder::subst_for_def(db, function_id)
935             .push(self_ty.value.clone())
936             .fill_with_unknown()
937             .build(),
938         AssocContainerId::ImplId(impl_id) => {
939             let impl_substs = inherent_impl_substs(db, env, impl_id, self_ty)?;
940             TyBuilder::subst_for_def(db, function_id)
941                 .use_parent_substs(&impl_substs)
942                 .fill_with_unknown()
943                 .build()
944         }
945         AssocContainerId::ModuleId(_) => unreachable!(),
946     };
947     let sig = db.callable_item_signature(function_id.into());
948     Some(sig.map(|s| s.params()[0].clone()).substitute(&Interner, &substs))
949 }
950
951 pub fn implements_trait(
952     ty: &Canonical<Ty>,
953     db: &dyn HirDatabase,
954     env: Arc<TraitEnvironment>,
955     krate: CrateId,
956     trait_: TraitId,
957 ) -> bool {
958     let goal = generic_implements_goal(db, env, trait_, ty.clone());
959     let solution = db.trait_solve(krate, goal.cast(&Interner));
960
961     solution.is_some()
962 }
963
964 pub fn implements_trait_unique(
965     ty: &Canonical<Ty>,
966     db: &dyn HirDatabase,
967     env: Arc<TraitEnvironment>,
968     krate: CrateId,
969     trait_: TraitId,
970 ) -> bool {
971     let goal = generic_implements_goal(db, env, trait_, ty.clone());
972     let solution = db.trait_solve(krate, goal.cast(&Interner));
973
974     matches!(solution, Some(crate::Solution::Unique(_)))
975 }
976
977 /// This creates Substs for a trait with the given Self type and type variables
978 /// for all other parameters, to query Chalk with it.
979 fn generic_implements_goal(
980     db: &dyn HirDatabase,
981     env: Arc<TraitEnvironment>,
982     trait_: TraitId,
983     self_ty: Canonical<Ty>,
984 ) -> Canonical<InEnvironment<super::DomainGoal>> {
985     let mut kinds = self_ty.binders.interned().to_vec();
986     let trait_ref = TyBuilder::trait_ref(db, trait_)
987         .push(self_ty.value)
988         .fill_with_bound_vars(DebruijnIndex::INNERMOST, kinds.len())
989         .build();
990     kinds.extend(
991         iter::repeat(chalk_ir::WithKind::new(
992             chalk_ir::VariableKind::Ty(chalk_ir::TyVariableKind::General),
993             UniverseIndex::ROOT,
994         ))
995         .take(trait_ref.substitution.len(&Interner) - 1),
996     );
997     let obligation = trait_ref.cast(&Interner);
998     Canonical {
999         binders: CanonicalVarKinds::from_iter(&Interner, kinds),
1000         value: InEnvironment::new(&env.env, obligation),
1001     }
1002 }
1003
1004 fn autoderef_method_receiver(
1005     db: &dyn HirDatabase,
1006     krate: CrateId,
1007     ty: InEnvironment<Canonical<Ty>>,
1008 ) -> Vec<Canonical<Ty>> {
1009     let mut deref_chain: Vec<_> = autoderef::autoderef(db, Some(krate), ty).collect();
1010     // As a last step, we can do array unsizing (that's the only unsizing that rustc does for method receivers!)
1011     if let Some(TyKind::Array(parameters, _)) =
1012         deref_chain.last().map(|ty| ty.value.kind(&Interner))
1013     {
1014         let kinds = deref_chain.last().unwrap().binders.clone();
1015         let unsized_ty = TyKind::Slice(parameters.clone()).intern(&Interner);
1016         deref_chain.push(Canonical { value: unsized_ty, binders: kinds })
1017     }
1018     deref_chain
1019 }