rust/crates/ra_hir_ty/src/traits/chalk.rs

856 lines
29 KiB
Rust
Raw Normal View History

//! Conversion code from/to Chalk.
use std::{fmt, sync::Arc};
2019-05-01 13:50:49 -05:00
use log::debug;
2020-01-17 15:12:15 -06:00
use chalk_ir::{cast::Cast, GoalData, Parameter, PlaceholderIndex, TypeName, UniverseIndex};
use hir_def::{AssocContainerId, AssocItemId, GenericDefId, HasModule, Lookup, TypeAliasId};
use ra_db::{
salsa::{InternId, InternKey},
CrateId,
2019-11-26 09:00:36 -06:00
};
use super::{builtin, AssocTyValue, Canonical, ChalkContext, Impl, Obligation};
use crate::{
db::HirDatabase, display::HirDisplay, utils::generics, ApplicationTy, GenericPredicate,
2020-02-02 10:11:54 -06:00
ProjectionTy, Substs, TraitRef, Ty, TypeCtor,
};
#[derive(Debug, Copy, Clone, Hash, PartialOrd, Ord, PartialEq, Eq)]
pub struct TypeFamily {}
impl chalk_ir::family::TypeFamily for TypeFamily {
type InternedType = Box<chalk_ir::TyData<Self>>;
type InternedLifetime = chalk_ir::LifetimeData<Self>;
type InternedParameter = chalk_ir::ParameterData<Self>;
2020-01-17 15:12:15 -06:00
type InternedGoal = Arc<GoalData<Self>>;
type InternedSubstitution = Vec<Parameter<Self>>;
type DefId = InternId;
// FIXME: implement these
fn debug_struct_id(
_type_kind_id: chalk_ir::StructId<Self>,
_fmt: &mut fmt::Formatter<'_>,
) -> Option<fmt::Result> {
None
}
fn debug_trait_id(
_type_kind_id: chalk_ir::TraitId<Self>,
_fmt: &mut fmt::Formatter<'_>,
) -> Option<fmt::Result> {
None
}
fn debug_assoc_type_id(
_id: chalk_ir::AssocTypeId<Self>,
_fmt: &mut fmt::Formatter<'_>,
) -> Option<fmt::Result> {
None
}
2020-01-17 15:12:15 -06:00
fn debug_alias(
_projection: &chalk_ir::AliasTy<Self>,
_fmt: &mut fmt::Formatter<'_>,
) -> Option<fmt::Result> {
None
}
fn intern_ty(ty: chalk_ir::TyData<Self>) -> Box<chalk_ir::TyData<Self>> {
Box::new(ty)
}
fn ty_data(ty: &Box<chalk_ir::TyData<Self>>) -> &chalk_ir::TyData<Self> {
ty
}
fn intern_lifetime(lifetime: chalk_ir::LifetimeData<Self>) -> chalk_ir::LifetimeData<Self> {
lifetime
}
fn lifetime_data(lifetime: &chalk_ir::LifetimeData<Self>) -> &chalk_ir::LifetimeData<Self> {
lifetime
}
fn intern_parameter(parameter: chalk_ir::ParameterData<Self>) -> chalk_ir::ParameterData<Self> {
parameter
}
fn parameter_data(parameter: &chalk_ir::ParameterData<Self>) -> &chalk_ir::ParameterData<Self> {
parameter
}
2020-01-17 15:12:15 -06:00
fn intern_goal(goal: GoalData<Self>) -> Arc<GoalData<Self>> {
Arc::new(goal)
}
fn goal_data(goal: &Arc<GoalData<Self>>) -> &GoalData<Self> {
goal
}
fn intern_substitution<E>(
data: impl IntoIterator<Item = Result<Parameter<Self>, E>>,
) -> Result<Vec<Parameter<Self>>, E> {
data.into_iter().collect()
}
fn substitution_data(substitution: &Vec<Parameter<Self>>) -> &[Parameter<Self>] {
substitution
}
}
impl chalk_ir::family::HasTypeFamily for TypeFamily {
type TypeFamily = Self;
}
pub type AssocTypeId = chalk_ir::AssocTypeId<TypeFamily>;
pub type AssociatedTyDatum = chalk_rust_ir::AssociatedTyDatum<TypeFamily>;
pub type TraitId = chalk_ir::TraitId<TypeFamily>;
pub type TraitDatum = chalk_rust_ir::TraitDatum<TypeFamily>;
pub type StructId = chalk_ir::StructId<TypeFamily>;
pub type StructDatum = chalk_rust_ir::StructDatum<TypeFamily>;
pub type ImplId = chalk_ir::ImplId<TypeFamily>;
pub type ImplDatum = chalk_rust_ir::ImplDatum<TypeFamily>;
pub type AssociatedTyValueId = chalk_rust_ir::AssociatedTyValueId;
pub type AssociatedTyValue = chalk_rust_ir::AssociatedTyValue<TypeFamily>;
pub(super) trait ToChalk {
type Chalk;
fn to_chalk(self, db: &impl HirDatabase) -> Self::Chalk;
fn from_chalk(db: &impl HirDatabase, chalk: Self::Chalk) -> Self;
}
pub(super) fn from_chalk<T, ChalkT>(db: &impl HirDatabase, chalk: ChalkT) -> T
where
T: ToChalk<Chalk = ChalkT>,
{
T::from_chalk(db, chalk)
}
impl ToChalk for Ty {
2019-12-21 07:46:15 -06:00
type Chalk = chalk_ir::Ty<TypeFamily>;
fn to_chalk(self, db: &impl HirDatabase) -> chalk_ir::Ty<TypeFamily> {
match self {
Ty::Apply(apply_ty) => {
2019-12-21 07:46:15 -06:00
let name = apply_ty.ctor.to_chalk(db);
2020-01-17 15:12:15 -06:00
let substitution = apply_ty.parameters.to_chalk(db);
chalk_ir::ApplicationTy { name, substitution }.cast().intern()
}
Ty::Projection(proj_ty) => {
let associated_ty_id = proj_ty.associated_ty.to_chalk(db);
2020-01-17 15:12:15 -06:00
let substitution = proj_ty.parameters.to_chalk(db);
chalk_ir::AliasTy { associated_ty_id, substitution }.cast().intern()
}
Ty::Placeholder(id) => {
2020-01-31 09:52:43 -06:00
let interned_id = db.intern_type_param_id(id);
2020-02-07 08:13:15 -06:00
PlaceholderIndex {
ui: UniverseIndex::ROOT,
idx: interned_id.as_intern_id().as_usize(),
}
.to_ty::<TypeFamily>()
}
Ty::Bound(idx) => chalk_ir::TyData::BoundVar(idx as usize).intern(),
Ty::Infer(_infer_ty) => panic!("uncanonicalized infer ty"),
2019-11-15 14:00:27 -06:00
Ty::Dyn(predicates) => {
let where_clauses = predicates
.iter()
.filter(|p| !p.is_error())
.cloned()
.map(|p| p.to_chalk(db))
.collect();
2020-01-17 15:12:15 -06:00
let bounded_ty = chalk_ir::DynTy { bounds: make_binders(where_clauses, 1) };
chalk_ir::TyData::Dyn(bounded_ty).intern()
2019-11-15 14:00:27 -06:00
}
2020-01-17 15:12:15 -06:00
Ty::Opaque(_) | Ty::Unknown => {
let substitution = chalk_ir::Substitution::empty();
let name = TypeName::Error;
2020-01-17 15:12:15 -06:00
chalk_ir::ApplicationTy { name, substitution }.cast().intern()
}
}
}
2019-12-21 07:46:15 -06:00
fn from_chalk(db: &impl HirDatabase, chalk: chalk_ir::Ty<TypeFamily>) -> Self {
match chalk.data().clone() {
2019-12-21 07:46:15 -06:00
chalk_ir::TyData::Apply(apply_ty) => match apply_ty.name {
TypeName::Error => Ty::Unknown,
_ => {
let ctor = from_chalk(db, apply_ty.name);
2020-01-17 15:12:15 -06:00
let parameters = from_chalk(db, apply_ty.substitution);
2019-12-21 07:46:15 -06:00
Ty::Apply(ApplicationTy { ctor, parameters })
}
2019-12-21 07:46:15 -06:00
},
chalk_ir::TyData::Placeholder(idx) => {
assert_eq!(idx.ui, UniverseIndex::ROOT);
2020-02-07 08:13:15 -06:00
let interned_id = crate::db::GlobalTypeParamId::from_intern_id(
crate::salsa::InternId::from(idx.idx),
);
Ty::Placeholder(db.lookup_intern_type_param_id(interned_id))
}
2020-01-17 15:12:15 -06:00
chalk_ir::TyData::Alias(proj) => {
2019-09-22 13:08:46 -05:00
let associated_ty = from_chalk(db, proj.associated_ty_id);
2020-01-17 15:12:15 -06:00
let parameters = from_chalk(db, proj.substitution);
2019-09-22 13:08:46 -05:00
Ty::Projection(ProjectionTy { associated_ty, parameters })
}
2020-01-17 15:12:15 -06:00
chalk_ir::TyData::Function(_) => unimplemented!(),
chalk_ir::TyData::BoundVar(idx) => Ty::Bound(idx as u32),
chalk_ir::TyData::InferenceVar(_iv) => Ty::Unknown,
chalk_ir::TyData::Dyn(where_clauses) => {
assert_eq!(where_clauses.bounds.binders.len(), 1);
let predicates =
where_clauses.bounds.value.into_iter().map(|c| from_chalk(db, c)).collect();
Ty::Dyn(predicates)
}
}
}
}
impl ToChalk for Substs {
2020-01-17 15:12:15 -06:00
type Chalk = chalk_ir::Substitution<TypeFamily>;
2020-01-17 15:12:15 -06:00
fn to_chalk(self, db: &impl HirDatabase) -> chalk_ir::Substitution<TypeFamily> {
chalk_ir::Substitution::from(self.iter().map(|ty| ty.clone().to_chalk(db)))
}
2020-01-17 15:12:15 -06:00
fn from_chalk(db: &impl HirDatabase, parameters: chalk_ir::Substitution<TypeFamily>) -> Substs {
let tys = parameters
.into_iter()
.map(|p| match p.ty() {
Some(ty) => from_chalk(db, ty.clone()),
None => unimplemented!(),
})
2019-10-13 23:06:05 -05:00
.collect();
Substs(tys)
}
}
impl ToChalk for TraitRef {
2019-12-21 07:46:15 -06:00
type Chalk = chalk_ir::TraitRef<TypeFamily>;
2019-12-21 07:46:15 -06:00
fn to_chalk(self: TraitRef, db: &impl HirDatabase) -> chalk_ir::TraitRef<TypeFamily> {
let trait_id = self.trait_.to_chalk(db);
2020-01-17 15:12:15 -06:00
let substitution = self.substs.to_chalk(db);
chalk_ir::TraitRef { trait_id, substitution }
}
2019-12-21 07:46:15 -06:00
fn from_chalk(db: &impl HirDatabase, trait_ref: chalk_ir::TraitRef<TypeFamily>) -> Self {
let trait_ = from_chalk(db, trait_ref.trait_id);
2020-01-17 15:12:15 -06:00
let substs = from_chalk(db, trait_ref.substitution);
TraitRef { trait_, substs }
}
}
impl ToChalk for hir_def::TraitId {
type Chalk = TraitId;
fn to_chalk(self, _db: &impl HirDatabase) -> TraitId {
chalk_ir::TraitId(self.as_intern_id())
}
fn from_chalk(_db: &impl HirDatabase, trait_id: TraitId) -> hir_def::TraitId {
InternKey::from_intern_id(trait_id.0)
}
}
impl ToChalk for TypeCtor {
2019-12-21 07:46:15 -06:00
type Chalk = TypeName<TypeFamily>;
2019-12-21 07:46:15 -06:00
fn to_chalk(self, db: &impl HirDatabase) -> TypeName<TypeFamily> {
match self {
TypeCtor::AssociatedType(type_alias) => {
let type_id = type_alias.to_chalk(db);
TypeName::AssociatedType(type_id)
}
_ => {
// other TypeCtors get interned and turned into a chalk StructId
let struct_id = db.intern_type_ctor(self).into();
TypeName::Struct(struct_id)
}
}
}
2019-12-21 07:46:15 -06:00
fn from_chalk(db: &impl HirDatabase, type_name: TypeName<TypeFamily>) -> TypeCtor {
match type_name {
TypeName::Struct(struct_id) => db.lookup_intern_type_ctor(struct_id.into()),
TypeName::AssociatedType(type_id) => TypeCtor::AssociatedType(from_chalk(db, type_id)),
TypeName::Error => {
// this should not be reached, since we don't represent TypeName::Error with TypeCtor
unreachable!()
}
}
}
}
2019-09-09 15:10:58 -05:00
impl ToChalk for Impl {
type Chalk = ImplId;
fn to_chalk(self, db: &impl HirDatabase) -> ImplId {
2019-11-15 12:28:00 -06:00
db.intern_chalk_impl(self).into()
}
fn from_chalk(db: &impl HirDatabase, impl_id: ImplId) -> Impl {
2019-11-15 12:28:00 -06:00
db.lookup_intern_chalk_impl(impl_id.into())
}
}
2019-11-25 09:44:36 -06:00
impl ToChalk for TypeAliasId {
type Chalk = AssocTypeId;
2019-11-25 09:44:36 -06:00
fn to_chalk(self, _db: &impl HirDatabase) -> AssocTypeId {
chalk_ir::AssocTypeId(self.as_intern_id())
2019-11-25 09:44:36 -06:00
}
fn from_chalk(_db: &impl HirDatabase, type_alias_id: AssocTypeId) -> TypeAliasId {
InternKey::from_intern_id(type_alias_id.0)
2019-11-25 09:44:36 -06:00
}
}
impl ToChalk for AssocTyValue {
type Chalk = AssociatedTyValueId;
fn to_chalk(self, db: &impl HirDatabase) -> AssociatedTyValueId {
db.intern_assoc_ty_value(self).into()
}
fn from_chalk(db: &impl HirDatabase, assoc_ty_value_id: AssociatedTyValueId) -> AssocTyValue {
db.lookup_intern_assoc_ty_value(assoc_ty_value_id.into())
}
}
2019-05-05 07:21:00 -05:00
impl ToChalk for GenericPredicate {
2019-12-21 07:46:15 -06:00
type Chalk = chalk_ir::QuantifiedWhereClause<TypeFamily>;
2019-05-05 07:21:00 -05:00
2019-12-21 07:46:15 -06:00
fn to_chalk(self, db: &impl HirDatabase) -> chalk_ir::QuantifiedWhereClause<TypeFamily> {
2019-05-05 07:21:00 -05:00
match self {
GenericPredicate::Implemented(trait_ref) => {
make_binders(chalk_ir::WhereClause::Implemented(trait_ref.to_chalk(db)), 0)
}
GenericPredicate::Projection(projection_pred) => make_binders(
2020-01-17 15:12:15 -06:00
chalk_ir::WhereClause::AliasEq(chalk_ir::AliasEq {
alias: projection_pred.projection_ty.to_chalk(db),
ty: projection_pred.ty.to_chalk(db),
}),
0,
),
GenericPredicate::Error => panic!("tried passing GenericPredicate::Error to Chalk"),
2019-05-05 07:21:00 -05:00
}
}
fn from_chalk(
db: &impl HirDatabase,
2019-12-21 07:46:15 -06:00
where_clause: chalk_ir::QuantifiedWhereClause<TypeFamily>,
2019-05-05 07:21:00 -05:00
) -> GenericPredicate {
match where_clause.value {
chalk_ir::WhereClause::Implemented(tr) => {
GenericPredicate::Implemented(from_chalk(db, tr))
}
2020-01-17 15:12:15 -06:00
chalk_ir::WhereClause::AliasEq(projection_eq) => {
let projection_ty = from_chalk(db, projection_eq.alias);
let ty = from_chalk(db, projection_eq.ty);
GenericPredicate::Projection(super::ProjectionPredicate { projection_ty, ty })
}
}
2019-05-05 07:21:00 -05:00
}
}
impl ToChalk for ProjectionTy {
2020-01-17 15:12:15 -06:00
type Chalk = chalk_ir::AliasTy<TypeFamily>;
2020-01-17 15:12:15 -06:00
fn to_chalk(self, db: &impl HirDatabase) -> chalk_ir::AliasTy<TypeFamily> {
chalk_ir::AliasTy {
associated_ty_id: self.associated_ty.to_chalk(db),
2020-01-17 15:12:15 -06:00
substitution: self.parameters.to_chalk(db),
}
}
fn from_chalk(
db: &impl HirDatabase,
2020-01-17 15:12:15 -06:00
projection_ty: chalk_ir::AliasTy<TypeFamily>,
) -> ProjectionTy {
ProjectionTy {
associated_ty: from_chalk(db, projection_ty.associated_ty_id),
2020-01-17 15:12:15 -06:00
parameters: from_chalk(db, projection_ty.substitution),
}
}
}
impl ToChalk for super::ProjectionPredicate {
2019-12-21 07:46:15 -06:00
type Chalk = chalk_ir::Normalize<TypeFamily>;
2019-12-21 07:46:15 -06:00
fn to_chalk(self, db: &impl HirDatabase) -> chalk_ir::Normalize<TypeFamily> {
2020-01-17 15:12:15 -06:00
chalk_ir::Normalize { alias: self.projection_ty.to_chalk(db), ty: self.ty.to_chalk(db) }
}
2019-12-21 07:46:15 -06:00
fn from_chalk(_db: &impl HirDatabase, _normalize: chalk_ir::Normalize<TypeFamily>) -> Self {
unimplemented!()
}
}
impl ToChalk for Obligation {
2019-12-21 07:46:15 -06:00
type Chalk = chalk_ir::DomainGoal<TypeFamily>;
2019-12-21 07:46:15 -06:00
fn to_chalk(self, db: &impl HirDatabase) -> chalk_ir::DomainGoal<TypeFamily> {
match self {
Obligation::Trait(tr) => tr.to_chalk(db).cast(),
Obligation::Projection(pr) => pr.to_chalk(db).cast(),
}
}
2019-12-21 07:46:15 -06:00
fn from_chalk(_db: &impl HirDatabase, _goal: chalk_ir::DomainGoal<TypeFamily>) -> Self {
unimplemented!()
}
}
impl<T> ToChalk for Canonical<T>
where
T: ToChalk,
{
type Chalk = chalk_ir::Canonical<T::Chalk>;
fn to_chalk(self, db: &impl HirDatabase) -> chalk_ir::Canonical<T::Chalk> {
let parameter = chalk_ir::ParameterKind::Ty(chalk_ir::UniverseIndex::ROOT);
let value = self.value.to_chalk(db);
2020-02-18 07:32:19 -06:00
chalk_ir::Canonical { value, binders: vec![parameter; self.num_vars] }
}
fn from_chalk(db: &impl HirDatabase, canonical: chalk_ir::Canonical<T::Chalk>) -> Canonical<T> {
Canonical { num_vars: canonical.binders.len(), value: from_chalk(db, canonical.value) }
}
}
2019-07-09 14:34:23 -05:00
impl ToChalk for Arc<super::TraitEnvironment> {
2019-12-21 07:46:15 -06:00
type Chalk = chalk_ir::Environment<TypeFamily>;
2019-12-21 07:46:15 -06:00
fn to_chalk(self, db: &impl HirDatabase) -> chalk_ir::Environment<TypeFamily> {
let mut clauses = Vec::new();
for pred in &self.predicates {
if pred.is_error() {
// for env, we just ignore errors
continue;
}
2019-12-21 07:46:15 -06:00
let program_clause: chalk_ir::ProgramClause<TypeFamily> =
pred.clone().to_chalk(db).cast();
clauses.push(program_clause.into_from_env_clause());
}
chalk_ir::Environment::new().add_clauses(clauses)
}
fn from_chalk(
_db: &impl HirDatabase,
2019-12-21 07:46:15 -06:00
_env: chalk_ir::Environment<TypeFamily>,
2019-07-09 14:34:23 -05:00
) -> Arc<super::TraitEnvironment> {
unimplemented!()
}
}
impl<T: ToChalk> ToChalk for super::InEnvironment<T>
where
2019-12-21 07:46:15 -06:00
T::Chalk: chalk_ir::family::HasTypeFamily<TypeFamily = TypeFamily>,
{
type Chalk = chalk_ir::InEnvironment<T::Chalk>;
fn to_chalk(self, db: &impl HirDatabase) -> chalk_ir::InEnvironment<T::Chalk> {
chalk_ir::InEnvironment {
environment: self.environment.to_chalk(db),
goal: self.value.to_chalk(db),
}
}
fn from_chalk(
db: &impl HirDatabase,
in_env: chalk_ir::InEnvironment<T::Chalk>,
) -> super::InEnvironment<T> {
super::InEnvironment {
environment: from_chalk(db, in_env.environment),
value: from_chalk(db, in_env.goal),
}
}
}
impl ToChalk for builtin::BuiltinImplData {
2019-12-21 07:46:15 -06:00
type Chalk = ImplDatum;
2019-12-21 07:46:15 -06:00
fn to_chalk(self, db: &impl HirDatabase) -> ImplDatum {
let impl_type = chalk_rust_ir::ImplType::External;
let where_clauses = self.where_clauses.into_iter().map(|w| w.to_chalk(db)).collect();
let impl_datum_bound =
chalk_rust_ir::ImplDatumBound { trait_ref: self.trait_ref.to_chalk(db), where_clauses };
let associated_ty_value_ids =
self.assoc_ty_values.into_iter().map(|v| v.to_chalk(db)).collect();
chalk_rust_ir::ImplDatum {
binders: make_binders(impl_datum_bound, self.num_vars),
impl_type,
polarity: chalk_rust_ir::Polarity::Positive,
associated_ty_value_ids,
}
}
2019-12-21 07:46:15 -06:00
fn from_chalk(_db: &impl HirDatabase, _data: ImplDatum) -> Self {
unimplemented!()
}
}
impl ToChalk for builtin::BuiltinImplAssocTyValueData {
2019-12-21 07:46:15 -06:00
type Chalk = AssociatedTyValue;
2019-12-21 07:46:15 -06:00
fn to_chalk(self, db: &impl HirDatabase) -> AssociatedTyValue {
let value_bound = chalk_rust_ir::AssociatedTyValueBound { ty: self.value.to_chalk(db) };
chalk_rust_ir::AssociatedTyValue {
associated_ty_id: self.assoc_ty_id.to_chalk(db),
impl_id: self.impl_.to_chalk(db),
value: make_binders(value_bound, self.num_vars),
}
}
fn from_chalk(
_db: &impl HirDatabase,
2019-12-21 07:46:15 -06:00
_data: AssociatedTyValue,
) -> builtin::BuiltinImplAssocTyValueData {
unimplemented!()
}
}
fn make_binders<T>(value: T, num_vars: usize) -> chalk_ir::Binders<T> {
chalk_ir::Binders {
value,
binders: std::iter::repeat(chalk_ir::ParameterKind::Ty(())).take(num_vars).collect(),
}
}
2019-05-05 07:21:00 -05:00
fn convert_where_clauses(
db: &impl HirDatabase,
2019-11-25 06:39:12 -06:00
def: GenericDefId,
2019-05-05 07:21:00 -05:00
substs: &Substs,
2019-12-21 07:46:15 -06:00
) -> Vec<chalk_ir::QuantifiedWhereClause<TypeFamily>> {
2019-05-05 07:21:00 -05:00
let generic_predicates = db.generic_predicates(def);
let mut result = Vec::with_capacity(generic_predicates.len());
for pred in generic_predicates.iter() {
2020-02-02 10:11:54 -06:00
if pred.value.is_error() {
// skip errored predicates completely
continue;
}
2020-02-02 10:11:54 -06:00
result.push(pred.clone().subst(substs).to_chalk(db));
2019-05-05 07:21:00 -05:00
}
result
2019-05-05 07:21:00 -05:00
}
2019-12-21 07:46:15 -06:00
impl<'a, DB> chalk_solve::RustIrDatabase<TypeFamily> for ChalkContext<'a, DB>
where
DB: HirDatabase,
{
fn associated_ty_data(&self, id: AssocTypeId) -> Arc<AssociatedTyDatum> {
self.db.associated_ty_data(id)
}
fn trait_datum(&self, trait_id: TraitId) -> Arc<TraitDatum> {
self.db.trait_datum(self.krate, trait_id)
}
fn struct_datum(&self, struct_id: StructId) -> Arc<StructDatum> {
self.db.struct_datum(self.krate, struct_id)
}
fn impl_datum(&self, impl_id: ImplId) -> Arc<ImplDatum> {
self.db.impl_datum(self.krate, impl_id)
}
2019-09-24 11:27:31 -05:00
fn impls_for_trait(
&self,
trait_id: TraitId,
parameters: &[Parameter<TypeFamily>],
) -> Vec<ImplId> {
2019-05-01 13:50:49 -05:00
debug!("impls_for_trait {:?}", trait_id);
let trait_: hir_def::TraitId = from_chalk(self.db, trait_id);
// Note: Since we're using impls_for_trait, only impls where the trait
// can be resolved should ever reach Chalk. `impl_datum` relies on that
// and will panic if the trait can't be resolved.
2019-09-09 15:10:58 -05:00
let mut result: Vec<_> = self
.db
.impls_for_trait(self.krate, trait_)
.iter()
2019-09-09 15:10:58 -05:00
.copied()
.map(Impl::ImplBlock)
2019-09-09 15:10:58 -05:00
.map(|impl_| impl_.to_chalk(self.db))
.collect();
2019-09-09 15:10:58 -05:00
let ty: Ty = from_chalk(self.db, parameters[0].assert_ty_ref().clone());
builtin::get_builtin_impls(self.db, self.krate, &ty, trait_, |i| {
result.push(i.to_chalk(self.db))
});
2019-09-09 15:10:58 -05:00
debug!("impls_for_trait returned {} impls", result.len());
result
}
fn impl_provided_for(&self, auto_trait_id: TraitId, struct_id: StructId) -> bool {
2019-05-01 13:50:49 -05:00
debug!("impl_provided_for {:?}, {:?}", auto_trait_id, struct_id);
false // FIXME
}
fn associated_ty_value(&self, id: AssociatedTyValueId) -> Arc<AssociatedTyValue> {
self.db.associated_ty_value(self.krate, id)
}
2019-12-21 07:46:15 -06:00
fn custom_clauses(&self) -> Vec<chalk_ir::ProgramClause<TypeFamily>> {
2019-05-01 16:26:42 -05:00
vec![]
}
fn local_impls_to_coherence_check(&self, _trait_id: TraitId) -> Vec<ImplId> {
2019-09-23 13:33:47 -05:00
// We don't do coherence checking (yet)
unimplemented!()
2019-05-01 16:26:42 -05:00
}
fn as_struct_id(&self, id: &TypeName<TypeFamily>) -> Option<StructId> {
match id {
TypeName::Struct(struct_id) => Some(*struct_id),
_ => None,
}
}
}
pub(crate) fn associated_ty_data_query(
db: &impl HirDatabase,
id: AssocTypeId,
) -> Arc<AssociatedTyDatum> {
debug!("associated_ty_data {:?}", id);
2019-11-25 09:58:17 -06:00
let type_alias: TypeAliasId = from_chalk(db, id);
let trait_ = match type_alias.lookup(db).container {
2019-12-20 04:59:50 -06:00
AssocContainerId::TraitId(t) => t,
_ => panic!("associated type not in trait"),
};
let generic_params = generics(db, type_alias.into());
let bound_data = chalk_rust_ir::AssociatedTyDatumBound {
// FIXME add bounds and where clauses
bounds: vec![],
where_clauses: vec![],
};
let datum = AssociatedTyDatum {
2019-11-26 09:00:36 -06:00
trait_id: trait_.to_chalk(db),
id,
2019-11-25 09:58:17 -06:00
name: lalrpop_intern::intern(&db.type_alias_data(type_alias).name.to_string()),
2019-12-07 06:05:05 -06:00
binders: make_binders(bound_data, generic_params.len()),
};
Arc::new(datum)
}
pub(crate) fn trait_datum_query(
db: &impl HirDatabase,
2019-11-27 00:42:55 -06:00
krate: CrateId,
trait_id: TraitId,
) -> Arc<TraitDatum> {
debug!("trait_datum {:?}", trait_id);
let trait_: hir_def::TraitId = from_chalk(db, trait_id);
2019-11-26 09:00:36 -06:00
let trait_data = db.trait_data(trait_);
debug!("trait {:?} = {:?}", trait_id, trait_data.name);
let generic_params = generics(db, trait_.into());
let bound_vars = Substs::bound_vars(&generic_params);
let flags = chalk_rust_ir::TraitFlags {
2019-11-26 09:00:36 -06:00
auto: trait_data.auto,
2019-12-20 05:29:25 -06:00
upstream: trait_.lookup(db).container.module(db).krate != krate,
non_enumerable: true,
coinductive: false, // only relevant for Chalk testing
// FIXME set these flags correctly
marker: false,
fundamental: false,
};
2019-11-26 09:00:36 -06:00
let where_clauses = convert_where_clauses(db, trait_.into(), &bound_vars);
let associated_ty_ids =
trait_data.associated_types().map(|type_alias| type_alias.to_chalk(db)).collect();
let trait_datum_bound = chalk_rust_ir::TraitDatumBound { where_clauses };
let trait_datum = TraitDatum {
id: trait_id,
binders: make_binders(trait_datum_bound, bound_vars.len()),
flags,
associated_ty_ids,
};
Arc::new(trait_datum)
}
pub(crate) fn struct_datum_query(
db: &impl HirDatabase,
2019-11-27 00:42:55 -06:00
krate: CrateId,
struct_id: StructId,
) -> Arc<StructDatum> {
debug!("struct_datum {:?}", struct_id);
2019-12-21 07:46:15 -06:00
let type_ctor: TypeCtor = from_chalk(db, TypeName::Struct(struct_id));
debug!("struct {:?} = {:?}", struct_id, type_ctor);
let num_params = type_ctor.num_ty_params(db);
let upstream = type_ctor.krate(db) != Some(krate);
let where_clauses = type_ctor
.as_generic_def()
.map(|generic_def| {
let generic_params = generics(db, generic_def);
let bound_vars = Substs::bound_vars(&generic_params);
convert_where_clauses(db, generic_def, &bound_vars)
})
.unwrap_or_else(Vec::new);
let flags = chalk_rust_ir::StructFlags {
upstream,
// FIXME set fundamental flag correctly
fundamental: false,
};
let struct_datum_bound = chalk_rust_ir::StructDatumBound {
fields: Vec::new(), // FIXME add fields (only relevant for auto traits)
where_clauses,
};
let struct_datum =
StructDatum { id: struct_id, binders: make_binders(struct_datum_bound, num_params), flags };
Arc::new(struct_datum)
}
pub(crate) fn impl_datum_query(
db: &impl HirDatabase,
2019-11-27 00:42:55 -06:00
krate: CrateId,
impl_id: ImplId,
) -> Arc<ImplDatum> {
let _p = ra_prof::profile("impl_datum");
debug!("impl_datum {:?}", impl_id);
2019-09-09 15:10:58 -05:00
let impl_: Impl = from_chalk(db, impl_id);
match impl_ {
Impl::ImplBlock(impl_block) => impl_block_datum(db, krate, impl_id, impl_block),
_ => Arc::new(builtin::impl_datum(db, krate, impl_).to_chalk(db)),
2019-09-09 15:10:58 -05:00
}
}
fn impl_block_datum(
db: &impl HirDatabase,
2019-11-27 00:42:55 -06:00
krate: CrateId,
chalk_id: ImplId,
impl_id: hir_def::ImplId,
) -> Arc<ImplDatum> {
let trait_ref = db
.impl_trait(impl_id)
// ImplIds for impls where the trait ref can't be resolved should never reach Chalk
2020-01-31 09:52:43 -06:00
.expect("invalid impl passed to Chalk")
.value;
2019-11-27 03:47:18 -06:00
let impl_data = db.impl_data(impl_id);
let generic_params = generics(db, impl_id.into());
let bound_vars = Substs::bound_vars(&generic_params);
let trait_ = trait_ref.trait_;
2019-12-20 06:47:44 -06:00
let impl_type = if impl_id.lookup(db).container.module(db).krate == krate {
chalk_rust_ir::ImplType::Local
} else {
chalk_rust_ir::ImplType::External
};
2019-11-27 03:47:18 -06:00
let where_clauses = convert_where_clauses(db, impl_id.into(), &bound_vars);
let negative = impl_data.is_negative;
debug!(
"impl {:?}: {}{} where {:?}",
2019-11-27 03:47:18 -06:00
chalk_id,
if negative { "!" } else { "" },
trait_ref.display(db),
where_clauses
);
let trait_ref = trait_ref.to_chalk(db);
2019-10-10 13:51:50 -05:00
let polarity = if negative {
chalk_rust_ir::Polarity::Negative
} else {
chalk_rust_ir::Polarity::Positive
};
2019-10-10 13:51:50 -05:00
let impl_datum_bound = chalk_rust_ir::ImplDatumBound { trait_ref, where_clauses };
2019-11-26 09:00:36 -06:00
let trait_data = db.trait_data(trait_);
2019-11-27 03:47:18 -06:00
let associated_ty_value_ids = impl_data
.items
.iter()
.filter_map(|item| match item {
2019-11-27 03:47:18 -06:00
AssocItemId::TypeAliasId(type_alias) => Some(*type_alias),
_ => None,
})
2019-11-27 03:47:18 -06:00
.filter(|&type_alias| {
// don't include associated types that don't exist in the trait
2019-11-27 03:47:18 -06:00
let name = &db.type_alias_data(type_alias).name;
trait_data.associated_type_by_name(name).is_some()
})
2019-11-27 03:47:18 -06:00
.map(|type_alias| AssocTyValue::TypeAlias(type_alias).to_chalk(db))
.collect();
debug!("impl_datum: {:?}", impl_datum_bound);
2019-10-10 13:51:50 -05:00
let impl_datum = ImplDatum {
binders: make_binders(impl_datum_bound, bound_vars.len()),
impl_type,
polarity,
associated_ty_value_ids,
2019-10-10 13:51:50 -05:00
};
2019-09-09 15:10:58 -05:00
Arc::new(impl_datum)
}
pub(crate) fn associated_ty_value_query(
db: &impl HirDatabase,
2019-11-27 00:42:55 -06:00
krate: CrateId,
2019-12-21 07:46:15 -06:00
id: AssociatedTyValueId,
) -> Arc<AssociatedTyValue> {
let data: AssocTyValue = from_chalk(db, id);
match data {
AssocTyValue::TypeAlias(type_alias) => {
type_alias_associated_ty_value(db, krate, type_alias)
}
_ => Arc::new(builtin::associated_ty_value(db, krate, data).to_chalk(db)),
}
}
fn type_alias_associated_ty_value(
db: &impl HirDatabase,
2019-11-27 00:42:55 -06:00
_krate: CrateId,
2019-11-27 02:40:10 -06:00
type_alias: TypeAliasId,
) -> Arc<AssociatedTyValue> {
2019-11-27 02:40:10 -06:00
let type_alias_data = db.type_alias_data(type_alias);
let impl_id = match type_alias.lookup(db).container {
2019-12-20 04:59:50 -06:00
AssocContainerId::ImplId(it) => it,
2019-11-27 02:40:10 -06:00
_ => panic!("assoc ty value should be in impl"),
};
2020-01-31 09:52:43 -06:00
let trait_ref = db.impl_trait(impl_id).expect("assoc ty value should not exist").value; // we don't return any assoc ty values if the impl'd trait can't be resolved
2019-11-27 02:40:10 -06:00
2019-11-26 08:21:29 -06:00
let assoc_ty = db
2019-11-27 13:12:09 -06:00
.trait_data(trait_ref.trait_)
2019-11-27 02:40:10 -06:00
.associated_type_by_name(&type_alias_data.name)
2019-11-26 08:21:29 -06:00
.expect("assoc ty value should not exist"); // validated when building the impl data as well
2020-01-31 09:52:43 -06:00
let ty = db.ty(type_alias.into());
let value_bound = chalk_rust_ir::AssociatedTyValueBound { ty: ty.value.to_chalk(db) };
let value = chalk_rust_ir::AssociatedTyValue {
impl_id: Impl::ImplBlock(impl_id).to_chalk(db),
associated_ty_id: assoc_ty.to_chalk(db),
2020-01-31 09:52:43 -06:00
value: make_binders(value_bound, ty.num_binders),
};
Arc::new(value)
}
fn id_from_chalk<T: InternKey>(chalk_id: chalk_ir::RawId) -> T {
T::from_intern_id(InternId::from(chalk_id.index))
}
fn id_to_chalk<T: InternKey>(salsa_id: T) -> chalk_ir::RawId {
chalk_ir::RawId { index: salsa_id.as_intern_id().as_u32() }
}
impl From<StructId> for crate::TypeCtorId {
fn from(struct_id: StructId) -> Self {
InternKey::from_intern_id(struct_id.0)
}
}
impl From<crate::TypeCtorId> for StructId {
2019-11-27 08:46:02 -06:00
fn from(type_ctor_id: crate::TypeCtorId) -> Self {
chalk_ir::StructId(type_ctor_id.as_intern_id())
}
}
impl From<ImplId> for crate::traits::GlobalImplId {
fn from(impl_id: ImplId) -> Self {
InternKey::from_intern_id(impl_id.0)
}
}
impl From<crate::traits::GlobalImplId> for ImplId {
2019-11-27 08:46:02 -06:00
fn from(impl_id: crate::traits::GlobalImplId) -> Self {
chalk_ir::ImplId(impl_id.as_intern_id())
}
}
2019-11-27 08:46:02 -06:00
impl From<chalk_rust_ir::AssociatedTyValueId> for crate::traits::AssocTyValueId {
fn from(id: chalk_rust_ir::AssociatedTyValueId) -> Self {
id_from_chalk(id.0)
}
}
2019-11-27 08:46:02 -06:00
impl From<crate::traits::AssocTyValueId> for chalk_rust_ir::AssociatedTyValueId {
fn from(assoc_ty_value_id: crate::traits::AssocTyValueId) -> Self {
chalk_rust_ir::AssociatedTyValueId(id_to_chalk(assoc_ty_value_id))
}
}