@@ -330,15 +330,11 @@ pub enum Variance {
330
330
/// `tcx.variances_of()` to get the variance for a *particular*
331
331
/// item.
332
332
#[ derive( HashStable ) ]
333
- pub struct CrateVariancesMap {
333
+ pub struct CrateVariancesMap < ' tcx > {
334
334
/// For each item with generics, maps to a vector of the variance
335
335
/// of its generics. If an item has no generics, it will have no
336
336
/// entry.
337
- pub variances : FxHashMap < DefId , Lrc < Vec < ty:: Variance > > > ,
338
-
339
- /// An empty vector, useful for cloning.
340
- #[ stable_hasher( ignore) ]
341
- pub empty_variance : Lrc < Vec < ty:: Variance > > ,
337
+ pub variances : FxHashMap < DefId , & ' tcx [ ty:: Variance ] > ,
342
338
}
343
339
344
340
impl Variance {
@@ -1110,11 +1106,7 @@ pub struct CratePredicatesMap<'tcx> {
1110
1106
/// For each struct with outlive bounds, maps to a vector of the
1111
1107
/// predicate of its outlive bounds. If an item has no outlives
1112
1108
/// bounds, it will have no entry.
1113
- pub predicates : FxHashMap < DefId , Lrc < Vec < ty:: Predicate < ' tcx > > > > ,
1114
-
1115
- /// An empty vector, useful for cloning.
1116
- #[ stable_hasher( ignore) ]
1117
- pub empty_predicate : Lrc < Vec < ty:: Predicate < ' tcx > > > ,
1109
+ pub predicates : FxHashMap < DefId , & ' tcx [ ty:: Predicate < ' tcx > ] > ,
1118
1110
}
1119
1111
1120
1112
impl < ' tcx > AsRef < Predicate < ' tcx > > for Predicate < ' tcx > {
@@ -3091,7 +3083,7 @@ impl<'a, 'gcx, 'tcx> TyCtxt<'a, 'gcx, 'tcx> {
3091
3083
3092
3084
pub struct AssociatedItemsIterator < ' a , ' gcx : ' tcx , ' tcx : ' a > {
3093
3085
tcx : TyCtxt < ' a , ' gcx , ' tcx > ,
3094
- def_ids : Lrc < Vec < DefId > > ,
3086
+ def_ids : & ' gcx [ DefId ] ,
3095
3087
next_index : usize ,
3096
3088
}
3097
3089
@@ -3180,26 +3172,27 @@ fn adt_sized_constraint<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
3180
3172
3181
3173
fn associated_item_def_ids < ' a , ' tcx > ( tcx : TyCtxt < ' a , ' tcx , ' tcx > ,
3182
3174
def_id : DefId )
3183
- -> Lrc < Vec < DefId > > {
3175
+ -> & ' tcx [ DefId ] {
3184
3176
let id = tcx. hir ( ) . as_local_hir_id ( def_id) . unwrap ( ) ;
3185
3177
let item = tcx. hir ( ) . expect_item_by_hir_id ( id) ;
3186
- let vec : Vec < _ > = match item. node {
3178
+ match item. node {
3187
3179
hir:: ItemKind :: Trait ( .., ref trait_item_refs) => {
3188
- trait_item_refs. iter ( )
3189
- . map ( |trait_item_ref| trait_item_ref. id )
3190
- . map ( |id| tcx. hir ( ) . local_def_id_from_hir_id ( id. hir_id ) )
3191
- . collect ( )
3180
+ tcx. arena . alloc_from_iter (
3181
+ trait_item_refs. iter ( )
3182
+ . map ( |trait_item_ref| trait_item_ref. id )
3183
+ . map ( |id| tcx. hir ( ) . local_def_id_from_hir_id ( id. hir_id ) )
3184
+ )
3192
3185
}
3193
3186
hir:: ItemKind :: Impl ( .., ref impl_item_refs) => {
3194
- impl_item_refs. iter ( )
3195
- . map ( |impl_item_ref| impl_item_ref. id )
3196
- . map ( |id| tcx. hir ( ) . local_def_id_from_hir_id ( id. hir_id ) )
3197
- . collect ( )
3187
+ tcx. arena . alloc_from_iter (
3188
+ impl_item_refs. iter ( )
3189
+ . map ( |impl_item_ref| impl_item_ref. id )
3190
+ . map ( |id| tcx. hir ( ) . local_def_id_from_hir_id ( id. hir_id ) )
3191
+ )
3198
3192
}
3199
- hir:: ItemKind :: TraitAlias ( ..) => vec ! [ ] ,
3193
+ hir:: ItemKind :: TraitAlias ( ..) => & [ ] ,
3200
3194
_ => span_bug ! ( item. span, "associated_item_def_ids: not impl or trait" )
3201
- } ;
3202
- Lrc :: new ( vec)
3195
+ }
3203
3196
}
3204
3197
3205
3198
fn def_span < ' a , ' tcx > ( tcx : TyCtxt < ' a , ' tcx , ' tcx > , def_id : DefId ) -> Span {
@@ -3385,7 +3378,7 @@ pub fn provide(providers: &mut ty::query::Providers<'_>) {
3385
3378
/// (constructing this map requires touching the entire crate).
3386
3379
#[ derive( Clone , Debug , Default , HashStable ) ]
3387
3380
pub struct CrateInherentImpls {
3388
- pub inherent_impls : DefIdMap < Lrc < Vec < DefId > > > ,
3381
+ pub inherent_impls : DefIdMap < Vec < DefId > > ,
3389
3382
}
3390
3383
3391
3384
#[ derive( Clone , Copy , PartialEq , Eq , PartialOrd , Ord , RustcEncodable , RustcDecodable ) ]
0 commit comments