2019-05-01 10:06:11 -05:00
|
|
|
//! Conversion code from/to Chalk.
|
|
|
|
use std::sync::Arc;
|
|
|
|
|
2019-05-01 13:50:49 -05:00
|
|
|
use log::debug;
|
|
|
|
|
2019-05-01 10:06:11 -05:00
|
|
|
use chalk_ir::{TypeId, ImplId, TypeKindId, ProjectionTy, Parameter, Identifier, cast::Cast, PlaceholderIndex, UniverseIndex, TypeName};
|
|
|
|
use chalk_rust_ir::{AssociatedTyDatum, TraitDatum, StructDatum, ImplDatum};
|
|
|
|
|
2019-05-05 08:01:07 -05:00
|
|
|
use test_utils::tested_by;
|
2019-05-01 10:06:11 -05:00
|
|
|
use ra_db::salsa::{InternId, InternKey};
|
|
|
|
|
|
|
|
use crate::{
|
|
|
|
Trait, HasGenericParams, ImplBlock,
|
|
|
|
db::HirDatabase,
|
2019-05-07 11:53:16 -05:00
|
|
|
ty::{TraitRef, Ty, ApplicationTy, TypeCtor, Substs, GenericPredicate, CallableDef},
|
|
|
|
ty::display::HirDisplay,
|
|
|
|
generics::GenericDef,
|
2019-05-01 10:06:11 -05:00
|
|
|
};
|
|
|
|
use super::ChalkContext;
|
|
|
|
|
2019-05-05 07:42:12 -05:00
|
|
|
/// This represents a trait whose name we could not resolve.
|
|
|
|
const UNKNOWN_TRAIT: chalk_ir::TraitId =
|
|
|
|
chalk_ir::TraitId(chalk_ir::RawId { index: u32::max_value() });
|
|
|
|
|
2019-05-01 10:06:11 -05:00
|
|
|
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 {
|
|
|
|
type Chalk = chalk_ir::Ty;
|
|
|
|
fn to_chalk(self, db: &impl HirDatabase) -> chalk_ir::Ty {
|
|
|
|
match self {
|
2019-05-04 08:53:23 -05:00
|
|
|
Ty::Apply(apply_ty) => {
|
|
|
|
let struct_id = apply_ty.ctor.to_chalk(db);
|
|
|
|
let name = TypeName::TypeKindId(struct_id.into());
|
|
|
|
let parameters = apply_ty.parameters.to_chalk(db);
|
|
|
|
chalk_ir::ApplicationTy { name, parameters }.cast()
|
|
|
|
}
|
2019-05-01 10:06:11 -05:00
|
|
|
Ty::Param { idx, .. } => {
|
2019-05-01 10:57:56 -05:00
|
|
|
PlaceholderIndex { ui: UniverseIndex::ROOT, idx: idx as usize }.to_ty()
|
2019-05-01 10:06:11 -05:00
|
|
|
}
|
|
|
|
Ty::Bound(idx) => chalk_ir::Ty::BoundVar(idx as usize),
|
|
|
|
Ty::Infer(_infer_ty) => panic!("uncanonicalized infer ty"),
|
2019-05-01 13:50:11 -05:00
|
|
|
// FIXME this is clearly incorrect, but probably not too incorrect
|
|
|
|
// and I'm not sure what to actually do with Ty::Unknown
|
2019-05-05 07:42:12 -05:00
|
|
|
// maybe an alternative would be `for<T> T`? (meaningless in rust, but expressible in chalk's Ty)
|
|
|
|
Ty::Unknown => {
|
|
|
|
PlaceholderIndex { ui: UniverseIndex::ROOT, idx: usize::max_value() }.to_ty()
|
|
|
|
}
|
2019-05-01 10:06:11 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
fn from_chalk(db: &impl HirDatabase, chalk: chalk_ir::Ty) -> Self {
|
|
|
|
match chalk {
|
|
|
|
chalk_ir::Ty::Apply(apply_ty) => {
|
|
|
|
match apply_ty.name {
|
2019-05-04 08:53:23 -05:00
|
|
|
TypeName::TypeKindId(TypeKindId::StructId(struct_id)) => {
|
|
|
|
let ctor = from_chalk(db, struct_id);
|
|
|
|
let parameters = from_chalk(db, apply_ty.parameters);
|
|
|
|
Ty::Apply(ApplicationTy { ctor, parameters })
|
|
|
|
}
|
2019-05-01 10:06:11 -05:00
|
|
|
// FIXME handle TypeKindId::Trait/Type here
|
2019-05-04 08:53:23 -05:00
|
|
|
TypeName::TypeKindId(_) => unimplemented!(),
|
2019-05-01 10:06:11 -05:00
|
|
|
TypeName::AssociatedType(_) => unimplemented!(),
|
|
|
|
TypeName::Placeholder(idx) => {
|
|
|
|
assert_eq!(idx.ui, UniverseIndex::ROOT);
|
|
|
|
Ty::Param { idx: idx.idx as u32, name: crate::Name::missing() }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
chalk_ir::Ty::Projection(_) => unimplemented!(),
|
|
|
|
chalk_ir::Ty::UnselectedProjection(_) => unimplemented!(),
|
|
|
|
chalk_ir::Ty::ForAll(_) => unimplemented!(),
|
|
|
|
chalk_ir::Ty::BoundVar(idx) => Ty::Bound(idx as u32),
|
|
|
|
chalk_ir::Ty::InferenceVar(_iv) => panic!("unexpected chalk infer ty"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ToChalk for Substs {
|
|
|
|
type Chalk = Vec<chalk_ir::Parameter>;
|
|
|
|
|
|
|
|
fn to_chalk(self, db: &impl HirDatabase) -> Vec<Parameter> {
|
|
|
|
self.iter().map(|ty| ty.clone().to_chalk(db).cast()).collect()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn from_chalk(db: &impl HirDatabase, parameters: Vec<chalk_ir::Parameter>) -> Substs {
|
|
|
|
parameters
|
|
|
|
.into_iter()
|
|
|
|
.map(|p| match p {
|
|
|
|
chalk_ir::Parameter(chalk_ir::ParameterKind::Ty(ty)) => from_chalk(db, ty),
|
|
|
|
chalk_ir::Parameter(chalk_ir::ParameterKind::Lifetime(_)) => unimplemented!(),
|
|
|
|
})
|
|
|
|
.collect::<Vec<_>>()
|
|
|
|
.into()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ToChalk for TraitRef {
|
|
|
|
type Chalk = chalk_ir::TraitRef;
|
|
|
|
|
|
|
|
fn to_chalk(self: TraitRef, db: &impl HirDatabase) -> chalk_ir::TraitRef {
|
|
|
|
let trait_id = self.trait_.to_chalk(db);
|
|
|
|
let parameters = self.substs.to_chalk(db);
|
|
|
|
chalk_ir::TraitRef { trait_id, parameters }
|
|
|
|
}
|
|
|
|
|
|
|
|
fn from_chalk(db: &impl HirDatabase, trait_ref: chalk_ir::TraitRef) -> Self {
|
|
|
|
let trait_ = from_chalk(db, trait_ref.trait_id);
|
|
|
|
let substs = from_chalk(db, trait_ref.parameters);
|
|
|
|
TraitRef { trait_, substs }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ToChalk for Trait {
|
|
|
|
type Chalk = chalk_ir::TraitId;
|
|
|
|
|
|
|
|
fn to_chalk(self, _db: &impl HirDatabase) -> chalk_ir::TraitId {
|
|
|
|
self.id.into()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn from_chalk(_db: &impl HirDatabase, trait_id: chalk_ir::TraitId) -> Trait {
|
|
|
|
Trait { id: trait_id.into() }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ToChalk for TypeCtor {
|
|
|
|
type Chalk = chalk_ir::StructId;
|
|
|
|
|
|
|
|
fn to_chalk(self, db: &impl HirDatabase) -> chalk_ir::StructId {
|
|
|
|
db.intern_type_ctor(self).into()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn from_chalk(db: &impl HirDatabase, struct_id: chalk_ir::StructId) -> TypeCtor {
|
|
|
|
db.lookup_intern_type_ctor(struct_id.into())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ToChalk for ImplBlock {
|
|
|
|
type Chalk = chalk_ir::ImplId;
|
|
|
|
|
|
|
|
fn to_chalk(self, db: &impl HirDatabase) -> chalk_ir::ImplId {
|
|
|
|
db.intern_impl_block(self).into()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn from_chalk(db: &impl HirDatabase, impl_id: chalk_ir::ImplId) -> ImplBlock {
|
|
|
|
db.lookup_intern_impl_block(impl_id.into())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-05 07:21:00 -05:00
|
|
|
impl ToChalk for GenericPredicate {
|
|
|
|
type Chalk = chalk_ir::QuantifiedWhereClause;
|
|
|
|
|
|
|
|
fn to_chalk(self, db: &impl HirDatabase) -> chalk_ir::QuantifiedWhereClause {
|
|
|
|
match self {
|
|
|
|
GenericPredicate::Implemented(trait_ref) => {
|
|
|
|
make_binders(chalk_ir::WhereClause::Implemented(trait_ref.to_chalk(db)), 0)
|
|
|
|
}
|
2019-05-05 07:42:12 -05:00
|
|
|
GenericPredicate::Error => {
|
|
|
|
let impossible_trait_ref = chalk_ir::TraitRef {
|
|
|
|
trait_id: UNKNOWN_TRAIT,
|
|
|
|
parameters: vec![Ty::Unknown.to_chalk(db).cast()],
|
|
|
|
};
|
|
|
|
make_binders(chalk_ir::WhereClause::Implemented(impossible_trait_ref), 0)
|
|
|
|
}
|
2019-05-05 07:21:00 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn from_chalk(
|
|
|
|
_db: &impl HirDatabase,
|
|
|
|
_where_clause: chalk_ir::QuantifiedWhereClause,
|
|
|
|
) -> GenericPredicate {
|
|
|
|
// This should never need to be called
|
|
|
|
unimplemented!()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-01 10:06:11 -05:00
|
|
|
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,
|
|
|
|
def: GenericDef,
|
|
|
|
substs: &Substs,
|
2019-05-05 07:42:12 -05:00
|
|
|
) -> Vec<chalk_ir::QuantifiedWhereClause> {
|
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() {
|
2019-05-05 07:42:12 -05:00
|
|
|
result.push(pred.clone().subst(substs).to_chalk(db));
|
2019-05-05 07:21:00 -05:00
|
|
|
}
|
2019-05-05 07:42:12 -05:00
|
|
|
result
|
2019-05-05 07:21:00 -05:00
|
|
|
}
|
|
|
|
|
2019-05-01 10:06:11 -05:00
|
|
|
impl<'a, DB> chalk_solve::RustIrDatabase for ChalkContext<'a, DB>
|
|
|
|
where
|
|
|
|
DB: HirDatabase,
|
|
|
|
{
|
|
|
|
fn associated_ty_data(&self, _ty: TypeId) -> Arc<AssociatedTyDatum> {
|
|
|
|
unimplemented!()
|
|
|
|
}
|
|
|
|
fn trait_datum(&self, trait_id: chalk_ir::TraitId) -> Arc<TraitDatum> {
|
2019-05-01 13:50:49 -05:00
|
|
|
debug!("trait_datum {:?}", trait_id);
|
2019-05-05 07:42:12 -05:00
|
|
|
if trait_id == UNKNOWN_TRAIT {
|
|
|
|
let trait_datum_bound = chalk_rust_ir::TraitDatumBound {
|
|
|
|
trait_ref: chalk_ir::TraitRef {
|
|
|
|
trait_id: UNKNOWN_TRAIT,
|
|
|
|
parameters: vec![chalk_ir::Ty::BoundVar(0).cast()],
|
|
|
|
},
|
|
|
|
associated_ty_ids: Vec::new(),
|
|
|
|
where_clauses: Vec::new(),
|
|
|
|
flags: chalk_rust_ir::TraitFlags {
|
|
|
|
auto: false,
|
|
|
|
marker: false,
|
|
|
|
upstream: true,
|
|
|
|
fundamental: false,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
return Arc::new(TraitDatum { binders: make_binders(trait_datum_bound, 1) });
|
|
|
|
}
|
2019-05-01 10:06:11 -05:00
|
|
|
let trait_: Trait = from_chalk(self.db, trait_id);
|
|
|
|
let generic_params = trait_.generic_params(self.db);
|
|
|
|
let bound_vars = Substs::bound_vars(&generic_params);
|
|
|
|
let trait_ref = trait_.trait_ref(self.db).subst(&bound_vars).to_chalk(self.db);
|
|
|
|
let flags = chalk_rust_ir::TraitFlags {
|
2019-05-07 11:53:16 -05:00
|
|
|
auto: trait_.is_auto(self.db),
|
|
|
|
upstream: trait_.module(self.db).krate(self.db) != Some(self.krate),
|
2019-05-01 10:06:11 -05:00
|
|
|
// FIXME set these flags correctly
|
|
|
|
marker: false,
|
|
|
|
fundamental: false,
|
|
|
|
};
|
2019-05-05 07:42:12 -05:00
|
|
|
let where_clauses = convert_where_clauses(self.db, trait_.into(), &bound_vars);
|
2019-05-01 16:26:42 -05:00
|
|
|
let associated_ty_ids = Vec::new(); // FIXME add associated tys
|
|
|
|
let trait_datum_bound =
|
|
|
|
chalk_rust_ir::TraitDatumBound { trait_ref, where_clauses, flags, associated_ty_ids };
|
2019-05-01 10:06:11 -05:00
|
|
|
let trait_datum = TraitDatum { binders: make_binders(trait_datum_bound, bound_vars.len()) };
|
|
|
|
Arc::new(trait_datum)
|
|
|
|
}
|
|
|
|
fn struct_datum(&self, struct_id: chalk_ir::StructId) -> Arc<StructDatum> {
|
2019-05-01 13:50:49 -05:00
|
|
|
debug!("struct_datum {:?}", struct_id);
|
2019-05-01 10:06:11 -05:00
|
|
|
let type_ctor = from_chalk(self.db, struct_id);
|
2019-05-04 11:25:07 -05:00
|
|
|
// FIXME might be nicer if we can create a fake GenericParams for the TypeCtor
|
2019-05-04 12:07:25 -05:00
|
|
|
// FIXME extract this to a method on Ty
|
2019-05-05 07:21:00 -05:00
|
|
|
let (num_params, where_clauses, upstream) = match type_ctor {
|
2019-05-01 10:06:11 -05:00
|
|
|
TypeCtor::Bool
|
|
|
|
| TypeCtor::Char
|
|
|
|
| TypeCtor::Int(_)
|
|
|
|
| TypeCtor::Float(_)
|
|
|
|
| TypeCtor::Never
|
2019-05-05 07:21:00 -05:00
|
|
|
| TypeCtor::Str => (0, vec![], true),
|
|
|
|
TypeCtor::Slice | TypeCtor::Array | TypeCtor::RawPtr(_) | TypeCtor::Ref(_) => {
|
|
|
|
(1, vec![], true)
|
|
|
|
}
|
|
|
|
TypeCtor::FnPtr { num_args } => (num_args as usize + 1, vec![], true),
|
|
|
|
TypeCtor::Tuple { cardinality } => (cardinality as usize, vec![], true),
|
2019-05-05 08:01:07 -05:00
|
|
|
TypeCtor::FnDef(callable) => {
|
|
|
|
tested_by!(trait_resolution_on_fn_type);
|
|
|
|
let krate = match callable {
|
|
|
|
CallableDef::Function(f) => f.module(self.db).krate(self.db),
|
|
|
|
CallableDef::Struct(s) => s.module(self.db).krate(self.db),
|
|
|
|
CallableDef::EnumVariant(v) => {
|
|
|
|
v.parent_enum(self.db).module(self.db).krate(self.db)
|
|
|
|
}
|
|
|
|
};
|
|
|
|
let generic_def: GenericDef = match callable {
|
|
|
|
CallableDef::Function(f) => f.into(),
|
|
|
|
CallableDef::Struct(s) => s.into(),
|
|
|
|
CallableDef::EnumVariant(v) => v.parent_enum(self.db).into(),
|
|
|
|
};
|
|
|
|
let generic_params = generic_def.generic_params(self.db);
|
|
|
|
let bound_vars = Substs::bound_vars(&generic_params);
|
|
|
|
let where_clauses = convert_where_clauses(self.db, generic_def, &bound_vars);
|
|
|
|
(
|
|
|
|
generic_params.count_params_including_parent(),
|
|
|
|
where_clauses,
|
|
|
|
krate != Some(self.krate),
|
|
|
|
)
|
|
|
|
}
|
2019-05-01 10:06:11 -05:00
|
|
|
TypeCtor::Adt(adt) => {
|
|
|
|
let generic_params = adt.generic_params(self.db);
|
2019-05-05 07:21:00 -05:00
|
|
|
let bound_vars = Substs::bound_vars(&generic_params);
|
2019-05-05 07:42:12 -05:00
|
|
|
let where_clauses = convert_where_clauses(self.db, adt.into(), &bound_vars);
|
2019-05-01 10:06:11 -05:00
|
|
|
(
|
|
|
|
generic_params.count_params_including_parent(),
|
2019-05-05 07:21:00 -05:00
|
|
|
where_clauses,
|
2019-05-01 10:06:11 -05:00
|
|
|
adt.krate(self.db) != Some(self.krate),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
};
|
|
|
|
let flags = chalk_rust_ir::StructFlags {
|
|
|
|
upstream,
|
|
|
|
// FIXME set fundamental flag correctly
|
|
|
|
fundamental: false,
|
|
|
|
};
|
2019-05-04 08:53:23 -05:00
|
|
|
let self_ty = chalk_ir::ApplicationTy {
|
|
|
|
name: TypeName::TypeKindId(type_ctor.to_chalk(self.db).into()),
|
|
|
|
parameters: (0..num_params).map(|i| chalk_ir::Ty::BoundVar(i).cast()).collect(),
|
2019-05-01 10:06:11 -05:00
|
|
|
};
|
|
|
|
let struct_datum_bound = chalk_rust_ir::StructDatumBound {
|
2019-05-04 08:53:23 -05:00
|
|
|
self_ty,
|
2019-05-01 10:06:11 -05:00
|
|
|
fields: Vec::new(), // FIXME add fields (only relevant for auto traits)
|
|
|
|
where_clauses,
|
|
|
|
flags,
|
|
|
|
};
|
|
|
|
let struct_datum = StructDatum { binders: make_binders(struct_datum_bound, num_params) };
|
|
|
|
Arc::new(struct_datum)
|
|
|
|
}
|
|
|
|
fn impl_datum(&self, impl_id: ImplId) -> Arc<ImplDatum> {
|
2019-05-01 13:50:49 -05:00
|
|
|
debug!("impl_datum {:?}", impl_id);
|
2019-05-01 10:06:11 -05:00
|
|
|
let impl_block: ImplBlock = from_chalk(self.db, impl_id);
|
|
|
|
let generic_params = impl_block.generic_params(self.db);
|
|
|
|
let bound_vars = Substs::bound_vars(&generic_params);
|
|
|
|
let trait_ref = impl_block
|
|
|
|
.target_trait_ref(self.db)
|
|
|
|
.expect("FIXME handle unresolved impl block trait ref")
|
|
|
|
.subst(&bound_vars);
|
|
|
|
let impl_type = if impl_block.module().krate(self.db) == Some(self.krate) {
|
|
|
|
chalk_rust_ir::ImplType::Local
|
|
|
|
} else {
|
|
|
|
chalk_rust_ir::ImplType::External
|
|
|
|
};
|
2019-05-05 07:42:12 -05:00
|
|
|
let where_clauses = convert_where_clauses(self.db, impl_block.into(), &bound_vars);
|
2019-05-07 11:53:16 -05:00
|
|
|
let negative = impl_block.is_negative(self.db);
|
|
|
|
debug!(
|
|
|
|
"impl {:?}: {}{} where {:?}",
|
|
|
|
impl_id,
|
|
|
|
if negative { "!" } else { "" },
|
|
|
|
trait_ref.display(self.db),
|
|
|
|
where_clauses
|
|
|
|
);
|
|
|
|
let trait_ref = trait_ref.to_chalk(self.db);
|
2019-05-01 10:06:11 -05:00
|
|
|
let impl_datum_bound = chalk_rust_ir::ImplDatumBound {
|
2019-05-07 11:53:16 -05:00
|
|
|
trait_ref: if negative {
|
|
|
|
chalk_rust_ir::PolarizedTraitRef::Negative(trait_ref)
|
|
|
|
} else {
|
|
|
|
chalk_rust_ir::PolarizedTraitRef::Positive(trait_ref)
|
|
|
|
},
|
2019-05-05 07:21:00 -05:00
|
|
|
where_clauses,
|
2019-05-01 10:06:11 -05:00
|
|
|
associated_ty_values: Vec::new(), // FIXME add associated type values
|
|
|
|
impl_type,
|
|
|
|
};
|
|
|
|
let impl_datum = ImplDatum { binders: make_binders(impl_datum_bound, bound_vars.len()) };
|
|
|
|
Arc::new(impl_datum)
|
|
|
|
}
|
|
|
|
fn impls_for_trait(&self, trait_id: chalk_ir::TraitId) -> Vec<ImplId> {
|
2019-05-01 13:50:49 -05:00
|
|
|
debug!("impls_for_trait {:?}", trait_id);
|
2019-05-05 07:42:12 -05:00
|
|
|
if trait_id == UNKNOWN_TRAIT {
|
|
|
|
return Vec::new();
|
|
|
|
}
|
2019-05-01 10:06:11 -05:00
|
|
|
let trait_ = from_chalk(self.db, trait_id);
|
2019-05-07 10:35:45 -05:00
|
|
|
let result: Vec<_> = self
|
|
|
|
.db
|
2019-05-01 10:06:11 -05:00
|
|
|
.impls_for_trait(self.krate, trait_)
|
|
|
|
.iter()
|
|
|
|
.map(|impl_block| impl_block.to_chalk(self.db))
|
2019-05-07 10:35:45 -05:00
|
|
|
.collect();
|
|
|
|
debug!("impls_for_trait returned {} impls", result.len());
|
|
|
|
result
|
2019-05-01 10:06:11 -05:00
|
|
|
}
|
2019-05-01 10:57:56 -05:00
|
|
|
fn impl_provided_for(
|
|
|
|
&self,
|
|
|
|
auto_trait_id: chalk_ir::TraitId,
|
|
|
|
struct_id: chalk_ir::StructId,
|
|
|
|
) -> bool {
|
2019-05-01 13:50:49 -05:00
|
|
|
debug!("impl_provided_for {:?}, {:?}", auto_trait_id, struct_id);
|
2019-05-01 10:06:11 -05:00
|
|
|
false // FIXME
|
|
|
|
}
|
|
|
|
fn type_name(&self, _id: TypeKindId) -> Identifier {
|
|
|
|
unimplemented!()
|
|
|
|
}
|
|
|
|
fn split_projection<'p>(
|
|
|
|
&self,
|
|
|
|
projection: &'p ProjectionTy,
|
|
|
|
) -> (Arc<AssociatedTyDatum>, &'p [Parameter], &'p [Parameter]) {
|
2019-05-01 13:50:49 -05:00
|
|
|
debug!("split_projection {:?}", projection);
|
2019-05-01 10:06:11 -05:00
|
|
|
unimplemented!()
|
|
|
|
}
|
2019-05-01 16:26:42 -05:00
|
|
|
fn custom_clauses(&self) -> Vec<chalk_ir::ProgramClause> {
|
|
|
|
debug!("custom_clauses");
|
|
|
|
vec![]
|
|
|
|
}
|
|
|
|
fn all_structs(&self) -> Vec<chalk_ir::StructId> {
|
|
|
|
debug!("all_structs");
|
|
|
|
// FIXME
|
|
|
|
vec![]
|
|
|
|
}
|
2019-05-01 10:06:11 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
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<chalk_ir::TraitId> for crate::ids::TraitId {
|
|
|
|
fn from(trait_id: chalk_ir::TraitId) -> Self {
|
|
|
|
id_from_chalk(trait_id.0)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<crate::ids::TraitId> for chalk_ir::TraitId {
|
|
|
|
fn from(trait_id: crate::ids::TraitId) -> Self {
|
|
|
|
chalk_ir::TraitId(id_to_chalk(trait_id))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<chalk_ir::StructId> for crate::ids::TypeCtorId {
|
|
|
|
fn from(struct_id: chalk_ir::StructId) -> Self {
|
|
|
|
id_from_chalk(struct_id.0)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<crate::ids::TypeCtorId> for chalk_ir::StructId {
|
|
|
|
fn from(type_ctor_id: crate::ids::TypeCtorId) -> Self {
|
|
|
|
chalk_ir::StructId(id_to_chalk(type_ctor_id))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<chalk_ir::ImplId> for crate::ids::GlobalImplId {
|
|
|
|
fn from(impl_id: chalk_ir::ImplId) -> Self {
|
|
|
|
id_from_chalk(impl_id.0)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<crate::ids::GlobalImplId> for chalk_ir::ImplId {
|
|
|
|
fn from(impl_id: crate::ids::GlobalImplId) -> Self {
|
|
|
|
chalk_ir::ImplId(id_to_chalk(impl_id))
|
|
|
|
}
|
|
|
|
}
|