2019-05-01 15:06:11 +00:00
//! Conversion code from/to Chalk.
use std ::sync ::Arc ;
2019-05-01 18:50:49 +00:00
use log ::debug ;
2019-12-21 13:29:33 +00:00
use chalk_ir ::{ cast ::Cast , family ::ChalkIr , Parameter , PlaceholderIndex , TypeName , UniverseIndex } ;
2019-05-01 15:06:11 +00:00
2019-12-21 13:29:33 +00:00
use hir_def ::{ AssocContainerId , AssocItemId , GenericDefId , HasModule , Lookup , TypeAliasId } ;
2019-12-03 11:16:39 +00:00
use ra_db ::{
salsa ::{ InternId , InternKey } ,
CrateId ,
2019-11-26 15:00:36 +00:00
} ;
2019-05-01 15:06:11 +00:00
2019-12-03 11:16:39 +00:00
use super ::{ builtin , AssocTyValue , Canonical , ChalkContext , Impl , Obligation } ;
2019-05-01 15:06:11 +00:00
use crate ::{
2019-12-07 10:50:36 +00:00
db ::HirDatabase , display ::HirDisplay , utils ::generics , ApplicationTy , GenericPredicate ,
ProjectionTy , Substs , TraitRef , Ty , TypeCtor , TypeWalk ,
2019-05-01 15:06:11 +00:00
} ;
2019-12-21 13:29:33 +00:00
pub type TypeFamily = chalk_ir ::family ::ChalkIr ; // TODO use everywhere
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 > ;
2019-05-05 12:42:12 +00:00
/// This represents a trait whose name we could not resolve.
2019-12-21 13:29:33 +00:00
const UNKNOWN_TRAIT : TraitId = chalk_ir ::TraitId ( chalk_ir ::RawId { index : u32 ::max_value ( ) } ) ;
2019-05-05 12:42:12 +00:00
2019-05-01 15:06:11 +00: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 {
2019-10-15 19:03:34 +00:00
type Chalk = chalk_ir ::Ty < ChalkIr > ;
fn to_chalk ( self , db : & impl HirDatabase ) -> chalk_ir ::Ty < ChalkIr > {
2019-05-01 15:06:11 +00:00
match self {
2019-05-04 13:53:23 +00:00
Ty ::Apply ( apply_ty ) = > {
2019-08-11 13:54:31 +00:00
let name = match apply_ty . ctor {
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 = apply_ty . ctor . to_chalk ( db ) ;
2019-12-21 13:29:33 +00:00
TypeName ::Struct ( struct_id . into ( ) )
2019-08-11 13:54:31 +00:00
}
} ;
2019-05-04 13:53:23 +00:00
let parameters = apply_ty . parameters . to_chalk ( db ) ;
2019-11-15 19:32:58 +00:00
chalk_ir ::ApplicationTy { name , parameters } . cast ( ) . intern ( )
2019-05-04 13:53:23 +00:00
}
2019-08-05 19:13:34 +00:00
Ty ::Projection ( proj_ty ) = > {
let associated_ty_id = proj_ty . associated_ty . to_chalk ( db ) ;
let parameters = proj_ty . parameters . to_chalk ( db ) ;
2019-11-15 19:32:58 +00:00
chalk_ir ::ProjectionTy { associated_ty_id , parameters } . cast ( ) . intern ( )
2019-08-05 19:13:34 +00:00
}
2019-05-01 15:06:11 +00:00
Ty ::Param { idx , .. } = > {
2019-10-15 19:03:34 +00:00
PlaceholderIndex { ui : UniverseIndex ::ROOT , idx : idx as usize } . to_ty ::< ChalkIr > ( )
2019-05-01 15:06:11 +00:00
}
2019-11-15 19:32:58 +00:00
Ty ::Bound ( idx ) = > chalk_ir ::TyData ::BoundVar ( idx as usize ) . intern ( ) ,
2019-05-01 15:06:11 +00:00
Ty ::Infer ( _infer_ty ) = > panic! ( " uncanonicalized infer ty " ) ,
2019-11-15 20:00:27 +00:00
Ty ::Dyn ( predicates ) = > {
let where_clauses = predicates . iter ( ) . cloned ( ) . map ( | p | p . to_chalk ( db ) ) . collect ( ) ;
2019-12-21 13:29:33 +00:00
let bounded_ty = chalk_ir ::BoundedTy { bounds : make_binders ( where_clauses , 1 ) } ;
chalk_ir ::TyData ::Dyn ( bounded_ty ) . intern ( )
2019-11-15 20:00:27 +00:00
}
Ty ::Opaque ( predicates ) = > {
let where_clauses = predicates . iter ( ) . cloned ( ) . map ( | p | p . to_chalk ( db ) ) . collect ( ) ;
2019-12-21 13:29:33 +00:00
let bounded_ty = chalk_ir ::BoundedTy { bounds : make_binders ( where_clauses , 1 ) } ;
chalk_ir ::TyData ::Opaque ( bounded_ty ) . intern ( )
2019-11-15 20:00:27 +00:00
}
Ty ::Unknown = > {
2019-10-29 12:01:33 +00:00
let parameters = Vec ::new ( ) ;
let name = TypeName ::Error ;
2019-11-15 19:32:58 +00:00
chalk_ir ::ApplicationTy { name , parameters } . cast ( ) . intern ( )
2019-05-05 12:42:12 +00:00
}
2019-05-01 15:06:11 +00:00
}
}
2019-10-15 19:03:34 +00:00
fn from_chalk ( db : & impl HirDatabase , chalk : chalk_ir ::Ty < ChalkIr > ) -> Self {
2019-11-15 19:32:58 +00:00
match chalk . data ( ) . clone ( ) {
chalk_ir ::TyData ::Apply ( apply_ty ) = > {
2019-12-21 13:29:33 +00:00
// TODO clean this up now that Placeholder isn't in TypeName anymore
2019-05-01 15:06:11 +00:00
match apply_ty . name {
2019-12-21 13:29:33 +00:00
TypeName ::Struct ( struct_id ) = > {
2019-05-04 13:53:23 +00:00
let ctor = from_chalk ( db , struct_id ) ;
let parameters = from_chalk ( db , apply_ty . parameters ) ;
Ty ::Apply ( ApplicationTy { ctor , parameters } )
}
2019-08-11 13:54:31 +00:00
TypeName ::AssociatedType ( type_id ) = > {
let ctor = TypeCtor ::AssociatedType ( from_chalk ( db , type_id ) ) ;
let parameters = from_chalk ( db , apply_ty . parameters ) ;
Ty ::Apply ( ApplicationTy { ctor , parameters } )
}
2019-10-29 12:01:33 +00:00
TypeName ::Error = > Ty ::Unknown ,
2019-05-01 15:06:11 +00:00
}
}
2019-12-21 13:29:33 +00:00
chalk_ir ::TyData ::Placeholder ( idx ) = > {
assert_eq! ( idx . ui , UniverseIndex ::ROOT ) ;
Ty ::Param { idx : idx . idx as u32 , name : crate ::Name ::missing ( ) }
}
2019-11-15 19:32:58 +00:00
chalk_ir ::TyData ::Projection ( proj ) = > {
2019-09-22 18:08:46 +00:00
let associated_ty = from_chalk ( db , proj . associated_ty_id ) ;
let parameters = from_chalk ( db , proj . parameters ) ;
Ty ::Projection ( ProjectionTy { associated_ty , parameters } )
}
2019-11-15 19:32:58 +00:00
chalk_ir ::TyData ::ForAll ( _ ) = > unimplemented! ( ) ,
chalk_ir ::TyData ::BoundVar ( idx ) = > Ty ::Bound ( idx as u32 ) ,
chalk_ir ::TyData ::InferenceVar ( _iv ) = > Ty ::Unknown ,
chalk_ir ::TyData ::Dyn ( where_clauses ) = > {
2019-12-21 13:29:33 +00:00
assert_eq! ( where_clauses . bounds . binders . len ( ) , 1 ) ;
2019-10-15 19:03:34 +00:00
let predicates =
2019-12-21 13:29:33 +00:00
where_clauses . bounds . value . into_iter ( ) . map ( | c | from_chalk ( db , c ) ) . collect ( ) ;
2019-10-15 19:03:34 +00:00
Ty ::Dyn ( predicates )
}
2019-11-15 19:32:58 +00:00
chalk_ir ::TyData ::Opaque ( where_clauses ) = > {
2019-12-21 13:29:33 +00:00
assert_eq! ( where_clauses . bounds . binders . len ( ) , 1 ) ;
2019-10-15 19:03:34 +00:00
let predicates =
2019-12-21 13:29:33 +00:00
where_clauses . bounds . value . into_iter ( ) . map ( | c | from_chalk ( db , c ) ) . collect ( ) ;
2019-10-15 19:03:34 +00:00
Ty ::Opaque ( predicates )
}
2019-05-01 15:06:11 +00:00
}
}
}
impl ToChalk for Substs {
2019-10-15 19:03:34 +00:00
type Chalk = Vec < chalk_ir ::Parameter < ChalkIr > > ;
2019-05-01 15:06:11 +00:00
2019-10-15 19:03:34 +00:00
fn to_chalk ( self , db : & impl HirDatabase ) -> Vec < Parameter < ChalkIr > > {
2019-05-01 15:06:11 +00:00
self . iter ( ) . map ( | ty | ty . clone ( ) . to_chalk ( db ) . cast ( ) ) . collect ( )
}
2019-10-15 19:03:34 +00:00
fn from_chalk ( db : & impl HirDatabase , parameters : Vec < chalk_ir ::Parameter < ChalkIr > > ) -> Substs {
2019-09-26 19:37:03 +00:00
let tys = parameters
2019-05-01 15:06:11 +00:00
. into_iter ( )
2019-12-21 13:29:33 +00:00
. map ( | p | match p . ty ( ) {
Some ( ty ) = > from_chalk ( db , ty . clone ( ) ) ,
None = > unimplemented! ( ) ,
2019-05-01 15:06:11 +00:00
} )
2019-10-14 04:06:05 +00:00
. collect ( ) ;
2019-09-26 19:37:03 +00:00
Substs ( tys )
2019-05-01 15:06:11 +00:00
}
}
impl ToChalk for TraitRef {
2019-10-15 19:03:34 +00:00
type Chalk = chalk_ir ::TraitRef < ChalkIr > ;
2019-05-01 15:06:11 +00:00
2019-10-15 19:03:34 +00:00
fn to_chalk ( self : TraitRef , db : & impl HirDatabase ) -> chalk_ir ::TraitRef < ChalkIr > {
2019-05-01 15:06:11 +00:00
let trait_id = self . trait_ . to_chalk ( db ) ;
let parameters = self . substs . to_chalk ( db ) ;
chalk_ir ::TraitRef { trait_id , parameters }
}
2019-10-15 19:03:34 +00:00
fn from_chalk ( db : & impl HirDatabase , trait_ref : chalk_ir ::TraitRef < ChalkIr > ) -> Self {
2019-05-01 15:06:11 +00:00
let trait_ = from_chalk ( db , trait_ref . trait_id ) ;
let substs = from_chalk ( db , trait_ref . parameters ) ;
TraitRef { trait_ , substs }
}
}
2019-12-21 13:29:33 +00:00
impl ToChalk for hir_def ::TraitId {
type Chalk = TraitId ;
2019-05-01 15:06:11 +00:00
2019-12-21 13:29:33 +00:00
fn to_chalk ( self , _db : & impl HirDatabase ) -> TraitId {
2019-11-26 15:00:36 +00:00
chalk_ir ::TraitId ( id_to_chalk ( self ) )
2019-05-01 15:06:11 +00:00
}
2019-12-21 13:29:33 +00:00
fn from_chalk ( _db : & impl HirDatabase , trait_id : TraitId ) -> hir_def ::TraitId {
2019-11-26 15:00:36 +00:00
id_from_chalk ( trait_id . 0 )
2019-05-01 15:06:11 +00:00
}
}
impl ToChalk for TypeCtor {
2019-12-21 13:29:33 +00:00
type Chalk = StructId ;
2019-05-01 15:06:11 +00:00
2019-12-21 13:29:33 +00:00
fn to_chalk ( self , db : & impl HirDatabase ) -> StructId {
2019-05-01 15:06:11 +00:00
db . intern_type_ctor ( self ) . into ( )
}
2019-12-21 13:29:33 +00:00
fn from_chalk ( db : & impl HirDatabase , struct_id : StructId ) -> TypeCtor {
2019-05-01 15:06:11 +00:00
db . lookup_intern_type_ctor ( struct_id . into ( ) )
}
}
2019-09-09 20:10:58 +00:00
impl ToChalk for Impl {
2019-12-21 13:29:33 +00:00
type Chalk = ImplId ;
2019-05-01 15:06:11 +00:00
2019-12-21 13:29:33 +00:00
fn to_chalk ( self , db : & impl HirDatabase ) -> ImplId {
2019-11-15 18:28:00 +00:00
db . intern_chalk_impl ( self ) . into ( )
2019-05-01 15:06:11 +00:00
}
2019-12-21 13:29:33 +00:00
fn from_chalk ( db : & impl HirDatabase , impl_id : ImplId ) -> Impl {
2019-11-15 18:28:00 +00:00
db . lookup_intern_chalk_impl ( impl_id . into ( ) )
2019-05-01 15:06:11 +00:00
}
}
2019-11-25 15:44:36 +00:00
impl ToChalk for TypeAliasId {
2019-12-21 13:29:33 +00:00
type Chalk = AssocTypeId ;
2019-11-25 15:44:36 +00:00
2019-12-21 13:29:33 +00:00
fn to_chalk ( self , _db : & impl HirDatabase ) -> AssocTypeId {
chalk_ir ::AssocTypeId ( id_to_chalk ( self ) )
2019-11-25 15:44:36 +00:00
}
2019-12-21 13:29:33 +00:00
fn from_chalk ( _db : & impl HirDatabase , type_alias_id : AssocTypeId ) -> TypeAliasId {
2019-11-25 15:44:36 +00:00
id_from_chalk ( type_alias_id . 0 )
}
}
2019-11-15 19:32:58 +00:00
impl ToChalk for AssocTyValue {
2019-12-21 13:29:33 +00:00
type Chalk = AssociatedTyValueId ;
2019-11-15 19:32:58 +00:00
2019-12-21 13:29:33 +00:00
fn to_chalk ( self , db : & impl HirDatabase ) -> AssociatedTyValueId {
2019-11-15 19:32:58 +00:00
db . intern_assoc_ty_value ( self ) . into ( )
}
2019-12-21 13:29:33 +00:00
fn from_chalk ( db : & impl HirDatabase , assoc_ty_value_id : AssociatedTyValueId ) -> AssocTyValue {
2019-11-15 19:32:58 +00:00
db . lookup_intern_assoc_ty_value ( assoc_ty_value_id . into ( ) )
}
}
2019-05-05 12:21:00 +00:00
impl ToChalk for GenericPredicate {
2019-10-15 19:03:34 +00:00
type Chalk = chalk_ir ::QuantifiedWhereClause < ChalkIr > ;
2019-05-05 12:21:00 +00:00
2019-10-15 19:03:34 +00:00
fn to_chalk ( self , db : & impl HirDatabase ) -> chalk_ir ::QuantifiedWhereClause < ChalkIr > {
2019-05-05 12:21:00 +00:00
match self {
GenericPredicate ::Implemented ( trait_ref ) = > {
make_binders ( chalk_ir ::WhereClause ::Implemented ( trait_ref . to_chalk ( db ) ) , 0 )
}
2019-08-23 15:19:37 +00:00
GenericPredicate ::Projection ( projection_pred ) = > make_binders (
chalk_ir ::WhereClause ::ProjectionEq ( chalk_ir ::ProjectionEq {
projection : projection_pred . projection_ty . to_chalk ( db ) ,
ty : projection_pred . ty . to_chalk ( db ) ,
} ) ,
0 ,
) ,
2019-05-05 12:42:12 +00: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 12:21:00 +00:00
}
}
fn from_chalk (
2019-10-15 19:03:34 +00:00
db : & impl HirDatabase ,
where_clause : chalk_ir ::QuantifiedWhereClause < ChalkIr > ,
2019-05-05 12:21:00 +00:00
) -> GenericPredicate {
2019-10-15 19:03:34 +00:00
match where_clause . value {
chalk_ir ::WhereClause ::Implemented ( tr ) = > {
if tr . trait_id = = UNKNOWN_TRAIT {
// FIXME we need an Error enum on the Chalk side to avoid this
return GenericPredicate ::Error ;
}
GenericPredicate ::Implemented ( from_chalk ( db , tr ) )
}
chalk_ir ::WhereClause ::ProjectionEq ( projection_eq ) = > {
let projection_ty = from_chalk ( db , projection_eq . projection ) ;
let ty = from_chalk ( db , projection_eq . ty ) ;
GenericPredicate ::Projection ( super ::ProjectionPredicate { projection_ty , ty } )
}
}
2019-05-05 12:21:00 +00:00
}
}
2019-05-12 15:53:44 +00:00
impl ToChalk for ProjectionTy {
2019-10-15 19:03:34 +00:00
type Chalk = chalk_ir ::ProjectionTy < ChalkIr > ;
2019-05-12 15:53:44 +00:00
2019-10-15 19:03:34 +00:00
fn to_chalk ( self , db : & impl HirDatabase ) -> chalk_ir ::ProjectionTy < ChalkIr > {
2019-05-12 15:53:44 +00:00
chalk_ir ::ProjectionTy {
associated_ty_id : self . associated_ty . to_chalk ( db ) ,
parameters : self . parameters . to_chalk ( db ) ,
}
}
2019-10-15 19:03:34 +00:00
fn from_chalk (
db : & impl HirDatabase ,
projection_ty : chalk_ir ::ProjectionTy < ChalkIr > ,
) -> ProjectionTy {
2019-05-12 15:53:44 +00:00
ProjectionTy {
associated_ty : from_chalk ( db , projection_ty . associated_ty_id ) ,
parameters : from_chalk ( db , projection_ty . parameters ) ,
}
}
}
2019-07-07 16:14:56 +00:00
impl ToChalk for super ::ProjectionPredicate {
2019-10-15 19:03:34 +00:00
type Chalk = chalk_ir ::Normalize < ChalkIr > ;
2019-07-07 16:14:56 +00:00
2019-10-15 19:03:34 +00:00
fn to_chalk ( self , db : & impl HirDatabase ) -> chalk_ir ::Normalize < ChalkIr > {
2019-07-07 16:14:56 +00:00
chalk_ir ::Normalize {
projection : self . projection_ty . to_chalk ( db ) ,
ty : self . ty . to_chalk ( db ) ,
}
}
2019-10-15 19:03:34 +00:00
fn from_chalk ( _db : & impl HirDatabase , _normalize : chalk_ir ::Normalize < ChalkIr > ) -> Self {
2019-07-07 16:14:56 +00:00
unimplemented! ( )
}
}
2019-07-08 19:43:52 +00:00
impl ToChalk for Obligation {
2019-10-15 19:03:34 +00:00
type Chalk = chalk_ir ::DomainGoal < ChalkIr > ;
2019-07-08 19:43:52 +00:00
2019-10-15 19:03:34 +00:00
fn to_chalk ( self , db : & impl HirDatabase ) -> chalk_ir ::DomainGoal < ChalkIr > {
2019-07-08 19:43:52 +00:00
match self {
Obligation ::Trait ( tr ) = > tr . to_chalk ( db ) . cast ( ) ,
Obligation ::Projection ( pr ) = > pr . to_chalk ( db ) . cast ( ) ,
}
}
2019-10-15 19:03:34 +00:00
fn from_chalk ( _db : & impl HirDatabase , _goal : chalk_ir ::DomainGoal < ChalkIr > ) -> Self {
2019-07-08 19:43:52 +00:00
unimplemented! ( )
}
}
2019-06-29 15:40:00 +00:00
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 ) ;
let canonical = chalk_ir ::Canonical { value , binders : vec ! [ parameter ; self . num_vars ] } ;
canonical
}
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 19:34:23 +00:00
impl ToChalk for Arc < super ::TraitEnvironment > {
2019-10-29 12:01:33 +00:00
type Chalk = chalk_ir ::Environment < ChalkIr > ;
2019-06-29 15:40:00 +00:00
2019-10-29 12:01:33 +00:00
fn to_chalk ( self , db : & impl HirDatabase ) -> chalk_ir ::Environment < ChalkIr > {
2019-06-29 17:14:52 +00:00
let mut clauses = Vec ::new ( ) ;
for pred in & self . predicates {
if pred . is_error ( ) {
// for env, we just ignore errors
continue ;
}
2019-10-15 19:03:34 +00:00
let program_clause : chalk_ir ::ProgramClause < ChalkIr > = pred . clone ( ) . to_chalk ( db ) . cast ( ) ;
2019-09-07 14:30:37 +00:00
clauses . push ( program_clause . into_from_env_clause ( ) ) ;
2019-06-29 17:14:52 +00:00
}
chalk_ir ::Environment ::new ( ) . add_clauses ( clauses )
2019-06-29 15:40:00 +00:00
}
fn from_chalk (
_db : & impl HirDatabase ,
2019-10-29 12:01:33 +00:00
_env : chalk_ir ::Environment < ChalkIr > ,
2019-07-09 19:34:23 +00:00
) -> Arc < super ::TraitEnvironment > {
2019-06-29 17:14:52 +00:00
unimplemented! ( )
2019-06-29 15:40:00 +00:00
}
}
2019-10-15 19:03:34 +00:00
impl < T : ToChalk > ToChalk for super ::InEnvironment < T >
where
T ::Chalk : chalk_ir ::family ::HasTypeFamily < TypeFamily = ChalkIr > ,
{
2019-06-29 15:40:00 +00:00
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 ) ,
}
}
}
2019-12-03 11:16:39 +00:00
impl ToChalk for builtin ::BuiltinImplData {
type Chalk = chalk_rust_ir ::ImplDatum < ChalkIr > ;
fn to_chalk ( self , db : & impl HirDatabase ) -> chalk_rust_ir ::ImplDatum < ChalkIr > {
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 ,
}
}
fn from_chalk ( _db : & impl HirDatabase , _data : chalk_rust_ir ::ImplDatum < ChalkIr > ) -> Self {
unimplemented! ( )
}
}
impl ToChalk for builtin ::BuiltinImplAssocTyValueData {
type Chalk = chalk_rust_ir ::AssociatedTyValue < ChalkIr > ;
fn to_chalk ( self , db : & impl HirDatabase ) -> chalk_rust_ir ::AssociatedTyValue < ChalkIr > {
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 ,
_data : chalk_rust_ir ::AssociatedTyValue < ChalkIr > ,
) -> builtin ::BuiltinImplAssocTyValueData {
unimplemented! ( )
}
}
2019-05-01 15:06:11 +00: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 12:21:00 +00:00
fn convert_where_clauses (
db : & impl HirDatabase ,
2019-11-25 12:39:12 +00:00
def : GenericDefId ,
2019-05-05 12:21:00 +00:00
substs : & Substs ,
2019-10-15 19:03:34 +00:00
) -> Vec < chalk_ir ::QuantifiedWhereClause < ChalkIr > > {
2019-05-05 12:21:00 +00: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-11 18:31:41 +00:00
if pred . is_error ( ) {
// HACK: Return just the single predicate (which is always false
// anyway), otherwise Chalk can easily get into slow situations
return vec! [ pred . clone ( ) . subst ( substs ) . to_chalk ( db ) ] ;
}
2019-05-05 12:42:12 +00:00
result . push ( pred . clone ( ) . subst ( substs ) . to_chalk ( db ) ) ;
2019-05-05 12:21:00 +00:00
}
2019-05-05 12:42:12 +00:00
result
2019-05-05 12:21:00 +00:00
}
2019-11-16 12:21:51 +00:00
impl < ' a , DB > chalk_solve ::RustIrDatabase < ChalkIr > for ChalkContext < ' a , DB >
2019-05-01 15:06:11 +00:00
where
DB : HirDatabase ,
{
2019-12-21 13:29:33 +00:00
fn associated_ty_data ( & self , id : AssocTypeId ) -> Arc < AssociatedTyDatum > {
2019-06-26 09:54:13 +00:00
self . db . associated_ty_data ( id )
2019-05-01 15:06:11 +00:00
}
2019-12-21 13:29:33 +00:00
fn trait_datum ( & self , trait_id : TraitId ) -> Arc < TraitDatum > {
2019-06-26 09:54:13 +00:00
self . db . trait_datum ( self . krate , trait_id )
2019-05-01 15:06:11 +00:00
}
2019-12-21 13:29:33 +00:00
fn struct_datum ( & self , struct_id : StructId ) -> Arc < StructDatum > {
2019-06-26 09:54:13 +00:00
self . db . struct_datum ( self . krate , struct_id )
2019-05-01 15:06:11 +00:00
}
2019-12-21 13:29:33 +00:00
fn impl_datum ( & self , impl_id : ImplId ) -> Arc < ImplDatum > {
2019-06-26 09:54:13 +00:00
self . db . impl_datum ( self . krate , impl_id )
2019-05-01 15:06:11 +00:00
}
2019-09-24 16:27:31 +00:00
fn impls_for_trait (
& self ,
2019-12-21 13:29:33 +00:00
trait_id : TraitId ,
parameters : & [ Parameter < TypeFamily > ] ,
) -> Vec < ImplId > {
2019-05-01 18:50:49 +00:00
debug! ( " impls_for_trait {:?} " , trait_id ) ;
2019-05-05 12:42:12 +00:00
if trait_id = = UNKNOWN_TRAIT {
return Vec ::new ( ) ;
}
2019-12-21 13:29:33 +00:00
let trait_ : hir_def ::TraitId = from_chalk ( self . db , trait_id ) ;
2019-09-09 20:10:58 +00:00
let mut result : Vec < _ > = self
2019-05-07 15:35:45 +00:00
. db
2019-11-27 06:42:55 +00:00
. impls_for_trait ( self . krate , trait_ . into ( ) )
2019-05-01 15:06:11 +00:00
. iter ( )
2019-09-09 20:10:58 +00:00
. copied ( )
2019-11-27 09:02:54 +00:00
. map ( | it | Impl ::ImplBlock ( it . into ( ) ) )
2019-09-09 20:10:58 +00:00
. map ( | impl_ | impl_ . to_chalk ( self . db ) )
2019-05-07 15:35:45 +00:00
. collect ( ) ;
2019-09-09 20:10:58 +00:00
let ty : Ty = from_chalk ( self . db , parameters [ 0 ] . assert_ty_ref ( ) . clone ( ) ) ;
2019-12-03 11:16:39 +00:00
builtin ::get_builtin_impls ( self . db , self . krate , & ty , trait_ , | i | {
result . push ( i . to_chalk ( self . db ) )
} ) ;
2019-09-09 20:10:58 +00:00
2019-05-07 15:35:45 +00:00
debug! ( " impls_for_trait returned {} impls " , result . len ( ) ) ;
result
2019-05-01 15:06:11 +00:00
}
2019-12-21 13:29:33 +00:00
fn impl_provided_for ( & self , auto_trait_id : TraitId , struct_id : StructId ) -> bool {
2019-05-01 18:50:49 +00:00
debug! ( " impl_provided_for {:?}, {:?} " , auto_trait_id , struct_id ) ;
2019-05-01 15:06:11 +00:00
false // FIXME
}
2019-12-21 13:29:33 +00:00
fn associated_ty_value ( & self , id : AssociatedTyValueId ) -> Arc < AssociatedTyValue > {
2019-11-27 06:42:55 +00:00
self . db . associated_ty_value ( self . krate . into ( ) , id )
2019-05-01 15:06:11 +00:00
}
2019-10-15 19:03:34 +00:00
fn custom_clauses ( & self ) -> Vec < chalk_ir ::ProgramClause < ChalkIr > > {
2019-05-01 21:26:42 +00:00
vec! [ ]
}
2019-12-21 13:29:33 +00:00
fn local_impls_to_coherence_check ( & self , _trait_id : TraitId ) -> Vec < ImplId > {
2019-09-23 18:33:47 +00:00
// We don't do coherence checking (yet)
unimplemented! ( )
2019-05-01 21:26:42 +00:00
}
2019-12-21 13:29:33 +00:00
fn as_struct_id ( & self , id : & TypeName < TypeFamily > ) -> Option < StructId > {
match id {
TypeName ::Struct ( struct_id ) = > Some ( * struct_id ) ,
_ = > None ,
}
}
2019-05-01 15:06:11 +00:00
}
2019-06-26 09:54:13 +00:00
pub ( crate ) fn associated_ty_data_query (
db : & impl HirDatabase ,
2019-12-21 13:29:33 +00:00
id : AssocTypeId ,
) -> Arc < AssociatedTyDatum > {
2019-06-26 09:54:13 +00:00
debug! ( " associated_ty_data {:?} " , id ) ;
2019-11-25 15:58:17 +00:00
let type_alias : TypeAliasId = from_chalk ( db , id ) ;
let trait_ = match type_alias . lookup ( db ) . container {
2019-12-20 10:59:50 +00:00
AssocContainerId ::TraitId ( t ) = > t ,
2019-06-26 09:54:13 +00:00
_ = > panic! ( " associated type not in trait " ) ,
} ;
2019-12-07 10:50:36 +00:00
let generic_params = generics ( db , type_alias . into ( ) ) ;
2019-11-15 19:32:58 +00:00
let bound_data = chalk_rust_ir ::AssociatedTyDatumBound {
// FIXME add bounds and where clauses
bounds : vec ! [ ] ,
where_clauses : vec ! [ ] ,
} ;
2019-06-26 09:54:13 +00:00
let datum = AssociatedTyDatum {
2019-11-26 15:00:36 +00:00
trait_id : trait_ . to_chalk ( db ) ,
2019-06-26 09:54:13 +00:00
id ,
2019-11-25 15:58:17 +00:00
name : lalrpop_intern ::intern ( & db . type_alias_data ( type_alias ) . name . to_string ( ) ) ,
2019-12-07 12:05:05 +00:00
binders : make_binders ( bound_data , generic_params . len ( ) ) ,
2019-06-26 09:54:13 +00:00
} ;
Arc ::new ( datum )
}
pub ( crate ) fn trait_datum_query (
db : & impl HirDatabase ,
2019-11-27 06:42:55 +00:00
krate : CrateId ,
2019-12-21 13:29:33 +00:00
trait_id : TraitId ,
) -> Arc < TraitDatum > {
2019-06-26 09:54:13 +00:00
debug! ( " trait_datum {:?} " , trait_id ) ;
if trait_id = = UNKNOWN_TRAIT {
2019-11-15 19:32:58 +00:00
let trait_datum_bound = chalk_rust_ir ::TraitDatumBound { where_clauses : Vec ::new ( ) } ;
2019-10-10 18:51:50 +00:00
let flags = chalk_rust_ir ::TraitFlags {
auto : false ,
marker : false ,
upstream : true ,
fundamental : false ,
non_enumerable : true ,
2019-11-15 19:32:58 +00:00
coinductive : false ,
2019-10-10 18:51:50 +00:00
} ;
2019-11-15 19:32:58 +00:00
return Arc ::new ( TraitDatum {
id : trait_id ,
binders : make_binders ( trait_datum_bound , 1 ) ,
flags ,
associated_ty_ids : vec ! [ ] ,
} ) ;
2019-06-26 09:54:13 +00:00
}
2019-12-21 13:29:33 +00:00
let trait_ : hir_def ::TraitId = from_chalk ( db , trait_id ) ;
2019-11-26 15:00:36 +00:00
let trait_data = db . trait_data ( trait_ ) ;
debug! ( " trait {:?} = {:?} " , trait_id , trait_data . name ) ;
2019-12-07 10:50:36 +00:00
let generic_params = generics ( db , trait_ . into ( ) ) ;
2019-06-26 09:54:13 +00:00
let bound_vars = Substs ::bound_vars ( & generic_params ) ;
let flags = chalk_rust_ir ::TraitFlags {
2019-11-26 15:00:36 +00:00
auto : trait_data . auto ,
2019-12-20 11:29:25 +00:00
upstream : trait_ . lookup ( db ) . container . module ( db ) . krate ! = krate ,
2019-09-09 19:24:24 +00:00
non_enumerable : true ,
2019-11-15 19:32:58 +00:00
coinductive : false , // only relevant for Chalk testing
2019-06-26 09:54:13 +00:00
// FIXME set these flags correctly
marker : false ,
fundamental : false ,
} ;
2019-11-26 15:00:36 +00: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 ( ) ;
2019-11-15 19:32:58 +00:00
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 ,
} ;
2019-06-26 09:54:13 +00:00
Arc ::new ( trait_datum )
}
pub ( crate ) fn struct_datum_query (
db : & impl HirDatabase ,
2019-11-27 06:42:55 +00:00
krate : CrateId ,
2019-12-21 13:29:33 +00:00
struct_id : StructId ,
) -> Arc < StructDatum > {
2019-06-26 09:54:13 +00:00
debug! ( " struct_datum {:?} " , struct_id ) ;
2019-09-26 19:37:03 +00:00
let type_ctor : TypeCtor = from_chalk ( db , struct_id ) ;
2019-06-26 09:54:13 +00:00
debug! ( " struct {:?} = {:?} " , struct_id , type_ctor ) ;
2019-09-26 19:37:03 +00:00
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 | {
2019-12-07 10:50:36 +00:00
let generic_params = generics ( db , generic_def . into ( ) ) ;
2019-06-26 09:54:13 +00:00
let bound_vars = Substs ::bound_vars ( & generic_params ) ;
2019-09-26 19:37:03 +00:00
convert_where_clauses ( db , generic_def , & bound_vars )
} )
. unwrap_or_else ( Vec ::new ) ;
2019-06-26 09:54:13 +00:00
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 ,
} ;
2019-11-15 19:32:58 +00:00
let struct_datum =
StructDatum { id : struct_id , binders : make_binders ( struct_datum_bound , num_params ) , flags } ;
2019-06-26 09:54:13 +00:00
Arc ::new ( struct_datum )
}
pub ( crate ) fn impl_datum_query (
db : & impl HirDatabase ,
2019-11-27 06:42:55 +00:00
krate : CrateId ,
2019-12-21 13:29:33 +00:00
impl_id : ImplId ,
) -> Arc < ImplDatum > {
2019-06-26 09:54:13 +00:00
let _p = ra_prof ::profile ( " impl_datum " ) ;
debug! ( " impl_datum {:?} " , impl_id ) ;
2019-09-09 20:10:58 +00:00
let impl_ : Impl = from_chalk ( db , impl_id ) ;
match impl_ {
Impl ::ImplBlock ( impl_block ) = > impl_block_datum ( db , krate , impl_id , impl_block ) ,
2019-12-03 11:16:39 +00:00
_ = > builtin ::impl_datum ( db , krate , impl_ ) . map ( | d | Arc ::new ( d . to_chalk ( db ) ) ) ,
2019-09-09 20:10:58 +00:00
}
2019-11-15 19:32:58 +00:00
. unwrap_or_else ( invalid_impl_datum )
2019-09-09 20:10:58 +00:00
}
fn impl_block_datum (
db : & impl HirDatabase ,
2019-11-27 06:42:55 +00:00
krate : CrateId ,
2019-12-21 13:29:33 +00:00
chalk_id : ImplId ,
impl_id : hir_def ::ImplId ,
) -> Option < Arc < ImplDatum > > {
2019-11-30 11:35:37 +00:00
let trait_ref = db . impl_trait ( impl_id ) ? ;
2019-11-27 09:47:18 +00:00
let impl_data = db . impl_data ( impl_id ) ;
2019-12-07 10:50:36 +00:00
let generic_params = generics ( db , impl_id . into ( ) ) ;
2019-06-26 09:54:13 +00:00
let bound_vars = Substs ::bound_vars ( & generic_params ) ;
2019-11-27 09:47:18 +00:00
let trait_ref = trait_ref . subst ( & bound_vars ) ;
2019-11-15 19:32:58 +00:00
let trait_ = trait_ref . trait_ ;
2019-12-20 12:47:44 +00:00
let impl_type = if impl_id . lookup ( db ) . container . module ( db ) . krate = = krate {
2019-06-26 09:54:13 +00:00
chalk_rust_ir ::ImplType ::Local
} else {
chalk_rust_ir ::ImplType ::External
} ;
2019-11-27 09:47:18 +00:00
let where_clauses = convert_where_clauses ( db , impl_id . into ( ) , & bound_vars ) ;
let negative = impl_data . is_negative ;
2019-06-26 09:54:13 +00:00
debug! (
" impl {:?}: {}{} where {:?} " ,
2019-11-27 09:47:18 +00:00
chalk_id ,
2019-06-26 09:54:13 +00:00
if negative { " ! " } else { " " } ,
trait_ref . display ( db ) ,
where_clauses
) ;
let trait_ref = trait_ref . to_chalk ( db ) ;
2019-10-10 18:51:50 +00:00
let polarity = if negative {
chalk_rust_ir ::Polarity ::Negative
} else {
chalk_rust_ir ::Polarity ::Positive
2019-06-26 09:54:13 +00:00
} ;
2019-10-10 18:51:50 +00:00
2019-11-15 19:32:58 +00:00
let impl_datum_bound = chalk_rust_ir ::ImplDatumBound { trait_ref , where_clauses } ;
2019-11-26 15:00:36 +00:00
let trait_data = db . trait_data ( trait_ ) ;
2019-11-27 09:47:18 +00:00
let associated_ty_value_ids = impl_data
. items
. iter ( )
2019-11-15 19:32:58 +00:00
. filter_map ( | item | match item {
2019-11-27 09:47:18 +00:00
AssocItemId ::TypeAliasId ( type_alias ) = > Some ( * type_alias ) ,
2019-11-15 19:32:58 +00:00
_ = > None ,
} )
2019-11-27 09:47:18 +00:00
. filter ( | & type_alias | {
2019-11-15 19:32:58 +00:00
// don't include associated types that don't exist in the trait
2019-11-27 09:47:18 +00:00
let name = & db . type_alias_data ( type_alias ) . name ;
trait_data . associated_type_by_name ( name ) . is_some ( )
2019-11-15 19:32:58 +00:00
} )
2019-11-27 09:47:18 +00:00
. map ( | type_alias | AssocTyValue ::TypeAlias ( type_alias ) . to_chalk ( db ) )
2019-11-15 19:32:58 +00:00
. collect ( ) ;
2019-06-26 09:54:13 +00:00
debug! ( " impl_datum: {:?} " , impl_datum_bound ) ;
2019-10-10 18:51:50 +00:00
let impl_datum = ImplDatum {
binders : make_binders ( impl_datum_bound , bound_vars . len ( ) ) ,
impl_type ,
polarity ,
2019-11-15 19:32:58 +00:00
associated_ty_value_ids ,
2019-10-10 18:51:50 +00:00
} ;
2019-11-15 19:32:58 +00:00
Some ( Arc ::new ( impl_datum ) )
2019-06-26 09:54:13 +00:00
}
2019-12-21 13:29:33 +00:00
fn invalid_impl_datum ( ) -> Arc < ImplDatum > {
2019-09-09 20:10:58 +00:00
let trait_ref = chalk_ir ::TraitRef {
trait_id : UNKNOWN_TRAIT ,
2019-11-15 19:32:58 +00:00
parameters : vec ! [ chalk_ir ::TyData ::BoundVar ( 0 ) . cast ( ) . intern ( ) . cast ( ) ] ,
2019-10-10 18:51:50 +00:00
} ;
2019-11-15 19:32:58 +00:00
let impl_datum_bound = chalk_rust_ir ::ImplDatumBound { trait_ref , where_clauses : Vec ::new ( ) } ;
2019-10-10 18:51:50 +00:00
let impl_datum = ImplDatum {
binders : make_binders ( impl_datum_bound , 1 ) ,
2019-09-09 20:10:58 +00:00
impl_type : chalk_rust_ir ::ImplType ::External ,
2019-10-10 18:51:50 +00:00
polarity : chalk_rust_ir ::Polarity ::Positive ,
2019-11-15 19:32:58 +00:00
associated_ty_value_ids : Vec ::new ( ) ,
2019-09-09 20:10:58 +00:00
} ;
Arc ::new ( impl_datum )
}
2019-11-15 19:32:58 +00:00
pub ( crate ) fn associated_ty_value_query (
db : & impl HirDatabase ,
2019-11-27 06:42:55 +00:00
krate : CrateId ,
2019-11-15 19:32:58 +00:00
id : chalk_rust_ir ::AssociatedTyValueId ,
2019-11-16 12:21:51 +00:00
) -> Arc < chalk_rust_ir ::AssociatedTyValue < ChalkIr > > {
2019-11-15 19:32:58 +00:00
let data : AssocTyValue = from_chalk ( db , id ) ;
match data {
AssocTyValue ::TypeAlias ( type_alias ) = > {
type_alias_associated_ty_value ( db , krate , type_alias )
}
2019-12-03 11:16:39 +00:00
_ = > Arc ::new ( builtin ::associated_ty_value ( db , krate , data ) . to_chalk ( db ) ) ,
2019-11-15 19:32:58 +00:00
}
}
fn type_alias_associated_ty_value (
db : & impl HirDatabase ,
2019-11-27 06:42:55 +00:00
_krate : CrateId ,
2019-11-27 08:40:10 +00:00
type_alias : TypeAliasId ,
2019-12-21 13:29:33 +00:00
) -> Arc < AssociatedTyValue > {
2019-11-27 08:40:10 +00:00
let type_alias_data = db . type_alias_data ( type_alias ) ;
let impl_id = match type_alias . lookup ( db ) . container {
2019-12-20 10:59:50 +00:00
AssocContainerId ::ImplId ( it ) = > it ,
2019-11-27 08:40:10 +00:00
_ = > panic! ( " assoc ty value should be in impl " ) ,
} ;
2019-11-30 11:35:37 +00:00
let trait_ref = db . impl_trait ( impl_id ) . expect ( " assoc ty value should not exist " ) ; // we don't return any assoc ty values if the impl'd trait can't be resolved
2019-11-27 08:40:10 +00:00
2019-11-26 14:21:29 +00:00
let assoc_ty = db
2019-11-27 19:12:09 +00:00
. trait_data ( trait_ref . trait_ )
2019-11-27 08:40:10 +00:00
. associated_type_by_name ( & type_alias_data . name )
2019-11-26 14:21:29 +00:00
. expect ( " assoc ty value should not exist " ) ; // validated when building the impl data as well
2019-12-07 10:50:36 +00:00
let generic_params = generics ( db , impl_id . into ( ) ) ;
2019-11-15 19:32:58 +00:00
let bound_vars = Substs ::bound_vars ( & generic_params ) ;
2019-11-27 08:40:10 +00:00
let ty = db . ty ( type_alias . into ( ) ) . subst ( & bound_vars ) ;
2019-11-15 19:32:58 +00:00
let value_bound = chalk_rust_ir ::AssociatedTyValueBound { ty : ty . to_chalk ( db ) } ;
let value = chalk_rust_ir ::AssociatedTyValue {
2019-11-27 08:40:10 +00:00
impl_id : Impl ::ImplBlock ( impl_id . into ( ) ) . to_chalk ( db ) ,
2019-11-15 19:32:58 +00:00
associated_ty_id : assoc_ty . to_chalk ( db ) ,
value : make_binders ( value_bound , bound_vars . len ( ) ) ,
} ;
Arc ::new ( value )
}
2019-05-01 15:06:11 +00: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 ( ) }
}
2019-12-21 13:29:33 +00:00
impl From < StructId > for crate ::TypeCtorId {
fn from ( struct_id : StructId ) -> Self {
2019-05-01 15:06:11 +00:00
id_from_chalk ( struct_id . 0 )
}
}
2019-12-21 13:29:33 +00:00
impl From < crate ::TypeCtorId > for StructId {
2019-11-27 14:46:02 +00:00
fn from ( type_ctor_id : crate ::TypeCtorId ) -> Self {
2019-05-01 15:06:11 +00:00
chalk_ir ::StructId ( id_to_chalk ( type_ctor_id ) )
}
}
2019-12-21 13:29:33 +00:00
impl From < ImplId > for crate ::traits ::GlobalImplId {
fn from ( impl_id : ImplId ) -> Self {
2019-05-01 15:06:11 +00:00
id_from_chalk ( impl_id . 0 )
}
}
2019-12-21 13:29:33 +00:00
impl From < crate ::traits ::GlobalImplId > for ImplId {
2019-11-27 14:46:02 +00:00
fn from ( impl_id : crate ::traits ::GlobalImplId ) -> Self {
2019-05-01 15:06:11 +00:00
chalk_ir ::ImplId ( id_to_chalk ( impl_id ) )
}
}
2019-11-15 19:32:58 +00:00
2019-11-27 14:46:02 +00:00
impl From < chalk_rust_ir ::AssociatedTyValueId > for crate ::traits ::AssocTyValueId {
2019-11-15 19:32:58 +00:00
fn from ( id : chalk_rust_ir ::AssociatedTyValueId ) -> Self {
id_from_chalk ( id . 0 )
}
}
2019-11-27 14:46:02 +00:00
impl From < crate ::traits ::AssocTyValueId > for chalk_rust_ir ::AssociatedTyValueId {
fn from ( assoc_ty_value_id : crate ::traits ::AssocTyValueId ) -> Self {
2019-11-15 19:32:58 +00:00
chalk_rust_ir ::AssociatedTyValueId ( id_to_chalk ( assoc_ty_value_id ) )
}
}