@@ -13,14 +13,13 @@ use rustc::hir;
13
13
use rustc:: hir:: itemlikevisit:: ItemLikeVisitor ;
14
14
use rustc:: ty:: { self , CrateInherentImpls , TyCtxt } ;
15
15
16
- use rustc_data_structures:: sync:: Lrc ;
17
16
use syntax:: ast;
18
17
use syntax_pos:: Span ;
19
18
20
19
/// On-demand query: yields a map containing all types mapped to their inherent impls.
21
20
pub fn crate_inherent_impls < ' a , ' tcx > ( tcx : TyCtxt < ' a , ' tcx , ' tcx > ,
22
21
crate_num : CrateNum )
23
- -> Lrc < CrateInherentImpls > {
22
+ -> & ' tcx CrateInherentImpls {
24
23
assert_eq ! ( crate_num, LOCAL_CRATE ) ;
25
24
26
25
let krate = tcx. hir ( ) . krate ( ) ;
@@ -29,13 +28,13 @@ pub fn crate_inherent_impls<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
29
28
impls_map : Default :: default ( ) ,
30
29
} ;
31
30
krate. visit_all_item_likes ( & mut collect) ;
32
- Lrc :: new ( collect. impls_map )
31
+ tcx . arena . alloc ( collect. impls_map )
33
32
}
34
33
35
34
/// On-demand query: yields a vector of the inherent impls for a specific type.
36
35
pub fn inherent_impls < ' a , ' tcx > ( tcx : TyCtxt < ' a , ' tcx , ' tcx > ,
37
36
ty_def_id : DefId )
38
- -> Lrc < Vec < DefId > > {
37
+ -> & ' tcx [ DefId ] {
39
38
assert ! ( ty_def_id. is_local( ) ) ;
40
39
41
40
// NB. Until we adopt the red-green dep-tracking algorithm (see
@@ -53,15 +52,11 @@ pub fn inherent_impls<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
53
52
//
54
53
// [the plan]: https://github.com/rust-lang/rust-roadmap/issues/4
55
54
56
- thread_local ! {
57
- static EMPTY_DEF_ID_VEC : Lrc <Vec <DefId >> = Lrc :: new( vec![ ] )
58
- }
59
-
60
55
let result = tcx. dep_graph . with_ignore ( || {
61
56
let crate_map = tcx. crate_inherent_impls ( ty_def_id. krate ) ;
62
57
match crate_map. inherent_impls . get ( & ty_def_id) {
63
- Some ( v) => v . clone ( ) ,
64
- None => EMPTY_DEF_ID_VEC . with ( |v| v . clone ( ) )
58
+ Some ( v) => & v [ .. ] ,
59
+ None => & [ ] ,
65
60
}
66
61
} ) ;
67
62
@@ -289,13 +284,8 @@ impl<'a, 'tcx> InherentCollect<'a, 'tcx> {
289
284
// type def ID, if there is a base type for this implementation and
290
285
// the implementation does not have any associated traits.
291
286
let impl_def_id = self . tcx . hir ( ) . local_def_id_from_hir_id ( item. hir_id ) ;
292
- let mut rc_vec = self . impls_map . inherent_impls
293
- . entry ( def_id)
294
- . or_default ( ) ;
295
-
296
- // At this point, there should not be any clones of the
297
- // `Lrc`, so we can still safely push into it in place:
298
- Lrc :: get_mut ( & mut rc_vec) . unwrap ( ) . push ( impl_def_id) ;
287
+ let vec = self . impls_map . inherent_impls . entry ( def_id) . or_default ( ) ;
288
+ vec. push ( impl_def_id) ;
299
289
} else {
300
290
struct_span_err ! ( self . tcx. sess,
301
291
item. span,
0 commit comments