@@ -87,7 +87,7 @@ pub struct CtxtInterners<'tcx> {
87
87
substs : InternedSet < ' tcx , InternalSubsts < ' tcx > > ,
88
88
canonical_var_infos : InternedSet < ' tcx , List < CanonicalVarInfo < ' tcx > > > ,
89
89
region : InternedSet < ' tcx , RegionKind > ,
90
- existential_predicates : InternedSet < ' tcx , List < ExistentialPredicate < ' tcx > > > ,
90
+ poly_existential_predicates : InternedSet < ' tcx , List < ty :: Binder < ExistentialPredicate < ' tcx > > > > ,
91
91
predicate : InternedSet < ' tcx , PredicateInner < ' tcx > > ,
92
92
predicates : InternedSet < ' tcx , List < Predicate < ' tcx > > > ,
93
93
projs : InternedSet < ' tcx , List < ProjectionKind > > ,
@@ -103,7 +103,7 @@ impl<'tcx> CtxtInterners<'tcx> {
103
103
type_list : Default :: default ( ) ,
104
104
substs : Default :: default ( ) ,
105
105
region : Default :: default ( ) ,
106
- existential_predicates : Default :: default ( ) ,
106
+ poly_existential_predicates : Default :: default ( ) ,
107
107
canonical_var_infos : Default :: default ( ) ,
108
108
predicate : Default :: default ( ) ,
109
109
predicates : Default :: default ( ) ,
@@ -1623,7 +1623,7 @@ nop_lift! {const_; &'a Const<'a> => &'tcx Const<'tcx>}
1623
1623
nop_lift ! { predicate; & ' a PredicateInner <' a> => & ' tcx PredicateInner <' tcx>}
1624
1624
1625
1625
nop_list_lift ! { type_list; Ty <' a> => Ty <' tcx>}
1626
- nop_list_lift ! { existential_predicates ; ExistentialPredicate <' a> => ExistentialPredicate <' tcx>}
1626
+ nop_list_lift ! { poly_existential_predicates ; ty :: Binder < ExistentialPredicate <' a>> => ty :: Binder < ExistentialPredicate <' tcx> >}
1627
1627
nop_list_lift ! { predicates; Predicate <' a> => Predicate <' tcx>}
1628
1628
nop_list_lift ! { canonical_var_infos; CanonicalVarInfo <' a> => CanonicalVarInfo <' tcx>}
1629
1629
nop_list_lift ! { projs; ProjectionKind => ProjectionKind }
@@ -2064,7 +2064,8 @@ slice_interners!(
2064
2064
type_list: _intern_type_list( Ty <' tcx>) ,
2065
2065
substs: _intern_substs( GenericArg <' tcx>) ,
2066
2066
canonical_var_infos: _intern_canonical_var_infos( CanonicalVarInfo <' tcx>) ,
2067
- existential_predicates: _intern_existential_predicates( ExistentialPredicate <' tcx>) ,
2067
+ poly_existential_predicates:
2068
+ _intern_poly_existential_predicates( ty:: Binder <ExistentialPredicate <' tcx>>) ,
2068
2069
predicates: _intern_predicates( Predicate <' tcx>) ,
2069
2070
projs: _intern_projs( ProjectionKind ) ,
2070
2071
place_elems: _intern_place_elems( PlaceElem <' tcx>) ,
@@ -2295,7 +2296,7 @@ impl<'tcx> TyCtxt<'tcx> {
2295
2296
#[ inline]
2296
2297
pub fn mk_dynamic (
2297
2298
self ,
2298
- obj : ty :: Binder < & ' tcx List < ExistentialPredicate < ' tcx > > > ,
2299
+ obj : & ' tcx List < ty :: Binder < ExistentialPredicate < ' tcx > > > ,
2299
2300
reg : ty:: Region < ' tcx > ,
2300
2301
) -> Ty < ' tcx > {
2301
2302
self . mk_ty ( Dynamic ( obj, reg) )
@@ -2425,13 +2426,17 @@ impl<'tcx> TyCtxt<'tcx> {
2425
2426
Place { local : place. local , projection : self . intern_place_elems ( & projection) }
2426
2427
}
2427
2428
2428
- pub fn intern_existential_predicates (
2429
+ pub fn intern_poly_existential_predicates (
2429
2430
self ,
2430
- eps : & [ ExistentialPredicate < ' tcx > ] ,
2431
- ) -> & ' tcx List < ExistentialPredicate < ' tcx > > {
2431
+ eps : & [ ty :: Binder < ExistentialPredicate < ' tcx > > ] ,
2432
+ ) -> & ' tcx List < ty :: Binder < ExistentialPredicate < ' tcx > > > {
2432
2433
assert ! ( !eps. is_empty( ) ) ;
2433
- assert ! ( eps. array_windows( ) . all( |[ a, b] | a. stable_cmp( self , b) != Ordering :: Greater ) ) ;
2434
- self . _intern_existential_predicates ( eps)
2434
+ assert ! (
2435
+ eps. array_windows( )
2436
+ . all( |[ a, b] | a. skip_binder( ) . stable_cmp( self , & b. skip_binder( ) )
2437
+ != Ordering :: Greater )
2438
+ ) ;
2439
+ self . _intern_poly_existential_predicates ( eps)
2435
2440
}
2436
2441
2437
2442
pub fn intern_predicates ( self , preds : & [ Predicate < ' tcx > ] ) -> & ' tcx List < Predicate < ' tcx > > {
@@ -2488,13 +2493,16 @@ impl<'tcx> TyCtxt<'tcx> {
2488
2493
} )
2489
2494
}
2490
2495
2491
- pub fn mk_existential_predicates <
2492
- I : InternAs < [ ExistentialPredicate < ' tcx > ] , & ' tcx List < ExistentialPredicate < ' tcx > > > ,
2496
+ pub fn mk_poly_existential_predicates <
2497
+ I : InternAs <
2498
+ [ ty:: Binder < ExistentialPredicate < ' tcx > > ] ,
2499
+ & ' tcx List < ty:: Binder < ExistentialPredicate < ' tcx > > > ,
2500
+ > ,
2493
2501
> (
2494
2502
self ,
2495
2503
iter : I ,
2496
2504
) -> I :: Output {
2497
- iter. intern_with ( |xs| self . intern_existential_predicates ( xs) )
2505
+ iter. intern_with ( |xs| self . intern_poly_existential_predicates ( xs) )
2498
2506
}
2499
2507
2500
2508
pub fn mk_predicates < I : InternAs < [ Predicate < ' tcx > ] , & ' tcx List < Predicate < ' tcx > > > > (
0 commit comments