2019-04-20 05:34:36 -05:00
|
|
|
//! Unification and canonicalization logic.
|
|
|
|
|
2021-04-11 04:20:45 -05:00
|
|
|
use std::{borrow::Cow, fmt, sync::Arc};
|
2019-12-01 13:30:28 -06:00
|
|
|
|
2021-04-03 10:49:29 -05:00
|
|
|
use chalk_ir::{
|
2021-04-08 06:58:03 -05:00
|
|
|
cast::Cast, fold::Fold, interner::HasInterner, FloatTy, IntTy, TyVariableKind, UniverseIndex,
|
|
|
|
VariableKind,
|
2021-04-03 10:49:29 -05:00
|
|
|
};
|
2021-04-11 04:20:45 -05:00
|
|
|
use chalk_solve::infer::ParameterEnaVariableExt;
|
|
|
|
use ena::unify::UnifyKey;
|
2019-12-01 13:30:28 -06:00
|
|
|
|
2021-04-11 04:20:45 -05:00
|
|
|
use super::InferenceContext;
|
2020-04-05 11:24:18 -05:00
|
|
|
use crate::{
|
2021-04-11 04:20:45 -05:00
|
|
|
db::HirDatabase, fold_tys, static_lifetime, BoundVar, Canonical, DebruijnIndex, GenericArg,
|
|
|
|
InferenceVar, Interner, Scalar, Substitution, TraitEnvironment, Ty, TyKind,
|
2020-04-05 11:24:18 -05:00
|
|
|
};
|
2019-04-20 05:34:36 -05:00
|
|
|
|
2020-03-13 10:05:46 -05:00
|
|
|
impl<'a> InferenceContext<'a> {
|
2021-04-11 04:20:45 -05:00
|
|
|
pub(super) fn canonicalize<T: Fold<Interner> + HasInterner<Interner = Interner>>(
|
|
|
|
&mut self,
|
|
|
|
t: T,
|
|
|
|
) -> Canonicalized<T::Result>
|
2019-04-20 05:34:36 -05:00
|
|
|
where
|
2021-04-11 04:20:45 -05:00
|
|
|
T::Result: HasInterner<Interner = Interner>,
|
2019-04-20 05:34:36 -05:00
|
|
|
{
|
2021-04-11 04:20:45 -05:00
|
|
|
let result = self.table.var_unification_table.canonicalize(&Interner, t);
|
|
|
|
let free_vars = result
|
|
|
|
.free_vars
|
|
|
|
.into_iter()
|
|
|
|
.map(|free_var| free_var.to_generic_arg(&Interner))
|
|
|
|
.collect();
|
|
|
|
Canonicalized { value: result.quantified, free_vars }
|
2019-04-20 05:34:36 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-10 10:44:43 -05:00
|
|
|
#[derive(Debug)]
|
2021-04-03 10:49:29 -05:00
|
|
|
pub(super) struct Canonicalized<T>
|
|
|
|
where
|
|
|
|
T: HasInterner<Interner = Interner>,
|
|
|
|
{
|
2020-11-02 09:31:38 -06:00
|
|
|
pub(super) value: Canonical<T>,
|
2021-04-11 04:20:45 -05:00
|
|
|
free_vars: Vec<GenericArg>,
|
2019-05-04 08:42:00 -05:00
|
|
|
}
|
|
|
|
|
2021-04-03 10:49:29 -05:00
|
|
|
impl<T: HasInterner<Interner = Interner>> Canonicalized<T> {
|
2021-04-05 11:54:31 -05:00
|
|
|
pub(super) fn decanonicalize_ty(&self, ty: Ty) -> Ty {
|
2021-04-07 14:26:37 -05:00
|
|
|
crate::fold_free_vars(ty, |bound, _binders| {
|
2021-04-11 04:20:45 -05:00
|
|
|
let var = self.free_vars[bound.index];
|
|
|
|
var.assert_ty_ref(&Interner).clone()
|
2021-04-07 14:26:37 -05:00
|
|
|
})
|
2019-05-01 10:57:56 -05:00
|
|
|
}
|
|
|
|
|
2020-11-02 06:13:32 -06:00
|
|
|
pub(super) fn apply_solution(
|
|
|
|
&self,
|
|
|
|
ctx: &mut InferenceContext<'_>,
|
2021-03-15 15:02:34 -05:00
|
|
|
solution: Canonical<Substitution>,
|
2020-11-02 06:13:32 -06:00
|
|
|
) {
|
2019-04-20 05:34:36 -05:00
|
|
|
// the solution may contain new variables, which we need to convert to new inference vars
|
2021-04-01 14:04:02 -05:00
|
|
|
let new_vars = Substitution::from_iter(
|
|
|
|
&Interner,
|
|
|
|
solution.binders.iter(&Interner).map(|k| match k.kind {
|
2021-04-08 06:58:03 -05:00
|
|
|
VariableKind::Ty(TyVariableKind::General) => {
|
|
|
|
ctx.table.new_type_var().cast(&Interner)
|
|
|
|
}
|
|
|
|
VariableKind::Ty(TyVariableKind::Integer) => {
|
|
|
|
ctx.table.new_integer_var().cast(&Interner)
|
|
|
|
}
|
|
|
|
VariableKind::Ty(TyVariableKind::Float) => {
|
|
|
|
ctx.table.new_float_var().cast(&Interner)
|
|
|
|
}
|
|
|
|
// Chalk can sometimes return new lifetime variables. We just use the static lifetime everywhere
|
|
|
|
VariableKind::Lifetime => static_lifetime().cast(&Interner),
|
2021-04-01 14:04:02 -05:00
|
|
|
_ => panic!("const variable in solution"),
|
|
|
|
}),
|
2020-06-28 14:17:27 -05:00
|
|
|
);
|
2021-04-01 14:04:02 -05:00
|
|
|
for (i, ty) in solution.value.iter(&Interner).enumerate() {
|
2021-04-11 04:20:45 -05:00
|
|
|
// FIXME: deal with non-type vars here -- the only problematic part is the normalization
|
|
|
|
// and maybe we don't need that with lazy normalization?
|
|
|
|
let var = self.free_vars[i];
|
2020-02-21 06:47:49 -06:00
|
|
|
// eagerly replace projections in the type; we may be getting types
|
|
|
|
// e.g. from where clauses where this hasn't happened yet
|
2021-04-01 14:04:02 -05:00
|
|
|
let ty = ctx.normalize_associated_types_in(
|
2021-04-05 12:01:41 -05:00
|
|
|
new_vars.apply(ty.assert_ty_ref(&Interner).clone(), &Interner),
|
2021-04-01 14:04:02 -05:00
|
|
|
);
|
2021-04-11 04:20:45 -05:00
|
|
|
ctx.table.unify(var.assert_ty_ref(&Interner), &ty);
|
2019-12-01 13:30:28 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-11 04:20:45 -05:00
|
|
|
pub fn could_unify(db: &dyn HirDatabase, env: Arc<TraitEnvironment>, t1: &Ty, t2: &Ty) -> bool {
|
|
|
|
InferenceTable::new(db, env).unify(t1, t2)
|
2021-03-16 10:45:46 -05:00
|
|
|
}
|
|
|
|
|
2021-04-11 04:20:45 -05:00
|
|
|
pub(crate) fn unify(
|
|
|
|
db: &dyn HirDatabase,
|
|
|
|
env: Arc<TraitEnvironment>,
|
|
|
|
tys: &Canonical<(Ty, Ty)>,
|
|
|
|
) -> Option<Substitution> {
|
|
|
|
let mut table = InferenceTable::new(db, env);
|
2021-04-01 14:04:02 -05:00
|
|
|
let vars = Substitution::from_iter(
|
|
|
|
&Interner,
|
2021-03-21 14:05:38 -05:00
|
|
|
tys.binders
|
|
|
|
.iter(&Interner)
|
2020-06-28 14:17:27 -05:00
|
|
|
// we always use type vars here because we want everything to
|
|
|
|
// fallback to Unknown in the end (kind of hacky, as below)
|
2021-04-01 14:04:02 -05:00
|
|
|
.map(|_| table.new_type_var()),
|
2020-06-28 14:17:27 -05:00
|
|
|
);
|
2021-04-05 12:01:41 -05:00
|
|
|
let ty1_with_vars = vars.apply(tys.value.0.clone(), &Interner);
|
|
|
|
let ty2_with_vars = vars.apply(tys.value.1.clone(), &Interner);
|
2020-03-01 07:31:35 -06:00
|
|
|
if !table.unify(&ty1_with_vars, &ty2_with_vars) {
|
2019-12-01 15:14:28 -06:00
|
|
|
return None;
|
|
|
|
}
|
2020-03-01 07:31:35 -06:00
|
|
|
// default any type vars that weren't unified back to their original bound vars
|
|
|
|
// (kind of hacky)
|
2021-04-01 14:04:02 -05:00
|
|
|
for (i, var) in vars.iter(&Interner).enumerate() {
|
|
|
|
let var = var.assert_ty_ref(&Interner);
|
2020-03-01 07:31:35 -06:00
|
|
|
if &*table.resolve_ty_shallow(var) == var {
|
2021-03-13 07:44:51 -06:00
|
|
|
table.unify(
|
|
|
|
var,
|
|
|
|
&TyKind::BoundVar(BoundVar::new(DebruijnIndex::INNERMOST, i)).intern(&Interner),
|
|
|
|
);
|
2020-03-01 07:31:35 -06:00
|
|
|
}
|
|
|
|
}
|
2021-04-04 05:48:10 -05:00
|
|
|
Some(Substitution::from_iter(
|
|
|
|
&Interner,
|
|
|
|
vars.iter(&Interner)
|
|
|
|
.map(|v| table.resolve_ty_completely(v.assert_ty_ref(&Interner).clone())),
|
|
|
|
))
|
2019-12-01 13:30:28 -06:00
|
|
|
}
|
|
|
|
|
2021-03-01 05:35:11 -06:00
|
|
|
#[derive(Clone, Debug)]
|
|
|
|
pub(super) struct TypeVariableTable {
|
|
|
|
inner: Vec<TypeVariableData>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl TypeVariableTable {
|
|
|
|
fn push(&mut self, data: TypeVariableData) {
|
|
|
|
self.inner.push(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(super) fn set_diverging(&mut self, iv: InferenceVar, diverging: bool) {
|
2021-04-11 04:20:45 -05:00
|
|
|
self.inner[iv.index() as usize].diverging = diverging;
|
2021-03-01 05:35:11 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
fn is_diverging(&mut self, iv: InferenceVar) -> bool {
|
2021-04-11 04:20:45 -05:00
|
|
|
self.inner[iv.index() as usize].diverging
|
2021-03-01 05:35:11 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
fn fallback_value(&self, iv: InferenceVar, kind: TyVariableKind) -> Ty {
|
|
|
|
match kind {
|
2021-04-11 04:20:45 -05:00
|
|
|
_ if self.inner[iv.index() as usize].diverging => TyKind::Never,
|
2021-04-05 07:37:11 -05:00
|
|
|
TyVariableKind::General => TyKind::Error,
|
2021-03-13 07:44:51 -06:00
|
|
|
TyVariableKind::Integer => TyKind::Scalar(Scalar::Int(IntTy::I32)),
|
|
|
|
TyVariableKind::Float => TyKind::Scalar(Scalar::Float(FloatTy::F64)),
|
2021-03-01 05:35:11 -06:00
|
|
|
}
|
2021-03-13 07:44:51 -06:00
|
|
|
.intern(&Interner)
|
2021-03-01 05:35:11 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Copy, Clone, Debug)]
|
|
|
|
pub(crate) struct TypeVariableData {
|
|
|
|
diverging: bool,
|
|
|
|
}
|
|
|
|
|
2021-04-11 04:20:45 -05:00
|
|
|
type ChalkInferenceTable = chalk_solve::infer::InferenceTable<Interner>;
|
|
|
|
|
|
|
|
#[derive(Clone)]
|
|
|
|
pub(crate) struct InferenceTable<'a> {
|
|
|
|
db: &'a dyn HirDatabase,
|
|
|
|
trait_env: Arc<TraitEnvironment>,
|
|
|
|
pub(super) var_unification_table: ChalkInferenceTable,
|
2021-03-01 05:35:11 -06:00
|
|
|
pub(super) type_variable_table: TypeVariableTable,
|
2019-12-01 13:30:28 -06:00
|
|
|
}
|
|
|
|
|
2021-04-11 04:20:45 -05:00
|
|
|
impl<'a> InferenceTable<'a> {
|
|
|
|
pub(crate) fn new(db: &'a dyn HirDatabase, trait_env: Arc<TraitEnvironment>) -> Self {
|
2021-03-01 05:35:11 -06:00
|
|
|
InferenceTable {
|
2021-04-11 04:20:45 -05:00
|
|
|
db,
|
|
|
|
trait_env,
|
|
|
|
var_unification_table: ChalkInferenceTable::new(),
|
2021-03-01 05:35:11 -06:00
|
|
|
type_variable_table: TypeVariableTable { inner: Vec::new() },
|
|
|
|
}
|
2019-12-01 13:30:28 -06:00
|
|
|
}
|
|
|
|
|
2021-03-01 06:54:17 -06:00
|
|
|
fn new_var(&mut self, kind: TyVariableKind, diverging: bool) -> Ty {
|
2021-04-11 04:20:45 -05:00
|
|
|
let var = self.var_unification_table.new_variable(UniverseIndex::ROOT);
|
|
|
|
self.type_variable_table.inner.extend(
|
|
|
|
(0..1 + var.index() as usize - self.type_variable_table.inner.len())
|
|
|
|
.map(|_| TypeVariableData { diverging: false }),
|
|
|
|
);
|
|
|
|
assert_eq!(var.index() as usize, self.type_variable_table.inner.len() - 1);
|
|
|
|
self.type_variable_table.inner[var.index() as usize].diverging = diverging;
|
|
|
|
var.to_ty_with_kind(&Interner, kind)
|
2021-03-01 06:54:17 -06:00
|
|
|
}
|
|
|
|
|
2020-11-02 06:13:32 -06:00
|
|
|
pub(crate) fn new_type_var(&mut self) -> Ty {
|
2021-03-01 06:54:17 -06:00
|
|
|
self.new_var(TyVariableKind::General, false)
|
2019-12-01 13:30:28 -06:00
|
|
|
}
|
|
|
|
|
2020-11-02 06:13:32 -06:00
|
|
|
pub(crate) fn new_integer_var(&mut self) -> Ty {
|
2021-03-01 06:54:17 -06:00
|
|
|
self.new_var(TyVariableKind::Integer, false)
|
2019-12-01 13:30:28 -06:00
|
|
|
}
|
|
|
|
|
2020-11-02 06:13:32 -06:00
|
|
|
pub(crate) fn new_float_var(&mut self) -> Ty {
|
2021-03-01 06:54:17 -06:00
|
|
|
self.new_var(TyVariableKind::Float, false)
|
2019-12-01 13:30:28 -06:00
|
|
|
}
|
|
|
|
|
2021-03-01 05:35:11 -06:00
|
|
|
pub(crate) fn new_maybe_never_var(&mut self) -> Ty {
|
2021-03-01 06:54:17 -06:00
|
|
|
self.new_var(TyVariableKind::General, true)
|
2019-12-01 13:30:28 -06:00
|
|
|
}
|
|
|
|
|
2020-11-02 06:13:32 -06:00
|
|
|
pub(crate) fn resolve_ty_completely(&mut self, ty: Ty) -> Ty {
|
2019-12-01 13:30:28 -06:00
|
|
|
self.resolve_ty_completely_inner(&mut Vec::new(), ty)
|
|
|
|
}
|
|
|
|
|
2021-04-11 04:20:45 -05:00
|
|
|
// FIXME get rid of this, instead resolve shallowly where necessary
|
2020-11-02 06:13:32 -06:00
|
|
|
pub(crate) fn resolve_ty_as_possible(&mut self, ty: Ty) -> Ty {
|
2019-12-01 13:30:28 -06:00
|
|
|
self.resolve_ty_as_possible_inner(&mut Vec::new(), ty)
|
|
|
|
}
|
|
|
|
|
2020-11-02 06:13:32 -06:00
|
|
|
pub(crate) fn unify(&mut self, ty1: &Ty, ty2: &Ty) -> bool {
|
2021-04-11 04:20:45 -05:00
|
|
|
let result = self.var_unification_table.relate(
|
|
|
|
&Interner,
|
|
|
|
&self.db,
|
|
|
|
&self.trait_env.env,
|
|
|
|
chalk_ir::Variance::Invariant,
|
|
|
|
ty1,
|
|
|
|
ty2,
|
|
|
|
);
|
|
|
|
let result = if let Ok(r) = result {
|
|
|
|
r
|
2021-02-28 12:13:37 -06:00
|
|
|
} else {
|
2021-04-11 04:20:45 -05:00
|
|
|
return false;
|
|
|
|
};
|
|
|
|
// TODO deal with new goals
|
|
|
|
true
|
2020-04-17 12:41:37 -05:00
|
|
|
}
|
|
|
|
|
2019-12-01 13:30:28 -06:00
|
|
|
/// If `ty` is a type variable with known type, returns that type;
|
|
|
|
/// otherwise, return ty.
|
2021-04-11 04:20:45 -05:00
|
|
|
// FIXME this could probably just return Ty
|
2020-11-02 06:13:32 -06:00
|
|
|
pub(crate) fn resolve_ty_shallow<'b>(&mut self, ty: &'b Ty) -> Cow<'b, Ty> {
|
2021-04-11 04:20:45 -05:00
|
|
|
self.var_unification_table
|
|
|
|
.normalize_ty_shallow(&Interner, ty)
|
|
|
|
.map_or(Cow::Borrowed(ty), Cow::Owned)
|
2019-12-01 13:30:28 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/// 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.
|
2021-04-11 04:20:45 -05:00
|
|
|
fn resolve_ty_as_possible_inner(&mut self, tv_stack: &mut Vec<InferenceVar>, ty: Ty) -> Ty {
|
2021-04-08 06:32:48 -05:00
|
|
|
fold_tys(
|
|
|
|
ty,
|
|
|
|
|ty, _| match ty.kind(&Interner) {
|
|
|
|
&TyKind::InferenceVar(tv, kind) => {
|
2021-04-11 04:20:45 -05:00
|
|
|
if tv_stack.contains(&tv) {
|
2021-04-08 06:32:48 -05:00
|
|
|
cov_mark::hit!(type_var_cycles_resolve_as_possible);
|
|
|
|
// recursive type
|
|
|
|
return self.type_variable_table.fallback_value(tv, kind);
|
|
|
|
}
|
2021-04-11 04:20:45 -05:00
|
|
|
if let Some(known_ty) = self.var_unification_table.probe_var(tv) {
|
2021-04-08 06:32:48 -05:00
|
|
|
// known_ty may contain other variables that are known by now
|
2021-04-11 04:20:45 -05:00
|
|
|
tv_stack.push(tv);
|
|
|
|
let result = self.resolve_ty_as_possible_inner(
|
|
|
|
tv_stack,
|
|
|
|
known_ty.assert_ty_ref(&Interner).clone(),
|
|
|
|
);
|
2021-04-08 06:32:48 -05:00
|
|
|
tv_stack.pop();
|
|
|
|
result
|
|
|
|
} else {
|
|
|
|
ty
|
|
|
|
}
|
2019-12-01 13:30:28 -06:00
|
|
|
}
|
2021-04-08 06:32:48 -05:00
|
|
|
_ => ty,
|
|
|
|
},
|
|
|
|
DebruijnIndex::INNERMOST,
|
|
|
|
)
|
2019-12-01 13:30:28 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Resolves the type completely; type variables without known type are
|
2021-03-13 07:44:51 -06:00
|
|
|
/// replaced by TyKind::Unknown.
|
2021-04-11 04:20:45 -05:00
|
|
|
fn resolve_ty_completely_inner(&mut self, tv_stack: &mut Vec<InferenceVar>, ty: Ty) -> Ty {
|
|
|
|
// FIXME implement as a proper Folder, handle lifetimes and consts as well
|
2021-04-08 06:32:48 -05:00
|
|
|
fold_tys(
|
|
|
|
ty,
|
|
|
|
|ty, _| match ty.kind(&Interner) {
|
|
|
|
&TyKind::InferenceVar(tv, kind) => {
|
2021-04-11 04:20:45 -05:00
|
|
|
if tv_stack.contains(&tv) {
|
2021-04-08 06:32:48 -05:00
|
|
|
cov_mark::hit!(type_var_cycles_resolve_completely);
|
|
|
|
// recursive type
|
|
|
|
return self.type_variable_table.fallback_value(tv, kind);
|
|
|
|
}
|
2021-04-11 04:20:45 -05:00
|
|
|
if let Some(known_ty) = self.var_unification_table.probe_var(tv) {
|
2021-04-08 06:32:48 -05:00
|
|
|
// known_ty may contain other variables that are known by now
|
2021-04-11 04:20:45 -05:00
|
|
|
tv_stack.push(tv);
|
|
|
|
let result = self.resolve_ty_completely_inner(
|
|
|
|
tv_stack,
|
|
|
|
known_ty.assert_ty_ref(&Interner).clone(),
|
|
|
|
);
|
2021-04-08 06:32:48 -05:00
|
|
|
tv_stack.pop();
|
|
|
|
result
|
|
|
|
} else {
|
|
|
|
self.type_variable_table.fallback_value(tv, kind)
|
|
|
|
}
|
2019-12-01 13:30:28 -06:00
|
|
|
}
|
2021-04-08 06:32:48 -05:00
|
|
|
_ => ty,
|
|
|
|
},
|
|
|
|
DebruijnIndex::INNERMOST,
|
|
|
|
)
|
2019-12-01 13:30:28 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-11 04:20:45 -05:00
|
|
|
impl<'a> fmt::Debug for InferenceTable<'a> {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
|
|
f.debug_struct("InferenceTable")
|
|
|
|
.field("num_vars", &self.type_variable_table.inner.len())
|
|
|
|
.finish()
|
2019-04-20 05:34:36 -05:00
|
|
|
}
|
|
|
|
}
|