2019-11-27 08:46:02 -06:00
|
|
|
//! The type system. We currently use this to infer types for completion, hover
|
|
|
|
//! information and various assists.
|
2020-04-06 09:58:16 -05:00
|
|
|
#[allow(unused)]
|
|
|
|
macro_rules! eprintln {
|
|
|
|
($($tt:tt)*) => { stdx::eprintln!($($tt)*) };
|
|
|
|
}
|
|
|
|
|
2019-11-27 08:46:02 -06:00
|
|
|
mod autoderef;
|
2019-11-26 05:35:23 -06:00
|
|
|
pub mod primitive;
|
2019-11-27 08:46:02 -06:00
|
|
|
pub mod traits;
|
|
|
|
pub mod method_resolution;
|
|
|
|
mod op;
|
|
|
|
mod lower;
|
2020-03-06 17:11:52 -06:00
|
|
|
pub(crate) mod infer;
|
2019-11-27 08:46:02 -06:00
|
|
|
pub(crate) mod utils;
|
2021-03-20 05:23:59 -05:00
|
|
|
mod chalk_cast;
|
2021-04-04 05:55:47 -05:00
|
|
|
mod chalk_ext;
|
|
|
|
mod builder;
|
2021-04-04 13:22:00 -05:00
|
|
|
mod walk;
|
|
|
|
mod types;
|
2020-07-13 08:34:46 -05:00
|
|
|
|
|
|
|
pub mod display;
|
2019-11-27 08:46:02 -06:00
|
|
|
pub mod db;
|
|
|
|
pub mod diagnostics;
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests;
|
|
|
|
#[cfg(test)]
|
|
|
|
mod test_db;
|
|
|
|
|
2021-04-04 13:22:00 -05:00
|
|
|
use std::sync::Arc;
|
2021-04-04 05:55:47 -05:00
|
|
|
|
|
|
|
use itertools::Itertools;
|
|
|
|
use smallvec::SmallVec;
|
2019-11-27 08:46:02 -06:00
|
|
|
|
2021-02-28 12:13:37 -06:00
|
|
|
use base_db::salsa;
|
2019-11-27 08:46:02 -06:00
|
|
|
use hir_def::{
|
2021-04-04 13:22:00 -05:00
|
|
|
expr::ExprId, type_ref::Rawness, AssocContainerId, FunctionId, GenericDefId, HasModule, Lookup,
|
|
|
|
TraitId, TypeAliasId, TypeParamId,
|
2019-11-27 08:46:02 -06:00
|
|
|
};
|
|
|
|
|
2021-04-04 13:22:00 -05:00
|
|
|
use crate::{db::HirDatabase, display::HirDisplay, utils::generics};
|
2019-11-27 08:46:02 -06:00
|
|
|
|
|
|
|
pub use autoderef::autoderef;
|
2021-04-04 05:55:47 -05:00
|
|
|
pub use builder::TyBuilder;
|
2021-04-03 13:22:59 -05:00
|
|
|
pub use chalk_ext::TyExt;
|
2021-03-16 10:45:46 -05:00
|
|
|
pub use infer::{could_unify, InferenceResult, InferenceVar};
|
2020-01-24 08:22:00 -06:00
|
|
|
pub use lower::{
|
2021-01-28 12:06:33 -06:00
|
|
|
associated_type_shorthand_candidates, callable_item_sig, CallableDefId, ImplTraitLoweringMode,
|
|
|
|
TyDefId, TyLoweringContext, ValueTyDefId,
|
2020-01-24 08:22:00 -06:00
|
|
|
};
|
2021-04-04 13:27:40 -05:00
|
|
|
pub use traits::TraitEnvironment;
|
2021-04-04 13:22:00 -05:00
|
|
|
pub use types::*;
|
|
|
|
pub use walk::TypeWalk;
|
2019-11-27 08:46:02 -06:00
|
|
|
|
2021-03-20 05:23:59 -05:00
|
|
|
pub use chalk_ir::{
|
|
|
|
cast::Cast, AdtId, BoundVar, DebruijnIndex, Mutability, Safety, Scalar, TyVariableKind,
|
|
|
|
};
|
2021-03-01 14:57:39 -06:00
|
|
|
|
2021-03-13 07:44:51 -06:00
|
|
|
pub use crate::traits::chalk::Interner;
|
2020-04-05 11:24:18 -05:00
|
|
|
|
2021-03-13 10:23:19 -06:00
|
|
|
pub type ForeignDefId = chalk_ir::ForeignDefId<Interner>;
|
2021-03-13 10:36:07 -06:00
|
|
|
pub type AssocTypeId = chalk_ir::AssocTypeId<Interner>;
|
2021-03-13 12:27:09 -06:00
|
|
|
pub type FnDefId = chalk_ir::FnDefId<Interner>;
|
|
|
|
pub type ClosureId = chalk_ir::ClosureId<Interner>;
|
2021-03-13 13:05:47 -06:00
|
|
|
pub type OpaqueTyId = chalk_ir::OpaqueTyId<Interner>;
|
2021-03-13 12:47:34 -06:00
|
|
|
pub type PlaceholderIndex = chalk_ir::PlaceholderIndex;
|
2021-03-13 10:23:19 -06:00
|
|
|
|
2021-03-21 14:05:38 -05:00
|
|
|
pub type CanonicalVarKinds = chalk_ir::CanonicalVarKinds<Interner>;
|
|
|
|
|
2021-03-18 15:53:19 -05:00
|
|
|
pub type ChalkTraitId = chalk_ir::TraitId<Interner>;
|
|
|
|
|
2019-11-27 08:46:02 -06:00
|
|
|
impl ProjectionTy {
|
2020-03-13 10:05:46 -05:00
|
|
|
pub fn trait_ref(&self, db: &dyn HirDatabase) -> TraitRef {
|
2021-03-18 15:53:19 -05:00
|
|
|
TraitRef {
|
|
|
|
trait_id: to_chalk_trait_id(self.trait_(db)),
|
|
|
|
substitution: self.substitution.clone(),
|
|
|
|
}
|
2019-11-27 08:46:02 -06:00
|
|
|
}
|
|
|
|
|
2021-03-20 09:26:42 -05:00
|
|
|
pub fn self_type_parameter(&self) -> &Ty {
|
2021-04-04 13:22:00 -05:00
|
|
|
&self.substitution.interned()[0].assert_ty_ref(&Interner)
|
2021-03-20 09:26:42 -05:00
|
|
|
}
|
|
|
|
|
2020-03-13 10:05:46 -05:00
|
|
|
fn trait_(&self, db: &dyn HirDatabase) -> TraitId {
|
2021-03-14 10:26:12 -05:00
|
|
|
match from_assoc_type_id(self.associated_ty_id).lookup(db.upcast()).container {
|
2019-12-20 04:59:50 -06:00
|
|
|
AssocContainerId::TraitId(it) => it,
|
2019-11-27 08:46:02 -06:00
|
|
|
_ => panic!("projection ty without parent trait"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-14 10:30:02 -05:00
|
|
|
pub type FnSig = chalk_ir::FnSig<Interner>;
|
2021-02-28 15:12:07 -06:00
|
|
|
|
2021-03-15 15:02:34 -05:00
|
|
|
impl Substitution {
|
|
|
|
pub fn single(ty: Ty) -> Substitution {
|
2021-04-04 13:22:00 -05:00
|
|
|
Substitution::intern({
|
2021-03-15 13:13:49 -05:00
|
|
|
let mut v = SmallVec::new();
|
2021-04-01 14:04:02 -05:00
|
|
|
v.push(ty.cast(&Interner));
|
2021-03-15 13:13:49 -05:00
|
|
|
v
|
|
|
|
})
|
2019-11-27 08:46:02 -06:00
|
|
|
}
|
|
|
|
|
2021-03-15 15:02:34 -05:00
|
|
|
pub fn prefix(&self, n: usize) -> Substitution {
|
2021-04-04 13:22:00 -05:00
|
|
|
Substitution::intern(self.interned()[..std::cmp::min(self.len(&Interner), n)].into())
|
2019-11-27 08:46:02 -06:00
|
|
|
}
|
|
|
|
|
2021-03-15 15:02:34 -05:00
|
|
|
pub fn suffix(&self, n: usize) -> Substitution {
|
2021-04-04 13:22:00 -05:00
|
|
|
Substitution::intern(
|
|
|
|
self.interned()[self.len(&Interner) - std::cmp::min(self.len(&Interner), n)..].into(),
|
|
|
|
)
|
2021-03-15 13:13:49 -05:00
|
|
|
}
|
2019-11-27 08:46:02 -06:00
|
|
|
}
|
|
|
|
|
2020-05-14 05:47:36 -05: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)
|
|
|
|
}
|
|
|
|
|
2020-01-25 16:38:33 -06:00
|
|
|
impl<T> Binders<T> {
|
2020-02-02 06:04:22 -06:00
|
|
|
pub fn new(num_binders: usize, value: T) -> Self {
|
|
|
|
Self { num_binders, value }
|
|
|
|
}
|
2020-04-26 09:56:25 -05:00
|
|
|
|
2021-03-21 07:22:22 -05:00
|
|
|
pub fn wrap_empty(value: T) -> Self
|
|
|
|
where
|
|
|
|
T: TypeWalk,
|
|
|
|
{
|
|
|
|
Self { num_binders: 0, value: value.shift_bound_vars(DebruijnIndex::ONE) }
|
|
|
|
}
|
|
|
|
|
2020-04-26 09:56:25 -05:00
|
|
|
pub fn as_ref(&self) -> Binders<&T> {
|
|
|
|
Binders { num_binders: self.num_binders, value: &self.value }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn map<U>(self, f: impl FnOnce(T) -> U) -> Binders<U> {
|
|
|
|
Binders { num_binders: self.num_binders, value: f(self.value) }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn filter_map<U>(self, f: impl FnOnce(T) -> Option<U>) -> Option<Binders<U>> {
|
|
|
|
Some(Binders { num_binders: self.num_binders, value: f(self.value)? })
|
|
|
|
}
|
2021-03-21 07:22:22 -05:00
|
|
|
|
|
|
|
pub fn skip_binders(&self) -> &T {
|
|
|
|
&self.value
|
|
|
|
}
|
2021-03-21 11:40:14 -05:00
|
|
|
|
|
|
|
pub fn into_value_and_skipped_binders(self) -> (T, usize) {
|
|
|
|
(self.value, self.num_binders)
|
|
|
|
}
|
2020-01-25 16:38:33 -06:00
|
|
|
}
|
|
|
|
|
2020-02-21 14:49:02 -06:00
|
|
|
impl<T: Clone> Binders<&T> {
|
|
|
|
pub fn cloned(&self) -> Binders<T> {
|
|
|
|
Binders { num_binders: self.num_binders, value: self.value.clone() }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-25 16:38:33 -06:00
|
|
|
impl<T: TypeWalk> Binders<T> {
|
|
|
|
/// Substitutes all variables.
|
2021-03-15 15:02:34 -05:00
|
|
|
pub fn subst(self, subst: &Substitution) -> T {
|
2021-04-01 14:04:02 -05:00
|
|
|
assert_eq!(subst.len(&Interner), self.num_binders);
|
2020-01-25 16:38:33 -06:00
|
|
|
self.value.subst_bound_vars(subst)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-27 08:46:02 -06:00
|
|
|
impl TraitRef {
|
2021-03-18 15:53:19 -05:00
|
|
|
pub fn self_type_parameter(&self) -> &Ty {
|
2021-04-01 14:04:02 -05:00
|
|
|
&self.substitution.at(&Interner, 0).assert_ty_ref(&Interner)
|
2021-03-18 15:53:19 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn hir_trait_id(&self) -> TraitId {
|
|
|
|
from_chalk_trait_id(self.trait_id)
|
2019-11-27 08:46:02 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-20 04:46:36 -05:00
|
|
|
impl WhereClause {
|
2019-11-27 08:46:02 -06:00
|
|
|
pub fn is_implemented(&self) -> bool {
|
2021-03-20 04:46:36 -05:00
|
|
|
matches!(self, WhereClause::Implemented(_))
|
2019-11-27 08:46:02 -06:00
|
|
|
}
|
|
|
|
|
2020-03-13 10:05:46 -05:00
|
|
|
pub fn trait_ref(&self, db: &dyn HirDatabase) -> Option<TraitRef> {
|
2019-11-27 08:46:02 -06:00
|
|
|
match self {
|
2021-03-20 04:46:36 -05:00
|
|
|
WhereClause::Implemented(tr) => Some(tr.clone()),
|
|
|
|
WhereClause::AliasEq(AliasEq { alias: AliasTy::Projection(proj), .. }) => {
|
2021-03-18 20:07:15 -05:00
|
|
|
Some(proj.trait_ref(db))
|
|
|
|
}
|
2021-03-20 04:51:00 -05:00
|
|
|
WhereClause::AliasEq(_) => None,
|
2019-11-27 08:46:02 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-28 14:17:27 -05:00
|
|
|
impl<T> Canonical<T> {
|
2021-03-01 06:54:17 -06:00
|
|
|
pub fn new(value: T, kinds: impl IntoIterator<Item = TyVariableKind>) -> Self {
|
2021-03-21 14:05:38 -05: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 14:17:27 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-27 08:46:02 -06:00
|
|
|
/// A function signature as seen by type inference: Several parameter types and
|
|
|
|
/// one return type.
|
|
|
|
#[derive(Clone, PartialEq, Eq, Debug)]
|
2021-02-28 15:12:07 -06:00
|
|
|
pub struct CallableSig {
|
2019-11-27 08:46:02 -06:00
|
|
|
params_and_return: Arc<[Ty]>,
|
2020-07-14 11:23:45 -05:00
|
|
|
is_varargs: bool,
|
2019-11-27 08:46:02 -06:00
|
|
|
}
|
|
|
|
|
2020-01-25 16:38:33 -06:00
|
|
|
/// A polymorphic function signature.
|
2021-02-28 15:12:07 -06:00
|
|
|
pub type PolyFnSig = Binders<CallableSig>;
|
2020-01-25 16:38:33 -06:00
|
|
|
|
2021-02-28 15:12:07 -06:00
|
|
|
impl CallableSig {
|
|
|
|
pub fn from_params_and_return(mut params: Vec<Ty>, ret: Ty, is_varargs: bool) -> CallableSig {
|
2019-11-27 08:46:02 -06:00
|
|
|
params.push(ret);
|
2021-02-28 15:12:07 -06:00
|
|
|
CallableSig { params_and_return: params.into(), is_varargs }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn from_fn_ptr(fn_ptr: &FnPointer) -> CallableSig {
|
|
|
|
CallableSig {
|
2021-04-03 15:47:29 -05:00
|
|
|
// FIXME: what to do about lifetime params? -> return PolyFnSig
|
2021-03-24 17:07:54 -05:00
|
|
|
params_and_return: fn_ptr
|
|
|
|
.substs
|
|
|
|
.clone()
|
|
|
|
.shift_bound_vars_out(DebruijnIndex::ONE)
|
2021-04-04 13:22:00 -05:00
|
|
|
.interned()
|
2021-03-24 17:07:54 -05:00
|
|
|
.iter()
|
2021-04-01 14:04:02 -05:00
|
|
|
.map(|arg| arg.assert_ty_ref(&Interner).clone())
|
2021-03-24 17:07:54 -05:00
|
|
|
.collect(),
|
2021-02-28 15:12:07 -06:00
|
|
|
is_varargs: fn_ptr.sig.variadic,
|
|
|
|
}
|
2019-11-27 08:46:02 -06: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 14:29:49 -05:00
|
|
|
impl Ty {
|
2019-11-27 08:46:02 -06:00
|
|
|
pub fn as_reference(&self) -> Option<(&Ty, Mutability)> {
|
2021-04-03 06:08:29 -05:00
|
|
|
match self.kind(&Interner) {
|
2021-03-14 11:40:55 -05:00
|
|
|
TyKind::Ref(mutability, ty) => Some((ty, *mutability)),
|
2019-11-27 08:46:02 -06:00
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-28 14:42:22 -05:00
|
|
|
pub fn as_reference_or_ptr(&self) -> Option<(&Ty, Rawness, Mutability)> {
|
2021-04-03 06:08:29 -05:00
|
|
|
match self.kind(&Interner) {
|
2021-03-14 11:40:55 -05:00
|
|
|
TyKind::Ref(mutability, ty) => Some((ty, Rawness::Ref, *mutability)),
|
|
|
|
TyKind::Raw(mutability, ty) => Some((ty, Rawness::RawPtr, *mutability)),
|
2020-05-28 14:42:22 -05:00
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-14 18:06:57 -05:00
|
|
|
pub fn strip_references(&self) -> &Ty {
|
|
|
|
let mut t: &Ty = self;
|
|
|
|
|
2021-04-03 06:08:29 -05:00
|
|
|
while let TyKind::Ref(_mutability, ty) = t.kind(&Interner) {
|
2021-03-14 11:40:55 -05:00
|
|
|
t = ty;
|
2020-04-14 18:06:57 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
t
|
|
|
|
}
|
|
|
|
|
2021-03-15 15:02:34 -05:00
|
|
|
pub fn as_adt(&self) -> Option<(hir_def::AdtId, &Substitution)> {
|
2021-04-03 06:08:29 -05:00
|
|
|
match self.kind(&Interner) {
|
2021-03-13 07:44:51 -06:00
|
|
|
TyKind::Adt(AdtId(adt), parameters) => Some((*adt, parameters)),
|
2019-11-27 08:46:02 -06:00
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-15 15:02:34 -05:00
|
|
|
pub fn as_tuple(&self) -> Option<&Substitution> {
|
2021-04-03 06:08:29 -05:00
|
|
|
match self.kind(&Interner) {
|
2021-03-13 07:44:51 -06:00
|
|
|
TyKind::Tuple(_, substs) => Some(substs),
|
2021-02-28 12:13:37 -06:00
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-13 10:55:50 -06:00
|
|
|
pub fn as_generic_def(&self, db: &dyn HirDatabase) -> Option<GenericDefId> {
|
2021-04-03 06:08:29 -05:00
|
|
|
match *self.kind(&Interner) {
|
2021-03-13 07:44:51 -06:00
|
|
|
TyKind::Adt(AdtId(adt), ..) => Some(adt.into()),
|
2021-03-13 10:55:50 -06:00
|
|
|
TyKind::FnDef(callable, ..) => {
|
|
|
|
Some(db.lookup_intern_callable_def(callable.into()).into())
|
|
|
|
}
|
2021-03-13 10:36:07 -06:00
|
|
|
TyKind::AssociatedType(type_alias, ..) => Some(from_assoc_type_id(type_alias).into()),
|
2021-03-13 10:23:19 -06:00
|
|
|
TyKind::ForeignType(type_alias, ..) => Some(from_foreign_def_id(type_alias).into()),
|
2019-11-27 08:46:02 -06:00
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-08 10:36:11 -05:00
|
|
|
pub fn is_never(&self) -> bool {
|
2021-04-03 06:08:29 -05:00
|
|
|
matches!(self.kind(&Interner), TyKind::Never)
|
2020-05-08 10:36:11 -05:00
|
|
|
}
|
|
|
|
|
2021-01-01 13:45:49 -06:00
|
|
|
pub fn is_unknown(&self) -> bool {
|
2021-04-05 07:37:11 -05:00
|
|
|
matches!(self.kind(&Interner), TyKind::Error)
|
2021-01-01 13:45:49 -06:00
|
|
|
}
|
|
|
|
|
2021-02-28 12:13:37 -06:00
|
|
|
pub fn equals_ctor(&self, other: &Ty) -> bool {
|
2021-04-03 06:08:29 -05:00
|
|
|
match (self.kind(&Interner), other.kind(&Interner)) {
|
2021-03-13 07:44:51 -06: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 10:23:19 -06:00
|
|
|
(TyKind::AssociatedType(ty_id, ..), TyKind::AssociatedType(ty_id2, ..)) => {
|
|
|
|
ty_id == ty_id2
|
|
|
|
}
|
|
|
|
(TyKind::ForeignType(ty_id, ..), TyKind::ForeignType(ty_id2, ..)) => ty_id == ty_id2,
|
2021-03-13 12:27:09 -06:00
|
|
|
(TyKind::Closure(id1, _), TyKind::Closure(id2, _)) => id1 == id2,
|
2021-03-13 07:44:51 -06:00
|
|
|
(TyKind::Ref(mutability, ..), TyKind::Ref(mutability2, ..))
|
|
|
|
| (TyKind::Raw(mutability, ..), TyKind::Raw(mutability2, ..)) => {
|
|
|
|
mutability == mutability2
|
|
|
|
}
|
2021-02-28 12:13:37 -06:00
|
|
|
(
|
2021-03-13 07:44:51 -06:00
|
|
|
TyKind::Function(FnPointer { num_args, sig, .. }),
|
|
|
|
TyKind::Function(FnPointer { num_args: num_args2, sig: sig2, .. }),
|
2021-02-28 15:12:07 -06:00
|
|
|
) => num_args == num_args2 && sig == sig2,
|
2021-03-13 07:44:51 -06: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 12:13:37 -06:00
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-21 12:05:27 -06:00
|
|
|
/// If this is a `dyn Trait` type, this returns the `Trait` part.
|
2021-03-21 07:22:22 -05:00
|
|
|
fn dyn_trait_ref(&self) -> Option<&TraitRef> {
|
2021-04-03 06:08:29 -05:00
|
|
|
match self.kind(&Interner) {
|
2021-03-21 07:22:22 -05:00
|
|
|
TyKind::Dyn(dyn_ty) => {
|
|
|
|
dyn_ty.bounds.value.interned().get(0).and_then(|b| match b.skip_binders() {
|
|
|
|
WhereClause::Implemented(trait_ref) => Some(trait_ref),
|
|
|
|
_ => None,
|
|
|
|
})
|
|
|
|
}
|
2020-02-21 12:05:27 -06:00
|
|
|
_ => None,
|
|
|
|
}
|
2019-11-27 08:46:02 -06:00
|
|
|
}
|
|
|
|
|
2020-06-11 15:06:58 -05:00
|
|
|
/// If this is a `dyn Trait`, returns that trait.
|
|
|
|
pub fn dyn_trait(&self) -> Option<TraitId> {
|
2021-03-18 15:53:19 -05:00
|
|
|
self.dyn_trait_ref().map(|it| it.trait_id).map(from_chalk_trait_id)
|
2020-06-11 15:06:58 -05:00
|
|
|
}
|
|
|
|
|
2019-11-27 08:46:02 -06:00
|
|
|
fn builtin_deref(&self) -> Option<Ty> {
|
2021-04-03 06:08:29 -05:00
|
|
|
match self.kind(&Interner) {
|
2021-03-14 11:40:55 -05:00
|
|
|
TyKind::Ref(.., ty) => Some(ty.clone()),
|
|
|
|
TyKind::Raw(.., ty) => Some(ty.clone()),
|
2019-11-27 08:46:02 -06:00
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-13 10:55:50 -06:00
|
|
|
pub fn callable_def(&self, db: &dyn HirDatabase) -> Option<CallableDefId> {
|
2021-04-03 06:08:29 -05:00
|
|
|
match self.kind(&Interner) {
|
2021-03-13 10:55:50 -06:00
|
|
|
&TyKind::FnDef(def, ..) => Some(db.lookup_intern_callable_def(def.into())),
|
2021-01-28 12:06:33 -06:00
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-13 10:55:50 -06: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 15:12:07 -06:00
|
|
|
pub fn callable_sig(&self, db: &dyn HirDatabase) -> Option<CallableSig> {
|
2021-04-03 06:08:29 -05:00
|
|
|
match self.kind(&Interner) {
|
2021-03-13 07:44:51 -06:00
|
|
|
TyKind::Function(fn_ptr) => Some(CallableSig::from_fn_ptr(fn_ptr)),
|
|
|
|
TyKind::FnDef(def, parameters) => {
|
2021-03-13 10:55:50 -06:00
|
|
|
let callable_def = db.lookup_intern_callable_def((*def).into());
|
|
|
|
let sig = db.callable_item_signature(callable_def);
|
2021-02-28 12:13:37 -06:00
|
|
|
Some(sig.subst(¶meters))
|
|
|
|
}
|
2021-03-13 07:44:51 -06:00
|
|
|
TyKind::Closure(.., substs) => {
|
2021-04-01 14:04:02 -05:00
|
|
|
let sig_param = substs.at(&Interner, 0).assert_ty_ref(&Interner);
|
2021-02-28 12:13:37 -06:00
|
|
|
sig_param.callable_sig(db)
|
|
|
|
}
|
2019-11-27 08:46:02 -06: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 15:02:34 -05:00
|
|
|
pub fn substs(&self) -> Option<&Substitution> {
|
2021-04-03 06:08:29 -05:00
|
|
|
match self.kind(&Interner) {
|
2021-03-13 07:44:51 -06:00
|
|
|
TyKind::Adt(_, substs)
|
|
|
|
| TyKind::FnDef(_, substs)
|
|
|
|
| TyKind::Function(FnPointer { substs, .. })
|
|
|
|
| TyKind::Tuple(_, substs)
|
|
|
|
| TyKind::OpaqueType(_, substs)
|
|
|
|
| TyKind::AssociatedType(_, substs)
|
|
|
|
| TyKind::Closure(.., substs) => Some(substs),
|
2021-02-28 12:13:37 -06:00
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-15 15:02:34 -05:00
|
|
|
fn substs_mut(&mut self) -> Option<&mut Substitution> {
|
2021-03-14 11:25:29 -05:00
|
|
|
match self.interned_mut() {
|
2021-03-13 07:44:51 -06:00
|
|
|
TyKind::Adt(_, substs)
|
|
|
|
| TyKind::FnDef(_, substs)
|
|
|
|
| TyKind::Function(FnPointer { substs, .. })
|
|
|
|
| TyKind::Tuple(_, substs)
|
|
|
|
| TyKind::OpaqueType(_, substs)
|
|
|
|
| TyKind::AssociatedType(_, substs)
|
|
|
|
| TyKind::Closure(.., substs) => Some(substs),
|
2019-11-27 08:46:02 -06:00
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-21 07:22:22 -05:00
|
|
|
pub fn impl_trait_bounds(&self, db: &dyn HirDatabase) -> Option<Vec<QuantifiedWhereClause>> {
|
2021-04-03 06:08:29 -05:00
|
|
|
match self.kind(&Interner) {
|
2021-03-13 07:44:51 -06:00
|
|
|
TyKind::OpaqueType(opaque_ty_id, ..) => {
|
2021-03-13 13:05:47 -06:00
|
|
|
match db.lookup_intern_impl_trait_id((*opaque_ty_id).into()) {
|
|
|
|
ImplTraitId::AsyncBlockTypeImplTrait(def, _expr) => {
|
2021-01-22 11:09:55 -06:00
|
|
|
let krate = def.module(db.upcast()).krate();
|
2020-09-11 12:03:28 -05:00
|
|
|
if let Some(future_trait) = db
|
2020-09-10 07:01:23 -05:00
|
|
|
.lang_item(krate, "future_trait".into())
|
|
|
|
.and_then(|item| item.as_trait())
|
|
|
|
{
|
2020-09-11 12:03:28 -05: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-03-21 07:22:22 -05:00
|
|
|
let impl_bound = Binders::new(
|
|
|
|
0,
|
|
|
|
WhereClause::Implemented(TraitRef {
|
|
|
|
trait_id: to_chalk_trait_id(future_trait),
|
2021-04-01 14:04:02 -05:00
|
|
|
substitution: Substitution::empty(&Interner),
|
2021-03-21 07:22:22 -05:00
|
|
|
}),
|
|
|
|
);
|
2020-09-11 12:03:28 -05:00
|
|
|
Some(vec![impl_bound])
|
2020-09-10 07:01:23 -05:00
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
2021-03-13 13:05:47 -06:00
|
|
|
ImplTraitId::ReturnTypeImplTrait(..) => None,
|
2020-09-10 07:01:23 -05:00
|
|
|
}
|
|
|
|
}
|
2021-03-13 07:44:51 -06:00
|
|
|
TyKind::Alias(AliasTy::Opaque(opaque_ty)) => {
|
2021-03-13 13:05:47 -06:00
|
|
|
let predicates = match db.lookup_intern_impl_trait_id(opaque_ty.opaque_ty_id.into())
|
|
|
|
{
|
|
|
|
ImplTraitId::ReturnTypeImplTrait(func, idx) => {
|
2020-06-11 12:17:32 -05: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-03-14 10:33:27 -05:00
|
|
|
data.subst(&opaque_ty.substitution)
|
2020-06-11 12:17:32 -05:00
|
|
|
})
|
|
|
|
}
|
2020-09-10 07:01:23 -05:00
|
|
|
// It always has an parameter for Future::Output type.
|
2021-03-13 13:05:47 -06:00
|
|
|
ImplTraitId::AsyncBlockTypeImplTrait(..) => unreachable!(),
|
2020-06-11 12:17:32 -05:00
|
|
|
};
|
|
|
|
|
2020-06-11 15:06:58 -05:00
|
|
|
predicates.map(|it| it.value)
|
2020-06-11 12:17:32 -05:00
|
|
|
}
|
2021-03-13 12:47:34 -06:00
|
|
|
TyKind::Placeholder(idx) => {
|
|
|
|
let id = from_placeholder_idx(db, *idx);
|
2020-06-11 12:17:32 -05: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 15:06:58 -05:00
|
|
|
hir_def::generics::TypeParamProvenance::ArgumentImplTrait => {
|
2021-04-04 06:16:16 -05:00
|
|
|
let substs = TyBuilder::type_params_subst(db, id.parent);
|
2020-06-11 15:06:58 -05:00
|
|
|
let predicates = db
|
2021-03-20 14:07:36 -05:00
|
|
|
.generic_predicates(id.parent)
|
2020-06-11 15:06:58 -05:00
|
|
|
.into_iter()
|
2021-03-20 14:07:36 -05:00
|
|
|
.map(|pred| pred.clone().subst(&substs))
|
2021-03-21 11:40:14 -05:00
|
|
|
.filter(|wc| match &wc.skip_binders() {
|
2021-03-20 14:07:36 -05:00
|
|
|
WhereClause::Implemented(tr) => tr.self_type_parameter() == self,
|
|
|
|
WhereClause::AliasEq(AliasEq {
|
|
|
|
alias: AliasTy::Projection(proj),
|
|
|
|
ty: _,
|
|
|
|
}) => proj.self_type_parameter() == self,
|
|
|
|
_ => false,
|
|
|
|
})
|
2020-06-11 15:06:58 -05:00
|
|
|
.collect_vec();
|
|
|
|
|
|
|
|
Some(predicates)
|
|
|
|
}
|
2020-06-11 12:17:32 -05:00
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn associated_type_parent_trait(&self, db: &dyn HirDatabase) -> Option<TraitId> {
|
2021-04-03 06:08:29 -05:00
|
|
|
match self.kind(&Interner) {
|
2021-03-13 10:36:07 -06:00
|
|
|
TyKind::AssociatedType(id, ..) => {
|
|
|
|
match from_assoc_type_id(*id).lookup(db.upcast()).container {
|
2020-06-11 12:17:32 -05:00
|
|
|
AssocContainerId::TraitId(trait_id) => Some(trait_id),
|
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
2021-03-13 07:44:51 -06:00
|
|
|
TyKind::Alias(AliasTy::Projection(projection_ty)) => {
|
2021-03-14 10:30:02 -05:00
|
|
|
match from_assoc_type_id(projection_ty.associated_ty_id)
|
|
|
|
.lookup(db.upcast())
|
|
|
|
.container
|
2021-03-13 10:36:07 -06:00
|
|
|
{
|
2020-06-11 15:06:58 -05:00
|
|
|
AssocContainerId::TraitId(trait_id) => Some(trait_id),
|
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
2020-06-11 12:17:32 -05:00
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
2019-11-27 08:46:02 -06:00
|
|
|
}
|
|
|
|
|
2020-03-04 16:00:44 -06:00
|
|
|
#[derive(Copy, Clone, PartialEq, Eq, Debug, Hash)]
|
2021-03-13 13:05:47 -06:00
|
|
|
pub enum ImplTraitId {
|
2020-03-04 16:00:44 -06:00
|
|
|
ReturnTypeImplTrait(hir_def::FunctionId, u16),
|
2020-09-10 07:01:23 -05:00
|
|
|
AsyncBlockTypeImplTrait(hir_def::DefWithBodyId, ExprId),
|
2020-03-04 16:00:44 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone, PartialEq, Eq, Debug, Hash)]
|
|
|
|
pub struct ReturnTypeImplTraits {
|
2020-06-11 15:06:58 -05:00
|
|
|
pub(crate) impl_traits: Vec<ReturnTypeImplTrait>,
|
2020-03-04 16:00:44 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone, PartialEq, Eq, Debug, Hash)]
|
2020-06-11 15:06:58 -05:00
|
|
|
pub(crate) struct ReturnTypeImplTrait {
|
2021-03-21 07:22:22 -05:00
|
|
|
pub(crate) bounds: Binders<Vec<QuantifiedWhereClause>>,
|
2020-03-04 16:00:44 -06:00
|
|
|
}
|
2021-03-13 10:23:19 -06:00
|
|
|
|
2021-03-13 10:36:07 -06:00
|
|
|
pub fn to_foreign_def_id(id: TypeAliasId) -> ForeignDefId {
|
2021-03-13 10:23:19 -06:00
|
|
|
chalk_ir::ForeignDefId(salsa::InternKey::as_intern_id(&id))
|
|
|
|
}
|
|
|
|
|
2021-03-13 10:36:07 -06: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 10:23:19 -06:00
|
|
|
salsa::InternKey::from_intern_id(id.0)
|
|
|
|
}
|
2021-03-13 12:47:34 -06: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 15:53:19 -05: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)
|
|
|
|
}
|