rust/crates/hir_ty/src/lib.rs

1458 lines
46 KiB
Rust
Raw Normal View History

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;
mod chalk_cast;
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;
mod chalk_ext;
2019-11-27 08:46:02 -06:00
use std::{iter, mem, sync::Arc};
2019-11-27 08:46:02 -06:00
2021-02-28 12:13:37 -06:00
use base_db::salsa;
use chalk_ir::{
cast::{CastTo, Caster},
interner::HasInterner,
};
2019-11-27 08:46:02 -06:00
use hir_def::{
2021-03-13 12:27:09 -06:00
builtin_type::BuiltinType, expr::ExprId, type_ref::Rawness, AssocContainerId, FunctionId,
GenericDefId, HasModule, LifetimeParamId, Lookup, TraitId, TypeAliasId, TypeParamId,
2019-11-27 08:46:02 -06:00
};
2020-07-13 08:34:46 -05:00
use itertools::Itertools;
use smallvec::SmallVec;
2019-11-27 08:46:02 -06:00
use crate::{
db::HirDatabase,
2020-07-13 08:34:46 -05:00
display::HirDisplay,
utils::{generics, make_mut_slice, Generics},
2019-11-27 08:46:02 -06:00
};
pub use autoderef::autoderef;
pub use chalk_ext::TyExt;
pub use infer::{could_unify, InferenceResult, InferenceVar};
2020-01-24 08:22:00 -06:00
pub use lower::{
associated_type_shorthand_candidates, callable_item_sig, CallableDefId, ImplTraitLoweringMode,
TyDefId, TyLoweringContext, ValueTyDefId,
2020-01-24 08:22:00 -06:00
};
pub use traits::{AliasEq, DomainGoal, InEnvironment, TraitEnvironment};
2019-11-27 08:46:02 -06:00
pub use chalk_ir::{
cast::Cast, AdtId, BoundVar, DebruijnIndex, Mutability, Safety, Scalar, TyVariableKind,
};
2021-03-01 14:57:39 -06:00
pub use crate::traits::chalk::Interner;
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
pub type CanonicalVarKinds = chalk_ir::CanonicalVarKinds<Interner>;
2021-03-18 15:53:19 -05:00
pub type ChalkTraitId = chalk_ir::TraitId<Interner>;
2020-12-11 06:49:32 -06:00
#[derive(Clone, PartialEq, Eq, Debug, Hash)]
pub enum Lifetime {
Parameter(LifetimeParamId),
Static,
}
#[derive(Clone, PartialEq, Eq, Debug, Hash)]
pub struct OpaqueTy {
pub opaque_ty_id: OpaqueTyId,
2021-03-15 15:02:34 -05:00
pub substitution: Substitution,
}
impl TypeWalk for OpaqueTy {
fn walk(&self, f: &mut impl FnMut(&Ty)) {
self.substitution.walk(f);
}
fn walk_mut_binders(
&mut self,
f: &mut impl FnMut(&mut Ty, DebruijnIndex),
binders: DebruijnIndex,
) {
self.substitution.walk_mut_binders(f, binders);
}
}
2019-11-27 08:46:02 -06:00
/// A "projection" type corresponds to an (unnormalized)
/// projection like `<P0 as Trait<P1..Pn>>::Foo`. Note that the
/// trait and all its parameters are fully known.
#[derive(Clone, PartialEq, Eq, Debug, Hash)]
pub struct ProjectionTy {
pub associated_ty_id: AssocTypeId,
2021-03-15 15:02:34 -05:00
pub substitution: Substitution,
2019-11-27 08:46:02 -06:00
}
impl ProjectionTy {
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 {
&self.substitution.interned(&Interner)[0].assert_ty_ref(&Interner)
2021-03-20 09:26:42 -05:00
}
fn trait_(&self, db: &dyn HirDatabase) -> TraitId {
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"),
}
}
}
impl TypeWalk for ProjectionTy {
fn walk(&self, f: &mut impl FnMut(&Ty)) {
self.substitution.walk(f);
2019-11-27 08:46:02 -06:00
}
fn walk_mut_binders(
&mut self,
f: &mut impl FnMut(&mut Ty, DebruijnIndex),
binders: DebruijnIndex,
) {
self.substitution.walk_mut_binders(f, binders);
2019-11-27 08:46:02 -06:00
}
}
#[derive(Clone, PartialEq, Eq, Debug, Hash)]
pub struct DynTy {
/// The unknown self type.
pub bounds: Binders<QuantifiedWhereClauses>,
}
2021-03-14 10:30:02 -05:00
pub type FnSig = chalk_ir::FnSig<Interner>;
2021-02-28 15:12:07 -06:00
#[derive(Clone, PartialEq, Eq, Debug, Hash)]
pub struct FnPointer {
pub num_args: usize,
pub sig: FnSig,
2021-03-15 15:02:34 -05:00
pub substs: Substitution,
2021-02-28 15:12:07 -06:00
}
2021-03-01 07:24:00 -06:00
#[derive(Clone, PartialEq, Eq, Debug, Hash)]
pub enum AliasTy {
/// A "projection" type corresponds to an (unnormalized)
/// projection like `<P0 as Trait<P1..Pn>>::Foo`. Note that the
/// trait and all its parameters are fully known.
Projection(ProjectionTy),
/// An opaque type (`impl Trait`).
///
/// This is currently only used for return type impl trait; each instance of
/// `impl Trait` in a return type gets its own ID.
Opaque(OpaqueTy),
}
impl TypeWalk for AliasTy {
fn walk(&self, f: &mut impl FnMut(&Ty)) {
match self {
AliasTy::Projection(it) => it.walk(f),
AliasTy::Opaque(it) => it.walk(f),
}
}
fn walk_mut_binders(
&mut self,
f: &mut impl FnMut(&mut Ty, DebruijnIndex),
binders: DebruijnIndex,
) {
match self {
AliasTy::Projection(it) => it.walk_mut_binders(f, binders),
AliasTy::Opaque(it) => it.walk_mut_binders(f, binders),
}
}
}
2019-11-27 08:46:02 -06:00
/// A type.
///
/// See also the `TyKind` enum in rustc (librustc/ty/sty.rs), which represents
/// the same thing (but in a different way).
///
/// This should be cheap to clone.
#[derive(Clone, PartialEq, Eq, Debug, Hash)]
pub enum TyKind {
2021-02-28 12:13:37 -06:00
/// Structures, enumerations and unions.
2021-03-15 15:02:34 -05:00
Adt(AdtId<Interner>, Substitution),
2021-02-28 12:13:37 -06:00
/// Represents an associated item like `Iterator::Item`. This is used
/// when we have tried to normalize a projection like `T::Item` but
/// couldn't find a better representation. In that case, we generate
/// an **application type** like `(Iterator::Item)<T>`.
2021-03-15 15:02:34 -05:00
AssociatedType(AssocTypeId, Substitution),
2021-02-28 12:13:37 -06:00
/// a scalar type like `bool` or `u32`
Scalar(Scalar),
/// A tuple type. For example, `(i32, bool)`.
2021-03-15 15:02:34 -05:00
Tuple(usize, Substitution),
2021-02-28 12:13:37 -06:00
/// An array with the given length. Written as `[T; n]`.
Array(Ty),
2021-02-28 12:13:37 -06:00
/// The pointee of an array slice. Written as `[T]`.
Slice(Ty),
2021-02-28 12:13:37 -06:00
/// A raw pointer. Written as `*mut T` or `*const T`
Raw(Mutability, Ty),
2021-02-28 12:13:37 -06:00
/// A reference; a pointer with an associated lifetime. Written as
/// `&'a mut T` or `&'a T`.
Ref(Mutability, Ty),
2021-02-28 12:13:37 -06:00
/// This represents a placeholder for an opaque type in situations where we
/// don't know the hidden type (i.e. currently almost always). This is
/// analogous to the `AssociatedType` type constructor.
/// It is also used as the type of async block, with one type parameter
/// representing the Future::Output type.
2021-03-15 15:02:34 -05:00
OpaqueType(OpaqueTyId, Substitution),
2021-02-28 12:13:37 -06:00
/// The anonymous type of a function declaration/definition. Each
/// function has a unique type, which is output (for a function
/// named `foo` returning an `i32`) as `fn() -> i32 {foo}`.
///
/// This includes tuple struct / enum variant constructors as well.
///
/// For example the type of `bar` here:
///
/// ```
/// fn foo() -> i32 { 1 }
/// let bar = foo; // bar: fn() -> i32 {foo}
/// ```
2021-03-15 15:02:34 -05:00
FnDef(FnDefId, Substitution),
2021-02-28 12:13:37 -06:00
/// The pointee of a string slice. Written as `str`.
Str,
/// The never type `!`.
Never,
/// The type of a specific closure.
///
/// The closure signature is stored in a `FnPtr` type in the first type
/// parameter.
2021-03-15 15:02:34 -05:00
Closure(ClosureId, Substitution),
2021-02-28 12:13:37 -06:00
/// Represents a foreign type declared in external blocks.
2021-03-13 10:23:19 -06:00
ForeignType(ForeignDefId),
2021-02-28 12:13:37 -06:00
/// A pointer to a function. Written as `fn() -> i32`.
///
/// For example the type of `bar` here:
///
/// ```
/// fn foo() -> i32 { 1 }
/// let bar: fn() -> i32 = foo;
/// ```
2021-02-28 15:12:07 -06:00
Function(FnPointer),
2019-11-27 08:46:02 -06:00
2021-03-01 07:24:00 -06:00
/// An "alias" type represents some form of type alias, such as:
/// - An associated type projection like `<T as Iterator>::Item`
/// - `impl Trait` types
/// - Named type aliases like `type Foo<X> = Vec<X>`
Alias(AliasTy),
2020-02-07 11:17:23 -06:00
/// A placeholder for a type parameter; for example, `T` in `fn f<T>(x: T)
/// {}` when we're type-checking the body of that function. In this
/// situation, we know this stands for *some* type, but don't know the exact
/// type.
2021-03-13 12:47:34 -06:00
Placeholder(PlaceholderIndex),
2019-11-27 08:46:02 -06:00
2020-02-07 11:17:23 -06:00
/// A bound type variable. This is used in various places: when representing
/// some polymorphic type like the type of function `fn f<T>`, the type
/// parameters get turned into variables; during trait resolution, inference
/// variables get turned into bound variables and back; and in `Dyn` the
/// `Self` type is represented with a bound variable as well.
2021-03-01 07:24:00 -06:00
BoundVar(BoundVar),
2019-11-27 08:46:02 -06:00
2020-02-07 11:17:23 -06:00
/// A type variable used during type checking.
InferenceVar(InferenceVar, TyVariableKind),
2019-11-27 08:46:02 -06:00
/// A trait object (`dyn Trait` or bare `Trait` in pre-2018 Rust).
///
/// The predicates are quantified over the `Self` type, i.e. `Ty::Bound(0)`
/// represents the `Self` type inside the bounds. This is currently
/// implicit; Chalk has the `Binders` struct to make it explicit, but it
/// didn't seem worth the overhead yet.
Dyn(DynTy),
2019-11-27 08:46:02 -06:00
/// 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
/// 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.
Unknown,
}
#[derive(Clone, PartialEq, Eq, Debug, Hash)]
pub struct Ty(Arc<TyKind>);
impl TyKind {
pub fn intern(self, _interner: &Interner) -> Ty {
Ty(Arc::new(self))
}
}
impl Ty {
pub fn kind(&self, _interner: &Interner) -> &TyKind {
&self.0
}
pub fn interned_mut(&mut self) -> &mut TyKind {
Arc::make_mut(&mut self.0)
}
pub fn into_inner(self) -> TyKind {
Arc::try_unwrap(self.0).unwrap_or_else(|a| (*a).clone())
}
}
#[derive(Clone, PartialEq, Eq, Debug, Hash)]
pub struct GenericArg {
interned: GenericArgData,
}
#[derive(Clone, PartialEq, Eq, Debug, Hash)]
pub enum GenericArgData {
Ty(Ty),
}
impl GenericArg {
/// Constructs a generic argument using `GenericArgData`.
pub fn new(_interner: &Interner, data: GenericArgData) -> Self {
GenericArg { interned: data }
}
/// Gets the interned value.
pub fn interned(&self) -> &GenericArgData {
&self.interned
}
/// Asserts that this is a type argument.
pub fn assert_ty_ref(&self, interner: &Interner) -> &Ty {
self.ty(interner).unwrap()
}
/// Checks whether the generic argument is a type.
pub fn is_ty(&self, _interner: &Interner) -> bool {
match self.interned() {
GenericArgData::Ty(_) => true,
}
}
/// Returns the type if it is one, `None` otherwise.
pub fn ty(&self, _interner: &Interner) -> Option<&Ty> {
match self.interned() {
GenericArgData::Ty(t) => Some(t),
}
}
}
impl TypeWalk for GenericArg {
fn walk(&self, f: &mut impl FnMut(&Ty)) {
match &self.interned {
GenericArgData::Ty(ty) => {
ty.walk(f);
}
}
}
fn walk_mut_binders(
&mut self,
f: &mut impl FnMut(&mut Ty, DebruijnIndex),
binders: DebruijnIndex,
) {
match &mut self.interned {
GenericArgData::Ty(ty) => {
ty.walk_mut_binders(f, binders);
}
}
}
}
2019-11-27 08:46:02 -06:00
/// A list of substitutions for generic parameters.
#[derive(Clone, PartialEq, Eq, Debug, Hash)]
pub struct Substitution(SmallVec<[GenericArg; 2]>);
2019-11-27 08:46:02 -06:00
2021-03-15 15:02:34 -05:00
impl TypeWalk for Substitution {
2019-11-27 08:46:02 -06:00
fn walk(&self, f: &mut impl FnMut(&Ty)) {
for t in self.0.iter() {
t.walk(f);
}
}
fn walk_mut_binders(
&mut self,
f: &mut impl FnMut(&mut Ty, DebruijnIndex),
binders: DebruijnIndex,
) {
for t in &mut self.0 {
2019-11-27 08:46:02 -06:00
t.walk_mut_binders(f, binders);
}
}
}
2021-03-15 15:02:34 -05:00
impl Substitution {
pub fn interned(&self, _: &Interner) -> &[GenericArg] {
&self.0
}
pub fn len(&self, _: &Interner) -> usize {
self.0.len()
}
pub fn is_empty(&self, _: &Interner) -> bool {
self.0.is_empty()
}
pub fn at(&self, _: &Interner, i: usize) -> &GenericArg {
&self.0[i]
}
pub fn empty(_: &Interner) -> Substitution {
2021-03-15 15:02:34 -05:00
Substitution(SmallVec::new())
2019-11-27 08:46:02 -06:00
}
pub fn iter(&self, _: &Interner) -> std::slice::Iter<'_, GenericArg> {
self.0.iter()
}
2021-03-15 15:02:34 -05:00
pub fn single(ty: Ty) -> Substitution {
Substitution({
let mut v = SmallVec::new();
v.push(ty.cast(&Interner));
v
})
2019-11-27 08:46:02 -06:00
}
2021-03-15 15:02:34 -05:00
pub fn prefix(&self, n: usize) -> Substitution {
Substitution(self.0[..std::cmp::min(self.0.len(), 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 {
Substitution(self.0[self.0.len() - std::cmp::min(self.0.len(), n)..].into())
}
pub fn from_iter(
interner: &Interner,
elements: impl IntoIterator<Item = impl CastTo<GenericArg>>,
) -> Self {
Substitution(elements.into_iter().casted(interner).collect())
}
2019-11-27 08:46:02 -06:00
/// Return Substs that replace each parameter by itself (i.e. `Ty::Param`).
2021-03-13 12:47:34 -06:00
pub(crate) fn type_params_for_generics(
db: &dyn HirDatabase,
generic_params: &Generics,
2021-03-15 15:02:34 -05:00
) -> Substitution {
Substitution::from_iter(
&Interner,
generic_params
.iter()
.map(|(id, _)| TyKind::Placeholder(to_placeholder_idx(db, id)).intern(&Interner)),
)
2019-11-27 08:46:02 -06:00
}
2020-02-04 14:33:03 -06:00
/// Return Substs that replace each parameter by itself (i.e. `Ty::Param`).
2021-03-15 15:02:34 -05:00
pub fn type_params(db: &dyn HirDatabase, def: impl Into<GenericDefId>) -> Substitution {
let params = generics(db.upcast(), def.into());
2021-03-15 15:02:34 -05:00
Substitution::type_params_for_generics(db, &params)
2020-02-04 14:33:03 -06:00
}
2019-11-27 08:46:02 -06:00
/// Return Substs that replace each parameter by a bound variable.
2021-03-15 15:02:34 -05:00
pub(crate) fn bound_vars(generic_params: &Generics, debruijn: DebruijnIndex) -> Substitution {
Substitution::from_iter(
&Interner,
generic_params
.iter()
.enumerate()
.map(|(idx, _)| TyKind::BoundVar(BoundVar::new(debruijn, idx)).intern(&Interner)),
)
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)
}
#[derive(Copy, Clone, PartialEq, Eq, Debug, Hash)]
pub struct Binders<T> {
pub num_binders: usize,
pub value: T,
}
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 }
}
pub fn wrap_empty(value: T) -> Self
where
T: TypeWalk,
{
Self { num_binders: 0, value: value.shift_bound_vars(DebruijnIndex::ONE) }
}
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)? })
}
pub fn skip_binders(&self) -> &T {
&self.value
}
pub fn into_value_and_skipped_binders(self) -> (T, usize) {
(self.value, self.num_binders)
}
}
impl<T: Clone> Binders<&T> {
pub fn cloned(&self) -> Binders<T> {
Binders { num_binders: self.num_binders, value: self.value.clone() }
}
}
impl<T: TypeWalk> Binders<T> {
/// Substitutes all variables.
2021-03-15 15:02:34 -05:00
pub fn subst(self, subst: &Substitution) -> T {
assert_eq!(subst.len(&Interner), self.num_binders);
self.value.subst_bound_vars(subst)
}
}
impl<T: TypeWalk> TypeWalk for Binders<T> {
fn walk(&self, f: &mut impl FnMut(&Ty)) {
self.value.walk(f);
}
fn walk_mut_binders(
&mut self,
f: &mut impl FnMut(&mut Ty, DebruijnIndex),
binders: DebruijnIndex,
) {
self.value.walk_mut_binders(f, binders.shifted_in())
}
}
2019-11-27 08:46:02 -06:00
/// A trait with type parameters. This includes the `Self`, so this represents a concrete type implementing the trait.
#[derive(Clone, PartialEq, Eq, Debug, Hash)]
pub struct TraitRef {
2021-03-18 15:53:19 -05:00
pub trait_id: ChalkTraitId,
pub substitution: Substitution,
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 {
&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
}
}
impl TypeWalk for TraitRef {
fn walk(&self, f: &mut impl FnMut(&Ty)) {
2021-03-18 15:53:19 -05:00
self.substitution.walk(f);
2019-11-27 08:46:02 -06:00
}
fn walk_mut_binders(
&mut self,
f: &mut impl FnMut(&mut Ty, DebruijnIndex),
binders: DebruijnIndex,
) {
2021-03-18 15:53:19 -05:00
self.substitution.walk_mut_binders(f, binders);
2019-11-27 08:46:02 -06:00
}
}
/// Like `generics::WherePredicate`, but with resolved types: A condition on the
/// parameters of a generic item.
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
2021-03-20 04:46:36 -05:00
pub enum WhereClause {
2019-11-27 08:46:02 -06:00
/// The given trait needs to be implemented for its type parameters.
Implemented(TraitRef),
/// An associated type bindings like in `Iterator<Item = T>`.
AliasEq(AliasEq),
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
}
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), .. }) => {
Some(proj.trait_ref(db))
}
WhereClause::AliasEq(_) => None,
2019-11-27 08:46:02 -06:00
}
}
}
2021-03-20 04:46:36 -05:00
impl TypeWalk for WhereClause {
2019-11-27 08:46:02 -06:00
fn walk(&self, f: &mut impl FnMut(&Ty)) {
match self {
2021-03-20 04:46:36 -05:00
WhereClause::Implemented(trait_ref) => trait_ref.walk(f),
WhereClause::AliasEq(alias_eq) => alias_eq.walk(f),
2019-11-27 08:46:02 -06:00
}
}
fn walk_mut_binders(
&mut self,
f: &mut impl FnMut(&mut Ty, DebruijnIndex),
binders: DebruijnIndex,
) {
2019-11-27 08:46:02 -06:00
match self {
2021-03-20 04:46:36 -05:00
WhereClause::Implemented(trait_ref) => trait_ref.walk_mut_binders(f, binders),
WhereClause::AliasEq(alias_eq) => alias_eq.walk_mut_binders(f, binders),
2019-11-27 08:46:02 -06:00
}
}
}
pub type QuantifiedWhereClause = Binders<WhereClause>;
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub struct QuantifiedWhereClauses(Arc<[QuantifiedWhereClause]>);
impl QuantifiedWhereClauses {
pub fn from_iter(
_interner: &Interner,
elements: impl IntoIterator<Item = QuantifiedWhereClause>,
) -> Self {
QuantifiedWhereClauses(elements.into_iter().collect())
}
pub fn interned(&self) -> &Arc<[QuantifiedWhereClause]> {
&self.0
}
}
2019-11-27 08:46:02 -06:00
/// Basically a claim (currently not validated / checked) that the contained
/// type / trait ref contains no inference variables; any inference variables it
/// contained have been replaced by bound variables, and `kinds` tells us how
/// many there are and whether they were normal or float/int variables. This is
/// used to erase irrelevant differences between types before using them in
/// queries.
2019-11-27 08:46:02 -06:00
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub struct Canonical<T> {
pub value: T,
pub binders: CanonicalVarKinds,
}
impl<T> Canonical<T> {
pub fn new(value: T, kinds: impl IntoIterator<Item = TyVariableKind>) -> Self {
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) }
}
}
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
}
/// A polymorphic function signature.
2021-02-28 15:12:07 -06:00
pub type PolyFnSig = Binders<CallableSig>;
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)
.interned(&Interner)
.iter()
.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-02-28 15:12:07 -06:00
impl TypeWalk for CallableSig {
2019-11-27 08:46:02 -06:00
fn walk(&self, f: &mut impl FnMut(&Ty)) {
for t in self.params_and_return.iter() {
t.walk(f);
}
}
fn walk_mut_binders(
&mut self,
f: &mut impl FnMut(&mut Ty, DebruijnIndex),
binders: DebruijnIndex,
) {
2019-11-27 08:46:02 -06:00
for t in make_mut_slice(&mut self.params_and_return) {
t.walk_mut_binders(f, binders);
}
}
}
2021-04-03 14:29:49 -05:00
pub struct TyBuilder<D> {
data: D,
vec: SmallVec<[GenericArg; 2]>,
param_count: usize,
}
impl<D> TyBuilder<D> {
fn new(data: D, param_count: usize) -> TyBuilder<D> {
TyBuilder { data, param_count, vec: SmallVec::with_capacity(param_count) }
}
fn build_internal(self) -> (D, Substitution) {
assert_eq!(self.vec.len(), self.param_count);
// FIXME: would be good to have a way to construct a chalk_ir::Substitution from the interned form
let subst = Substitution(self.vec);
(self.data, subst)
}
pub fn push(mut self, arg: impl CastTo<GenericArg>) -> Self {
self.vec.push(arg.cast(&Interner));
self
}
fn remaining(&self) -> usize {
self.param_count - self.vec.len()
}
2021-04-03 13:14:21 -05:00
2021-04-03 14:29:49 -05:00
pub fn fill_with_bound_vars(self, debruijn: DebruijnIndex, starting_from: usize) -> Self {
self.fill(
(starting_from..)
.map(|idx| TyKind::BoundVar(BoundVar::new(debruijn, idx)).intern(&Interner)),
)
}
pub fn fill_with_unknown(self) -> Self {
self.fill(iter::repeat(TyKind::Unknown.intern(&Interner)))
}
pub fn fill(mut self, filler: impl Iterator<Item = impl CastTo<GenericArg>>) -> Self {
self.vec.extend(filler.take(self.remaining()).casted(&Interner));
assert_eq!(self.remaining(), 0);
self
}
pub fn use_parent_substs(mut self, parent_substs: &Substitution) -> Self {
assert!(self.vec.is_empty());
assert!(parent_substs.len(&Interner) <= self.param_count);
self.vec.extend(parent_substs.iter(&Interner).cloned());
self
}
}
impl TyBuilder<()> {
pub fn unit() -> Ty {
TyKind::Tuple(0, Substitution::empty(&Interner)).intern(&Interner)
2019-11-27 08:46:02 -06:00
}
2021-03-01 14:57:39 -06:00
2021-04-03 13:27:57 -05:00
pub fn fn_ptr(sig: CallableSig) -> Ty {
TyKind::Function(FnPointer {
2021-02-28 15:12:07 -06:00
num_args: sig.params().len(),
2021-03-14 10:30:02 -05:00
sig: FnSig { abi: (), safety: Safety::Safe, variadic: sig.is_varargs },
2021-03-15 15:02:34 -05:00
substs: Substitution::from_iter(&Interner, sig.params_and_return.iter().cloned()),
2021-02-28 15:12:07 -06:00
})
.intern(&Interner)
}
2021-04-03 14:32:22 -05:00
pub fn builtin(builtin: BuiltinType) -> Ty {
match builtin {
BuiltinType::Char => TyKind::Scalar(Scalar::Char).intern(&Interner),
BuiltinType::Bool => TyKind::Scalar(Scalar::Bool).intern(&Interner),
BuiltinType::Str => TyKind::Str.intern(&Interner),
BuiltinType::Int(t) => {
TyKind::Scalar(Scalar::Int(primitive::int_ty_from_builtin(t))).intern(&Interner)
}
BuiltinType::Uint(t) => {
TyKind::Scalar(Scalar::Uint(primitive::uint_ty_from_builtin(t))).intern(&Interner)
}
BuiltinType::Float(t) => {
TyKind::Scalar(Scalar::Float(primitive::float_ty_from_builtin(t))).intern(&Interner)
}
}
}
pub fn subst_for_def(db: &dyn HirDatabase, def: impl Into<GenericDefId>) -> TyBuilder<()> {
let def = def.into();
let params = generics(db.upcast(), def);
let param_count = params.len();
TyBuilder::new((), param_count)
}
pub fn build(self) -> Substitution {
let ((), subst) = self.build_internal();
subst
}
2021-04-03 13:27:57 -05:00
}
2021-04-03 14:29:49 -05:00
impl TyBuilder<hir_def::AdtId> {
pub fn adt(db: &dyn HirDatabase, adt: hir_def::AdtId) -> TyBuilder<hir_def::AdtId> {
let generics = generics(db.upcast(), adt.into());
let param_count = generics.len();
TyBuilder::new(adt, param_count)
}
pub fn fill_with_defaults(
mut self,
db: &dyn HirDatabase,
mut fallback: impl FnMut() -> Ty,
) -> Self {
let defaults = db.generic_defaults(self.data.into());
for default_ty in defaults.iter().skip(self.vec.len()) {
if default_ty.skip_binders().is_unknown() {
self.vec.push(fallback().cast(&Interner));
} else {
// each default can depend on the previous parameters
let subst_so_far = Substitution(self.vec.clone());
self.vec.push(default_ty.clone().subst(&subst_so_far).cast(&Interner));
}
}
self
}
pub fn build(self) -> Ty {
let (adt, subst) = self.build_internal();
TyKind::Adt(AdtId(adt), subst).intern(&Interner)
2021-04-03 13:27:57 -05:00
}
2021-04-03 14:29:49 -05:00
}
2021-02-28 12:13:37 -06:00
struct Tuple(usize);
impl TyBuilder<Tuple> {
pub fn tuple(size: usize) -> TyBuilder<Tuple> {
TyBuilder::new(Tuple(size), size)
}
pub fn build(self) -> Ty {
let (Tuple(size), subst) = self.build_internal();
TyKind::Tuple(size, subst).intern(&Interner)
}
}
impl TyBuilder<TraitId> {
pub fn trait_ref(db: &dyn HirDatabase, trait_id: TraitId) -> TyBuilder<TraitId> {
let generics = generics(db.upcast(), trait_id.into());
let param_count = generics.len();
TyBuilder::new(trait_id, param_count)
}
pub fn build(self) -> TraitRef {
let (trait_id, substitution) = self.build_internal();
TraitRef { trait_id: to_chalk_trait_id(trait_id), substitution }
}
}
impl TyBuilder<TypeAliasId> {
pub fn assoc_type_projection(
db: &dyn HirDatabase,
type_alias: TypeAliasId,
) -> TyBuilder<TypeAliasId> {
let generics = generics(db.upcast(), type_alias.into());
let param_count = generics.len();
TyBuilder::new(type_alias, param_count)
}
pub fn build(self) -> ProjectionTy {
let (type_alias, substitution) = self.build_internal();
ProjectionTy { associated_ty_id: to_assoc_type_id(type_alias), substitution }
}
}
impl<T: TypeWalk + HasInterner<Interner = Interner>> TyBuilder<Binders<T>> {
fn subst_binders(b: Binders<T>) -> Self {
let param_count = b.num_binders;
TyBuilder::new(b, param_count)
}
pub fn build(self) -> T {
let (b, subst) = self.build_internal();
b.subst(&subst)
}
}
impl TyBuilder<Binders<Ty>> {
pub fn def_ty(db: &dyn HirDatabase, def: TyDefId) -> TyBuilder<Binders<Ty>> {
TyBuilder::subst_binders(db.ty(def.into()))
}
pub fn impl_self_ty(db: &dyn HirDatabase, def: hir_def::ImplId) -> TyBuilder<Binders<Ty>> {
TyBuilder::subst_binders(db.impl_self_ty(def))
}
pub fn value_ty(db: &dyn HirDatabase, def: ValueTyDefId) -> TyBuilder<Binders<Ty>> {
TyBuilder::subst_binders(db.value_ty(def))
}
}
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)> {
match self.kind(&Interner) {
TyKind::Ref(mutability, ty) => Some((ty, *mutability)),
2019-11-27 08:46:02 -06:00
_ => None,
}
}
pub fn as_reference_or_ptr(&self) -> Option<(&Ty, Rawness, Mutability)> {
match self.kind(&Interner) {
TyKind::Ref(mutability, ty) => Some((ty, Rawness::Ref, *mutability)),
TyKind::Raw(mutability, ty) => Some((ty, Rawness::RawPtr, *mutability)),
_ => None,
}
}
pub fn strip_references(&self) -> &Ty {
let mut t: &Ty = self;
while let TyKind::Ref(_mutability, ty) = t.kind(&Interner) {
t = ty;
}
t
}
2021-03-15 15:02:34 -05:00
pub fn as_adt(&self) -> Option<(hir_def::AdtId, &Substitution)> {
match self.kind(&Interner) {
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> {
match self.kind(&Interner) {
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> {
match *self.kind(&Interner) {
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,
}
}
pub fn is_never(&self) -> bool {
matches!(self.kind(&Interner), TyKind::Never)
}
pub fn is_unknown(&self) -> bool {
matches!(self.kind(&Interner), TyKind::Unknown)
}
2021-02-28 12:13:37 -06:00
pub fn equals_ctor(&self, other: &Ty) -> bool {
match (self.kind(&Interner), other.kind(&Interner)) {
(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,
(TyKind::Ref(mutability, ..), TyKind::Ref(mutability2, ..))
| (TyKind::Raw(mutability, ..), TyKind::Raw(mutability2, ..)) => {
mutability == mutability2
}
2021-02-28 12:13:37 -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,
(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.
fn dyn_trait_ref(&self) -> Option<&TraitRef> {
match self.kind(&Interner) {
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> {
match self.kind(&Interner) {
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> {
match self.kind(&Interner) {
2021-03-13 10:55:50 -06:00
&TyKind::FnDef(def, ..) => Some(db.lookup_intern_callable_def(def.into())),
_ => 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> {
match self.kind(&Interner) {
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(&parameters))
}
TyKind::Closure(.., substs) => {
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> {
match self.kind(&Interner) {
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> {
match self.interned_mut() {
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,
}
}
pub fn impl_trait_bounds(&self, db: &dyn HirDatabase) -> Option<Vec<QuantifiedWhereClause>> {
match self.kind(&Interner) {
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) => {
let krate = def.module(db.upcast()).krate();
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())
{
// This is only used by type walking.
// Parameters will be walked outside, and projection predicate is not used.
// So just provide the Future trait.
let impl_bound = Binders::new(
0,
WhereClause::Implemented(TraitRef {
trait_id: to_chalk_trait_id(future_trait),
substitution: Substitution::empty(&Interner),
}),
);
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
}
}
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 => {
let substs = Substitution::type_params(db, id.parent);
2020-06-11 15:06:58 -05:00
let predicates = db
.generic_predicates(id.parent)
2020-06-11 15:06:58 -05:00
.into_iter()
.map(|pred| pred.clone().subst(&substs))
.filter(|wc| match &wc.skip_binders() {
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> {
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,
}
}
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
}
/// This allows walking structures that contain types to do something with those
/// types, similar to Chalk's `Fold` trait.
pub trait TypeWalk {
fn walk(&self, f: &mut impl FnMut(&Ty));
fn walk_mut(&mut self, f: &mut impl FnMut(&mut Ty)) {
self.walk_mut_binders(&mut |ty, _binders| f(ty), DebruijnIndex::INNERMOST);
2019-11-27 08:46:02 -06:00
}
/// Walk the type, counting entered binders.
///
/// `TyKind::Bound` variables use DeBruijn indexing, which means that 0 refers
2019-11-27 08:46:02 -06:00
/// to the innermost binder, 1 to the next, etc.. So when we want to
/// substitute a certain bound variable, we can't just walk the whole type
/// and blindly replace each instance of a certain index; when we 'enter'
/// things that introduce new bound variables, we have to keep track of
/// that. Currently, the only thing that introduces bound variables on our
/// side are `TyKind::Dyn` and `TyKind::Opaque`, which each introduce a bound
2019-11-27 08:46:02 -06:00
/// variable for the self type.
fn walk_mut_binders(
&mut self,
f: &mut impl FnMut(&mut Ty, DebruijnIndex),
binders: DebruijnIndex,
);
fn fold_binders(
mut self,
f: &mut impl FnMut(Ty, DebruijnIndex) -> Ty,
binders: DebruijnIndex,
) -> Self
where
Self: Sized,
{
self.walk_mut_binders(
&mut |ty_mut, binders| {
let ty = mem::replace(ty_mut, TyKind::Unknown.intern(&Interner));
*ty_mut = f(ty, binders);
},
binders,
);
self
}
2019-11-27 08:46:02 -06:00
fn fold(mut self, f: &mut impl FnMut(Ty) -> Ty) -> Self
where
Self: Sized,
{
self.walk_mut(&mut |ty_mut| {
let ty = mem::replace(ty_mut, TyKind::Unknown.intern(&Interner));
2019-11-27 08:46:02 -06:00
*ty_mut = f(ty);
});
self
}
/// Substitutes `TyKind::Bound` vars with the given substitution.
2021-03-15 15:02:34 -05:00
fn subst_bound_vars(self, substs: &Substitution) -> Self
where
Self: Sized,
{
self.subst_bound_vars_at_depth(substs, DebruijnIndex::INNERMOST)
}
/// Substitutes `TyKind::Bound` vars with the given substitution.
2021-03-15 15:02:34 -05:00
fn subst_bound_vars_at_depth(mut self, substs: &Substitution, depth: DebruijnIndex) -> Self
2019-11-27 08:46:02 -06:00
where
Self: Sized,
{
self.walk_mut_binders(
2020-02-18 07:32:19 -06:00
&mut |ty, binders| {
if let &mut TyKind::BoundVar(bound) = ty.interned_mut() {
if bound.debruijn >= binders {
*ty = substs.0[bound.index]
.assert_ty_ref(&Interner)
.clone()
.shift_bound_vars(binders);
2019-11-27 08:46:02 -06:00
}
}
},
depth,
2019-11-27 08:46:02 -06:00
);
self
}
/// Shifts up debruijn indices of `TyKind::Bound` vars by `n`.
fn shift_bound_vars(self, n: DebruijnIndex) -> Self
2019-11-27 08:46:02 -06:00
where
Self: Sized,
{
self.fold_binders(
&mut |ty, binders| match ty.kind(&Interner) {
TyKind::BoundVar(bound) if bound.debruijn >= binders => {
TyKind::BoundVar(bound.shifted_in_from(n)).intern(&Interner)
}
_ => ty,
},
DebruijnIndex::INNERMOST,
)
2019-11-27 08:46:02 -06:00
}
2021-03-24 17:07:54 -05:00
/// Shifts debruijn indices of `TyKind::Bound` vars out (down) by `n`.
fn shift_bound_vars_out(self, n: DebruijnIndex) -> Self
where
Self: Sized + std::fmt::Debug,
{
self.fold_binders(
&mut |ty, binders| match ty.kind(&Interner) {
2021-03-24 17:07:54 -05:00
TyKind::BoundVar(bound) if bound.debruijn >= binders => {
TyKind::BoundVar(bound.shifted_out_to(n).unwrap_or(bound.clone()))
.intern(&Interner)
}
_ => ty,
},
DebruijnIndex::INNERMOST,
)
}
2019-11-27 08:46:02 -06:00
}
impl TypeWalk for Ty {
fn walk(&self, f: &mut impl FnMut(&Ty)) {
match self.kind(&Interner) {
TyKind::Alias(AliasTy::Projection(p_ty)) => {
for t in p_ty.substitution.iter(&Interner) {
2019-11-27 08:46:02 -06:00
t.walk(f);
}
}
TyKind::Alias(AliasTy::Opaque(o_ty)) => {
for t in o_ty.substitution.iter(&Interner) {
2021-03-01 07:24:00 -06:00
t.walk(f);
}
}
TyKind::Dyn(dyn_ty) => {
for p in dyn_ty.bounds.value.interned().iter() {
2019-11-27 08:46:02 -06:00
p.walk(f);
}
}
TyKind::Slice(ty) | TyKind::Array(ty) | TyKind::Ref(_, ty) | TyKind::Raw(_, ty) => {
ty.walk(f);
}
2021-02-28 12:13:37 -06:00
_ => {
if let Some(substs) = self.substs() {
for t in substs.iter(&Interner) {
2021-02-28 12:13:37 -06:00
t.walk(f);
}
}
}
2019-11-27 08:46:02 -06:00
}
f(self);
}
fn walk_mut_binders(
&mut self,
f: &mut impl FnMut(&mut Ty, DebruijnIndex),
binders: DebruijnIndex,
) {
match self.interned_mut() {
TyKind::Alias(AliasTy::Projection(p_ty)) => {
p_ty.substitution.walk_mut_binders(f, binders);
2019-11-27 08:46:02 -06:00
}
TyKind::Dyn(dyn_ty) => {
for p in make_mut_slice(&mut dyn_ty.bounds.value.0) {
p.walk_mut_binders(f, binders.shifted_in());
2019-11-27 08:46:02 -06:00
}
}
TyKind::Alias(AliasTy::Opaque(o_ty)) => {
2021-03-14 10:33:27 -05:00
o_ty.substitution.walk_mut_binders(f, binders);
}
TyKind::Slice(ty) | TyKind::Array(ty) | TyKind::Ref(_, ty) | TyKind::Raw(_, ty) => {
ty.walk_mut_binders(f, binders);
}
2021-02-28 12:13:37 -06:00
_ => {
if let Some(substs) = self.substs_mut() {
substs.walk_mut_binders(f, binders);
}
}
2019-11-27 08:46:02 -06:00
}
f(self, binders);
}
}
impl<T: TypeWalk> TypeWalk for Vec<T> {
fn walk(&self, f: &mut impl FnMut(&Ty)) {
for t in self {
t.walk(f);
}
}
fn walk_mut_binders(
&mut self,
f: &mut impl FnMut(&mut Ty, DebruijnIndex),
binders: DebruijnIndex,
) {
for t in self {
t.walk_mut_binders(f, binders);
}
}
}
#[derive(Copy, Clone, PartialEq, Eq, Debug, Hash)]
2021-03-13 13:05:47 -06:00
pub enum ImplTraitId {
ReturnTypeImplTrait(hir_def::FunctionId, u16),
2020-09-10 07:01:23 -05:00
AsyncBlockTypeImplTrait(hir_def::DefWithBodyId, ExprId),
}
#[derive(Clone, PartialEq, Eq, Debug, Hash)]
pub struct ReturnTypeImplTraits {
2020-06-11 15:06:58 -05:00
pub(crate) impl_traits: Vec<ReturnTypeImplTrait>,
}
#[derive(Clone, PartialEq, Eq, Debug, Hash)]
2020-06-11 15:06:58 -05:00
pub(crate) struct ReturnTypeImplTrait {
pub(crate) bounds: Binders<Vec<QuantifiedWhereClause>>,
}
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)
}