2019-10-12 15:39:20 +00:00
|
|
|
//! Type inference for patterns.
|
|
|
|
|
|
|
|
use std::iter::repeat;
|
|
|
|
use std::sync::Arc;
|
|
|
|
|
2021-03-01 18:30:34 +00:00
|
|
|
use chalk_ir::Mutability;
|
2019-11-27 09:13:07 +00:00
|
|
|
use hir_def::{
|
2020-06-24 09:57:28 +00:00
|
|
|
expr::{BindingAnnotation, Expr, Literal, Pat, PatId, RecordFieldPat},
|
2019-11-27 09:13:07 +00:00
|
|
|
path::Path,
|
2020-04-25 12:23:34 +00:00
|
|
|
FieldId,
|
2019-11-27 09:13:07 +00:00
|
|
|
};
|
|
|
|
use hir_expand::name::Name;
|
2019-10-12 15:39:20 +00:00
|
|
|
|
2020-04-01 18:27:47 +00:00
|
|
|
use super::{BindingMode, Expectation, InferenceContext};
|
2021-03-15 20:02:34 +00:00
|
|
|
use crate::{
|
2021-03-21 17:18:25 +00:00
|
|
|
lower::lower_to_chalk_mutability,
|
|
|
|
utils::{generics, variant_data},
|
|
|
|
Interner, Substitution, Ty, TyKind,
|
2021-03-15 20:02:34 +00:00
|
|
|
};
|
2019-10-12 15:39:20 +00:00
|
|
|
|
2020-03-13 15:05:46 +00:00
|
|
|
impl<'a> InferenceContext<'a> {
|
2019-10-12 15:39:20 +00:00
|
|
|
fn infer_tuple_struct_pat(
|
|
|
|
&mut self,
|
|
|
|
path: Option<&Path>,
|
|
|
|
subpats: &[PatId],
|
|
|
|
expected: &Ty,
|
|
|
|
default_bm: BindingMode,
|
2020-03-24 11:40:58 +00:00
|
|
|
id: PatId,
|
2020-11-24 13:52:46 +00:00
|
|
|
ellipsis: Option<usize>,
|
2019-10-12 15:39:20 +00:00
|
|
|
) -> Ty {
|
|
|
|
let (ty, def) = self.resolve_variant(path);
|
2020-03-13 15:05:46 +00:00
|
|
|
let var_data = def.map(|it| variant_data(self.db.upcast(), it));
|
2020-03-24 11:40:58 +00:00
|
|
|
if let Some(variant) = def {
|
|
|
|
self.write_variant_resolution(id.into(), variant);
|
|
|
|
}
|
2019-10-12 15:39:20 +00:00
|
|
|
self.unify(&ty, expected);
|
|
|
|
|
2021-04-01 19:04:02 +00:00
|
|
|
let substs = ty.substs().cloned().unwrap_or_else(|| Substitution::empty(&Interner));
|
2019-10-12 15:39:20 +00:00
|
|
|
|
2020-02-18 12:53:02 +00:00
|
|
|
let field_tys = def.map(|it| self.db.field_types(it)).unwrap_or_default();
|
2020-11-24 13:52:46 +00:00
|
|
|
let (pre, post) = match ellipsis {
|
|
|
|
Some(idx) => subpats.split_at(idx),
|
2021-03-21 12:13:34 +00:00
|
|
|
None => (subpats, &[][..]),
|
2020-11-24 13:52:46 +00:00
|
|
|
};
|
|
|
|
let post_idx_offset = field_tys.iter().count() - post.len();
|
|
|
|
|
|
|
|
let pre_iter = pre.iter().enumerate();
|
|
|
|
let post_iter = (post_idx_offset..).zip(post.iter());
|
|
|
|
for (i, &subpat) in pre_iter.chain(post_iter) {
|
2019-11-27 13:25:01 +00:00
|
|
|
let expected_ty = var_data
|
|
|
|
.as_ref()
|
|
|
|
.and_then(|d| d.field(&Name::new_tuple_field(i)))
|
2021-03-13 13:44:51 +00:00
|
|
|
.map_or(self.err_ty(), |field| field_tys[field].clone().subst(&substs));
|
2019-10-12 15:39:20 +00:00
|
|
|
let expected_ty = self.normalize_associated_types_in(expected_ty);
|
|
|
|
self.infer_pat(subpat, &expected_ty, default_bm);
|
|
|
|
}
|
|
|
|
|
|
|
|
ty
|
|
|
|
}
|
|
|
|
|
|
|
|
fn infer_record_pat(
|
|
|
|
&mut self,
|
|
|
|
path: Option<&Path>,
|
|
|
|
subpats: &[RecordFieldPat],
|
|
|
|
expected: &Ty,
|
|
|
|
default_bm: BindingMode,
|
|
|
|
id: PatId,
|
|
|
|
) -> Ty {
|
|
|
|
let (ty, def) = self.resolve_variant(path);
|
2020-03-13 15:05:46 +00:00
|
|
|
let var_data = def.map(|it| variant_data(self.db.upcast(), it));
|
2019-10-12 15:39:20 +00:00
|
|
|
if let Some(variant) = def {
|
|
|
|
self.write_variant_resolution(id.into(), variant);
|
|
|
|
}
|
|
|
|
|
|
|
|
self.unify(&ty, expected);
|
|
|
|
|
2021-04-01 19:04:02 +00:00
|
|
|
let substs = ty.substs().cloned().unwrap_or_else(|| Substitution::empty(&Interner));
|
2019-10-12 15:39:20 +00:00
|
|
|
|
2020-02-18 12:53:02 +00:00
|
|
|
let field_tys = def.map(|it| self.db.field_types(it)).unwrap_or_default();
|
2019-10-12 15:39:20 +00:00
|
|
|
for subpat in subpats {
|
2019-11-27 13:25:01 +00:00
|
|
|
let matching_field = var_data.as_ref().and_then(|it| it.field(&subpat.name));
|
2020-04-18 20:05:06 +00:00
|
|
|
if let Some(local_id) = matching_field {
|
2020-04-25 12:23:34 +00:00
|
|
|
let field_def = FieldId { parent: def.unwrap(), local_id };
|
2020-09-05 01:06:05 +00:00
|
|
|
self.result.record_pat_field_resolutions.insert(subpat.pat, field_def);
|
2020-04-18 20:05:06 +00:00
|
|
|
}
|
|
|
|
|
2021-03-13 13:44:51 +00:00
|
|
|
let expected_ty = matching_field
|
|
|
|
.map_or(self.err_ty(), |field| field_tys[field].clone().subst(&substs));
|
2019-10-12 15:39:20 +00:00
|
|
|
let expected_ty = self.normalize_associated_types_in(expected_ty);
|
|
|
|
self.infer_pat(subpat.pat, &expected_ty, default_bm);
|
|
|
|
}
|
|
|
|
|
|
|
|
ty
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(super) fn infer_pat(
|
|
|
|
&mut self,
|
|
|
|
pat: PatId,
|
|
|
|
mut expected: &Ty,
|
|
|
|
mut default_bm: BindingMode,
|
|
|
|
) -> Ty {
|
|
|
|
let body = Arc::clone(&self.body); // avoid borrow checker problem
|
|
|
|
|
2020-06-24 09:57:28 +00:00
|
|
|
if is_non_ref_pat(&body, pat) {
|
2019-10-12 15:39:20 +00:00
|
|
|
while let Some((inner, mutability)) = expected.as_reference() {
|
|
|
|
expected = inner;
|
|
|
|
default_bm = match default_bm {
|
|
|
|
BindingMode::Move => BindingMode::Ref(mutability),
|
2021-03-01 18:30:34 +00:00
|
|
|
BindingMode::Ref(Mutability::Not) => BindingMode::Ref(Mutability::Not),
|
2019-10-12 15:39:20 +00:00
|
|
|
BindingMode::Ref(Mutability::Mut) => BindingMode::Ref(mutability),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if let Pat::Ref { .. } = &body[pat] {
|
2021-03-08 20:19:44 +00:00
|
|
|
cov_mark::hit!(match_ergonomics_ref);
|
2019-10-12 15:39:20 +00:00
|
|
|
// When you encounter a `&pat` pattern, reset to Move.
|
|
|
|
// This is so that `w` is by value: `let (_, &w) = &(1, &2);`
|
|
|
|
default_bm = BindingMode::Move;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lose mutability.
|
|
|
|
let default_bm = default_bm;
|
|
|
|
let expected = expected;
|
|
|
|
|
|
|
|
let ty = match &body[pat] {
|
2020-11-24 13:52:46 +00:00
|
|
|
&Pat::Tuple { ref args, ellipsis } => {
|
2019-10-12 15:39:20 +00:00
|
|
|
let expectations = match expected.as_tuple() {
|
|
|
|
Some(parameters) => &*parameters.0,
|
|
|
|
_ => &[],
|
|
|
|
};
|
|
|
|
|
2020-11-24 12:41:21 +00:00
|
|
|
let (pre, post) = match ellipsis {
|
2020-11-24 13:52:46 +00:00
|
|
|
Some(idx) => args.split_at(idx),
|
2020-11-24 12:41:21 +00:00
|
|
|
None => (&args[..], &[][..]),
|
|
|
|
};
|
2020-11-24 13:52:46 +00:00
|
|
|
let n_uncovered_patterns = expectations.len().saturating_sub(args.len());
|
2021-03-13 13:44:51 +00:00
|
|
|
let err_ty = self.err_ty();
|
2021-04-01 19:04:02 +00:00
|
|
|
let mut expectations_iter =
|
|
|
|
expectations.iter().map(|a| a.assert_ty_ref(&Interner)).chain(repeat(&err_ty));
|
2020-11-24 12:41:21 +00:00
|
|
|
let mut infer_pat = |(&pat, ty)| self.infer_pat(pat, ty, default_bm);
|
|
|
|
|
2020-11-24 13:52:46 +00:00
|
|
|
let mut inner_tys = Vec::with_capacity(n_uncovered_patterns + args.len());
|
2020-11-24 12:41:21 +00:00
|
|
|
inner_tys.extend(pre.iter().zip(expectations_iter.by_ref()).map(&mut infer_pat));
|
2020-11-24 13:52:46 +00:00
|
|
|
inner_tys.extend(expectations_iter.by_ref().take(n_uncovered_patterns).cloned());
|
2020-11-24 12:41:21 +00:00
|
|
|
inner_tys.extend(post.iter().zip(expectations_iter).map(infer_pat));
|
|
|
|
|
2021-04-01 19:04:02 +00:00
|
|
|
TyKind::Tuple(inner_tys.len(), Substitution::from_iter(&Interner, inner_tys))
|
|
|
|
.intern(&Interner)
|
2019-10-12 15:39:20 +00:00
|
|
|
}
|
2020-02-09 18:57:01 +00:00
|
|
|
Pat::Or(ref pats) => {
|
|
|
|
if let Some((first_pat, rest)) = pats.split_first() {
|
|
|
|
let ty = self.infer_pat(*first_pat, expected, default_bm);
|
|
|
|
for pat in rest {
|
|
|
|
self.infer_pat(*pat, expected, default_bm);
|
|
|
|
}
|
|
|
|
ty
|
|
|
|
} else {
|
2021-03-13 13:44:51 +00:00
|
|
|
self.err_ty()
|
2020-02-09 18:57:01 +00:00
|
|
|
}
|
|
|
|
}
|
2019-10-12 15:39:20 +00:00
|
|
|
Pat::Ref { pat, mutability } => {
|
2021-03-01 18:30:34 +00:00
|
|
|
let mutability = lower_to_chalk_mutability(*mutability);
|
2019-10-12 15:39:20 +00:00
|
|
|
let expectation = match expected.as_reference() {
|
|
|
|
Some((inner_ty, exp_mut)) => {
|
2021-03-01 18:30:34 +00:00
|
|
|
if mutability != exp_mut {
|
2019-10-12 15:39:20 +00:00
|
|
|
// FIXME: emit type error?
|
|
|
|
}
|
2021-03-14 16:25:29 +00:00
|
|
|
inner_ty.clone()
|
2019-10-12 15:39:20 +00:00
|
|
|
}
|
2021-03-14 16:25:29 +00:00
|
|
|
_ => self.result.standard_types.unknown.clone(),
|
2019-10-12 15:39:20 +00:00
|
|
|
};
|
2021-03-14 16:25:29 +00:00
|
|
|
let subty = self.infer_pat(*pat, &expectation, default_bm);
|
2021-03-14 16:40:55 +00:00
|
|
|
TyKind::Ref(mutability, subty).intern(&Interner)
|
2019-10-12 15:39:20 +00:00
|
|
|
}
|
2020-11-24 13:52:46 +00:00
|
|
|
Pat::TupleStruct { path: p, args: subpats, ellipsis } => self.infer_tuple_struct_pat(
|
|
|
|
p.as_ref(),
|
|
|
|
subpats,
|
|
|
|
expected,
|
|
|
|
default_bm,
|
|
|
|
pat,
|
|
|
|
*ellipsis,
|
|
|
|
),
|
2020-04-09 03:23:51 +00:00
|
|
|
Pat::Record { path: p, args: fields, ellipsis: _ } => {
|
2019-10-12 15:39:20 +00:00
|
|
|
self.infer_record_pat(p.as_ref(), fields, expected, default_bm, pat)
|
|
|
|
}
|
|
|
|
Pat::Path(path) => {
|
|
|
|
// FIXME use correct resolver for the surrounding expression
|
|
|
|
let resolver = self.resolver.clone();
|
2021-03-13 13:44:51 +00:00
|
|
|
self.infer_path(&resolver, &path, pat.into()).unwrap_or(self.err_ty())
|
2019-10-12 15:39:20 +00:00
|
|
|
}
|
|
|
|
Pat::Bind { mode, name: _, subpat } => {
|
|
|
|
let mode = if mode == &BindingAnnotation::Unannotated {
|
|
|
|
default_bm
|
|
|
|
} else {
|
|
|
|
BindingMode::convert(*mode)
|
|
|
|
};
|
|
|
|
let inner_ty = if let Some(subpat) = subpat {
|
|
|
|
self.infer_pat(*subpat, expected, default_bm)
|
|
|
|
} else {
|
|
|
|
expected.clone()
|
|
|
|
};
|
|
|
|
let inner_ty = self.insert_type_vars_shallow(inner_ty);
|
|
|
|
|
|
|
|
let bound_ty = match mode {
|
|
|
|
BindingMode::Ref(mutability) => {
|
2021-03-14 16:40:55 +00:00
|
|
|
TyKind::Ref(mutability, inner_ty.clone()).intern(&Interner)
|
2019-10-12 15:39:20 +00:00
|
|
|
}
|
|
|
|
BindingMode::Move => inner_ty.clone(),
|
|
|
|
};
|
2019-12-01 19:30:28 +00:00
|
|
|
let bound_ty = self.resolve_ty_as_possible(bound_ty);
|
2019-10-12 15:39:20 +00:00
|
|
|
self.write_pat_ty(pat, bound_ty);
|
|
|
|
return inner_ty;
|
|
|
|
}
|
2020-06-25 21:05:55 +00:00
|
|
|
Pat::Slice { prefix, slice, suffix } => {
|
2021-04-03 11:08:29 +00:00
|
|
|
let (container_ty, elem_ty): (fn(_) -> _, _) = match expected.kind(&Interner) {
|
2021-03-14 16:40:55 +00:00
|
|
|
TyKind::Array(st) => (TyKind::Array, st.clone()),
|
|
|
|
TyKind::Slice(st) => (TyKind::Slice, st.clone()),
|
2021-03-13 13:44:51 +00:00
|
|
|
_ => (TyKind::Slice, self.err_ty()),
|
2020-03-01 20:13:05 +00:00
|
|
|
};
|
|
|
|
|
2020-03-01 22:02:32 +00:00
|
|
|
for pat_id in prefix.iter().chain(suffix) {
|
|
|
|
self.infer_pat(*pat_id, &elem_ty, default_bm);
|
|
|
|
}
|
|
|
|
|
2021-03-14 16:40:55 +00:00
|
|
|
let pat_ty = container_ty(elem_ty).intern(&Interner);
|
2020-06-25 21:05:55 +00:00
|
|
|
if let Some(slice_pat_id) = slice {
|
|
|
|
self.infer_pat(*slice_pat_id, &pat_ty, default_bm);
|
|
|
|
}
|
|
|
|
|
|
|
|
pat_ty
|
2020-03-01 14:25:38 +00:00
|
|
|
}
|
2020-04-01 18:27:47 +00:00
|
|
|
Pat::Wild => expected.clone(),
|
|
|
|
Pat::Range { start, end } => {
|
|
|
|
let start_ty = self.infer_expr(*start, &Expectation::has_type(expected.clone()));
|
|
|
|
let end_ty = self.infer_expr(*end, &Expectation::has_type(start_ty));
|
|
|
|
end_ty
|
|
|
|
}
|
|
|
|
Pat::Lit(expr) => self.infer_expr(*expr, &Expectation::has_type(expected.clone())),
|
2020-09-12 19:18:57 +00:00
|
|
|
Pat::Box { inner } => match self.resolve_boxed_box() {
|
|
|
|
Some(box_adt) => {
|
2021-03-21 17:18:25 +00:00
|
|
|
let (inner_ty, alloc_ty) = match expected.as_adt() {
|
2021-04-01 19:04:02 +00:00
|
|
|
Some((adt, subst)) if adt == box_adt => (
|
|
|
|
subst.at(&Interner, 0).assert_ty_ref(&Interner).clone(),
|
|
|
|
subst.interned(&Interner).get(1).and_then(|a| a.ty(&Interner).cloned()),
|
|
|
|
),
|
2021-03-21 17:18:25 +00:00
|
|
|
_ => (self.result.standard_types.unknown.clone(), None),
|
2020-09-12 19:18:57 +00:00
|
|
|
};
|
|
|
|
|
2021-03-21 17:18:25 +00:00
|
|
|
let inner_ty = self.infer_pat(*inner, &inner_ty, default_bm);
|
|
|
|
let mut sb = Substitution::build_for_generics(&generics(
|
|
|
|
self.db.upcast(),
|
|
|
|
box_adt.into(),
|
|
|
|
));
|
|
|
|
sb = sb.push(inner_ty);
|
|
|
|
if sb.remaining() == 1 {
|
|
|
|
sb = sb.push(match alloc_ty {
|
|
|
|
Some(alloc_ty) if !alloc_ty.is_unknown() => alloc_ty,
|
|
|
|
_ => match self.db.generic_defaults(box_adt.into()).get(1) {
|
|
|
|
Some(alloc_ty) if !alloc_ty.value.is_unknown() => {
|
|
|
|
alloc_ty.value.clone()
|
|
|
|
}
|
|
|
|
_ => self.table.new_type_var(),
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
Ty::adt_ty(box_adt, sb.build())
|
2020-09-12 19:18:57 +00:00
|
|
|
}
|
2021-03-13 13:44:51 +00:00
|
|
|
None => self.err_ty(),
|
2020-09-12 19:18:57 +00:00
|
|
|
},
|
2020-12-23 11:15:38 +00:00
|
|
|
Pat::ConstBlock(expr) => {
|
|
|
|
self.infer_expr(*expr, &Expectation::has_type(expected.clone()))
|
|
|
|
}
|
2021-03-13 13:44:51 +00:00
|
|
|
Pat::Missing => self.err_ty(),
|
2019-10-12 15:39:20 +00:00
|
|
|
};
|
2021-03-13 13:44:51 +00:00
|
|
|
// use a new type variable if we got error type here
|
2019-10-12 15:39:20 +00:00
|
|
|
let ty = self.insert_type_vars_shallow(ty);
|
2020-02-21 15:56:34 +00:00
|
|
|
if !self.unify(&ty, expected) {
|
|
|
|
// FIXME record mismatch, we need to change the type of self.type_mismatches for that
|
|
|
|
}
|
2019-12-01 19:30:28 +00:00
|
|
|
let ty = self.resolve_ty_as_possible(ty);
|
2019-10-12 15:39:20 +00:00
|
|
|
self.write_pat_ty(pat, ty.clone());
|
|
|
|
ty
|
|
|
|
}
|
|
|
|
}
|
2020-06-24 09:57:28 +00:00
|
|
|
|
|
|
|
fn is_non_ref_pat(body: &hir_def::body::Body, pat: PatId) -> bool {
|
|
|
|
match &body[pat] {
|
|
|
|
Pat::Tuple { .. }
|
|
|
|
| Pat::TupleStruct { .. }
|
|
|
|
| Pat::Record { .. }
|
|
|
|
| Pat::Range { .. }
|
|
|
|
| Pat::Slice { .. } => true,
|
|
|
|
Pat::Or(pats) => pats.iter().all(|p| is_non_ref_pat(body, *p)),
|
2020-12-23 11:15:38 +00:00
|
|
|
// FIXME: ConstBlock/Path/Lit might actually evaluate to ref, but inference is unimplemented.
|
2020-06-24 09:57:28 +00:00
|
|
|
Pat::Path(..) => true,
|
2020-12-23 11:15:38 +00:00
|
|
|
Pat::ConstBlock(..) => true,
|
2020-06-24 09:57:28 +00:00
|
|
|
Pat::Lit(expr) => match body[*expr] {
|
|
|
|
Expr::Literal(Literal::String(..)) => false,
|
|
|
|
_ => true,
|
|
|
|
},
|
2020-09-12 19:18:57 +00:00
|
|
|
Pat::Wild | Pat::Bind { .. } | Pat::Ref { .. } | Pat::Box { .. } | Pat::Missing => false,
|
2020-06-24 09:57:28 +00:00
|
|
|
}
|
|
|
|
}
|