rust/crates/hir_ty/src/mapping.rs

142 lines
4.9 KiB
Rust
Raw Normal View History

2020-05-22 10:14:53 -05:00
//! This module contains the implementations of the `ToChalk` trait, which
//! handles conversion between our data types and their corresponding types in
//! Chalk (in both directions); plus some helper functions for more specialized
//! conversions.
2021-04-09 07:15:26 -05:00
use chalk_ir::{cast::Cast, fold::Shift, DebruijnIndex};
use chalk_solve::rust_ir;
2020-05-22 10:14:53 -05:00
2020-08-13 09:25:38 -05:00
use base_db::salsa::InternKey;
use hir_def::{GenericDefId, TypeAliasId};
2020-05-22 10:14:53 -05:00
2021-04-09 07:15:26 -05:00
use crate::{
chalk_db, db::HirDatabase, AliasEq, AliasTy, CallableDefId, FnDefId, Interner, ProjectionTyExt,
QuantifiedWhereClause, Substitution, Ty, WhereClause,
};
pub(crate) trait ToChalk {
type Chalk;
fn to_chalk(self, db: &dyn HirDatabase) -> Self::Chalk;
fn from_chalk(db: &dyn HirDatabase, chalk: Self::Chalk) -> Self;
}
pub(crate) fn from_chalk<T, ChalkT>(db: &dyn HirDatabase, chalk: ChalkT) -> T
where
T: ToChalk<Chalk = ChalkT>,
{
T::from_chalk(db, chalk)
}
2020-05-22 10:14:53 -05:00
impl ToChalk for hir_def::TraitId {
type Chalk = chalk_db::TraitId;
2020-05-22 10:14:53 -05:00
fn to_chalk(self, _db: &dyn HirDatabase) -> chalk_db::TraitId {
2020-05-22 10:14:53 -05:00
chalk_ir::TraitId(self.as_intern_id())
}
fn from_chalk(_db: &dyn HirDatabase, trait_id: chalk_db::TraitId) -> hir_def::TraitId {
2020-05-22 10:14:53 -05:00
InternKey::from_intern_id(trait_id.0)
}
}
2020-07-12 08:26:02 -05:00
impl ToChalk for hir_def::ImplId {
type Chalk = chalk_db::ImplId;
2020-05-22 10:14:53 -05:00
fn to_chalk(self, _db: &dyn HirDatabase) -> chalk_db::ImplId {
2020-07-12 08:26:02 -05:00
chalk_ir::ImplId(self.as_intern_id())
2020-05-22 10:14:53 -05:00
}
fn from_chalk(_db: &dyn HirDatabase, impl_id: chalk_db::ImplId) -> hir_def::ImplId {
2020-07-12 08:26:02 -05:00
InternKey::from_intern_id(impl_id.0)
2020-05-22 10:14:53 -05:00
}
}
impl ToChalk for CallableDefId {
type Chalk = FnDefId;
fn to_chalk(self, db: &dyn HirDatabase) -> FnDefId {
db.intern_callable_def(self).into()
}
fn from_chalk(db: &dyn HirDatabase, fn_def_id: FnDefId) -> CallableDefId {
db.lookup_intern_callable_def(fn_def_id.into())
}
}
2020-11-02 09:31:38 -06:00
pub(crate) struct TypeAliasAsValue(pub(crate) TypeAliasId);
2020-07-12 08:26:02 -05:00
impl ToChalk for TypeAliasAsValue {
type Chalk = chalk_db::AssociatedTyValueId;
2020-05-22 10:14:53 -05:00
fn to_chalk(self, _db: &dyn HirDatabase) -> chalk_db::AssociatedTyValueId {
2020-07-12 08:26:02 -05:00
rust_ir::AssociatedTyValueId(self.0.as_intern_id())
2020-05-22 10:14:53 -05:00
}
2020-07-12 08:26:02 -05:00
fn from_chalk(
_db: &dyn HirDatabase,
assoc_ty_value_id: chalk_db::AssociatedTyValueId,
2020-07-12 08:26:02 -05:00
) -> TypeAliasAsValue {
TypeAliasAsValue(TypeAliasId::from_intern_id(assoc_ty_value_id.0))
2020-05-22 10:14:53 -05:00
}
}
pub(super) fn convert_where_clauses(
db: &dyn HirDatabase,
def: GenericDefId,
2021-03-15 15:02:34 -05:00
substs: &Substitution,
2020-05-22 10:14:53 -05:00
) -> Vec<chalk_ir::QuantifiedWhereClause<Interner>> {
let generic_predicates = db.generic_predicates(def);
let mut result = Vec::with_capacity(generic_predicates.len());
for pred in generic_predicates.iter() {
2021-04-08 07:16:05 -05:00
result.push(pred.clone().substitute(&Interner, substs));
2020-05-22 10:14:53 -05:00
}
result
}
pub(super) fn generic_predicate_to_inline_bound(
db: &dyn HirDatabase,
pred: &QuantifiedWhereClause,
2020-05-22 10:14:53 -05:00
self_ty: &Ty,
) -> Option<chalk_ir::Binders<rust_ir::InlineBound<Interner>>> {
2020-05-22 10:14:53 -05:00
// An InlineBound is like a GenericPredicate, except the self type is left out.
// We don't have a special type for this, but Chalk does.
2021-04-07 14:26:24 -05:00
let self_ty_shifted_in = self_ty.clone().shifted_in_from(&Interner, DebruijnIndex::ONE);
2021-04-05 10:13:50 -05:00
let (pred, binders) = pred.as_ref().into_value_and_skipped_binders();
match pred {
2021-03-20 04:46:36 -05:00
WhereClause::Implemented(trait_ref) => {
if trait_ref.self_type_parameter(&Interner) != self_ty_shifted_in {
2020-05-22 10:14:53 -05:00
// we can only convert predicates back to type bounds if they
// have the expected self type
return None;
}
let args_no_self = trait_ref.substitution.as_slice(&Interner)[1..]
2020-05-22 10:14:53 -05:00
.iter()
2021-04-08 07:16:05 -05:00
.map(|ty| ty.clone().cast(&Interner))
2020-05-22 10:14:53 -05:00
.collect();
2021-03-18 15:53:19 -05:00
let trait_bound = rust_ir::TraitBound { trait_id: trait_ref.trait_id, args_no_self };
2021-04-05 10:45:18 -05:00
Some(chalk_ir::Binders::new(binders, rust_ir::InlineBound::TraitBound(trait_bound)))
2020-05-22 10:14:53 -05:00
}
2021-03-20 04:46:36 -05:00
WhereClause::AliasEq(AliasEq { alias: AliasTy::Projection(projection_ty), ty }) => {
if projection_ty.self_type_parameter(&Interner) != self_ty_shifted_in {
2020-05-22 10:14:53 -05:00
return None;
}
let trait_ = projection_ty.trait_(db);
let args_no_self = projection_ty.substitution.as_slice(&Interner)[1..]
2020-05-22 10:14:53 -05:00
.iter()
2021-04-08 07:16:05 -05:00
.map(|ty| ty.clone().cast(&Interner))
2020-05-22 10:14:53 -05:00
.collect();
let alias_eq_bound = rust_ir::AliasEqBound {
2021-04-08 07:16:05 -05:00
value: ty.clone(),
trait_bound: rust_ir::TraitBound { trait_id: trait_.to_chalk(db), args_no_self },
associated_ty_id: projection_ty.associated_ty_id,
2020-05-22 10:14:53 -05:00
parameters: Vec::new(), // FIXME we don't support generic associated types yet
};
2021-04-05 10:45:18 -05:00
Some(chalk_ir::Binders::new(
binders,
rust_ir::InlineBound::AliasEqBound(alias_eq_bound),
))
2020-05-22 10:14:53 -05:00
}
_ => None,
2020-05-22 10:14:53 -05:00
}
}