2019-02-23 08:24:07 -06:00
|
|
|
//! Methods for lowering the HIR to types. There are two main cases here:
|
|
|
|
//!
|
|
|
|
//! - Lowering a type reference like `&usize` or `Option<foo::bar::Baz>` to a
|
|
|
|
//! type: The entry point for this is `Ty::from_hir`.
|
|
|
|
//! - Building the type for an item: This happens through the `type_for_def` query.
|
|
|
|
//!
|
|
|
|
//! This usually involves resolving names, collecting generic arguments etc.
|
2019-04-09 15:04:59 -05:00
|
|
|
use std::iter;
|
2019-07-04 15:05:17 -05:00
|
|
|
use std::sync::Arc;
|
2019-02-23 08:24:07 -06:00
|
|
|
|
2020-04-10 15:05:46 -05:00
|
|
|
use smallvec::SmallVec;
|
|
|
|
|
2019-10-30 09:28:30 -05:00
|
|
|
use hir_def::{
|
2020-02-15 15:12:48 -06:00
|
|
|
adt::StructKind,
|
2019-11-26 05:35:23 -06:00
|
|
|
builtin_type::BuiltinType,
|
2020-02-02 10:11:54 -06:00
|
|
|
generics::{TypeParamProvenance, WherePredicate, WherePredicateTarget},
|
2019-12-18 10:41:33 -06:00
|
|
|
path::{GenericArg, Path, PathSegment, PathSegments},
|
2019-11-21 06:39:09 -06:00
|
|
|
resolver::{HasResolver, Resolver, TypeNs},
|
2019-10-30 09:28:30 -05:00
|
|
|
type_ref::{TypeBound, TypeRef},
|
2020-02-14 12:16:42 -06:00
|
|
|
AdtId, AssocContainerId, ConstId, EnumId, EnumVariantId, FunctionId, GenericDefId, HasModule,
|
2020-04-25 07:23:34 -05:00
|
|
|
ImplId, LocalFieldId, Lookup, StaticId, StructId, TraitId, TypeAliasId, TypeParamId, UnionId,
|
|
|
|
VariantId,
|
2019-10-30 09:28:30 -05:00
|
|
|
};
|
2019-11-24 14:48:39 -06:00
|
|
|
use ra_arena::map::ArenaMap;
|
2019-11-25 07:26:52 -06:00
|
|
|
use ra_db::CrateId;
|
2019-10-30 09:24:36 -05:00
|
|
|
|
2019-02-23 08:24:07 -06:00
|
|
|
use crate::{
|
2019-09-08 01:53:49 -05:00
|
|
|
db::HirDatabase,
|
2019-11-27 08:46:02 -06:00
|
|
|
primitive::{FloatTy, IntTy},
|
2019-11-27 13:12:09 -06:00
|
|
|
utils::{
|
2020-04-26 09:56:25 -05:00
|
|
|
all_super_trait_refs, associated_type_by_name_including_super_traits, generics,
|
|
|
|
make_mut_slice, variant_data,
|
2019-11-27 13:12:09 -06:00
|
|
|
},
|
2020-04-05 11:24:18 -05:00
|
|
|
Binders, BoundVar, DebruijnIndex, FnSig, GenericPredicate, PolyFnSig, ProjectionPredicate,
|
2020-04-26 09:56:25 -05:00
|
|
|
ProjectionTy, Substs, TraitEnvironment, TraitRef, Ty, TypeCtor, TypeWalk,
|
2019-02-23 08:24:07 -06:00
|
|
|
};
|
|
|
|
|
2020-01-25 16:38:33 -06:00
|
|
|
#[derive(Debug)]
|
2020-03-13 10:05:46 -05:00
|
|
|
pub struct TyLoweringContext<'a> {
|
|
|
|
pub db: &'a dyn HirDatabase,
|
2020-01-24 07:32:47 -06:00
|
|
|
pub resolver: &'a Resolver,
|
2020-04-17 15:48:29 -05:00
|
|
|
in_binders: DebruijnIndex,
|
2020-01-25 16:38:33 -06:00
|
|
|
/// Note: Conceptually, it's thinkable that we could be in a location where
|
2020-02-02 06:43:04 -06:00
|
|
|
/// some type params should be represented as placeholders, and others
|
|
|
|
/// should be converted to variables. I think in practice, this isn't
|
|
|
|
/// possible currently, so this should be fine for now.
|
2020-01-25 16:38:33 -06:00
|
|
|
pub type_param_mode: TypeParamLoweringMode,
|
2020-01-24 08:22:00 -06:00
|
|
|
pub impl_trait_mode: ImplTraitLoweringMode,
|
2020-01-25 16:38:33 -06:00
|
|
|
pub impl_trait_counter: std::cell::Cell<u16>,
|
2020-01-24 08:22:00 -06:00
|
|
|
}
|
|
|
|
|
2020-03-13 10:05:46 -05:00
|
|
|
impl<'a> TyLoweringContext<'a> {
|
|
|
|
pub fn new(db: &'a dyn HirDatabase, resolver: &'a Resolver) -> Self {
|
2020-01-25 16:38:33 -06:00
|
|
|
let impl_trait_counter = std::cell::Cell::new(0);
|
|
|
|
let impl_trait_mode = ImplTraitLoweringMode::Disallowed;
|
|
|
|
let type_param_mode = TypeParamLoweringMode::Placeholder;
|
2020-04-17 15:48:29 -05:00
|
|
|
let in_binders = DebruijnIndex::INNERMOST;
|
|
|
|
Self { db, resolver, in_binders, impl_trait_mode, impl_trait_counter, type_param_mode }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn with_shifted_in<T>(
|
|
|
|
&self,
|
|
|
|
debruijn: DebruijnIndex,
|
|
|
|
f: impl FnOnce(&TyLoweringContext) -> T,
|
|
|
|
) -> T {
|
|
|
|
let new_ctx = Self {
|
|
|
|
in_binders: self.in_binders.shifted_in_from(debruijn),
|
|
|
|
impl_trait_counter: std::cell::Cell::new(self.impl_trait_counter.get()),
|
|
|
|
..*self
|
|
|
|
};
|
|
|
|
let result = f(&new_ctx);
|
|
|
|
self.impl_trait_counter.set(new_ctx.impl_trait_counter.get());
|
|
|
|
result
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn shifted_in(self, debruijn: DebruijnIndex) -> Self {
|
|
|
|
Self { in_binders: self.in_binders.shifted_in_from(debruijn), ..self }
|
2020-01-25 16:38:33 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn with_impl_trait_mode(self, impl_trait_mode: ImplTraitLoweringMode) -> Self {
|
|
|
|
Self { impl_trait_mode, ..self }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn with_type_param_mode(self, type_param_mode: TypeParamLoweringMode) -> Self {
|
|
|
|
Self { type_param_mode, ..self }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-31 08:57:44 -06:00
|
|
|
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
|
2020-01-24 08:22:00 -06:00
|
|
|
pub enum ImplTraitLoweringMode {
|
2020-01-24 09:46:43 -06:00
|
|
|
/// `impl Trait` gets lowered into an opaque type that doesn't unify with
|
|
|
|
/// anything except itself. This is used in places where values flow 'out',
|
|
|
|
/// i.e. for arguments of the function we're currently checking, and return
|
|
|
|
/// types of functions we're calling.
|
2020-01-24 08:22:00 -06:00
|
|
|
Opaque,
|
2020-01-31 09:05:58 -06:00
|
|
|
/// `impl Trait` gets lowered into a type variable. Used for argument
|
2020-02-02 06:43:04 -06:00
|
|
|
/// position impl Trait when inside the respective function, since it allows
|
|
|
|
/// us to support that without Chalk.
|
2020-01-31 09:05:58 -06:00
|
|
|
Param,
|
2020-01-25 16:38:33 -06:00
|
|
|
/// `impl Trait` gets lowered into a variable that can unify with some
|
2020-01-24 09:46:43 -06:00
|
|
|
/// type. This is used in places where values flow 'in', i.e. for arguments
|
|
|
|
/// of functions we're calling, and the return type of the function we're
|
|
|
|
/// currently checking.
|
2020-01-25 16:38:33 -06:00
|
|
|
Variable,
|
2020-01-24 09:46:43 -06:00
|
|
|
/// `impl Trait` is disallowed and will be an error.
|
2020-01-24 08:22:00 -06:00
|
|
|
Disallowed,
|
2020-01-24 07:32:47 -06:00
|
|
|
}
|
|
|
|
|
2020-01-31 08:57:44 -06:00
|
|
|
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
|
2020-01-25 16:38:33 -06:00
|
|
|
pub enum TypeParamLoweringMode {
|
|
|
|
Placeholder,
|
|
|
|
Variable,
|
|
|
|
}
|
|
|
|
|
2019-02-23 08:24:07 -06:00
|
|
|
impl Ty {
|
2020-03-13 10:05:46 -05:00
|
|
|
pub fn from_hir(ctx: &TyLoweringContext<'_>, type_ref: &TypeRef) -> Self {
|
2020-03-06 11:08:10 -06:00
|
|
|
Ty::from_hir_ext(ctx, type_ref).0
|
|
|
|
}
|
2020-03-13 10:05:46 -05:00
|
|
|
pub fn from_hir_ext(ctx: &TyLoweringContext<'_>, type_ref: &TypeRef) -> (Self, Option<TypeNs>) {
|
2020-03-06 11:08:10 -06:00
|
|
|
let mut res = None;
|
|
|
|
let ty = match type_ref {
|
2019-03-21 16:20:03 -05:00
|
|
|
TypeRef::Never => Ty::simple(TypeCtor::Never),
|
2019-02-23 08:24:07 -06:00
|
|
|
TypeRef::Tuple(inner) => {
|
2020-01-24 07:32:47 -06:00
|
|
|
let inner_tys: Arc<[Ty]> = inner.iter().map(|tr| Ty::from_hir(ctx, tr)).collect();
|
2019-05-04 12:07:25 -05:00
|
|
|
Ty::apply(
|
|
|
|
TypeCtor::Tuple { cardinality: inner_tys.len() as u16 },
|
2019-10-13 23:06:05 -05:00
|
|
|
Substs(inner_tys),
|
2019-05-04 12:07:25 -05:00
|
|
|
)
|
2019-02-23 08:24:07 -06:00
|
|
|
}
|
2020-03-06 11:08:10 -06:00
|
|
|
TypeRef::Path(path) => {
|
|
|
|
let (ty, res_) = Ty::from_hir_path(ctx, path);
|
|
|
|
res = res_;
|
|
|
|
ty
|
|
|
|
}
|
2019-02-23 08:24:07 -06:00
|
|
|
TypeRef::RawPtr(inner, mutability) => {
|
2020-01-24 07:32:47 -06:00
|
|
|
let inner_ty = Ty::from_hir(ctx, inner);
|
2019-03-21 16:20:03 -05:00
|
|
|
Ty::apply_one(TypeCtor::RawPtr(*mutability), inner_ty)
|
2019-02-23 08:24:07 -06:00
|
|
|
}
|
|
|
|
TypeRef::Array(inner) => {
|
2020-01-24 07:32:47 -06:00
|
|
|
let inner_ty = Ty::from_hir(ctx, inner);
|
2019-03-21 16:20:03 -05:00
|
|
|
Ty::apply_one(TypeCtor::Array, inner_ty)
|
2019-02-23 08:24:07 -06:00
|
|
|
}
|
|
|
|
TypeRef::Slice(inner) => {
|
2020-01-24 07:32:47 -06:00
|
|
|
let inner_ty = Ty::from_hir(ctx, inner);
|
2019-03-21 16:20:03 -05:00
|
|
|
Ty::apply_one(TypeCtor::Slice, inner_ty)
|
2019-02-23 08:24:07 -06:00
|
|
|
}
|
|
|
|
TypeRef::Reference(inner, mutability) => {
|
2020-01-24 07:32:47 -06:00
|
|
|
let inner_ty = Ty::from_hir(ctx, inner);
|
2019-03-21 16:20:03 -05:00
|
|
|
Ty::apply_one(TypeCtor::Ref(*mutability), inner_ty)
|
2019-02-23 08:24:07 -06:00
|
|
|
}
|
|
|
|
TypeRef::Placeholder => Ty::Unknown,
|
|
|
|
TypeRef::Fn(params) => {
|
2020-01-24 07:32:47 -06:00
|
|
|
let sig = Substs(params.iter().map(|tr| Ty::from_hir(ctx, tr)).collect());
|
2019-05-04 12:07:25 -05:00
|
|
|
Ty::apply(TypeCtor::FnPtr { num_args: sig.len() as u16 - 1 }, sig)
|
2019-02-23 08:24:07 -06:00
|
|
|
}
|
2019-08-13 16:09:08 -05:00
|
|
|
TypeRef::DynTrait(bounds) => {
|
2020-04-05 11:24:18 -05:00
|
|
|
let self_ty = Ty::Bound(BoundVar::new(DebruijnIndex::INNERMOST, 0));
|
2020-04-17 15:48:29 -05:00
|
|
|
let predicates = ctx.with_shifted_in(DebruijnIndex::ONE, |ctx| {
|
|
|
|
bounds
|
|
|
|
.iter()
|
|
|
|
.flat_map(|b| GenericPredicate::from_type_bound(ctx, b, self_ty.clone()))
|
|
|
|
.collect()
|
|
|
|
});
|
2019-10-13 23:06:05 -05:00
|
|
|
Ty::Dyn(predicates)
|
2019-08-13 16:09:08 -05:00
|
|
|
}
|
|
|
|
TypeRef::ImplTrait(bounds) => {
|
2020-01-24 09:46:43 -06:00
|
|
|
match ctx.impl_trait_mode {
|
|
|
|
ImplTraitLoweringMode::Opaque => {
|
2020-04-05 11:24:18 -05:00
|
|
|
let self_ty = Ty::Bound(BoundVar::new(DebruijnIndex::INNERMOST, 0));
|
2020-04-17 15:48:29 -05:00
|
|
|
let predicates = ctx.with_shifted_in(DebruijnIndex::ONE, |ctx| {
|
|
|
|
bounds
|
|
|
|
.iter()
|
|
|
|
.flat_map(|b| {
|
|
|
|
GenericPredicate::from_type_bound(ctx, b, self_ty.clone())
|
|
|
|
})
|
|
|
|
.collect()
|
|
|
|
});
|
2020-01-24 09:46:43 -06:00
|
|
|
Ty::Opaque(predicates)
|
2020-01-25 16:38:33 -06:00
|
|
|
}
|
2020-01-31 09:05:58 -06:00
|
|
|
ImplTraitLoweringMode::Param => {
|
|
|
|
let idx = ctx.impl_trait_counter.get();
|
|
|
|
ctx.impl_trait_counter.set(idx + 1);
|
2020-01-31 09:52:43 -06:00
|
|
|
if let Some(def) = ctx.resolver.generic_def() {
|
2020-03-13 10:05:46 -05:00
|
|
|
let generics = generics(ctx.db.upcast(), def);
|
2020-01-31 09:52:43 -06:00
|
|
|
let param = generics
|
|
|
|
.iter()
|
2020-02-02 10:11:54 -06:00
|
|
|
.filter(|(_, data)| {
|
|
|
|
data.provenance == TypeParamProvenance::ArgumentImplTrait
|
|
|
|
})
|
2020-01-31 09:52:43 -06:00
|
|
|
.nth(idx as usize)
|
2020-02-14 07:44:00 -06:00
|
|
|
.map_or(Ty::Unknown, |(id, _)| Ty::Placeholder(id));
|
2020-01-31 09:52:43 -06:00
|
|
|
param
|
|
|
|
} else {
|
|
|
|
Ty::Unknown
|
|
|
|
}
|
2020-01-31 09:05:58 -06:00
|
|
|
}
|
2020-01-25 16:38:33 -06:00
|
|
|
ImplTraitLoweringMode::Variable => {
|
|
|
|
let idx = ctx.impl_trait_counter.get();
|
|
|
|
ctx.impl_trait_counter.set(idx + 1);
|
2020-02-07 09:24:09 -06:00
|
|
|
let (parent_params, self_params, list_params, _impl_trait_params) =
|
2020-01-31 08:57:44 -06:00
|
|
|
if let Some(def) = ctx.resolver.generic_def() {
|
2020-03-13 10:05:46 -05:00
|
|
|
let generics = generics(ctx.db.upcast(), def);
|
2020-01-31 08:57:44 -06:00
|
|
|
generics.provenance_split()
|
|
|
|
} else {
|
2020-02-07 09:24:09 -06:00
|
|
|
(0, 0, 0, 0)
|
2020-01-31 08:57:44 -06:00
|
|
|
};
|
2020-04-05 11:24:18 -05:00
|
|
|
Ty::Bound(BoundVar::new(
|
2020-04-17 15:48:29 -05:00
|
|
|
ctx.in_binders,
|
2020-04-05 11:24:18 -05:00
|
|
|
idx as usize + parent_params + self_params + list_params,
|
|
|
|
))
|
2020-01-25 16:38:33 -06:00
|
|
|
}
|
2020-01-24 09:46:43 -06:00
|
|
|
ImplTraitLoweringMode::Disallowed => {
|
|
|
|
// FIXME: report error
|
|
|
|
Ty::Unknown
|
2020-01-25 16:38:33 -06:00
|
|
|
}
|
2020-01-24 09:46:43 -06:00
|
|
|
}
|
2019-08-13 16:09:08 -05:00
|
|
|
}
|
2019-02-23 08:24:07 -06:00
|
|
|
TypeRef::Error => Ty::Unknown,
|
2020-03-06 11:08:10 -06:00
|
|
|
};
|
|
|
|
(ty, res)
|
2019-02-23 08:24:07 -06:00
|
|
|
}
|
|
|
|
|
2019-09-22 13:01:12 -05:00
|
|
|
/// This is only for `generic_predicates_for_param`, where we can't just
|
|
|
|
/// lower the self types of the predicates since that could lead to cycles.
|
|
|
|
/// So we just check here if the `type_ref` resolves to a generic param, and which.
|
2020-03-13 10:05:46 -05:00
|
|
|
fn from_hir_only_param(ctx: &TyLoweringContext<'_>, type_ref: &TypeRef) -> Option<TypeParamId> {
|
2019-09-22 13:01:12 -05:00
|
|
|
let path = match type_ref {
|
|
|
|
TypeRef::Path(path) => path,
|
|
|
|
_ => return None,
|
|
|
|
};
|
2019-12-18 10:41:33 -06:00
|
|
|
if path.type_anchor().is_some() {
|
2019-09-22 13:01:12 -05:00
|
|
|
return None;
|
|
|
|
}
|
2019-12-13 05:12:36 -06:00
|
|
|
if path.segments().len() > 1 {
|
2019-09-22 13:01:12 -05:00
|
|
|
return None;
|
|
|
|
}
|
2020-03-13 10:05:46 -05:00
|
|
|
let resolution =
|
|
|
|
match ctx.resolver.resolve_path_in_type_ns(ctx.db.upcast(), path.mod_path()) {
|
|
|
|
Some((it, None)) => it,
|
|
|
|
_ => return None,
|
|
|
|
};
|
2019-12-07 04:50:36 -06:00
|
|
|
if let TypeNs::GenericParam(param_id) = resolution {
|
2020-01-31 09:52:43 -06:00
|
|
|
Some(param_id)
|
2019-09-22 13:01:12 -05:00
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-16 14:38:27 -05:00
|
|
|
pub(crate) fn from_type_relative_path(
|
2020-03-13 10:05:46 -05:00
|
|
|
ctx: &TyLoweringContext<'_>,
|
2019-09-16 14:38:27 -05:00
|
|
|
ty: Ty,
|
2020-03-06 11:08:10 -06:00
|
|
|
// We need the original resolution to lower `Self::AssocTy` correctly
|
|
|
|
res: Option<TypeNs>,
|
2019-12-13 05:12:36 -06:00
|
|
|
remaining_segments: PathSegments<'_>,
|
2020-03-06 11:08:10 -06:00
|
|
|
) -> (Ty, Option<TypeNs>) {
|
2019-09-16 14:38:27 -05:00
|
|
|
if remaining_segments.len() == 1 {
|
|
|
|
// resolve unselected assoc types
|
2019-12-13 05:12:36 -06:00
|
|
|
let segment = remaining_segments.first().unwrap();
|
2020-04-26 09:56:25 -05:00
|
|
|
(Ty::select_associated_type(ctx, res, segment), None)
|
2019-09-16 14:38:27 -05:00
|
|
|
} else if remaining_segments.len() > 1 {
|
|
|
|
// FIXME report error (ambiguous associated type)
|
2020-03-06 11:08:10 -06:00
|
|
|
(Ty::Unknown, None)
|
2019-09-16 14:38:27 -05:00
|
|
|
} else {
|
2020-03-06 11:08:10 -06:00
|
|
|
(ty, res)
|
2019-09-16 14:38:27 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-15 05:50:57 -05:00
|
|
|
pub(crate) fn from_partly_resolved_hir_path(
|
2020-03-13 10:05:46 -05:00
|
|
|
ctx: &TyLoweringContext<'_>,
|
2019-09-15 05:50:57 -05:00
|
|
|
resolution: TypeNs,
|
2019-12-13 05:12:36 -06:00
|
|
|
resolved_segment: PathSegment<'_>,
|
|
|
|
remaining_segments: PathSegments<'_>,
|
2020-03-06 11:08:10 -06:00
|
|
|
) -> (Ty, Option<TypeNs>) {
|
2019-09-14 06:25:05 -05:00
|
|
|
let ty = match resolution {
|
2019-11-21 03:21:46 -06:00
|
|
|
TypeNs::TraitId(trait_) => {
|
2020-02-21 16:06:18 -06:00
|
|
|
// if this is a bare dyn Trait, we'll directly put the required ^0 for the self type in there
|
2020-04-05 11:24:18 -05:00
|
|
|
let self_ty = if remaining_segments.len() == 0 {
|
|
|
|
Some(Ty::Bound(BoundVar::new(DebruijnIndex::INNERMOST, 0)))
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
2020-02-22 06:14:39 -06:00
|
|
|
let trait_ref =
|
|
|
|
TraitRef::from_resolved_path(ctx, trait_, resolved_segment, self_ty);
|
2020-03-06 11:08:10 -06:00
|
|
|
let ty = if remaining_segments.len() == 1 {
|
2019-12-13 05:12:36 -06:00
|
|
|
let segment = remaining_segments.first().unwrap();
|
2019-11-26 08:42:21 -06:00
|
|
|
let associated_ty = associated_type_by_name_including_super_traits(
|
2020-03-13 10:05:46 -05:00
|
|
|
ctx.db.upcast(),
|
2019-11-26 09:00:36 -06:00
|
|
|
trait_ref.trait_,
|
2019-11-26 08:42:21 -06:00
|
|
|
&segment.name,
|
|
|
|
);
|
|
|
|
match associated_ty {
|
2019-09-15 05:50:57 -05:00
|
|
|
Some(associated_ty) => {
|
|
|
|
// FIXME handle type parameters on the segment
|
|
|
|
Ty::Projection(ProjectionTy {
|
2019-11-26 08:42:21 -06:00
|
|
|
associated_ty,
|
2019-09-15 05:50:57 -05:00
|
|
|
parameters: trait_ref.substs,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
None => {
|
2019-09-16 14:48:46 -05:00
|
|
|
// FIXME: report error (associated type not found)
|
2019-09-15 05:50:57 -05:00
|
|
|
Ty::Unknown
|
2019-09-12 15:35:53 -05:00
|
|
|
}
|
|
|
|
}
|
2019-09-15 05:50:57 -05:00
|
|
|
} else if remaining_segments.len() > 1 {
|
|
|
|
// FIXME report error (ambiguous associated type)
|
|
|
|
Ty::Unknown
|
2019-09-12 15:35:53 -05:00
|
|
|
} else {
|
2019-09-14 03:20:05 -05:00
|
|
|
Ty::Dyn(Arc::new([GenericPredicate::Implemented(trait_ref)]))
|
2019-09-12 15:35:53 -05:00
|
|
|
};
|
2020-03-06 11:08:10 -06:00
|
|
|
return (ty, None);
|
2019-02-23 08:24:07 -06:00
|
|
|
}
|
2019-12-07 04:50:36 -06:00
|
|
|
TypeNs::GenericParam(param_id) => {
|
2020-03-13 10:05:46 -05:00
|
|
|
let generics = generics(
|
|
|
|
ctx.db.upcast(),
|
|
|
|
ctx.resolver.generic_def().expect("generics in scope"),
|
|
|
|
);
|
2020-01-25 16:38:33 -06:00
|
|
|
match ctx.type_param_mode {
|
2020-02-14 07:44:00 -06:00
|
|
|
TypeParamLoweringMode::Placeholder => Ty::Placeholder(param_id),
|
2020-01-31 09:52:43 -06:00
|
|
|
TypeParamLoweringMode::Variable => {
|
|
|
|
let idx = generics.param_idx(param_id).expect("matching generics");
|
2020-04-17 15:48:29 -05:00
|
|
|
Ty::Bound(BoundVar::new(ctx.in_binders, idx))
|
2020-01-31 08:57:44 -06:00
|
|
|
}
|
2020-01-25 16:38:33 -06:00
|
|
|
}
|
2019-02-23 08:24:07 -06:00
|
|
|
}
|
2020-01-25 16:38:33 -06:00
|
|
|
TypeNs::SelfType(impl_id) => {
|
2020-03-13 10:05:46 -05:00
|
|
|
let generics = generics(ctx.db.upcast(), impl_id.into());
|
2020-01-25 16:38:33 -06:00
|
|
|
let substs = match ctx.type_param_mode {
|
2020-02-07 08:13:15 -06:00
|
|
|
TypeParamLoweringMode::Placeholder => {
|
|
|
|
Substs::type_params_for_generics(&generics)
|
|
|
|
}
|
2020-04-17 15:48:29 -05:00
|
|
|
TypeParamLoweringMode::Variable => {
|
|
|
|
Substs::bound_vars(&generics, ctx.in_binders)
|
|
|
|
}
|
2020-01-25 16:38:33 -06:00
|
|
|
};
|
|
|
|
ctx.db.impl_self_ty(impl_id).subst(&substs)
|
2020-01-31 08:57:44 -06:00
|
|
|
}
|
2020-01-25 16:38:33 -06:00
|
|
|
TypeNs::AdtSelfType(adt) => {
|
2020-03-13 10:05:46 -05:00
|
|
|
let generics = generics(ctx.db.upcast(), adt.into());
|
2020-01-25 16:38:33 -06:00
|
|
|
let substs = match ctx.type_param_mode {
|
2020-02-07 08:13:15 -06:00
|
|
|
TypeParamLoweringMode::Placeholder => {
|
|
|
|
Substs::type_params_for_generics(&generics)
|
|
|
|
}
|
2020-04-17 15:48:29 -05:00
|
|
|
TypeParamLoweringMode::Variable => {
|
|
|
|
Substs::bound_vars(&generics, ctx.in_binders)
|
|
|
|
}
|
2020-01-25 16:38:33 -06:00
|
|
|
};
|
|
|
|
ctx.db.ty(adt.into()).subst(&substs)
|
2020-01-31 08:57:44 -06:00
|
|
|
}
|
2019-09-12 15:35:53 -05:00
|
|
|
|
2020-01-24 07:32:47 -06:00
|
|
|
TypeNs::AdtId(it) => Ty::from_hir_path_inner(ctx, resolved_segment, it.into()),
|
|
|
|
TypeNs::BuiltinType(it) => Ty::from_hir_path_inner(ctx, resolved_segment, it.into()),
|
|
|
|
TypeNs::TypeAliasId(it) => Ty::from_hir_path_inner(ctx, resolved_segment, it.into()),
|
2019-09-12 15:35:53 -05:00
|
|
|
// FIXME: report error
|
2020-03-06 11:08:10 -06:00
|
|
|
TypeNs::EnumVariantId(_) => return (Ty::Unknown, None),
|
2019-02-23 08:24:07 -06:00
|
|
|
};
|
|
|
|
|
2020-03-06 11:08:10 -06:00
|
|
|
Ty::from_type_relative_path(ctx, ty, Some(resolution), remaining_segments)
|
2019-09-14 06:25:05 -05:00
|
|
|
}
|
|
|
|
|
2020-03-13 10:05:46 -05:00
|
|
|
pub(crate) fn from_hir_path(ctx: &TyLoweringContext<'_>, path: &Path) -> (Ty, Option<TypeNs>) {
|
2019-09-15 05:50:57 -05:00
|
|
|
// Resolve the path (in type namespace)
|
2019-12-18 10:41:33 -06:00
|
|
|
if let Some(type_ref) = path.type_anchor() {
|
2020-03-06 11:08:10 -06:00
|
|
|
let (ty, res) = Ty::from_hir_ext(ctx, &type_ref);
|
|
|
|
return Ty::from_type_relative_path(ctx, ty, res, path.segments());
|
2019-09-16 14:38:27 -05:00
|
|
|
}
|
2019-12-13 05:12:36 -06:00
|
|
|
let (resolution, remaining_index) =
|
2020-03-13 10:05:46 -05:00
|
|
|
match ctx.resolver.resolve_path_in_type_ns(ctx.db.upcast(), path.mod_path()) {
|
2019-12-13 05:12:36 -06:00
|
|
|
Some(it) => it,
|
2020-03-06 11:08:10 -06:00
|
|
|
None => return (Ty::Unknown, None),
|
2019-12-13 05:12:36 -06:00
|
|
|
};
|
2019-09-15 05:50:57 -05:00
|
|
|
let (resolved_segment, remaining_segments) = match remaining_index {
|
|
|
|
None => (
|
2019-12-13 05:12:36 -06:00
|
|
|
path.segments().last().expect("resolved path has at least one element"),
|
|
|
|
PathSegments::EMPTY,
|
2019-09-15 05:50:57 -05:00
|
|
|
),
|
2019-12-13 05:12:36 -06:00
|
|
|
Some(i) => (path.segments().get(i - 1).unwrap(), path.segments().skip(i)),
|
2019-09-15 05:50:57 -05:00
|
|
|
};
|
2020-01-24 07:32:47 -06:00
|
|
|
Ty::from_partly_resolved_hir_path(ctx, resolution, resolved_segment, remaining_segments)
|
2019-09-15 05:50:57 -05:00
|
|
|
}
|
|
|
|
|
2019-09-14 06:25:05 -05:00
|
|
|
fn select_associated_type(
|
2020-03-13 10:05:46 -05:00
|
|
|
ctx: &TyLoweringContext<'_>,
|
2020-03-06 11:08:10 -06:00
|
|
|
res: Option<TypeNs>,
|
2019-12-13 05:12:36 -06:00
|
|
|
segment: PathSegment<'_>,
|
2019-09-14 06:25:05 -05:00
|
|
|
) -> Ty {
|
2020-03-06 11:08:10 -06:00
|
|
|
let traits_from_env: Vec<_> = match res {
|
|
|
|
Some(TypeNs::SelfType(impl_id)) => match ctx.db.impl_trait(impl_id) {
|
|
|
|
None => return Ty::Unknown,
|
2020-04-26 09:56:25 -05:00
|
|
|
Some(trait_ref) => vec![trait_ref.value],
|
2020-03-06 11:08:10 -06:00
|
|
|
},
|
|
|
|
Some(TypeNs::GenericParam(param_id)) => {
|
|
|
|
let predicates = ctx.db.generic_predicates_for_param(param_id);
|
2020-04-12 05:29:03 -05:00
|
|
|
let mut traits_: Vec<_> = predicates
|
2020-03-06 11:08:10 -06:00
|
|
|
.iter()
|
|
|
|
.filter_map(|pred| match &pred.value {
|
2020-04-26 09:56:25 -05:00
|
|
|
GenericPredicate::Implemented(tr) => Some(tr.clone()),
|
2020-03-06 11:08:10 -06:00
|
|
|
_ => None,
|
|
|
|
})
|
2020-04-12 05:29:03 -05:00
|
|
|
.collect();
|
|
|
|
// Handle `Self::Type` referring to own associated type in trait definitions
|
|
|
|
if let GenericDefId::TraitId(trait_id) = param_id.parent {
|
|
|
|
let generics = generics(ctx.db.upcast(), trait_id.into());
|
|
|
|
if generics.params.types[param_id.local_id].provenance
|
|
|
|
== TypeParamProvenance::TraitSelf
|
|
|
|
{
|
2020-04-26 09:56:25 -05:00
|
|
|
let trait_ref = TraitRef {
|
|
|
|
trait_: trait_id,
|
|
|
|
substs: Substs::bound_vars(&generics, DebruijnIndex::INNERMOST),
|
|
|
|
};
|
|
|
|
traits_.push(trait_ref);
|
2020-04-12 05:29:03 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
traits_
|
2020-02-02 10:11:54 -06:00
|
|
|
}
|
2020-03-06 11:08:10 -06:00
|
|
|
_ => return Ty::Unknown,
|
2020-01-31 09:52:43 -06:00
|
|
|
};
|
2020-04-26 09:56:25 -05:00
|
|
|
let traits = traits_from_env.into_iter().flat_map(|t| all_super_trait_refs(ctx.db, t));
|
2019-09-22 13:01:12 -05:00
|
|
|
for t in traits {
|
2020-04-26 09:56:25 -05:00
|
|
|
if let Some(associated_ty) =
|
|
|
|
ctx.db.trait_data(t.trait_).associated_type_by_name(&segment.name)
|
2020-01-24 07:32:47 -06:00
|
|
|
{
|
2020-04-26 09:56:25 -05:00
|
|
|
let substs = match ctx.type_param_mode {
|
|
|
|
TypeParamLoweringMode::Placeholder => {
|
|
|
|
// if we're lowering to placeholders, we have to put
|
|
|
|
// them in now
|
|
|
|
let s = Substs::type_params(
|
|
|
|
ctx.db,
|
|
|
|
ctx.resolver
|
|
|
|
.generic_def()
|
|
|
|
.expect("there should be generics if there's a generic param"),
|
|
|
|
);
|
|
|
|
t.substs.subst_bound_vars(&s)
|
|
|
|
}
|
|
|
|
TypeParamLoweringMode::Variable => t.substs,
|
|
|
|
};
|
|
|
|
// FIXME handle (forbid) type parameters on the segment
|
2019-11-26 08:21:29 -06:00
|
|
|
return Ty::Projection(ProjectionTy { associated_ty, parameters: substs });
|
2019-09-22 13:01:12 -05:00
|
|
|
}
|
|
|
|
}
|
2019-09-16 14:48:46 -05:00
|
|
|
Ty::Unknown
|
2019-09-14 06:25:05 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn from_hir_path_inner(
|
2020-03-13 10:05:46 -05:00
|
|
|
ctx: &TyLoweringContext<'_>,
|
2019-12-13 05:12:36 -06:00
|
|
|
segment: PathSegment<'_>,
|
2019-11-26 12:04:24 -06:00
|
|
|
typable: TyDefId,
|
2019-09-14 06:25:05 -05:00
|
|
|
) -> Ty {
|
2019-11-26 12:04:24 -06:00
|
|
|
let generic_def = match typable {
|
|
|
|
TyDefId::BuiltinType(_) => None,
|
|
|
|
TyDefId::AdtId(it) => Some(it.into()),
|
|
|
|
TyDefId::TypeAliasId(it) => Some(it.into()),
|
2019-02-23 08:24:07 -06:00
|
|
|
};
|
2020-01-24 07:32:47 -06:00
|
|
|
let substs = substs_from_path_segment(ctx, segment, generic_def, false);
|
|
|
|
ctx.db.ty(typable).subst(&substs)
|
2019-02-23 08:24:07 -06:00
|
|
|
}
|
2019-02-23 15:59:01 -06:00
|
|
|
|
|
|
|
/// Collect generic arguments from a path into a `Substs`. See also
|
|
|
|
/// `create_substs_for_ast_path` and `def_to_ty` in rustc.
|
|
|
|
pub(super) fn substs_from_path(
|
2020-03-13 10:05:46 -05:00
|
|
|
ctx: &TyLoweringContext<'_>,
|
2019-02-23 15:59:01 -06:00
|
|
|
path: &Path,
|
2019-11-26 12:04:24 -06:00
|
|
|
// Note that we don't call `db.value_type(resolved)` here,
|
|
|
|
// `ValueTyDefId` is just a convenient way to pass generics and
|
|
|
|
// special-case enum variants
|
|
|
|
resolved: ValueTyDefId,
|
2019-02-23 15:59:01 -06:00
|
|
|
) -> Substs {
|
2019-12-13 05:12:36 -06:00
|
|
|
let last = path.segments().last().expect("path should have at least one segment");
|
2019-11-26 12:04:24 -06:00
|
|
|
let (segment, generic_def) = match resolved {
|
|
|
|
ValueTyDefId::FunctionId(it) => (last, Some(it.into())),
|
|
|
|
ValueTyDefId::StructId(it) => (last, Some(it.into())),
|
|
|
|
ValueTyDefId::ConstId(it) => (last, Some(it.into())),
|
|
|
|
ValueTyDefId::StaticId(_) => (last, None),
|
|
|
|
ValueTyDefId::EnumVariantId(var) => {
|
2019-02-23 15:59:01 -06:00
|
|
|
// the generic args for an enum variant may be either specified
|
|
|
|
// on the segment referring to the enum, or on the segment
|
|
|
|
// referring to the variant. So `Option::<T>::None` and
|
|
|
|
// `Option::None::<T>` are both allowed (though the former is
|
|
|
|
// preferred). See also `def_ids_for_path_segments` in rustc.
|
2019-12-13 05:12:36 -06:00
|
|
|
let len = path.segments().len();
|
|
|
|
let penultimate = if len >= 2 { path.segments().get(len - 2) } else { None };
|
|
|
|
let segment = match penultimate {
|
|
|
|
Some(segment) if segment.args_and_bindings.is_some() => segment,
|
|
|
|
_ => last,
|
2019-02-23 15:59:01 -06:00
|
|
|
};
|
2019-11-26 12:04:24 -06:00
|
|
|
(segment, Some(var.parent.into()))
|
2019-02-23 15:59:01 -06:00
|
|
|
}
|
|
|
|
};
|
2020-01-24 07:32:47 -06:00
|
|
|
substs_from_path_segment(ctx, segment, generic_def, false)
|
2019-02-23 15:59:01 -06:00
|
|
|
}
|
2019-02-23 08:24:07 -06:00
|
|
|
}
|
|
|
|
|
2019-03-26 17:07:26 -05:00
|
|
|
pub(super) fn substs_from_path_segment(
|
2020-03-13 10:05:46 -05:00
|
|
|
ctx: &TyLoweringContext<'_>,
|
2019-12-13 05:12:36 -06:00
|
|
|
segment: PathSegment<'_>,
|
2019-11-25 06:41:53 -06:00
|
|
|
def_generic: Option<GenericDefId>,
|
2020-02-07 09:24:09 -06:00
|
|
|
_add_self_param: bool,
|
2019-03-26 17:07:26 -05:00
|
|
|
) -> Substs {
|
|
|
|
let mut substs = Vec::new();
|
2020-03-13 10:05:46 -05:00
|
|
|
let def_generics = def_generic.map(|def| generics(ctx.db.upcast(), def));
|
2019-05-19 08:08:16 -05:00
|
|
|
|
2020-02-07 09:24:09 -06:00
|
|
|
let (parent_params, self_params, type_params, impl_trait_params) =
|
|
|
|
def_generics.map_or((0, 0, 0, 0), |g| g.provenance_split());
|
|
|
|
substs.extend(iter::repeat(Ty::Unknown).take(parent_params));
|
2019-03-26 17:07:26 -05:00
|
|
|
if let Some(generic_args) = &segment.args_and_bindings {
|
2020-02-07 09:24:09 -06:00
|
|
|
if !generic_args.has_self_type {
|
|
|
|
substs.extend(iter::repeat(Ty::Unknown).take(self_params));
|
|
|
|
}
|
|
|
|
let expected_num =
|
|
|
|
if generic_args.has_self_type { self_params + type_params } else { type_params };
|
|
|
|
let skip = if generic_args.has_self_type && self_params == 0 { 1 } else { 0 };
|
2019-03-26 17:07:26 -05:00
|
|
|
// if args are provided, it should be all of them, but we can't rely on that
|
2020-02-07 09:24:09 -06:00
|
|
|
for arg in generic_args.args.iter().skip(skip).take(expected_num) {
|
2019-03-26 17:07:26 -05:00
|
|
|
match arg {
|
|
|
|
GenericArg::Type(type_ref) => {
|
2020-01-24 07:32:47 -06:00
|
|
|
let ty = Ty::from_hir(ctx, type_ref);
|
2019-03-26 17:07:26 -05:00
|
|
|
substs.push(ty);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-02-07 09:24:09 -06:00
|
|
|
let total_len = parent_params + self_params + type_params + impl_trait_params;
|
2019-03-26 17:07:26 -05:00
|
|
|
// add placeholders for args that were not provided
|
2020-02-07 09:24:09 -06:00
|
|
|
for _ in substs.len()..total_len {
|
2019-03-26 17:07:26 -05:00
|
|
|
substs.push(Ty::Unknown);
|
|
|
|
}
|
2019-12-07 06:05:05 -06:00
|
|
|
assert_eq!(substs.len(), total_len);
|
2019-05-19 08:08:16 -05:00
|
|
|
|
|
|
|
// handle defaults
|
|
|
|
if let Some(def_generic) = def_generic {
|
2020-02-18 06:53:02 -06:00
|
|
|
let default_substs = ctx.db.generic_defaults(def_generic);
|
2019-05-19 08:08:16 -05:00
|
|
|
assert_eq!(substs.len(), default_substs.len());
|
|
|
|
|
2019-05-20 04:48:58 -05:00
|
|
|
for (i, default_ty) in default_substs.iter().enumerate() {
|
|
|
|
if substs[i] == Ty::Unknown {
|
|
|
|
substs[i] = default_ty.clone();
|
2019-05-19 08:08:16 -05:00
|
|
|
}
|
2019-05-20 04:48:58 -05:00
|
|
|
}
|
2019-05-19 08:08:16 -05:00
|
|
|
}
|
|
|
|
|
2019-05-20 04:48:58 -05:00
|
|
|
Substs(substs.into())
|
2019-03-26 17:07:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
impl TraitRef {
|
2019-11-27 13:21:01 -06:00
|
|
|
fn from_path(
|
2020-03-13 10:05:46 -05:00
|
|
|
ctx: &TyLoweringContext<'_>,
|
2019-05-05 07:21:00 -05:00
|
|
|
path: &Path,
|
2019-03-31 13:02:16 -05:00
|
|
|
explicit_self_ty: Option<Ty>,
|
2019-03-26 17:07:26 -05:00
|
|
|
) -> Option<Self> {
|
2020-03-13 10:05:46 -05:00
|
|
|
let resolved =
|
|
|
|
match ctx.resolver.resolve_path_in_type_ns_fully(ctx.db.upcast(), path.mod_path())? {
|
|
|
|
TypeNs::TraitId(tr) => tr,
|
|
|
|
_ => return None,
|
|
|
|
};
|
2019-12-13 05:12:36 -06:00
|
|
|
let segment = path.segments().last().expect("path should have at least one segment");
|
2020-02-18 06:53:02 -06:00
|
|
|
Some(TraitRef::from_resolved_path(ctx, resolved, segment, explicit_self_ty))
|
2019-08-05 15:42:38 -05:00
|
|
|
}
|
|
|
|
|
2019-11-27 13:21:01 -06:00
|
|
|
pub(crate) fn from_resolved_path(
|
2020-03-13 10:05:46 -05:00
|
|
|
ctx: &TyLoweringContext<'_>,
|
2019-11-27 07:48:48 -06:00
|
|
|
resolved: TraitId,
|
2019-12-13 05:12:36 -06:00
|
|
|
segment: PathSegment<'_>,
|
2019-08-05 15:42:38 -05:00
|
|
|
explicit_self_ty: Option<Ty>,
|
|
|
|
) -> Self {
|
2020-01-24 07:32:47 -06:00
|
|
|
let mut substs = TraitRef::substs_from_path(ctx, segment, resolved);
|
2019-03-31 13:02:16 -05:00
|
|
|
if let Some(self_ty) = explicit_self_ty {
|
2019-10-14 05:50:12 -05:00
|
|
|
make_mut_slice(&mut substs.0)[0] = self_ty;
|
2019-03-31 13:02:16 -05:00
|
|
|
}
|
2019-11-27 07:48:48 -06:00
|
|
|
TraitRef { trait_: resolved, substs }
|
2019-03-26 17:07:26 -05:00
|
|
|
}
|
|
|
|
|
2019-11-27 13:21:01 -06:00
|
|
|
fn from_hir(
|
2020-03-13 10:05:46 -05:00
|
|
|
ctx: &TyLoweringContext<'_>,
|
2019-05-05 07:21:00 -05:00
|
|
|
type_ref: &TypeRef,
|
|
|
|
explicit_self_ty: Option<Ty>,
|
|
|
|
) -> Option<Self> {
|
|
|
|
let path = match type_ref {
|
|
|
|
TypeRef::Path(path) => path,
|
|
|
|
_ => return None,
|
|
|
|
};
|
2020-01-24 07:32:47 -06:00
|
|
|
TraitRef::from_path(ctx, path, explicit_self_ty)
|
2019-05-05 07:21:00 -05:00
|
|
|
}
|
|
|
|
|
2019-03-26 17:07:26 -05:00
|
|
|
fn substs_from_path(
|
2020-03-13 10:05:46 -05:00
|
|
|
ctx: &TyLoweringContext<'_>,
|
2019-12-13 05:12:36 -06:00
|
|
|
segment: PathSegment<'_>,
|
2019-11-27 07:48:48 -06:00
|
|
|
resolved: TraitId,
|
2019-03-26 17:07:26 -05:00
|
|
|
) -> Substs {
|
2019-08-05 15:42:38 -05:00
|
|
|
let has_self_param =
|
|
|
|
segment.args_and_bindings.as_ref().map(|a| a.has_self_type).unwrap_or(false);
|
2020-01-24 07:32:47 -06:00
|
|
|
substs_from_path_segment(ctx, segment, Some(resolved.into()), !has_self_param)
|
2019-03-26 17:07:26 -05:00
|
|
|
}
|
2019-04-20 05:34:36 -05:00
|
|
|
|
2019-08-13 16:09:08 -05:00
|
|
|
pub(crate) fn from_type_bound(
|
2020-03-13 10:05:46 -05:00
|
|
|
ctx: &TyLoweringContext<'_>,
|
2019-08-13 16:09:08 -05:00
|
|
|
bound: &TypeBound,
|
|
|
|
self_ty: Ty,
|
|
|
|
) -> Option<TraitRef> {
|
|
|
|
match bound {
|
2020-01-24 07:32:47 -06:00
|
|
|
TypeBound::Path(path) => TraitRef::from_path(ctx, path, Some(self_ty)),
|
2019-08-13 16:09:08 -05:00
|
|
|
TypeBound::Error => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl GenericPredicate {
|
2019-08-23 10:19:37 -05:00
|
|
|
pub(crate) fn from_where_predicate<'a>(
|
2020-03-13 10:05:46 -05:00
|
|
|
ctx: &'a TyLoweringContext<'a>,
|
2019-08-23 10:19:37 -05:00
|
|
|
where_predicate: &'a WherePredicate,
|
|
|
|
) -> impl Iterator<Item = GenericPredicate> + 'a {
|
2020-01-31 08:17:48 -06:00
|
|
|
let self_ty = match &where_predicate.target {
|
|
|
|
WherePredicateTarget::TypeRef(type_ref) => Ty::from_hir(ctx, type_ref),
|
|
|
|
WherePredicateTarget::TypeParam(param_id) => {
|
|
|
|
let generic_def = ctx.resolver.generic_def().expect("generics in scope");
|
2020-03-13 10:05:46 -05:00
|
|
|
let generics = generics(ctx.db.upcast(), generic_def);
|
2020-01-31 08:17:48 -06:00
|
|
|
let param_id = hir_def::TypeParamId { parent: generic_def, local_id: *param_id };
|
|
|
|
match ctx.type_param_mode {
|
2020-02-14 07:44:00 -06:00
|
|
|
TypeParamLoweringMode::Placeholder => Ty::Placeholder(param_id),
|
2020-01-31 09:52:43 -06:00
|
|
|
TypeParamLoweringMode::Variable => {
|
|
|
|
let idx = generics.param_idx(param_id).expect("matching generics");
|
2020-04-05 11:24:18 -05:00
|
|
|
Ty::Bound(BoundVar::new(DebruijnIndex::INNERMOST, idx))
|
2020-01-31 08:57:44 -06:00
|
|
|
}
|
2020-01-31 08:17:48 -06:00
|
|
|
}
|
2020-01-31 08:57:44 -06:00
|
|
|
}
|
2020-01-31 08:17:48 -06:00
|
|
|
};
|
2020-01-24 07:32:47 -06:00
|
|
|
GenericPredicate::from_type_bound(ctx, &where_predicate.bound, self_ty)
|
2019-08-13 16:09:08 -05:00
|
|
|
}
|
|
|
|
|
2019-08-23 10:19:37 -05:00
|
|
|
pub(crate) fn from_type_bound<'a>(
|
2020-03-13 10:05:46 -05:00
|
|
|
ctx: &'a TyLoweringContext<'a>,
|
2019-08-23 10:19:37 -05:00
|
|
|
bound: &'a TypeBound,
|
2019-08-13 16:09:08 -05:00
|
|
|
self_ty: Ty,
|
2019-08-23 10:19:37 -05:00
|
|
|
) -> impl Iterator<Item = GenericPredicate> + 'a {
|
2020-01-24 07:32:47 -06:00
|
|
|
let trait_ref = TraitRef::from_type_bound(ctx, bound, self_ty);
|
2019-08-23 10:19:37 -05:00
|
|
|
iter::once(trait_ref.clone().map_or(GenericPredicate::Error, GenericPredicate::Implemented))
|
|
|
|
.chain(
|
2020-01-24 07:32:47 -06:00
|
|
|
trait_ref
|
|
|
|
.into_iter()
|
|
|
|
.flat_map(move |tr| assoc_type_bindings_from_type_bound(ctx, bound, tr)),
|
2019-08-23 10:19:37 -05:00
|
|
|
)
|
2019-05-05 07:21:00 -05:00
|
|
|
}
|
2019-03-26 17:07:26 -05:00
|
|
|
}
|
|
|
|
|
2019-08-23 10:19:37 -05:00
|
|
|
fn assoc_type_bindings_from_type_bound<'a>(
|
2020-03-13 10:05:46 -05:00
|
|
|
ctx: &'a TyLoweringContext<'a>,
|
2019-08-23 10:19:37 -05:00
|
|
|
bound: &'a TypeBound,
|
|
|
|
trait_ref: TraitRef,
|
|
|
|
) -> impl Iterator<Item = GenericPredicate> + 'a {
|
|
|
|
let last_segment = match bound {
|
2019-12-13 05:12:36 -06:00
|
|
|
TypeBound::Path(path) => path.segments().last(),
|
2019-08-23 10:19:37 -05:00
|
|
|
TypeBound::Error => None,
|
|
|
|
};
|
|
|
|
last_segment
|
|
|
|
.into_iter()
|
2019-12-13 05:12:36 -06:00
|
|
|
.flat_map(|segment| segment.args_and_bindings.into_iter())
|
2019-08-23 10:19:37 -05:00
|
|
|
.flat_map(|args_and_bindings| args_and_bindings.bindings.iter())
|
2020-04-10 15:05:46 -05:00
|
|
|
.flat_map(move |binding| {
|
2020-03-13 10:05:46 -05:00
|
|
|
let associated_ty = associated_type_by_name_including_super_traits(
|
|
|
|
ctx.db.upcast(),
|
|
|
|
trait_ref.trait_,
|
2020-04-10 15:05:46 -05:00
|
|
|
&binding.name,
|
2020-03-13 10:05:46 -05:00
|
|
|
);
|
2019-11-26 08:42:21 -06:00
|
|
|
let associated_ty = match associated_ty {
|
2020-04-10 15:05:46 -05:00
|
|
|
None => return SmallVec::<[GenericPredicate; 1]>::new(),
|
2019-11-26 08:42:21 -06:00
|
|
|
Some(t) => t,
|
|
|
|
};
|
2019-08-23 10:19:37 -05:00
|
|
|
let projection_ty =
|
|
|
|
ProjectionTy { associated_ty, parameters: trait_ref.substs.clone() };
|
2020-04-10 15:05:46 -05:00
|
|
|
let mut preds = SmallVec::with_capacity(
|
|
|
|
binding.type_ref.as_ref().map_or(0, |_| 1) + binding.bounds.len(),
|
|
|
|
);
|
|
|
|
if let Some(type_ref) = &binding.type_ref {
|
|
|
|
let ty = Ty::from_hir(ctx, type_ref);
|
|
|
|
let projection_predicate =
|
|
|
|
ProjectionPredicate { projection_ty: projection_ty.clone(), ty };
|
|
|
|
preds.push(GenericPredicate::Projection(projection_predicate));
|
|
|
|
}
|
|
|
|
for bound in &binding.bounds {
|
|
|
|
preds.extend(GenericPredicate::from_type_bound(
|
|
|
|
ctx,
|
|
|
|
bound,
|
|
|
|
Ty::Projection(projection_ty.clone()),
|
|
|
|
));
|
|
|
|
}
|
|
|
|
preds
|
2019-08-23 10:19:37 -05:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-03-16 11:29:55 -05:00
|
|
|
/// Build the signature of a callable item (function, struct or enum variant).
|
2020-03-13 10:05:46 -05:00
|
|
|
pub fn callable_item_sig(db: &dyn HirDatabase, def: CallableDef) -> PolyFnSig {
|
2019-03-16 11:29:55 -05:00
|
|
|
match def {
|
2019-11-25 07:26:52 -06:00
|
|
|
CallableDef::FunctionId(f) => fn_sig_for_fn(db, f),
|
|
|
|
CallableDef::StructId(s) => fn_sig_for_struct_constructor(db, s),
|
|
|
|
CallableDef::EnumVariantId(e) => fn_sig_for_enum_variant_constructor(db, e),
|
2019-03-16 11:29:55 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-24 14:48:39 -06:00
|
|
|
/// Build the type of all specific fields of a struct or enum variant.
|
|
|
|
pub(crate) fn field_types_query(
|
2020-03-13 10:05:46 -05:00
|
|
|
db: &dyn HirDatabase,
|
2019-11-24 14:48:39 -06:00
|
|
|
variant_id: VariantId,
|
2020-04-25 07:23:34 -05:00
|
|
|
) -> Arc<ArenaMap<LocalFieldId, Binders<Ty>>> {
|
2020-03-13 10:05:46 -05:00
|
|
|
let var_data = variant_data(db.upcast(), variant_id);
|
2020-01-31 09:52:43 -06:00
|
|
|
let (resolver, def): (_, GenericDefId) = match variant_id {
|
2020-03-13 10:05:46 -05:00
|
|
|
VariantId::StructId(it) => (it.resolver(db.upcast()), it.into()),
|
|
|
|
VariantId::UnionId(it) => (it.resolver(db.upcast()), it.into()),
|
|
|
|
VariantId::EnumVariantId(it) => (it.parent.resolver(db.upcast()), it.parent.into()),
|
2019-02-23 08:24:07 -06:00
|
|
|
};
|
2020-03-13 10:05:46 -05:00
|
|
|
let generics = generics(db.upcast(), def);
|
2019-11-24 14:48:39 -06:00
|
|
|
let mut res = ArenaMap::default();
|
2020-02-02 10:11:54 -06:00
|
|
|
let ctx =
|
|
|
|
TyLoweringContext::new(db, &resolver).with_type_param_mode(TypeParamLoweringMode::Variable);
|
2019-11-24 14:48:39 -06:00
|
|
|
for (field_id, field_data) in var_data.fields().iter() {
|
2020-01-31 09:52:43 -06:00
|
|
|
res.insert(field_id, Binders::new(generics.len(), Ty::from_hir(&ctx, &field_data.type_ref)))
|
2019-11-24 14:48:39 -06:00
|
|
|
}
|
|
|
|
Arc::new(res)
|
2019-02-23 08:24:07 -06:00
|
|
|
}
|
|
|
|
|
2019-09-22 13:01:12 -05:00
|
|
|
/// This query exists only to be used when resolving short-hand associated types
|
|
|
|
/// like `T::Item`.
|
|
|
|
///
|
|
|
|
/// See the analogous query in rustc and its comment:
|
|
|
|
/// https://github.com/rust-lang/rust/blob/9150f844e2624eb013ec78ca08c1d416e6644026/src/librustc_typeck/astconv.rs#L46
|
|
|
|
/// This is a query mostly to handle cycles somewhat gracefully; e.g. the
|
|
|
|
/// following bounds are disallowed: `T: Foo<U::Item>, U: Foo<T::Item>`, but
|
|
|
|
/// these are fine: `T: Foo<U::Item>, U: Foo<()>`.
|
|
|
|
pub(crate) fn generic_predicates_for_param_query(
|
2020-03-13 10:05:46 -05:00
|
|
|
db: &dyn HirDatabase,
|
2020-01-31 09:52:43 -06:00
|
|
|
param_id: TypeParamId,
|
2020-02-02 10:11:54 -06:00
|
|
|
) -> Arc<[Binders<GenericPredicate>]> {
|
2020-03-13 10:05:46 -05:00
|
|
|
let resolver = param_id.parent.resolver(db.upcast());
|
2020-02-02 10:11:54 -06:00
|
|
|
let ctx =
|
|
|
|
TyLoweringContext::new(db, &resolver).with_type_param_mode(TypeParamLoweringMode::Variable);
|
2020-03-13 10:05:46 -05:00
|
|
|
let generics = generics(db.upcast(), param_id.parent);
|
2019-10-13 23:06:05 -05:00
|
|
|
resolver
|
2019-09-22 13:01:12 -05:00
|
|
|
.where_predicates_in_scope()
|
|
|
|
// we have to filter out all other predicates *first*, before attempting to lower them
|
2020-01-31 08:17:48 -06:00
|
|
|
.filter(|pred| match &pred.target {
|
2020-01-31 08:57:44 -06:00
|
|
|
WherePredicateTarget::TypeRef(type_ref) => {
|
2020-01-31 09:52:43 -06:00
|
|
|
Ty::from_hir_only_param(&ctx, type_ref) == Some(param_id)
|
2020-01-31 08:57:44 -06:00
|
|
|
}
|
2020-02-02 10:11:54 -06:00
|
|
|
WherePredicateTarget::TypeParam(local_id) => *local_id == param_id.local_id,
|
|
|
|
})
|
|
|
|
.flat_map(|pred| {
|
|
|
|
GenericPredicate::from_where_predicate(&ctx, pred)
|
|
|
|
.map(|p| Binders::new(generics.len(), p))
|
2020-01-31 08:17:48 -06:00
|
|
|
})
|
2019-10-13 23:06:05 -05:00
|
|
|
.collect()
|
2019-09-22 13:01:12 -05:00
|
|
|
}
|
|
|
|
|
2019-11-30 05:39:21 -06:00
|
|
|
pub(crate) fn generic_predicates_for_param_recover(
|
2020-03-13 10:05:46 -05:00
|
|
|
_db: &dyn HirDatabase,
|
2019-11-30 05:39:21 -06:00
|
|
|
_cycle: &[String],
|
2020-01-31 09:52:43 -06:00
|
|
|
_param_id: &TypeParamId,
|
2020-02-02 10:11:54 -06:00
|
|
|
) -> Arc<[Binders<GenericPredicate>]> {
|
2019-11-30 05:39:21 -06:00
|
|
|
Arc::new([])
|
|
|
|
}
|
|
|
|
|
2019-11-25 04:10:26 -06:00
|
|
|
impl TraitEnvironment {
|
2020-03-13 10:05:46 -05:00
|
|
|
pub fn lower(db: &dyn HirDatabase, resolver: &Resolver) -> Arc<TraitEnvironment> {
|
2020-02-02 10:11:54 -06:00
|
|
|
let ctx = TyLoweringContext::new(db, &resolver)
|
|
|
|
.with_type_param_mode(TypeParamLoweringMode::Placeholder);
|
2020-02-14 12:16:42 -06:00
|
|
|
let mut predicates = resolver
|
2019-11-25 04:10:26 -06:00
|
|
|
.where_predicates_in_scope()
|
2020-01-24 08:22:00 -06:00
|
|
|
.flat_map(|pred| GenericPredicate::from_where_predicate(&ctx, pred))
|
2019-11-25 04:10:26 -06:00
|
|
|
.collect::<Vec<_>>();
|
2019-06-29 12:14:52 -05:00
|
|
|
|
2020-02-14 12:16:42 -06:00
|
|
|
if let Some(def) = resolver.generic_def() {
|
|
|
|
let container: Option<AssocContainerId> = match def {
|
|
|
|
// FIXME: is there a function for this?
|
2020-03-13 10:05:46 -05:00
|
|
|
GenericDefId::FunctionId(f) => Some(f.lookup(db.upcast()).container),
|
2020-02-14 12:16:42 -06:00
|
|
|
GenericDefId::AdtId(_) => None,
|
|
|
|
GenericDefId::TraitId(_) => None,
|
2020-03-13 10:05:46 -05:00
|
|
|
GenericDefId::TypeAliasId(t) => Some(t.lookup(db.upcast()).container),
|
2020-02-14 12:16:42 -06:00
|
|
|
GenericDefId::ImplId(_) => None,
|
|
|
|
GenericDefId::EnumVariantId(_) => None,
|
2020-03-13 10:05:46 -05:00
|
|
|
GenericDefId::ConstId(c) => Some(c.lookup(db.upcast()).container),
|
2020-02-14 12:16:42 -06:00
|
|
|
};
|
|
|
|
if let Some(AssocContainerId::TraitId(trait_id)) = container {
|
|
|
|
// add `Self: Trait<T1, T2, ...>` to the environment in trait
|
|
|
|
// function default implementations (and hypothetical code
|
|
|
|
// inside consts or type aliases)
|
|
|
|
test_utils::tested_by!(trait_self_implements_self);
|
|
|
|
let substs = Substs::type_params(db, trait_id);
|
|
|
|
let trait_ref = TraitRef { trait_: trait_id, substs };
|
|
|
|
let pred = GenericPredicate::Implemented(trait_ref);
|
|
|
|
|
|
|
|
predicates.push(pred);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-25 04:10:26 -06:00
|
|
|
Arc::new(TraitEnvironment { predicates })
|
|
|
|
}
|
2019-06-29 12:14:52 -05:00
|
|
|
}
|
|
|
|
|
2019-05-05 07:21:00 -05:00
|
|
|
/// Resolve the where clause(s) of an item with generics.
|
2019-07-06 09:41:04 -05:00
|
|
|
pub(crate) fn generic_predicates_query(
|
2020-03-13 10:05:46 -05:00
|
|
|
db: &dyn HirDatabase,
|
2019-11-25 06:39:12 -06:00
|
|
|
def: GenericDefId,
|
2020-02-02 10:11:54 -06:00
|
|
|
) -> Arc<[Binders<GenericPredicate>]> {
|
2020-03-13 10:05:46 -05:00
|
|
|
let resolver = def.resolver(db.upcast());
|
2020-02-02 10:11:54 -06:00
|
|
|
let ctx =
|
|
|
|
TyLoweringContext::new(db, &resolver).with_type_param_mode(TypeParamLoweringMode::Variable);
|
2020-03-13 10:05:46 -05:00
|
|
|
let generics = generics(db.upcast(), def);
|
2019-10-13 23:06:05 -05:00
|
|
|
resolver
|
2019-07-06 09:41:04 -05:00
|
|
|
.where_predicates_in_scope()
|
2020-02-02 10:11:54 -06:00
|
|
|
.flat_map(|pred| {
|
|
|
|
GenericPredicate::from_where_predicate(&ctx, pred)
|
|
|
|
.map(|p| Binders::new(generics.len(), p))
|
|
|
|
})
|
2019-10-13 23:06:05 -05:00
|
|
|
.collect()
|
2019-05-05 07:21:00 -05:00
|
|
|
}
|
|
|
|
|
2019-05-19 08:08:16 -05:00
|
|
|
/// Resolve the default type params from generics
|
2020-03-13 10:05:46 -05:00
|
|
|
pub(crate) fn generic_defaults_query(db: &dyn HirDatabase, def: GenericDefId) -> Substs {
|
|
|
|
let resolver = def.resolver(db.upcast());
|
2020-01-25 16:38:33 -06:00
|
|
|
let ctx = TyLoweringContext::new(db, &resolver);
|
2020-03-13 10:05:46 -05:00
|
|
|
let generic_params = generics(db.upcast(), def);
|
2019-05-19 08:08:16 -05:00
|
|
|
|
|
|
|
let defaults = generic_params
|
2019-12-07 04:50:36 -06:00
|
|
|
.iter()
|
2020-01-24 07:32:47 -06:00
|
|
|
.map(|(_idx, p)| p.default.as_ref().map_or(Ty::Unknown, |t| Ty::from_hir(&ctx, t)))
|
2019-10-13 23:06:05 -05:00
|
|
|
.collect();
|
2019-05-19 08:08:16 -05:00
|
|
|
|
2019-10-13 23:06:05 -05:00
|
|
|
Substs(defaults)
|
2019-05-19 08:08:16 -05:00
|
|
|
}
|
|
|
|
|
2020-03-13 10:05:46 -05:00
|
|
|
fn fn_sig_for_fn(db: &dyn HirDatabase, def: FunctionId) -> PolyFnSig {
|
2019-11-25 07:16:41 -06:00
|
|
|
let data = db.function_data(def);
|
2020-03-13 10:05:46 -05:00
|
|
|
let resolver = def.resolver(db.upcast());
|
2020-01-25 16:38:33 -06:00
|
|
|
let ctx_params = TyLoweringContext::new(db, &resolver)
|
|
|
|
.with_impl_trait_mode(ImplTraitLoweringMode::Variable)
|
|
|
|
.with_type_param_mode(TypeParamLoweringMode::Variable);
|
2020-01-24 08:22:00 -06:00
|
|
|
let params = data.params.iter().map(|tr| Ty::from_hir(&ctx_params, tr)).collect::<Vec<_>>();
|
2020-01-25 16:38:33 -06:00
|
|
|
let ctx_ret = ctx_params.with_impl_trait_mode(ImplTraitLoweringMode::Opaque);
|
2020-01-24 08:22:00 -06:00
|
|
|
let ret = Ty::from_hir(&ctx_ret, &data.ret_type);
|
2020-03-13 10:05:46 -05:00
|
|
|
let generics = generics(db.upcast(), def.into());
|
2020-01-25 16:38:33 -06:00
|
|
|
let num_binders = generics.len();
|
|
|
|
Binders::new(num_binders, FnSig::from_params_and_return(params, ret))
|
2019-03-16 11:21:32 -05:00
|
|
|
}
|
|
|
|
|
2019-02-23 08:24:07 -06:00
|
|
|
/// Build the declared type of a function. This should not need to look at the
|
|
|
|
/// function body.
|
2020-03-13 10:05:46 -05:00
|
|
|
fn type_for_fn(db: &dyn HirDatabase, def: FunctionId) -> Binders<Ty> {
|
|
|
|
let generics = generics(db.upcast(), def.into());
|
2020-04-17 15:48:29 -05:00
|
|
|
let substs = Substs::bound_vars(&generics, DebruijnIndex::INNERMOST);
|
2020-01-25 16:38:33 -06:00
|
|
|
Binders::new(substs.len(), Ty::apply(TypeCtor::FnDef(def.into()), substs))
|
2019-02-23 08:24:07 -06:00
|
|
|
}
|
|
|
|
|
2019-02-25 01:27:47 -06:00
|
|
|
/// Build the declared type of a const.
|
2020-03-13 10:05:46 -05:00
|
|
|
fn type_for_const(db: &dyn HirDatabase, def: ConstId) -> Binders<Ty> {
|
2019-11-26 12:04:24 -06:00
|
|
|
let data = db.const_data(def);
|
2020-03-13 10:05:46 -05:00
|
|
|
let generics = generics(db.upcast(), def.into());
|
|
|
|
let resolver = def.resolver(db.upcast());
|
2020-01-31 08:57:44 -06:00
|
|
|
let ctx =
|
|
|
|
TyLoweringContext::new(db, &resolver).with_type_param_mode(TypeParamLoweringMode::Variable);
|
2019-02-25 01:27:47 -06:00
|
|
|
|
2020-01-25 16:38:33 -06:00
|
|
|
Binders::new(generics.len(), Ty::from_hir(&ctx, &data.type_ref))
|
2019-02-25 01:27:47 -06:00
|
|
|
}
|
|
|
|
|
2019-02-25 02:21:01 -06:00
|
|
|
/// Build the declared type of a static.
|
2020-03-13 10:05:46 -05:00
|
|
|
fn type_for_static(db: &dyn HirDatabase, def: StaticId) -> Binders<Ty> {
|
2019-11-26 12:04:24 -06:00
|
|
|
let data = db.static_data(def);
|
2020-03-13 10:05:46 -05:00
|
|
|
let resolver = def.resolver(db.upcast());
|
2020-01-25 16:38:33 -06:00
|
|
|
let ctx = TyLoweringContext::new(db, &resolver);
|
2019-02-25 02:21:01 -06:00
|
|
|
|
2020-01-25 16:38:33 -06:00
|
|
|
Binders::new(0, Ty::from_hir(&ctx, &data.type_ref))
|
2019-02-25 02:21:01 -06:00
|
|
|
}
|
|
|
|
|
2019-05-30 06:05:35 -05:00
|
|
|
/// Build the declared type of a static.
|
|
|
|
fn type_for_builtin(def: BuiltinType) -> Ty {
|
|
|
|
Ty::simple(match def {
|
|
|
|
BuiltinType::Char => TypeCtor::Char,
|
|
|
|
BuiltinType::Bool => TypeCtor::Bool,
|
|
|
|
BuiltinType::Str => TypeCtor::Str,
|
2019-11-12 06:09:25 -06:00
|
|
|
BuiltinType::Int(t) => TypeCtor::Int(IntTy::from(t).into()),
|
|
|
|
BuiltinType::Float(t) => TypeCtor::Float(FloatTy::from(t).into()),
|
2019-05-30 06:05:35 -05:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-03-13 10:05:46 -05:00
|
|
|
fn fn_sig_for_struct_constructor(db: &dyn HirDatabase, def: StructId) -> PolyFnSig {
|
2020-02-18 06:53:02 -06:00
|
|
|
let struct_data = db.struct_data(def);
|
2019-11-24 13:44:24 -06:00
|
|
|
let fields = struct_data.variant_data.fields();
|
2020-03-13 10:05:46 -05:00
|
|
|
let resolver = def.resolver(db.upcast());
|
2020-01-31 08:57:44 -06:00
|
|
|
let ctx =
|
|
|
|
TyLoweringContext::new(db, &resolver).with_type_param_mode(TypeParamLoweringMode::Variable);
|
2020-01-24 07:32:47 -06:00
|
|
|
let params =
|
|
|
|
fields.iter().map(|(_, field)| Ty::from_hir(&ctx, &field.type_ref)).collect::<Vec<_>>();
|
2019-11-26 12:04:24 -06:00
|
|
|
let ret = type_for_adt(db, def.into());
|
2020-01-25 16:38:33 -06:00
|
|
|
Binders::new(ret.num_binders, FnSig::from_params_and_return(params, ret.value))
|
2019-03-16 11:21:32 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Build the type of a tuple struct constructor.
|
2020-03-13 10:05:46 -05:00
|
|
|
fn type_for_struct_constructor(db: &dyn HirDatabase, def: StructId) -> Binders<Ty> {
|
2020-02-18 06:53:02 -06:00
|
|
|
let struct_data = db.struct_data(def);
|
2020-02-17 04:53:12 -06:00
|
|
|
if let StructKind::Unit = struct_data.variant_data.kind() {
|
|
|
|
return type_for_adt(db, def.into());
|
2019-03-16 11:21:32 -05:00
|
|
|
}
|
2020-03-13 10:05:46 -05:00
|
|
|
let generics = generics(db.upcast(), def.into());
|
2020-04-17 15:48:29 -05:00
|
|
|
let substs = Substs::bound_vars(&generics, DebruijnIndex::INNERMOST);
|
2020-01-25 16:38:33 -06:00
|
|
|
Binders::new(substs.len(), Ty::apply(TypeCtor::FnDef(def.into()), substs))
|
2019-02-23 08:24:07 -06:00
|
|
|
}
|
|
|
|
|
2020-03-13 10:05:46 -05:00
|
|
|
fn fn_sig_for_enum_variant_constructor(db: &dyn HirDatabase, def: EnumVariantId) -> PolyFnSig {
|
2019-11-25 07:16:41 -06:00
|
|
|
let enum_data = db.enum_data(def.parent);
|
|
|
|
let var_data = &enum_data.variants[def.local_id];
|
|
|
|
let fields = var_data.variant_data.fields();
|
2020-03-13 10:05:46 -05:00
|
|
|
let resolver = def.parent.resolver(db.upcast());
|
2020-01-31 08:57:44 -06:00
|
|
|
let ctx =
|
|
|
|
TyLoweringContext::new(db, &resolver).with_type_param_mode(TypeParamLoweringMode::Variable);
|
2020-01-24 07:32:47 -06:00
|
|
|
let params =
|
|
|
|
fields.iter().map(|(_, field)| Ty::from_hir(&ctx, &field.type_ref)).collect::<Vec<_>>();
|
2020-01-29 14:30:24 -06:00
|
|
|
let ret = type_for_adt(db, def.parent.into());
|
|
|
|
Binders::new(ret.num_binders, FnSig::from_params_and_return(params, ret.value))
|
2019-03-16 11:21:32 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Build the type of a tuple enum variant constructor.
|
2020-03-13 10:05:46 -05:00
|
|
|
fn type_for_enum_variant_constructor(db: &dyn HirDatabase, def: EnumVariantId) -> Binders<Ty> {
|
2019-11-26 12:04:24 -06:00
|
|
|
let enum_data = db.enum_data(def.parent);
|
|
|
|
let var_data = &enum_data.variants[def.local_id].variant_data;
|
2020-02-17 04:53:12 -06:00
|
|
|
if let StructKind::Unit = var_data.kind() {
|
|
|
|
return type_for_adt(db, def.parent.into());
|
2019-03-16 11:21:32 -05:00
|
|
|
}
|
2020-03-13 10:05:46 -05:00
|
|
|
let generics = generics(db.upcast(), def.parent.into());
|
2020-04-17 15:48:29 -05:00
|
|
|
let substs = Substs::bound_vars(&generics, DebruijnIndex::INNERMOST);
|
2020-02-18 06:53:02 -06:00
|
|
|
Binders::new(substs.len(), Ty::apply(TypeCtor::FnDef(def.into()), substs))
|
2019-02-23 08:24:07 -06:00
|
|
|
}
|
|
|
|
|
2020-03-13 10:05:46 -05:00
|
|
|
fn type_for_adt(db: &dyn HirDatabase, adt: AdtId) -> Binders<Ty> {
|
|
|
|
let generics = generics(db.upcast(), adt.into());
|
2020-04-17 15:48:29 -05:00
|
|
|
let substs = Substs::bound_vars(&generics, DebruijnIndex::INNERMOST);
|
2020-01-25 16:38:33 -06:00
|
|
|
Binders::new(substs.len(), Ty::apply(TypeCtor::Adt(adt), substs))
|
2019-02-23 08:24:07 -06:00
|
|
|
}
|
|
|
|
|
2020-03-13 10:05:46 -05:00
|
|
|
fn type_for_type_alias(db: &dyn HirDatabase, t: TypeAliasId) -> Binders<Ty> {
|
|
|
|
let generics = generics(db.upcast(), t.into());
|
|
|
|
let resolver = t.resolver(db.upcast());
|
2020-01-31 08:57:44 -06:00
|
|
|
let ctx =
|
|
|
|
TyLoweringContext::new(db, &resolver).with_type_param_mode(TypeParamLoweringMode::Variable);
|
2019-11-26 12:04:24 -06:00
|
|
|
let type_ref = &db.type_alias_data(t).type_ref;
|
2020-04-17 15:48:29 -05:00
|
|
|
let substs = Substs::bound_vars(&generics, DebruijnIndex::INNERMOST);
|
2020-01-24 07:32:47 -06:00
|
|
|
let inner = Ty::from_hir(&ctx, type_ref.as_ref().unwrap_or(&TypeRef::Error));
|
2020-01-25 16:38:33 -06:00
|
|
|
Binders::new(substs.len(), inner)
|
2019-02-24 10:25:41 -06:00
|
|
|
}
|
|
|
|
|
2019-02-23 08:24:07 -06:00
|
|
|
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
|
|
|
|
pub enum CallableDef {
|
2019-11-25 07:26:52 -06:00
|
|
|
FunctionId(FunctionId),
|
|
|
|
StructId(StructId),
|
|
|
|
EnumVariantId(EnumVariantId),
|
2019-02-23 08:24:07 -06:00
|
|
|
}
|
2019-11-25 07:26:52 -06:00
|
|
|
impl_froms!(CallableDef: FunctionId, StructId, EnumVariantId);
|
2019-07-06 10:43:13 -05:00
|
|
|
|
2019-09-26 14:37:03 -05:00
|
|
|
impl CallableDef {
|
2020-03-13 10:05:46 -05:00
|
|
|
pub fn krate(self, db: &dyn HirDatabase) -> CrateId {
|
|
|
|
let db = db.upcast();
|
2019-09-26 14:37:03 -05:00
|
|
|
match self {
|
2019-12-12 08:11:57 -06:00
|
|
|
CallableDef::FunctionId(f) => f.lookup(db).module(db),
|
2019-12-20 05:20:49 -06:00
|
|
|
CallableDef::StructId(s) => s.lookup(db).container.module(db),
|
|
|
|
CallableDef::EnumVariantId(e) => e.parent.lookup(db).container.module(db),
|
2019-09-26 14:37:03 -05:00
|
|
|
}
|
2019-12-12 08:11:57 -06:00
|
|
|
.krate
|
2019-09-26 14:37:03 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-25 06:39:12 -06:00
|
|
|
impl From<CallableDef> for GenericDefId {
|
|
|
|
fn from(def: CallableDef) -> GenericDefId {
|
2019-07-06 10:43:13 -05:00
|
|
|
match def {
|
2019-11-25 07:26:52 -06:00
|
|
|
CallableDef::FunctionId(f) => f.into(),
|
|
|
|
CallableDef::StructId(s) => s.into(),
|
|
|
|
CallableDef::EnumVariantId(e) => e.into(),
|
2019-07-06 10:43:13 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-11-26 12:04:24 -06:00
|
|
|
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
|
|
pub enum TyDefId {
|
|
|
|
BuiltinType(BuiltinType),
|
|
|
|
AdtId(AdtId),
|
|
|
|
TypeAliasId(TypeAliasId),
|
|
|
|
}
|
|
|
|
impl_froms!(TyDefId: BuiltinType, AdtId(StructId, EnumId, UnionId), TypeAliasId);
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
|
|
|
pub enum ValueTyDefId {
|
|
|
|
FunctionId(FunctionId),
|
|
|
|
StructId(StructId),
|
|
|
|
EnumVariantId(EnumVariantId),
|
|
|
|
ConstId(ConstId),
|
|
|
|
StaticId(StaticId),
|
|
|
|
}
|
|
|
|
impl_froms!(ValueTyDefId: FunctionId, StructId, EnumVariantId, ConstId, StaticId);
|
|
|
|
|
|
|
|
/// Build the declared type of an item. This depends on the namespace; e.g. for
|
|
|
|
/// `struct Foo(usize)`, we have two types: The type of the struct itself, and
|
|
|
|
/// the constructor function `(usize) -> Foo` which lives in the values
|
|
|
|
/// namespace.
|
2020-03-13 10:05:46 -05:00
|
|
|
pub(crate) fn ty_query(db: &dyn HirDatabase, def: TyDefId) -> Binders<Ty> {
|
2019-11-26 12:04:24 -06:00
|
|
|
match def {
|
2020-01-25 16:38:33 -06:00
|
|
|
TyDefId::BuiltinType(it) => Binders::new(0, type_for_builtin(it)),
|
2019-11-26 12:04:24 -06:00
|
|
|
TyDefId::AdtId(it) => type_for_adt(db, it),
|
|
|
|
TyDefId::TypeAliasId(it) => type_for_type_alias(db, it),
|
|
|
|
}
|
|
|
|
}
|
2019-11-30 05:48:51 -06:00
|
|
|
|
2020-03-13 10:05:46 -05:00
|
|
|
pub(crate) fn ty_recover(db: &dyn HirDatabase, _cycle: &[String], def: &TyDefId) -> Binders<Ty> {
|
2020-02-07 11:17:23 -06:00
|
|
|
let num_binders = match *def {
|
|
|
|
TyDefId::BuiltinType(_) => 0,
|
2020-03-13 10:05:46 -05:00
|
|
|
TyDefId::AdtId(it) => generics(db.upcast(), it.into()).len(),
|
|
|
|
TyDefId::TypeAliasId(it) => generics(db.upcast(), it.into()).len(),
|
2020-02-07 11:17:23 -06:00
|
|
|
};
|
|
|
|
Binders::new(num_binders, Ty::Unknown)
|
2019-11-30 05:48:51 -06:00
|
|
|
}
|
|
|
|
|
2020-03-13 10:05:46 -05:00
|
|
|
pub(crate) fn value_ty_query(db: &dyn HirDatabase, def: ValueTyDefId) -> Binders<Ty> {
|
2019-11-26 12:04:24 -06:00
|
|
|
match def {
|
|
|
|
ValueTyDefId::FunctionId(it) => type_for_fn(db, it),
|
|
|
|
ValueTyDefId::StructId(it) => type_for_struct_constructor(db, it),
|
|
|
|
ValueTyDefId::EnumVariantId(it) => type_for_enum_variant_constructor(db, it),
|
|
|
|
ValueTyDefId::ConstId(it) => type_for_const(db, it),
|
|
|
|
ValueTyDefId::StaticId(it) => type_for_static(db, it),
|
|
|
|
}
|
|
|
|
}
|
2019-11-27 13:12:09 -06:00
|
|
|
|
2020-03-13 10:05:46 -05:00
|
|
|
pub(crate) fn impl_self_ty_query(db: &dyn HirDatabase, impl_id: ImplId) -> Binders<Ty> {
|
2019-11-27 13:12:09 -06:00
|
|
|
let impl_data = db.impl_data(impl_id);
|
2020-03-13 10:05:46 -05:00
|
|
|
let resolver = impl_id.resolver(db.upcast());
|
|
|
|
let generics = generics(db.upcast(), impl_id.into());
|
2020-01-31 08:57:44 -06:00
|
|
|
let ctx =
|
|
|
|
TyLoweringContext::new(db, &resolver).with_type_param_mode(TypeParamLoweringMode::Variable);
|
2020-01-25 16:38:33 -06:00
|
|
|
Binders::new(generics.len(), Ty::from_hir(&ctx, &impl_data.target_type))
|
2019-11-30 05:35:37 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn impl_self_ty_recover(
|
2020-03-13 10:05:46 -05:00
|
|
|
db: &dyn HirDatabase,
|
2019-11-30 05:35:37 -06:00
|
|
|
_cycle: &[String],
|
2020-01-25 16:38:33 -06:00
|
|
|
impl_id: &ImplId,
|
|
|
|
) -> Binders<Ty> {
|
2020-03-13 10:05:46 -05:00
|
|
|
let generics = generics(db.upcast(), (*impl_id).into());
|
2020-01-25 16:38:33 -06:00
|
|
|
Binders::new(generics.len(), Ty::Unknown)
|
2019-11-30 05:35:37 -06:00
|
|
|
}
|
|
|
|
|
2020-03-13 10:05:46 -05:00
|
|
|
pub(crate) fn impl_trait_query(db: &dyn HirDatabase, impl_id: ImplId) -> Option<Binders<TraitRef>> {
|
2019-11-30 05:35:37 -06:00
|
|
|
let impl_data = db.impl_data(impl_id);
|
2020-03-13 10:05:46 -05:00
|
|
|
let resolver = impl_id.resolver(db.upcast());
|
2020-02-02 10:11:54 -06:00
|
|
|
let ctx =
|
|
|
|
TyLoweringContext::new(db, &resolver).with_type_param_mode(TypeParamLoweringMode::Variable);
|
2020-01-31 09:52:43 -06:00
|
|
|
let self_ty = db.impl_self_ty(impl_id);
|
2019-11-30 05:35:37 -06:00
|
|
|
let target_trait = impl_data.target_trait.as_ref()?;
|
2020-02-02 10:11:54 -06:00
|
|
|
Some(Binders::new(
|
|
|
|
self_ty.num_binders,
|
2020-02-18 06:53:02 -06:00
|
|
|
TraitRef::from_hir(&ctx, target_trait, Some(self_ty.value))?,
|
2020-02-02 10:11:54 -06:00
|
|
|
))
|
2019-11-27 13:12:09 -06:00
|
|
|
}
|