2018-12-29 13:27:13 -06:00
|
|
|
//! The type system. We currently use this to infer types for completion.
|
|
|
|
//!
|
|
|
|
//! For type inference, compare the implementations in rustc (the various
|
|
|
|
//! check_* methods in librustc_typeck/check/mod.rs are a good entry point) and
|
|
|
|
//! IntelliJ-Rust (org.rust.lang.core.types.infer). Our entry point for
|
|
|
|
//! inference here is the `infer` function, which infers the types of all
|
|
|
|
//! expressions in a given function.
|
|
|
|
//!
|
|
|
|
//! The central struct here is `Ty`, which represents a type. During inference,
|
|
|
|
//! it can contain type 'variables' which represent currently unknown types; as
|
|
|
|
//! we walk through the expressions, we might determine that certain variables
|
|
|
|
//! need to be equal to each other, or to certain types. To record this, we use
|
|
|
|
//! the union-find implementation from the `ena` crate, which is extracted from
|
|
|
|
//! rustc.
|
|
|
|
|
2019-01-06 12:51:42 -06:00
|
|
|
mod autoderef;
|
2019-01-10 09:03:15 -06:00
|
|
|
pub(crate) mod primitive;
|
2018-12-20 14:56:28 -06:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests;
|
2019-01-07 06:44:54 -06:00
|
|
|
pub(crate) mod method_resolution;
|
2018-12-20 14:56:28 -06:00
|
|
|
|
2019-01-10 15:49:43 -06:00
|
|
|
use std::borrow::Cow;
|
2019-01-06 09:47:59 -06:00
|
|
|
use std::ops::Index;
|
2018-12-20 14:56:28 -06:00
|
|
|
use std::sync::Arc;
|
2018-12-26 10:00:42 -06:00
|
|
|
use std::{fmt, mem};
|
2018-12-20 14:56:28 -06:00
|
|
|
|
2018-12-23 10:13:11 -06:00
|
|
|
use log;
|
2018-12-26 10:00:42 -06:00
|
|
|
use ena::unify::{InPlaceUnificationTable, UnifyKey, UnifyValue, NoError};
|
2019-01-06 16:57:39 -06:00
|
|
|
use ra_arena::map::ArenaMap;
|
2019-01-09 10:14:21 -06:00
|
|
|
use join_to_string::join;
|
2019-01-13 09:56:57 -06:00
|
|
|
use rustc_hash::FxHashMap;
|
2018-12-23 05:15:46 -06:00
|
|
|
|
2018-12-24 13:32:39 -06:00
|
|
|
use crate::{
|
2019-01-08 09:01:19 -06:00
|
|
|
Def, DefId, Module, Function, Struct, Enum, EnumVariant, Path, Name, ImplBlock,
|
2019-01-06 09:47:59 -06:00
|
|
|
FnSignature, FnScopes,
|
2018-12-24 14:00:14 -06:00
|
|
|
db::HirDatabase,
|
2018-12-25 14:14:13 -06:00
|
|
|
type_ref::{TypeRef, Mutability},
|
2018-12-29 16:20:12 -06:00
|
|
|
name::KnownName,
|
2019-01-15 11:47:37 -06:00
|
|
|
expr::{Body, Expr, Literal, ExprId, Pat, PatId, UnaryOp, BinaryOp, Statement},
|
2018-12-24 13:32:39 -06:00
|
|
|
};
|
2018-12-20 14:56:28 -06:00
|
|
|
|
2018-12-29 13:27:13 -06:00
|
|
|
/// The ID of a type variable.
|
2018-12-26 10:00:42 -06:00
|
|
|
#[derive(Copy, Clone, PartialEq, Eq, Hash, Debug)]
|
|
|
|
pub struct TypeVarId(u32);
|
|
|
|
|
|
|
|
impl UnifyKey for TypeVarId {
|
|
|
|
type Value = TypeVarValue;
|
|
|
|
|
|
|
|
fn index(&self) -> u32 {
|
|
|
|
self.0
|
|
|
|
}
|
|
|
|
|
|
|
|
fn from_index(i: u32) -> Self {
|
|
|
|
TypeVarId(i)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn tag() -> &'static str {
|
|
|
|
"TypeVarId"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-29 13:27:13 -06:00
|
|
|
/// The value of a type variable: either we already know the type, or we don't
|
|
|
|
/// know it yet.
|
2018-12-26 10:00:42 -06:00
|
|
|
#[derive(Clone, PartialEq, Eq, Debug)]
|
|
|
|
pub enum TypeVarValue {
|
|
|
|
Known(Ty),
|
|
|
|
Unknown,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl TypeVarValue {
|
2018-12-29 13:27:13 -06:00
|
|
|
fn known(&self) -> Option<&Ty> {
|
2018-12-26 10:00:42 -06:00
|
|
|
match self {
|
|
|
|
TypeVarValue::Known(ty) => Some(ty),
|
|
|
|
TypeVarValue::Unknown => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl UnifyValue for TypeVarValue {
|
|
|
|
type Error = NoError;
|
|
|
|
|
|
|
|
fn unify_values(value1: &Self, value2: &Self) -> Result<Self, NoError> {
|
|
|
|
match (value1, value2) {
|
|
|
|
// We should never equate two type variables, both of which have
|
|
|
|
// known types. Instead, we recursively equate those types.
|
2019-01-06 09:47:59 -06:00
|
|
|
(TypeVarValue::Known(t1), TypeVarValue::Known(t2)) => panic!(
|
|
|
|
"equating two type variables, both of which have known types: {:?} and {:?}",
|
|
|
|
t1, t2
|
|
|
|
),
|
2018-12-26 10:00:42 -06:00
|
|
|
|
|
|
|
// If one side is known, prefer that one.
|
|
|
|
(TypeVarValue::Known(..), TypeVarValue::Unknown) => Ok(value1.clone()),
|
|
|
|
(TypeVarValue::Unknown, TypeVarValue::Known(..)) => Ok(value2.clone()),
|
|
|
|
|
|
|
|
(TypeVarValue::Unknown, TypeVarValue::Unknown) => Ok(TypeVarValue::Unknown),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-14 14:52:08 -06:00
|
|
|
/// The kinds of placeholders we need during type inference. There's separate
|
2019-01-11 02:47:31 -06:00
|
|
|
/// values for general types, and for integer and float variables. The latter
|
|
|
|
/// two are used for inference of literal values (e.g. `100` could be one of
|
2018-12-29 13:27:13 -06:00
|
|
|
/// several integer types).
|
2019-01-14 12:30:21 -06:00
|
|
|
#[derive(Clone, Copy, PartialEq, Eq, Hash, Debug)]
|
2018-12-26 10:00:42 -06:00
|
|
|
pub enum InferTy {
|
|
|
|
TypeVar(TypeVarId),
|
2019-01-10 11:08:54 -06:00
|
|
|
IntVar(TypeVarId),
|
|
|
|
FloatVar(TypeVarId),
|
2018-12-26 10:00:42 -06:00
|
|
|
}
|
|
|
|
|
2019-01-11 02:47:31 -06:00
|
|
|
impl InferTy {
|
2019-01-14 12:30:21 -06:00
|
|
|
fn to_inner(self) -> TypeVarId {
|
|
|
|
match self {
|
|
|
|
InferTy::TypeVar(ty) | InferTy::IntVar(ty) | InferTy::FloatVar(ty) => ty,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-11 02:47:31 -06:00
|
|
|
fn fallback_value(self) -> Ty {
|
|
|
|
match self {
|
|
|
|
InferTy::TypeVar(..) => Ty::Unknown,
|
|
|
|
InferTy::IntVar(..) => {
|
|
|
|
Ty::Int(primitive::UncertainIntTy::Signed(primitive::IntTy::I32))
|
|
|
|
}
|
|
|
|
InferTy::FloatVar(..) => {
|
|
|
|
Ty::Float(primitive::UncertainFloatTy::Known(primitive::FloatTy::F64))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-26 10:00:42 -06:00
|
|
|
/// When inferring an expression, we propagate downward whatever type hint we
|
|
|
|
/// are able in the form of an `Expectation`.
|
|
|
|
#[derive(Clone, PartialEq, Eq, Debug)]
|
|
|
|
struct Expectation {
|
|
|
|
ty: Ty,
|
|
|
|
// TODO: In some cases, we need to be aware whether the expectation is that
|
|
|
|
// the type match exactly what we passed, or whether it just needs to be
|
|
|
|
// coercible to the expected type. See Expectation::rvalue_hint in rustc.
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Expectation {
|
2018-12-29 13:27:13 -06:00
|
|
|
/// The expectation that the type of the expression needs to equal the given
|
|
|
|
/// type.
|
2018-12-26 10:00:42 -06:00
|
|
|
fn has_type(ty: Ty) -> Self {
|
|
|
|
Expectation { ty }
|
|
|
|
}
|
|
|
|
|
2018-12-29 13:27:13 -06:00
|
|
|
/// This expresses no expectation on the type.
|
2018-12-26 10:00:42 -06:00
|
|
|
fn none() -> Self {
|
|
|
|
Expectation { ty: Ty::Unknown }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-29 13:27:13 -06:00
|
|
|
/// A type. This is based on the `TyKind` enum in rustc (librustc/ty/sty.rs).
|
|
|
|
///
|
|
|
|
/// This should be cheap to clone.
|
2018-12-24 12:07:48 -06:00
|
|
|
#[derive(Clone, PartialEq, Eq, Hash, Debug)]
|
2018-12-20 14:56:28 -06:00
|
|
|
pub enum Ty {
|
|
|
|
/// The primitive boolean type. Written as `bool`.
|
|
|
|
Bool,
|
|
|
|
|
|
|
|
/// The primitive character type; holds a Unicode scalar value
|
2019-01-08 17:47:12 -06:00
|
|
|
/// (a non-surrogate code point). Written as `char`.
|
2018-12-20 14:56:28 -06:00
|
|
|
Char,
|
|
|
|
|
2019-01-10 09:03:15 -06:00
|
|
|
/// A primitive integer type. For example, `i32`.
|
|
|
|
Int(primitive::UncertainIntTy),
|
2018-12-20 14:56:28 -06:00
|
|
|
|
|
|
|
/// A primitive floating-point type. For example, `f64`.
|
2019-01-10 09:03:15 -06:00
|
|
|
Float(primitive::UncertainFloatTy),
|
2018-12-20 14:56:28 -06:00
|
|
|
|
2018-12-24 12:07:48 -06:00
|
|
|
/// Structures, enumerations and unions.
|
|
|
|
Adt {
|
|
|
|
/// The DefId of the struct/enum.
|
|
|
|
def_id: DefId,
|
|
|
|
/// The name, for displaying.
|
2018-12-28 12:34:58 -06:00
|
|
|
name: Name,
|
2018-12-24 12:07:48 -06:00
|
|
|
// later we'll need generic substitutions here
|
|
|
|
},
|
|
|
|
|
2018-12-20 14:56:28 -06:00
|
|
|
/// The pointee of a string slice. Written as `str`.
|
|
|
|
Str,
|
|
|
|
|
|
|
|
/// The pointee of an array slice. Written as `[T]`.
|
2018-12-29 13:27:13 -06:00
|
|
|
Slice(Arc<Ty>),
|
2018-12-20 14:56:28 -06:00
|
|
|
|
2019-01-14 07:51:54 -06:00
|
|
|
// An array with the given length. Written as `[T; n]`.
|
|
|
|
Array(Arc<Ty>),
|
|
|
|
|
2018-12-25 10:17:39 -06:00
|
|
|
/// A raw pointer. Written as `*mut T` or `*const T`
|
2018-12-29 13:27:13 -06:00
|
|
|
RawPtr(Arc<Ty>, Mutability),
|
2018-12-25 10:17:39 -06:00
|
|
|
|
|
|
|
/// A reference; a pointer with an associated lifetime. Written as
|
|
|
|
/// `&'a mut T` or `&'a T`.
|
2018-12-29 13:27:13 -06:00
|
|
|
Ref(Arc<Ty>, Mutability),
|
2018-12-20 14:56:28 -06:00
|
|
|
|
|
|
|
/// A pointer to a function. Written as `fn() -> i32`.
|
|
|
|
///
|
|
|
|
/// For example the type of `bar` here:
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// fn foo() -> i32 { 1 }
|
|
|
|
/// let bar: fn() -> i32 = foo;
|
|
|
|
/// ```
|
2018-12-23 10:13:11 -06:00
|
|
|
FnPtr(Arc<FnSig>),
|
2018-12-20 14:56:28 -06:00
|
|
|
|
2018-12-29 13:27:13 -06:00
|
|
|
// rustc has a separate type for each function, which just coerces to the
|
|
|
|
// above function pointer type. Once we implement generics, we will probably
|
|
|
|
// need this as well.
|
|
|
|
|
2019-01-11 02:47:31 -06:00
|
|
|
// A trait, defined with `dyn Trait`.
|
2018-12-24 08:17:34 -06:00
|
|
|
// Dynamic(),
|
2019-01-11 02:47:31 -06:00
|
|
|
|
2018-12-26 10:00:42 -06:00
|
|
|
// The anonymous type of a closure. Used to represent the type of
|
|
|
|
// `|a| a`.
|
2018-12-20 14:56:28 -06:00
|
|
|
// Closure(DefId, ClosureSubsts<'tcx>),
|
|
|
|
|
2018-12-26 10:00:42 -06:00
|
|
|
// The anonymous type of a generator. Used to represent the type of
|
|
|
|
// `|a| yield a`.
|
2018-12-20 14:56:28 -06:00
|
|
|
// Generator(DefId, GeneratorSubsts<'tcx>, hir::GeneratorMovability),
|
|
|
|
|
2019-01-08 17:47:12 -06:00
|
|
|
// A type representing the types stored inside a generator.
|
2018-12-26 10:00:42 -06:00
|
|
|
// This should only appear in GeneratorInteriors.
|
2018-12-20 14:56:28 -06:00
|
|
|
// GeneratorWitness(Binder<&'tcx List<Ty<'tcx>>>),
|
2018-12-29 13:27:13 -06:00
|
|
|
/// The never type `!`.
|
2018-12-20 14:56:28 -06:00
|
|
|
Never,
|
|
|
|
|
|
|
|
/// A tuple type. For example, `(i32, bool)`.
|
2018-12-26 10:00:42 -06:00
|
|
|
Tuple(Arc<[Ty]>),
|
2018-12-20 14:56:28 -06:00
|
|
|
|
2018-12-24 08:17:34 -06:00
|
|
|
// The projection of an associated type. For example,
|
2018-12-27 11:26:15 -06:00
|
|
|
// `<T as Trait<..>>::N`.pub
|
2018-12-24 08:17:34 -06:00
|
|
|
// Projection(ProjectionTy),
|
2018-12-20 14:56:28 -06:00
|
|
|
|
2018-12-24 08:17:34 -06:00
|
|
|
// Opaque (`impl Trait`) type found in a return type.
|
|
|
|
// Opaque(DefId, Substs),
|
2018-12-20 14:56:28 -06:00
|
|
|
|
2018-12-24 08:17:34 -06:00
|
|
|
// A type parameter; for example, `T` in `fn f<T>(x: T) {}
|
2018-12-20 14:56:28 -06:00
|
|
|
// Param(ParamTy),
|
2018-12-26 10:00:42 -06:00
|
|
|
/// A type variable used during type checking. Not to be confused with a
|
|
|
|
/// type parameter.
|
|
|
|
Infer(InferTy),
|
|
|
|
|
|
|
|
/// A placeholder for a type which could not be computed; this is propagated
|
|
|
|
/// to avoid useless error messages. Doubles as a placeholder where type
|
|
|
|
/// variables are inserted before type checking, since we want to try to
|
2018-12-29 13:27:13 -06:00
|
|
|
/// infer a better type here anyway -- for the IDE use case, we want to try
|
|
|
|
/// to infer as much as possible even in the presence of type errors.
|
2018-12-20 14:56:28 -06:00
|
|
|
Unknown,
|
|
|
|
}
|
|
|
|
|
2018-12-29 13:27:13 -06:00
|
|
|
/// A function signature.
|
2018-12-24 12:07:48 -06:00
|
|
|
#[derive(Clone, PartialEq, Eq, Hash, Debug)]
|
2018-12-23 10:13:11 -06:00
|
|
|
pub struct FnSig {
|
|
|
|
input: Vec<Ty>,
|
|
|
|
output: Ty,
|
|
|
|
}
|
|
|
|
|
2018-12-20 14:56:28 -06:00
|
|
|
impl Ty {
|
2018-12-25 14:14:13 -06:00
|
|
|
pub(crate) fn from_hir(
|
2018-12-24 14:00:14 -06:00
|
|
|
db: &impl HirDatabase,
|
|
|
|
module: &Module,
|
2018-12-29 16:20:12 -06:00
|
|
|
impl_block: Option<&ImplBlock>,
|
2018-12-25 14:14:13 -06:00
|
|
|
type_ref: &TypeRef,
|
2019-01-15 11:43:37 -06:00
|
|
|
) -> Self {
|
|
|
|
match type_ref {
|
2018-12-25 14:14:13 -06:00
|
|
|
TypeRef::Never => Ty::Never,
|
|
|
|
TypeRef::Tuple(inner) => {
|
|
|
|
let inner_tys = inner
|
|
|
|
.iter()
|
2018-12-29 16:20:12 -06:00
|
|
|
.map(|tr| Ty::from_hir(db, module, impl_block, tr))
|
2019-01-15 11:43:37 -06:00
|
|
|
.collect::<Vec<_>>();
|
2018-12-26 10:00:42 -06:00
|
|
|
Ty::Tuple(inner_tys.into())
|
2018-12-25 14:14:13 -06:00
|
|
|
}
|
2019-01-15 11:43:37 -06:00
|
|
|
TypeRef::Path(path) => Ty::from_hir_path(db, module, impl_block, path),
|
2018-12-25 14:14:13 -06:00
|
|
|
TypeRef::RawPtr(inner, mutability) => {
|
2019-01-15 11:43:37 -06:00
|
|
|
let inner_ty = Ty::from_hir(db, module, impl_block, inner);
|
2018-12-25 14:14:13 -06:00
|
|
|
Ty::RawPtr(Arc::new(inner_ty), *mutability)
|
|
|
|
}
|
2019-01-14 07:51:54 -06:00
|
|
|
TypeRef::Array(inner) => {
|
|
|
|
let inner_ty = Ty::from_hir(db, module, impl_block, inner);
|
|
|
|
Ty::Array(Arc::new(inner_ty))
|
|
|
|
}
|
2018-12-25 14:14:13 -06:00
|
|
|
TypeRef::Slice(inner) => {
|
2019-01-15 11:43:37 -06:00
|
|
|
let inner_ty = Ty::from_hir(db, module, impl_block, inner);
|
2018-12-25 14:14:13 -06:00
|
|
|
Ty::Slice(Arc::new(inner_ty))
|
|
|
|
}
|
|
|
|
TypeRef::Reference(inner, mutability) => {
|
2019-01-15 11:43:37 -06:00
|
|
|
let inner_ty = Ty::from_hir(db, module, impl_block, inner);
|
2018-12-25 14:14:13 -06:00
|
|
|
Ty::Ref(Arc::new(inner_ty), *mutability)
|
|
|
|
}
|
2018-12-26 10:00:42 -06:00
|
|
|
TypeRef::Placeholder => Ty::Unknown,
|
2018-12-25 14:14:13 -06:00
|
|
|
TypeRef::Fn(params) => {
|
|
|
|
let mut inner_tys = params
|
|
|
|
.iter()
|
2018-12-29 16:20:12 -06:00
|
|
|
.map(|tr| Ty::from_hir(db, module, impl_block, tr))
|
2019-01-15 11:43:37 -06:00
|
|
|
.collect::<Vec<_>>();
|
2018-12-25 14:14:13 -06:00
|
|
|
let return_ty = inner_tys
|
|
|
|
.pop()
|
|
|
|
.expect("TypeRef::Fn should always have at least return type");
|
|
|
|
let sig = FnSig {
|
|
|
|
input: inner_tys,
|
|
|
|
output: return_ty,
|
|
|
|
};
|
|
|
|
Ty::FnPtr(Arc::new(sig))
|
|
|
|
}
|
|
|
|
TypeRef::Error => Ty::Unknown,
|
2019-01-15 11:43:37 -06:00
|
|
|
}
|
2018-12-25 14:14:13 -06:00
|
|
|
}
|
|
|
|
|
2018-12-29 16:20:12 -06:00
|
|
|
pub(crate) fn from_hir_opt(
|
|
|
|
db: &impl HirDatabase,
|
|
|
|
module: &Module,
|
|
|
|
impl_block: Option<&ImplBlock>,
|
|
|
|
type_ref: Option<&TypeRef>,
|
2019-01-15 11:43:37 -06:00
|
|
|
) -> Self {
|
|
|
|
type_ref.map_or(Ty::Unknown, |t| Ty::from_hir(db, module, impl_block, t))
|
2018-12-29 16:20:12 -06:00
|
|
|
}
|
|
|
|
|
2018-12-25 14:14:13 -06:00
|
|
|
pub(crate) fn from_hir_path(
|
|
|
|
db: &impl HirDatabase,
|
|
|
|
module: &Module,
|
2018-12-29 16:20:12 -06:00
|
|
|
impl_block: Option<&ImplBlock>,
|
2018-12-25 14:14:13 -06:00
|
|
|
path: &Path,
|
2019-01-15 11:43:37 -06:00
|
|
|
) -> Self {
|
2018-12-27 11:07:21 -06:00
|
|
|
if let Some(name) = path.as_ident() {
|
2019-01-14 12:30:21 -06:00
|
|
|
if let Some(int_ty) = primitive::UncertainIntTy::from_name(name) {
|
2019-01-15 11:43:37 -06:00
|
|
|
return Ty::Int(int_ty);
|
2019-01-10 09:03:15 -06:00
|
|
|
} else if let Some(float_ty) = primitive::UncertainFloatTy::from_name(name) {
|
2019-01-15 11:43:37 -06:00
|
|
|
return Ty::Float(float_ty);
|
2019-01-05 15:37:59 -06:00
|
|
|
} else if name.as_known_name() == Some(KnownName::SelfType) {
|
2018-12-30 12:59:49 -06:00
|
|
|
return Ty::from_hir_opt(db, module, None, impl_block.map(|i| i.target_type()));
|
2019-01-14 12:30:21 -06:00
|
|
|
} else if let Some(known) = name.as_known_name() {
|
|
|
|
match known {
|
2019-01-15 11:43:37 -06:00
|
|
|
KnownName::Bool => return Ty::Bool,
|
|
|
|
KnownName::Char => return Ty::Char,
|
|
|
|
KnownName::Str => return Ty::Str,
|
2019-01-14 12:30:21 -06:00
|
|
|
_ => {}
|
|
|
|
}
|
2018-12-24 14:00:14 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Resolve in module (in type namespace)
|
2019-01-15 10:15:01 -06:00
|
|
|
let resolved = if let Some(r) = module.resolve_path(db, path).take_types() {
|
2018-12-24 14:00:14 -06:00
|
|
|
r
|
|
|
|
} else {
|
2019-01-15 11:43:37 -06:00
|
|
|
return Ty::Unknown;
|
2018-12-24 14:00:14 -06:00
|
|
|
};
|
2019-01-15 11:43:37 -06:00
|
|
|
db.type_for_def(resolved)
|
2018-12-24 14:00:14 -06:00
|
|
|
}
|
|
|
|
|
2018-12-20 14:56:28 -06:00
|
|
|
pub fn unit() -> Self {
|
2018-12-26 10:00:42 -06:00
|
|
|
Ty::Tuple(Arc::new([]))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn walk_mut(&mut self, f: &mut impl FnMut(&mut Ty)) {
|
|
|
|
f(self);
|
|
|
|
match self {
|
2019-01-16 09:08:53 -06:00
|
|
|
Ty::Slice(t) | Ty::Array(t) => Arc::make_mut(t).walk_mut(f),
|
2018-12-26 10:00:42 -06:00
|
|
|
Ty::RawPtr(t, _) => Arc::make_mut(t).walk_mut(f),
|
|
|
|
Ty::Ref(t, _) => Arc::make_mut(t).walk_mut(f),
|
|
|
|
Ty::Tuple(ts) => {
|
|
|
|
// Without an Arc::make_mut_slice, we can't avoid the clone here:
|
|
|
|
let mut v: Vec<_> = ts.iter().cloned().collect();
|
|
|
|
for t in &mut v {
|
|
|
|
t.walk_mut(f);
|
|
|
|
}
|
|
|
|
*ts = v.into();
|
|
|
|
}
|
|
|
|
Ty::FnPtr(sig) => {
|
|
|
|
let sig_mut = Arc::make_mut(sig);
|
|
|
|
for input in &mut sig_mut.input {
|
|
|
|
input.walk_mut(f);
|
|
|
|
}
|
|
|
|
sig_mut.output.walk_mut(f);
|
|
|
|
}
|
|
|
|
Ty::Adt { .. } => {} // need to walk type parameters later
|
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn fold(mut self, f: &mut impl FnMut(Ty) -> Ty) -> Ty {
|
|
|
|
self.walk_mut(&mut |ty_mut| {
|
|
|
|
let ty = mem::replace(ty_mut, Ty::Unknown);
|
|
|
|
*ty_mut = f(ty);
|
|
|
|
});
|
|
|
|
self
|
2018-12-20 14:56:28 -06:00
|
|
|
}
|
2019-01-06 12:51:42 -06:00
|
|
|
|
|
|
|
fn builtin_deref(&self) -> Option<Ty> {
|
|
|
|
match self {
|
|
|
|
Ty::Ref(t, _) => Some(Ty::clone(t)),
|
|
|
|
Ty::RawPtr(t, _) => Some(Ty::clone(t)),
|
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
2018-12-20 14:56:28 -06:00
|
|
|
}
|
|
|
|
|
2018-12-23 05:05:54 -06:00
|
|
|
impl fmt::Display for Ty {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
match self {
|
|
|
|
Ty::Bool => write!(f, "bool"),
|
|
|
|
Ty::Char => write!(f, "char"),
|
|
|
|
Ty::Int(t) => write!(f, "{}", t.ty_to_string()),
|
|
|
|
Ty::Float(t) => write!(f, "{}", t.ty_to_string()),
|
|
|
|
Ty::Str => write!(f, "str"),
|
2019-01-14 07:51:54 -06:00
|
|
|
Ty::Slice(t) | Ty::Array(t) => write!(f, "[{}]", t),
|
2018-12-25 10:17:39 -06:00
|
|
|
Ty::RawPtr(t, m) => write!(f, "*{}{}", m.as_keyword_for_ptr(), t),
|
|
|
|
Ty::Ref(t, m) => write!(f, "&{}{}", m.as_keyword_for_ref(), t),
|
2018-12-23 05:05:54 -06:00
|
|
|
Ty::Never => write!(f, "!"),
|
|
|
|
Ty::Tuple(ts) => {
|
2019-01-09 10:14:21 -06:00
|
|
|
if ts.len() == 1 {
|
|
|
|
write!(f, "({},)", ts[0])
|
|
|
|
} else {
|
|
|
|
join(ts.iter())
|
|
|
|
.surround_with("(", ")")
|
|
|
|
.separator(", ")
|
|
|
|
.to_fmt(f)
|
2018-12-23 05:05:54 -06:00
|
|
|
}
|
|
|
|
}
|
2018-12-23 10:13:11 -06:00
|
|
|
Ty::FnPtr(sig) => {
|
2019-01-09 10:14:21 -06:00
|
|
|
join(sig.input.iter())
|
|
|
|
.surround_with("fn(", ")")
|
|
|
|
.separator(", ")
|
|
|
|
.to_fmt(f)?;
|
|
|
|
write!(f, " -> {}", sig.output)
|
2018-12-23 10:13:11 -06:00
|
|
|
}
|
2018-12-24 12:07:48 -06:00
|
|
|
Ty::Adt { name, .. } => write!(f, "{}", name),
|
2018-12-23 05:15:46 -06:00
|
|
|
Ty::Unknown => write!(f, "[unknown]"),
|
2018-12-26 10:00:42 -06:00
|
|
|
Ty::Infer(..) => write!(f, "_"),
|
2018-12-23 05:05:54 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-29 13:27:13 -06:00
|
|
|
// Functions returning declared types for items
|
|
|
|
|
|
|
|
/// Compute the declared type of a function. This should not need to look at the
|
2019-01-06 09:47:59 -06:00
|
|
|
/// function body.
|
2019-01-15 11:43:37 -06:00
|
|
|
fn type_for_fn(db: &impl HirDatabase, f: Function) -> Ty {
|
2019-01-06 09:47:59 -06:00
|
|
|
let signature = f.signature(db);
|
2019-01-15 10:18:52 -06:00
|
|
|
let module = f.module(db);
|
|
|
|
let impl_block = f.impl_block(db);
|
2018-12-23 10:13:11 -06:00
|
|
|
// TODO we ignore type parameters for now
|
2019-01-06 09:47:59 -06:00
|
|
|
let input = signature
|
2019-01-12 14:58:16 -06:00
|
|
|
.params()
|
2019-01-06 09:47:59 -06:00
|
|
|
.iter()
|
|
|
|
.map(|tr| Ty::from_hir(db, &module, impl_block.as_ref(), tr))
|
2019-01-15 11:43:37 -06:00
|
|
|
.collect::<Vec<_>>();
|
|
|
|
let output = Ty::from_hir(db, &module, impl_block.as_ref(), signature.ret_type());
|
2018-12-23 10:13:11 -06:00
|
|
|
let sig = FnSig { input, output };
|
2019-01-15 11:43:37 -06:00
|
|
|
Ty::FnPtr(Arc::new(sig))
|
2018-12-23 10:13:11 -06:00
|
|
|
}
|
|
|
|
|
2019-01-15 11:43:37 -06:00
|
|
|
fn type_for_struct(db: &impl HirDatabase, s: Struct) -> Ty {
|
|
|
|
Ty::Adt {
|
2018-12-24 14:00:14 -06:00
|
|
|
def_id: s.def_id(),
|
2019-01-15 09:43:25 -06:00
|
|
|
name: s.name(db).unwrap_or_else(Name::missing),
|
2019-01-15 11:43:37 -06:00
|
|
|
}
|
2018-12-25 10:55:50 -06:00
|
|
|
}
|
|
|
|
|
2019-01-15 11:43:37 -06:00
|
|
|
pub(crate) fn type_for_enum(db: &impl HirDatabase, s: Enum) -> Ty {
|
|
|
|
Ty::Adt {
|
2018-12-25 10:55:50 -06:00
|
|
|
def_id: s.def_id(),
|
2019-01-15 09:43:25 -06:00
|
|
|
name: s.name(db).unwrap_or_else(Name::missing),
|
2019-01-15 11:43:37 -06:00
|
|
|
}
|
2018-12-24 14:00:14 -06:00
|
|
|
}
|
|
|
|
|
2019-01-15 11:43:37 -06:00
|
|
|
pub(crate) fn type_for_enum_variant(db: &impl HirDatabase, ev: EnumVariant) -> Ty {
|
2019-01-15 09:43:25 -06:00
|
|
|
let enum_parent = ev.parent_enum(db);
|
2019-01-08 09:01:19 -06:00
|
|
|
|
|
|
|
type_for_enum(db, enum_parent)
|
|
|
|
}
|
|
|
|
|
2019-01-15 11:43:37 -06:00
|
|
|
pub(super) fn type_for_def(db: &impl HirDatabase, def_id: DefId) -> Ty {
|
2019-01-15 09:50:16 -06:00
|
|
|
let def = def_id.resolve(db);
|
2018-12-23 10:13:11 -06:00
|
|
|
match def {
|
|
|
|
Def::Module(..) => {
|
|
|
|
log::debug!("trying to get type for module {:?}", def_id);
|
2019-01-15 11:43:37 -06:00
|
|
|
Ty::Unknown
|
2018-12-23 10:13:11 -06:00
|
|
|
}
|
|
|
|
Def::Function(f) => type_for_fn(db, f),
|
2018-12-24 14:00:14 -06:00
|
|
|
Def::Struct(s) => type_for_struct(db, s),
|
2018-12-25 10:55:50 -06:00
|
|
|
Def::Enum(e) => type_for_enum(db, e),
|
2019-01-08 09:01:19 -06:00
|
|
|
Def::EnumVariant(ev) => type_for_enum_variant(db, ev),
|
2019-01-11 12:02:12 -06:00
|
|
|
_ => {
|
|
|
|
log::debug!(
|
|
|
|
"trying to get type for item of unknown type {:?} {:?}",
|
|
|
|
def_id,
|
|
|
|
def
|
|
|
|
);
|
2019-01-15 11:43:37 -06:00
|
|
|
Ty::Unknown
|
2018-12-23 10:13:11 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-15 11:43:37 -06:00
|
|
|
pub(super) fn type_for_field(db: &impl HirDatabase, def_id: DefId, field: Name) -> Option<Ty> {
|
2019-01-15 09:50:16 -06:00
|
|
|
let def = def_id.resolve(db);
|
2018-12-25 14:40:33 -06:00
|
|
|
let variant_data = match def {
|
2019-01-15 11:43:37 -06:00
|
|
|
Def::Struct(s) => s.variant_data(db),
|
2019-01-15 09:43:25 -06:00
|
|
|
Def::EnumVariant(ev) => ev.variant_data(db),
|
2018-12-25 14:40:33 -06:00
|
|
|
// TODO: unions
|
|
|
|
_ => panic!(
|
|
|
|
"trying to get type for field in non-struct/variant {:?}",
|
|
|
|
def_id
|
|
|
|
),
|
|
|
|
};
|
2019-01-15 10:18:52 -06:00
|
|
|
let module = def_id.module(db);
|
|
|
|
let impl_block = def_id.impl_block(db);
|
2019-01-15 11:43:37 -06:00
|
|
|
let type_ref = variant_data.get_field_type_ref(&field)?;
|
|
|
|
Some(Ty::from_hir(db, &module, impl_block.as_ref(), &type_ref))
|
2018-12-25 14:40:33 -06:00
|
|
|
}
|
|
|
|
|
2018-12-29 13:27:13 -06:00
|
|
|
/// The result of type inference: A mapping from expressions and patterns to types.
|
2018-12-20 14:56:28 -06:00
|
|
|
#[derive(Clone, PartialEq, Eq, Debug)]
|
|
|
|
pub struct InferenceResult {
|
2019-01-13 09:56:57 -06:00
|
|
|
/// For each method call expr, record the function it resolved to.
|
|
|
|
method_resolutions: FxHashMap<ExprId, DefId>,
|
2019-01-06 16:57:39 -06:00
|
|
|
type_of_expr: ArenaMap<ExprId, Ty>,
|
|
|
|
type_of_pat: ArenaMap<PatId, Ty>,
|
2018-12-20 14:56:28 -06:00
|
|
|
}
|
|
|
|
|
2019-01-13 09:56:57 -06:00
|
|
|
impl InferenceResult {
|
|
|
|
pub fn method_resolution(&self, expr: ExprId) -> Option<DefId> {
|
|
|
|
self.method_resolutions.get(&expr).map(|it| *it)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-06 09:47:59 -06:00
|
|
|
impl Index<ExprId> for InferenceResult {
|
|
|
|
type Output = Ty;
|
|
|
|
|
|
|
|
fn index(&self, expr: ExprId) -> &Ty {
|
2019-01-06 16:57:39 -06:00
|
|
|
self.type_of_expr.get(expr).unwrap_or(&Ty::Unknown)
|
2019-01-06 09:47:59 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Index<PatId> for InferenceResult {
|
|
|
|
type Output = Ty;
|
|
|
|
|
|
|
|
fn index(&self, pat: PatId) -> &Ty {
|
2019-01-06 16:57:39 -06:00
|
|
|
self.type_of_pat.get(pat).unwrap_or(&Ty::Unknown)
|
2018-12-23 05:05:54 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-29 13:27:13 -06:00
|
|
|
/// The inference context contains all information needed during type inference.
|
2018-12-23 10:13:11 -06:00
|
|
|
#[derive(Clone, Debug)]
|
2018-12-29 13:27:13 -06:00
|
|
|
struct InferenceContext<'a, D: HirDatabase> {
|
2018-12-23 10:13:11 -06:00
|
|
|
db: &'a D,
|
2019-01-06 09:47:59 -06:00
|
|
|
body: Arc<Body>,
|
|
|
|
scopes: Arc<FnScopes>,
|
2018-12-23 10:13:11 -06:00
|
|
|
module: Module,
|
2018-12-29 16:20:12 -06:00
|
|
|
impl_block: Option<ImplBlock>,
|
2018-12-26 10:00:42 -06:00
|
|
|
var_unification_table: InPlaceUnificationTable<TypeVarId>,
|
2019-01-13 09:56:57 -06:00
|
|
|
method_resolutions: FxHashMap<ExprId, DefId>,
|
2019-01-06 16:57:39 -06:00
|
|
|
type_of_expr: ArenaMap<ExprId, Ty>,
|
|
|
|
type_of_pat: ArenaMap<PatId, Ty>,
|
2018-12-29 16:35:57 -06:00
|
|
|
/// The return type of the function being inferred.
|
|
|
|
return_ty: Ty,
|
2018-12-20 14:56:28 -06:00
|
|
|
}
|
|
|
|
|
2019-01-07 13:39:23 -06:00
|
|
|
fn binary_op_return_ty(op: BinaryOp, rhs_ty: Ty) -> Ty {
|
2019-01-06 14:39:36 -06:00
|
|
|
match op {
|
2019-01-06 09:47:59 -06:00
|
|
|
BinaryOp::BooleanOr
|
|
|
|
| BinaryOp::BooleanAnd
|
|
|
|
| BinaryOp::EqualityTest
|
|
|
|
| BinaryOp::LesserEqualTest
|
|
|
|
| BinaryOp::GreaterEqualTest
|
|
|
|
| BinaryOp::LesserTest
|
2019-01-07 13:11:31 -06:00
|
|
|
| BinaryOp::GreaterTest => Ty::Bool,
|
|
|
|
BinaryOp::Assignment
|
|
|
|
| BinaryOp::AddAssign
|
|
|
|
| BinaryOp::SubAssign
|
|
|
|
| BinaryOp::DivAssign
|
|
|
|
| BinaryOp::MulAssign
|
|
|
|
| BinaryOp::RemAssign
|
|
|
|
| BinaryOp::ShrAssign
|
|
|
|
| BinaryOp::ShlAssign
|
|
|
|
| BinaryOp::BitAndAssign
|
|
|
|
| BinaryOp::BitOrAssign
|
|
|
|
| BinaryOp::BitXorAssign => Ty::unit(),
|
|
|
|
BinaryOp::Addition
|
|
|
|
| BinaryOp::Subtraction
|
|
|
|
| BinaryOp::Multiplication
|
|
|
|
| BinaryOp::Division
|
|
|
|
| BinaryOp::Remainder
|
|
|
|
| BinaryOp::LeftShift
|
|
|
|
| BinaryOp::RightShift
|
|
|
|
| BinaryOp::BitwiseAnd
|
|
|
|
| BinaryOp::BitwiseOr
|
|
|
|
| BinaryOp::BitwiseXor => match rhs_ty {
|
2019-01-10 09:03:15 -06:00
|
|
|
Ty::Int(..) | Ty::Float(..) => rhs_ty,
|
2019-01-07 13:11:31 -06:00
|
|
|
_ => Ty::Unknown,
|
|
|
|
},
|
|
|
|
BinaryOp::RangeRightOpen | BinaryOp::RangeRightClosed => Ty::Unknown,
|
2019-01-06 14:39:36 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-07 13:39:23 -06:00
|
|
|
fn binary_op_rhs_expectation(op: BinaryOp, lhs_ty: Ty) -> Ty {
|
|
|
|
match op {
|
|
|
|
BinaryOp::BooleanAnd | BinaryOp::BooleanOr => Ty::Bool,
|
|
|
|
BinaryOp::Assignment | BinaryOp::EqualityTest => match lhs_ty {
|
2019-01-10 09:03:15 -06:00
|
|
|
Ty::Int(..) | Ty::Float(..) | Ty::Str | Ty::Char | Ty::Bool => lhs_ty,
|
2019-01-07 13:39:23 -06:00
|
|
|
_ => Ty::Unknown,
|
|
|
|
},
|
|
|
|
BinaryOp::LesserEqualTest
|
|
|
|
| BinaryOp::GreaterEqualTest
|
|
|
|
| BinaryOp::LesserTest
|
|
|
|
| BinaryOp::GreaterTest
|
|
|
|
| BinaryOp::AddAssign
|
|
|
|
| BinaryOp::SubAssign
|
|
|
|
| BinaryOp::DivAssign
|
|
|
|
| BinaryOp::MulAssign
|
|
|
|
| BinaryOp::RemAssign
|
|
|
|
| BinaryOp::ShrAssign
|
|
|
|
| BinaryOp::ShlAssign
|
|
|
|
| BinaryOp::BitAndAssign
|
|
|
|
| BinaryOp::BitOrAssign
|
|
|
|
| BinaryOp::BitXorAssign
|
|
|
|
| BinaryOp::Addition
|
|
|
|
| BinaryOp::Subtraction
|
|
|
|
| BinaryOp::Multiplication
|
|
|
|
| BinaryOp::Division
|
|
|
|
| BinaryOp::Remainder
|
|
|
|
| BinaryOp::LeftShift
|
|
|
|
| BinaryOp::RightShift
|
|
|
|
| BinaryOp::BitwiseAnd
|
|
|
|
| BinaryOp::BitwiseOr
|
|
|
|
| BinaryOp::BitwiseXor => match lhs_ty {
|
2019-01-10 09:03:15 -06:00
|
|
|
Ty::Int(..) | Ty::Float(..) => lhs_ty,
|
2019-01-07 13:39:23 -06:00
|
|
|
_ => Ty::Unknown,
|
|
|
|
},
|
|
|
|
_ => Ty::Unknown,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-23 10:13:11 -06:00
|
|
|
impl<'a, D: HirDatabase> InferenceContext<'a, D> {
|
2018-12-29 16:20:12 -06:00
|
|
|
fn new(
|
|
|
|
db: &'a D,
|
2019-01-06 09:47:59 -06:00
|
|
|
body: Arc<Body>,
|
|
|
|
scopes: Arc<FnScopes>,
|
2018-12-29 16:20:12 -06:00
|
|
|
module: Module,
|
|
|
|
impl_block: Option<ImplBlock>,
|
|
|
|
) -> Self {
|
2018-12-20 14:56:28 -06:00
|
|
|
InferenceContext {
|
2019-01-13 09:56:57 -06:00
|
|
|
method_resolutions: FxHashMap::default(),
|
2019-01-06 16:57:39 -06:00
|
|
|
type_of_expr: ArenaMap::default(),
|
|
|
|
type_of_pat: ArenaMap::default(),
|
2018-12-26 10:00:42 -06:00
|
|
|
var_unification_table: InPlaceUnificationTable::new(),
|
2018-12-29 16:35:57 -06:00
|
|
|
return_ty: Ty::Unknown, // set in collect_fn_signature
|
2018-12-23 10:13:11 -06:00
|
|
|
db,
|
2019-01-06 09:47:59 -06:00
|
|
|
body,
|
2018-12-23 05:15:46 -06:00
|
|
|
scopes,
|
2018-12-23 10:13:11 -06:00
|
|
|
module,
|
2018-12-29 16:20:12 -06:00
|
|
|
impl_block,
|
2018-12-20 14:56:28 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-26 10:00:42 -06:00
|
|
|
fn resolve_all(mut self) -> InferenceResult {
|
2019-01-06 16:57:39 -06:00
|
|
|
let mut expr_types = mem::replace(&mut self.type_of_expr, ArenaMap::default());
|
2019-01-06 09:47:59 -06:00
|
|
|
for ty in expr_types.values_mut() {
|
|
|
|
let resolved = self.resolve_ty_completely(mem::replace(ty, Ty::Unknown));
|
|
|
|
*ty = resolved;
|
|
|
|
}
|
2019-01-06 16:57:39 -06:00
|
|
|
let mut pat_types = mem::replace(&mut self.type_of_pat, ArenaMap::default());
|
2019-01-06 09:47:59 -06:00
|
|
|
for ty in pat_types.values_mut() {
|
2018-12-26 10:00:42 -06:00
|
|
|
let resolved = self.resolve_ty_completely(mem::replace(ty, Ty::Unknown));
|
|
|
|
*ty = resolved;
|
|
|
|
}
|
2019-01-06 09:47:59 -06:00
|
|
|
InferenceResult {
|
2019-01-13 09:56:57 -06:00
|
|
|
method_resolutions: mem::replace(&mut self.method_resolutions, Default::default()),
|
2019-01-06 09:47:59 -06:00
|
|
|
type_of_expr: expr_types,
|
|
|
|
type_of_pat: pat_types,
|
|
|
|
}
|
2018-12-26 10:00:42 -06:00
|
|
|
}
|
|
|
|
|
2019-01-06 09:47:59 -06:00
|
|
|
fn write_expr_ty(&mut self, expr: ExprId, ty: Ty) {
|
|
|
|
self.type_of_expr.insert(expr, ty);
|
2018-12-20 14:56:28 -06:00
|
|
|
}
|
|
|
|
|
2019-01-13 09:56:57 -06:00
|
|
|
fn write_method_resolution(&mut self, expr: ExprId, def_id: DefId) {
|
|
|
|
self.method_resolutions.insert(expr, def_id);
|
|
|
|
}
|
|
|
|
|
2019-01-06 09:47:59 -06:00
|
|
|
fn write_pat_ty(&mut self, pat: PatId, ty: Ty) {
|
|
|
|
self.type_of_pat.insert(pat, ty);
|
2018-12-29 16:35:57 -06:00
|
|
|
}
|
|
|
|
|
2019-01-15 11:43:37 -06:00
|
|
|
fn make_ty(&self, type_ref: &TypeRef) -> Ty {
|
2019-01-06 09:47:59 -06:00
|
|
|
Ty::from_hir(self.db, &self.module, self.impl_block.as_ref(), type_ref)
|
2018-12-29 16:35:57 -06:00
|
|
|
}
|
|
|
|
|
2018-12-26 10:00:42 -06:00
|
|
|
fn unify(&mut self, ty1: &Ty, ty2: &Ty) -> bool {
|
2019-01-10 15:49:43 -06:00
|
|
|
// try to resolve type vars first
|
|
|
|
let ty1 = self.resolve_ty_shallow(ty1);
|
|
|
|
let ty2 = self.resolve_ty_shallow(ty2);
|
|
|
|
match (&*ty1, &*ty2) {
|
2018-12-26 10:00:42 -06:00
|
|
|
(Ty::Unknown, ..) => true,
|
|
|
|
(.., Ty::Unknown) => true,
|
2019-01-10 09:03:15 -06:00
|
|
|
(Ty::Int(t1), Ty::Int(t2)) => match (t1, t2) {
|
|
|
|
(primitive::UncertainIntTy::Unknown, _)
|
|
|
|
| (_, primitive::UncertainIntTy::Unknown) => true,
|
|
|
|
_ => t1 == t2,
|
|
|
|
},
|
|
|
|
(Ty::Float(t1), Ty::Float(t2)) => match (t1, t2) {
|
|
|
|
(primitive::UncertainFloatTy::Unknown, _)
|
|
|
|
| (_, primitive::UncertainFloatTy::Unknown) => true,
|
|
|
|
_ => t1 == t2,
|
|
|
|
},
|
|
|
|
(Ty::Bool, _) | (Ty::Str, _) | (Ty::Never, _) | (Ty::Char, _) => ty1 == ty2,
|
2018-12-26 10:00:42 -06:00
|
|
|
(
|
|
|
|
Ty::Adt {
|
|
|
|
def_id: def_id1, ..
|
|
|
|
},
|
|
|
|
Ty::Adt {
|
|
|
|
def_id: def_id2, ..
|
|
|
|
},
|
|
|
|
) if def_id1 == def_id2 => true,
|
|
|
|
(Ty::Slice(t1), Ty::Slice(t2)) => self.unify(t1, t2),
|
|
|
|
(Ty::RawPtr(t1, m1), Ty::RawPtr(t2, m2)) if m1 == m2 => self.unify(t1, t2),
|
|
|
|
(Ty::Ref(t1, m1), Ty::Ref(t2, m2)) if m1 == m2 => self.unify(t1, t2),
|
|
|
|
(Ty::FnPtr(sig1), Ty::FnPtr(sig2)) if sig1 == sig2 => true,
|
|
|
|
(Ty::Tuple(ts1), Ty::Tuple(ts2)) if ts1.len() == ts2.len() => ts1
|
|
|
|
.iter()
|
|
|
|
.zip(ts2.iter())
|
|
|
|
.all(|(t1, t2)| self.unify(t1, t2)),
|
2019-01-10 11:08:54 -06:00
|
|
|
(Ty::Infer(InferTy::TypeVar(tv1)), Ty::Infer(InferTy::TypeVar(tv2)))
|
|
|
|
| (Ty::Infer(InferTy::IntVar(tv1)), Ty::Infer(InferTy::IntVar(tv2)))
|
|
|
|
| (Ty::Infer(InferTy::FloatVar(tv1)), Ty::Infer(InferTy::FloatVar(tv2))) => {
|
2019-01-10 15:49:43 -06:00
|
|
|
// both type vars are unknown since we tried to resolve them
|
2018-12-26 10:00:42 -06:00
|
|
|
self.var_unification_table.union(*tv1, *tv2);
|
|
|
|
true
|
|
|
|
}
|
2019-01-10 11:08:54 -06:00
|
|
|
(Ty::Infer(InferTy::TypeVar(tv)), other)
|
|
|
|
| (other, Ty::Infer(InferTy::TypeVar(tv)))
|
|
|
|
| (Ty::Infer(InferTy::IntVar(tv)), other)
|
|
|
|
| (other, Ty::Infer(InferTy::IntVar(tv)))
|
|
|
|
| (Ty::Infer(InferTy::FloatVar(tv)), other)
|
|
|
|
| (other, Ty::Infer(InferTy::FloatVar(tv))) => {
|
2019-01-10 15:49:43 -06:00
|
|
|
// the type var is unknown since we tried to resolve it
|
2018-12-26 10:00:42 -06:00
|
|
|
self.var_unification_table
|
|
|
|
.union_value(*tv, TypeVarValue::Known(other.clone()));
|
|
|
|
true
|
|
|
|
}
|
|
|
|
_ => false,
|
2018-12-23 06:22:29 -06:00
|
|
|
}
|
2018-12-26 10:00:42 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
fn new_type_var(&mut self) -> Ty {
|
|
|
|
Ty::Infer(InferTy::TypeVar(
|
|
|
|
self.var_unification_table.new_key(TypeVarValue::Unknown),
|
|
|
|
))
|
|
|
|
}
|
|
|
|
|
2019-01-10 11:08:54 -06:00
|
|
|
fn new_integer_var(&mut self) -> Ty {
|
|
|
|
Ty::Infer(InferTy::IntVar(
|
|
|
|
self.var_unification_table.new_key(TypeVarValue::Unknown),
|
|
|
|
))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn new_float_var(&mut self) -> Ty {
|
|
|
|
Ty::Infer(InferTy::FloatVar(
|
|
|
|
self.var_unification_table.new_key(TypeVarValue::Unknown),
|
|
|
|
))
|
|
|
|
}
|
|
|
|
|
2018-12-26 10:00:42 -06:00
|
|
|
/// Replaces Ty::Unknown by a new type var, so we can maybe still infer it.
|
|
|
|
fn insert_type_vars_shallow(&mut self, ty: Ty) -> Ty {
|
|
|
|
match ty {
|
|
|
|
Ty::Unknown => self.new_type_var(),
|
2019-01-10 11:08:54 -06:00
|
|
|
Ty::Int(primitive::UncertainIntTy::Unknown) => self.new_integer_var(),
|
|
|
|
Ty::Float(primitive::UncertainFloatTy::Unknown) => self.new_float_var(),
|
2018-12-26 10:00:42 -06:00
|
|
|
_ => ty,
|
2018-12-23 06:22:29 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-26 10:00:42 -06:00
|
|
|
fn insert_type_vars(&mut self, ty: Ty) -> Ty {
|
|
|
|
ty.fold(&mut |ty| self.insert_type_vars_shallow(ty))
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Resolves the type as far as currently possible, replacing type variables
|
|
|
|
/// by their known types. All types returned by the infer_* functions should
|
|
|
|
/// be resolved as far as possible, i.e. contain no type variables with
|
|
|
|
/// known type.
|
|
|
|
fn resolve_ty_as_possible(&mut self, ty: Ty) -> Ty {
|
|
|
|
ty.fold(&mut |ty| match ty {
|
2019-01-14 12:30:21 -06:00
|
|
|
Ty::Infer(tv) => {
|
|
|
|
let inner = tv.to_inner();
|
|
|
|
if let Some(known_ty) = self.var_unification_table.probe_value(inner).known() {
|
2018-12-26 10:00:42 -06:00
|
|
|
// known_ty may contain other variables that are known by now
|
|
|
|
self.resolve_ty_as_possible(known_ty.clone())
|
|
|
|
} else {
|
2019-01-10 11:08:54 -06:00
|
|
|
ty
|
2018-12-26 10:00:42 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => ty,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-01-10 15:49:43 -06:00
|
|
|
/// If `ty` is a type variable with known type, returns that type;
|
|
|
|
/// otherwise, return ty.
|
|
|
|
fn resolve_ty_shallow<'b>(&mut self, ty: &'b Ty) -> Cow<'b, Ty> {
|
|
|
|
match ty {
|
2019-01-14 12:30:21 -06:00
|
|
|
Ty::Infer(tv) => {
|
|
|
|
let inner = tv.to_inner();
|
|
|
|
match self.var_unification_table.probe_value(inner).known() {
|
2019-01-10 15:49:43 -06:00
|
|
|
Some(known_ty) => {
|
|
|
|
// The known_ty can't be a type var itself
|
|
|
|
Cow::Owned(known_ty.clone())
|
|
|
|
}
|
|
|
|
_ => Cow::Borrowed(ty),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => Cow::Borrowed(ty),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-26 10:00:42 -06:00
|
|
|
/// Resolves the type completely; type variables without known type are
|
|
|
|
/// replaced by Ty::Unknown.
|
|
|
|
fn resolve_ty_completely(&mut self, ty: Ty) -> Ty {
|
|
|
|
ty.fold(&mut |ty| match ty {
|
2019-01-14 12:30:21 -06:00
|
|
|
Ty::Infer(tv) => {
|
|
|
|
let inner = tv.to_inner();
|
|
|
|
if let Some(known_ty) = self.var_unification_table.probe_value(inner).known() {
|
2018-12-26 10:00:42 -06:00
|
|
|
// known_ty may contain other variables that are known by now
|
|
|
|
self.resolve_ty_completely(known_ty.clone())
|
|
|
|
} else {
|
2019-01-14 12:30:21 -06:00
|
|
|
tv.fallback_value()
|
2018-12-26 10:00:42 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => ty,
|
|
|
|
})
|
2018-12-20 14:56:28 -06:00
|
|
|
}
|
|
|
|
|
2019-01-15 11:54:18 -06:00
|
|
|
fn infer_path_expr(&mut self, expr: ExprId, path: &Path) -> Option<Ty> {
|
2019-01-06 09:47:59 -06:00
|
|
|
if path.is_ident() || path.is_self() {
|
2018-12-23 10:13:11 -06:00
|
|
|
// resolve locally
|
2019-01-06 09:47:59 -06:00
|
|
|
let name = path.as_ident().cloned().unwrap_or_else(Name::self_param);
|
|
|
|
if let Some(scope_entry) = self.scopes.resolve_local_name(expr, name) {
|
2019-01-15 11:54:18 -06:00
|
|
|
let ty = self.type_of_pat.get(scope_entry.pat())?;
|
2018-12-26 10:00:42 -06:00
|
|
|
let ty = self.resolve_ty_as_possible(ty.clone());
|
2019-01-15 11:54:18 -06:00
|
|
|
return Some(ty);
|
2018-12-23 10:13:11 -06:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
// resolve in module
|
2019-01-15 11:54:18 -06:00
|
|
|
let resolved = self.module.resolve_path(self.db, &path).take_values()?;
|
2019-01-15 11:43:37 -06:00
|
|
|
let ty = self.db.type_for_def(resolved);
|
2018-12-26 10:00:42 -06:00
|
|
|
let ty = self.insert_type_vars(ty);
|
2019-01-15 11:54:18 -06:00
|
|
|
Some(ty)
|
2018-12-23 05:54:53 -06:00
|
|
|
}
|
|
|
|
|
2019-01-15 11:54:18 -06:00
|
|
|
fn resolve_variant(&self, path: Option<&Path>) -> (Ty, Option<DefId>) {
|
2019-01-06 09:47:59 -06:00
|
|
|
let path = if let Some(path) = path {
|
2018-12-24 14:00:14 -06:00
|
|
|
path
|
|
|
|
} else {
|
2019-01-15 11:54:18 -06:00
|
|
|
return (Ty::Unknown, None);
|
2018-12-24 14:00:14 -06:00
|
|
|
};
|
2019-01-15 10:15:01 -06:00
|
|
|
let def_id = if let Some(def_id) = self.module.resolve_path(self.db, &path).take_types() {
|
2018-12-24 14:00:14 -06:00
|
|
|
def_id
|
|
|
|
} else {
|
2019-01-15 11:54:18 -06:00
|
|
|
return (Ty::Unknown, None);
|
2018-12-24 14:00:14 -06:00
|
|
|
};
|
2019-01-15 11:54:18 -06:00
|
|
|
match def_id.resolve(self.db) {
|
2018-12-24 14:00:14 -06:00
|
|
|
Def::Struct(s) => {
|
2019-01-15 11:43:37 -06:00
|
|
|
let ty = type_for_struct(self.db, s);
|
2018-12-26 10:00:42 -06:00
|
|
|
(ty, Some(def_id))
|
2018-12-24 14:00:14 -06:00
|
|
|
}
|
2019-01-08 09:01:19 -06:00
|
|
|
Def::EnumVariant(ev) => {
|
2019-01-15 11:43:37 -06:00
|
|
|
let ty = type_for_enum_variant(self.db, ev);
|
2019-01-08 09:01:19 -06:00
|
|
|
(ty, Some(def_id))
|
|
|
|
}
|
2018-12-24 14:00:14 -06:00
|
|
|
_ => (Ty::Unknown, None),
|
2019-01-15 11:54:18 -06:00
|
|
|
}
|
2018-12-24 14:00:14 -06:00
|
|
|
}
|
|
|
|
|
2019-01-15 11:47:37 -06:00
|
|
|
// FIXME: Expectation should probably contain a reference to a Ty instead of
|
|
|
|
// a Ty itself
|
|
|
|
fn infer_pat(&mut self, pat: PatId, expected: &Expectation) -> Ty {
|
|
|
|
let body = Arc::clone(&self.body); // avoid borrow checker problem
|
2019-01-16 09:34:33 -06:00
|
|
|
|
2019-01-15 11:47:37 -06:00
|
|
|
match (&body[pat], &expected.ty) {
|
|
|
|
(Pat::Tuple(ref args), &Ty::Tuple(ref tuple_args))
|
|
|
|
if args.len() == tuple_args.len() =>
|
|
|
|
{
|
|
|
|
for (&pat, ty) in args.iter().zip(tuple_args.iter()) {
|
|
|
|
// FIXME: can we do w/o cloning?
|
|
|
|
self.infer_pat(pat, &Expectation::has_type(ty.clone()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
(&Pat::Ref { pat, mutability }, &Ty::Ref(ref sub_ty, ty_mut))
|
|
|
|
if mutability == ty_mut =>
|
|
|
|
{
|
|
|
|
self.infer_pat(pat, &Expectation::has_type((&**sub_ty).clone()));
|
|
|
|
}
|
2019-01-16 09:34:33 -06:00
|
|
|
(pattern, &Ty::Adt { def_id, .. }) => {
|
|
|
|
let adt_def = def_id.resolve(self.db);
|
|
|
|
match (pattern, adt_def) {
|
|
|
|
(&Pat::Struct, Def::Struct(s)) => {}
|
|
|
|
(
|
|
|
|
&Pat::TupleStruct {
|
|
|
|
path: ref p,
|
|
|
|
args: ref sub_pats,
|
|
|
|
},
|
|
|
|
Def::Enum(ref e),
|
|
|
|
) => {
|
|
|
|
// TODO: resolve enum
|
|
|
|
}
|
|
|
|
(
|
|
|
|
&Pat::TupleStruct {
|
|
|
|
path: ref p,
|
|
|
|
args: ref sub_pats,
|
|
|
|
},
|
|
|
|
Def::EnumVariant(ref e),
|
|
|
|
) => {
|
|
|
|
let variant_data = self.db.enum_variant_data(e.def_id);
|
|
|
|
}
|
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
}
|
2019-01-15 11:47:37 -06:00
|
|
|
// TODO: implement more
|
|
|
|
(_, ref _expected_ty) => {}
|
|
|
|
};
|
|
|
|
// use a new type variable if we got Ty::Unknown here
|
|
|
|
let ty = self.insert_type_vars_shallow(expected.ty.clone());
|
|
|
|
self.unify(&ty, &expected.ty);
|
|
|
|
let ty = self.resolve_ty_as_possible(ty);
|
|
|
|
self.write_pat_ty(pat, ty.clone());
|
|
|
|
ty
|
|
|
|
}
|
|
|
|
|
2019-01-15 11:54:18 -06:00
|
|
|
fn infer_expr(&mut self, expr: ExprId, expected: &Expectation) -> Ty {
|
2019-01-06 09:47:59 -06:00
|
|
|
let body = Arc::clone(&self.body); // avoid borrow checker problem
|
|
|
|
let ty = match &body[expr] {
|
|
|
|
Expr::Missing => Ty::Unknown,
|
|
|
|
Expr::If {
|
|
|
|
condition,
|
|
|
|
then_branch,
|
|
|
|
else_branch,
|
|
|
|
} => {
|
|
|
|
// if let is desugared to match, so this is always simple if
|
2019-01-15 11:54:18 -06:00
|
|
|
self.infer_expr(*condition, &Expectation::has_type(Ty::Bool));
|
|
|
|
let then_ty = self.infer_expr(*then_branch, expected);
|
2019-01-10 15:49:43 -06:00
|
|
|
match else_branch {
|
|
|
|
Some(else_branch) => {
|
2019-01-15 11:54:18 -06:00
|
|
|
self.infer_expr(*else_branch, expected);
|
2019-01-10 15:49:43 -06:00
|
|
|
}
|
|
|
|
None => {
|
|
|
|
// no else branch -> unit
|
|
|
|
self.unify(&then_ty, &Ty::unit()); // actually coerce
|
|
|
|
}
|
|
|
|
};
|
2019-01-06 09:47:59 -06:00
|
|
|
then_ty
|
2018-12-20 14:56:28 -06:00
|
|
|
}
|
2019-01-15 11:54:18 -06:00
|
|
|
Expr::Block { statements, tail } => self.infer_block(statements, *tail, expected),
|
2019-01-06 09:47:59 -06:00
|
|
|
Expr::Loop { body } => {
|
2019-01-15 11:54:18 -06:00
|
|
|
self.infer_expr(*body, &Expectation::has_type(Ty::unit()));
|
2019-01-06 09:47:59 -06:00
|
|
|
// TODO handle break with value
|
|
|
|
Ty::Never
|
2018-12-20 14:56:28 -06:00
|
|
|
}
|
2019-01-06 09:47:59 -06:00
|
|
|
Expr::While { condition, body } => {
|
|
|
|
// while let is desugared to a match loop, so this is always simple while
|
2019-01-15 11:54:18 -06:00
|
|
|
self.infer_expr(*condition, &Expectation::has_type(Ty::Bool));
|
|
|
|
self.infer_expr(*body, &Expectation::has_type(Ty::unit()));
|
2018-12-26 10:00:42 -06:00
|
|
|
Ty::unit()
|
2018-12-20 14:56:28 -06:00
|
|
|
}
|
2019-01-06 09:47:59 -06:00
|
|
|
Expr::For { iterable, body, .. } => {
|
|
|
|
let _iterable_ty = self.infer_expr(*iterable, &Expectation::none());
|
|
|
|
// TODO write type for pat
|
2019-01-15 11:54:18 -06:00
|
|
|
self.infer_expr(*body, &Expectation::has_type(Ty::unit()));
|
2018-12-26 10:00:42 -06:00
|
|
|
Ty::unit()
|
2018-12-20 14:56:28 -06:00
|
|
|
}
|
2019-01-06 09:47:59 -06:00
|
|
|
Expr::Lambda { body, .. } => {
|
|
|
|
// TODO write types for args, infer lambda type etc.
|
2019-01-15 11:54:18 -06:00
|
|
|
let _body_ty = self.infer_expr(*body, &Expectation::none());
|
2018-12-20 14:56:28 -06:00
|
|
|
Ty::Unknown
|
|
|
|
}
|
2019-01-06 09:47:59 -06:00
|
|
|
Expr::Call { callee, args } => {
|
2019-01-15 11:54:18 -06:00
|
|
|
let callee_ty = self.infer_expr(*callee, &Expectation::none());
|
2019-01-12 14:58:16 -06:00
|
|
|
let (param_tys, ret_ty) = match &callee_ty {
|
2018-12-26 10:00:42 -06:00
|
|
|
Ty::FnPtr(sig) => (&sig.input[..], sig.output.clone()),
|
2018-12-23 10:16:47 -06:00
|
|
|
_ => {
|
|
|
|
// not callable
|
|
|
|
// TODO report an error?
|
2018-12-26 10:00:42 -06:00
|
|
|
(&[][..], Ty::Unknown)
|
|
|
|
}
|
|
|
|
};
|
2019-01-06 09:47:59 -06:00
|
|
|
for (i, arg) in args.iter().enumerate() {
|
|
|
|
self.infer_expr(
|
|
|
|
*arg,
|
2019-01-12 14:58:16 -06:00
|
|
|
&Expectation::has_type(param_tys.get(i).cloned().unwrap_or(Ty::Unknown)),
|
2019-01-15 11:54:18 -06:00
|
|
|
);
|
2018-12-23 10:16:47 -06:00
|
|
|
}
|
2018-12-26 10:00:42 -06:00
|
|
|
ret_ty
|
2018-12-20 14:56:28 -06:00
|
|
|
}
|
2019-01-07 06:44:54 -06:00
|
|
|
Expr::MethodCall {
|
|
|
|
receiver,
|
|
|
|
args,
|
|
|
|
method_name,
|
|
|
|
} => {
|
2019-01-15 11:54:18 -06:00
|
|
|
let receiver_ty = self.infer_expr(*receiver, &Expectation::none());
|
|
|
|
let resolved = receiver_ty.clone().lookup_method(self.db, method_name);
|
2019-01-07 06:44:54 -06:00
|
|
|
let method_ty = match resolved {
|
2019-01-13 09:56:57 -06:00
|
|
|
Some(def_id) => {
|
|
|
|
self.write_method_resolution(expr, def_id);
|
2019-01-15 11:43:37 -06:00
|
|
|
self.db.type_for_def(def_id)
|
2019-01-13 09:56:57 -06:00
|
|
|
}
|
2019-01-07 06:44:54 -06:00
|
|
|
None => Ty::Unknown,
|
|
|
|
};
|
|
|
|
let method_ty = self.insert_type_vars(method_ty);
|
2019-01-12 14:58:16 -06:00
|
|
|
let (expected_receiver_ty, param_tys, ret_ty) = match &method_ty {
|
2019-01-07 06:44:54 -06:00
|
|
|
Ty::FnPtr(sig) => {
|
|
|
|
if sig.input.len() > 0 {
|
|
|
|
(&sig.input[0], &sig.input[1..], sig.output.clone())
|
|
|
|
} else {
|
|
|
|
(&Ty::Unknown, &[][..], sig.output.clone())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => (&Ty::Unknown, &[][..], Ty::Unknown),
|
|
|
|
};
|
|
|
|
// TODO we would have to apply the autoderef/autoref steps here
|
|
|
|
// to get the correct receiver type to unify...
|
|
|
|
self.unify(expected_receiver_ty, &receiver_ty);
|
|
|
|
for (i, arg) in args.iter().enumerate() {
|
|
|
|
self.infer_expr(
|
|
|
|
*arg,
|
2019-01-12 14:58:16 -06:00
|
|
|
&Expectation::has_type(param_tys.get(i).cloned().unwrap_or(Ty::Unknown)),
|
2019-01-15 11:54:18 -06:00
|
|
|
);
|
2018-12-20 14:56:28 -06:00
|
|
|
}
|
2019-01-07 06:44:54 -06:00
|
|
|
ret_ty
|
2018-12-20 14:56:28 -06:00
|
|
|
}
|
2019-01-06 09:47:59 -06:00
|
|
|
Expr::Match { expr, arms } => {
|
2019-01-15 11:54:18 -06:00
|
|
|
let _ty = self.infer_expr(*expr, &Expectation::none());
|
2019-01-06 09:47:59 -06:00
|
|
|
for arm in arms {
|
|
|
|
// TODO type the bindings in pats
|
|
|
|
// TODO type the guard
|
2019-01-15 11:54:18 -06:00
|
|
|
let _ty = self.infer_expr(arm.expr, &Expectation::none());
|
2018-12-20 14:56:28 -06:00
|
|
|
}
|
2019-01-06 09:47:59 -06:00
|
|
|
// TODO unify all the match arm types
|
|
|
|
Ty::Unknown
|
2018-12-20 14:56:28 -06:00
|
|
|
}
|
2019-01-15 11:54:18 -06:00
|
|
|
Expr::Path(p) => self.infer_path_expr(expr, p).unwrap_or(Ty::Unknown),
|
2019-01-06 09:47:59 -06:00
|
|
|
Expr::Continue => Ty::Never,
|
|
|
|
Expr::Break { expr } => {
|
|
|
|
if let Some(expr) = expr {
|
|
|
|
// TODO handle break with value
|
2019-01-15 11:54:18 -06:00
|
|
|
self.infer_expr(*expr, &Expectation::none());
|
2019-01-06 09:47:59 -06:00
|
|
|
}
|
2018-12-20 14:56:28 -06:00
|
|
|
Ty::Never
|
|
|
|
}
|
2019-01-06 09:47:59 -06:00
|
|
|
Expr::Return { expr } => {
|
|
|
|
if let Some(expr) = expr {
|
2019-01-15 11:54:18 -06:00
|
|
|
self.infer_expr(*expr, &Expectation::has_type(self.return_ty.clone()));
|
2018-12-24 14:00:14 -06:00
|
|
|
}
|
2019-01-06 09:47:59 -06:00
|
|
|
Ty::Never
|
2018-12-24 14:00:14 -06:00
|
|
|
}
|
2019-01-06 09:47:59 -06:00
|
|
|
Expr::StructLit {
|
|
|
|
path,
|
|
|
|
fields,
|
|
|
|
spread,
|
|
|
|
} => {
|
2019-01-15 11:54:18 -06:00
|
|
|
let (ty, def_id) = self.resolve_variant(path.as_ref());
|
2019-01-06 09:47:59 -06:00
|
|
|
for field in fields {
|
|
|
|
let field_ty = if let Some(def_id) = def_id {
|
2019-01-06 12:51:42 -06:00
|
|
|
self.db
|
2019-01-15 11:43:37 -06:00
|
|
|
.type_for_field(def_id, field.name.clone())
|
2019-01-06 12:51:42 -06:00
|
|
|
.unwrap_or(Ty::Unknown)
|
2019-01-06 09:47:59 -06:00
|
|
|
} else {
|
|
|
|
Ty::Unknown
|
2018-12-26 10:00:42 -06:00
|
|
|
};
|
2019-01-15 11:54:18 -06:00
|
|
|
self.infer_expr(field.expr, &Expectation::has_type(field_ty));
|
2019-01-06 09:47:59 -06:00
|
|
|
}
|
|
|
|
if let Some(expr) = spread {
|
2019-01-15 11:54:18 -06:00
|
|
|
self.infer_expr(*expr, &Expectation::has_type(ty.clone()));
|
2018-12-25 06:54:38 -06:00
|
|
|
}
|
2019-01-06 09:47:59 -06:00
|
|
|
ty
|
|
|
|
}
|
|
|
|
Expr::Field { expr, name } => {
|
2019-01-15 11:54:18 -06:00
|
|
|
let receiver_ty = self.infer_expr(*expr, &Expectation::none());
|
2019-01-06 12:51:42 -06:00
|
|
|
let ty = receiver_ty
|
|
|
|
.autoderef(self.db)
|
|
|
|
.find_map(|derefed_ty| match derefed_ty {
|
|
|
|
// this is more complicated than necessary because type_for_field is cancelable
|
|
|
|
Ty::Tuple(fields) => {
|
|
|
|
let i = name.to_string().parse::<usize>().ok();
|
2019-01-15 11:54:18 -06:00
|
|
|
i.and_then(|i| fields.get(i).cloned())
|
2019-01-06 12:51:42 -06:00
|
|
|
}
|
2019-01-15 11:54:18 -06:00
|
|
|
Ty::Adt { def_id, .. } => self.db.type_for_field(def_id, name.clone()),
|
2019-01-06 12:51:42 -06:00
|
|
|
_ => None,
|
|
|
|
})
|
2019-01-15 11:54:18 -06:00
|
|
|
.unwrap_or(Ty::Unknown);
|
2019-01-06 09:47:59 -06:00
|
|
|
self.insert_type_vars(ty)
|
2018-12-25 08:15:40 -06:00
|
|
|
}
|
2019-01-06 09:47:59 -06:00
|
|
|
Expr::Try { expr } => {
|
2019-01-15 11:54:18 -06:00
|
|
|
let _inner_ty = self.infer_expr(*expr, &Expectation::none());
|
2018-12-20 14:56:28 -06:00
|
|
|
Ty::Unknown
|
|
|
|
}
|
2019-01-06 09:47:59 -06:00
|
|
|
Expr::Cast { expr, type_ref } => {
|
2019-01-15 11:54:18 -06:00
|
|
|
let _inner_ty = self.infer_expr(*expr, &Expectation::none());
|
2019-01-06 09:47:59 -06:00
|
|
|
let cast_ty =
|
2019-01-15 11:43:37 -06:00
|
|
|
Ty::from_hir(self.db, &self.module, self.impl_block.as_ref(), type_ref);
|
2018-12-26 10:00:42 -06:00
|
|
|
let cast_ty = self.insert_type_vars(cast_ty);
|
2019-01-06 09:47:59 -06:00
|
|
|
// TODO check the cast...
|
2018-12-20 14:56:28 -06:00
|
|
|
cast_ty
|
|
|
|
}
|
2019-01-06 09:47:59 -06:00
|
|
|
Expr::Ref { expr, mutability } => {
|
2018-12-26 10:00:42 -06:00
|
|
|
// TODO pass the expectation down
|
2019-01-15 11:54:18 -06:00
|
|
|
let inner_ty = self.infer_expr(*expr, &Expectation::none());
|
2018-12-25 10:17:39 -06:00
|
|
|
// TODO reference coercions etc.
|
2019-01-06 09:47:59 -06:00
|
|
|
Ty::Ref(Arc::new(inner_ty), *mutability)
|
2018-12-20 14:56:28 -06:00
|
|
|
}
|
2019-01-06 09:47:59 -06:00
|
|
|
Expr::UnaryOp { expr, op } => {
|
2019-01-15 11:54:18 -06:00
|
|
|
let inner_ty = self.infer_expr(*expr, &Expectation::none());
|
2019-01-06 09:47:59 -06:00
|
|
|
match op {
|
2019-01-14 16:15:16 -06:00
|
|
|
UnaryOp::Deref => {
|
2019-01-06 12:51:42 -06:00
|
|
|
if let Some(derefed_ty) = inner_ty.builtin_deref() {
|
|
|
|
derefed_ty
|
|
|
|
} else {
|
2018-12-25 10:17:39 -06:00
|
|
|
// TODO Deref::deref
|
2019-01-06 12:51:42 -06:00
|
|
|
Ty::Unknown
|
2018-12-25 10:17:39 -06:00
|
|
|
}
|
|
|
|
}
|
2019-01-14 16:15:16 -06:00
|
|
|
UnaryOp::Neg => {
|
|
|
|
match inner_ty {
|
|
|
|
Ty::Int(primitive::UncertainIntTy::Unknown)
|
|
|
|
| Ty::Int(primitive::UncertainIntTy::Signed(..))
|
|
|
|
| Ty::Infer(InferTy::IntVar(..))
|
|
|
|
| Ty::Infer(InferTy::FloatVar(..))
|
|
|
|
| Ty::Float(..) => inner_ty,
|
|
|
|
// TODO: resolve ops::Neg trait
|
|
|
|
_ => Ty::Unknown,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
UnaryOp::Not if inner_ty == Ty::Bool => Ty::Bool,
|
|
|
|
// TODO: resolve ops::Not trait for inner_ty
|
|
|
|
UnaryOp::Not => Ty::Unknown,
|
2018-12-25 10:17:39 -06:00
|
|
|
}
|
2018-12-20 14:56:28 -06:00
|
|
|
}
|
2019-01-06 09:47:59 -06:00
|
|
|
Expr::BinaryOp { lhs, rhs, op } => match op {
|
2019-01-06 14:39:36 -06:00
|
|
|
Some(op) => {
|
2019-01-07 13:11:31 -06:00
|
|
|
let lhs_expectation = match op {
|
2019-01-06 09:47:59 -06:00
|
|
|
BinaryOp::BooleanAnd | BinaryOp::BooleanOr => {
|
|
|
|
Expectation::has_type(Ty::Bool)
|
|
|
|
}
|
2019-01-06 14:39:36 -06:00
|
|
|
_ => Expectation::none(),
|
|
|
|
};
|
2019-01-15 11:54:18 -06:00
|
|
|
let lhs_ty = self.infer_expr(*lhs, &lhs_expectation);
|
2019-01-07 13:11:31 -06:00
|
|
|
// TODO: find implementation of trait corresponding to operation
|
|
|
|
// symbol and resolve associated `Output` type
|
2019-01-07 13:39:23 -06:00
|
|
|
let rhs_expectation = binary_op_rhs_expectation(*op, lhs_ty);
|
2019-01-15 11:54:18 -06:00
|
|
|
let rhs_ty = self.infer_expr(*rhs, &Expectation::has_type(rhs_expectation));
|
2019-01-06 14:39:36 -06:00
|
|
|
|
2019-01-07 13:11:31 -06:00
|
|
|
// TODO: similar as above, return ty is often associated trait type
|
2019-01-07 13:39:23 -06:00
|
|
|
binary_op_return_ty(*op, rhs_ty)
|
2019-01-06 14:39:36 -06:00
|
|
|
}
|
2019-01-05 14:28:30 -06:00
|
|
|
_ => Ty::Unknown,
|
|
|
|
},
|
2019-01-13 06:00:27 -06:00
|
|
|
Expr::Tuple { exprs } => {
|
|
|
|
let mut ty_vec = Vec::with_capacity(exprs.len());
|
|
|
|
for arg in exprs.iter() {
|
2019-01-15 11:54:18 -06:00
|
|
|
ty_vec.push(self.infer_expr(*arg, &Expectation::none()));
|
2019-01-13 06:00:27 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
Ty::Tuple(Arc::from(ty_vec))
|
2019-01-16 09:08:53 -06:00
|
|
|
}
|
2019-01-13 07:46:36 -06:00
|
|
|
Expr::Array { exprs } => {
|
2019-01-14 18:26:20 -06:00
|
|
|
let elem_ty = match &expected.ty {
|
2019-01-14 07:51:54 -06:00
|
|
|
Ty::Slice(inner) | Ty::Array(inner) => Ty::clone(&inner),
|
|
|
|
_ => self.new_type_var(),
|
|
|
|
};
|
|
|
|
|
|
|
|
for expr in exprs.iter() {
|
2019-01-14 18:26:20 -06:00
|
|
|
self.infer_expr(*expr, &Expectation::has_type(elem_ty.clone()));
|
2019-01-13 07:46:36 -06:00
|
|
|
}
|
|
|
|
|
2019-01-14 07:51:54 -06:00
|
|
|
Ty::Array(Arc::new(elem_ty))
|
2019-01-16 09:08:53 -06:00
|
|
|
}
|
2019-01-10 06:54:58 -06:00
|
|
|
Expr::Literal(lit) => match lit {
|
|
|
|
Literal::Bool(..) => Ty::Bool,
|
|
|
|
Literal::String(..) => Ty::Ref(Arc::new(Ty::Str), Mutability::Shared),
|
|
|
|
Literal::ByteString(..) => {
|
2019-01-10 09:03:15 -06:00
|
|
|
let byte_type = Arc::new(Ty::Int(primitive::UncertainIntTy::Unsigned(
|
|
|
|
primitive::UintTy::U8,
|
|
|
|
)));
|
2019-01-10 06:54:58 -06:00
|
|
|
let slice_type = Arc::new(Ty::Slice(byte_type));
|
|
|
|
Ty::Ref(slice_type, Mutability::Shared)
|
|
|
|
}
|
|
|
|
Literal::Char(..) => Ty::Char,
|
2019-01-10 09:03:15 -06:00
|
|
|
Literal::Int(_v, ty) => Ty::Int(*ty),
|
|
|
|
Literal::Float(_v, ty) => Ty::Float(*ty),
|
2019-01-10 06:54:58 -06:00
|
|
|
},
|
2018-12-20 14:56:28 -06:00
|
|
|
};
|
2018-12-26 10:00:42 -06:00
|
|
|
// use a new type variable if we got Ty::Unknown here
|
|
|
|
let ty = self.insert_type_vars_shallow(ty);
|
|
|
|
self.unify(&ty, &expected.ty);
|
2019-01-06 09:47:59 -06:00
|
|
|
let ty = self.resolve_ty_as_possible(ty);
|
|
|
|
self.write_expr_ty(expr, ty.clone());
|
2019-01-15 11:54:18 -06:00
|
|
|
ty
|
2018-12-20 14:56:28 -06:00
|
|
|
}
|
|
|
|
|
2019-01-06 09:47:59 -06:00
|
|
|
fn infer_block(
|
2018-12-26 10:00:42 -06:00
|
|
|
&mut self,
|
2019-01-06 09:47:59 -06:00
|
|
|
statements: &[Statement],
|
|
|
|
tail: Option<ExprId>,
|
2018-12-26 10:00:42 -06:00
|
|
|
expected: &Expectation,
|
2019-01-15 11:54:18 -06:00
|
|
|
) -> Ty {
|
2019-01-06 09:47:59 -06:00
|
|
|
for stmt in statements {
|
2018-12-20 14:56:28 -06:00
|
|
|
match stmt {
|
2019-01-06 09:47:59 -06:00
|
|
|
Statement::Let {
|
|
|
|
pat,
|
|
|
|
type_ref,
|
|
|
|
initializer,
|
|
|
|
} => {
|
|
|
|
let decl_ty = Ty::from_hir_opt(
|
2018-12-29 16:20:12 -06:00
|
|
|
self.db,
|
|
|
|
&self.module,
|
|
|
|
self.impl_block.as_ref(),
|
2019-01-06 09:47:59 -06:00
|
|
|
type_ref.as_ref(),
|
2019-01-15 11:43:37 -06:00
|
|
|
);
|
2018-12-26 10:00:42 -06:00
|
|
|
let decl_ty = self.insert_type_vars(decl_ty);
|
2019-01-06 09:47:59 -06:00
|
|
|
let ty = if let Some(expr) = initializer {
|
2019-01-15 11:54:18 -06:00
|
|
|
let expr_ty = self.infer_expr(*expr, &Expectation::has_type(decl_ty));
|
2018-12-26 10:00:42 -06:00
|
|
|
expr_ty
|
2018-12-23 06:22:29 -06:00
|
|
|
} else {
|
|
|
|
decl_ty
|
|
|
|
};
|
|
|
|
|
2019-01-16 09:34:33 -06:00
|
|
|
self.infer_pat(*pat, &Expectation::has_type(ty));
|
2018-12-20 14:56:28 -06:00
|
|
|
}
|
2019-01-06 09:47:59 -06:00
|
|
|
Statement::Expr(expr) => {
|
2019-01-15 11:54:18 -06:00
|
|
|
self.infer_expr(*expr, &Expectation::none());
|
2018-12-20 14:56:28 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-01-06 09:47:59 -06:00
|
|
|
let ty = if let Some(expr) = tail {
|
2019-01-15 11:54:18 -06:00
|
|
|
self.infer_expr(expr, expected)
|
2018-12-20 14:56:28 -06:00
|
|
|
} else {
|
|
|
|
Ty::unit()
|
|
|
|
};
|
2019-01-15 11:54:18 -06:00
|
|
|
ty
|
2018-12-20 14:56:28 -06:00
|
|
|
}
|
2018-12-23 10:13:11 -06:00
|
|
|
|
2019-01-15 11:54:18 -06:00
|
|
|
fn collect_fn_signature(&mut self, signature: &FnSignature) {
|
2019-01-06 09:47:59 -06:00
|
|
|
let body = Arc::clone(&self.body); // avoid borrow checker problem
|
2019-01-12 14:58:16 -06:00
|
|
|
for (type_ref, pat) in signature.params().iter().zip(body.params()) {
|
2019-01-15 11:43:37 -06:00
|
|
|
let ty = self.make_ty(type_ref);
|
2019-01-06 09:47:59 -06:00
|
|
|
let ty = self.insert_type_vars(ty);
|
2019-01-15 08:24:04 -06:00
|
|
|
|
2019-01-16 09:34:33 -06:00
|
|
|
self.infer_pat(*pat, &Expectation::has_type(ty));
|
2018-12-29 14:32:07 -06:00
|
|
|
}
|
2019-01-06 09:47:59 -06:00
|
|
|
self.return_ty = {
|
2019-01-15 11:43:37 -06:00
|
|
|
let ty = self.make_ty(signature.ret_type());
|
2019-01-06 09:47:59 -06:00
|
|
|
let ty = self.insert_type_vars(ty);
|
|
|
|
ty
|
2018-12-29 16:35:57 -06:00
|
|
|
};
|
2019-01-06 09:47:59 -06:00
|
|
|
}
|
2018-12-29 16:35:57 -06:00
|
|
|
|
2019-01-15 11:54:18 -06:00
|
|
|
fn infer_body(&mut self) {
|
2019-01-06 09:47:59 -06:00
|
|
|
self.infer_expr(
|
|
|
|
self.body.body_expr(),
|
|
|
|
&Expectation::has_type(self.return_ty.clone()),
|
2019-01-15 11:54:18 -06:00
|
|
|
);
|
2018-12-20 14:56:28 -06:00
|
|
|
}
|
2018-12-29 16:35:57 -06:00
|
|
|
}
|
2018-12-20 14:56:28 -06:00
|
|
|
|
2019-01-15 11:54:18 -06:00
|
|
|
pub fn infer(db: &impl HirDatabase, def_id: DefId) -> Arc<InferenceResult> {
|
2019-01-15 06:45:48 -06:00
|
|
|
db.check_canceled();
|
2018-12-29 16:35:57 -06:00
|
|
|
let function = Function::new(def_id); // TODO: consts also need inference
|
2019-01-15 10:01:59 -06:00
|
|
|
let body = function.body(db);
|
2019-01-15 10:04:49 -06:00
|
|
|
let scopes = db.fn_scopes(def_id);
|
2019-01-15 10:18:52 -06:00
|
|
|
let module = function.module(db);
|
|
|
|
let impl_block = function.impl_block(db);
|
2019-01-06 09:47:59 -06:00
|
|
|
let mut ctx = InferenceContext::new(db, body, scopes, module, impl_block);
|
2018-12-29 16:35:57 -06:00
|
|
|
|
2019-01-06 09:47:59 -06:00
|
|
|
let signature = function.signature(db);
|
2019-01-15 11:54:18 -06:00
|
|
|
ctx.collect_fn_signature(&signature);
|
2018-12-20 14:56:28 -06:00
|
|
|
|
2019-01-15 11:54:18 -06:00
|
|
|
ctx.infer_body();
|
2018-12-20 14:56:28 -06:00
|
|
|
|
2019-01-15 11:54:18 -06:00
|
|
|
Arc::new(ctx.resolve_all())
|
2018-12-20 14:56:28 -06:00
|
|
|
}
|