2019-05-01 10:06:11 -05:00
//! Conversion code from/to Chalk.
2019-12-21 08:00:44 -06:00
use std ::{ fmt , sync ::Arc } ;
2019-05-01 10:06:11 -05:00
2019-05-01 13:50:49 -05:00
use log ::debug ;
2020-02-24 14:36:57 -06:00
use chalk_ir ::{ cast ::Cast , Goal , GoalData , Parameter , PlaceholderIndex , TypeName , UniverseIndex } ;
2019-05-01 10:06:11 -05:00
2019-12-21 07:29:33 -06:00
use hir_def ::{ AssocContainerId , AssocItemId , GenericDefId , HasModule , Lookup , TypeAliasId } ;
2019-12-03 05:16:39 -06:00
use ra_db ::{
salsa ::{ InternId , InternKey } ,
CrateId ,
2019-11-26 09:00:36 -06:00
} ;
2019-05-01 10:06:11 -05:00
2019-12-03 05:16:39 -06:00
use super ::{ builtin , AssocTyValue , Canonical , ChalkContext , Impl , Obligation } ;
2019-05-01 10:06:11 -05:00
use crate ::{
2019-12-07 04:50:36 -06:00
db ::HirDatabase , display ::HirDisplay , utils ::generics , ApplicationTy , GenericPredicate ,
2020-02-02 10:11:54 -06:00
ProjectionTy , Substs , TraitRef , Ty , TypeCtor ,
2019-05-01 10:06:11 -05:00
} ;
2019-12-21 08:00:44 -06:00
#[ derive(Debug, Copy, Clone, Hash, PartialOrd, Ord, PartialEq, Eq) ]
2020-03-02 16:01:16 -06:00
pub struct Interner ;
2019-12-21 08:00:44 -06:00
2020-02-24 14:36:57 -06:00
impl chalk_ir ::interner ::Interner for Interner {
2019-12-21 08:00:44 -06:00
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 > > ;
2020-02-24 14:36:57 -06:00
type InternedGoals = Vec < Goal < Self > > ;
2020-01-17 15:12:15 -06:00
type InternedSubstitution = Vec < Parameter < Self > > ;
2020-03-02 15:30:38 -06:00
type Identifier = lalrpop_intern ::InternedString ;
2019-12-21 08:00:44 -06:00
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 > ,
2019-12-21 08:00:44 -06:00
_fmt : & mut fmt ::Formatter < '_ > ,
) -> Option < fmt ::Result > {
None
}
2020-03-02 16:01:16 -06:00
fn intern_ty ( & self , ty : chalk_ir ::TyData < Self > ) -> Box < chalk_ir ::TyData < Self > > {
2019-12-21 08:00:44 -06:00
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 )
}
2020-02-24 14:36:57 -06:00
fn intern_goals ( data : impl IntoIterator < Item = Goal < Self > > ) -> Self ::InternedGoals {
data . into_iter ( ) . collect ( )
}
2020-01-17 15:12:15 -06:00
fn goal_data ( goal : & Arc < GoalData < Self > > ) -> & GoalData < Self > {
goal
}
2020-02-24 14:36:57 -06:00
fn goals_data ( goals : & Vec < Goal < Interner > > ) -> & [ Goal < Interner > ] {
goals
}
2020-01-17 15:12:15 -06:00
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
}
2019-12-21 08:00:44 -06:00
}
2020-02-24 14:36:57 -06:00
impl chalk_ir ::interner ::HasInterner for Interner {
type Interner = Self ;
2019-12-21 08:00:44 -06:00
}
2020-02-24 14:36:57 -06:00
pub type AssocTypeId = chalk_ir ::AssocTypeId < Interner > ;
pub type AssociatedTyDatum = chalk_rust_ir ::AssociatedTyDatum < Interner > ;
pub type TraitId = chalk_ir ::TraitId < Interner > ;
pub type TraitDatum = chalk_rust_ir ::TraitDatum < Interner > ;
pub type StructId = chalk_ir ::StructId < Interner > ;
pub type StructDatum = chalk_rust_ir ::StructDatum < Interner > ;
pub type ImplId = chalk_ir ::ImplId < Interner > ;
pub type ImplDatum = chalk_rust_ir ::ImplDatum < Interner > ;
2020-03-02 15:30:38 -06:00
pub type AssociatedTyValueId = chalk_rust_ir ::AssociatedTyValueId < Interner > ;
2020-02-24 14:36:57 -06:00
pub type AssociatedTyValue = chalk_rust_ir ::AssociatedTyValue < Interner > ;
2019-12-21 07:29:33 -06:00
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 {
2020-02-24 14:36:57 -06:00
type Chalk = chalk_ir ::Ty < Interner > ;
fn to_chalk ( self , db : & impl HirDatabase ) -> chalk_ir ::Ty < Interner > {
2019-05-01 10:06:11 -05:00
match self {
2019-05-04 08:53:23 -05:00
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 ) ;
2020-03-02 16:01:16 -06:00
chalk_ir ::ApplicationTy { name , substitution } . cast ( ) . intern ( & Interner )
2019-05-04 08:53:23 -05:00
}
2019-08-05 14:13:34 -05:00
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 ) ;
2020-03-02 16:01:16 -06:00
chalk_ir ::AliasTy { associated_ty_id , substitution } . cast ( ) . intern ( & Interner )
2019-08-05 14:13:34 -05:00
}
2020-02-14 07:44:00 -06:00
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 ( ) ,
}
2020-03-02 16:01:16 -06:00
. to_ty ::< Interner > ( & Interner )
2019-05-01 10:06:11 -05:00
}
2020-03-02 16:01:16 -06:00
Ty ::Bound ( idx ) = > chalk_ir ::TyData ::BoundVar ( idx as usize ) . intern ( & Interner ) ,
2019-05-01 10:06:11 -05:00
Ty ::Infer ( _infer_ty ) = > panic! ( " uncanonicalized infer ty " ) ,
2019-11-15 14:00:27 -06:00
Ty ::Dyn ( predicates ) = > {
2019-12-21 12:15:06 -06:00
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 ) } ;
2020-03-02 16:01:16 -06:00
chalk_ir ::TyData ::Dyn ( bounded_ty ) . intern ( & Interner )
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 ( ) ;
2019-10-29 07:01:33 -05:00
let name = TypeName ::Error ;
2020-03-02 16:01:16 -06:00
chalk_ir ::ApplicationTy { name , substitution } . cast ( ) . intern ( & Interner )
2019-05-05 07:42:12 -05:00
}
2019-05-01 10:06:11 -05:00
}
}
2020-02-24 14:36:57 -06:00
fn from_chalk ( db : & impl HirDatabase , chalk : chalk_ir ::Ty < Interner > ) -> Self {
2019-11-15 13:32:58 -06:00
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-05-01 10:06:11 -05:00
}
2019-12-21 07:46:15 -06:00
} ,
2019-12-21 07:29:33 -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 ) ,
) ;
2020-02-14 07:44:00 -06:00
Ty ::Placeholder ( db . lookup_intern_type_param_id ( interned_id ) )
2019-12-21 07:29:33 -06:00
}
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! ( ) ,
2019-11-15 13:32:58 -06:00
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 07:29:33 -06:00
assert_eq! ( where_clauses . bounds . binders . len ( ) , 1 ) ;
2019-10-15 14:03:34 -05:00
let predicates =
2019-12-21 07:29:33 -06:00
where_clauses . bounds . value . into_iter ( ) . map ( | c | from_chalk ( db , c ) ) . collect ( ) ;
2019-10-15 14:03:34 -05:00
Ty ::Dyn ( predicates )
}
2019-05-01 10:06:11 -05:00
}
}
}
impl ToChalk for Substs {
2020-02-24 14:36:57 -06:00
type Chalk = chalk_ir ::Substitution < Interner > ;
2019-05-01 10:06:11 -05:00
2020-02-24 14:36:57 -06:00
fn to_chalk ( self , db : & impl HirDatabase ) -> chalk_ir ::Substitution < Interner > {
2020-01-17 15:12:15 -06:00
chalk_ir ::Substitution ::from ( self . iter ( ) . map ( | ty | ty . clone ( ) . to_chalk ( db ) ) )
2019-05-01 10:06:11 -05:00
}
2020-02-24 14:36:57 -06:00
fn from_chalk ( db : & impl HirDatabase , parameters : chalk_ir ::Substitution < Interner > ) -> Substs {
2019-09-26 14:37:03 -05:00
let tys = parameters
2019-05-01 10:06:11 -05:00
. into_iter ( )
2019-12-21 07:29:33 -06:00
. map ( | p | match p . ty ( ) {
Some ( ty ) = > from_chalk ( db , ty . clone ( ) ) ,
None = > unimplemented! ( ) ,
2019-05-01 10:06:11 -05:00
} )
2019-10-13 23:06:05 -05:00
. collect ( ) ;
2019-09-26 14:37:03 -05:00
Substs ( tys )
2019-05-01 10:06:11 -05:00
}
}
impl ToChalk for TraitRef {
2020-02-24 14:36:57 -06:00
type Chalk = chalk_ir ::TraitRef < Interner > ;
2019-05-01 10:06:11 -05:00
2020-02-24 14:36:57 -06:00
fn to_chalk ( self : TraitRef , db : & impl HirDatabase ) -> chalk_ir ::TraitRef < Interner > {
2019-05-01 10:06:11 -05:00
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-05-01 10:06:11 -05:00
}
2020-02-24 14:36:57 -06:00
fn from_chalk ( db : & impl HirDatabase , trait_ref : chalk_ir ::TraitRef < Interner > ) -> Self {
2019-05-01 10:06:11 -05:00
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 ) ;
2019-05-01 10:06:11 -05:00
TraitRef { trait_ , substs }
}
}
2019-12-21 07:29:33 -06:00
impl ToChalk for hir_def ::TraitId {
type Chalk = TraitId ;
2019-05-01 10:06:11 -05:00
2019-12-21 07:29:33 -06:00
fn to_chalk ( self , _db : & impl HirDatabase ) -> TraitId {
2019-12-21 08:00:44 -06:00
chalk_ir ::TraitId ( self . as_intern_id ( ) )
2019-05-01 10:06:11 -05:00
}
2019-12-21 07:29:33 -06:00
fn from_chalk ( _db : & impl HirDatabase , trait_id : TraitId ) -> hir_def ::TraitId {
2019-12-21 08:00:44 -06:00
InternKey ::from_intern_id ( trait_id . 0 )
2019-05-01 10:06:11 -05:00
}
}
impl ToChalk for TypeCtor {
2020-02-24 14:36:57 -06:00
type Chalk = TypeName < Interner > ;
2019-05-01 10:06:11 -05:00
2020-02-24 14:36:57 -06:00
fn to_chalk ( self , db : & impl HirDatabase ) -> TypeName < Interner > {
2019-12-21 07:46:15 -06:00
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-05-01 10:06:11 -05:00
}
2020-02-24 14:36:57 -06:00
fn from_chalk ( db : & impl HirDatabase , type_name : TypeName < Interner > ) -> TypeCtor {
2019-12-21 07:46:15 -06:00
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-05-01 10:06:11 -05:00
}
}
2019-09-09 15:10:58 -05:00
impl ToChalk for Impl {
2019-12-21 07:29:33 -06:00
type Chalk = ImplId ;
2019-05-01 10:06:11 -05:00
2019-12-21 07:29:33 -06:00
fn to_chalk ( self , db : & impl HirDatabase ) -> ImplId {
2019-11-15 12:28:00 -06:00
db . intern_chalk_impl ( self ) . into ( )
2019-05-01 10:06:11 -05:00
}
2019-12-21 07:29:33 -06:00
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-05-01 10:06:11 -05:00
}
}
2019-11-25 09:44:36 -06:00
impl ToChalk for TypeAliasId {
2019-12-21 07:29:33 -06:00
type Chalk = AssocTypeId ;
2019-11-25 09:44:36 -06:00
2019-12-21 07:29:33 -06:00
fn to_chalk ( self , _db : & impl HirDatabase ) -> AssocTypeId {
2019-12-21 08:00:44 -06:00
chalk_ir ::AssocTypeId ( self . as_intern_id ( ) )
2019-11-25 09:44:36 -06:00
}
2019-12-21 07:29:33 -06:00
fn from_chalk ( _db : & impl HirDatabase , type_alias_id : AssocTypeId ) -> TypeAliasId {
2019-12-21 08:00:44 -06:00
InternKey ::from_intern_id ( type_alias_id . 0 )
2019-11-25 09:44:36 -06:00
}
}
2019-11-15 13:32:58 -06:00
impl ToChalk for AssocTyValue {
2019-12-21 07:29:33 -06:00
type Chalk = AssociatedTyValueId ;
2019-11-15 13:32:58 -06:00
2019-12-21 07:29:33 -06:00
fn to_chalk ( self , db : & impl HirDatabase ) -> AssociatedTyValueId {
2019-11-15 13:32:58 -06:00
db . intern_assoc_ty_value ( self ) . into ( )
}
2019-12-21 07:29:33 -06:00
fn from_chalk ( db : & impl HirDatabase , assoc_ty_value_id : AssociatedTyValueId ) -> AssocTyValue {
2019-11-15 13:32:58 -06:00
db . lookup_intern_assoc_ty_value ( assoc_ty_value_id . into ( ) )
}
}
2019-05-05 07:21:00 -05:00
impl ToChalk for GenericPredicate {
2020-02-24 14:36:57 -06:00
type Chalk = chalk_ir ::QuantifiedWhereClause < Interner > ;
2019-05-05 07:21:00 -05:00
2020-02-24 14:36:57 -06:00
fn to_chalk ( self , db : & impl HirDatabase ) -> chalk_ir ::QuantifiedWhereClause < Interner > {
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 )
}
2019-08-23 10:19:37 -05:00
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 ) ,
2019-08-23 10:19:37 -05:00
ty : projection_pred . ty . to_chalk ( db ) ,
} ) ,
0 ,
) ,
2019-12-21 08:00:44 -06:00
GenericPredicate ::Error = > panic! ( " tried passing GenericPredicate::Error to Chalk " ) ,
2019-05-05 07:21:00 -05:00
}
}
fn from_chalk (
2019-10-15 14:03:34 -05:00
db : & impl HirDatabase ,
2020-02-24 14:36:57 -06:00
where_clause : chalk_ir ::QuantifiedWhereClause < Interner > ,
2019-05-05 07:21:00 -05:00
) -> GenericPredicate {
2019-10-15 14:03:34 -05:00
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 ) ;
2019-10-15 14:03:34 -05:00
let ty = from_chalk ( db , projection_eq . ty ) ;
GenericPredicate ::Projection ( super ::ProjectionPredicate { projection_ty , ty } )
}
}
2019-05-05 07:21:00 -05:00
}
}
2019-05-12 10:53:44 -05:00
impl ToChalk for ProjectionTy {
2020-02-24 14:36:57 -06:00
type Chalk = chalk_ir ::AliasTy < Interner > ;
2019-05-12 10:53:44 -05:00
2020-02-24 14:36:57 -06:00
fn to_chalk ( self , db : & impl HirDatabase ) -> chalk_ir ::AliasTy < Interner > {
2020-01-17 15:12:15 -06:00
chalk_ir ::AliasTy {
2019-05-12 10:53:44 -05:00
associated_ty_id : self . associated_ty . to_chalk ( db ) ,
2020-01-17 15:12:15 -06:00
substitution : self . parameters . to_chalk ( db ) ,
2019-05-12 10:53:44 -05:00
}
}
2019-10-15 14:03:34 -05:00
fn from_chalk (
db : & impl HirDatabase ,
2020-02-24 14:36:57 -06:00
projection_ty : chalk_ir ::AliasTy < Interner > ,
2019-10-15 14:03:34 -05:00
) -> ProjectionTy {
2019-05-12 10:53:44 -05:00
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 ) ,
2019-05-12 10:53:44 -05:00
}
}
}
2019-07-07 11:14:56 -05:00
impl ToChalk for super ::ProjectionPredicate {
2020-02-24 14:36:57 -06:00
type Chalk = chalk_ir ::Normalize < Interner > ;
2019-07-07 11:14:56 -05:00
2020-02-24 14:36:57 -06:00
fn to_chalk ( self , db : & impl HirDatabase ) -> chalk_ir ::Normalize < Interner > {
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-07-07 11:14:56 -05:00
}
2020-02-24 14:36:57 -06:00
fn from_chalk ( _db : & impl HirDatabase , _normalize : chalk_ir ::Normalize < Interner > ) -> Self {
2019-07-07 11:14:56 -05:00
unimplemented! ( )
}
}
2019-07-08 14:43:52 -05:00
impl ToChalk for Obligation {
2020-02-24 14:36:57 -06:00
type Chalk = chalk_ir ::DomainGoal < Interner > ;
2019-07-08 14:43:52 -05:00
2020-02-24 14:36:57 -06:00
fn to_chalk ( self , db : & impl HirDatabase ) -> chalk_ir ::DomainGoal < Interner > {
2019-07-08 14:43:52 -05:00
match self {
Obligation ::Trait ( tr ) = > tr . to_chalk ( db ) . cast ( ) ,
Obligation ::Projection ( pr ) = > pr . to_chalk ( db ) . cast ( ) ,
}
}
2020-02-24 14:36:57 -06:00
fn from_chalk ( _db : & impl HirDatabase , _goal : chalk_ir ::DomainGoal < Interner > ) -> Self {
2019-07-08 14:43:52 -05:00
unimplemented! ( )
}
}
2019-06-29 10:40:00 -05: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 ) ;
2020-02-18 07:32:19 -06:00
chalk_ir ::Canonical { value , binders : vec ! [ parameter ; self . num_vars ] }
2019-06-29 10:40:00 -05:00
}
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 > {
2020-02-24 14:36:57 -06:00
type Chalk = chalk_ir ::Environment < Interner > ;
2019-06-29 10:40:00 -05:00
2020-02-24 14:36:57 -06:00
fn to_chalk ( self , db : & impl HirDatabase ) -> chalk_ir ::Environment < Interner > {
2019-06-29 12:14:52 -05:00
let mut clauses = Vec ::new ( ) ;
for pred in & self . predicates {
if pred . is_error ( ) {
// for env, we just ignore errors
continue ;
}
2020-02-24 14:36:57 -06:00
let program_clause : chalk_ir ::ProgramClause < Interner > =
2019-12-21 07:46:15 -06:00
pred . clone ( ) . to_chalk ( db ) . cast ( ) ;
2019-09-07 09:30:37 -05:00
clauses . push ( program_clause . into_from_env_clause ( ) ) ;
2019-06-29 12:14:52 -05:00
}
chalk_ir ::Environment ::new ( ) . add_clauses ( clauses )
2019-06-29 10:40:00 -05:00
}
fn from_chalk (
_db : & impl HirDatabase ,
2020-02-24 14:36:57 -06:00
_env : chalk_ir ::Environment < Interner > ,
2019-07-09 14:34:23 -05:00
) -> Arc < super ::TraitEnvironment > {
2019-06-29 12:14:52 -05:00
unimplemented! ( )
2019-06-29 10:40:00 -05:00
}
}
2019-10-15 14:03:34 -05:00
impl < T : ToChalk > ToChalk for super ::InEnvironment < T >
where
2020-02-24 14:36:57 -06:00
T ::Chalk : chalk_ir ::interner ::HasInterner < Interner = Interner > ,
2019-10-15 14:03:34 -05:00
{
2019-06-29 10:40:00 -05: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 05:16:39 -06:00
impl ToChalk for builtin ::BuiltinImplData {
2019-12-21 07:46:15 -06:00
type Chalk = ImplDatum ;
2019-12-03 05:16:39 -06:00
2019-12-21 07:46:15 -06:00
fn to_chalk ( self , db : & impl HirDatabase ) -> ImplDatum {
2019-12-03 05:16:39 -06:00
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 {
2019-12-03 05:16:39 -06:00
unimplemented! ( )
}
}
impl ToChalk for builtin ::BuiltinImplAssocTyValueData {
2019-12-21 07:46:15 -06:00
type Chalk = AssociatedTyValue ;
2019-12-03 05:16:39 -06:00
2019-12-21 07:46:15 -06:00
fn to_chalk ( self , db : & impl HirDatabase ) -> AssociatedTyValue {
2019-12-03 05:16:39 -06:00
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 ,
2019-12-03 05:16:39 -06:00
) -> builtin ::BuiltinImplAssocTyValueData {
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 ,
2019-11-25 06:39:12 -06:00
def : GenericDefId ,
2019-05-05 07:21:00 -05:00
substs : & Substs ,
2020-02-24 14:36:57 -06:00
) -> Vec < chalk_ir ::QuantifiedWhereClause < Interner > > {
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 ( ) {
2019-12-21 08:00:44 -06:00
// skip errored predicates completely
continue ;
2019-05-11 13:31:41 -05:00
}
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
}
2019-05-05 07:42:12 -05:00
result
2019-05-05 07:21:00 -05:00
}
2020-02-24 14:36:57 -06:00
impl < ' a , DB > chalk_solve ::RustIrDatabase < Interner > for ChalkContext < ' a , DB >
2019-05-01 10:06:11 -05:00
where
DB : HirDatabase ,
{
2019-12-21 07:29:33 -06:00
fn associated_ty_data ( & self , id : AssocTypeId ) -> Arc < AssociatedTyDatum > {
2019-06-26 04:54:13 -05:00
self . db . associated_ty_data ( id )
2019-05-01 10:06:11 -05:00
}
2019-12-21 07:29:33 -06:00
fn trait_datum ( & self , trait_id : TraitId ) -> Arc < TraitDatum > {
2019-06-26 04:54:13 -05:00
self . db . trait_datum ( self . krate , trait_id )
2019-05-01 10:06:11 -05:00
}
2019-12-21 07:29:33 -06:00
fn struct_datum ( & self , struct_id : StructId ) -> Arc < StructDatum > {
2019-06-26 04:54:13 -05:00
self . db . struct_datum ( self . krate , struct_id )
2019-05-01 10:06:11 -05:00
}
2019-12-21 07:29:33 -06:00
fn impl_datum ( & self , impl_id : ImplId ) -> Arc < ImplDatum > {
2019-06-26 04:54:13 -05:00
self . db . impl_datum ( self . krate , impl_id )
2019-05-01 10:06:11 -05:00
}
2019-09-24 11:27:31 -05:00
fn impls_for_trait (
& self ,
2019-12-21 07:29:33 -06:00
trait_id : TraitId ,
2020-02-24 14:36:57 -06:00
parameters : & [ Parameter < Interner > ] ,
2019-12-21 07:29:33 -06:00
) -> Vec < ImplId > {
2019-05-01 13:50:49 -05:00
debug! ( " impls_for_trait {:?} " , trait_id ) ;
2019-12-21 07:29:33 -06:00
let trait_ : hir_def ::TraitId = from_chalk ( self . db , trait_id ) ;
2019-12-21 08:00:44 -06:00
// 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
2019-05-07 10:35:45 -05:00
. db
2020-02-18 06:53:02 -06:00
. impls_for_trait ( self . krate , trait_ )
2019-05-01 10:06:11 -05:00
. iter ( )
2019-09-09 15:10:58 -05:00
. copied ( )
2020-02-29 14:24:40 -06:00
. map ( Impl ::ImplDef )
2019-09-09 15:10:58 -05:00
. map ( | impl_ | impl_ . to_chalk ( self . db ) )
2019-05-07 10:35:45 -05:00
. collect ( ) ;
2019-09-09 15:10:58 -05:00
let ty : Ty = from_chalk ( self . db , parameters [ 0 ] . assert_ty_ref ( ) . clone ( ) ) ;
2020-02-21 12:05:27 -06:00
let arg : Option < Ty > =
parameters . get ( 1 ) . map ( | p | from_chalk ( self . db , p . assert_ty_ref ( ) . clone ( ) ) ) ;
2019-12-03 05:16:39 -06:00
2020-02-21 12:05:27 -06:00
builtin ::get_builtin_impls ( self . db , self . krate , & ty , & arg , trait_ , | i | {
2019-12-03 05:16:39 -06:00
result . push ( i . to_chalk ( self . db ) )
} ) ;
2019-09-09 15:10:58 -05:00
2019-05-07 10:35:45 -05:00
debug! ( " impls_for_trait returned {} impls " , result . len ( ) ) ;
result
2019-05-01 10:06:11 -05:00
}
2019-12-21 07:29:33 -06:00
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 ) ;
2019-05-01 10:06:11 -05:00
false // FIXME
}
2019-12-21 07:29:33 -06:00
fn associated_ty_value ( & self , id : AssociatedTyValueId ) -> Arc < AssociatedTyValue > {
2020-02-18 06:53:02 -06:00
self . db . associated_ty_value ( self . krate , id )
2019-05-01 10:06:11 -05:00
}
2020-02-24 14:36:57 -06:00
fn custom_clauses ( & self ) -> Vec < chalk_ir ::ProgramClause < Interner > > {
2019-05-01 16:26:42 -05:00
vec! [ ]
}
2019-12-21 07:29:33 -06:00
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
}
2020-02-24 14:36:57 -06:00
fn as_struct_id ( & self , id : & TypeName < Interner > ) -> Option < StructId > {
2019-12-21 07:29:33 -06:00
match id {
TypeName ::Struct ( struct_id ) = > Some ( * struct_id ) ,
_ = > None ,
}
}
2020-03-02 16:01:16 -06:00
fn interner ( & self ) -> & Interner {
& Interner
}
2019-05-01 10:06:11 -05:00
}
2019-06-26 04:54:13 -05:00
pub ( crate ) fn associated_ty_data_query (
db : & impl HirDatabase ,
2019-12-21 07:29:33 -06:00
id : AssocTypeId ,
) -> Arc < AssociatedTyDatum > {
2019-06-26 04:54:13 -05:00
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 ,
2019-06-26 04:54:13 -05:00
_ = > panic! ( " associated type not in trait " ) ,
} ;
2019-12-07 04:50:36 -06:00
let generic_params = generics ( db , type_alias . into ( ) ) ;
2019-11-15 13:32:58 -06:00
let bound_data = chalk_rust_ir ::AssociatedTyDatumBound {
// FIXME add bounds and where clauses
bounds : vec ! [ ] ,
where_clauses : vec ! [ ] ,
} ;
2019-06-26 04:54:13 -05:00
let datum = AssociatedTyDatum {
2019-11-26 09:00:36 -06:00
trait_id : trait_ . to_chalk ( db ) ,
2019-06-26 04:54:13 -05:00
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 ( ) ) ,
2019-06-26 04:54:13 -05:00
} ;
Arc ::new ( datum )
}
pub ( crate ) fn trait_datum_query (
db : & impl HirDatabase ,
2019-11-27 00:42:55 -06:00
krate : CrateId ,
2019-12-21 07:29:33 -06:00
trait_id : TraitId ,
) -> Arc < TraitDatum > {
2019-06-26 04:54:13 -05:00
debug! ( " trait_datum {:?} " , trait_id ) ;
2019-12-21 07:29:33 -06:00
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 ) ;
2019-12-07 04:50:36 -06:00
let generic_params = generics ( db , trait_ . into ( ) ) ;
2019-06-26 04:54:13 -05:00
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 ,
2019-09-09 14:24:24 -05:00
non_enumerable : true ,
2019-11-15 13:32:58 -06:00
coinductive : false , // only relevant for Chalk testing
2019-06-26 04:54:13 -05:00
// 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 ( ) ;
2019-11-15 13:32:58 -06: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 04:54:13 -05:00
Arc ::new ( trait_datum )
}
pub ( crate ) fn struct_datum_query (
db : & impl HirDatabase ,
2019-11-27 00:42:55 -06:00
krate : CrateId ,
2019-12-21 07:29:33 -06:00
struct_id : StructId ,
) -> Arc < StructDatum > {
2019-06-26 04:54:13 -05:00
debug! ( " struct_datum {:?} " , struct_id ) ;
2019-12-21 07:46:15 -06:00
let type_ctor : TypeCtor = from_chalk ( db , TypeName ::Struct ( struct_id ) ) ;
2019-06-26 04:54:13 -05:00
debug! ( " struct {:?} = {:?} " , struct_id , type_ctor ) ;
2019-09-26 14:37:03 -05: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 | {
2020-02-18 06:53:02 -06:00
let generic_params = generics ( db , generic_def ) ;
2019-06-26 04:54:13 -05:00
let bound_vars = Substs ::bound_vars ( & generic_params ) ;
2019-09-26 14:37:03 -05:00
convert_where_clauses ( db , generic_def , & bound_vars )
} )
. unwrap_or_else ( Vec ::new ) ;
2019-06-26 04:54:13 -05: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 13:32:58 -06:00
let struct_datum =
StructDatum { id : struct_id , binders : make_binders ( struct_datum_bound , num_params ) , flags } ;
2019-06-26 04:54:13 -05:00
Arc ::new ( struct_datum )
}
pub ( crate ) fn impl_datum_query (
db : & impl HirDatabase ,
2019-11-27 00:42:55 -06:00
krate : CrateId ,
2019-12-21 07:29:33 -06:00
impl_id : ImplId ,
) -> Arc < ImplDatum > {
2019-06-26 04:54:13 -05:00
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_ {
2020-02-29 14:24:40 -06:00
Impl ::ImplDef ( impl_def ) = > impl_def_datum ( db , krate , impl_id , impl_def ) ,
2019-12-21 08:00:44 -06:00
_ = > Arc ::new ( builtin ::impl_datum ( db , krate , impl_ ) . to_chalk ( db ) ) ,
2019-09-09 15:10:58 -05:00
}
}
2020-02-29 14:24:40 -06:00
fn impl_def_datum (
2019-09-09 15:10:58 -05:00
db : & impl HirDatabase ,
2019-11-27 00:42:55 -06:00
krate : CrateId ,
2019-12-21 07:29:33 -06:00
chalk_id : ImplId ,
impl_id : hir_def ::ImplId ,
2019-12-21 08:00:44 -06:00
) -> 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 ) ;
2019-12-07 04:50:36 -06:00
let generic_params = generics ( db , impl_id . into ( ) ) ;
2019-06-26 04:54:13 -05:00
let bound_vars = Substs ::bound_vars ( & generic_params ) ;
2019-11-15 13:32:58 -06:00
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 {
2019-06-26 04:54:13 -05:00
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 ;
2019-06-26 04:54:13 -05:00
debug! (
" impl {:?}: {}{} where {:?} " ,
2019-11-27 03:47:18 -06:00
chalk_id ,
2019-06-26 04:54:13 -05:00
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-06-26 04:54:13 -05:00
} ;
2019-10-10 13:51:50 -05:00
2019-11-15 13:32:58 -06: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 ( )
2019-11-15 13:32:58 -06:00
. filter_map ( | item | match item {
2019-11-27 03:47:18 -06:00
AssocItemId ::TypeAliasId ( type_alias ) = > Some ( * type_alias ) ,
2019-11-15 13:32:58 -06:00
_ = > None ,
} )
2019-11-27 03:47:18 -06:00
. filter ( | & type_alias | {
2019-11-15 13:32:58 -06:00
// 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-15 13:32:58 -06:00
} )
2019-11-27 03:47:18 -06:00
. map ( | type_alias | AssocTyValue ::TypeAlias ( type_alias ) . to_chalk ( db ) )
2019-11-15 13:32:58 -06:00
. collect ( ) ;
2019-06-26 04:54:13 -05:00
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 ,
2019-11-15 13:32:58 -06:00
associated_ty_value_ids ,
2019-10-10 13:51:50 -05:00
} ;
2019-09-09 15:10:58 -05:00
Arc ::new ( impl_datum )
}
2019-11-15 13:32:58 -06:00
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 > {
2019-11-15 13:32:58 -06: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 05:16:39 -06:00
_ = > Arc ::new ( builtin ::associated_ty_value ( db , krate , data ) . to_chalk ( db ) ) ,
2019-11-15 13:32:58 -06:00
}
}
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 ,
2019-12-21 07:29:33 -06:00
) -> 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 ) } ;
2019-11-15 13:32:58 -06:00
let value = chalk_rust_ir ::AssociatedTyValue {
2020-02-29 14:24:40 -06:00
impl_id : Impl ::ImplDef ( impl_id ) . to_chalk ( db ) ,
2019-11-15 13:32:58 -06:00
associated_ty_id : assoc_ty . to_chalk ( db ) ,
2020-01-31 09:52:43 -06:00
value : make_binders ( value_bound , ty . num_binders ) ,
2019-11-15 13:32:58 -06:00
} ;
Arc ::new ( value )
}
2019-12-21 07:29:33 -06:00
impl From < StructId > for crate ::TypeCtorId {
fn from ( struct_id : StructId ) -> Self {
2019-12-21 08:00:44 -06:00
InternKey ::from_intern_id ( struct_id . 0 )
2019-05-01 10:06:11 -05:00
}
}
2019-12-21 07:29:33 -06:00
impl From < crate ::TypeCtorId > for StructId {
2019-11-27 08:46:02 -06:00
fn from ( type_ctor_id : crate ::TypeCtorId ) -> Self {
2019-12-21 08:00:44 -06:00
chalk_ir ::StructId ( type_ctor_id . as_intern_id ( ) )
2019-05-01 10:06:11 -05:00
}
}
2019-12-21 07:29:33 -06:00
impl From < ImplId > for crate ::traits ::GlobalImplId {
fn from ( impl_id : ImplId ) -> Self {
2019-12-21 08:00:44 -06:00
InternKey ::from_intern_id ( impl_id . 0 )
2019-05-01 10:06:11 -05:00
}
}
2019-12-21 07:29:33 -06:00
impl From < crate ::traits ::GlobalImplId > for ImplId {
2019-11-27 08:46:02 -06:00
fn from ( impl_id : crate ::traits ::GlobalImplId ) -> Self {
2019-12-21 08:00:44 -06:00
chalk_ir ::ImplId ( impl_id . as_intern_id ( ) )
2019-05-01 10:06:11 -05:00
}
}
2019-11-15 13:32:58 -06:00
2020-03-02 15:30:38 -06:00
impl From < chalk_rust_ir ::AssociatedTyValueId < Interner > > for crate ::traits ::AssocTyValueId {
fn from ( id : chalk_rust_ir ::AssociatedTyValueId < Interner > ) -> Self {
Self ::from_intern_id ( id . 0 )
2019-11-15 13:32:58 -06:00
}
}
2020-03-02 15:30:38 -06:00
impl From < crate ::traits ::AssocTyValueId > for chalk_rust_ir ::AssociatedTyValueId < Interner > {
2019-11-27 08:46:02 -06:00
fn from ( assoc_ty_value_id : crate ::traits ::AssocTyValueId ) -> Self {
2020-03-02 15:30:38 -06:00
chalk_rust_ir ::AssociatedTyValueId ( assoc_ty_value_id . as_intern_id ( ) )
2019-11-15 13:32:58 -06:00
}
}