2019-11-27 14:46:02 +00:00
|
|
|
//! The type system. We currently use this to infer types for completion, hover
|
|
|
|
//! information and various assists.
|
2020-04-06 14:58:16 +00:00
|
|
|
#[allow(unused)]
|
|
|
|
macro_rules! eprintln {
|
|
|
|
($($tt:tt)*) => { stdx::eprintln!($($tt)*) };
|
|
|
|
}
|
|
|
|
|
2019-11-27 14:46:02 +00:00
|
|
|
mod autoderef;
|
2019-11-26 11:35:23 +00:00
|
|
|
pub mod primitive;
|
2019-11-27 14:46:02 +00:00
|
|
|
pub mod traits;
|
|
|
|
pub mod method_resolution;
|
|
|
|
mod op;
|
|
|
|
mod lower;
|
2020-03-06 23:11:52 +00:00
|
|
|
pub(crate) mod infer;
|
2019-11-27 14:46:02 +00:00
|
|
|
pub(crate) mod utils;
|
2021-03-20 10:23:59 +00:00
|
|
|
mod chalk_cast;
|
2021-04-04 10:55:47 +00:00
|
|
|
mod chalk_ext;
|
|
|
|
mod builder;
|
2021-04-04 18:22:00 +00:00
|
|
|
mod walk;
|
|
|
|
mod types;
|
2020-07-13 13:34:46 +00:00
|
|
|
|
|
|
|
pub mod display;
|
2019-11-27 14:46:02 +00:00
|
|
|
pub mod db;
|
|
|
|
pub mod diagnostics;
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests;
|
|
|
|
#[cfg(test)]
|
|
|
|
mod test_db;
|
|
|
|
|
2021-04-04 18:22:00 +00:00
|
|
|
use std::sync::Arc;
|
2021-04-04 10:55:47 +00:00
|
|
|
|
|
|
|
use itertools::Itertools;
|
2019-11-27 14:46:02 +00:00
|
|
|
|
2021-02-28 18:13:37 +00:00
|
|
|
use base_db::salsa;
|
2019-11-27 14:46:02 +00:00
|
|
|
use hir_def::{
|
2021-04-05 18:46:15 +00:00
|
|
|
expr::ExprId, type_ref::Rawness, AssocContainerId, FunctionId, GenericDefId, HasModule,
|
|
|
|
LifetimeParamId, Lookup, TraitId, TypeAliasId, TypeParamId,
|
2019-11-27 14:46:02 +00:00
|
|
|
};
|
|
|
|
|
2021-04-04 18:22:00 +00:00
|
|
|
use crate::{db::HirDatabase, display::HirDisplay, utils::generics};
|
2019-11-27 14:46:02 +00:00
|
|
|
|
|
|
|
pub use autoderef::autoderef;
|
2021-04-04 10:55:47 +00:00
|
|
|
pub use builder::TyBuilder;
|
2021-04-05 19:14:49 +00:00
|
|
|
pub use chalk_ext::{ProjectionTyExt, TyExt};
|
2021-03-16 15:45:46 +00:00
|
|
|
pub use infer::{could_unify, InferenceResult, InferenceVar};
|
2020-01-24 14:22:00 +00:00
|
|
|
pub use lower::{
|
2021-01-28 18:06:33 +00:00
|
|
|
associated_type_shorthand_candidates, callable_item_sig, CallableDefId, ImplTraitLoweringMode,
|
|
|
|
TyDefId, TyLoweringContext, ValueTyDefId,
|
2020-01-24 14:22:00 +00:00
|
|
|
};
|
2021-04-05 19:14:49 +00:00
|
|
|
pub use traits::{chalk::Interner, TraitEnvironment};
|
2021-04-04 18:22:00 +00:00
|
|
|
pub use types::*;
|
|
|
|
pub use walk::TypeWalk;
|
2019-11-27 14:46:02 +00:00
|
|
|
|
2021-03-20 10:23:59 +00:00
|
|
|
pub use chalk_ir::{
|
|
|
|
cast::Cast, AdtId, BoundVar, DebruijnIndex, Mutability, Safety, Scalar, TyVariableKind,
|
|
|
|
};
|
2021-03-01 20:57:39 +00:00
|
|
|
|
2021-03-13 16:23:19 +00:00
|
|
|
pub type ForeignDefId = chalk_ir::ForeignDefId<Interner>;
|
2021-03-13 16:36:07 +00:00
|
|
|
pub type AssocTypeId = chalk_ir::AssocTypeId<Interner>;
|
2021-03-13 18:27:09 +00:00
|
|
|
pub type FnDefId = chalk_ir::FnDefId<Interner>;
|
|
|
|
pub type ClosureId = chalk_ir::ClosureId<Interner>;
|
2021-03-13 19:05:47 +00:00
|
|
|
pub type OpaqueTyId = chalk_ir::OpaqueTyId<Interner>;
|
2021-03-13 18:47:34 +00:00
|
|
|
pub type PlaceholderIndex = chalk_ir::PlaceholderIndex;
|
2021-03-13 16:23:19 +00:00
|
|
|
|
2021-04-05 15:45:18 +00:00
|
|
|
pub type VariableKind = chalk_ir::VariableKind<Interner>;
|
|
|
|
pub type VariableKinds = chalk_ir::VariableKinds<Interner>;
|
2021-03-21 19:05:38 +00:00
|
|
|
pub type CanonicalVarKinds = chalk_ir::CanonicalVarKinds<Interner>;
|
|
|
|
|
2021-04-05 18:46:15 +00:00
|
|
|
pub type Lifetime = chalk_ir::Lifetime<Interner>;
|
|
|
|
pub type LifetimeData = chalk_ir::LifetimeData<Interner>;
|
|
|
|
pub type LifetimeOutlives = chalk_ir::LifetimeOutlives<Interner>;
|
|
|
|
|
2021-03-18 20:53:19 +00:00
|
|
|
pub type ChalkTraitId = chalk_ir::TraitId<Interner>;
|
|
|
|
|
2021-03-14 15:30:02 +00:00
|
|
|
pub type FnSig = chalk_ir::FnSig<Interner>;
|
2021-02-28 21:12:07 +00:00
|
|
|
|
2021-04-05 19:56:40 +00:00
|
|
|
// FIXME: get rid of this
|
|
|
|
pub fn subst_prefix(s: &Substitution, n: usize) -> Substitution {
|
|
|
|
Substitution::intern(s.interned()[..std::cmp::min(s.len(&Interner), n)].into())
|
2019-11-27 14:46:02 +00:00
|
|
|
}
|
|
|
|
|
2020-05-14 10:47:36 +00:00
|
|
|
/// Return an index of a parameter in the generic type parameter list by it's id.
|
|
|
|
pub fn param_idx(db: &dyn HirDatabase, id: TypeParamId) -> Option<usize> {
|
|
|
|
generics(db.upcast(), id.parent).param_idx(id)
|
|
|
|
}
|
|
|
|
|
2021-04-05 19:25:40 +00:00
|
|
|
pub fn wrap_empty_binders<T>(value: T) -> Binders<T>
|
|
|
|
where
|
|
|
|
T: TypeWalk,
|
|
|
|
{
|
|
|
|
Binders::empty(&Interner, value.shifted_in_from(DebruijnIndex::ONE))
|
2020-01-25 22:38:33 +00:00
|
|
|
}
|
|
|
|
|
2021-04-05 15:45:18 +00:00
|
|
|
pub fn make_only_type_binders<T>(num_vars: usize, value: T) -> Binders<T> {
|
|
|
|
Binders::new(
|
|
|
|
VariableKinds::from_iter(
|
|
|
|
&Interner,
|
|
|
|
std::iter::repeat(chalk_ir::VariableKind::Ty(chalk_ir::TyVariableKind::General))
|
|
|
|
.take(num_vars),
|
|
|
|
),
|
|
|
|
value,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2019-11-27 14:46:02 +00:00
|
|
|
impl TraitRef {
|
2021-03-18 20:53:19 +00:00
|
|
|
pub fn hir_trait_id(&self) -> TraitId {
|
|
|
|
from_chalk_trait_id(self.trait_id)
|
2019-11-27 14:46:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-28 19:17:27 +00:00
|
|
|
impl<T> Canonical<T> {
|
2021-03-01 12:54:17 +00:00
|
|
|
pub fn new(value: T, kinds: impl IntoIterator<Item = TyVariableKind>) -> Self {
|
2021-03-21 19:05:38 +00:00
|
|
|
let kinds = kinds.into_iter().map(|tk| {
|
|
|
|
chalk_ir::CanonicalVarKind::new(
|
|
|
|
chalk_ir::VariableKind::Ty(tk),
|
|
|
|
chalk_ir::UniverseIndex::ROOT,
|
|
|
|
)
|
|
|
|
});
|
|
|
|
Self { value, binders: chalk_ir::CanonicalVarKinds::from_iter(&Interner, kinds) }
|
2020-06-28 19:17:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-27 14:46:02 +00:00
|
|
|
/// A function signature as seen by type inference: Several parameter types and
|
|
|
|
/// one return type.
|
|
|
|
#[derive(Clone, PartialEq, Eq, Debug)]
|
2021-02-28 21:12:07 +00:00
|
|
|
pub struct CallableSig {
|
2019-11-27 14:46:02 +00:00
|
|
|
params_and_return: Arc<[Ty]>,
|
2020-07-14 16:23:45 +00:00
|
|
|
is_varargs: bool,
|
2019-11-27 14:46:02 +00:00
|
|
|
}
|
|
|
|
|
2020-01-25 22:38:33 +00:00
|
|
|
/// A polymorphic function signature.
|
2021-02-28 21:12:07 +00:00
|
|
|
pub type PolyFnSig = Binders<CallableSig>;
|
2020-01-25 22:38:33 +00:00
|
|
|
|
2021-02-28 21:12:07 +00:00
|
|
|
impl CallableSig {
|
|
|
|
pub fn from_params_and_return(mut params: Vec<Ty>, ret: Ty, is_varargs: bool) -> CallableSig {
|
2019-11-27 14:46:02 +00:00
|
|
|
params.push(ret);
|
2021-02-28 21:12:07 +00:00
|
|
|
CallableSig { params_and_return: params.into(), is_varargs }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn from_fn_ptr(fn_ptr: &FnPointer) -> CallableSig {
|
|
|
|
CallableSig {
|
2021-04-03 20:47:29 +00:00
|
|
|
// FIXME: what to do about lifetime params? -> return PolyFnSig
|
2021-03-24 22:07:54 +00:00
|
|
|
params_and_return: fn_ptr
|
2021-04-05 20:23:16 +00:00
|
|
|
.substitution
|
2021-03-24 22:07:54 +00:00
|
|
|
.clone()
|
2021-04-05 17:15:13 +00:00
|
|
|
.shifted_out_to(DebruijnIndex::ONE)
|
|
|
|
.expect("unexpected lifetime vars in fn ptr")
|
2021-04-05 20:23:16 +00:00
|
|
|
.0
|
2021-04-04 18:22:00 +00:00
|
|
|
.interned()
|
2021-03-24 22:07:54 +00:00
|
|
|
.iter()
|
2021-04-01 19:04:02 +00:00
|
|
|
.map(|arg| arg.assert_ty_ref(&Interner).clone())
|
2021-03-24 22:07:54 +00:00
|
|
|
.collect(),
|
2021-02-28 21:12:07 +00:00
|
|
|
is_varargs: fn_ptr.sig.variadic,
|
|
|
|
}
|
2019-11-27 14:46:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn params(&self) -> &[Ty] {
|
|
|
|
&self.params_and_return[0..self.params_and_return.len() - 1]
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn ret(&self) -> &Ty {
|
|
|
|
&self.params_and_return[self.params_and_return.len() - 1]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-03 19:29:49 +00:00
|
|
|
impl Ty {
|
2021-04-05 20:08:16 +00:00
|
|
|
pub fn as_reference(&self) -> Option<(&Ty, Lifetime, Mutability)> {
|
2021-04-03 11:08:29 +00:00
|
|
|
match self.kind(&Interner) {
|
2021-04-05 20:08:16 +00:00
|
|
|
TyKind::Ref(mutability, lifetime, ty) => Some((ty, *lifetime, *mutability)),
|
2019-11-27 14:46:02 +00:00
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-28 19:42:22 +00:00
|
|
|
pub fn as_reference_or_ptr(&self) -> Option<(&Ty, Rawness, Mutability)> {
|
2021-04-03 11:08:29 +00:00
|
|
|
match self.kind(&Interner) {
|
2021-04-05 20:08:16 +00:00
|
|
|
TyKind::Ref(mutability, _, ty) => Some((ty, Rawness::Ref, *mutability)),
|
2021-03-14 16:40:55 +00:00
|
|
|
TyKind::Raw(mutability, ty) => Some((ty, Rawness::RawPtr, *mutability)),
|
2020-05-28 19:42:22 +00:00
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-14 23:06:57 +00:00
|
|
|
pub fn strip_references(&self) -> &Ty {
|
|
|
|
let mut t: &Ty = self;
|
|
|
|
|
2021-04-05 20:08:16 +00:00
|
|
|
while let TyKind::Ref(_mutability, _lifetime, ty) = t.kind(&Interner) {
|
2021-03-14 16:40:55 +00:00
|
|
|
t = ty;
|
2020-04-14 23:06:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
t
|
|
|
|
}
|
|
|
|
|
2021-03-15 20:02:34 +00:00
|
|
|
pub fn as_adt(&self) -> Option<(hir_def::AdtId, &Substitution)> {
|
2021-04-03 11:08:29 +00:00
|
|
|
match self.kind(&Interner) {
|
2021-03-13 13:44:51 +00:00
|
|
|
TyKind::Adt(AdtId(adt), parameters) => Some((*adt, parameters)),
|
2019-11-27 14:46:02 +00:00
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-15 20:02:34 +00:00
|
|
|
pub fn as_tuple(&self) -> Option<&Substitution> {
|
2021-04-03 11:08:29 +00:00
|
|
|
match self.kind(&Interner) {
|
2021-03-13 13:44:51 +00:00
|
|
|
TyKind::Tuple(_, substs) => Some(substs),
|
2021-02-28 18:13:37 +00:00
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-13 16:55:50 +00:00
|
|
|
pub fn as_generic_def(&self, db: &dyn HirDatabase) -> Option<GenericDefId> {
|
2021-04-03 11:08:29 +00:00
|
|
|
match *self.kind(&Interner) {
|
2021-03-13 13:44:51 +00:00
|
|
|
TyKind::Adt(AdtId(adt), ..) => Some(adt.into()),
|
2021-03-13 16:55:50 +00:00
|
|
|
TyKind::FnDef(callable, ..) => {
|
|
|
|
Some(db.lookup_intern_callable_def(callable.into()).into())
|
|
|
|
}
|
2021-03-13 16:36:07 +00:00
|
|
|
TyKind::AssociatedType(type_alias, ..) => Some(from_assoc_type_id(type_alias).into()),
|
2021-04-05 12:38:28 +00:00
|
|
|
TyKind::Foreign(type_alias, ..) => Some(from_foreign_def_id(type_alias).into()),
|
2019-11-27 14:46:02 +00:00
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-08 15:36:11 +00:00
|
|
|
pub fn is_never(&self) -> bool {
|
2021-04-03 11:08:29 +00:00
|
|
|
matches!(self.kind(&Interner), TyKind::Never)
|
2020-05-08 15:36:11 +00:00
|
|
|
}
|
|
|
|
|
2021-01-01 19:45:49 +00:00
|
|
|
pub fn is_unknown(&self) -> bool {
|
2021-04-05 12:37:11 +00:00
|
|
|
matches!(self.kind(&Interner), TyKind::Error)
|
2021-01-01 19:45:49 +00:00
|
|
|
}
|
|
|
|
|
2021-02-28 18:13:37 +00:00
|
|
|
pub fn equals_ctor(&self, other: &Ty) -> bool {
|
2021-04-03 11:08:29 +00:00
|
|
|
match (self.kind(&Interner), other.kind(&Interner)) {
|
2021-03-13 13:44:51 +00:00
|
|
|
(TyKind::Adt(adt, ..), TyKind::Adt(adt2, ..)) => adt == adt2,
|
|
|
|
(TyKind::Slice(_), TyKind::Slice(_)) | (TyKind::Array(_), TyKind::Array(_)) => true,
|
|
|
|
(TyKind::FnDef(def_id, ..), TyKind::FnDef(def_id2, ..)) => def_id == def_id2,
|
|
|
|
(TyKind::OpaqueType(ty_id, ..), TyKind::OpaqueType(ty_id2, ..)) => ty_id == ty_id2,
|
2021-03-13 16:23:19 +00:00
|
|
|
(TyKind::AssociatedType(ty_id, ..), TyKind::AssociatedType(ty_id2, ..)) => {
|
|
|
|
ty_id == ty_id2
|
|
|
|
}
|
2021-04-05 12:38:28 +00:00
|
|
|
(TyKind::Foreign(ty_id, ..), TyKind::Foreign(ty_id2, ..)) => ty_id == ty_id2,
|
2021-03-13 18:27:09 +00:00
|
|
|
(TyKind::Closure(id1, _), TyKind::Closure(id2, _)) => id1 == id2,
|
2021-03-13 13:44:51 +00:00
|
|
|
(TyKind::Ref(mutability, ..), TyKind::Ref(mutability2, ..))
|
|
|
|
| (TyKind::Raw(mutability, ..), TyKind::Raw(mutability2, ..)) => {
|
|
|
|
mutability == mutability2
|
|
|
|
}
|
2021-02-28 18:13:37 +00:00
|
|
|
(
|
2021-04-05 20:23:16 +00:00
|
|
|
TyKind::Function(FnPointer { num_binders, sig, .. }),
|
|
|
|
TyKind::Function(FnPointer { num_binders: num_binders2, sig: sig2, .. }),
|
|
|
|
) => num_binders == num_binders2 && sig == sig2,
|
2021-03-13 13:44:51 +00:00
|
|
|
(TyKind::Tuple(cardinality, _), TyKind::Tuple(cardinality2, _)) => {
|
|
|
|
cardinality == cardinality2
|
|
|
|
}
|
|
|
|
(TyKind::Str, TyKind::Str) | (TyKind::Never, TyKind::Never) => true,
|
|
|
|
(TyKind::Scalar(scalar), TyKind::Scalar(scalar2)) => scalar == scalar2,
|
2021-02-28 18:13:37 +00:00
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-21 18:05:27 +00:00
|
|
|
/// If this is a `dyn Trait` type, this returns the `Trait` part.
|
2021-03-21 12:22:22 +00:00
|
|
|
fn dyn_trait_ref(&self) -> Option<&TraitRef> {
|
2021-04-03 11:08:29 +00:00
|
|
|
match self.kind(&Interner) {
|
2021-04-05 15:13:50 +00:00
|
|
|
TyKind::Dyn(dyn_ty) => dyn_ty.bounds.skip_binders().interned().get(0).and_then(|b| {
|
|
|
|
match b.skip_binders() {
|
2021-03-21 12:22:22 +00:00
|
|
|
WhereClause::Implemented(trait_ref) => Some(trait_ref),
|
|
|
|
_ => None,
|
2021-04-05 15:13:50 +00:00
|
|
|
}
|
|
|
|
}),
|
2020-02-21 18:05:27 +00:00
|
|
|
_ => None,
|
|
|
|
}
|
2019-11-27 14:46:02 +00:00
|
|
|
}
|
|
|
|
|
2020-06-11 20:06:58 +00:00
|
|
|
/// If this is a `dyn Trait`, returns that trait.
|
|
|
|
pub fn dyn_trait(&self) -> Option<TraitId> {
|
2021-03-18 20:53:19 +00:00
|
|
|
self.dyn_trait_ref().map(|it| it.trait_id).map(from_chalk_trait_id)
|
2020-06-11 20:06:58 +00:00
|
|
|
}
|
|
|
|
|
2019-11-27 14:46:02 +00:00
|
|
|
fn builtin_deref(&self) -> Option<Ty> {
|
2021-04-03 11:08:29 +00:00
|
|
|
match self.kind(&Interner) {
|
2021-03-14 16:40:55 +00:00
|
|
|
TyKind::Ref(.., ty) => Some(ty.clone()),
|
|
|
|
TyKind::Raw(.., ty) => Some(ty.clone()),
|
2019-11-27 14:46:02 +00:00
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-13 16:55:50 +00:00
|
|
|
pub fn callable_def(&self, db: &dyn HirDatabase) -> Option<CallableDefId> {
|
2021-04-03 11:08:29 +00:00
|
|
|
match self.kind(&Interner) {
|
2021-03-13 16:55:50 +00:00
|
|
|
&TyKind::FnDef(def, ..) => Some(db.lookup_intern_callable_def(def.into())),
|
2021-01-28 18:06:33 +00:00
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-13 16:55:50 +00:00
|
|
|
pub fn as_fn_def(&self, db: &dyn HirDatabase) -> Option<FunctionId> {
|
|
|
|
if let Some(CallableDefId::FunctionId(func)) = self.callable_def(db) {
|
|
|
|
Some(func)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-28 21:12:07 +00:00
|
|
|
pub fn callable_sig(&self, db: &dyn HirDatabase) -> Option<CallableSig> {
|
2021-04-03 11:08:29 +00:00
|
|
|
match self.kind(&Interner) {
|
2021-03-13 13:44:51 +00:00
|
|
|
TyKind::Function(fn_ptr) => Some(CallableSig::from_fn_ptr(fn_ptr)),
|
|
|
|
TyKind::FnDef(def, parameters) => {
|
2021-03-13 16:55:50 +00:00
|
|
|
let callable_def = db.lookup_intern_callable_def((*def).into());
|
|
|
|
let sig = db.callable_item_signature(callable_def);
|
2021-04-05 16:49:26 +00:00
|
|
|
Some(sig.substitute(&Interner, ¶meters))
|
2021-02-28 18:13:37 +00:00
|
|
|
}
|
2021-03-13 13:44:51 +00:00
|
|
|
TyKind::Closure(.., substs) => {
|
2021-04-01 19:04:02 +00:00
|
|
|
let sig_param = substs.at(&Interner, 0).assert_ty_ref(&Interner);
|
2021-02-28 18:13:37 +00:00
|
|
|
sig_param.callable_sig(db)
|
|
|
|
}
|
2019-11-27 14:46:02 +00:00
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns the type parameters of this type if it has some (i.e. is an ADT
|
|
|
|
/// or function); so if `self` is `Option<u32>`, this returns the `u32`.
|
2021-03-15 20:02:34 +00:00
|
|
|
pub fn substs(&self) -> Option<&Substitution> {
|
2021-04-03 11:08:29 +00:00
|
|
|
match self.kind(&Interner) {
|
2021-03-13 13:44:51 +00:00
|
|
|
TyKind::Adt(_, substs)
|
|
|
|
| TyKind::FnDef(_, substs)
|
|
|
|
| TyKind::Tuple(_, substs)
|
|
|
|
| TyKind::OpaqueType(_, substs)
|
|
|
|
| TyKind::AssociatedType(_, substs)
|
|
|
|
| TyKind::Closure(.., substs) => Some(substs),
|
2021-04-05 20:23:16 +00:00
|
|
|
TyKind::Function(FnPointer { substitution: substs, .. }) => Some(&substs.0),
|
2021-02-28 18:13:37 +00:00
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-15 20:02:34 +00:00
|
|
|
fn substs_mut(&mut self) -> Option<&mut Substitution> {
|
2021-03-14 16:25:29 +00:00
|
|
|
match self.interned_mut() {
|
2021-03-13 13:44:51 +00:00
|
|
|
TyKind::Adt(_, substs)
|
|
|
|
| TyKind::FnDef(_, substs)
|
|
|
|
| TyKind::Tuple(_, substs)
|
|
|
|
| TyKind::OpaqueType(_, substs)
|
|
|
|
| TyKind::AssociatedType(_, substs)
|
|
|
|
| TyKind::Closure(.., substs) => Some(substs),
|
2021-04-05 20:23:16 +00:00
|
|
|
TyKind::Function(FnPointer { substitution: substs, .. }) => Some(&mut substs.0),
|
2019-11-27 14:46:02 +00:00
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-21 12:22:22 +00:00
|
|
|
pub fn impl_trait_bounds(&self, db: &dyn HirDatabase) -> Option<Vec<QuantifiedWhereClause>> {
|
2021-04-03 11:08:29 +00:00
|
|
|
match self.kind(&Interner) {
|
2021-03-13 13:44:51 +00:00
|
|
|
TyKind::OpaqueType(opaque_ty_id, ..) => {
|
2021-03-13 19:05:47 +00:00
|
|
|
match db.lookup_intern_impl_trait_id((*opaque_ty_id).into()) {
|
|
|
|
ImplTraitId::AsyncBlockTypeImplTrait(def, _expr) => {
|
2021-01-22 17:09:55 +00:00
|
|
|
let krate = def.module(db.upcast()).krate();
|
2020-09-11 17:03:28 +00:00
|
|
|
if let Some(future_trait) = db
|
2020-09-10 12:01:23 +00:00
|
|
|
.lang_item(krate, "future_trait".into())
|
|
|
|
.and_then(|item| item.as_trait())
|
|
|
|
{
|
2020-09-11 17:03:28 +00:00
|
|
|
// This is only used by type walking.
|
|
|
|
// Parameters will be walked outside, and projection predicate is not used.
|
|
|
|
// So just provide the Future trait.
|
2021-04-05 15:45:18 +00:00
|
|
|
let impl_bound = Binders::empty(
|
|
|
|
&Interner,
|
2021-03-21 12:22:22 +00:00
|
|
|
WhereClause::Implemented(TraitRef {
|
|
|
|
trait_id: to_chalk_trait_id(future_trait),
|
2021-04-01 19:04:02 +00:00
|
|
|
substitution: Substitution::empty(&Interner),
|
2021-03-21 12:22:22 +00:00
|
|
|
}),
|
|
|
|
);
|
2020-09-11 17:03:28 +00:00
|
|
|
Some(vec![impl_bound])
|
2020-09-10 12:01:23 +00:00
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
2021-03-13 19:05:47 +00:00
|
|
|
ImplTraitId::ReturnTypeImplTrait(..) => None,
|
2020-09-10 12:01:23 +00:00
|
|
|
}
|
|
|
|
}
|
2021-03-13 13:44:51 +00:00
|
|
|
TyKind::Alias(AliasTy::Opaque(opaque_ty)) => {
|
2021-03-13 19:05:47 +00:00
|
|
|
let predicates = match db.lookup_intern_impl_trait_id(opaque_ty.opaque_ty_id.into())
|
|
|
|
{
|
|
|
|
ImplTraitId::ReturnTypeImplTrait(func, idx) => {
|
2020-06-11 17:17:32 +00:00
|
|
|
db.return_type_impl_traits(func).map(|it| {
|
|
|
|
let data = (*it)
|
|
|
|
.as_ref()
|
|
|
|
.map(|rpit| rpit.impl_traits[idx as usize].bounds.clone());
|
2021-04-05 16:49:26 +00:00
|
|
|
data.substitute(&Interner, &opaque_ty.substitution)
|
2020-06-11 17:17:32 +00:00
|
|
|
})
|
|
|
|
}
|
2020-09-10 12:01:23 +00:00
|
|
|
// It always has an parameter for Future::Output type.
|
2021-03-13 19:05:47 +00:00
|
|
|
ImplTraitId::AsyncBlockTypeImplTrait(..) => unreachable!(),
|
2020-06-11 17:17:32 +00:00
|
|
|
};
|
|
|
|
|
2021-04-05 15:13:50 +00:00
|
|
|
predicates.map(|it| it.into_value_and_skipped_binders().0)
|
2020-06-11 17:17:32 +00:00
|
|
|
}
|
2021-03-13 18:47:34 +00:00
|
|
|
TyKind::Placeholder(idx) => {
|
|
|
|
let id = from_placeholder_idx(db, *idx);
|
2020-06-11 17:17:32 +00:00
|
|
|
let generic_params = db.generic_params(id.parent);
|
|
|
|
let param_data = &generic_params.types[id.local_id];
|
|
|
|
match param_data.provenance {
|
2020-06-11 20:06:58 +00:00
|
|
|
hir_def::generics::TypeParamProvenance::ArgumentImplTrait => {
|
2021-04-04 11:16:16 +00:00
|
|
|
let substs = TyBuilder::type_params_subst(db, id.parent);
|
2020-06-11 20:06:58 +00:00
|
|
|
let predicates = db
|
2021-03-20 19:07:36 +00:00
|
|
|
.generic_predicates(id.parent)
|
2020-06-11 20:06:58 +00:00
|
|
|
.into_iter()
|
2021-04-05 16:49:26 +00:00
|
|
|
.map(|pred| pred.clone().substitute(&Interner, &substs))
|
2021-03-21 16:40:14 +00:00
|
|
|
.filter(|wc| match &wc.skip_binders() {
|
2021-04-05 14:38:37 +00:00
|
|
|
WhereClause::Implemented(tr) => {
|
|
|
|
tr.self_type_parameter(&Interner) == self
|
|
|
|
}
|
2021-03-20 19:07:36 +00:00
|
|
|
WhereClause::AliasEq(AliasEq {
|
|
|
|
alias: AliasTy::Projection(proj),
|
|
|
|
ty: _,
|
2021-04-05 14:37:24 +00:00
|
|
|
}) => proj.self_type_parameter(&Interner) == self,
|
2021-03-20 19:07:36 +00:00
|
|
|
_ => false,
|
|
|
|
})
|
2020-06-11 20:06:58 +00:00
|
|
|
.collect_vec();
|
|
|
|
|
|
|
|
Some(predicates)
|
|
|
|
}
|
2020-06-11 17:17:32 +00:00
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn associated_type_parent_trait(&self, db: &dyn HirDatabase) -> Option<TraitId> {
|
2021-04-03 11:08:29 +00:00
|
|
|
match self.kind(&Interner) {
|
2021-03-13 16:36:07 +00:00
|
|
|
TyKind::AssociatedType(id, ..) => {
|
|
|
|
match from_assoc_type_id(*id).lookup(db.upcast()).container {
|
2020-06-11 17:17:32 +00:00
|
|
|
AssocContainerId::TraitId(trait_id) => Some(trait_id),
|
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
2021-03-13 13:44:51 +00:00
|
|
|
TyKind::Alias(AliasTy::Projection(projection_ty)) => {
|
2021-03-14 15:30:02 +00:00
|
|
|
match from_assoc_type_id(projection_ty.associated_ty_id)
|
|
|
|
.lookup(db.upcast())
|
|
|
|
.container
|
2021-03-13 16:36:07 +00:00
|
|
|
{
|
2020-06-11 20:06:58 +00:00
|
|
|
AssocContainerId::TraitId(trait_id) => Some(trait_id),
|
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
2020-06-11 17:17:32 +00:00
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
2019-11-27 14:46:02 +00:00
|
|
|
}
|
|
|
|
|
2020-03-04 22:00:44 +00:00
|
|
|
#[derive(Copy, Clone, PartialEq, Eq, Debug, Hash)]
|
2021-03-13 19:05:47 +00:00
|
|
|
pub enum ImplTraitId {
|
2020-03-04 22:00:44 +00:00
|
|
|
ReturnTypeImplTrait(hir_def::FunctionId, u16),
|
2020-09-10 12:01:23 +00:00
|
|
|
AsyncBlockTypeImplTrait(hir_def::DefWithBodyId, ExprId),
|
2020-03-04 22:00:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone, PartialEq, Eq, Debug, Hash)]
|
|
|
|
pub struct ReturnTypeImplTraits {
|
2020-06-11 20:06:58 +00:00
|
|
|
pub(crate) impl_traits: Vec<ReturnTypeImplTrait>,
|
2020-03-04 22:00:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone, PartialEq, Eq, Debug, Hash)]
|
2020-06-11 20:06:58 +00:00
|
|
|
pub(crate) struct ReturnTypeImplTrait {
|
2021-03-21 12:22:22 +00:00
|
|
|
pub(crate) bounds: Binders<Vec<QuantifiedWhereClause>>,
|
2020-03-04 22:00:44 +00:00
|
|
|
}
|
2021-03-13 16:23:19 +00:00
|
|
|
|
2021-03-13 16:36:07 +00:00
|
|
|
pub fn to_foreign_def_id(id: TypeAliasId) -> ForeignDefId {
|
2021-03-13 16:23:19 +00:00
|
|
|
chalk_ir::ForeignDefId(salsa::InternKey::as_intern_id(&id))
|
|
|
|
}
|
|
|
|
|
2021-03-13 16:36:07 +00:00
|
|
|
pub fn from_foreign_def_id(id: ForeignDefId) -> TypeAliasId {
|
|
|
|
salsa::InternKey::from_intern_id(id.0)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn to_assoc_type_id(id: TypeAliasId) -> AssocTypeId {
|
|
|
|
chalk_ir::AssocTypeId(salsa::InternKey::as_intern_id(&id))
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn from_assoc_type_id(id: AssocTypeId) -> TypeAliasId {
|
2021-03-13 16:23:19 +00:00
|
|
|
salsa::InternKey::from_intern_id(id.0)
|
|
|
|
}
|
2021-03-13 18:47:34 +00:00
|
|
|
|
|
|
|
pub fn from_placeholder_idx(db: &dyn HirDatabase, idx: PlaceholderIndex) -> TypeParamId {
|
|
|
|
assert_eq!(idx.ui, chalk_ir::UniverseIndex::ROOT);
|
|
|
|
let interned_id = salsa::InternKey::from_intern_id(salsa::InternId::from(idx.idx));
|
|
|
|
db.lookup_intern_type_param_id(interned_id)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn to_placeholder_idx(db: &dyn HirDatabase, id: TypeParamId) -> PlaceholderIndex {
|
|
|
|
let interned_id = db.intern_type_param_id(id);
|
|
|
|
PlaceholderIndex {
|
|
|
|
ui: chalk_ir::UniverseIndex::ROOT,
|
|
|
|
idx: salsa::InternKey::as_intern_id(&interned_id).as_usize(),
|
|
|
|
}
|
|
|
|
}
|
2021-03-18 20:53:19 +00:00
|
|
|
|
2021-04-05 18:46:15 +00:00
|
|
|
pub fn lt_from_placeholder_idx(db: &dyn HirDatabase, idx: PlaceholderIndex) -> LifetimeParamId {
|
|
|
|
assert_eq!(idx.ui, chalk_ir::UniverseIndex::ROOT);
|
|
|
|
let interned_id = salsa::InternKey::from_intern_id(salsa::InternId::from(idx.idx));
|
|
|
|
db.lookup_intern_lifetime_param_id(interned_id)
|
|
|
|
}
|
|
|
|
|
2021-03-18 20:53:19 +00:00
|
|
|
pub fn to_chalk_trait_id(id: TraitId) -> ChalkTraitId {
|
|
|
|
chalk_ir::TraitId(salsa::InternKey::as_intern_id(&id))
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn from_chalk_trait_id(id: ChalkTraitId) -> TraitId {
|
|
|
|
salsa::InternKey::from_intern_id(id.0)
|
|
|
|
}
|